From 59b1849c9690e097c5e21c3a42cebece8e53ef6a Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 20 Mar 2018 02:25:49 +0100 Subject: [PATCH] Fixed the font issue for Retina displays: there should be fixed fonts for all resolutions down to 1/6 (Retina display, 2x oversampling) --- src/fontgen/fontgen.cc | 127 + src/fontgen/fontgen.pro | 6 + src/klayout.pro | 1 + src/laybasic/laybasic/fixedFont.h | 30628 ++++++++++++++++++++++-- src/laybasic/laybasic/layBitmap.cc | 61 +- src/laybasic/laybasic/layBitmap.h | 4 +- src/laybasic/laybasic/layFixedFont.cc | 6 +- src/laybasic/laybasic/layFixedFont.h | 11 +- 8 files changed, 28755 insertions(+), 2089 deletions(-) create mode 100644 src/fontgen/fontgen.cc create mode 100644 src/fontgen/fontgen.pro diff --git a/src/fontgen/fontgen.cc b/src/fontgen/fontgen.cc new file mode 100644 index 000000000..786f61ffc --- /dev/null +++ b/src/fontgen/fontgen.cc @@ -0,0 +1,127 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2018 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#include +#include +#include +#include +#include + +#include + +/** + * @brief A small utility program to produce the fixed font definition file + * Run this binary and redirect the output to "laybasic/fixedFont.h". + */ +int +main (int argc, char *argv []) +{ + QApplication app (argc, argv); + + printf ("\n// generated by fontgen\n// DO NOT EDIT !\n\n"); + + printf ("\nnamespace lay {\n"); + + std::string table; + + int sz[] = { 9, 11, 13, 0 }; + + int os = 1; + + for (int r = 1; r <= 6; ++r) { + + for (int s = 0; sz[s] > 0; ++s) { + + char b[1024]; + sprintf (b, " FixedFont (ff%d_height, ff%d_line_height, ff%d_width, ff%d_first_char, sizeof (ff%d_data) / sizeof (uint32_t) / (ff%d_height * ff%d_stride), ff%d_data, ff%d_stride),\n", os, os, os, os, os, os, os, os, os); + table += b; + + QFont f (QString::fromAscii ("Liberation Mono"), r * sz[s]); + f.setStyleStrategy(QFont::StyleStrategy ((f.styleStrategy() & ~QFont::PreferAntialias) | QFont::NoAntialias)); + + QFontMetrics fm (f); + + int w = fm.width (QChar::fromAscii ('W')); + + printf ("\n// Font: %s\n", f.toString ().toAscii ().constData ()); + printf ("const unsigned int ff%d_height = %d;\nconst unsigned int ff%d_line_height = %d;\nconst unsigned int ff%d_width = %d;\nconst unsigned int ff%d_stride = %d;\n", + os, fm.height (), os, fm.lineSpacing (), os, w, os, (w + 31) / 32); + + printf ("const unsigned char ff%d_first_char = ' ';\n\nuint32_t ff%d_data [] = {\n", os, os); + + for (int c = ' '; c < 256; ++c) { + + QImage img (w, fm.height (), QImage::Format_RGB32); + img.fill (0xffffffff); + QPainter p (&img); + p.setPen (Qt::black); + p.setRenderHints (QPainter::TextAntialiasing, false); + p.setFont (f); + + char t[2]; + t[0] = c; + t[1] = 0; + p.drawText (0, fm.ascent (), QString::fromLatin1 (t)); + + QImage b = img.convertToFormat (QImage::Format_MonoLSB); + + printf (" // %d", c); + int n = 0; + for (int i = 0; i < fm.height (); ++i) { + + int ww = w; + unsigned int *sl = (unsigned int *) b.scanLine (i); + + do { + + if ((n % 16) == 0) { + printf ("\n "); + } + ++n; + + printf ("0x%x,", ww < 32 ? *sl & ((1 << ww) - 1) : *sl); + ww -= 32; + ++sl; + + } while (ww > 0); + + } + printf ("\n"); + + } + + printf ("};\n"); + + ++os; + + } + + } + + printf ("\nstatic FixedFont fonts[] = {\n%s};\n", table.c_str ()); + + printf ("\n} // namespace lay\n"); + + return 0; +} + + diff --git a/src/fontgen/fontgen.pro b/src/fontgen/fontgen.pro new file mode 100644 index 000000000..ac61bce36 --- /dev/null +++ b/src/fontgen/fontgen.pro @@ -0,0 +1,6 @@ + +TEMPLATE = app +TARGET = fontgen + +SOURCES = fontgen.cc + diff --git a/src/klayout.pro b/src/klayout.pro index 066e76839..888def688 100644 --- a/src/klayout.pro +++ b/src/klayout.pro @@ -20,6 +20,7 @@ SUBDIRS = \ lib \ plugins \ buddies \ + fontgen \ LANG_DEPENDS = MAIN_DEPENDS = diff --git a/src/laybasic/laybasic/fixedFont.h b/src/laybasic/laybasic/fixedFont.h index ae67619da..a7aff0670 100644 --- a/src/laybasic/laybasic/fixedFont.h +++ b/src/laybasic/laybasic/fixedFont.h @@ -1,26 +1,4 @@ -/* - - KLayout Layout Viewer - Copyright (C) 2006-2018 Matthias Koefferlein - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -*/ - - // generated by fontgen // DO NOT EDIT ! @@ -31,4125 +9,30665 @@ namespace lay { const unsigned int ff1_height = 14; const unsigned int ff1_line_height = 14; const unsigned int ff1_width = 7; +const unsigned int ff1_stride = 1; const unsigned char ff1_first_char = ' '; uint32_t ff1_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x8,0x0,0x0,0x0,0x0, // 34 - 0x0, 0x14, 0x14, 0x14, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x14,0x14,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x24, 0x24, 0x7f, 0x24, 0x12, 0x7f, 0x12, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x24,0x24,0x7f,0x24,0x12,0x7f,0x12,0x12,0x0,0x0,0x0,0x0, // 36 - 0x0, 0x8, 0x1c, 0x2a, 0xa, 0x1c, 0x28, 0x28, 0x2a, 0x1c, 0x8, 0x0, 0x0, 0x0, + 0x0,0x8,0x1c,0x2a,0xa,0x1c,0x28,0x28,0x2a,0x1c,0x8,0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x22, 0x15, 0x15, 0xa, 0x28, 0x54, 0x54, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x15,0x15,0xa,0x28,0x54,0x54,0x22,0x0,0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x8, 0x14, 0x14, 0x4c, 0x4a, 0x32, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x14,0x14,0x4c,0x4a,0x32,0x22,0x5c,0x0,0x0,0x0,0x0, // 39 - 0x0, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 40 - 0x0, 0x10, 0x8, 0x8, 0x4, 0x4, 0x4, 0x4, 0x4, 0x8, 0x8, 0x10, 0x0, 0x0, + 0x0,0x10,0x8,0x8,0x4,0x4,0x4,0x4,0x4,0x8,0x8,0x10,0x0,0x0, // 41 - 0x0, 0x4, 0x8, 0x8, 0x10, 0x10, 0x10, 0x10, 0x10, 0x8, 0x8, 0x4, 0x0, 0x0, + 0x0,0x4,0x8,0x8,0x10,0x10,0x10,0x10,0x10,0x8,0x8,0x4,0x0,0x0, // 42 - 0x0, 0x8, 0x2a, 0x1c, 0x14, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x2a,0x1c,0x14,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x3e, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x8,0x3e,0x8,0x8,0x0,0x0,0x0,0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x8, 0x4, 0x4, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x8,0x4,0x4,0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x8,0x0,0x0,0x0,0x0, // 47 - 0x0, 0x20, 0x20, 0x10, 0x10, 0x8, 0x4, 0x4, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0,0x20,0x20,0x10,0x10,0x8,0x4,0x4,0x2,0x2,0x0,0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x1c, 0x22, 0x22, 0x2a, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x22,0x2a,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x8, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0xe,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x1c, 0x22, 0x20, 0x10, 0x8, 0x4, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x20,0x10,0x8,0x4,0x2,0x3e,0x0,0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x1c, 0x22, 0x20, 0x18, 0x20, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x20,0x18,0x20,0x20,0x22,0x1c,0x0,0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x10, 0x18, 0x14, 0x14, 0x12, 0x3e, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x18,0x14,0x14,0x12,0x3e,0x10,0x10,0x0,0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x3e, 0x2, 0x2, 0x1e, 0x20, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x2,0x2,0x1e,0x20,0x20,0x22,0x1c,0x0,0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x1c, 0x22, 0x2, 0x1e, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x2,0x1e,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x3e, 0x20, 0x10, 0x8, 0x8, 0x4, 0x4, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x20,0x10,0x8,0x8,0x4,0x4,0x4,0x0,0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x1c, 0x22, 0x22, 0x1c, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x22,0x1c,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x3c, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x22,0x22,0x3c,0x20,0x22,0x1c,0x0,0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x0, 0x0, 0x0, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x8,0x0,0x0,0x0,0x8,0x8,0x0,0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x0, 0x0, 0x0, 0x8, 0x8, 0x4, 0x4, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x8,0x0,0x0,0x0,0x8,0x8,0x4,0x4,0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x20, 0x1c, 0x2, 0x1c, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x20,0x1c,0x2,0x1c,0x20,0x0,0x0,0x0,0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x2, 0x1c, 0x20, 0x1c, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x2,0x1c,0x20,0x1c,0x2,0x0,0x0,0x0,0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x1c, 0x22, 0x20, 0x20, 0x10, 0x8, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x20,0x20,0x10,0x8,0x0,0x8,0x0,0x0,0x0,0x0, // 64 - 0x0, 0x1c, 0x22, 0x41, 0x69, 0x55, 0x55, 0x55, 0x39, 0x1, 0x22, 0x1c, 0x0, 0x0, + 0x0,0x1c,0x22,0x41,0x69,0x55,0x55,0x55,0x39,0x1,0x22,0x1c,0x0,0x0, // 65 - 0x0, 0x0, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x1e, 0x22, 0x22, 0x1e, 0x22, 0x22, 0x22, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e,0x22,0x22,0x1e,0x22,0x22,0x22,0x1e,0x0,0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x1c, 0x22, 0x2, 0x2, 0x2, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x2,0x2,0x2,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 68 - 0x0, 0x0, 0xe, 0x12, 0x22, 0x22, 0x22, 0x22, 0x12, 0xe, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xe,0x12,0x22,0x22,0x22,0x22,0x12,0xe,0x0,0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x3e, 0x2, 0x2, 0x3e, 0x2, 0x2, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x2,0x2,0x3e,0x2,0x2,0x2,0x3e,0x0,0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x3e, 0x2, 0x2, 0x3e, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x2,0x2,0x3e,0x2,0x2,0x2,0x2,0x0,0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x1c, 0x22, 0x2, 0x2, 0x32, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x2,0x2,0x32,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x22, 0x22, 0x22, 0x3e, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x0,0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x3e, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x8,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x22,0x1c,0x0,0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x22, 0x12, 0xa, 0xe, 0x12, 0x12, 0x22, 0x42, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x12,0xa,0xe,0x12,0x12,0x22,0x42,0x0,0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x3c,0x0,0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x22, 0x36, 0x36, 0x2a, 0x2a, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x36,0x36,0x2a,0x2a,0x22,0x22,0x22,0x0,0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x22, 0x26, 0x26, 0x2a, 0x2a, 0x32, 0x32, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x26,0x26,0x2a,0x2a,0x32,0x32,0x22,0x0,0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x1e, 0x22, 0x22, 0x1e, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e,0x22,0x22,0x1e,0x2,0x2,0x2,0x2,0x0,0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x8, 0x30, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x8,0x30,0x0,0x0, // 82 - 0x0, 0x0, 0x1e, 0x22, 0x22, 0x1e, 0xa, 0x12, 0x12, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e,0x22,0x22,0x1e,0xa,0x12,0x12,0x22,0x0,0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x1c, 0x22, 0x2, 0xc, 0x10, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x2,0xc,0x10,0x20,0x22,0x1c,0x0,0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x7f, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7f,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x41, 0x41, 0x22, 0x22, 0x14, 0x14, 0x14, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x41,0x41,0x22,0x22,0x14,0x14,0x14,0x8,0x0,0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x41, 0x41, 0x49, 0x49, 0x2a, 0x36, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x41,0x41,0x49,0x49,0x2a,0x36,0x22,0x22,0x0,0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x22, 0x14, 0x14, 0x8, 0x8, 0x14, 0x14, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x14,0x14,0x8,0x8,0x14,0x14,0x22,0x0,0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x41, 0x22, 0x14, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x41,0x22,0x14,0x8,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x3e, 0x20, 0x10, 0x8, 0x8, 0x4, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x20,0x10,0x8,0x8,0x4,0x2,0x3e,0x0,0x0,0x0,0x0, // 91 - 0x0, 0x38, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x38, 0x0, 0x0, + 0x0,0x38,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x38,0x0,0x0, // 92 - 0x0, 0x2, 0x2, 0x4, 0x4, 0x8, 0x10, 0x10, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x4,0x4,0x8,0x10,0x10,0x20,0x20,0x0,0x0,0x0,0x0, // 93 - 0x0, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0xe, 0x0, 0x0, + 0x0,0xe,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0xe,0x0,0x0, // 94 - 0x0, 0x0, 0x8, 0x14, 0x14, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x14,0x14,0x22,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x0,0x0, // 96 - 0x4, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 98 - 0x0, 0x2, 0x2, 0x1a, 0x26, 0x22, 0x22, 0x22, 0x26, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x1a,0x26,0x22,0x22,0x22,0x26,0x1a,0x0,0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x1c, 0x22, 0x2, 0x2, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x22,0x2,0x2,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 100 - 0x0, 0x20, 0x20, 0x2c, 0x32, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x20,0x20,0x2c,0x32,0x22,0x22,0x22,0x32,0x2c,0x0,0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x1c, 0x22, 0x22, 0x3e, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x22,0x22,0x3e,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 102 - 0x0, 0x30, 0x8, 0x3c, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x30,0x8,0x3c,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x2c, 0x32, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x20, 0x1e, 0x0, 0x0, + 0x0,0x0,0x0,0x2c,0x32,0x22,0x22,0x22,0x32,0x2c,0x20,0x1e,0x0,0x0, // 104 - 0x0, 0x2, 0x2, 0x1e, 0x26, 0x22, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x1e,0x26,0x22,0x22,0x22,0x22,0x22,0x0,0x0,0x0,0x0, // 105 - 0x0, 0x8, 0x0, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x0,0xe,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 106 - 0x0, 0x10, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xe, 0x0, 0x0, + 0x0,0x10,0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xe,0x0,0x0, // 107 - 0x0, 0x2, 0x2, 0x22, 0x12, 0xa, 0x6, 0xa, 0x12, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x22,0x12,0xa,0x6,0xa,0x12,0x22,0x0,0x0,0x0,0x0, // 108 - 0x0, 0xc, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x16, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x16,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0,0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x1e, 0x26, 0x22, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1e,0x26,0x22,0x22,0x22,0x22,0x22,0x0,0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x1a, 0x26, 0x22, 0x22, 0x22, 0x26, 0x1a, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x1a,0x26,0x22,0x22,0x22,0x26,0x1a,0x2,0x2,0x0,0x0, // 113 - 0x0, 0x0, 0x0, 0x2c, 0x32, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x20, 0x20, 0x0, 0x0, + 0x0,0x0,0x0,0x2c,0x32,0x22,0x22,0x22,0x32,0x2c,0x20,0x20,0x0,0x0, // 114 - 0x0, 0x0, 0x0, 0x34, 0xc, 0x4, 0x4, 0x4, 0x4, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x34,0xc,0x4,0x4,0x4,0x4,0x4,0x0,0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x1c, 0x22, 0x2, 0x1c, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x22,0x2,0x1c,0x20,0x22,0x1c,0x0,0x0,0x0,0x0, // 116 - 0x0, 0x8, 0x8, 0x3c, 0x8, 0x8, 0x8, 0x8, 0x8, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x8,0x3c,0x8,0x8,0x8,0x8,0x8,0x30,0x0,0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x22,0x22,0x22,0x22,0x22,0x32,0x2c,0x0,0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x22, 0x22, 0x14, 0x14, 0x14, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x22,0x22,0x14,0x14,0x14,0x8,0x8,0x0,0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x41, 0x41, 0x41, 0x2a, 0x2a, 0x36, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x41,0x41,0x41,0x2a,0x2a,0x36,0x22,0x0,0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x22, 0x14, 0x14, 0x8, 0x14, 0x14, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x22,0x14,0x14,0x8,0x14,0x14,0x22,0x0,0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x22, 0x22, 0x14, 0x14, 0x8, 0x8, 0x8, 0x4, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x22,0x22,0x14,0x14,0x8,0x8,0x8,0x4,0x2,0x0,0x0, // 122 - 0x0, 0x0, 0x0, 0x3e, 0x20, 0x10, 0x8, 0x4, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3e,0x20,0x10,0x8,0x4,0x2,0x3e,0x0,0x0,0x0,0x0, // 123 - 0x0, 0x30, 0x8, 0x8, 0x8, 0x8, 0x4, 0x8, 0x8, 0x8, 0x8, 0x30, 0x0, 0x0, + 0x0,0x30,0x8,0x8,0x8,0x8,0x4,0x8,0x8,0x8,0x8,0x30,0x0,0x0, // 124 - 0x0, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, + 0x0,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x0, // 125 - 0x0, 0x6, 0x8, 0x8, 0x8, 0x8, 0x10, 0x8, 0x8, 0x8, 0x8, 0x6, 0x0, 0x0, + 0x0,0x6,0x8,0x8,0x8,0x8,0x10,0x8,0x8,0x8,0x8,0x6,0x0,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x4,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 127 - 0x0, 0xf, 0x9, 0x9, 0x9, 0x9, 0x9, 0x9, 0x9, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x4,0x5b,0x50,0x2a,0x12,0x16,0x6,0x50,0x37,0x2,0x0,0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x2, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 130 - 0x0, 0xf, 0x9, 0x9, 0x9, 0x9, 0x9, 0x9, 0x9, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 131 - 0x0, 0x48, 0x6, 0x4, 0x48, 0x18, 0x10, 0x10, 0x10, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x52, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x4, 0x4, 0x0, 0xa, 0x4, 0x4, 0x4, 0x0, 0x4, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x4, 0x0, 0x16, 0x0, 0x4, 0x4, 0x0, 0x16, 0x0, 0x4, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 136 - 0x10, 0x0, 0x56, 0x4, 0x4, 0x34, 0x4, 0x4, 0x4, 0x56, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 137 - 0x0, 0x0, 0xa, 0x42, 0x40, 0x24, 0x10, 0x40, 0x48, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 138 - 0x10, 0x8, 0x24, 0x2, 0x2, 0x1c, 0x30, 0x40, 0x22, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x24, 0x22, 0x2, 0xc, 0x30, 0x20, 0x42, 0x2a, 0x8, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 140 - 0x10, 0x0, 0x14, 0x22, 0x2, 0xc, 0x30, 0x20, 0x42, 0x2a, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 141 - 0x0, 0x0, 0x48, 0x44, 0x2, 0x2, 0x42, 0x6, 0x44, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x20, 0x12, 0xc, 0xc, 0x12, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x3f, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x12, 0x10, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x78, 0x78, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 152 - 0x0, 0x8, 0x0, 0x0, 0x36, 0x2, 0x14, 0x2, 0x2, 0x2a, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x40, 0x0, 0x20, 0x4, 0xa, 0x50, 0x0, 0x40, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 154 - 0x0, 0x0, 0xc, 0x0, 0x10, 0x2, 0x6, 0x18, 0x10, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x8, 0x2, 0x6, 0x18, 0x10, 0x1, 0x0, 0x4, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 156 - 0x0, 0x8, 0x0, 0x0, 0xa, 0x10, 0x6, 0x18, 0x0, 0x15, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x24, 0x22, 0x22, 0x22, 0x22, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 158 - 0x0, 0x0, 0xc, 0x0, 0x12, 0x8, 0x8, 0x4, 0x22, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 159 - 0x0, 0x10, 0x8, 0x0, 0x12, 0x8, 0x8, 0x4, 0x22, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0,0xf,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0xf,0x0,0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x8, 0x0, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x0,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x0, // 162 - 0x0, 0x0, 0x8, 0x1c, 0x22, 0x2, 0x2, 0x22, 0x1c, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x1c,0x2a,0xa,0xa,0x2a,0x1c,0x8,0x0,0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x18, 0x24, 0x4, 0xe, 0x4, 0x4, 0x24, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x18,0x24,0x4,0xe,0x4,0x4,0x24,0x1e,0x0,0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x2a, 0x14, 0x22, 0x14, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x2a,0x14,0x22,0x14,0x2a,0x0,0x0,0x0,0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x41, 0x22, 0x14, 0x8, 0x3e, 0x8, 0x3e, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x41,0x22,0x14,0x8,0x3e,0x8,0x3e,0x8,0x0,0x0,0x0,0x0, // 166 - 0x0, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, + 0x0,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x8,0x8,0x8,0x8,0x0,0x0, // 167 - 0x0, 0x1c, 0x22, 0x2, 0x1c, 0x22, 0x22, 0x1c, 0x20, 0x22, 0x1c, 0x0, 0x0, 0x0, + 0x0,0x1c,0x22,0x2,0x1c,0x22,0x22,0x1c,0x20,0x22,0x1c,0x0,0x0,0x0, // 168 - 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 169 - 0x0, 0x1c, 0x22, 0x59, 0x45, 0x45, 0x45, 0x59, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1c,0x22,0x59,0x45,0x45,0x45,0x59,0x22,0x1c,0x0,0x0,0x0,0x0, // 170 - 0x0, 0x0, 0xe, 0x10, 0x1c, 0x12, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xe,0x10,0x1c,0x12,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x48, 0x24, 0x12, 0x24, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x48,0x24,0x12,0x24,0x48,0x0,0x0,0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x20,0x20,0x0,0x0,0x0,0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 174 - 0x0, 0x1c, 0x22, 0x4d, 0x55, 0x4d, 0x55, 0x55, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1c,0x22,0x4d,0x55,0x4d,0x55,0x55,0x22,0x1c,0x0,0x0,0x0,0x0, // 175 - 0x0, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x8, 0x14, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x14,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x3e, 0x8, 0x8, 0x0, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x8,0x3e,0x8,0x8,0x0,0x3e,0x0,0x0,0x0,0x0, // 178 - 0x0, 0x0, 0xc, 0x10, 0x8, 0x4, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xc,0x10,0x8,0x4,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 179 - 0x0, 0x0, 0xc, 0x10, 0x8, 0x10, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xc,0x10,0x8,0x10,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 180 - 0x8, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x32, 0x2e, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x22,0x22,0x22,0x22,0x22,0x32,0x2e,0x2,0x2,0x0,0x0, // 182 - 0x0, 0x0, 0x7c, 0x2e, 0x2e, 0x2c, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x0, 0x0, + 0x0,0x0,0x7c,0x2e,0x2e,0x2c,0x28,0x28,0x28,0x28,0x28,0x28,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x8,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x6, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x6,0x0,0x0, // 185 - 0x0, 0x0, 0x8, 0xe, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0xe,0x8,0x8,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x12, 0x24, 0x48, 0x24, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x12,0x24,0x48,0x24,0x12,0x0,0x0,0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x22, 0x23, 0x12, 0x2a, 0x3f, 0x2c, 0x7a, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x23,0x12,0x2a,0x3f,0x2c,0x7a,0x22,0x0,0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x22, 0x23, 0x12, 0x3a, 0x4f, 0x24, 0x12, 0x72, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x22,0x23,0x12,0x3a,0x4f,0x24,0x12,0x72,0x0,0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x23, 0x24, 0x12, 0x2c, 0x3b, 0x2c, 0x7a, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x23,0x24,0x12,0x2c,0x3b,0x2c,0x7a,0x22,0x0,0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x8, 0x4, 0x2, 0x2, 0x22, 0x1c, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x8,0x4,0x2,0x2,0x22,0x1c,0x0,0x0, // 192 - 0x8, 0x0, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 193 - 0x8, 0x0, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 194 - 0x24, 0x0, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 195 - 0x12, 0x0, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x12,0x0,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 196 - 0x14, 0x0, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x14,0x0,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 197 - 0x8, 0x14, 0x8, 0x14, 0x14, 0x14, 0x22, 0x3e, 0x22, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x8,0x14,0x8,0x14,0x14,0x14,0x22,0x3e,0x22,0x41,0x0,0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x78, 0x14, 0x14, 0x74, 0x12, 0x1e, 0x12, 0x71, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78,0x14,0x14,0x74,0x12,0x1e,0x12,0x71,0x0,0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x1c, 0x22, 0x2, 0x2, 0x2, 0x2, 0x22, 0x1c, 0x10, 0x18, 0x0, 0x0, + 0x0,0x0,0x1c,0x22,0x2,0x2,0x2,0x2,0x22,0x1c,0x10,0x18,0x0,0x0, // 200 - 0x8, 0x0, 0x3e, 0x2, 0x2, 0x3e, 0x2, 0x2, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x3e,0x2,0x2,0x3e,0x2,0x2,0x2,0x3e,0x0,0x0,0x0,0x0, // 201 - 0x8, 0x0, 0x3e, 0x2, 0x2, 0x3e, 0x2, 0x2, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x3e,0x2,0x2,0x3e,0x2,0x2,0x2,0x3e,0x0,0x0,0x0,0x0, // 202 - 0x24, 0x0, 0x3e, 0x2, 0x2, 0x3e, 0x2, 0x2, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x3e,0x2,0x2,0x3e,0x2,0x2,0x2,0x3e,0x0,0x0,0x0,0x0, // 203 - 0x14, 0x0, 0x3e, 0x2, 0x2, 0x3e, 0x2, 0x2, 0x2, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x14,0x0,0x3e,0x2,0x2,0x3e,0x2,0x2,0x2,0x3e,0x0,0x0,0x0,0x0, // 204 - 0x8, 0x0, 0x3e, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x3e,0x8,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 205 - 0x8, 0x0, 0x3e, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x3e,0x8,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 206 - 0x24, 0x0, 0x3e, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x3e,0x8,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 207 - 0x14, 0x0, 0x3e, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x14,0x0,0x3e,0x8,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x1e, 0x22, 0x22, 0x27, 0x22, 0x22, 0x22, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e,0x22,0x22,0x27,0x22,0x22,0x22,0x1e,0x0,0x0,0x0,0x0, // 209 - 0x12, 0x0, 0x22, 0x26, 0x26, 0x2a, 0x2a, 0x32, 0x32, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x12,0x0,0x22,0x26,0x26,0x2a,0x2a,0x32,0x32,0x22,0x0,0x0,0x0,0x0, // 210 - 0x8, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 211 - 0x8, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 212 - 0x24, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 213 - 0x12, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x12,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 214 - 0x14, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x14,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x22, 0x14, 0x8, 0x14, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x22,0x14,0x8,0x14,0x22,0x0,0x0,0x0,0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x3c, 0x22, 0x32, 0x2a, 0x2a, 0x26, 0x22, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3c,0x22,0x32,0x2a,0x2a,0x26,0x22,0x1e,0x0,0x0,0x0,0x0, // 217 - 0x8, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 218 - 0x8, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 219 - 0x24, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 220 - 0x14, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x14,0x0,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 221 - 0x8, 0x0, 0x41, 0x22, 0x14, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x8,0x0,0x41,0x22,0x14,0x8,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x2, 0x1e, 0x22, 0x22, 0x22, 0x1e, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x2,0x1e,0x22,0x22,0x22,0x1e,0x2,0x2,0x0,0x0,0x0,0x0, // 223 - 0x0, 0xc, 0x12, 0x12, 0xa, 0xa, 0x12, 0x22, 0x22, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x12,0x12,0xa,0xa,0x12,0x22,0x22,0x1a,0x0,0x0,0x0,0x0, // 224 - 0x4, 0x8, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x4,0x8,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 225 - 0x10, 0x8, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x10,0x8,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 226 - 0x18, 0x24, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x18,0x24,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 227 - 0x2c, 0x12, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x2c,0x12,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 228 - 0x0, 0x14, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 229 - 0x14, 0x8, 0x0, 0x1c, 0x22, 0x20, 0x3c, 0x22, 0x22, 0x5c, 0x0, 0x0, 0x0, 0x0, + 0x14,0x8,0x0,0x1c,0x22,0x20,0x3c,0x22,0x22,0x5c,0x0,0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x36, 0x49, 0x48, 0x7e, 0x9, 0x49, 0x36, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x36,0x49,0x48,0x7e,0x9,0x49,0x36,0x0,0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x1c, 0x22, 0x2, 0x2, 0x2, 0x22, 0x1c, 0x10, 0x18, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x22,0x2,0x2,0x2,0x22,0x1c,0x10,0x18,0x0,0x0, // 232 - 0x4, 0x8, 0x0, 0x1c, 0x22, 0x22, 0x3e, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x4,0x8,0x0,0x1c,0x22,0x22,0x3e,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 233 - 0x10, 0x8, 0x0, 0x1c, 0x22, 0x22, 0x3e, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x10,0x8,0x0,0x1c,0x22,0x22,0x3e,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 234 - 0x18, 0x24, 0x0, 0x1c, 0x22, 0x22, 0x3e, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x18,0x24,0x0,0x1c,0x22,0x22,0x3e,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 235 - 0x0, 0x14, 0x0, 0x1c, 0x22, 0x22, 0x3e, 0x2, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x0,0x1c,0x22,0x22,0x3e,0x2,0x22,0x1c,0x0,0x0,0x0,0x0, // 236 - 0x4, 0x8, 0x0, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x4,0x8,0x0,0xe,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 237 - 0x10, 0x8, 0x0, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x10,0x8,0x0,0xe,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 238 - 0xc, 0x12, 0x0, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0xc,0x12,0x0,0xe,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 239 - 0x0, 0x14, 0x0, 0xe, 0x8, 0x8, 0x8, 0x8, 0x8, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x0,0xe,0x8,0x8,0x8,0x8,0x8,0x3e,0x0,0x0,0x0,0x0, // 240 - 0x0, 0x18, 0xc, 0x10, 0x3c, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0xc,0x10,0x3c,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 241 - 0x2c, 0x12, 0x0, 0x1e, 0x26, 0x22, 0x22, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x2c,0x12,0x0,0x1e,0x26,0x22,0x22,0x22,0x22,0x22,0x0,0x0,0x0,0x0, // 242 - 0x4, 0x8, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x4,0x8,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 243 - 0x10, 0x8, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x10,0x8,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 244 - 0x18, 0x24, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x18,0x24,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 245 - 0x2c, 0x12, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x2c,0x12,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 246 - 0x0, 0x14, 0x0, 0x1c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x0,0x1c,0x22,0x22,0x22,0x22,0x22,0x1c,0x0,0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x8, 0x0, 0x3e, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x0,0x3e,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x2c, 0x12, 0x12, 0x2a, 0x26, 0x24, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x2c,0x12,0x12,0x2a,0x26,0x24,0x1a,0x0,0x0,0x0,0x0, // 249 - 0x4, 0x8, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x4,0x8,0x0,0x22,0x22,0x22,0x22,0x22,0x32,0x2c,0x0,0x0,0x0,0x0, // 250 - 0x10, 0x8, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x10,0x8,0x0,0x22,0x22,0x22,0x22,0x22,0x32,0x2c,0x0,0x0,0x0,0x0, // 251 - 0x18, 0x24, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x18,0x24,0x0,0x22,0x22,0x22,0x22,0x22,0x32,0x2c,0x0,0x0,0x0,0x0, // 252 - 0x0, 0x14, 0x0, 0x22, 0x22, 0x22, 0x22, 0x22, 0x32, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x14,0x0,0x22,0x22,0x22,0x22,0x22,0x32,0x2c,0x0,0x0,0x0,0x0, // 253 - 0x10, 0x8, 0x0, 0x22, 0x22, 0x14, 0x14, 0x8, 0x8, 0x8, 0x4, 0x2, 0x0, 0x0, + 0x10,0x8,0x0,0x22,0x22,0x14,0x14,0x8,0x8,0x8,0x4,0x2,0x0,0x0, // 254 - 0x0, 0x2, 0x2, 0x1a, 0x26, 0x22, 0x22, 0x22, 0x26, 0x1a, 0x2, 0x2, 0x0, 0x0, + 0x0,0x2,0x2,0x1a,0x26,0x22,0x22,0x22,0x26,0x1a,0x2,0x2,0x0,0x0, // 255 - 0x0, 0x14, 0x0, 0x22, 0x22, 0x14, 0x14, 0x8, 0x8, 0x8, 0x4, 0x2, 0x0, 0x0, + 0x0,0x14,0x0,0x22,0x22,0x14,0x14,0x8,0x8,0x8,0x4,0x2,0x0,0x0, }; // Font: Liberation Mono,11,-1,5,50,0,0,0,0,0 -const unsigned int ff2_height = 18; +const unsigned int ff2_height = 16; const unsigned int ff2_line_height = 17; const unsigned int ff2_width = 9; +const unsigned int ff2_stride = 1; const unsigned char ff2_first_char = ' '; uint32_t ff2_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x10,0x0,0x0,0x0,0x0, // 34 - 0x0, 0x0, 0x24, 0x24, 0x24, 0x24, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x24,0x24,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x88, 0x88, 0x44, 0x1ff, 0x44, 0x44, 0x1ff, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x88,0x88,0x44,0x1ff,0x44,0x44,0x1ff,0x22,0x22,0x22,0x0,0x0,0x0,0x0, // 36 - 0x0, 0x0, 0x10, 0x7c, 0x92, 0x92, 0x12, 0x7c, 0x90, 0x90, 0x92, 0x92, 0x7c, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x7c,0x92,0x92,0x12,0x7c,0x90,0x90,0x92,0x92,0x7c,0x10,0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x86, 0x49, 0x49, 0x29, 0x16, 0xd0, 0x128, 0x124, 0x124, 0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x86,0x49,0x49,0x29,0x16,0xd0,0x128,0x124,0x124,0xc2,0x0,0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x44, 0x24, 0x98, 0x8c, 0x92, 0x62, 0x42, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x44,0x24,0x98,0x8c,0x92,0x62,0x42,0x1bc,0x0,0x0,0x0,0x0, // 39 - 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 40 - 0x0, 0x0, 0x40, 0x20, 0x10, 0x10, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x10, 0x10, 0x20, 0x40, 0x0, 0x0, + 0x0,0x40,0x20,0x10,0x10,0x8,0x8,0x8,0x8,0x8,0x8,0x10,0x10,0x20,0x40,0x0, // 41 - 0x0, 0x0, 0x4, 0x8, 0x10, 0x10, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x8, 0x4, 0x0, 0x0, + 0x0,0x4,0x8,0x10,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0x10,0x10,0x8,0x4,0x0, // 42 - 0x0, 0x0, 0x10, 0x54, 0x38, 0x28, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x54,0x38,0x28,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0xfe, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x10, 0x10, 0x8, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x10,0x10,0x8,0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0, // 47 - 0x0, 0x0, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x8, 0x8, 0x4, 0x4, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x80,0x40,0x40,0x20,0x20,0x10,0x8,0x8,0x4,0x4,0x2,0x0,0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x92, 0x92, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x82,0x92,0x92,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x10, 0x18, 0x16, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x18,0x16,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x7c, 0x82, 0x82, 0x80, 0x40, 0x20, 0x18, 0x4, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7c,0x82,0x82,0x80,0x40,0x20,0x18,0x4,0x2,0xfe,0x0,0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x7c, 0x82, 0x82, 0x40, 0x38, 0x40, 0x80, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7c,0x82,0x82,0x40,0x38,0x40,0x80,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x40, 0x60, 0x50, 0x48, 0x44, 0x42, 0xfe, 0x40, 0x40, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x40,0x60,0x50,0x48,0x44,0x42,0xfe,0x40,0x40,0x40,0x0,0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0xfe, 0x2, 0x2, 0x3a, 0x46, 0x80, 0x80, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfe,0x2,0x2,0x3a,0x46,0x80,0x80,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x78, 0x84, 0x2, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78,0x84,0x2,0x3a,0x46,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0xfe, 0x80, 0x40, 0x20, 0x20, 0x10, 0x10, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfe,0x80,0x40,0x20,0x20,0x10,0x10,0x8,0x8,0x8,0x0,0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x7c, 0x82, 0x82, 0x82, 0x7c, 0xc6, 0x82, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7c,0x82,0x82,0x82,0x7c,0xc6,0x82,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x80, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x82,0x82,0xc4,0xb8,0x80,0x42,0x3c,0x0,0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x20, 0x10, 0x10, 0x8, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x20,0x10,0x10,0x8,0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x80, 0x70, 0xc, 0x2, 0xc, 0x70, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x80,0x70,0xc,0x2,0xc,0x70,0x80,0x0,0x0,0x0,0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x2, 0x1c, 0x60, 0x80, 0x60, 0x1c, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x2,0x1c,0x60,0x80,0x60,0x1c,0x2,0x0,0x0,0x0,0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x80, 0x40, 0x20, 0x10, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x80,0x40,0x20,0x10,0x0,0x0,0x10,0x0,0x0,0x0,0x0, // 64 - 0x0, 0x0, 0x78, 0x84, 0x102, 0x159, 0x129, 0x125, 0x125, 0x125, 0x135, 0xc9, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, + 0x0,0x78,0x84,0x102,0x159,0x129,0x125,0x125,0x125,0x135,0xc9,0x2,0x84,0x78,0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x7e, 0x82, 0x82, 0x82, 0x7e, 0x82, 0x82, 0x82, 0x82, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7e,0x82,0x82,0x82,0x7e,0x82,0x82,0x82,0x82,0x7e,0x0,0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x2, 0x2, 0x2, 0x2, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x2,0x2,0x2,0x2,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x3e, 0x42, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x42, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x42,0x82,0x82,0x82,0x82,0x82,0x82,0x42,0x3e,0x0,0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0xfe, 0x2, 0x2, 0x2, 0xfe, 0x2, 0x2, 0x2, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfe,0x2,0x2,0x2,0xfe,0x2,0x2,0x2,0x2,0xfe,0x0,0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0xfe, 0x2, 0x2, 0x2, 0xfe, 0x2, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfe,0x2,0x2,0x2,0xfe,0x2,0x2,0x2,0x2,0x2,0x0,0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x2, 0x2, 0xe2, 0x82, 0x82, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x2,0x2,0xe2,0x82,0x82,0x84,0x78,0x0,0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x82, 0x82, 0x82, 0x82, 0xfe, 0x82, 0x82, 0x82, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0x0,0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x7c,0x0,0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x78, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x82, 0x42, 0x22, 0x12, 0xa, 0x16, 0x22, 0x42, 0x82, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0x42,0x22,0x12,0xa,0x16,0x22,0x42,0x82,0x102,0x0,0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0xfc,0x0,0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x82, 0xc6, 0xc6, 0xaa, 0xaa, 0xaa, 0x92, 0x82, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0xc6,0xc6,0xaa,0xaa,0xaa,0x92,0x82,0x82,0x82,0x0,0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x82, 0x86, 0x8a, 0x8a, 0x92, 0x92, 0xa2, 0xa2, 0xc2, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0x86,0x8a,0x8a,0x92,0x92,0xa2,0xa2,0xc2,0x82,0x0,0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x7e, 0x82, 0x82, 0x82, 0x7e, 0x2, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7e,0x82,0x82,0x82,0x7e,0x2,0x2,0x2,0x2,0x2,0x0,0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x10, 0x20, 0xc0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x10,0x20,0xc0,0x0, // 82 - 0x0, 0x0, 0x0, 0x7e, 0x82, 0x82, 0x82, 0x7e, 0x12, 0x22, 0x22, 0x42, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7e,0x82,0x82,0x82,0x7e,0x12,0x22,0x22,0x42,0x82,0x0,0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x7c, 0x82, 0x82, 0x2, 0x1c, 0x60, 0x80, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7c,0x82,0x82,0x2,0x1c,0x60,0x80,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0xfe, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x101, 0x101, 0x82, 0x82, 0x44, 0x44, 0x28, 0x28, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x101,0x101,0x82,0x82,0x44,0x44,0x28,0x28,0x10,0x10,0x0,0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x101, 0x101, 0x101, 0x92, 0x92, 0xaa, 0xaa, 0xaa, 0x44, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x101,0x101,0x101,0x92,0x92,0xaa,0xaa,0xaa,0x44,0x44,0x0,0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x82, 0x44, 0x44, 0x28, 0x10, 0x10, 0x28, 0x44, 0x44, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0x44,0x44,0x28,0x10,0x10,0x28,0x44,0x44,0x82,0x0,0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x101, 0x82, 0x82, 0x44, 0x28, 0x28, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x101,0x82,0x82,0x44,0x28,0x28,0x10,0x10,0x10,0x10,0x0,0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0xfe, 0x80, 0x40, 0x20, 0x10, 0x10, 0x8, 0x4, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfe,0x80,0x40,0x20,0x10,0x10,0x8,0x4,0x2,0xfe,0x0,0x0,0x0,0x0, // 91 - 0x0, 0x0, 0x70, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x70, 0x0, 0x0, + 0x0,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x0, // 92 - 0x0, 0x0, 0x2, 0x4, 0x4, 0x8, 0x8, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x4,0x4,0x8,0x8,0x10,0x20,0x20,0x40,0x40,0x80,0x0,0x0,0x0,0x0, // 93 - 0x0, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x1c, 0x0, 0x0, + 0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1c,0x0, // 94 - 0x0, 0x0, 0x0, 0x10, 0x28, 0x28, 0x44, 0x44, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x28,0x28,0x44,0x44,0x82,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff,0x0,0x0, // 96 - 0x0, 0x0, 0x18, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 98 - 0x0, 0x0, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x42, 0x42, 0x42, 0x42, 0x46, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x2,0x3a,0x46,0x42,0x42,0x42,0x42,0x46,0x3a,0x0,0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x42, 0x2, 0x2, 0x2, 0x2, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c,0x42,0x2,0x2,0x2,0x2,0x42,0x3c,0x0,0x0,0x0,0x0, // 100 - 0x0, 0x0, 0x40, 0x40, 0x40, 0x5c, 0x62, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x40,0x40,0x40,0x5c,0x62,0x42,0x42,0x42,0x42,0x62,0x5c,0x0,0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x42, 0x42, 0x7e, 0x2, 0x2, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c,0x42,0x42,0x7e,0x2,0x2,0x42,0x3c,0x0,0x0,0x0,0x0, // 102 - 0x0, 0x0, 0xe0, 0x10, 0x10, 0xfc, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe0,0x10,0x10,0xfc,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0x62, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x40, 0x42, 0x3c, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x5c,0x62,0x42,0x42,0x42,0x42,0x62,0x5c,0x40,0x42,0x3c,0x0, // 104 - 0x0, 0x0, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x2,0x3a,0x46,0x42,0x42,0x42,0x42,0x42,0x42,0x0,0x0,0x0,0x0, // 105 - 0x0, 0x0, 0x10, 0x0, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x0,0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 106 - 0x0, 0x0, 0x20, 0x0, 0x0, 0x3c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1e, 0x0, 0x0, + 0x0,0x20,0x0,0x0,0x3c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1e,0x0, // 107 - 0x0, 0x0, 0x2, 0x2, 0x2, 0x42, 0x22, 0x12, 0xa, 0x16, 0x22, 0x42, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x2,0x2,0x2,0x42,0x22,0x12,0xa,0x16,0x22,0x42,0x82,0x0,0x0,0x0,0x0, // 108 - 0x0, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x6e,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x0,0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0x46, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3a,0x46,0x42,0x42,0x42,0x42,0x42,0x42,0x0,0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c,0x42,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0x46, 0x42, 0x42, 0x42, 0x42, 0x46, 0x3a, 0x2, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3a,0x46,0x42,0x42,0x42,0x42,0x46,0x3a,0x2,0x2,0x2,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0x62, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x40, 0x40, 0x40, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x5c,0x62,0x42,0x42,0x42,0x42,0x62,0x5c,0x40,0x40,0x40,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0x18, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xe8,0x18,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x42, 0x2, 0x3c, 0x40, 0x40, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c,0x42,0x2,0x3c,0x40,0x40,0x42,0x3c,0x0,0x0,0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x8, 0x8, 0xfc, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x8,0x8,0xfc,0x8,0x8,0x8,0x8,0x8,0x8,0xf0,0x0,0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x42,0x42,0x42,0x42,0x42,0x42,0x62,0x5c,0x0,0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x44, 0x44, 0x44, 0x28, 0x28, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x82,0x44,0x44,0x44,0x28,0x28,0x10,0x10,0x0,0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x101, 0x101, 0x92, 0x92, 0xaa, 0xaa, 0x44, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x101,0x101,0x92,0x92,0xaa,0xaa,0x44,0x44,0x0,0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x44, 0x28, 0x10, 0x10, 0x28, 0x44, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x82,0x44,0x28,0x10,0x10,0x28,0x44,0x82,0x0,0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x82, 0x44, 0x44, 0x28, 0x28, 0x28, 0x10, 0x10, 0x8, 0x6, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x82,0x82,0x44,0x44,0x28,0x28,0x28,0x10,0x10,0x8,0x6,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0x40, 0x20, 0x10, 0x8, 0x4, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7e,0x40,0x20,0x10,0x8,0x4,0x2,0xfe,0x0,0x0,0x0,0x0, // 123 - 0x0, 0x0, 0xe0, 0x10, 0x10, 0x10, 0x10, 0x10, 0xc, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xe0, 0x0, 0x0, + 0x0,0xe0,0x10,0x10,0x10,0x10,0x10,0xc,0x10,0x10,0x10,0x10,0x10,0x10,0xe0,0x0, // 124 - 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, + 0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0, // 125 - 0x0, 0x0, 0xe, 0x10, 0x10, 0x10, 0x10, 0x10, 0x60, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xe, 0x0, 0x0, + 0x0,0xe,0x10,0x10,0x10,0x10,0x10,0x60,0x10,0x10,0x10,0x10,0x10,0x10,0xe,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8c, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 127 - 0x0, 0x0, 0x1e, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1b6,0x1aa,0x10,0xea,0xa2,0x2d,0x14a,0x92,0x20,0x94,0xa5,0x4a,0x0,0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x4, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 130 - 0x0, 0x0, 0x1e, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x12, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 131 - 0x0, 0x90, 0x0, 0x10e, 0xc, 0x108, 0x30, 0xb0, 0x60, 0x40, 0x20, 0x60, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x24, 0x0, 0x8, 0x20, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x124, 0x124, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x8, 0x0, 0x16, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x8, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x16, 0x0, 0x8, 0x8, 0x8, 0x8, 0x8, 0x16, 0x0, 0x8, 0x8, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 136 - 0x20, 0x50, 0x0, 0x1ae, 0x8, 0xc, 0x4, 0x6c, 0x8, 0x44, 0xc, 0x4, 0x15c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 137 - 0x0, 0x8, 0x2, 0x122, 0x102, 0x82, 0x10, 0x40, 0x100, 0x120, 0x90, 0x108, 0x100, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 138 - 0x0, 0x38, 0x0, 0x94, 0x42, 0x82, 0x2, 0x3c, 0x50, 0xc0, 0x82, 0x82, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x0, 0x94, 0x42, 0x82, 0x2, 0x3c, 0x50, 0xc0, 0x82, 0x82, 0x2a, 0x0, 0x10, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 140 - 0x20, 0x10, 0x0, 0x94, 0x42, 0x82, 0x2, 0x3c, 0x70, 0x80, 0x82, 0x82, 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 141 - 0x0, 0x0, 0x0, 0x190, 0x108, 0x104, 0x106, 0x102, 0x106, 0x104, 0x104, 0x108, 0x1b0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0x26, 0x18, 0x18, 0x34, 0x42, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0x4, 0x4, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x24, 0x24, 0x0, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xf0, 0x1f0, 0x1f8, 0xf0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 152 - 0x0, 0x10, 0x8, 0x0, 0x0, 0x76, 0x4, 0x4, 0x14, 0x26, 0x84, 0x4, 0x66, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x100, 0xc0, 0x18, 0x6, 0x30, 0x180, 0x0, 0x100, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 154 - 0x0, 0x0, 0x14, 0x8, 0x0, 0x24, 0x22, 0x2, 0xe, 0x30, 0x20, 0x22, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x22, 0x2, 0xe, 0x30, 0x20, 0x22, 0x12, 0x0, 0x8, 0x0, 0x8, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 156 - 0x0, 0x10, 0x8, 0x0, 0x0, 0x34, 0x2, 0x22, 0xe, 0x30, 0x20, 0x22, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x168, 0x44, 0x42, 0x142, 0x42, 0x46, 0x44, 0x168, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 158 - 0x0, 0x0, 0x14, 0x8, 0x0, 0x6a, 0x22, 0x10, 0x18, 0x8, 0x4, 0x46, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 159 - 0x0, 0x10, 0x10, 0x8, 0x0, 0x26, 0x20, 0x10, 0x18, 0x8, 0x44, 0x6, 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x0,0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x10, 0x78, 0x84, 0x2, 0x2, 0x2, 0x2, 0x84, 0x78, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x78,0xd4,0x12,0x12,0x12,0x92,0xd4,0x7c,0x10,0x0,0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x4, 0x4, 0x3e, 0x4, 0x4, 0x4, 0x84, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x4,0x4,0x3e,0x4,0x4,0x4,0x84,0x7e,0x0,0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xba, 0x44, 0x82, 0x82, 0x82, 0x44, 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xba,0x44,0x82,0x82,0x82,0x44,0xba,0x0,0x0,0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x82, 0x44, 0x44, 0x28, 0x28, 0x7c, 0x10, 0x7c, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x82,0x44,0x44,0x28,0x28,0x7c,0x10,0x7c,0x10,0x10,0x0,0x0,0x0,0x0, // 166 - 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, + 0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x0, // 167 - 0x0, 0x0, 0x7c, 0x82, 0x2, 0x7c, 0x86, 0x82, 0x82, 0x7c, 0x80, 0x80, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x7c,0x82,0x2,0x7c,0x86,0x82,0x82,0x7c,0x80,0x80,0x82,0x7c,0x0,0x0,0x0, // 168 - 0x0, 0x0, 0x24, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 169 - 0x0, 0x0, 0x7c, 0x82, 0x139, 0x145, 0x105, 0x105, 0x105, 0x145, 0x139, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x7c,0x82,0x139,0x145,0x105,0x105,0x105,0x145,0x139,0x82,0x7c,0x0,0x0,0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x78, 0x44, 0x64, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x78,0x44,0x64,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x90, 0x48, 0x24, 0x12, 0x24, 0x48, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x90,0x48,0x24,0x12,0x24,0x48,0x90,0x0,0x0,0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x80, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x80,0x80,0x80,0x0,0x0,0x0,0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 174 - 0x0, 0x0, 0x7c, 0x82, 0x13d, 0x145, 0x145, 0x13d, 0x115, 0x125, 0x145, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x7c,0x82,0x13d,0x145,0x145,0x13d,0x115,0x125,0x145,0x82,0x7c,0x0,0x0,0x0,0x0, // 175 - 0x0, 0x1ff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x18, 0x24, 0x24, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x18,0x24,0x24,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0xfe, 0x10, 0x10, 0x10, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x0,0xfe,0x0,0x0,0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x60, 0x10, 0x8, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x60,0x10,0x8,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x30, 0x40, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x30,0x40,0x44,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 180 - 0x0, 0x0, 0x30, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x66, 0x5e, 0x2, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x42,0x42,0x42,0x42,0x42,0x42,0x66,0x5e,0x2,0x2,0x2,0x0, // 182 - 0x0, 0x0, 0x0, 0xfc, 0x5e, 0x5e, 0x5e, 0x5c, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x0, 0x0, 0x0, + 0x0,0x0,0xfc,0x5e,0x5e,0x5e,0x5c,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x8, 0x6, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x8,0x6,0x0, // 185 - 0x0, 0x0, 0x0, 0x10, 0x1c, 0x10, 0x10, 0x10, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x1c,0x10,0x10,0x10,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x44, 0x44, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x44,0x44,0x44,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x24, 0x48, 0x90, 0x48, 0x24, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x12,0x24,0x48,0x90,0x48,0x24,0x12,0x0,0x0,0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x42, 0x23, 0x22, 0x12, 0x92, 0xcf, 0xc8, 0xa4, 0x1e4, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x42,0x23,0x22,0x12,0x92,0xcf,0xc8,0xa4,0x1e4,0x82,0x0,0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x42, 0x23, 0x22, 0x12, 0xd2, 0x12f, 0x108, 0xc4, 0x24, 0x1e2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x42,0x23,0x22,0x12,0xd2,0x12f,0x108,0xc4,0x24,0x1e2,0x0,0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x86, 0x49, 0x46, 0x28, 0xa9, 0xd6, 0xd0, 0xa8, 0x1e8, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x86,0x49,0x46,0x28,0xa9,0xd6,0xd0,0xa8,0x1e8,0x84,0x0,0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x10, 0x8, 0x4, 0x2, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x10,0x8,0x4,0x2,0x82,0x44,0x38,0x0,0x0, // 192 - 0x18, 0x20, 0x0, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x0,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 193 - 0x60, 0x10, 0x0, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x0,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 194 - 0x30, 0x48, 0x0, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 195 - 0x58, 0x24, 0x0, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 196 - 0x48, 0x48, 0x0, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 197 - 0x0, 0x10, 0x28, 0x10, 0x28, 0x28, 0x28, 0x44, 0x44, 0xfe, 0x82, 0x82, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x28,0x10,0x28,0x28,0x28,0x44,0x44,0xfe,0x82,0x82,0x101,0x0,0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x1f0, 0x28, 0x28, 0x24, 0x1e4, 0x24, 0x3e, 0x22, 0x22, 0x1e1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1f0,0x28,0x28,0x24,0x1e4,0x24,0x3e,0x22,0x22,0x1e1,0x0,0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x2, 0x2, 0x2, 0x2, 0x82, 0x44, 0x38, 0x18, 0x20, 0x18, 0x0, 0x0, + 0x0,0x0,0x38,0x44,0x82,0x2,0x2,0x2,0x2,0x82,0x44,0x38,0x18,0x20,0x18,0x0, // 200 - 0x18, 0x20, 0x0, 0xfe, 0x2, 0x2, 0x2, 0xfe, 0x2, 0x2, 0x2, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x0,0xfe,0x2,0x2,0x2,0xfe,0x2,0x2,0x2,0x2,0xfe,0x0,0x0,0x0,0x0, // 201 - 0x60, 0x10, 0x0, 0xfe, 0x2, 0x2, 0x2, 0xfe, 0x2, 0x2, 0x2, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x0,0xfe,0x2,0x2,0x2,0xfe,0x2,0x2,0x2,0x2,0xfe,0x0,0x0,0x0,0x0, // 202 - 0x30, 0x48, 0x0, 0xfe, 0x2, 0x2, 0x2, 0xfe, 0x2, 0x2, 0x2, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0xfe,0x2,0x2,0x2,0xfe,0x2,0x2,0x2,0x2,0xfe,0x0,0x0,0x0,0x0, // 203 - 0x48, 0x48, 0x0, 0xfe, 0x2, 0x2, 0x2, 0xfe, 0x2, 0x2, 0x2, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0xfe,0x2,0x2,0x2,0xfe,0x2,0x2,0x2,0x2,0xfe,0x0,0x0,0x0,0x0, // 204 - 0x18, 0x20, 0x0, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x0,0x7c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x7c,0x0,0x0,0x0,0x0, // 205 - 0x60, 0x10, 0x0, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x0,0x7c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x7c,0x0,0x0,0x0,0x0, // 206 - 0x30, 0x48, 0x0, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x7c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x7c,0x0,0x0,0x0,0x0, // 207 - 0x48, 0x48, 0x0, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x7c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x7c,0x0,0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x3e, 0x42, 0x82, 0x82, 0x9f, 0x82, 0x82, 0x82, 0x42, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x42,0x82,0x82,0x9f,0x82,0x82,0x82,0x42,0x3e,0x0,0x0,0x0,0x0, // 209 - 0x58, 0x24, 0x0, 0x82, 0x86, 0x8a, 0x8a, 0x92, 0x92, 0xa2, 0xa2, 0xc2, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x82,0x86,0x8a,0x8a,0x92,0x92,0xa2,0xa2,0xc2,0x82,0x0,0x0,0x0,0x0, // 210 - 0x18, 0x20, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 211 - 0x60, 0x10, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 212 - 0x30, 0x48, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 213 - 0x58, 0x24, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 214 - 0x48, 0x48, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x28, 0x10, 0x28, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x44,0x28,0x10,0x28,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0xb8, 0x44, 0x42, 0xa2, 0x92, 0x92, 0x8a, 0x84, 0x44, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xb8,0x44,0x42,0xa2,0x92,0x92,0x8a,0x84,0x44,0x3a,0x0,0x0,0x0,0x0, // 217 - 0x18, 0x20, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 218 - 0x60, 0x10, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 219 - 0x30, 0x48, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 220 - 0x48, 0x48, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x7c,0x0,0x0,0x0,0x0, // 221 - 0x60, 0x10, 0x0, 0x101, 0x82, 0x82, 0x44, 0x28, 0x28, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x0,0x101,0x82,0x82,0x44,0x28,0x28,0x10,0x10,0x10,0x10,0x0,0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x2, 0x2, 0x7e, 0x82, 0x82, 0x82, 0xc2, 0x3e, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x2,0x2,0x7e,0x82,0x82,0x82,0xc2,0x3e,0x2,0x2,0x0,0x0,0x0,0x0, // 223 - 0x0, 0x0, 0x38, 0x44, 0x42, 0x22, 0x12, 0x12, 0x22, 0x42, 0x82, 0x82, 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x38,0x44,0x42,0x22,0x12,0x12,0x22,0x42,0x82,0x82,0x72,0x0,0x0,0x0,0x0, // 224 - 0x0, 0x0, 0xc, 0x10, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x10,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 225 - 0x0, 0x0, 0x60, 0x10, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x60,0x10,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 226 - 0x0, 0x0, 0x18, 0x24, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0x24,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 227 - 0x0, 0x0, 0x58, 0x24, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x58,0x24,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 228 - 0x0, 0x0, 0x24, 0x24, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 229 - 0x0, 0x10, 0x28, 0x10, 0x0, 0x3c, 0x42, 0x40, 0x7c, 0x42, 0x42, 0x62, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x28,0x10,0x0,0x3c,0x42,0x40,0x7c,0x42,0x42,0x62,0xdc,0x0,0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, 0x111, 0x110, 0x1fe, 0x11, 0x11, 0x129, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xee,0x111,0x110,0x1fe,0x11,0x11,0x129,0xc6,0x0,0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x42, 0x2, 0x2, 0x2, 0x2, 0x42, 0x3c, 0x18, 0x20, 0x18, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c,0x42,0x2,0x2,0x2,0x2,0x42,0x3c,0x18,0x20,0x18,0x0, // 232 - 0x0, 0x0, 0xc, 0x10, 0x0, 0x3c, 0x42, 0x42, 0x7e, 0x2, 0x2, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x10,0x0,0x3c,0x42,0x42,0x7e,0x2,0x2,0x42,0x3c,0x0,0x0,0x0,0x0, // 233 - 0x0, 0x0, 0x60, 0x10, 0x0, 0x3c, 0x42, 0x42, 0x7e, 0x2, 0x2, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x60,0x10,0x0,0x3c,0x42,0x42,0x7e,0x2,0x2,0x42,0x3c,0x0,0x0,0x0,0x0, // 234 - 0x0, 0x0, 0x18, 0x24, 0x0, 0x3c, 0x42, 0x42, 0x7e, 0x2, 0x2, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0x24,0x0,0x3c,0x42,0x42,0x7e,0x2,0x2,0x42,0x3c,0x0,0x0,0x0,0x0, // 235 - 0x0, 0x0, 0x24, 0x24, 0x0, 0x3c, 0x42, 0x42, 0x7e, 0x2, 0x2, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x0,0x3c,0x42,0x42,0x7e,0x2,0x2,0x42,0x3c,0x0,0x0,0x0,0x0, // 236 - 0x0, 0x0, 0xc, 0x10, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x10,0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 237 - 0x0, 0x0, 0x60, 0x10, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x60,0x10,0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 238 - 0x0, 0x0, 0x18, 0x24, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0x24,0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 239 - 0x0, 0x0, 0x24, 0x24, 0x0, 0x1c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x0,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0,0x0,0x0, // 240 - 0x0, 0x0, 0x28, 0x18, 0x24, 0x20, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x28,0x18,0x24,0x20,0x7c,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 241 - 0x0, 0x0, 0x58, 0x24, 0x0, 0x3a, 0x46, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x58,0x24,0x0,0x3a,0x46,0x42,0x42,0x42,0x42,0x42,0x42,0x0,0x0,0x0,0x0, // 242 - 0x0, 0x0, 0xc, 0x10, 0x0, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x10,0x0,0x3c,0x42,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 243 - 0x0, 0x0, 0x30, 0x8, 0x0, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x30,0x8,0x0,0x3c,0x42,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 244 - 0x0, 0x0, 0x18, 0x24, 0x0, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0x24,0x0,0x3c,0x42,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 245 - 0x0, 0x0, 0x58, 0x24, 0x0, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x58,0x24,0x0,0x3c,0x42,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 246 - 0x0, 0x0, 0x24, 0x24, 0x0, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x0,0x3c,0x42,0x42,0x42,0x42,0x42,0x42,0x3c,0x0,0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x0,0x0,0xfe,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0x22, 0x22, 0x52, 0x4a, 0x46, 0x44, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x5c,0x22,0x22,0x52,0x4a,0x46,0x44,0x3a,0x0,0x0,0x0,0x0, // 249 - 0x0, 0x0, 0xc, 0x10, 0x0, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xc,0x10,0x0,0x42,0x42,0x42,0x42,0x42,0x42,0x62,0x5c,0x0,0x0,0x0,0x0, // 250 - 0x0, 0x0, 0x30, 0x8, 0x0, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x30,0x8,0x0,0x42,0x42,0x42,0x42,0x42,0x42,0x62,0x5c,0x0,0x0,0x0,0x0, // 251 - 0x0, 0x0, 0x18, 0x24, 0x0, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x18,0x24,0x0,0x42,0x42,0x42,0x42,0x42,0x42,0x62,0x5c,0x0,0x0,0x0,0x0, // 252 - 0x0, 0x0, 0x24, 0x24, 0x0, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x62, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x24,0x24,0x0,0x42,0x42,0x42,0x42,0x42,0x42,0x62,0x5c,0x0,0x0,0x0,0x0, // 253 - 0x0, 0x0, 0x60, 0x10, 0x0, 0x82, 0x82, 0x44, 0x44, 0x28, 0x28, 0x28, 0x10, 0x10, 0x8, 0x6, 0x0, 0x0, + 0x0,0x60,0x10,0x0,0x82,0x82,0x44,0x44,0x28,0x28,0x28,0x10,0x10,0x8,0x6,0x0, // 254 - 0x0, 0x0, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x42, 0x42, 0x42, 0x42, 0x46, 0x3a, 0x2, 0x2, 0x2, 0x0, 0x0, + 0x0,0x2,0x2,0x2,0x3a,0x46,0x42,0x42,0x42,0x42,0x46,0x3a,0x2,0x2,0x2,0x0, // 255 - 0x0, 0x0, 0x48, 0x48, 0x0, 0x82, 0x82, 0x44, 0x44, 0x28, 0x28, 0x28, 0x10, 0x10, 0x8, 0x6, 0x0, 0x0, + 0x0,0x48,0x48,0x0,0x82,0x82,0x44,0x44,0x28,0x28,0x28,0x10,0x10,0x8,0x6,0x0, }; // Font: Liberation Mono,13,-1,5,50,0,0,0,0,0 -const unsigned int ff3_height = 21; -const unsigned int ff3_line_height = 20; +const unsigned int ff3_height = 19; +const unsigned int ff3_line_height = 19; const unsigned int ff3_width = 10; +const unsigned int ff3_stride = 1; const unsigned char ff3_first_char = ' '; uint32_t ff3_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x10,0x10,0x0,0x0, + 0x0,0x0,0x0, // 34 - 0x0, 0x0, 0x0, 0x44, 0x44, 0x44, 0x44, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x44,0x44,0x44,0x44,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x88, 0x88, 0x44, 0x1ff, 0x44, 0x44, 0x44, 0x1ff, 0x22, 0x22, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x88,0x88,0x44,0x1ff,0x44,0x44,0x44,0x1ff,0x22,0x22,0x22,0x0,0x0, + 0x0,0x0,0x0, // 36 - 0x0, 0x0, 0x0, 0x20, 0x78, 0xa4, 0x122, 0x22, 0x24, 0x78, 0xa0, 0x120, 0x122, 0xa4, 0x78, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x20,0x78,0xa4,0x122,0x22,0x24,0x78,0xa0,0x120,0x122,0xa4,0x78,0x20,0x0, + 0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x86, 0x49, 0x49, 0x29, 0x26, 0x10, 0xc8, 0x128, 0x124, 0x124, 0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x86,0x49,0x49,0x29,0x26,0x10,0xc8,0x128,0x124,0x124,0xc2,0x0,0x0, + 0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x44, 0x44, 0x38, 0x10c, 0x112, 0xa2, 0xa2, 0xc2, 0x33c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x44,0x44,0x38,0x10c,0x112,0xa2,0xa2,0xc2,0x33c,0x0,0x0, + 0x0,0x0,0x0, // 39 - 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 40 - 0x0, 0x0, 0x0, 0x40, 0x20, 0x10, 0x10, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x10, 0x10, 0x20, 0x40, 0x0, 0x0, + 0x0,0x0,0x40,0x20,0x10,0x10,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x10,0x10, + 0x20,0x40,0x0, // 41 - 0x0, 0x0, 0x0, 0x8, 0x10, 0x20, 0x20, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x10, 0x8, 0x0, 0x0, + 0x0,0x0,0x8,0x10,0x20,0x20,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x20,0x20, + 0x10,0x8,0x0, // 42 - 0x0, 0x0, 0x0, 0x10, 0x92, 0x54, 0x38, 0x28, 0x44, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x10,0x92,0x54,0x38,0x28,0x44,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x1ff, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x10,0x10,0x10,0x10,0x1ff,0x10,0x10,0x10,0x10,0x0,0x0,0x0, + 0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x10, 0x10, 0x8, 0x8, 0x4, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x10,0x10,0x8, + 0x8,0x4,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0, + 0x0,0x0,0x0, // 47 - 0x0, 0x0, 0x0, 0x100, 0x80, 0x80, 0x40, 0x20, 0x20, 0x10, 0x10, 0x8, 0x4, 0x4, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x100,0x80,0x80,0x40,0x20,0x20,0x10,0x10,0x8,0x4,0x4,0x2,0x0,0x0, + 0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x92, 0x92, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x82,0x82,0x82,0x92,0x92,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x18, 0x16, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x18,0x16,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x0,0x0, + 0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x80, 0x80, 0x40, 0x30, 0x8, 0x4, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x82,0x80,0x80,0x40,0x30,0x8,0x4,0x2,0xfe,0x0,0x0, + 0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x80, 0x40, 0x30, 0x40, 0x80, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x82,0x80,0x40,0x30,0x40,0x80,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x40, 0x60, 0x50, 0x50, 0x48, 0x44, 0x42, 0x1fe, 0x40, 0x40, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x40,0x60,0x50,0x50,0x48,0x44,0x42,0x1fe,0x40,0x40,0x40,0x0,0x0, + 0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0xfe, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x80, 0x80, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xfe,0x2,0x2,0x2,0x3a,0x46,0x80,0x80,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x2, 0x2, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x2,0x2,0x3a,0x46,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0xfe, 0x80, 0x40, 0x20, 0x20, 0x10, 0x10, 0x10, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xfe,0x80,0x40,0x20,0x20,0x10,0x10,0x10,0x8,0x8,0x8,0x0,0x0, + 0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x44, 0x38, 0x44, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x82,0x82,0x44,0x38,0x44,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x80, 0x80, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x82,0x82,0x82,0xc4,0xb8,0x80,0x80,0x42,0x3c,0x0,0x0, + 0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0, + 0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x10, 0x10, 0x8, 0x8, 0x4, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x20,0x10,0x10,0x8, + 0x8,0x4,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0xc0, 0x30, 0xc, 0x2, 0xc, 0x30, 0xc0, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x100,0xc0,0x30,0xc,0x2,0xc,0x30,0xc0,0x100,0x0,0x0,0x0, + 0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe, 0x0, 0x0, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe,0x0,0x0,0x1fe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xc, 0x30, 0xc0, 0x100, 0xc0, 0x30, 0xc, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x2,0xc,0x30,0xc0,0x100,0xc0,0x30,0xc,0x2,0x0,0x0,0x0, + 0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x80, 0x40, 0x20, 0x10, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x82,0x80,0x40,0x20,0x10,0x0,0x0,0x10,0x10,0x0,0x0, + 0x0,0x0,0x0, // 64 - 0x0, 0x0, 0x0, 0xf8, 0x104, 0x102, 0x2b1, 0x2c9, 0x245, 0x245, 0x245, 0x245, 0x265, 0x199, 0x2, 0x104, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xf8,0x104,0x102,0x2b1,0x2c9,0x245,0x245,0x245,0x245,0x265,0x199,0x2,0x104,0xf8, + 0x0,0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0x20, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x20,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x7e, 0x82, 0x102, 0x102, 0x82, 0x7e, 0x82, 0x102, 0x102, 0x82, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e,0x82,0x102,0x102,0x82,0x7e,0x82,0x102,0x102,0x82,0x7e,0x0,0x0, + 0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x102, 0x2, 0x2, 0x2, 0x2, 0x2, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x102,0x2,0x2,0x2,0x2,0x2,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x7e, 0x82, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x82, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e,0x82,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x82,0x7e,0x0,0x0, + 0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0x1fc, 0x4, 0x4, 0x4, 0x4, 0x1fc, 0x4, 0x4, 0x4, 0x4, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fc,0x4,0x4,0x4,0x4,0x1fc,0x4,0x4,0x4,0x4,0x4,0x0,0x0, + 0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x102, 0x2, 0x2, 0x1e2, 0x102, 0x102, 0x102, 0x104, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x102,0x2,0x2,0x1e2,0x102,0x102,0x102,0x104,0xf8,0x0,0x0, + 0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0x102, 0x102, 0x102, 0x102, 0x102, 0x1fe, 0x102, 0x102, 0x102, 0x102, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x102,0x102,0x102,0x102,0x102,0x1fe,0x102,0x102,0x102,0x102,0x102,0x0,0x0, + 0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0x1fc, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fc,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x42, 0x42, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x42,0x42,0x3c,0x0,0x0, + 0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x102, 0x82, 0x42, 0x22, 0x12, 0x1a, 0x26, 0x42, 0x82, 0x102, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x102,0x82,0x42,0x22,0x12,0x1a,0x26,0x42,0x82,0x102,0x202,0x0,0x0, + 0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x4,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x102, 0x186, 0x186, 0x14a, 0x14a, 0x132, 0x132, 0x102, 0x102, 0x102, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x102,0x186,0x186,0x14a,0x14a,0x132,0x132,0x102,0x102,0x102,0x102,0x0,0x0, + 0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0x102, 0x106, 0x10a, 0x10a, 0x112, 0x112, 0x122, 0x142, 0x142, 0x182, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x102,0x106,0x10a,0x10a,0x112,0x112,0x122,0x142,0x142,0x182,0x102,0x0,0x0, + 0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x7e, 0x82, 0x102, 0x102, 0x82, 0x7e, 0x2, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e,0x82,0x102,0x102,0x82,0x7e,0x2,0x2,0x2,0x2,0x2,0x0,0x0, + 0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x20, 0x40, 0x180, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x20,0x40, + 0x180,0x0,0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x7e, 0x82, 0x102, 0x102, 0x82, 0x7e, 0x22, 0x42, 0x42, 0x82, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e,0x82,0x102,0x102,0x82,0x7e,0x22,0x42,0x42,0x82,0x102,0x0,0x0, + 0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x102, 0x2, 0x4, 0x78, 0x80, 0x100, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x102,0x2,0x4,0x78,0x80,0x100,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x3fe, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3fe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0,0x0, + 0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x202, 0x202, 0x104, 0x104, 0x88, 0x88, 0x50, 0x50, 0x50, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x202,0x202,0x104,0x104,0x88,0x88,0x50,0x50,0x50,0x20,0x20,0x0,0x0, + 0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x201, 0x201, 0x201, 0x132, 0x132, 0x132, 0x14a, 0x14a, 0x14a, 0x84, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x201,0x201,0x201,0x132,0x132,0x132,0x14a,0x14a,0x14a,0x84,0x84,0x0,0x0, + 0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x102, 0x84, 0x48, 0x48, 0x30, 0x10, 0x30, 0x48, 0x48, 0x84, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x102,0x84,0x48,0x48,0x30,0x10,0x30,0x48,0x48,0x84,0x102,0x0,0x0, + 0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x202, 0x104, 0x88, 0x88, 0x50, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x202,0x104,0x88,0x88,0x50,0x20,0x20,0x20,0x20,0x20,0x20,0x0,0x0, + 0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x1fe, 0x100, 0x80, 0x40, 0x20, 0x10, 0x10, 0x8, 0x4, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fe,0x100,0x80,0x40,0x20,0x10,0x10,0x8,0x4,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 91 - 0x0, 0x0, 0x0, 0xf0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xf0, 0x0, 0x0, + 0x0,0x0,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, + 0x10,0xf0,0x0, // 92 - 0x0, 0x0, 0x0, 0x2, 0x4, 0x4, 0x8, 0x10, 0x10, 0x20, 0x20, 0x40, 0x80, 0x80, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x2,0x4,0x4,0x8,0x10,0x10,0x20,0x20,0x40,0x80,0x80,0x100,0x0,0x0, + 0x0,0x0,0x0, // 93 - 0x0, 0x0, 0x0, 0x3c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x0, 0x0, + 0x0,0x0,0x3c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x28, 0x28, 0x44, 0x44, 0x44, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x28,0x28,0x44,0x44,0x44,0x82,0x82,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ff, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff, + 0x0,0x0,0x0, // 96 - 0x0, 0x0, 0x8, 0x10, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x10,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 98 - 0x0, 0x0, 0x0, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x82, 0x82, 0x46, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x2,0x2,0x2,0x3a,0x46,0x82,0x82,0x82,0x82,0x82,0x46,0x3a,0x0,0x0, + 0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x2, 0x2, 0x2, 0x2, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x78,0x84,0x2,0x2,0x2,0x2,0x2,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 100 - 0x0, 0x0, 0x0, 0x80, 0x80, 0x80, 0xb8, 0xc4, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x80,0x80,0x80,0xb8,0xc4,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x0,0x0, + 0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0xfe, 0x2, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x38,0x44,0x82,0x82,0xfe,0x2,0x2,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 102 - 0x0, 0x0, 0x0, 0x1e0, 0x10, 0x10, 0x1fc, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e0,0x10,0x10,0x1fc,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0, + 0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb8, 0xc4, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x80, 0x80, 0x42, 0x3c, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xb8,0xc4,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x80,0x80, + 0x42,0x3c,0x0, // 104 - 0x0, 0x0, 0x0, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x2,0x2,0x2,0x3a,0x46,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x0,0x0, + 0x0,0x0,0x0, // 105 - 0x0, 0x0, 0x0, 0x20, 0x20, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x20,0x20,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 106 - 0x0, 0x0, 0x0, 0x20, 0x20, 0x0, 0x3c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1e, 0x0, 0x0, + 0x0,0x0,0x20,0x20,0x0,0x3c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x1e,0x0, // 107 - 0x0, 0x0, 0x0, 0x2, 0x2, 0x2, 0x82, 0x42, 0x22, 0x1a, 0x16, 0x22, 0x42, 0x82, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x2,0x2,0x2,0x82,0x42,0x22,0x1a,0x16,0x22,0x42,0x82,0x102,0x0,0x0, + 0x0,0x0,0x0, // 108 - 0x0, 0x0, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19a, 0x266, 0x222, 0x222, 0x222, 0x222, 0x222, 0x222, 0x222, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x19a,0x266,0x222,0x222,0x222,0x222,0x222,0x222,0x222,0x0,0x0, + 0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3a,0x46,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x0,0x0, + 0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x82, 0x82, 0x46, 0x3a, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3a,0x46,0x82,0x82,0x82,0x82,0x82,0x46,0x3a,0x2,0x2, + 0x2,0x2,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb8, 0xc4, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x80, 0x80, 0x80, 0x80, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xb8,0xc4,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x80,0x80, + 0x80,0x80,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e8, 0x18, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1e8,0x18,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0x0,0x0, + 0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x82, 0x2, 0x2, 0x7c, 0x80, 0x80, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c,0x82,0x2,0x2,0x7c,0x80,0x80,0x82,0x7c,0x0,0x0, + 0x0,0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x8, 0x8, 0xfc, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8,0x8,0xfc,0x8,0x8,0x8,0x8,0x8,0x8,0x8,0xf0,0x0,0x0, + 0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x0,0x0, + 0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x44, 0x44, 0x44, 0x28, 0x28, 0x28, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x82,0x44,0x44,0x44,0x28,0x28,0x28,0x10,0x10,0x0,0x0, + 0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x101, 0x101, 0x82, 0x92, 0x92, 0xaa, 0xaa, 0x44, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x101,0x101,0x82,0x92,0x92,0xaa,0xaa,0x44,0x44,0x0,0x0, + 0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x44, 0x28, 0x28, 0x10, 0x28, 0x28, 0x44, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x82,0x44,0x28,0x28,0x10,0x28,0x28,0x44,0x82,0x0,0x0, + 0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x82, 0x44, 0x44, 0x44, 0x28, 0x28, 0x30, 0x10, 0x10, 0x10, 0x8, 0x6, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x82,0x82,0x44,0x44,0x44,0x28,0x28,0x30,0x10,0x10,0x10, + 0x8,0x6,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x80, 0x40, 0x20, 0x10, 0x8, 0x4, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfe,0x80,0x40,0x20,0x10,0x8,0x4,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 123 - 0x0, 0x0, 0x0, 0xe0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xc, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0xe0, 0x0, 0x0, + 0x0,0x0,0xe0,0x10,0x10,0x10,0x10,0x10,0x10,0xc,0x10,0x10,0x10,0x10,0x10,0x10, + 0x10,0xe0,0x0, // 124 - 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, + 0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, + 0x10,0x10,0x0, // 125 - 0x0, 0x0, 0x0, 0x1c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xc0, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1c, 0x0, 0x0, + 0x0,0x0,0x1c,0x20,0x20,0x20,0x20,0x20,0x20,0xc0,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x1c,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11c, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11c,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 127 - 0x0, 0x0, 0x0, 0x3e, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2b4,0x24d,0x3aa,0x50,0x1aa,0x126,0x6c,0x20d,0x15a,0x1a8,0x66,0x1ad,0x146,0xaa,0x0,0x0, + 0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0xc, 0x1a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 130 - 0x0, 0x0, 0x0, 0x3e, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 131 - 0x0, 0x120, 0x120, 0x1e, 0x8, 0x18, 0x30, 0x230, 0x160, 0xc0, 0xc0, 0x40, 0xc0, 0x40, 0x1e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0x6c, 0x0, 0x88, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2aa, + 0x0,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x244, 0x26c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x10, 0x0, 0x6e, 0x0, 0x8, 0x18, 0x8, 0x8, 0x8, 0x8, 0x10, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x8, 0x8, 0x0, 0x7e, 0x0, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x7e, 0x0, 0x8, 0x8, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 136 - 0x60, 0x90, 0x0, 0x35e, 0x8, 0x8, 0x18, 0x108, 0xb8, 0x8c, 0x108, 0x18, 0x8, 0xc, 0x2ba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 137 - 0x0, 0x0, 0x8, 0x24, 0x82, 0x22, 0x202, 0x124, 0x8, 0x80, 0x240, 0x220, 0x220, 0x210, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 138 - 0x80, 0x70, 0x0, 0x58, 0x184, 0x102, 0x6, 0x4, 0x7c, 0x1f0, 0x100, 0x102, 0x102, 0x102, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x0, 0x128, 0x184, 0x102, 0x6, 0x4, 0x7c, 0x1f0, 0x100, 0x102, 0x102, 0x102, 0x68, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 140 - 0x60, 0x10, 0x0, 0x128, 0x184, 0x102, 0x6, 0x4, 0x7c, 0x1f0, 0x100, 0x102, 0x102, 0x102, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 141 - 0x0, 0x0, 0x0, 0x2a0, 0x210, 0x8, 0x20c, 0x4, 0x206, 0xc, 0x206, 0xc, 0x208, 0x218, 0x2a0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x182, 0xcc, 0x68, 0x38, 0x38, 0x4c, 0x186, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x30, 0x0, 0x0, 0x1fe, 0x0, 0x0, 0x10, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x124, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x6, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0xc, 0x4, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x24, 0x0, 0x66, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x4c, 0x64, 0x8, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x3e0, 0x3f0, 0x3f0, 0x3e0, 0x1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x92, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x124, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 152 - 0x0, 0x0, 0x30, 0x48, 0x0, 0x0, 0x1ae, 0x4, 0x104, 0x44, 0x2c, 0x44, 0x4, 0x104, 0x1de, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x200, 0x200, 0x180, 0x30, 0xc, 0x14, 0x60, 0x300, 0x0, 0x200, 0x100, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 154 - 0x0, 0x0, 0x4, 0x18, 0x0, 0x0, 0x54, 0x42, 0x42, 0x6, 0x3c, 0x60, 0x40, 0x42, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x42, 0x42, 0x6, 0x3c, 0x60, 0x40, 0x42, 0x2a, 0x0, 0x8, 0x10, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 156 - 0x0, 0x0, 0x30, 0x10, 0x8, 0x0, 0x44, 0x22, 0x42, 0x6, 0x3c, 0x60, 0x40, 0x42, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d0, 0x8c, 0x84, 0x86, 0x182, 0x6, 0x184, 0x84, 0x1a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 158 - 0x0, 0x0, 0x24, 0x18, 0x0, 0x0, 0xd6, 0x42, 0x60, 0x30, 0x10, 0x8, 0x8c, 0x84, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 159 - 0x0, 0x0, 0x60, 0x10, 0x0, 0x0, 0xee, 0x42, 0x20, 0x30, 0x10, 0x8, 0x8c, 0x84, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x0,0x0, + 0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10, + 0x0,0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x78, 0x84, 0x2, 0x2, 0x2, 0x2, 0x84, 0x78, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x20,0xf8,0x1ac,0x326,0x26,0x26,0x26,0x326,0x1ac,0xf8,0x20,0x0,0x0, + 0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x70, 0x88, 0x8, 0x8, 0x8, 0x7e, 0x8, 0x8, 0x8, 0x104, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0x88,0x8,0x8,0x8,0x7e,0x8,0x8,0x8,0x104,0xfe,0x0,0x0, + 0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xba, 0x44, 0x82, 0x82, 0x82, 0x44, 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xba,0x44,0x82,0x82,0x82,0x44,0xba,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x202, 0x104, 0x88, 0x50, 0x20, 0x1fc, 0x20, 0x20, 0x1fc, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x202,0x104,0x88,0x50,0x20,0x1fc,0x20,0x20,0x1fc,0x20,0x20,0x0,0x0, + 0x0,0x0,0x0, // 166 - 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x0, + 0x0,0x0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0,0x0,0x10,0x10,0x10,0x10,0x10, + 0x10,0x10,0x0, // 167 - 0x0, 0x0, 0x0, 0x7c, 0x82, 0x2, 0x2, 0x7c, 0x86, 0x82, 0x82, 0x7c, 0x80, 0x80, 0x82, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7c,0x82,0x2,0x2,0x7c,0x86,0x82,0x82,0x7c,0x80,0x80,0x82,0x7c,0x0, + 0x0,0x0,0x0, // 168 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 169 - 0x0, 0x0, 0x0, 0xfc, 0x102, 0x201, 0x231, 0x249, 0x209, 0x209, 0x249, 0x231, 0x201, 0x102, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfc,0x102,0x201,0x231,0x249,0x209,0x209,0x249,0x231,0x201,0x102,0xfc,0x0,0x0, + 0x0,0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x40, 0x78, 0x44, 0x64, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x40,0x78,0x44,0x64,0x98,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x110, 0x88, 0x44, 0x22, 0x44, 0x88, 0x110, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x110,0x88,0x44,0x22,0x44,0x88,0x110,0x0,0x0,0x0, + 0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe, 0x100, 0x100, 0x100, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe,0x100,0x100,0x100,0x100,0x0,0x0,0x0, + 0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 174 - 0x0, 0x0, 0x0, 0xfc, 0x102, 0x201, 0x239, 0x249, 0x249, 0x239, 0x229, 0x249, 0x201, 0x102, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xfc,0x102,0x201,0x239,0x249,0x249,0x239,0x229,0x249,0x201,0x102,0xfc,0x0,0x0, + 0x0,0x0,0x0, // 175 - 0x0, 0x0, 0x3ff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x3ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x44, 0x44, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x44,0x44,0x44,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x10, 0x10, 0x1ff, 0x10, 0x10, 0x10, 0x10, 0x0, 0x1ff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10,0x10,0x10,0x10,0x1ff,0x10,0x10,0x10,0x10,0x0,0x1ff,0x0,0x0, + 0x0,0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x0, 0x70, 0x88, 0x80, 0x40, 0x30, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0x88,0x80,0x40,0x30,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x0, 0x70, 0x88, 0x80, 0x60, 0x80, 0x88, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0x88,0x80,0x60,0x80,0x88,0x70,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 180 - 0x0, 0x0, 0x20, 0x10, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x20,0x10,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc6, 0xba, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xc6,0xba,0x2,0x2, + 0x2,0x2,0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0x1fc, 0x9e, 0x9e, 0x9e, 0x9e, 0x9c, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fc,0x9e,0x9e,0x9e,0x9e,0x9c,0x90,0x90,0x90,0x90,0x90,0x90,0x90, + 0x90,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x6, 0x8, 0x6, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x6, + 0x8,0x6,0x0, // 185 - 0x0, 0x0, 0x0, 0x0, 0x20, 0x38, 0x20, 0x20, 0x20, 0x20, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x20,0x38,0x20,0x20,0x20,0x20,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x84, 0x84, 0x84, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x84,0x84,0x84,0x84,0x78,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0x44, 0x88, 0x110, 0x88, 0x44, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x44,0x88,0x110,0x88,0x44,0x22,0x0,0x0,0x0, + 0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x84, 0x86, 0x44, 0x44, 0x24, 0x12e, 0x190, 0x190, 0x148, 0x3c4, 0x104, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x84,0x86,0x44,0x44,0x24,0x12e,0x190,0x190,0x148,0x3c4,0x104,0x0,0x0, + 0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x84, 0x86, 0x44, 0x44, 0x24, 0x1ae, 0x250, 0x210, 0x188, 0x44, 0x3c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x84,0x86,0x44,0x44,0x24,0x1ae,0x250,0x210,0x188,0x44,0x3c4,0x0,0x0, + 0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x86, 0x89, 0x46, 0x48, 0x29, 0x126, 0x190, 0x190, 0x148, 0x3c4, 0x104, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x86,0x89,0x46,0x48,0x29,0x126,0x190,0x190,0x148,0x3c4,0x104,0x0,0x0, + 0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x10, 0x8, 0x4, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x10,0x8,0x4,0x82,0x82,0x44,0x38, + 0x0,0x0,0x0, // 192 - 0x8, 0x10, 0x20, 0x0, 0x20, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x20,0x0,0x20,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 193 - 0x80, 0x40, 0x20, 0x0, 0x20, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40,0x20,0x0,0x20,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 194 - 0x20, 0x50, 0x88, 0x0, 0x20, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50,0x88,0x0,0x20,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 195 - 0x118, 0x124, 0xc4, 0x0, 0x20, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x124,0xc4,0x0,0x20,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 196 - 0x0, 0x90, 0x90, 0x0, 0x20, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x90,0x90,0x0,0x20,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 197 - 0x0, 0x60, 0x90, 0x90, 0x60, 0x20, 0x50, 0x50, 0x88, 0x88, 0x88, 0x1fc, 0x104, 0x104, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x60,0x90,0x90,0x60,0x20,0x50,0x50,0x88,0x88,0x88,0x1fc,0x104,0x104,0x202,0x0,0x0, + 0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x3f0, 0x30, 0x28, 0x28, 0x24, 0x3e4, 0x24, 0x3e, 0x22, 0x22, 0x3e1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3f0,0x30,0x28,0x28,0x24,0x3e4,0x24,0x3e,0x22,0x22,0x3e1,0x0,0x0, + 0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x102, 0x2, 0x2, 0x2, 0x2, 0x2, 0x102, 0x84, 0x78, 0x10, 0x30, 0x40, 0x30, 0x0, 0x0, + 0x0,0x0,0x0,0x78,0x84,0x102,0x2,0x2,0x2,0x2,0x2,0x102,0x84,0x78,0x10,0x30, + 0x40,0x30,0x0, // 200 - 0x8, 0x10, 0x20, 0x0, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x20,0x0,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 201 - 0x40, 0x20, 0x10, 0x0, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x10,0x0,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 202 - 0x20, 0x50, 0x88, 0x0, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50,0x88,0x0,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 203 - 0x0, 0x48, 0x48, 0x0, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x2, 0x2, 0x2, 0x2, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x48,0x0,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x2,0x2,0x2,0x2,0x1fe,0x0,0x0, + 0x0,0x0,0x0, // 204 - 0x8, 0x10, 0x20, 0x0, 0x1fc, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x20,0x0,0x1fc,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 205 - 0x80, 0x40, 0x20, 0x0, 0x1fc, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40,0x20,0x0,0x1fc,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 206 - 0x20, 0x50, 0x88, 0x0, 0x1fc, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50,0x88,0x0,0x1fc,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 207 - 0x0, 0x90, 0x90, 0x0, 0x1fc, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x90,0x90,0x0,0x1fc,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x7e, 0x82, 0x102, 0x102, 0x102, 0x11f, 0x102, 0x102, 0x102, 0x82, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e,0x82,0x102,0x102,0x102,0x11f,0x102,0x102,0x102,0x82,0x7e,0x0,0x0, + 0x0,0x0,0x0, // 209 - 0x118, 0x124, 0xc4, 0x0, 0x102, 0x106, 0x10a, 0x10a, 0x112, 0x112, 0x122, 0x142, 0x142, 0x182, 0x102, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x124,0xc4,0x0,0x102,0x106,0x10a,0x10a,0x112,0x112,0x122,0x142,0x142,0x182,0x102,0x0,0x0, + 0x0,0x0,0x0, // 210 - 0x8, 0x10, 0x20, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x20,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 211 - 0x80, 0x40, 0x20, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40,0x20,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 212 - 0x20, 0x50, 0x88, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50,0x88,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 213 - 0x118, 0x124, 0xc4, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x124,0xc4,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 214 - 0x0, 0x48, 0x48, 0x0, 0x78, 0x84, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x48,0x0,0x78,0x84,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0x44, 0x28, 0x10, 0x28, 0x44, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x82,0x44,0x28,0x10,0x28,0x44,0x82,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x178, 0x84, 0x82, 0x142, 0x122, 0x112, 0x10a, 0x10a, 0x104, 0x86, 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x178,0x84,0x82,0x142,0x122,0x112,0x10a,0x10a,0x104,0x86,0x7a,0x0,0x0, + 0x0,0x0,0x0, // 217 - 0x8, 0x10, 0x20, 0x0, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10,0x20,0x0,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 218 - 0x40, 0x20, 0x10, 0x0, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20,0x10,0x0,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 219 - 0x20, 0x50, 0x88, 0x0, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50,0x88,0x0,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 220 - 0x0, 0x48, 0x48, 0x0, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48,0x48,0x0,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 221 - 0x80, 0x40, 0x20, 0x0, 0x202, 0x104, 0x88, 0x88, 0x50, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40,0x20,0x0,0x202,0x104,0x88,0x88,0x50,0x20,0x20,0x20,0x20,0x20,0x20,0x0,0x0, + 0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0x2, 0x2, 0x7e, 0x82, 0x102, 0x102, 0x102, 0x82, 0x7e, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x2,0x2,0x7e,0x82,0x102,0x102,0x102,0x82,0x7e,0x2,0x2,0x0,0x0, + 0x0,0x0,0x0, // 223 - 0x0, 0x0, 0x0, 0x78, 0x84, 0x82, 0x42, 0x22, 0x22, 0x22, 0xc2, 0x102, 0x102, 0x102, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78,0x84,0x82,0x42,0x22,0x22,0x22,0xc2,0x102,0x102,0x102,0xf2,0x0,0x0, + 0x0,0x0,0x0, // 224 - 0x0, 0x0, 0x8, 0x10, 0x20, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x10,0x20,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 225 - 0x0, 0x0, 0x40, 0x20, 0x10, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x40,0x20,0x10,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 226 - 0x0, 0x0, 0x10, 0x28, 0x44, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x28,0x44,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 227 - 0x0, 0x0, 0x8c, 0x92, 0x62, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8c,0x92,0x62,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 228 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 229 - 0x0, 0x30, 0x48, 0x48, 0x30, 0x0, 0x7c, 0x82, 0x80, 0x80, 0xfc, 0x82, 0x82, 0xc2, 0x1bc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30,0x48,0x48,0x30,0x0,0x7c,0x82,0x80,0x80,0xfc,0x82,0x82,0xc2,0x1bc,0x0,0x0, + 0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, 0x111, 0x110, 0x110, 0x1fe, 0x11, 0x11, 0x129, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xee,0x111,0x110,0x110,0x1fe,0x11,0x11,0x129,0xc6,0x0,0x0, + 0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x84, 0x2, 0x2, 0x2, 0x2, 0x2, 0x84, 0x78, 0x10, 0x30, 0x40, 0x30, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x78,0x84,0x2,0x2,0x2,0x2,0x2,0x84,0x78,0x10,0x30, + 0x40,0x30,0x0, // 232 - 0x0, 0x0, 0x8, 0x10, 0x20, 0x0, 0x38, 0x44, 0x82, 0x82, 0xfe, 0x2, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x10,0x20,0x0,0x38,0x44,0x82,0x82,0xfe,0x2,0x2,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 233 - 0x0, 0x0, 0x40, 0x20, 0x10, 0x0, 0x38, 0x44, 0x82, 0x82, 0xfe, 0x2, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x40,0x20,0x10,0x0,0x38,0x44,0x82,0x82,0xfe,0x2,0x2,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 234 - 0x0, 0x0, 0x10, 0x28, 0x44, 0x0, 0x38, 0x44, 0x82, 0x82, 0xfe, 0x2, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x28,0x44,0x0,0x38,0x44,0x82,0x82,0xfe,0x2,0x2,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 235 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x38, 0x44, 0x82, 0x82, 0xfe, 0x2, 0x2, 0x84, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x38,0x44,0x82,0x82,0xfe,0x2,0x2,0x84,0x78,0x0,0x0, + 0x0,0x0,0x0, // 236 - 0x0, 0x0, 0x8, 0x10, 0x20, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x10,0x20,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 237 - 0x0, 0x0, 0x80, 0x40, 0x20, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x80,0x40,0x20,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 238 - 0x0, 0x0, 0x20, 0x50, 0x88, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x20,0x50,0x88,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 239 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x38, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x38,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x1fc,0x0,0x0, + 0x0,0x0,0x0, // 240 - 0x0, 0x0, 0x0, 0x48, 0x38, 0x24, 0x40, 0x78, 0xc4, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x38,0x24,0x40,0x78,0xc4,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 241 - 0x0, 0x0, 0x8c, 0x92, 0x62, 0x0, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8c,0x92,0x62,0x0,0x3a,0x46,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x0,0x0, + 0x0,0x0,0x0, // 242 - 0x0, 0x0, 0x8, 0x10, 0x20, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8,0x10,0x20,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 243 - 0x0, 0x0, 0x40, 0x20, 0x10, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x40,0x20,0x10,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 244 - 0x0, 0x0, 0x10, 0x28, 0x44, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x28,0x44,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 245 - 0x0, 0x0, 0x8c, 0x92, 0x62, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x8c,0x92,0x62,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 246 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x38, 0x44, 0x82, 0x82, 0x82, 0x82, 0x82, 0x44, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x38,0x44,0x82,0x82,0x82,0x82,0x82,0x44,0x38,0x0,0x0, + 0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x1ff, 0x0, 0x0, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x1ff,0x0,0x0,0x10,0x10,0x0,0x0,0x0, + 0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb8, 0x44, 0xc2, 0xa2, 0x92, 0x8a, 0x84, 0x44, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xb8,0x44,0xc2,0xa2,0x92,0x8a,0x84,0x44,0x3a,0x0,0x0, + 0x0,0x0,0x0, // 249 - 0x0, 0x0, 0x4, 0x8, 0x10, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x4,0x8,0x10,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x0,0x0, + 0x0,0x0,0x0, // 250 - 0x0, 0x0, 0x40, 0x20, 0x10, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x40,0x20,0x10,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x0,0x0, + 0x0,0x0,0x0, // 251 - 0x0, 0x0, 0x10, 0x28, 0x44, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x10,0x28,0x44,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x0,0x0, + 0x0,0x0,0x0, // 252 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xc4, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xc4,0xb8,0x0,0x0, + 0x0,0x0,0x0, // 253 - 0x0, 0x0, 0x40, 0x20, 0x10, 0x0, 0x82, 0x82, 0x44, 0x44, 0x44, 0x28, 0x28, 0x30, 0x10, 0x10, 0x10, 0x8, 0x6, 0x0, 0x0, + 0x0,0x40,0x20,0x10,0x0,0x82,0x82,0x44,0x44,0x44,0x28,0x28,0x30,0x10,0x10,0x10, + 0x8,0x6,0x0, // 254 - 0x0, 0x0, 0x0, 0x2, 0x2, 0x2, 0x3a, 0x46, 0x82, 0x82, 0x82, 0x82, 0x82, 0x46, 0x3a, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, + 0x0,0x0,0x2,0x2,0x2,0x3a,0x46,0x82,0x82,0x82,0x82,0x82,0x46,0x3a,0x2,0x2, + 0x2,0x2,0x0, // 255 - 0x0, 0x0, 0x0, 0x48, 0x48, 0x0, 0x82, 0x82, 0x44, 0x44, 0x44, 0x28, 0x28, 0x30, 0x10, 0x10, 0x10, 0x8, 0x6, 0x0, 0x0, + 0x0,0x0,0x48,0x48,0x0,0x82,0x82,0x44,0x44,0x44,0x28,0x28,0x30,0x10,0x10,0x10, + 0x8,0x6,0x0, }; // Font: Liberation Mono,18,-1,5,50,0,0,0,0,0 -const unsigned int ff4_height = 28; +const unsigned int ff4_height = 27; const unsigned int ff4_line_height = 27; const unsigned int ff4_width = 14; +const unsigned int ff4_stride = 1; const unsigned char ff4_first_char = ' '; uint32_t ff4_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0x0,0x0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 34 - 0x0, 0x0, 0x0, 0x318, 0x318, 0x318, 0x318, 0x318, 0x318, 0x318, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x318,0x318,0x318,0x318,0x318,0x318,0x318,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x420, 0x420, 0x420, 0x210, 0x210, 0xffc, 0x210, 0x210, 0x108, 0x108, 0xffe, 0x108, 0x108, 0x84, 0x84, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x420,0x420,0x420,0x210,0x210,0xffc,0x210,0x210,0x108,0x108,0xffe,0x108, + 0x108,0x84,0x84,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 36 - 0x0, 0x0, 0xc0, 0xc0, 0x7f8, 0xffc, 0x1cce, 0x18c6, 0xc6, 0xce, 0x1fc, 0x7f0, 0xec0, 0x1cc0, 0x18c0, 0x18c0, 0x18c6, 0x1cce, 0xffc, 0x3f8, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xc0,0xc0,0x7f8,0xffc,0x1cce,0x18c6,0xc6,0xce,0x1fc,0x7f0,0xec0,0x1cc0,0x18c0,0x18c0, + 0x18c6,0x1cce,0xffc,0x3f8,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x183e, 0x826, 0xc63, 0x663, 0x363, 0x363, 0x1b6, 0xfe, 0x1fc0, 0x1360, 0x31b0, 0x3190, 0x3198, 0x318c, 0x1b04, 0xf06, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x183e,0x826,0xc63,0x663,0x363,0x363,0x1b6,0xfe,0x1fc0,0x1360,0x31b0,0x3190, + 0x3198,0x318c,0x1b04,0xf06,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x7f0, 0x638, 0x618, 0x718, 0x198, 0xf0, 0x1838, 0x186c, 0xce6, 0xcc6, 0xd86, 0x706, 0xf0e, 0x3dfc, 0x38f8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e0,0x7f0,0x638,0x618,0x718,0x198,0xf0,0x1838,0x186c,0xce6,0xcc6,0xd86, + 0x706,0xf0e,0x3dfc,0x38f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 39 - 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 40 - 0x0, 0x0, 0x0, 0x300, 0x180, 0xc0, 0xc0, 0x60, 0x60, 0x60, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x60, 0x60, 0x60, 0xc0, 0xc0, 0x180, 0x300, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x300,0x180,0xc0,0xc0,0x60,0x60,0x60,0x30,0x30,0x30,0x30,0x30,0x30, + 0x30,0x30,0x60,0x60,0x60,0xc0,0xc0,0x180,0x300,0x0,0x0, // 41 - 0x0, 0x0, 0x0, 0x30, 0x60, 0xc0, 0xc0, 0x180, 0x180, 0x180, 0x300, 0x300, 0x300, 0x300, 0x300, 0x300, 0x300, 0x300, 0x180, 0x180, 0x180, 0xc0, 0xc0, 0x60, 0x30, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x30,0x60,0xc0,0xc0,0x180,0x180,0x180,0x300,0x300,0x300,0x300,0x300,0x300, + 0x300,0x300,0x180,0x180,0x180,0xc0,0xc0,0x60,0x30,0x0,0x0, // 42 - 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xccc, 0xffc, 0x1e0, 0x3f0, 0x330, 0x618, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc0,0xc0,0xccc,0xffc,0x1e0,0x3f0,0x330,0x618,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x1ffe, 0x1ffe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0x1ffe,0x1ffe,0xc0,0xc0,0xc0, + 0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0x60, 0x60, 0x20, 0x30, 0x10, 0x10, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc0,0x60,0x60,0x20,0x30,0x10,0x10,0x8,0x0,0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f0, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0,0x3f0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 47 - 0x0, 0x0, 0x0, 0x1800, 0xc00, 0xc00, 0x600, 0x700, 0x300, 0x180, 0x180, 0xc0, 0x60, 0x60, 0x30, 0x38, 0x18, 0xc, 0xc, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1800,0xc00,0xc00,0x600,0x700,0x300,0x180,0x180,0xc0,0x60,0x60,0x30,0x38, + 0x18,0xc,0xc,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x3f8, 0x71c, 0x60c, 0xc06, 0xc06, 0xce6, 0xce6, 0xce6, 0xc06, 0xc06, 0xc06, 0x60c, 0x71c, 0x3f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f0,0x3f8,0x71c,0x60c,0xc06,0xc06,0xce6,0xce6,0xce6,0xc06,0xc06,0xc06, + 0x60c,0x71c,0x3f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x180, 0x1c0, 0x1f0, 0x1bc, 0x18c, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x1ffc, 0x1ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x180,0x1c0,0x1f0,0x1bc,0x18c,0x180,0x180,0x180,0x180,0x180,0x180,0x180, + 0x180,0x180,0x1ffc,0x1ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc0c, 0xc0c, 0xc00, 0x600, 0x700, 0x380, 0x1c0, 0xe0, 0x70, 0x38, 0x1c, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3e0,0x7f8,0xe18,0xc0c,0xc0c,0xc00,0x600,0x700,0x380,0x1c0,0xe0,0x70, + 0x38,0x1c,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0xc00, 0xc00, 0x600, 0x3c0, 0x3c0, 0x600, 0xc00, 0xc00, 0xc0c, 0xe1c, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0xc00,0xc00,0x600,0x3c0,0x3c0,0x600,0xc00,0xc00, + 0xc0c,0xe1c,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x700, 0x700, 0x780, 0x6c0, 0x640, 0x660, 0x630, 0x618, 0x618, 0x60c, 0x606, 0x1ffe, 0x1ffe, 0x600, 0x600, 0x600, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x700,0x700,0x780,0x6c0,0x640,0x660,0x630,0x618,0x618,0x60c,0x606,0x1ffe, + 0x1ffe,0x600,0x600,0x600,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0x7fe, 0x7fe, 0x6, 0x6, 0x6, 0x1f6, 0x7fe, 0x70e, 0xe00, 0xc00, 0xc00, 0xc00, 0xe06, 0x70e, 0x3fc, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7fe,0x7fe,0x6,0x6,0x6,0x1f6,0x7fe,0x70e,0xe00,0xc00,0xc00,0xc00, + 0xe06,0x70e,0x3fc,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x7f8, 0xe1c, 0xc0c, 0x6, 0x1e6, 0x7fe, 0x71e, 0xe06, 0xc06, 0xc06, 0xc06, 0xe0c, 0x71c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3e0,0x7f8,0xe1c,0xc0c,0x6,0x1e6,0x7fe,0x71e,0xe06,0xc06,0xc06,0xc06, + 0xe0c,0x71c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0xffe, 0xffe, 0xc00, 0x600, 0x300, 0x300, 0x180, 0xc0, 0xc0, 0x60, 0x60, 0x60, 0x30, 0x30, 0x30, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xffe,0xffe,0xc00,0x600,0x300,0x300,0x180,0xc0,0xc0,0x60,0x60,0x60, + 0x30,0x30,0x30,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x7fc, 0xe0e, 0xc06, 0xc06, 0xc06, 0x60c, 0x3f8, 0x3f8, 0x60c, 0xc06, 0xc06, 0xc06, 0xe0e, 0x7fc, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f0,0x7fc,0xe0e,0xc06,0xc06,0xc06,0x60c,0x3f8,0x3f8,0x60c,0xc06,0xc06, + 0xc06,0xe0e,0x7fc,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x3fc, 0x70c, 0x606, 0xc06, 0xc06, 0xc06, 0xf0c, 0xffc, 0xcf0, 0xc00, 0xc00, 0x606, 0x70e, 0x3fc, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f0,0x3fc,0x70c,0x606,0xc06,0xc06,0xc06,0xf0c,0xffc,0xcf0,0xc00,0xc00, + 0x606,0x70e,0x3fc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0, + 0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0xc0, 0xc0, 0x40, 0x60, 0x20, 0x20, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x180,0xc0,0xc0,0x40,0x60,0x20,0x20,0x10,0x0,0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000, 0x1e00, 0xfc0, 0x1f0, 0x7e, 0xe, 0xe, 0x7e, 0x1f0, 0xfc0, 0x1e00, 0x1000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1000,0x1e00,0xfc0,0x1f0,0x7e,0xe,0xe,0x7e,0x1f0,0xfc0, + 0x1e00,0x1000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffe, 0x1ffe, 0x0, 0x0, 0x0, 0x0, 0x1ffe, 0x1ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffe,0x1ffe,0x0,0x0,0x0,0x0,0x1ffe,0x1ffe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x1e, 0xfc, 0x3e0, 0x1f80, 0x1c00, 0x1c00, 0x1f80, 0x3e0, 0xfc, 0x1e, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1e,0xfc,0x3e0,0x1f80,0x1c00,0x1c00,0x1f80,0x3e0,0xfc, + 0x1e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x7f8, 0xe1c, 0xc0e, 0xc06, 0xc00, 0x600, 0x700, 0x180, 0xc0, 0x60, 0x60, 0x0, 0x0, 0x60, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f0,0x7f8,0xe1c,0xc0e,0xc06,0xc00,0x600,0x700,0x180,0xc0,0x60,0x60, + 0x0,0x0,0x60,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 64 - 0x0, 0x0, 0x0, 0x3e0, 0xc18, 0x80c, 0x1004, 0x16c2, 0x2322, 0x2332, 0x2311, 0x2319, 0x2319, 0x2119, 0x2119, 0x1119, 0x1199, 0x1999, 0xf72, 0x2, 0x804, 0x608, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3e0,0xc18,0x80c,0x1004,0x16c2,0x2322,0x2332,0x2311,0x2319,0x2319,0x2119,0x2119,0x1119, + 0x1199,0x1999,0xf72,0x2,0x804,0x608,0x1f0,0x0,0x0,0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0xc0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x3fc, 0x7fc, 0xe0c, 0xc0c, 0xc0c, 0xc0c, 0x60c, 0x3fc, 0x7fc, 0xc0c, 0x180c, 0x180c, 0x180c, 0x1c0c, 0xffc, 0x3fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3fc,0x7fc,0xe0c,0xc0c,0xc0c,0xc0c,0x60c,0x3fc,0x7fc,0xc0c,0x180c,0x180c, + 0x180c,0x1c0c,0xffc,0x3fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x7f8, 0xe1c, 0x1c0c, 0x80e, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x80e, 0x1c0c, 0xe1c, 0x7f8, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3e0,0x7f8,0xe1c,0x1c0c,0x80e,0x6,0x6,0x6,0x6,0x6,0x6,0x80e, + 0x1c0c,0xe1c,0x7f8,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x1fc, 0x7fc, 0xf0c, 0xc0c, 0x1c0c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c0c, 0xc0c, 0xf0c, 0x7fc, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1fc,0x7fc,0xf0c,0xc0c,0x1c0c,0x180c,0x180c,0x180c,0x180c,0x180c,0x180c,0x1c0c, + 0xc0c,0xf0c,0x7fc,0x1fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x1ffc, 0x1ffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x1ffc, 0x1ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1ffc,0x1ffc,0xc,0xc,0xc,0xc,0xc,0xffc,0xffc,0xc,0xc,0xc, + 0xc,0xc,0x1ffc,0x1ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xffc,0xffc,0xc,0xc,0xc,0xc,0xc,0xffc,0xffc,0xc,0xc,0xc, + 0xc,0xc,0xc,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x7f8, 0x71c, 0xe0c, 0x406, 0x6, 0x6, 0x6, 0xf86, 0xf86, 0xc06, 0xc0e, 0xc0c, 0xc1c, 0xff8, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f0,0x7f8,0x71c,0xe0c,0x406,0x6,0x6,0x6,0xf86,0xf86,0xc06,0xc0e, + 0xc0c,0xc1c,0xff8,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xffc, 0xffc, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xffc,0xffc,0xc0c,0xc0c,0xc0c, + 0xc0c,0xc0c,0xc0c,0xc0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0xffc, 0xffc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xffc,0xffc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x7e0, 0x7e0, 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x60c, 0x60c, 0x718, 0x3f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7e0,0x7e0,0x600,0x600,0x600,0x600,0x600,0x600,0x600,0x600,0x600,0x60c, + 0x60c,0x718,0x3f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x1c0c, 0xe0c, 0x60c, 0x30c, 0x18c, 0x1cc, 0xec, 0xfc, 0x1fc, 0x19c, 0x38c, 0x70c, 0xe0c, 0xc0c, 0x1c0c, 0x380c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c0c,0xe0c,0x60c,0x30c,0x18c,0x1cc,0xec,0xfc,0x1fc,0x19c,0x38c,0x70c, + 0xe0c,0xc0c,0x1c0c,0x380c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1ff8, 0x1ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18, + 0x18,0x18,0x1ff8,0x1ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x1c0e, 0x1c0e, 0x1e1e, 0x1e1e, 0x1b36, 0x1b36, 0x1b36, 0x19e6, 0x19e6, 0x18c6, 0x18c6, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c0e,0x1c0e,0x1e1e,0x1e1e,0x1b36,0x1b36,0x1b36,0x19e6,0x19e6,0x18c6,0x18c6,0x1806, + 0x1806,0x1806,0x1806,0x1806,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0xc1c, 0xc1c, 0xc3c, 0xc3c, 0xc2c, 0xc6c, 0xc6c, 0xccc, 0xccc, 0xd8c, 0xd8c, 0xd8c, 0xf0c, 0xf0c, 0xe0c, 0xe0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc1c,0xc1c,0xc3c,0xc3c,0xc2c,0xc6c,0xc6c,0xccc,0xccc,0xd8c,0xd8c,0xd8c, + 0xf0c,0xf0c,0xe0c,0xe0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x3fc, 0xffc, 0xc0c, 0x180c, 0x180c, 0x180c, 0x180c, 0xe0c, 0xffc, 0x3fc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3fc,0xffc,0xc0c,0x180c,0x180c,0x180c,0x180c,0xe0c,0xffc,0x3fc,0xc,0xc, + 0xc,0xc,0xc,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0xc0, 0x1c0, 0x380, 0x1f00, 0x1e00, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0xc0,0x1c0,0x380,0x1f00,0x1e00,0x0,0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x3fc, 0x7fc, 0xe0c, 0xc0c, 0xc0c, 0xc0c, 0x60c, 0x7fc, 0x1fc, 0x1cc, 0x18c, 0x30c, 0x70c, 0x60c, 0xc0c, 0x1c0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3fc,0x7fc,0xe0c,0xc0c,0xc0c,0xc0c,0x60c,0x7fc,0x1fc,0x1cc,0x18c,0x30c, + 0x70c,0x60c,0xc0c,0x1c0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x7f0, 0xff8, 0x1c1c, 0x180c, 0xc, 0x1c, 0x78, 0x3f0, 0xf80, 0x1c00, 0x1800, 0x1806, 0x180e, 0x1c1c, 0xffc, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7f0,0xff8,0x1c1c,0x180c,0xc,0x1c,0x78,0x3f0,0xf80,0x1c00,0x1800,0x1806, + 0x180e,0x1c1c,0xffc,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x1ffe, 0x1ffe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1ffe,0x1ffe,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x618,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x3003, 0x1806, 0x1806, 0x1806, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x618, 0x330, 0x330, 0x330, 0x1e0, 0x1e0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3003,0x1806,0x1806,0x1806,0xc0c,0xc0c,0xc0c,0x618,0x618,0x330,0x330,0x330, + 0x1e0,0x1e0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x3003, 0x3003, 0x3003, 0x1006, 0x1806, 0x18c6, 0x18c6, 0x18c6, 0x19e6, 0x1924, 0x924, 0xb3c, 0xe1c, 0xe1c, 0xe1c, 0xc0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3003,0x3003,0x3003,0x1006,0x1806,0x18c6,0x18c6,0x18c6,0x19e6,0x1924,0x924,0xb3c, + 0xe1c,0xe1c,0xe1c,0xc0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x180e, 0xc0c, 0xe18, 0x618, 0x330, 0x330, 0x1e0, 0xc0, 0xc0, 0x1e0, 0x330, 0x330, 0x618, 0x618, 0xc0c, 0x1c0e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x180e,0xc0c,0xe18,0x618,0x330,0x330,0x1e0,0xc0,0xc0,0x1e0,0x330,0x330, + 0x618,0x618,0xc0c,0x1c0e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x3807, 0x1806, 0xc0c, 0xe1c, 0x618, 0x330, 0x3f0, 0x1e0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3807,0x1806,0xc0c,0xe1c,0x618,0x330,0x3f0,0x1e0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x1ffc, 0x1ffc, 0xc00, 0xe00, 0x600, 0x300, 0x180, 0x1c0, 0xe0, 0x60, 0x30, 0x18, 0x1c, 0xe, 0x1ffe, 0x1ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1ffc,0x1ffc,0xc00,0xe00,0x600,0x300,0x180,0xc0,0xe0,0x60,0x30,0x18, + 0x1c,0xc,0x1ffe,0x1ffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 91 - 0x0, 0x0, 0x0, 0x7e0, 0x7e0, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x7e0, 0x7e0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e0,0x7e0,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60, + 0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x7e0,0x7e0,0x0,0x0, // 92 - 0x0, 0x0, 0x0, 0x6, 0xc, 0xc, 0x18, 0x38, 0x30, 0x60, 0x60, 0xc0, 0x180, 0x180, 0x300, 0x700, 0x600, 0xc00, 0xc00, 0x1800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x6,0xc,0xc,0x18,0x38,0x30,0x60,0x60,0xc0,0x180,0x180,0x300,0x700, + 0x600,0xc00,0xc00,0x1800,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 93 - 0x0, 0x0, 0x0, 0x1f8, 0x1f8, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x1f8, 0x1f8, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1f8,0x1f8,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180, + 0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x1f8,0x1f8,0x0,0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0xc0, 0x1e0, 0x1e0, 0x130, 0x330, 0x310, 0x618, 0x618, 0x408, 0xc0c, 0xc0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc0,0x1e0,0x1e0,0x130,0x330,0x310,0x618,0x618,0x408,0xc0c,0xc0c,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3fff,0x0,0x0,0x0,0x0,0x0, // 96 - 0x0, 0x0, 0x0, 0xe0, 0x180, 0x300, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xe0,0x180,0x300,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 98 - 0x0, 0x0, 0x0, 0xc, 0xc, 0xc, 0xc, 0x3cc, 0x7fc, 0x61c, 0xc1c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x61c, 0x7fc, 0x3ec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc,0xc,0xc,0xc,0x3cc,0x7fc,0x61c,0xc1c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x61c,0x7fc,0x3ec,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0xff0, 0x1c38, 0x181c, 0xc, 0xc, 0xc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0xff0,0x1c38,0x181c,0xc,0xc,0xc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 100 - 0x0, 0x0, 0x0, 0xc00, 0xc00, 0xc00, 0xc00, 0xdf0, 0xff8, 0xe18, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xe18, 0xff8, 0xcf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc00,0xc00,0xc00,0xc00,0xdf0,0xff8,0xe18,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xe18,0xff8,0xcf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x7f0, 0xc38, 0x180c, 0x180c, 0x1ffc, 0x1ffc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x7f0,0xc38,0x180c,0x180c,0x1ffc,0x1ffc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 102 - 0x0, 0x0, 0x0, 0x1f00, 0x1fc0, 0xc0, 0xc0, 0x1ff8, 0x1ff8, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1f00,0x1fc0,0xc0,0xc0,0x1ff8,0x1ff8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf0, 0xdf8, 0xf18, 0xe0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf18, 0xdf8, 0xcf0, 0xc00, 0xc00, 0xe18, 0x7f8, 0x3e0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf0,0xdf8,0xf18,0xe0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf18,0xdf8,0xcf0,0xc00,0xc00,0xe18,0x7f8,0x3e0,0x0,0x0, // 104 - 0x0, 0x0, 0x0, 0xc, 0xc, 0xc, 0xc, 0x3cc, 0x7ec, 0xe3c, 0xc1c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc,0xc,0xc,0xc,0x3cc,0x7ec,0xe3c,0xc1c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0xc0c,0xc0c,0xc0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 105 - 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0, 0x0, 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffe, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc0,0xc0,0x0,0x0,0xfc,0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 106 - 0x0, 0x0, 0x0, 0x180, 0x180, 0x0, 0x0, 0x1fc, 0x1fc, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x1c0, 0xfe, 0x7e, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x180,0x180,0x0,0x0,0x1fc,0x1fc,0x180,0x180,0x180,0x180,0x180,0x180,0x180, + 0x180,0x180,0x180,0x180,0x180,0x180,0x1c0,0xfe,0x7e,0x0,0x0, // 107 - 0x0, 0x0, 0x0, 0xc, 0xc, 0xc, 0xc, 0x1c0c, 0xe0c, 0x70c, 0x38c, 0x1cc, 0x6c, 0xfc, 0x1dc, 0x38c, 0x30c, 0x60c, 0xc0c, 0x1c0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc,0xc,0xc,0xc,0x1c0c,0xe0c,0x70c,0x38c,0x1cc,0x6c,0xfc,0x1dc,0x38c, + 0x30c,0x60c,0xc0c,0x1c0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 108 - 0x0, 0x0, 0x0, 0xf8, 0xf8, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffe, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xf8,0xf8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe76, 0x1f7e, 0x19ce, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x18c6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe76,0x1f7e,0x19ce,0x18c6,0x18c6,0x18c6,0x18c6,0x18c6,0x18c6, + 0x18c6,0x18c6,0x18c6,0x18c6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3cc, 0x7ec, 0xe3c, 0xc1c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3cc,0x7ec,0xe3c,0xc1c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0xc0c,0xc0c,0xc0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0xff0, 0xc38, 0x1c1c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c1c, 0xe38, 0x7f0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0xff0,0xc38,0x1c1c,0x180c,0x180c,0x180c,0x180c,0x180c, + 0x1c1c,0xe38,0x7f0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3cc, 0x7fc, 0x61c, 0xc1c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x61c, 0x7fc, 0x3ec, 0xc, 0xc, 0xc, 0xc, 0xc, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3cc,0x7fc,0x61c,0xc1c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x61c,0x7fc,0x3ec,0xc,0xc,0xc,0xc,0xc,0x0,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf0, 0xff8, 0xe18, 0xe0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xe18, 0xdf8, 0xcf0, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf0,0xff8,0xe18,0xe0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xe18,0xdf8,0xcf0,0xc00,0xc00,0xc00,0xc00,0xc00,0x0,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf98, 0xfd8, 0x78, 0x38, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf98,0xfd8,0x78,0x38,0x38,0x18,0x18,0x18,0x18, + 0x18,0x18,0x18,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f0, 0x7f8, 0xc1c, 0xc, 0x1c, 0xf8, 0x3f0, 0x700, 0xc00, 0xc06, 0xe0e, 0x7fc, 0x3f8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0,0x7f8,0xc1c,0xc,0x1c,0xf8,0x3f0,0x700,0xc00, + 0xc06,0xe0e,0x7fc,0x3f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x40, 0x60, 0x60, 0x7f8, 0x7f8, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0xfe0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x40,0x60,0x60,0x7f8,0x7f8,0x60,0x60,0x60,0x60,0x60,0x60,0x60, + 0x60,0x60,0xfe0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf1c, 0xdf8, 0xcf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf1c,0xdf8,0xcf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1806, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x618, 0x218, 0x330, 0x330, 0x1a0, 0x1e0, 0x1e0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1806,0xc0c,0xc0c,0xc0c,0x618,0x618,0x218,0x330,0x330, + 0x1a0,0x1e0,0x1e0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3003, 0x3003, 0x3003, 0x1806, 0x18c6, 0x19e6, 0x19e6, 0x19e6, 0x1b36, 0xf34, 0xf3c, 0xe1c, 0xe1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3003,0x3003,0x3003,0x1806,0x18c6,0x19e6,0x19e6,0x19e6,0x1b36, + 0xf34,0xf3c,0xe1c,0xe1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180e, 0xc0c, 0x618, 0x330, 0x330, 0x1e0, 0xc0, 0x1e0, 0x3f0, 0x330, 0x618, 0xc0c, 0x1c0e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x180e,0xc0c,0x618,0x330,0x330,0x1e0,0xc0,0x1e0,0x3f0, + 0x330,0x618,0xc0c,0x1c0e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1806, 0x1c0e, 0xc0c, 0xc0c, 0x618, 0x618, 0x618, 0x330, 0x330, 0x160, 0x1e0, 0x1c0, 0xc0, 0xc0, 0xe0, 0x70, 0x3c, 0x1c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1806,0x1c0e,0xc0c,0xc0c,0x618,0x618,0x618,0x330,0x330, + 0x160,0x1e0,0x1c0,0xc0,0xc0,0xe0,0x70,0x3c,0x1c,0x0,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc, 0xffc, 0xe00, 0x700, 0x380, 0x180, 0xc0, 0x60, 0x70, 0x38, 0x1c, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc,0xffc,0xe00,0x700,0x380,0x180,0xc0,0x60,0x70, + 0x38,0x1c,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 123 - 0x0, 0x0, 0x0, 0xf80, 0xfc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xe0, 0x78, 0x78, 0xe0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc0, 0xf80, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xf80,0xfc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xe0,0x78,0x78,0xe0, + 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xfc0,0xf80,0x0,0x0, // 124 - 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0, // 125 - 0x0, 0x0, 0x0, 0x7c, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x1c0, 0x780, 0x780, 0x1c0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0x7c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7c,0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x1c0,0x780,0x780,0x1c0, + 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xfc,0x7c,0x0,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x10fe, 0x1fc2, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x10fe,0x1fc2,0xf00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 127 - 0x0, 0x0, 0x0, 0x0, 0xfe, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26ae,0x31ac,0x2a22,0x195e,0x1940,0x1244,0x1df2,0x152e,0x1098,0x372,0x221e,0x2664,0x994,0x1af2,0x880,0x2b3e, + 0xe8c,0x3f2e,0xa22,0x22be,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0x18, 0x1c, 0x26, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x38,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 130 - 0x0, 0x0, 0x0, 0x0, 0xfe, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 131 - 0x18c0, 0x18c0, 0x0, 0x7e, 0x38, 0x30, 0x60, 0x20e0, 0x20c0, 0x11c0, 0x1180, 0xf00, 0x700, 0x600, 0x700, 0x600, 0x600, 0x700, 0x600, 0x17c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x108, 0x398, 0x338, 0x0, 0x220, 0x10, 0x108, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1b6d,0x0,0x0,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2108, 0x3398, 0x2118, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x30, 0x20, 0x20, 0x20, 0x20, 0x1a4, 0x1be, 0x0, 0x20, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x30, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x30, 0x20, 0x20, 0x20, 0x1ee, 0x124, 0x20, 0x20, 0x20, 0x30, 0x20, 0x20, 0x30, 0x20, 0x20, 0xa4, 0x1be, 0x0, 0x20, 0x20, 0x30, 0x20, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 136 - 0xcc0, 0x0, 0x0, 0x3ffe, 0x30, 0x30, 0x30, 0x30, 0x30, 0x830, 0x430, 0xff0, 0x838, 0x830, 0x30, 0x30, 0x30, 0x30, 0x38, 0x3ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 137 - 0x0, 0x0, 0x50, 0x88, 0x2a84, 0x104, 0x2006, 0x2084, 0x3106, 0x1884, 0x848, 0xc30, 0x600, 0x200, 0x2100, 0x2180, 0x3080, 0x3040, 0x2060, 0x2020, 0x2010, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 138 - 0x1c0, 0x80, 0x20, 0xb50, 0xc08, 0x80c, 0x804, 0x80c, 0xc, 0x3c, 0x3f8, 0x7f0, 0xf00, 0x1c00, 0x1800, 0x1804, 0x1004, 0x804, 0xc0c, 0x536, 0x140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x40, 0xb90, 0xc08, 0x80c, 0x804, 0x80c, 0xc, 0x3c, 0x3f8, 0x7f0, 0xf00, 0x1c00, 0x1800, 0x1804, 0x1004, 0x804, 0xc0c, 0x536, 0x140, 0x0, 0x80, 0xc0, 0x0, 0x0, 0x80, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 140 - 0xc0, 0x0, 0x40, 0xb30, 0xc08, 0x80c, 0x804, 0x80c, 0xc, 0x3c, 0x3f8, 0x7f0, 0xf00, 0x1c00, 0x1800, 0x1804, 0x1004, 0x804, 0xc0c, 0x536, 0x140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 141 - 0x0, 0x0, 0xa00, 0x3180, 0x2060, 0x2030, 0x2030, 0x2018, 0x201c, 0x200c, 0x201c, 0x200c, 0x201c, 0x200c, 0x2018, 0x2018, 0x2038, 0x2030, 0x2060, 0x3180, 0xa00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc06, 0x60c, 0x318, 0x1f0, 0xe0, 0xe0, 0x3b0, 0x338, 0x60c, 0xc06, 0x804, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x40, 0x0, 0x0, 0x16da, 0x1ffe, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2aaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x10, 0x8, 0x0, 0x4, 0x1c, 0x18, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0x18, 0x18, 0x28, 0x0, 0x10, 0x10, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x10, 0x108, 0x0, 0x84, 0x39c, 0x318, 0x108, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x318, 0x398, 0x228, 0x400, 0x210, 0x10, 0x100, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x700, 0x1f80, 0x3fc0, 0x3fc0, 0x3fc0, 0x3fc0, 0x3fc0, 0x1f80, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2aaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 152 - 0x0, 0xc0, 0xe0, 0x110, 0x208, 0x0, 0x0, 0xf5e, 0x808, 0x818, 0x8, 0x118, 0x118, 0x1dc, 0x108, 0x1018, 0x8, 0x818, 0x80c, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000, 0x3000, 0x2000, 0x2000, 0x1c00, 0x380, 0x70, 0xc, 0x3c, 0x1c0, 0x600, 0x3800, 0x2000, 0x2000, 0x1000, 0x1800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 154 - 0x0, 0x104, 0x88, 0x70, 0x20, 0x0, 0x0, 0x158, 0x184, 0x102, 0x6, 0x204, 0x3c, 0x1f8, 0x1c0, 0x300, 0x202, 0x102, 0x106, 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x128, 0x184, 0x102, 0x106, 0x4, 0x3c, 0x1f8, 0x1c0, 0x300, 0x202, 0x102, 0x106, 0xfa, 0x0, 0x20, 0x20, 0x40, 0x0, 0x0, 0x20, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 156 - 0x0, 0x180, 0xc0, 0x60, 0x10, 0x0, 0x0, 0x158, 0x184, 0x102, 0x206, 0x4, 0x3c, 0x1f8, 0x1c0, 0x300, 0x202, 0x102, 0x106, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fa0, 0x410, 0xc18, 0x40c, 0xc0c, 0xc06, 0x2c0c, 0x406, 0xc0c, 0xc0c, 0x418, 0xc30, 0x1ec0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 158 - 0x0, 0x108, 0x90, 0x60, 0x20, 0x0, 0x0, 0x7fc, 0x306, 0x104, 0x180, 0xc0, 0xc0, 0x60, 0x30, 0x430, 0x418, 0x40c, 0x60c, 0x3fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 159 - 0x0, 0x180, 0x180, 0x40, 0x20, 0x0, 0x0, 0x7fc, 0x306, 0x100, 0x182, 0xc0, 0xc0, 0x60, 0x30, 0x430, 0x418, 0x40c, 0x60c, 0x3fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82, + 0x82,0x82,0x82,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x3f0, 0x7f8, 0xe1c, 0xc0e, 0x6, 0x6, 0x6, 0x6, 0x6, 0xc0e, 0xe1c, 0x7f8, 0x3f0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x180,0x180,0x7e0,0x1ff0,0x19b8,0x319c,0x18c,0x18c,0x18c,0x18c,0x319c,0x19b8, + 0x1ff0,0x7e0,0x180,0x180,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0xfe0, 0xc70, 0x30, 0x30, 0x30, 0x30, 0x1fc, 0x1fc, 0x30, 0x30, 0x30, 0x30, 0x1818, 0x1ffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0xfe0,0xc70,0x30,0x30,0x30,0x30,0x1fc,0x1fc,0x30,0x30,0x30, + 0x30,0x1818,0x1ffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e8, 0xffc, 0x618, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x618, 0xffc, 0x5e8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e8,0xffc,0x618,0xc0c,0xc0c,0xc0c,0xc0c,0x618,0xffc, + 0x5e8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x3807, 0x1806, 0xc0c, 0xe1c, 0x618, 0x330, 0x330, 0x1e0, 0x1ffe, 0x1ffe, 0xc0, 0x1ffe, 0x1ffe, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3807,0x1806,0xc0c,0xe1c,0x618,0x330,0x330,0x1e0,0x1ffe,0x1ffe,0xc0,0x1ffe, + 0x1ffe,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 166 - 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0, + 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x0,0x0, // 167 - 0x0, 0x0, 0x0, 0x3f0, 0x7f8, 0xc1c, 0xc, 0xc, 0x78, 0x3f0, 0x718, 0xc0c, 0xc0c, 0xc1c, 0x778, 0x3e0, 0x700, 0xc00, 0xc0c, 0xe1c, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3f0,0x7f8,0xc1c,0xc,0xc,0x78,0x3f0,0x718,0xc0c,0xc0c,0xc1c,0x778,0x3e0, + 0x700,0xc00,0xc0c,0xe1c,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0, // 168 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 169 - 0x0, 0x0, 0x0, 0x3f0, 0x618, 0x804, 0x1002, 0x11e2, 0x2231, 0x2419, 0x2019, 0x2019, 0x2019, 0x2419, 0x2631, 0x11e2, 0x1002, 0x804, 0x408, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3f0,0x618,0x804,0x1002,0x11e2,0x2231,0x2419,0x2019,0x2019,0x2019,0x2419,0x2631,0x11e2, + 0x1002,0x804,0x408,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0xf0, 0x398, 0x30c, 0x300, 0x3f8, 0x31c, 0x30c, 0x38c, 0x678, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xf0,0x398,0x30c,0x300,0x3f8,0x31c,0x30c,0x38c,0x678,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c70, 0xc30, 0x618, 0x30c, 0x186, 0x30c, 0x618, 0xc30, 0x1860, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1860,0xc30,0x618,0x30c,0x186,0x30c,0x618, + 0xc30,0x1860,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffe, 0x1ffe, 0x1800, 0x1800, 0x1800, 0x1800, 0x1800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffe,0x1ffe,0x1800,0x1800,0x1800, + 0x1800,0x1800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 174 - 0x0, 0x0, 0x0, 0x3f0, 0x618, 0x804, 0x1002, 0x13f2, 0x2631, 0x2631, 0x2631, 0x23f1, 0x2131, 0x2331, 0x2231, 0x1632, 0x1002, 0x804, 0x408, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3f0,0x618,0x804,0x1002,0x13f2,0x2631,0x2631,0x2631,0x23f1,0x2131,0x2331,0x2231,0x1632, + 0x1002,0x804,0x408,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 175 - 0x0, 0x3fff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x3fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x1c0, 0x220, 0x410, 0x410, 0x410, 0x220, 0x1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c0,0x220,0x410,0x410,0x410,0x220,0x1c0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x1ffe, 0x1ffe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x1ffe, 0x1ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0xc0,0x1ffe,0x1ffe,0xc0,0xc0,0xc0,0xc0, + 0xc0,0x0,0x1ffe,0x1ffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x3c0, 0x670, 0x630, 0x600, 0x700, 0x380, 0xc0, 0x60, 0x30, 0x7f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3c0,0x670,0x630,0x600,0x700,0x380,0xc0,0x60,0x30,0x7f0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x3c0, 0x670, 0x630, 0x700, 0x1c0, 0x700, 0x600, 0x630, 0x630, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3c0,0x670,0x630,0x700,0x1c0,0x700,0x600,0x630,0x630,0x3e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 180 - 0x0, 0x0, 0x0, 0x380, 0xc0, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x380,0xc0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf1c, 0xdfc, 0xcec, 0xc, 0xc, 0xc, 0xc, 0xc, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf1c,0xdfc,0xcec,0xc,0xc,0xc,0xc,0xc,0x0,0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0xff8, 0x23c, 0x23e, 0x23e, 0x23e, 0x23e, 0x23e, 0x23c, 0x238, 0x220, 0x220, 0x220, 0x220, 0x220, 0x220, 0x220, 0x220, 0x220, 0x220, 0x220, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xff8,0x23c,0x23e,0x23e,0x23e,0x23e,0x23e,0x23c,0x238,0x220,0x220,0x220, + 0x220,0x220,0x220,0x220,0x220,0x220,0x220,0x220,0x0,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0xc0,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x1c, 0x10, 0x10, 0xe, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x8,0x1c,0x10,0x10,0xe,0x0,0x0, // 185 - 0x0, 0x0, 0x0, 0xc0, 0xe0, 0xd8, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x7f8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc0,0xe0,0xd8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x7f8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x3e0, 0x630, 0xc18, 0xc18, 0xc18, 0xc18, 0xc18, 0x630, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3e0,0x630,0xc18,0xc18,0xc18,0xc18,0xc18,0x630,0x3e0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x186, 0x30c, 0x618, 0xc30, 0x1860, 0xc30, 0x618, 0x30c, 0x38e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x186,0x30c,0x618,0xc30,0x1860,0xc30,0x618, + 0x30c,0x186,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x80c, 0x40f, 0x60c, 0x20c, 0x30c, 0x10c, 0x18c, 0x1c8c, 0x1c5f, 0x1a60, 0x1a20, 0x1930, 0x1890, 0x3f98, 0x1808, 0x1804, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x80c,0x40f,0x60c,0x20c,0x30c,0x10c,0x18c,0x188c,0x1c5f,0x1a60,0x1a20,0x1930, + 0x1890,0x3f98,0x1808,0x1804,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x80c, 0x40f, 0x60c, 0x20c, 0x30c, 0x10c, 0x18c, 0x1e8c, 0x335f, 0x3360, 0x3020, 0x1830, 0xc10, 0x618, 0x308, 0x3f04, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x80c,0x40f,0x60c,0x20c,0x30c,0x10c,0x18c,0x1e8c,0x335f,0x3360,0x3020,0x1830, + 0xc10,0x618,0x308,0x3f04,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x81e, 0x433, 0x633, 0x238, 0x31c, 0x130, 0x1b3, 0x1cb3, 0x1c5e, 0x1a60, 0x1a20, 0x1930, 0x1890, 0x3f98, 0x1808, 0x1804, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x81e,0x433,0x633,0x238,0x31c,0x130,0x1b3,0x18b3,0x1c5e,0x1a60,0x1a20,0x1930, + 0x1890,0x3f98,0x1808,0x1804,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x0, 0x0, 0x180, 0x180, 0xc0, 0x60, 0x38, 0x18, 0xc, 0x180c, 0x1c0c, 0xe1c, 0x7f8, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x180,0x180,0x0,0x0,0x180,0x180,0xc0,0x60,0x38, + 0x18,0xc,0x180c,0x1c0c,0xe1c,0x7f8,0x3e0,0x0,0x0,0x0,0x0, // 192 - 0x70, 0xc0, 0x180, 0x0, 0xc0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xc0,0x180,0x0,0xc0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 193 - 0x700, 0x180, 0xc0, 0x0, 0xc0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0x180,0xc0,0x0,0xc0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 194 - 0x1e0, 0x330, 0x618, 0x0, 0xc0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e0,0x330,0x618,0x0,0xc0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 195 - 0x470, 0x4c8, 0x388, 0x0, 0xc0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x470,0x4c8,0x388,0x0,0xc0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 196 - 0x630, 0x630, 0x0, 0x0, 0xc0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x630,0x630,0x0,0x0,0xc0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 197 - 0x1e0, 0x210, 0x210, 0x210, 0x1e0, 0x1e0, 0x1e0, 0x120, 0x330, 0x330, 0x610, 0x618, 0x618, 0xc0c, 0xffc, 0xffc, 0x1806, 0x1806, 0x1806, 0x3003, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e0,0x210,0x210,0x210,0x1e0,0x1e0,0x1e0,0x120,0x330,0x330,0x610,0x618,0x618,0xc0c,0xffc,0xffc, + 0x1806,0x1806,0x1806,0x3003,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x3fe0, 0x3fe0, 0x360, 0x370, 0x330, 0x330, 0x318, 0x1f18, 0x1f18, 0x3fc, 0x3fc, 0x30c, 0x306, 0x306, 0x3f06, 0x3f03, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3fe0,0x3fe0,0x360,0x370,0x330,0x330,0x318,0x1f18,0x1f18,0x3fc,0x3fc,0x30c, + 0x306,0x306,0x3f06,0x3f03,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x7f8, 0xe1c, 0x1c0c, 0x80e, 0x6, 0x6, 0x6, 0x6, 0x6, 0x6, 0x80e, 0x1c0c, 0xe1c, 0x7f8, 0x3e0, 0x100, 0x380, 0x200, 0x200, 0x1c0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3e0,0x7f8,0xe1c,0x1c0c,0x80e,0x6,0x6,0x6,0x6,0x6,0x6,0x80e, + 0x1c0c,0xe1c,0x7f8,0x3e0,0x100,0x380,0x200,0x200,0x1c0,0x0,0x0, // 200 - 0x70, 0xc0, 0x180, 0x0, 0x1ffc, 0x1ffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x1ffc, 0x1ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xc0,0x180,0x0,0x1ffc,0x1ffc,0xc,0xc,0xc,0xc,0xc,0xffc,0xffc,0xc,0xc,0xc, + 0xc,0xc,0x1ffc,0x1ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 201 - 0x700, 0x180, 0xc0, 0x0, 0x1ffc, 0x1ffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x1ffc, 0x1ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0x180,0xc0,0x0,0x1ffc,0x1ffc,0xc,0xc,0xc,0xc,0xc,0xffc,0xffc,0xc,0xc,0xc, + 0xc,0xc,0x1ffc,0x1ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 202 - 0x1e0, 0x330, 0x618, 0x0, 0x1ffc, 0x1ffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x1ffc, 0x1ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e0,0x330,0x618,0x0,0x1ffc,0x1ffc,0xc,0xc,0xc,0xc,0xc,0xffc,0xffc,0xc,0xc,0xc, + 0xc,0xc,0x1ffc,0x1ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 203 - 0x630, 0x630, 0x0, 0x0, 0x1ffc, 0x1ffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0xffc, 0xffc, 0xc, 0xc, 0xc, 0xc, 0xc, 0x1ffc, 0x1ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x630,0x630,0x0,0x0,0x1ffc,0x1ffc,0xc,0xc,0xc,0xc,0xc,0xffc,0xffc,0xc,0xc,0xc, + 0xc,0xc,0x1ffc,0x1ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 204 - 0x70, 0xc0, 0x180, 0x0, 0xffc, 0xffc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xc0,0x180,0x0,0xffc,0xffc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 205 - 0x700, 0x180, 0xc0, 0x0, 0xffc, 0xffc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0x180,0xc0,0x0,0xffc,0xffc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 206 - 0x1e0, 0x330, 0x618, 0x0, 0xffc, 0xffc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e0,0x330,0x618,0x0,0xffc,0xffc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 207 - 0x630, 0x630, 0x0, 0x0, 0xffc, 0xffc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x630,0x630,0x0,0x0,0xffc,0xffc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x1fc, 0x7fc, 0xf0c, 0xc0c, 0x1c0c, 0x180c, 0x180c, 0x18ff, 0x18ff, 0x180c, 0x180c, 0x1c0c, 0xc0c, 0xf0c, 0x7fc, 0x1fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1fc,0x7fc,0xf0c,0xc0c,0x1c0c,0x180c,0x180c,0x18ff,0x18ff,0x180c,0x180c,0x1c0c, + 0xc0c,0xf0c,0x7fc,0x1fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 209 - 0x470, 0x4c8, 0x388, 0x0, 0xc1c, 0xc1c, 0xc3c, 0xc3c, 0xc2c, 0xc6c, 0xc6c, 0xccc, 0xccc, 0xd8c, 0xd8c, 0xd8c, 0xf0c, 0xf0c, 0xe0c, 0xe0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x470,0x4c8,0x388,0x0,0xc1c,0xc1c,0xc3c,0xc3c,0xc2c,0xc6c,0xc6c,0xccc,0xccc,0xd8c,0xd8c,0xd8c, + 0xf0c,0xf0c,0xe0c,0xe0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 210 - 0x70, 0xc0, 0x180, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xc0,0x180,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 211 - 0x700, 0x180, 0xc0, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0x180,0xc0,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 212 - 0x1e0, 0x330, 0x618, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e0,0x330,0x618,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 213 - 0x470, 0x4c8, 0x388, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x470,0x4c8,0x388,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 214 - 0x630, 0x630, 0x0, 0x0, 0x3f0, 0x7f8, 0xe1c, 0xc0c, 0x1c0e, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1806, 0x1c0e, 0xc0c, 0xe1c, 0x7f8, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x630,0x630,0x0,0x0,0x3f0,0x7f8,0xe1c,0xc0c,0x1c0e,0x1806,0x1806,0x1806,0x1806,0x1806,0x1806,0x1c0e, + 0xc0c,0xe1c,0x7f8,0x1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x808, 0x1c1c, 0xe38, 0x770, 0x3e0, 0x1c0, 0x3e0, 0x770, 0xe38, 0x1c1c, 0x808, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x808,0x1c1c,0xe38,0x770,0x3e0,0x1c0,0x3e0,0x770,0xe38,0x1c1c, + 0x808,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x33f0, 0x1ff8, 0xe1c, 0xc0c, 0x1e0e, 0x1b06, 0x1986, 0x18c6, 0x1846, 0x1866, 0x1836, 0x1c1e, 0xc0c, 0xe1c, 0x7fe, 0x1f3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x33f0,0x1ff8,0xe1c,0xc0c,0x1e0e,0x1b06,0x1986,0x18c6,0x1846,0x1866,0x1836,0x1c1e, + 0xc0c,0xe1c,0x7fe,0x1f3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 217 - 0x70, 0xc0, 0x180, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xc0,0x180,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x618,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 218 - 0x700, 0x180, 0xc0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0x180,0xc0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x618,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 219 - 0x1e0, 0x330, 0x618, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e0,0x330,0x618,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x618,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 220 - 0x630, 0x630, 0x0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x618, 0x7f8, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x630,0x630,0x0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x618,0x7f8,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 221 - 0x700, 0x180, 0xc0, 0x0, 0x3807, 0x1806, 0xc0c, 0xe1c, 0x618, 0x330, 0x3f0, 0x1e0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0x180,0xc0,0x0,0x3807,0x1806,0xc0c,0xe1c,0x618,0x330,0x3f0,0x1e0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0xc, 0xc, 0xc, 0x3fc, 0xffc, 0xc0c, 0x180c, 0x180c, 0x180c, 0x180c, 0xc0c, 0xffc, 0x3fc, 0xc, 0xc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc,0xc,0xc,0x3fc,0xffc,0xc0c,0x180c,0x180c,0x180c,0x180c,0xc0c,0xffc, + 0x3fc,0xc,0xc,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 223 - 0x0, 0x0, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc0c, 0xc0c, 0x60c, 0x38c, 0x18c, 0x18c, 0x38c, 0xe0c, 0xc0c, 0x180c, 0x180c, 0x184c, 0xfcc, 0x7cc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3e0,0x7f8,0xe18,0xc0c,0xc0c,0x60c,0x38c,0x18c,0x18c,0x38c,0xe0c,0xc0c,0x180c, + 0x180c,0x184c,0xfcc,0x7cc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 224 - 0x0, 0x0, 0x0, 0x70, 0xc0, 0x180, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0xc0,0x180,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 225 - 0x0, 0x0, 0x0, 0x700, 0x180, 0xc0, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x700,0x180,0xc0,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 226 - 0x0, 0x0, 0x0, 0x3c0, 0x660, 0xc30, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3c0,0x660,0xc30,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 227 - 0x0, 0x0, 0x0, 0x8e0, 0x990, 0x710, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8e0,0x990,0x710,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 228 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 229 - 0x0, 0x3c0, 0x420, 0x420, 0x420, 0x3c0, 0x0, 0x3e0, 0x7f8, 0xe18, 0xc00, 0xc00, 0xff0, 0xff8, 0xc1c, 0xc0c, 0xe0c, 0xf1c, 0x3df8, 0x38f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x3c0,0x420,0x420,0x420,0x3c0,0x0,0x3e0,0x7f8,0xe18,0xc00,0xc00,0xff0,0xff8,0xc1c,0xc0c, + 0xe0c,0xf1c,0x3df8,0x38f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf38, 0x1ffc, 0x19c6, 0x30c6, 0x30c0, 0x3ffc, 0x3ffe, 0xc7, 0xc3, 0x30c3, 0x39e3, 0x1fbf, 0xf1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf38,0x1ffc,0x19c6,0x30c6,0x30c0,0x3ffc,0x3ffe,0xc7,0xc3, + 0x30c3,0x39e3,0x1fbf,0xf1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0xff0, 0x1c38, 0x181c, 0xc, 0xc, 0xc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x100, 0x380, 0x200, 0x200, 0x1c0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0xff0,0x1c38,0x181c,0xc,0xc,0xc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x100,0x380,0x200,0x200,0x1c0,0x0,0x0, // 232 - 0x0, 0x0, 0x0, 0x70, 0xc0, 0x180, 0x0, 0x3e0, 0x7f0, 0xc38, 0x180c, 0x180c, 0x1ffc, 0x1ffc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0xc0,0x180,0x0,0x3e0,0x7f0,0xc38,0x180c,0x180c,0x1ffc,0x1ffc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 233 - 0x0, 0x0, 0x0, 0xe00, 0x300, 0x180, 0x0, 0x3e0, 0x7f0, 0xc38, 0x180c, 0x180c, 0x1ffc, 0x1ffc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xe00,0x300,0x180,0x0,0x3e0,0x7f0,0xc38,0x180c,0x180c,0x1ffc,0x1ffc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 234 - 0x0, 0x0, 0x0, 0x3c0, 0x660, 0xc30, 0x0, 0x3e0, 0x7f0, 0xc38, 0x180c, 0x180c, 0x1ffc, 0x1ffc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3c0,0x660,0xc30,0x0,0x3e0,0x7f0,0xc38,0x180c,0x180c,0x1ffc,0x1ffc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 235 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0x3e0, 0x7f0, 0xc38, 0x180c, 0x180c, 0x1ffc, 0x1ffc, 0xc, 0xc, 0x181c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0x3e0,0x7f0,0xc38,0x180c,0x180c,0x1ffc,0x1ffc,0xc,0xc, + 0x181c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 236 - 0x0, 0x0, 0x0, 0x38, 0x60, 0xc0, 0x0, 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffe, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x60,0xc0,0x0,0xfc,0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 237 - 0x0, 0x0, 0x0, 0x380, 0xc0, 0x60, 0x0, 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffe, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x380,0xc0,0x60,0x0,0xfc,0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 238 - 0x0, 0x0, 0x0, 0x1e0, 0x330, 0x618, 0x0, 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffe, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1e0,0x330,0x618,0x0,0xfc,0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 239 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xffe, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0xfc,0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, + 0xc0,0xc0,0xffe,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 240 - 0x0, 0x0, 0x0, 0xc60, 0x7c0, 0x3e0, 0x730, 0x600, 0xc00, 0xfe0, 0x1ff8, 0x1c18, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0xc18, 0xff8, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc60,0x7c0,0x3e0,0x730,0x600,0xc00,0xfe0,0x1ff8,0x1c18,0x180c,0x180c,0x180c,0x180c, + 0x180c,0xc18,0xff8,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 241 - 0x0, 0x0, 0x0, 0x470, 0x4c8, 0x388, 0x0, 0x3cc, 0x7ec, 0xe3c, 0xc1c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x470,0x4c8,0x388,0x0,0x3cc,0x7ec,0xe3c,0xc1c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0xc0c,0xc0c,0xc0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 242 - 0x0, 0x0, 0x0, 0x70, 0xc0, 0x180, 0x0, 0x3e0, 0xff0, 0xc38, 0x1c1c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c1c, 0xe38, 0x7f0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0xc0,0x180,0x0,0x3e0,0xff0,0xc38,0x1c1c,0x180c,0x180c,0x180c,0x180c,0x180c, + 0x1c1c,0xe38,0x7f0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 243 - 0x0, 0x0, 0x0, 0x700, 0x180, 0xc0, 0x0, 0x3e0, 0xff0, 0xc38, 0x1c1c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c1c, 0xe38, 0x7f0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x700,0x180,0xc0,0x0,0x3e0,0xff0,0xc38,0x1c1c,0x180c,0x180c,0x180c,0x180c,0x180c, + 0x1c1c,0xe38,0x7f0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 244 - 0x0, 0x0, 0x0, 0x3c0, 0x660, 0xc30, 0x0, 0x3e0, 0xff0, 0xc38, 0x1c1c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c1c, 0xe38, 0x7f0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3c0,0x660,0xc30,0x0,0x3e0,0xff0,0xc38,0x1c1c,0x180c,0x180c,0x180c,0x180c,0x180c, + 0x1c1c,0xe38,0x7f0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 245 - 0x0, 0x0, 0x0, 0x8e0, 0x990, 0x710, 0x0, 0x3e0, 0xff0, 0xc38, 0x1c1c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c1c, 0xe38, 0x7f0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x8e0,0x990,0x710,0x0,0x3e0,0xff0,0xc38,0x1c1c,0x180c,0x180c,0x180c,0x180c,0x180c, + 0x1c1c,0xe38,0x7f0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 246 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0x3e0, 0xff0, 0xc38, 0x1c1c, 0x180c, 0x180c, 0x180c, 0x180c, 0x180c, 0x1c1c, 0xe38, 0x7f0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0x3e0,0xff0,0xc38,0x1c1c,0x180c,0x180c,0x180c,0x180c,0x180c, + 0x1c1c,0xe38,0x7f0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x1ffe, 0x1ffe, 0x0, 0x0, 0x0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc0,0x0,0x0,0x0,0x1ffe,0x1ffe,0x0,0x0,0x0, + 0xc0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13e0, 0xff0, 0xc38, 0x1c1c, 0x1a0c, 0x190c, 0x188c, 0x184c, 0x182c, 0x1c1c, 0xe38, 0x7f8, 0x3e4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13e0,0xff0,0xc38,0x1c1c,0x1a0c,0x190c,0x188c,0x184c,0x182c, + 0x1c1c,0xe38,0x7f8,0x3e4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 249 - 0x0, 0x0, 0x0, 0x70, 0xc0, 0x180, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf1c, 0xdf8, 0xcf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x70,0xc0,0x180,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf1c,0xdf8,0xcf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 250 - 0x0, 0x0, 0x0, 0x700, 0x180, 0xc0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf1c, 0xdf8, 0xcf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x700,0x180,0xc0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf1c,0xdf8,0xcf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 251 - 0x0, 0x0, 0x0, 0x1e0, 0x330, 0x618, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf1c, 0xdf8, 0xcf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1e0,0x330,0x618,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf1c,0xdf8,0xcf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 252 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xe0c, 0xf1c, 0xdf8, 0xcf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xe0c,0xf1c,0xdf8,0xcf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 253 - 0x0, 0x0, 0x0, 0x700, 0x180, 0xc0, 0x0, 0x1806, 0x1c0e, 0xc0c, 0xc0c, 0x618, 0x618, 0x618, 0x330, 0x330, 0x360, 0x1e0, 0x1c0, 0xc0, 0xc0, 0xe0, 0x70, 0x3c, 0x1c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x700,0x180,0xc0,0x0,0x1806,0x1c0e,0xc0c,0xc0c,0x618,0x618,0x618,0x330,0x330, + 0x160,0x1e0,0x1c0,0xc0,0xc0,0xe0,0x70,0x3c,0x1c,0x0,0x0, // 254 - 0x0, 0x0, 0x0, 0xc, 0xc, 0xc, 0xc, 0x3cc, 0x7fc, 0x61c, 0xc1c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0xc0c, 0x61c, 0x7fc, 0x3ec, 0xc, 0xc, 0xc, 0xc, 0xc, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc,0xc,0xc,0xc,0x3cc,0x7fc,0x61c,0xc1c,0xc0c,0xc0c,0xc0c,0xc0c,0xc0c, + 0xc0c,0x61c,0x7fc,0x3ec,0xc,0xc,0xc,0xc,0xc,0x0,0x0, // 255 - 0x0, 0x0, 0x0, 0x630, 0x630, 0x0, 0x0, 0x1806, 0x1c0e, 0xc0c, 0xc0c, 0x618, 0x618, 0x618, 0x330, 0x330, 0x360, 0x1e0, 0x1c0, 0xc0, 0xc0, 0xe0, 0x70, 0x3c, 0x1c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x630,0x630,0x0,0x0,0x1806,0x1c0e,0xc0c,0xc0c,0x618,0x618,0x618,0x330,0x330, + 0x160,0x1e0,0x1c0,0xc0,0xc0,0xe0,0x70,0x3c,0x1c,0x0,0x0, }; // Font: Liberation Mono,22,-1,5,50,0,0,0,0,0 -const unsigned int ff5_height = 34; +const unsigned int ff5_height = 33; const unsigned int ff5_line_height = 33; const unsigned int ff5_width = 17; +const unsigned int ff5_stride = 1; const unsigned char ff5_first_char = ' '; uint32_t ff5_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x0,0x0,0x0,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 34 - 0x0, 0x0, 0x0, 0x0, 0x1c70, 0x1c70, 0x1c70, 0x1c70, 0x1c70, 0x1c70, 0x1c70, 0x1c70, 0xc20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c70,0x1c70,0x1c70,0x1c70,0x1c70,0x1c70,0x1c70,0x1c70,0xc20,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30c0, 0x30c0, 0x1860, 0x1860, 0x1860, 0xfffe, 0xfffe, 0xc30, 0xc30, 0xc30, 0xc30, 0xc30, 0x7fff, 0x7fff, 0x618, 0x618, 0x618, 0x30c, 0x30c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x30c0,0x30c0,0x1860,0x1860,0x1860,0xfffe,0xfffe,0xc30,0xc30,0xc30,0xc30, + 0xc30,0x7fff,0x7fff,0x618,0x618,0x618,0x30c,0x30c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 36 - 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0xff0, 0x3ffc, 0x799c, 0xf18e, 0xe18e, 0x18e, 0x18e, 0x1bc, 0x3f8, 0x1fe0, 0x7d80, 0x7180, 0xe180, 0xe180, 0xe18e, 0xf18e, 0x799c, 0x3ff8, 0xff0, 0x180, 0x180, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x180,0x180,0xff0,0x3ffc,0x799c,0xf18e,0xe18e,0x18e,0x18e,0x1bc,0x3f8,0x1fe0,0x7d80, + 0x7180,0xe180,0xe180,0xe18e,0xf18e,0x799c,0x3ff8,0xff0,0x180,0x180,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc03c, 0x607e, 0x30e7, 0x30c3, 0x18c3, 0xcc3, 0xcc3, 0x6e7, 0x37e, 0x7bbc, 0xfd80, 0x1cec0, 0x18660, 0x18660, 0x18630, 0x18618, 0x1ce18, 0xfc0c, 0x7806, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xc03c,0x607e,0x30e7,0x30c3,0x18c3,0xcc3,0xcc3,0x6e7,0x37e,0x7bbc,0xfd80, + 0x1cec0,0x18660,0x18660,0x18630,0x18618,0x1ce18,0xfc0c,0x7806,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x1fe0, 0x3cf0, 0x3870, 0x3870, 0x1c70, 0xf70, 0x7e0, 0x60f0, 0xe0f8, 0x71dc, 0x718e, 0x730e, 0x3f0e, 0x1e0e, 0x1c0e, 0x7e1c, 0x1f7fc, 0x1c1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0,0x1fe0,0x3cf0,0x3870,0x3870,0x1c70,0xf70,0x7e0,0x60f0,0xe0f8,0x71dc, + 0x718e,0x730e,0x3f0e,0x1e0e,0x1c0e,0x7e1c,0x1f7fc,0x1c1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 39 - 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x100,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 40 - 0x0, 0x0, 0x0, 0x0, 0xe00, 0x700, 0x700, 0x380, 0x380, 0x1c0, 0x1c0, 0x1c0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x1c0, 0x1c0, 0x1c0, 0x380, 0x380, 0x700, 0x700, 0xe00, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xe00,0x700,0x700,0x380,0x380,0x1c0,0x1c0,0x1c0,0xe0,0xe0,0xe0,0xe0,0xe0, + 0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x1c0,0x1c0,0x1c0,0x380,0x380,0x700,0x700,0xe00,0x0,0x0, + 0x0, // 41 - 0x0, 0x0, 0x0, 0x0, 0xe0, 0x1c0, 0x380, 0x380, 0x700, 0x700, 0xe00, 0xe00, 0xe00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xe00, 0xe00, 0xe00, 0x700, 0x700, 0x380, 0x380, 0x1c0, 0xe0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xe0,0x1c0,0x380,0x380,0x700,0x700,0xe00,0xe00,0xe00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xe00,0xe00,0xe00,0x700,0x700,0x380,0x380,0x1c0,0xe0,0x0,0x0, + 0x0, // 42 - 0x0, 0x0, 0x0, 0x0, 0x300, 0x300, 0x300, 0x3330, 0x3ff0, 0x700, 0x780, 0xcc0, 0x1ce0, 0x840, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x300,0x300,0x300,0x3330,0x3ff0,0x780,0x780,0xcc0,0x1ce0,0x840,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x7ffe, 0x7ffe, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x180,0x180,0x180,0x180,0x180,0x180,0x7ffe,0x7ffe,0x180, + 0x180,0x180,0x180,0x180,0x180,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x1c0, 0x1c0, 0xc0, 0xe0, 0xe0, 0x60, 0x70, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x380,0x1c0,0x1c0,0xc0,0xe0,0xe0,0x60,0x70,0x30,0x0,0x0,0x0, + 0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0, + 0x1fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 47 - 0x0, 0x0, 0x0, 0x0, 0x7000, 0x3000, 0x3800, 0x1800, 0x1c00, 0xc00, 0xe00, 0x600, 0x700, 0x300, 0x380, 0x180, 0x1c0, 0xc0, 0xe0, 0x60, 0x70, 0x30, 0x38, 0x18, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7000,0x3000,0x3800,0x1800,0x1c00,0xc00,0xe00,0x600,0x700,0x300,0x380,0x180,0x1c0, + 0xc0,0xe0,0x60,0x70,0x30,0x38,0x18,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3838, 0x701c, 0x701c, 0x701c, 0x739c, 0x739c, 0x739c, 0x701c, 0x701c, 0x701c, 0x3838, 0x3838, 0x1c70, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3838,0x701c,0x701c,0x701c,0x739c,0x739c,0x739c, + 0x701c,0x701c,0x701c,0x3838,0x3838,0x1c70,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x700, 0x780, 0x7e0, 0x77c, 0x71c, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x700,0x780,0x7e0,0x77c,0x71c,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe0, 0x1ff0, 0x3878, 0x701c, 0x701c, 0x7000, 0x7000, 0x3800, 0x3c00, 0x1e00, 0xf00, 0x780, 0x1c0, 0xe0, 0x70, 0x38, 0x1c, 0x7ffc, 0x7ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfe0,0x1ff0,0x3878,0x701c,0x701c,0x7000,0x7000,0x3800,0x3c00,0x1e00,0xf00, + 0x780,0x1c0,0xe0,0x70,0x38,0x1c,0x7ffc,0x7ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e0, 0x1ff0, 0x1c38, 0x381c, 0x381c, 0x3800, 0x3800, 0x1c00, 0xf80, 0xf80, 0x3c00, 0x3800, 0x7000, 0x7000, 0x701c, 0x701c, 0x3838, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e0,0x1ff0,0x1c38,0x381c,0x381c,0x3800,0x3800,0x1c00,0xf80,0xf80,0x3c00, + 0x3800,0x7000,0x7000,0x701c,0x701c,0x3838,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1f00, 0x1f80, 0x1dc0, 0x1cc0, 0x1ce0, 0x1c70, 0x1c30, 0x1c38, 0x1c1c, 0x1c0e, 0xfffe, 0xfffe, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1f00,0x1f80,0x1dc0,0x1cc0,0x1ce0,0x1c70,0x1c30,0x1c38,0x1c1c, + 0x1c0e,0xfffe,0xfffe,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ff0, 0x3ff0, 0x78, 0x38, 0x38, 0x38, 0x38, 0xf38, 0x1ff8, 0x3c78, 0x7838, 0x7000, 0x7000, 0x7000, 0x701c, 0x383c, 0x3c38, 0x1ff0, 0x7e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3ff0,0x3ff0,0x30,0x38,0x38,0x38,0x38,0xf38,0x1ff8,0x3c78,0x7838, + 0x7000,0x7000,0x7000,0x701c,0x383c,0x3c38,0x1ff0,0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0xfe0, 0x1c70, 0x3838, 0x3838, 0x1c, 0x1c, 0xf9c, 0x1fdc, 0x3c7c, 0x783c, 0x701c, 0x701c, 0x701c, 0x7018, 0x7838, 0x3c70, 0x1ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0xfe0,0x1c70,0x3838,0x3838,0x1c,0x1c,0xf9c,0x1fdc,0x3c7c,0x783c, + 0x701c,0x701c,0x701c,0x7018,0x7838,0x3c70,0x1ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x7000, 0x3800, 0x1c00, 0x1c00, 0xe00, 0x700, 0x700, 0x380, 0x380, 0x380, 0x1c0, 0x1c0, 0x1c0, 0xe0, 0xe0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7ffc,0x7ffc,0x7000,0x3800,0x1c00,0x1c00,0xe00,0x700,0x700,0x380,0x380, + 0x380,0x1c0,0x1c0,0x1c0,0xe0,0xe0,0xe0,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe0, 0x1ff0, 0x3838, 0x701c, 0x701c, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x1ff0, 0x3878, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x3838, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfe0,0x1ff0,0x3838,0x701c,0x701c,0x701c,0x701c,0x3838,0x1ff0,0x1ff0,0x3878, + 0x701c,0x701c,0x701c,0x701c,0x701c,0x3838,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x301c, 0x701c, 0x701c, 0x701c, 0x701c, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x3000, 0x381c, 0x383c, 0x1c38, 0xff0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x301c,0x701c,0x701c,0x701c,0x701c,0x7838,0x7c78, + 0x77f0,0x73e0,0x3000,0x381c,0x383c,0x1c38,0xff0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x700, 0x700, 0x700, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x700, 0x380, 0x380, 0x180, 0x1c0, 0x1c0, 0xc0, 0xe0, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x700,0x700,0x700,0x700,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x700,0x380,0x380,0x180,0x1c0,0x1c0,0xc0,0xe0,0x60,0x0,0x0,0x0, + 0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4000, 0x7000, 0x3c00, 0xf00, 0x3c0, 0xf0, 0x3c, 0xc, 0x3c, 0xf8, 0x3c0, 0xf00, 0x3c00, 0x7000, 0x4000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4000,0x7000,0x3c00,0xf00,0x3c0,0xf0,0x3c,0xc,0x3c, + 0xf8,0x3c0,0xf00,0x3c00,0x7000,0x4000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffc,0x7ffc,0x0,0x0,0x0,0x0, + 0x0,0x7ffc,0x7ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x1c, 0x78, 0x1e0, 0x780, 0x1e00, 0x7800, 0x6000, 0x7800, 0x3e00, 0xf80, 0x1e0, 0x78, 0x1c, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1c,0x78,0x1e0,0x780,0x1e00,0x7800,0x6000,0x7800, + 0x3e00,0x780,0x1e0,0x78,0x1c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e0, 0x1ff8, 0x3c3c, 0x701c, 0x700e, 0x700e, 0x7000, 0x3800, 0x3c00, 0x1e00, 0x700, 0x380, 0x1c0, 0x1c0, 0x0, 0x0, 0x1c0, 0x1c0, 0x1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e0,0x1ff8,0x3c3c,0x701c,0x700e,0x700e,0x7000,0x3800,0x3c00,0x1e00,0x700, + 0x380,0x1c0,0x1c0,0x0,0x0,0x1c0,0x1c0,0x1c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 64 - 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x3fe0, 0x7870, 0x6018, 0xc00c, 0xf38c, 0x1fc66, 0x1bc26, 0x19c36, 0x19c33, 0x19c1b, 0x19c1b, 0x19c1b, 0x18c1b, 0x8c1b, 0xce1b, 0xce1b, 0x4d33, 0x38e6, 0x6, 0xe, 0x201c, 0x7838, 0x1ff0, 0x7e0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xfc0,0x3fe0,0x7870,0x6018,0xc00c,0xf38c,0x1fc66,0x1bc26,0x19c36,0x19c33,0x19c1b,0x19c1b,0x19c1b, + 0x18c1b,0x8c1b,0xce1b,0xce1b,0x4d33,0x38e6,0x6,0xe,0x201c,0x7838,0x1ff0,0x7e0,0x0,0x0,0x0,0x0, + 0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x780, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x780,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc, 0x3ffc, 0x781c, 0x701c, 0x701c, 0x701c, 0x701c, 0x381c, 0x1ffc, 0x1ffc, 0x781c, 0xf01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x781c, 0x3ffc, 0xffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xffc,0x3ffc,0x781c,0x701c,0x701c,0x701c,0x701c,0x381c,0x1ffc,0x1ffc,0x781c, + 0xf01c,0xe01c,0xe01c,0xe01c,0xf01c,0x781c,0x3ffc,0xffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x3878, 0x301c, 0x701c, 0x200e, 0xe, 0xe, 0xe, 0xe, 0xe, 0xe, 0xe, 0x200e, 0x701c, 0x301c, 0x3c78, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x3878,0x301c,0x701c,0x200e,0xe,0xe,0xe,0xe,0xe, + 0xe,0xe,0x200e,0x701c,0x301c,0x3c78,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fc, 0x1ffc, 0x3c1c, 0x781c, 0x701c, 0x701c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0x701c, 0x701c, 0x781c, 0x3c1c, 0x1ffc, 0x7fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3fc,0x1ffc,0x3c1c,0x781c,0x701c,0x701c,0xe01c,0xe01c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0x701c,0x701c,0x781c,0x3c1c,0x1ffc,0x7fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7ffc,0x7ffc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7ffc,0x7ffc,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x7ff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7ff8, 0x7ff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7ff8,0x7ff8,0x38,0x38,0x38,0x38,0x38,0x38,0x7ff8,0x7ff8,0x38, + 0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7078, 0xe03c, 0x401c, 0xe, 0xe, 0xe, 0xe, 0xfe0e, 0xfe0e, 0xe00e, 0xe00e, 0xe01c, 0xe01c, 0xe03c, 0xf078, 0x7ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0,0x3ff0,0x7078,0xe03c,0x401c,0xe,0xe,0xe,0xe,0xfe0e,0xfe0e, + 0xe00e,0xe00e,0xe01c,0xe01c,0xe03c,0xf078,0x7ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x7ffc, 0x7ffc, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x7ffc,0x7ffc,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ff8, 0x3ff8, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x3ff8, 0x3ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3ff8,0x3ff8,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x3ff8,0x3ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0x3f80, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3838, 0x3838, 0x3870, 0x1c70, 0xfe0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f80,0x3f80,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3838,0x3838,0x3870,0x1c70,0xfe0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe01c, 0x701c, 0x381c, 0x1c1c, 0xe1c, 0x71c, 0x71c, 0x39c, 0x1dc, 0x3fc, 0x77c, 0xf3c, 0xe1c, 0x1c1c, 0x381c, 0x781c, 0x701c, 0xe01c, 0x1c01c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe01c,0x701c,0x381c,0x1c1c,0xe1c,0x71c,0x71c,0x39c,0x1dc,0x3fc,0x77c, + 0xf3c,0xe1c,0x1c1c,0x381c,0x781c,0x701c,0xe01c,0x1c01c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7ff8, 0x7ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x38,0x38,0x7ff8,0x7ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf01e, 0xf03e, 0xf83e, 0xf83e, 0xfc6e, 0xec6e, 0xec6e, 0xeece, 0xe6ce, 0xe6ce, 0xe38e, 0xe38e, 0xe38e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf01e,0xf03e,0xf83e,0xf83e,0xfc6e,0xec6e,0xec6e,0xe6ce,0xe6ce,0xe6ce,0xe38e, + 0xe38e,0xe38e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x703c, 0x703c, 0x707c, 0x707c, 0x70fc, 0x70dc, 0x70dc, 0x719c, 0x719c, 0x739c, 0x731c, 0x731c, 0x761c, 0x761c, 0x7e1c, 0x7c1c, 0x7c1c, 0x781c, 0x781c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x703c,0x703c,0x707c,0x707c,0x70fc,0x70dc,0x70dc,0x719c,0x719c,0x739c,0x731c, + 0x731c,0x761c,0x761c,0x7e1c,0x7c1c,0x7c1c,0x781c,0x781c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xf00e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0xf00e,0x701c,0x701c,0x3838,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc, 0x3ffc, 0x781c, 0xf01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0x701c, 0x781c, 0x3ffc, 0xffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xffc,0x3ffc,0x781c,0xf01c,0xe01c,0xe01c,0xe01c,0xe01c,0x701c,0x781c,0x3ffc, + 0xffc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0x700e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7e0, 0x380, 0x700, 0xf00, 0xfe00, 0xf800, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0x700e,0x701c,0x701c,0x3838,0x1ff0,0x7e0,0x380,0x700,0xf00,0xfe00,0xf800,0x0,0x0,0x0, + 0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc, 0x3ffc, 0x781c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x781c, 0x3ffc, 0xffc, 0xe1c, 0xe1c, 0x1c1c, 0x381c, 0x701c, 0x701c, 0xe01c, 0x1c01c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xffc,0x3ffc,0x781c,0xe01c,0xe01c,0xe01c,0xe01c,0xf01c,0x781c,0x3ffc,0xffc, + 0xe1c,0xe1c,0x1c1c,0x381c,0x701c,0x701c,0xe01c,0x1c01c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe0, 0x3ff8, 0x7838, 0xf01c, 0xe01c, 0x1c, 0x3c, 0x78, 0x7f0, 0x3fc0, 0x7c00, 0xf000, 0xe000, 0xe00e, 0xe00e, 0xf01c, 0x783c, 0x3ff8, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfe0,0x3ff8,0x7838,0xf01c,0xe01c,0x1c,0x3c,0x78,0x7f0,0x3fc0,0x7c00, + 0xf000,0xe000,0xe00e,0xe00e,0xf01c,0x783c,0x3ff8,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffe, 0xfffe, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfffe,0xfffe,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x383c, 0x3c38, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x383c,0x3c38,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c007, 0xe00e, 0xe00e, 0xe00e, 0x701c, 0x701c, 0x701c, 0x3838, 0x3838, 0x3838, 0x1c70, 0x1c70, 0xc60, 0xee0, 0xee0, 0x6c0, 0x6c0, 0x7c0, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c007,0xe00e,0xe00e,0xe00e,0x701c,0x701c,0x701c,0x3838,0x3838,0x3838,0x1c70, + 0x1c70,0xc60,0xee0,0xee0,0x6c0,0x6c0,0x7c0,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c007, 0x1c007, 0x1c007, 0x1c007, 0xc006, 0xe00e, 0xe38e, 0xe38e, 0xe7ce, 0xe6ce, 0xe6ce, 0xe6cc, 0x6eec, 0x6c6c, 0x6c6c, 0x6c6c, 0x7c7c, 0x783c, 0x783c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c007,0x1c007,0x1c007,0x1c007,0xc006,0xe00e,0xe38e,0xe38e,0xe7ce,0xe6ce,0xe6ce, + 0xe6cc,0x6eec,0x6c6c,0x6c6c,0x6c6c,0x7c7c,0x783c,0x783c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x701c, 0x3838, 0x3838, 0x1c70, 0xe60, 0xee0, 0x7c0, 0x7c0, 0x380, 0x7c0, 0x7c0, 0xee0, 0xee0, 0x1c70, 0x1c70, 0x3838, 0x701c, 0x701c, 0xe00e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x701c,0x3838,0x3838,0x1c70,0xe60,0xee0,0x7c0,0x7c0,0x380,0x7c0,0x7c0, + 0xee0,0xee0,0x1c70,0x1c70,0x3838,0x701c,0x701c,0xe00e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c007, 0xe00e, 0x700c, 0x701c, 0x3838, 0x3830, 0x1c70, 0xee0, 0xee0, 0x7c0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c007,0xe00e,0x600c,0x701c,0x3838,0x3830,0x1c70,0xee0,0xee0,0x7c0,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x3800, 0x3800, 0x1c00, 0xe00, 0xe00, 0x700, 0x380, 0x3c0, 0x1c0, 0xe0, 0x70, 0x70, 0x38, 0x1c, 0x1e, 0xfffe, 0xfffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7ffc,0x7ffc,0x3800,0x3800,0x1c00,0xe00,0xe00,0x700,0x380,0x3c0,0x1c0, + 0xe0,0x70,0x70,0x38,0x1c,0x1e,0xfffe,0xfffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 91 - 0x0, 0x0, 0x0, 0x0, 0x1fc0, 0x1fc0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1fc0, 0x1fc0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fc0,0x1fc0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0, + 0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1fc0,0x1fc0,0x0,0x0, + 0x0, // 92 - 0x0, 0x0, 0x0, 0x0, 0x1c, 0x18, 0x38, 0x30, 0x70, 0x60, 0xe0, 0xc0, 0x1c0, 0x180, 0x380, 0x300, 0x700, 0x600, 0xe00, 0xc00, 0x1c00, 0x1800, 0x3800, 0x3000, 0x7000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c,0x18,0x38,0x30,0x70,0x60,0xe0,0xc0,0x1c0,0x180,0x380,0x300,0x700, + 0x600,0xe00,0xc00,0x1c00,0x1800,0x3800,0x3000,0x7000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 93 - 0x0, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xff0, 0xff0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xff0,0xff0,0x0,0x0, + 0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x7c0, 0x6c0, 0x6c0, 0xc60, 0xc60, 0x1c30, 0x1830, 0x1830, 0x3018, 0x3018, 0x701c, 0x600c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x380,0x7c0,0x6c0,0x6c0,0xc60,0xc60,0x1c30,0x1830,0x1830,0x3018,0x3018, + 0x701c,0x600c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff,0x0,0x0,0x0,0x0,0x0, + 0x0, // 96 - 0x0, 0x0, 0x0, 0x0, 0x1c0, 0x380, 0x700, 0xc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1c0,0x380,0x700,0xc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 98 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1f38, 0x3fb8, 0x78f8, 0x7078, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0x7078, 0x78f8, 0x3fb8, 0x1f38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x1f38,0x3fb8,0x78f8,0x7078,0xe038,0xe038,0xe038,0xe038, + 0xe038,0xe038,0xe038,0xe038,0x7078,0x78f8,0x3fb8,0x1f38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc0, 0x3fe0, 0x7070, 0xe038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe038, 0x7070, 0x3ff0, 0x1fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x3fe0,0x7070,0xe038,0x1c,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x1c,0x1c,0xe038,0x7070,0x3ff0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 100 - 0x0, 0x0, 0x0, 0x0, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x73e0, 0x77f0, 0x7c78, 0x7838, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7000,0x7000,0x7000,0x7000,0x7000,0x73e0,0x77f0,0x7c78,0x7838,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x7838,0x7c78,0x77f0,0x73e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x3ff0, 0x3878, 0x7038, 0x701c, 0xe01c, 0xe01c, 0xfffc, 0xfffc, 0x1c, 0x1c, 0x18, 0xe038, 0xf870, 0x7fe0, 0x1fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x3ff0,0x3878,0x7038,0x701c,0xe01c,0xe01c,0xfffc, + 0xfffc,0x1c,0x1c,0x18,0xe038,0xf870,0x7fe0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 102 - 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x7f00, 0x780, 0x380, 0x380, 0x7ff8, 0x7ff8, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e00,0x7f00,0x780,0x380,0x380,0x7ff8,0x7ff8,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73e0, 0x77f0, 0x7c78, 0x7838, 0x781c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x781c, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x7000, 0x7000, 0x7838, 0x3878, 0x1ff0, 0xfc0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73e0,0x77f0,0x7c78,0x7838,0x781c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x781c,0x7838,0x7c78,0x77f0,0x73e0,0x7000,0x7000,0x7838,0x3878,0x1ff0,0xfc0,0x0,0x0, + 0x0, // 104 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1f38, 0x3fb8, 0x38f8, 0x7078, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x1f38,0x3fb8,0x38f8,0x7078,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 105 - 0x0, 0x0, 0x0, 0x0, 0x700, 0x700, 0x700, 0x0, 0x0, 0x7f8, 0x7f8, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x700,0x700,0x700,0x0,0x0,0x7f8,0x7f8,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 106 - 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, 0x700, 0x3fc, 0x1fc, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xf00,0x700,0x3fc,0x1fc,0x0,0x0, + 0x0, // 107 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0xe038, 0x7038, 0x3838, 0x1c38, 0xe38, 0x738, 0x3b8, 0x3f8, 0x7f8, 0xe78, 0xe38, 0x1c38, 0x3838, 0x3838, 0x7038, 0xe038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0xe038,0x7038,0x3838,0x1c38,0xe38,0x738,0x3b8,0x3f8, + 0x7f8,0xe78,0xe38,0x1c38,0x3838,0x3838,0x7038,0xe038,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 108 - 0x0, 0x0, 0x0, 0x0, 0x7f0, 0x7f0, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7f0,0x7f0,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78ee, 0x7dfe, 0xe59e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0xe38e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78ee,0x7dfe,0xe59e,0xe38e,0xe38e,0xe38e,0xe38e,0xe38e, + 0xe38e,0xe38e,0xe38e,0xe38e,0xe38e,0xe38e,0xe38e,0xe38e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f38, 0x3fb8, 0x78f8, 0x7078, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f38,0x3fb8,0x78f8,0x7078,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0xe03c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0xe03c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xf01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f38, 0x3fb8, 0x78f8, 0x7078, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0x7078, 0x78f8, 0x3fb8, 0x1f38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f38,0x3fb8,0x78f8,0x7078,0xe038,0xe038,0xe038,0xe038, + 0xe038,0xe038,0xe038,0xe038,0x7078,0x78f8,0x3fb8,0x1f38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0, + 0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73e0, 0x77f0, 0x7c78, 0x7838, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x781c, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73e0,0x77f0,0x7c78,0x7838,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x781c,0x7838,0x7c78,0x77f0,0x73e0,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x0,0x0, + 0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e30, 0x3f30, 0x3f0, 0xf0, 0xf0, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e30,0x3f30,0x3f0,0xf0,0xf0,0x70,0x70,0x70, + 0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0x38, 0x78, 0x1f0, 0xfe0, 0x3f80, 0x7c00, 0x7000, 0x7000, 0x701c, 0x383c, 0x3ff8, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0x38,0x78,0x1f0,0xfe0, + 0x3f80,0x7c00,0x7000,0x7000,0x701c,0x383c,0x3ff8,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x1c0, 0x1c0, 0x1ff0, 0x1ff0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x3c0, 0x3f80, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x180,0x180,0x1c0,0x1c0,0x1ff0,0x1ff0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0, + 0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x3c0,0x3f80,0x3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7838,0x7c78,0x77f0,0x73e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00e, 0x601c, 0x701c, 0x701c, 0x3038, 0x3838, 0x3838, 0x1870, 0x1c70, 0x1c70, 0xee0, 0xee0, 0x6e0, 0x6c0, 0x7c0, 0x3c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00e,0x601c,0x701c,0x701c,0x3038,0x3838,0x3838,0x1870, + 0x1c70,0x1c70,0xee0,0xee0,0x6e0,0x6c0,0x7c0,0x3c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c007, 0x1c007, 0x1c007, 0x1c007, 0xe386, 0xe3ce, 0xe6ce, 0xe6ce, 0xe6ce, 0xe6ee, 0xec6e, 0xec6e, 0x6c6c, 0x683c, 0x783c, 0x783c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c007,0x1c007,0x1c007,0x1c007,0xe386,0xe3ce,0xe6ce,0xe6ce, + 0xe6ce,0xe6ee,0xec6e,0xec6e,0x6c6c,0x683c,0x783c,0x783c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00e, 0x701c, 0x3038, 0x1870, 0x1c70, 0xee0, 0x7c0, 0x780, 0x380, 0x7c0, 0xee0, 0x1c70, 0x1c70, 0x3838, 0x701c, 0xe00e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00e,0x701c,0x3038,0x1870,0x1c70,0xee0,0x7c0,0x780, + 0x380,0x7c0,0xee0,0x1c70,0x1c70,0x3838,0x701c,0xe00e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00e, 0xe00e, 0x600c, 0x701c, 0x3018, 0x3838, 0x3838, 0x1830, 0x1c70, 0xc60, 0xc60, 0x6e0, 0x6c0, 0x7c0, 0x380, 0x380, 0x180, 0x180, 0x1c0, 0xe0, 0x7c, 0x3c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00e,0xe00e,0x600c,0x701c,0x3018,0x3838,0x3838,0x1830, + 0x1c70,0xc60,0xc60,0x6e0,0x6c0,0x7c0,0x380,0x380,0x180,0x180,0x1c0,0xe0,0x7c,0x3c,0x0,0x0, + 0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ff8, 0x3ff8, 0x3800, 0x1c00, 0xe00, 0x700, 0x700, 0x380, 0x1c0, 0xe0, 0xe0, 0x70, 0x38, 0x1c, 0x7ffc, 0x7ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff8,0x3ff8,0x3800,0x1c00,0xe00,0x700,0x700,0x380, + 0x1c0,0xe0,0xe0,0x70,0x38,0x1c,0x7ffc,0x7ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 123 - 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x7f00, 0x780, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x1e0, 0xf8, 0xf8, 0x1e0, 0x3c0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x780, 0x7f00, 0x7e00, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e00,0x7f00,0x780,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x1e0,0xf8, + 0xf8,0x1e0,0x3c0,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x780,0x7f00,0x7e00,0x0,0x0, + 0x0, // 124 - 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180, + 0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x0,0x0, + 0x0, // 125 - 0x0, 0x0, 0x0, 0x0, 0xfc, 0x1fc, 0x3c0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0xf00, 0x3e00, 0x3e00, 0xf00, 0x780, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x3c0, 0x1fc, 0xfc, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xfc,0x1fc,0x3c0,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0xf00,0x3e00, + 0x3e00,0xf00,0x780,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x3c0,0x1fc,0xfc,0x0,0x0, + 0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x43fc, 0x7f84, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x43fc,0x7f84,0x3c00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 127 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x554a,0x15552,0x1cb5a,0x1c45a,0x16d7e,0x16500,0x8d42,0x191a4,0x776a,0xd44e,0x228,0xdf6,0x14bba,0x1087a,0xac4c,0x4088, + 0x67f4,0x6500,0x14e7e,0x7242,0x17c5a,0x15a5a,0x4842,0x1b7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff, 0xaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x78, 0xcc, 0x86, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x70,0xf0,0x70, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 130 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x102, 0x1fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x248, + 0x7fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 131 - 0xc300, 0xc380, 0xc300, 0x0, 0x1fe, 0x70, 0x70, 0xe0, 0x1c0, 0x101c0, 0x10380, 0x8380, 0x8700, 0x4e00, 0x6e00, 0x3c00, 0x1c00, 0x1800, 0x1c00, 0x1800, 0x1c00, 0x1800, 0x1c00, 0x3800, 0xff80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe38, 0xe38, 0x1c70, 0x1040, 0x0, 0x820, 0x820, 0x400, 0x10, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff,0x0,0x0,0x0,0x0, + 0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18e38, 0x18e38, 0x18c30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 134 - 0x0, 0x0, 0x0, 0x0, 0xe0, 0x40, 0x60, 0x40, 0x40, 0x40, 0x40, 0x75c, 0x7dc, 0x40, 0x40, 0x40, 0x60, 0xc0, 0x60, 0xc0, 0x60, 0xc0, 0x60, 0x40, 0xc0, 0x60, 0x40, 0x40, 0x40, 0x40, 0x40, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 135 - 0x0, 0x0, 0x0, 0x40, 0x40, 0xe0, 0x40, 0x40, 0x40, 0x75c, 0x75c, 0x40, 0x40, 0x40, 0x60, 0xc0, 0x60, 0x40, 0xe0, 0x40, 0x40, 0x40, 0x40, 0x7dc, 0x75c, 0x40, 0x40, 0x40, 0x60, 0xc0, 0x60, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 136 - 0x3b00, 0x4080, 0x0, 0x0, 0x1fffc, 0x10070, 0xe0, 0x70, 0x60, 0x60, 0x20f0, 0x2060, 0x2070, 0x3060, 0x3fe0, 0x3070, 0x20e0, 0x70, 0x60, 0x60, 0xf0, 0x60, 0x70, 0x100e0, 0x1fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 137 - 0x0, 0x0, 0x60, 0x118, 0x208, 0x60c, 0xf20c, 0xc, 0x204, 0x1040c, 0x820c, 0x8208, 0x4008, 0x2010, 0x3000, 0x1000, 0x10800, 0x10c00, 0x18600, 0x18200, 0x18100, 0x18180, 0x18080, 0x100c0, 0x10060, 0x20, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 138 - 0x7c0, 0x300, 0x0, 0x280, 0x4d60, 0x7010, 0x6018, 0x600c, 0x400c, 0x400c, 0x401c, 0x38, 0x1f8, 0xff0, 0x3fe0, 0x7e00, 0x7000, 0xe000, 0x6004, 0xc004, 0xc004, 0x400c, 0x600c, 0x301c, 0x1de4, 0x200, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 139 - 0x0, 0x0, 0x0, 0x80, 0x4f60, 0x7010, 0x6018, 0x600c, 0x400c, 0x400c, 0x401c, 0x38, 0x2f8, 0xff0, 0x3fe0, 0x7d00, 0x7000, 0xe000, 0x6004, 0xc004, 0xc004, 0x400c, 0x600c, 0x301c, 0x1ee4, 0x100, 0x0, 0x300, 0x300, 0x200, 0x0, 0x200, 0x0, 0x100, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 140 - 0x700, 0x80, 0x0, 0x280, 0x4d60, 0x7010, 0x6018, 0x600c, 0x400c, 0x400c, 0x401c, 0x38, 0x1f8, 0xff0, 0x3fe0, 0x7e00, 0x7000, 0xe000, 0x6004, 0xc004, 0xc004, 0x400c, 0x600c, 0x301c, 0x1de4, 0x200, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 141 - 0x0, 0x0, 0x0, 0x2800, 0x1c700, 0x10180, 0x100c0, 0x10060, 0x10070, 0x10030, 0x10038, 0x10038, 0x10038, 0x1001c, 0x10038, 0x1001c, 0x10038, 0x10038, 0x10038, 0x10070, 0x10070, 0x10060, 0x100c0, 0x18380, 0x1c700, 0x1800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2004, 0x700e, 0x3818, 0x1c38, 0xe70, 0x7e0, 0x3c0, 0x3c0, 0x6e0, 0xe70, 0x1838, 0x381c, 0x700e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x380, 0x180, 0x0, 0x0, 0x0, 0x0, 0x7ffe, 0xfffe, 0x0, 0x0, 0x0, 0x180, 0x380, 0x180, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16db6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x20, 0x10, 0x8, 0x0, 0x8, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 146 - 0x0, 0x0, 0x0, 0x0, 0x30, 0x38, 0x78, 0x40, 0x0, 0x40, 0x20, 0x20, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x820, 0x410, 0x208, 0x0, 0x208, 0xe38, 0xe38, 0xe38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 148 - 0x0, 0x0, 0x0, 0x0, 0xc30, 0xe38, 0x1e78, 0x1040, 0x0, 0x1040, 0x820, 0x820, 0x410, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0xfe00, 0x1ff00, 0x1ff80, 0x1ff80, 0x1ff80, 0x1ff80, 0x1ff00, 0x1ff00, 0xfe00, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6db6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16db6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 152 - 0x0, 0x100, 0x180, 0x6c0, 0x420, 0x810, 0x0, 0x0, 0x0, 0x7ffe, 0x2018, 0x6030, 0x4018, 0x4038, 0x410, 0x438, 0x7f8, 0x410, 0x438, 0x8418, 0x4030, 0x4018, 0x4018, 0x6038, 0x7ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc000, 0x8000, 0x10000, 0x10000, 0x18000, 0xe000, 0x3c00, 0x780, 0xf0, 0x1c, 0x78, 0x1c0, 0x1e00, 0x7000, 0x18000, 0x10000, 0x10000, 0x18000, 0x8000, 0x4000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 154 - 0x0, 0x0, 0x408, 0x310, 0x1b0, 0xe0, 0x40, 0x0, 0x0, 0x4b0, 0x708, 0x404, 0x406, 0x404, 0xc, 0x7c, 0x3f8, 0x7e0, 0xe00, 0xc00, 0xc02, 0x404, 0x406, 0x61c, 0x1e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f0, 0x608, 0x404, 0xc06, 0x404, 0xc, 0x7c, 0x3f8, 0x7e0, 0xe00, 0xc00, 0xc02, 0x804, 0x406, 0x60c, 0x1f2, 0x0, 0x0, 0xe0, 0xc0, 0x0, 0x80, 0x0, 0x40, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 156 - 0x0, 0x200, 0x700, 0x380, 0xc0, 0x40, 0x20, 0x0, 0x0, 0x4f0, 0x608, 0x604, 0x406, 0x404, 0xc, 0x7c, 0x3f8, 0x7e0, 0xe00, 0xc00, 0xc02, 0x804, 0x406, 0x61c, 0x1e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff80, 0x3060, 0x3030, 0x3018, 0x3018, 0x301c, 0x300c, 0x1e00c, 0x301c, 0x300c, 0x301c, 0x3018, 0x3018, 0x3030, 0x30e0, 0x1ff80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 158 - 0x0, 0x808, 0x410, 0x320, 0x1e0, 0x80, 0x0, 0x0, 0x0, 0x1ffc, 0x1c0c, 0xc04, 0x604, 0x704, 0x300, 0x380, 0x1c0, 0xc0, 0xe0, 0x2070, 0x1030, 0x1038, 0x1018, 0x180c, 0x1ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 159 - 0x0, 0x0, 0x600, 0x700, 0x180, 0xc0, 0x40, 0x0, 0x0, 0x1ffc, 0x180c, 0xc04, 0xe04, 0x704, 0x300, 0x180, 0x1c0, 0xc0, 0xe0, 0x1070, 0x2030, 0x1038, 0x1018, 0x180c, 0x1ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x102, + 0x102,0x102,0x102,0x102,0x102,0x102,0x102,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x380,0x380,0x380,0x0,0x0,0x0,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0, + 0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x700, 0x700, 0x700, 0x1fc0, 0x3ff0, 0x7878, 0xf038, 0xe01c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe01c, 0xf038, 0x7878, 0x3ff0, 0x1fc0, 0x700, 0x700, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x600,0x600,0x1f80,0x7fe0,0xf670,0x1e638,0x1c63c,0x61c,0x61c,0x61c,0x61c, + 0x61c,0x1c63c,0x1e638,0xf670,0x7fe0,0x1f80,0x600,0x600,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80, 0x7fc0, 0xf0e0, 0x6070, 0x70, 0x70, 0x70, 0x70, 0x70, 0xffc, 0xffc, 0x70, 0x70, 0x70, 0x70, 0x1c070, 0x1e038, 0xfffc, 0x7ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f80,0x7fc0,0xf0e0,0x6070,0x70,0x70,0x70,0x70,0x70,0xffc,0xffc, + 0x70,0x70,0x70,0x70,0x1c070,0x1e038,0xfffc,0x7ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2790, 0x7ff8, 0x3870, 0x3030, 0x6018, 0x6018, 0x6018, 0x6018, 0x3030, 0x3870, 0x7ff8, 0x2790, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2790,0x7ff8,0x3870,0x3030,0x6018,0x6018,0x6018,0x6018, + 0x3030,0x3870,0x7ff8,0x2790,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c007, 0xe00e, 0x701c, 0x701c, 0x3838, 0x1c70, 0x1c70, 0xee0, 0x7c0, 0xfffe, 0xfffe, 0x380, 0x380, 0xfffe, 0xfffe, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c007,0xe00e,0x701c,0x701c,0x3838,0x1c70,0x1c70,0xee0,0x7c0,0xfffe,0xfffe, + 0x380,0x380,0xfffe,0xfffe,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 166 - 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x0,0x0, + 0x0,0x0,0x0,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x180,0x0,0x0, + 0x0, // 167 - 0x0, 0x0, 0x0, 0x0, 0x1fc0, 0x7ff0, 0x7078, 0xe038, 0x38, 0x78, 0x3f0, 0x1fc0, 0x7ef0, 0xf038, 0xe038, 0xe038, 0xe078, 0x70f0, 0x3fe0, 0x3f00, 0x7800, 0xe000, 0xe000, 0xe01c, 0xf03c, 0x7ff8, 0x1fe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1fc0,0x7ff0,0x7078,0xe038,0x38,0x78,0x3f0,0x1fc0,0x7ef0,0xf038,0xe038,0xe038,0xe078, + 0x70f0,0x3fe0,0x3f00,0x7800,0xe000,0xe000,0xe01c,0xf03c,0x7ff8,0x1fe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 168 - 0x0, 0x0, 0x0, 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1860,0x1860,0x1860,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 169 - 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1830, 0x200c, 0x4004, 0x8782, 0x8c62, 0x9861, 0x10031, 0x10031, 0x10031, 0x10031, 0x10031, 0x10031, 0x10031, 0x9861, 0x8c62, 0x8782, 0x4004, 0x6008, 0x1830, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7c0,0x1830,0x200c,0x4004,0x8782,0x8c62,0x9861,0x10031,0x10031,0x10031,0x10031,0x10031,0x10031, + 0x10031,0x9861,0x8c62,0x8782,0x4004,0x6008,0x1830,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 170 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e0, 0xc30, 0x1818, 0x1800, 0x1fe0, 0x1830, 0x1818, 0x1818, 0x1c18, 0x1a38, 0x71e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7e0,0xc30,0x1818,0x1800,0x1fe0,0x1830,0x1818,0x1818,0x1c18,0x1a38,0x71e0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71c0, 0x38e0, 0x1c70, 0x1e78, 0xf3c, 0x71c, 0xf3c, 0x1e78, 0x1c70, 0x38e0, 0x71c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71c0,0x38e0,0x1c70,0x1e78,0xf3c, + 0x71c,0xf3c,0x1e78,0x1c70,0x38e0,0x71c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffc,0x7ffc,0x6000, + 0x6000,0x6000,0x6000,0x6000,0x6000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 174 - 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1830, 0x200c, 0x4004, 0x8002, 0x87f2, 0x9c31, 0x11831, 0x11831, 0x10c31, 0x107f1, 0x10331, 0x10631, 0x10631, 0x8c31, 0x8c32, 0x9832, 0x4004, 0x6008, 0x1830, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7c0,0x1830,0x200c,0x4004,0x8002,0x87f2,0x9c31,0x11831,0x11831,0x10c31,0x107f1,0x10331,0x10631, + 0x10631,0x8c31,0x8c32,0x9832,0x4004,0x6008,0x1830,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 175 - 0x0, 0x0, 0x1ffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x780, 0xfc0, 0x1ce0, 0x1860, 0x1860, 0x1ce0, 0xfc0, 0x780, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x780,0xfc0,0x1ce0,0x1860,0x1860,0x1ce0,0xfc0,0x780,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x7ffe, 0x7ffe, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x0, 0x0, 0x7ffe, 0x7ffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x180,0x180,0x180,0x180,0x180,0x180,0x7ffe,0x7ffe,0x180,0x180, + 0x180,0x180,0x180,0x180,0x0,0x0,0x7ffe,0x7ffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 178 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x660, 0xc30, 0xc00, 0xc00, 0x600, 0x700, 0x380, 0xc0, 0x60, 0x30, 0xff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x660,0xc30,0xc00,0xc00,0x600,0x700,0x380,0xc0,0x60,0x30,0xff0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 179 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1c60, 0x1830, 0x1800, 0xc00, 0x380, 0xc00, 0x1800, 0x1800, 0x1830, 0xc60, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7c0,0x1c60,0x1830,0x1800,0xc00,0x380,0xc00,0x1800,0x1800,0x1830,0xc60,0x7c0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 180 - 0x0, 0x0, 0x0, 0x0, 0xe00, 0x700, 0x380, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xe00,0x700,0x380,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xf078, 0xf8f8, 0xeff8, 0xe7b8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe038,0xe038,0xe038,0xe038,0xe038,0xe038,0xe038,0xe038, + 0xe038,0xe038,0xe038,0xe038,0xf078,0xf8f8,0xeff8,0xe7b8,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0, + 0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fe0, 0x7ff8, 0x19f8, 0x19fc, 0x19fc, 0x19fc, 0x19fc, 0x19fc, 0x19f8, 0x19e0, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x1980, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7fe0,0x7ff8,0x19f8,0x19fc,0x19fc,0x19fc,0x19fc,0x19fc,0x19f8,0x19e0,0x1980, + 0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x1980,0x0,0x0,0x0, + 0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x380,0x380, + 0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x38, 0x78, 0x60, 0x7c, 0x3c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x38,0x78,0x60,0x7c,0x3c,0x0,0x0, + 0x0, // 185 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x300, 0x3c0, 0x370, 0x300, 0x300, 0x300, 0x300, 0x300, 0x300, 0x300, 0x300, 0x1ff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x300,0x3c0,0x370,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x300,0x1ff0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 186 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1c70, 0x1830, 0x3018, 0x3018, 0x3018, 0x3018, 0x3018, 0x1830, 0x1c70, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7c0,0x1c70,0x1830,0x3018,0x3018,0x3018,0x3018,0x3018,0x1830,0x1c70,0x7c0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71c, 0xe38, 0x1c70, 0x3cf0, 0x79e0, 0x71c0, 0x79e0, 0x3cf0, 0x1c70, 0xe38, 0x71c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71c,0xe38,0x1c70,0x3cf0,0x79e0, + 0x71c0,0x79e0,0x3cf0,0x1c70,0xe38,0x71c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300c, 0x100e, 0x180d, 0x80c, 0xc0c, 0x40c, 0x60c, 0x20c, 0xe30c, 0xe10c, 0xf1bf, 0xd880, 0xc8c0, 0xcc40, 0xc660, 0x1fe20, 0xc030, 0xc010, 0xc018, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x300c,0x100e,0x180d,0x80c,0xc0c,0x40c,0x60c,0x20c,0xe30c,0xe10c,0xf1bf, + 0xd880,0xc8c0,0xcc40,0xc660,0x1fe20,0xc030,0xc010,0xc018,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300c, 0x100e, 0x180d, 0x80c, 0xc0c, 0x40c, 0x60c, 0x20c, 0xf30c, 0x19d0c, 0x18dbf, 0x18080, 0x180c0, 0xc040, 0x6060, 0x3020, 0x1830, 0xc10, 0x1fc18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x300c,0x100e,0x180d,0x80c,0xc0c,0x40c,0x60c,0x20c,0xf30c,0x19d0c,0x18dbf, + 0x18080,0x180c0,0xc040,0x6060,0x3020,0x1830,0xc10,0x1fc18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x303c, 0x1067, 0x1863, 0x860, 0xc3c, 0x43c, 0x670, 0x260, 0xe363, 0xe167, 0xf1bc, 0xd880, 0xc8c0, 0xcc40, 0xc660, 0x1fe20, 0xc030, 0xc010, 0xc018, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x303c,0x1067,0x1863,0x860,0xc3c,0x43c,0x670,0x260,0xe363,0xe167,0xf1bc, + 0xd880,0xc8c0,0xcc40,0xc660,0x1fe20,0xc030,0xc010,0xc018,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x700, 0x700, 0x700, 0x0, 0x0, 0x700, 0x700, 0x380, 0x1c0, 0xf0, 0x78, 0x38, 0x1c, 0xe01c, 0xe01c, 0x701c, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x700,0x700,0x700,0x0,0x0,0x700,0x700, + 0x380,0x1c0,0xf0,0x78,0x38,0x1c,0xe01c,0xe01c,0x701c,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0, + 0x0, // 192 - 0x0, 0x70, 0xe0, 0x1c0, 0x300, 0x0, 0x780, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xe0,0x1c0,0x300,0x0,0x780,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 193 - 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x780, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c00,0xe00,0x700,0x180,0x0,0x780,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 194 - 0x0, 0x380, 0x7c0, 0xee0, 0x1830, 0x0, 0x780, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x7c0,0xee0,0x1830,0x0,0x780,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 195 - 0x0, 0x30e0, 0x33e0, 0x1f30, 0x1c30, 0x0, 0x780, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30e0,0x33e0,0x1f30,0x1c30,0x0,0x780,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 196 - 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x780, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1860,0x1860,0x1860,0x0,0x0,0x780,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 197 - 0x0, 0x0, 0x7c0, 0xfe0, 0xc60, 0xc60, 0xfe0, 0x7c0, 0x6c0, 0xee0, 0xee0, 0xce0, 0x1c70, 0x1c70, 0x1870, 0x3838, 0x3838, 0x3038, 0x7ffc, 0x7ffc, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0x1c007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x7c0,0xfe0,0xc60,0xc60,0xfe0,0x7c0,0x6c0,0xee0,0xee0,0xce0,0x1c70,0x1c70,0x1870,0x3838,0x3838, + 0x3038,0x7ffc,0x7ffc,0x701c,0xe00e,0xe00e,0xe00e,0x1c007,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc0, 0xffc0, 0xee0, 0xee0, 0xe60, 0xe70, 0xe70, 0xe70, 0xfe38, 0xfe38, 0xe38, 0xffc, 0xffc, 0xe1c, 0xe0e, 0xe0e, 0xe0e, 0x1fe0f, 0x1fe07, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xffc0,0xffc0,0xee0,0xee0,0xe60,0xe70,0xe70,0xe70,0xfe38,0xfe38,0xe38, + 0xffc,0xffc,0xe1c,0xe0e,0xe0e,0xe0e,0x1fe07,0x1fe07,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x3878, 0x301c, 0x701c, 0x200e, 0xe, 0xe, 0xe, 0xe, 0xe, 0xe, 0xe, 0x200e, 0x701c, 0x301c, 0x3c78, 0x1ff0, 0x7c0, 0x100, 0x380, 0x780, 0x600, 0x7c0, 0x3c0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x1ff0,0x3878,0x301c,0x701c,0x200e,0xe,0xe,0xe,0xe,0xe, + 0xe,0xe,0x200e,0x701c,0x301c,0x3c78,0x1ff0,0x7c0,0x100,0x380,0x780,0x600,0x7c0,0x3c0,0x0,0x0, + 0x0, // 200 - 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe0,0x1c0,0x380,0x600,0x0,0x7ffc,0x7ffc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7ffc,0x7ffc,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 201 - 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c00,0xe00,0x700,0x180,0x0,0x7ffc,0x7ffc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7ffc,0x7ffc,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 202 - 0x0, 0x380, 0x7c0, 0xee0, 0x1830, 0x0, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x7c0,0xee0,0x1830,0x0,0x7ffc,0x7ffc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7ffc,0x7ffc,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 203 - 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7ffc, 0x7ffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1860,0x1860,0x1860,0x0,0x0,0x7ffc,0x7ffc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7ffc,0x7ffc,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 204 - 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x3ff8, 0x3ff8, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x3ff8, 0x3ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe0,0x1c0,0x380,0x600,0x0,0x3ff8,0x3ff8,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x3ff8,0x3ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 205 - 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x3ff8, 0x3ff8, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x3ff8, 0x3ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c00,0xe00,0x700,0x180,0x0,0x3ff8,0x3ff8,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x3ff8,0x3ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 206 - 0x0, 0x380, 0x7c0, 0xee0, 0x1830, 0x0, 0x3ff8, 0x3ff8, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x3ff8, 0x3ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x7c0,0xee0,0x1830,0x0,0x3ff8,0x3ff8,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x3ff8,0x3ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 207 - 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x3ff8, 0x3ff8, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x3ff8, 0x3ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1860,0x1860,0x1860,0x0,0x0,0x3ff8,0x3ff8,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x3ff8,0x3ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fc, 0x1ffc, 0x3c1c, 0x781c, 0x701c, 0x701c, 0xe01c, 0xe01c, 0xe1ff, 0xe1ff, 0xe01c, 0xe01c, 0xe01c, 0x701c, 0x701c, 0x781c, 0x3c1c, 0x1ffc, 0x7fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3fc,0x1ffc,0x3c1c,0x781c,0x701c,0x701c,0xe01c,0xe01c,0xe1ff,0xe1ff,0xe01c, + 0xe01c,0xe01c,0x701c,0x701c,0x781c,0x3c1c,0x1ffc,0x7fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 209 - 0x0, 0x30e0, 0x33e0, 0x1f30, 0x1c30, 0x0, 0x703c, 0x703c, 0x707c, 0x707c, 0x70fc, 0x70dc, 0x70dc, 0x719c, 0x719c, 0x739c, 0x731c, 0x731c, 0x761c, 0x761c, 0x7e1c, 0x7c1c, 0x7c1c, 0x781c, 0x781c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30e0,0x33e0,0x1f30,0x1c30,0x0,0x703c,0x703c,0x707c,0x707c,0x70fc,0x70dc,0x70dc,0x719c,0x719c,0x739c,0x731c, + 0x731c,0x761c,0x761c,0x7e1c,0x7c1c,0x7c1c,0x781c,0x781c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 210 - 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xf00e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe0,0x1c0,0x380,0x600,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0xf00e,0x701c,0x701c,0x3838,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 211 - 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xf00e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c00,0xe00,0x700,0x180,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0xf00e,0x701c,0x701c,0x3838,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 212 - 0x0, 0x380, 0x7c0, 0xee0, 0x1830, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xf00e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x7c0,0xee0,0x1830,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0xf00e,0x701c,0x701c,0x3838,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 213 - 0x0, 0x30e0, 0x33e0, 0x1f30, 0x1c30, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xf00e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30e0,0x33e0,0x1f30,0x1c30,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0xf00e,0x701c,0x701c,0x3838,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 214 - 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x7c0, 0x1ff0, 0x3c38, 0x701c, 0x701c, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xe00e, 0xf00e, 0x701c, 0x701c, 0x3838, 0x1ff0, 0x7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1860,0x1860,0x1860,0x0,0x0,0x7c0,0x1ff0,0x3c38,0x701c,0x701c,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e,0xe00e, + 0xe00e,0xe00e,0xf00e,0x701c,0x701c,0x3838,0x1ff0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2008, 0x701c, 0x3838, 0x1c70, 0xee0, 0x7c0, 0x380, 0x7c0, 0xee0, 0x1c70, 0x3838, 0x701c, 0x2008, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2008,0x701c,0x3838,0x1c70,0xee0,0x7c0,0x380,0x7c0, + 0xee0,0x1c70,0x3838,0x701c,0x2008,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x187c0, 0xdff0, 0x7838, 0x701c, 0x781c, 0xf80e, 0xec0e, 0xe60e, 0xe30e, 0xe38e, 0xe18e, 0xe0ce, 0xe06e, 0xf03e, 0x703c, 0x701c, 0x383c, 0x1ff6, 0x7c2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x187c0,0xdff0,0x7838,0x701c,0x781c,0xf80e,0xec0e,0xe60e,0xe30e,0xe38e,0xe18e, + 0xe0ce,0xe06e,0xf03e,0x703c,0x701c,0x383c,0x1ff6,0x7c2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 217 - 0x0, 0x70, 0xe0, 0x1c0, 0x300, 0x0, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x383c, 0x3c38, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70,0xe0,0x1c0,0x300,0x0,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x383c,0x3c38,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 218 - 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x383c, 0x3c38, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c00,0xe00,0x700,0x180,0x0,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x383c,0x3c38,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 219 - 0x0, 0x380, 0x7c0, 0xee0, 0x1830, 0x0, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x383c, 0x3c38, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x7c0,0xee0,0x1830,0x0,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x383c,0x3c38,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 220 - 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x701c, 0x383c, 0x3c38, 0x1ff0, 0xfe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1860,0x1860,0x1860,0x0,0x0,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c,0x701c, + 0x701c,0x701c,0x701c,0x701c,0x383c,0x3c38,0x1ff0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 221 - 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x1c007, 0xe00e, 0x700c, 0x701c, 0x3838, 0x3830, 0x1c70, 0xee0, 0xee0, 0x7c0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c00,0xe00,0x700,0x180,0x0,0x1c007,0xe00e,0x600c,0x701c,0x3838,0x3830,0x1c70,0xee0,0xee0,0x7c0,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x1c, 0x1c, 0xffc, 0x3ffc, 0x781c, 0xf01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0x701c, 0x781c, 0x3ffc, 0xffc, 0x1c, 0x1c, 0x1c, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x1c,0xffc,0x3ffc,0x781c,0xf01c,0xe01c,0xe01c,0xe01c,0xe01c, + 0x701c,0x781c,0x3ffc,0xffc,0x1c,0x1c,0x1c,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 223 - 0x0, 0x0, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x703c, 0x701c, 0x701c, 0x381c, 0x1c1c, 0xe1c, 0xe1c, 0xe1c, 0x1e1c, 0x7c1c, 0xf01c, 0x1e01c, 0x1c01c, 0x1c01c, 0x1c01c, 0x1e11c, 0xff1c, 0x7e1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xfc0,0x3ff0,0x7878,0x703c,0x701c,0x701c,0x381c,0x1c1c,0xe1c,0xe1c,0xe1c,0x1e1c,0x7c1c, + 0xf01c,0x1e01c,0x1c01c,0x1c01c,0x1c01c,0x1e11c,0xff1c,0x7e1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 224 - 0x0, 0x0, 0x0, 0x70, 0xe0, 0x1c0, 0x300, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x70,0xe0,0x1c0,0x300,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 225 - 0x0, 0x0, 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c00,0xe00,0x700,0x180,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 226 - 0x0, 0x0, 0x0, 0x380, 0x7c0, 0xee0, 0x1830, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x380,0x7c0,0xee0,0x1830,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 227 - 0x0, 0x0, 0x0, 0x30e0, 0x33e0, 0x1f30, 0x1c30, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x30e0,0x33e0,0x1f30,0x1c30,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 228 - 0x0, 0x0, 0x0, 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1860,0x1860,0x1860,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 229 - 0x0, 0x7c0, 0xfe0, 0xc60, 0xc60, 0xfe0, 0x7c0, 0x0, 0x0, 0x7c0, 0x1ff0, 0x1c78, 0x3838, 0x3800, 0x3800, 0x3fe0, 0x3ff8, 0x3878, 0x381c, 0x381c, 0x381c, 0x3c1c, 0x3e3c, 0xfbf8, 0xf1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c0,0xfe0,0xc60,0xc60,0xfe0,0x7c0,0x0,0x0,0x7c0,0x1ff0,0x1c78,0x3838,0x3800,0x3800,0x3fe0,0x3ff8, + 0x3878,0x381c,0x381c,0x381c,0x3c1c,0x3e3c,0xfbf8,0xf1f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3cf8, 0x7ffc, 0xe78e, 0xc78e, 0x1c380, 0x1c380, 0x1c3fc, 0x1fffe, 0x1ff8f, 0x387, 0x387, 0x387, 0x1c3c7, 0x1e7c7, 0xfe7e, 0x7c3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3cf8,0x7ffc,0xe78e,0xc78e,0x1c380,0x1c380,0x1c3fc,0x1fffe, + 0x1ff8f,0x387,0x387,0x387,0x1c3c7,0x1e7c7,0xfe7e,0x7c3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc0, 0x3fe0, 0x7070, 0xe038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe038, 0x7070, 0x3ff0, 0x1fc0, 0x200, 0x700, 0xf00, 0xc00, 0xf80, 0x780, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x3fe0,0x7070,0xe038,0x1c,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x1c,0x1c,0xe038,0x7070,0x3ff0,0x1fc0,0x200,0x700,0xf00,0xc00,0xf80,0x780,0x0,0x0, + 0x0, // 232 - 0x0, 0x0, 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x0, 0xfc0, 0x3ff0, 0x3878, 0x7038, 0x701c, 0xe01c, 0xe01c, 0xfffc, 0xfffc, 0x1c, 0x1c, 0x18, 0xe038, 0xf870, 0x7fe0, 0x1fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xe0,0x1c0,0x380,0x600,0x0,0x0,0xfc0,0x3ff0,0x3878,0x7038,0x701c,0xe01c,0xe01c,0xfffc, + 0xfffc,0x1c,0x1c,0x18,0xe038,0xf870,0x7fe0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 233 - 0x0, 0x0, 0x0, 0x3800, 0x1c00, 0xe00, 0x300, 0x0, 0x0, 0xfc0, 0x3ff0, 0x3878, 0x7038, 0x701c, 0xe01c, 0xe01c, 0xfffc, 0xfffc, 0x1c, 0x1c, 0x18, 0xe038, 0xf870, 0x7fe0, 0x1fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3800,0x1c00,0xe00,0x300,0x0,0x0,0xfc0,0x3ff0,0x3878,0x7038,0x701c,0xe01c,0xe01c,0xfffc, + 0xfffc,0x1c,0x1c,0x18,0xe038,0xf870,0x7fe0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 234 - 0x0, 0x0, 0x0, 0x700, 0xf80, 0x1dc0, 0x3060, 0x0, 0x0, 0xfc0, 0x3ff0, 0x3878, 0x7038, 0x701c, 0xe01c, 0xe01c, 0xfffc, 0xfffc, 0x1c, 0x1c, 0x18, 0xe038, 0xf870, 0x7fe0, 0x1fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x700,0xf80,0x1dc0,0x3060,0x0,0x0,0xfc0,0x3ff0,0x3878,0x7038,0x701c,0xe01c,0xe01c,0xfffc, + 0xfffc,0x1c,0x1c,0x18,0xe038,0xf870,0x7fe0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 235 - 0x0, 0x0, 0x0, 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0xfc0, 0x3ff0, 0x3878, 0x7038, 0x701c, 0xe01c, 0xe01c, 0xfffc, 0xfffc, 0x1c, 0x1c, 0x18, 0xe038, 0xf870, 0x7fe0, 0x1fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1860,0x1860,0x1860,0x0,0x0,0xfc0,0x3ff0,0x3878,0x7038,0x701c,0xe01c,0xe01c,0xfffc, + 0xfffc,0x1c,0x1c,0x18,0xe038,0xf870,0x7fe0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 236 - 0x0, 0x0, 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x0, 0x7f8, 0x7f8, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xe0,0x1c0,0x380,0x600,0x0,0x0,0x7f8,0x7f8,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 237 - 0x0, 0x0, 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x0, 0x7f8, 0x7f8, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c00,0xe00,0x700,0x180,0x0,0x0,0x7f8,0x7f8,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 238 - 0x0, 0x0, 0x0, 0x700, 0xf80, 0x1dc0, 0x3060, 0x0, 0x0, 0x7f8, 0x7f8, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x700,0xf80,0x1dc0,0x3060,0x0,0x0,0x7f8,0x7f8,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 239 - 0x0, 0x0, 0x0, 0x0, 0x30c0, 0x30c0, 0x30c0, 0x0, 0x0, 0x7f8, 0x7f8, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x30c0,0x30c0,0x30c0,0x0,0x0,0x7f8,0x7f8,0x700,0x700,0x700,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 240 - 0x0, 0x0, 0x0, 0x0, 0x10e0, 0x3fc0, 0x780, 0xff0, 0x1c20, 0x3800, 0x3800, 0x77c0, 0x7ff0, 0x7878, 0xf038, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x10e0,0x3fc0,0x780,0xff0,0x1c20,0x3800,0x3800,0x77c0,0x7ff0,0x7878,0xf038,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xe01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 241 - 0x0, 0x0, 0x0, 0x30e0, 0x33e0, 0x1f30, 0x1c30, 0x0, 0x0, 0x1f38, 0x3fb8, 0x78f8, 0x7078, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x30e0,0x33e0,0x1f30,0x1c30,0x0,0x0,0x1f38,0x3fb8,0x78f8,0x7078,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 242 - 0x0, 0x0, 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0xe03c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xe0,0x1c0,0x380,0x600,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0xe03c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xf01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 243 - 0x0, 0x0, 0x0, 0x3800, 0x1c00, 0xe00, 0x300, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0xe03c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x3800,0x1c00,0xe00,0x300,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0xe03c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xf01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 244 - 0x0, 0x0, 0x0, 0x700, 0xf80, 0x1dc0, 0x3060, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0xe03c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x700,0xf80,0x1dc0,0x3060,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0xe03c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xf01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 245 - 0x0, 0x0, 0x0, 0x30e0, 0x33e0, 0x1f30, 0x1c30, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0xe03c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x30e0,0x33e0,0x1f30,0x1c30,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0xe03c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xf01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 246 - 0x0, 0x0, 0x0, 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0xfc0, 0x3ff0, 0x7878, 0x7038, 0xe03c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xe01c, 0xf01c, 0x7038, 0x7878, 0x3ff0, 0xfc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1860,0x1860,0x1860,0x0,0x0,0xfc0,0x3ff0,0x7878,0x7038,0xe03c,0xe01c,0xe01c,0xe01c, + 0xe01c,0xe01c,0xe01c,0xf01c,0x7038,0x7878,0x3ff0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x0, 0x0, 0x0, 0x7ffe, 0x7ffe, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x180,0x180,0x180,0x0,0x0,0x0,0x7ffe,0x7ffe,0x0, + 0x0,0x0,0x180,0x180,0x180,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4fc0, 0xfff0, 0x7878, 0x7038, 0xf83c, 0xec1c, 0xe61c, 0xe31c, 0xe11c, 0xe19c, 0xe0dc, 0xf07c, 0x7038, 0x7878, 0x3ffc, 0xfc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4fc0,0xfff0,0x7878,0x7038,0xf83c,0xec1c,0xe61c,0xe31c, + 0xe11c,0xe19c,0xe0dc,0xf07c,0x7038,0x7878,0x3ffc,0xfc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 249 - 0x0, 0x0, 0x0, 0xe0, 0x1c0, 0x380, 0x600, 0x0, 0x0, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xe0,0x1c0,0x380,0x600,0x0,0x0,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7838,0x7c78,0x77f0,0x73e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 250 - 0x0, 0x0, 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x0, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c00,0xe00,0x700,0x180,0x0,0x0,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7838,0x7c78,0x77f0,0x73e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 251 - 0x0, 0x0, 0x0, 0x700, 0xf80, 0x1dc0, 0x3060, 0x0, 0x0, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x700,0xf80,0x1dc0,0x3060,0x0,0x0,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7838,0x7c78,0x77f0,0x73e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 252 - 0x0, 0x0, 0x0, 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7038, 0x7838, 0x7c78, 0x77f0, 0x73e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1860,0x1860,0x1860,0x0,0x0,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038,0x7038, + 0x7038,0x7038,0x7038,0x7038,0x7838,0x7c78,0x77f0,0x73e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0, // 253 - 0x0, 0x0, 0x0, 0x1c00, 0xe00, 0x700, 0x180, 0x0, 0x0, 0xe00e, 0xe00e, 0x600c, 0x701c, 0x3018, 0x3838, 0x3838, 0x1830, 0x1c70, 0xc60, 0xc60, 0x6e0, 0x6c0, 0x7c0, 0x380, 0x380, 0x180, 0x180, 0x1c0, 0xe0, 0x7c, 0x3c, 0x0, 0x0, 0x0, + 0x0,0x0,0x1c00,0xe00,0x700,0x180,0x0,0x0,0xe00e,0xe00e,0x600c,0x701c,0x3018,0x3838,0x3838,0x1830, + 0x1c70,0xc60,0xc60,0x6e0,0x6c0,0x7c0,0x380,0x380,0x180,0x180,0x1c0,0xe0,0x7c,0x3c,0x0,0x0, + 0x0, // 254 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1f38, 0x3fb8, 0x78f8, 0x7078, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0xe038, 0x7078, 0x78f8, 0x3fb8, 0x1f38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x1f38,0x3fb8,0x78f8,0x7078,0xe038,0xe038,0xe038,0xe038, + 0xe038,0xe038,0xe038,0xe038,0x7078,0x78f8,0x3fb8,0x1f38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0, + 0x0, // 255 - 0x0, 0x0, 0x0, 0x0, 0x1860, 0x1860, 0x1860, 0x0, 0x0, 0xe00e, 0xe00e, 0x600c, 0x701c, 0x3018, 0x3838, 0x3838, 0x1830, 0x1c70, 0xc60, 0xc60, 0x6e0, 0x6c0, 0x7c0, 0x380, 0x380, 0x180, 0x180, 0x1c0, 0xe0, 0x7c, 0x3c, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x1860,0x1860,0x1860,0x0,0x0,0xe00e,0xe00e,0x600c,0x701c,0x3018,0x3838,0x3838,0x1830, + 0x1c70,0xc60,0xc60,0x6e0,0x6c0,0x7c0,0x380,0x380,0x180,0x180,0x1c0,0xe0,0x7c,0x3c,0x0,0x0, + 0x0, }; // Font: Liberation Mono,26,-1,5,50,0,0,0,0,0 const unsigned int ff6_height = 40; -const unsigned int ff6_line_height = 39; +const unsigned int ff6_line_height = 40; const unsigned int ff6_width = 21; +const unsigned int ff6_stride = 1; const unsigned char ff6_first_char = ' '; uint32_t ff6_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 34 - 0x0, 0x0, 0x0, 0x0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1c0, 0xc0c0, 0xc0c0, 0xc0c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1c0,0xc0c0,0xc0c0,0xc0c0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30300, 0x30300, 0x18180, 0x18180, 0x18180, 0x18180, 0x18180, 0xffffc, 0xffffc, 0xc0c0, 0xc0c0, 0xe0e0, 0x6060, 0x6060, 0x7fffe, 0x7fffe, 0x3030, 0x3030, 0x3030, 0x3030, 0x3030, 0x1818, 0x1818, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x30300,0x30300,0x18180,0x18180,0x18180,0x18180,0x18180,0xffffc,0xffffc,0xc0c0, + 0xc0c0,0xe0e0,0x6060,0x6060,0x7fffe,0x7fffe,0x3030,0x3030,0x3030,0x3030,0x3030,0x1818,0x1818,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 36 - 0x0, 0x0, 0x0, 0xc00, 0xc00, 0xc00, 0x7fc0, 0x1fff0, 0x3cc78, 0x38c3c, 0x70c1c, 0x70c1c, 0xc1c, 0xc1c, 0xc38, 0xcf0, 0x1fe0, 0xff00, 0x3ec00, 0x78c00, 0xf0c00, 0xe0c00, 0xe0c0c, 0xe0c0e, 0xe0c1c, 0x70c3c, 0x7cc78, 0x3fff0, 0x7fc0, 0xc00, 0xc00, 0xc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc00,0xc00,0xc00,0x7fc0,0x1fff0,0x3cc78,0x38c3c,0x70c1c,0x70c1c,0xc1c,0xc1c,0xc38,0xcf0, + 0x1fe0,0xff00,0x3ec00,0x78c00,0xf0c00,0xe0c00,0xe0c0c,0xe0c0e,0xe0c1c,0x70c3c,0x7cc78,0x3fff0,0x7fc0,0xc00,0xc00,0xc00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c0078, 0xc01fe, 0x601ce, 0x70387, 0x38387, 0x1c387, 0xc387, 0x6387, 0x7387, 0x39ce, 0x19fe, 0x78c78, 0x1fe600, 0x1ce700, 0x187380, 0x187180, 0x1870c0, 0x1870e0, 0x187070, 0x187038, 0x1ce018, 0x1fe00c, 0x7800e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c0078,0xc01fe,0x601ce,0x70387,0x38387,0x1c387,0xc387,0x6387,0x7387,0x39ce, + 0x19fe,0x78c78,0x1fe600,0x1ce700,0x187380,0x187180,0x1870c0,0x1870e0,0x187070,0x187038,0x1ce018,0x1fe00c,0x7800e,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1c0, 0x1c0e0, 0x1c0e0, 0x1c0e0, 0xe0e0, 0xf0e0, 0x3fc0, 0xfc0, 0x303e0, 0x703f0, 0x78738, 0x3871c, 0x38e0e, 0x19c0e, 0x1fc0e, 0xf80e, 0xf00e, 0xf01c, 0x7fc3c, 0x1f9ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1c0,0x1c0e0,0x1c0e0,0x1c0e0,0xe0e0,0xf0e0,0x3fc0,0xfc0, + 0x303e0,0x703f0,0x78738,0x3871c,0x38e0e,0x19c0e,0x1fc0e,0xf80e,0xf00e,0xf01c,0x7fc3c,0x1f9ff8,0x1e07e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 39 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1c00, 0xc00, 0xc00, 0xc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1c00,0xc00,0xc00,0xc00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 40 - 0x0, 0x0, 0x0, 0x0, 0x7000, 0x3800, 0x1c00, 0x1e00, 0xe00, 0x700, 0x700, 0x380, 0x380, 0x380, 0x380, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x380, 0x380, 0x380, 0x380, 0x700, 0x700, 0xe00, 0xe00, 0x1c00, 0x3800, 0x7000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7000,0x3800,0x1c00,0x1e00,0xe00,0x700,0x700,0x380,0x380,0x380,0x380,0x1c0, + 0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x380,0x380,0x380,0x380,0x700,0x700,0xe00, + 0xe00,0x1c00,0x3800,0x7000,0x0,0x0,0x0,0x0, // 41 - 0x0, 0x0, 0x0, 0x0, 0x1c0, 0x380, 0x700, 0xf00, 0xe00, 0x1c00, 0x1c00, 0x3c00, 0x3800, 0x3800, 0x3800, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x3800, 0x3800, 0x3800, 0x3c00, 0x1c00, 0x1c00, 0xe00, 0xf00, 0x700, 0x380, 0x1c0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c0,0x380,0x700,0xf00,0xe00,0x1c00,0x1c00,0x3c00,0x3800,0x3800,0x3800,0x7000, + 0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x3800,0x3800,0x3800,0x3c00,0x1c00,0x1c00,0xe00, + 0xf00,0x700,0x380,0x1c0,0x0,0x0,0x0,0x0, // 42 - 0x0, 0x0, 0x0, 0x0, 0x600, 0x600, 0x600, 0x4620, 0xf6f0, 0x7fe0, 0x600, 0x600, 0xf00, 0x1980, 0x39c0, 0x1080, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x600,0x600,0x600,0x4620,0xf6f0,0x7fe0,0x600,0x600,0xf00,0x1980,0x39c0,0x1080, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x7fffc, 0x7fffc, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0x7fffc,0x7fffc,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x780, 0x380, 0x3c0, 0x1c0, 0x1c0, 0x1e0, 0xe0, 0xe0, 0x60, 0x70, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x780,0x380,0x3c0,0x1c0,0x1c0,0x1e0,0xe0,0xe0, + 0x60,0x70,0x30,0x0,0x0,0x0,0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fc0, 0x7fc0, 0x7fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc0,0x7fc0,0x7fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0xf00,0xf00,0xf00,0xf00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 47 - 0x0, 0x0, 0x0, 0x0, 0x70000, 0x38000, 0x38000, 0x1c000, 0x1c000, 0xe000, 0xf000, 0x7000, 0x3800, 0x3800, 0x1c00, 0x1c00, 0xe00, 0xf00, 0x700, 0x380, 0x380, 0x1c0, 0x1c0, 0xe0, 0x70, 0x70, 0x38, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x70000,0x38000,0x38000,0x1c000,0x1c000,0xe000,0xf000,0x7000,0x3800,0x3800,0x1c00,0x1c00, + 0xe00,0xf00,0x700,0x380,0x380,0x1c0,0x1c0,0xe0,0x70,0x70,0x38,0x38,0x1c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c070, 0x38038, 0x38038, 0x3001c, 0x7001c, 0x7001c, 0x7001c, 0x71f1c, 0x71f1c, 0x71f1c, 0x71f1c, 0x7001c, 0x7001c, 0x38018, 0x38038, 0x38038, 0x1c070, 0xe0f0, 0x7fe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c070,0x38038,0x38038,0x3001c,0x7001c,0x7001c,0x7001c, + 0x71f1c,0x71f1c,0x71f1c,0x71f1c,0x7001c,0x7001c,0x38018,0x38038,0x38038,0x1c070,0xe0f0,0x7fe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1e00, 0x1f00, 0x1fc0, 0x1df8, 0x1c38, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c00,0x1e00,0x1f00,0x1fc0,0x1df8,0x1c38,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x7fff8,0x7fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x3801c, 0x3801c, 0x38000, 0x3c000, 0x1c000, 0x1e000, 0xf000, 0x7800, 0x3e00, 0x1f00, 0x780, 0x3c0, 0x1e0, 0xf0, 0x78, 0x3c, 0x3fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038,0x3801c,0x3801c,0x38000,0x3c000,0x1c000, + 0x1e000,0xf000,0x7800,0x3e00,0x1f00,0x780,0x3c0,0x1e0,0xf0,0x78,0x3c,0x3fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f8, 0x3c038, 0x3801c, 0x3801c, 0x38000, 0x38000, 0x1c000, 0xf000, 0x3f00, 0x7f00, 0x1e000, 0x38000, 0x70000, 0x70000, 0x7001c, 0x7001c, 0x70038, 0x38038, 0x3e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f8,0x3c038,0x3801c,0x3801c,0x38000,0x38000,0x1c000,0xf000, + 0x3f00,0x7f00,0x1e000,0x38000,0x70000,0x70000,0x7001c,0x7001c,0x70038,0x38038,0x3e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf000, 0xf000, 0xf800, 0xfc00, 0xee00, 0xee00, 0xe700, 0xe380, 0xe180, 0xe1c0, 0xe0e0, 0xe070, 0xe070, 0xe038, 0xe01c, 0x7fffc, 0x7fffc, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf000,0xf000,0xf800,0xfc00,0xee00,0xee00,0xe700,0xe380,0xe180,0xe1c0, + 0xe0e0,0xe070,0xe070,0xe038,0xe01c,0x7fffc,0x7fffc,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff0, 0x3fff0, 0x70, 0x70, 0x38, 0x38, 0x38, 0x38, 0x3f38, 0xffb8, 0x1e0f8, 0x38078, 0x78000, 0x70000, 0x70000, 0x70000, 0x70000, 0x7001c, 0x3803c, 0x3c038, 0x1e0f8, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fff0,0x3fff0,0x70,0x70,0x38,0x38,0x38,0x38,0x3f38,0xffb8, + 0x1e0f8,0x38078,0x78000,0x70000,0x70000,0x70000,0x70000,0x7001c,0x3803c,0x3c038,0x1e0f8,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e0e0, 0x3c070, 0x38038, 0x38, 0x18, 0x1c, 0x3f1c, 0xffdc, 0x1e0fc, 0x3803c, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x70018, 0x70038, 0x38038, 0x38070, 0x1e0e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e0e0,0x3c070,0x38038,0x38,0x18,0x1c,0x3f1c,0xffdc, + 0x1e0fc,0x3803c,0x7803c,0x7001c,0x7001c,0x7001c,0x70018,0x70038,0x38038,0x38070,0x1e0e0,0xffc0,0x3f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0x38000, 0x1c000, 0xe000, 0xe000, 0x7000, 0x7000, 0x3800, 0x3800, 0x1c00, 0x1c00, 0xe00, 0xe00, 0x700, 0x700, 0x700, 0x700, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fff8,0x3fff8,0x38000,0x1c000,0xe000,0xe000,0x7000,0x7000,0x3800,0x3800, + 0x1c00,0x1c00,0xe00,0xe00,0x700,0x700,0x700,0x700,0x380,0x380,0x380,0x380,0x380,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf0f0, 0x1e078, 0x1c038, 0x1c038, 0x1c038, 0x1c038, 0xe070, 0xf0f0, 0x3fc0, 0x7fe0, 0xe070, 0x1c038, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x1c038, 0x1e078, 0xfff0, 0x3fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f80,0x7fe0,0xf0f0,0x1e078,0x1c038,0x1c038,0x1c038,0x1c038,0xe070,0xf0f0, + 0x3fc0,0x7fe0,0xe070,0x1c038,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x1c038,0x1e078,0xfff0,0x3fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x3801c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x78038, 0x78038, 0x7e0f0, 0x77fe0, 0x71f80, 0x70000, 0x30000, 0x38000, 0x38038, 0x1c078, 0xf0f0, 0x7fe0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038,0x3801c,0x7001c,0x7001c,0x7001c,0x7001c, + 0x78038,0x78038,0x7e0f0,0x77fe0,0x71f80,0x70000,0x30000,0x38000,0x38038,0x1c078,0xf0f0,0x7fe0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0xf00,0xf00,0xf00,0xf00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0xf00,0xf00,0xf00,0xf00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0xe00, 0xf00, 0x700, 0x700, 0x780, 0x380, 0x380, 0x180, 0x1c0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0xf00,0xf00,0xf00,0xf00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0xe00,0xf00,0x700,0x700,0x780,0x380,0x380, + 0x180,0x1c0,0xc0,0x0,0x0,0x0,0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000, 0x78000, 0x7f000, 0x3fe00, 0x7f80, 0xff0, 0x3fc, 0x7c, 0xc, 0x7c, 0x3fc, 0xff0, 0x7f80, 0x3fe00, 0x7f000, 0x78000, 0x40000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40000,0x78000,0x7f000,0x3fe00,0x7f80,0xff0,0x3fc, + 0x7c,0xc,0x7c,0x3fc,0xff0,0x7f80,0x3fe00,0x7f000,0x78000,0x40000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffc,0x7fffc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffc,0x7fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x3c, 0x1fc, 0xff8, 0x3fc0, 0x1fe00, 0x7f800, 0x7c000, 0x60000, 0x7c000, 0x7f800, 0x1fe00, 0x3fc0, 0xff8, 0x1fc, 0x3c, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3c,0x1fc,0xff8,0x3fc0,0x1fe00,0x7f800, + 0x7c000,0x60000,0x7c000,0x7f800,0x1fe00,0x3fc0,0xff8,0x1fc,0x3c,0x4,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1fff0, 0x1e0f8, 0x3c038, 0x3801c, 0x3801c, 0x38000, 0x38000, 0x1c000, 0xe000, 0x7000, 0x3c00, 0x1e00, 0xe00, 0x700, 0x700, 0x0, 0x0, 0x0, 0x700, 0x700, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1fff0,0x1e0f8,0x3c038,0x3801c,0x3801c,0x38000,0x38000,0x1c000, + 0xe000,0x7000,0x3c00,0x1e00,0xe00,0x700,0x700,0x0,0x0,0x0,0x700,0x700,0x700,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 64 - 0x0, 0x0, 0x0, 0x0, 0x3e00, 0xff80, 0x1c1e0, 0x38060, 0x30030, 0x60038, 0x79e18, 0x7bf1c, 0xda38c, 0xde18c, 0xdc0cc, 0xcc0c6, 0xce0e6, 0xce066, 0xce066, 0xce066, 0xc6066, 0xc7066, 0x67066, 0x67866, 0x67cc6, 0x3efcc, 0x1c78c, 0xc, 0x1c, 0x10018, 0x38030, 0x1e0f0, 0xffc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3e00,0xff80,0x1c1e0,0x38060,0x30030,0x60038,0x79e18,0x7bf1c,0xda38c,0xde18c,0xdc0cc,0xcc0c6, + 0xce0e6,0xce066,0xce066,0xce066,0xc6066,0xc7066,0x67066,0x67866,0x67cc6,0x3efcc,0x1c78c,0xc,0x1c,0x10018,0x38030,0x1e0f0, + 0xffc0,0x1f80,0x0,0x0,0x0,0x0,0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ff8, 0xfff8, 0x1e038, 0x3c038, 0x38038, 0x38038, 0x38038, 0x38038, 0x1c038, 0xe038, 0x7ff8, 0xfff8, 0x1e038, 0x38038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38038, 0x3c038, 0x1fff8, 0x3ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3ff8,0xfff8,0x1e038,0x3c038,0x38038,0x38038,0x38038,0x38038,0x1c038,0xe038, + 0x7ff8,0xfff8,0x1e038,0x38038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38038,0x3c038,0x1fff8,0x3ff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffc0, 0x3c1e0, 0x78070, 0x70038, 0xf0038, 0x20038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x20038, 0xf0038, 0x70038, 0x78070, 0x3e1e0, 0x1ffc0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f00,0x1ffc0,0x3c1e0,0x78070,0x70038,0xf0038,0x20038,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x20038,0xf0038,0x70038,0x78070,0x3e1e0,0x1ffc0,0x7f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff8, 0x7ff8, 0xf838, 0x1e038, 0x3c038, 0x38038, 0x38038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38038, 0x38038, 0x1c038, 0x1e038, 0xf038, 0x7ff8, 0x1ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff8,0x7ff8,0xf838,0x1e038,0x3c038,0x38038,0x38038,0x70038,0x70038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38038,0x38038,0x1c038,0x1e038,0xf038,0x7ff8,0x1ff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1fff8, 0x1fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x1fff8,0x1fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7fff8,0x7fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e0e0, 0x3c070, 0x38038, 0x78038, 0x10038, 0x1c, 0x1c, 0x1c, 0x1c, 0x7f81c, 0x7f81c, 0x7001c, 0x7001c, 0x7001c, 0x70038, 0x70038, 0x70078, 0x70070, 0x7c1e0, 0x1ffc0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e0e0,0x3c070,0x38038,0x78038,0x10038,0x1c,0x1c,0x1c, + 0x1c,0x7f81c,0x7f81c,0x7001c,0x7001c,0x7001c,0x70038,0x70038,0x70078,0x70070,0x7c1e0,0x1ffc0,0x7f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3fff8, 0x3fff8, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x3fff8,0x3fff8,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff0, 0x1fff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1fff0, 0x1fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fff0,0x1fff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x1fff0,0x1fff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff00, 0x1ff00, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c038, 0x1c038, 0x1c070, 0xe070, 0xf0f0, 0x7fe0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0x1ff00,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000, + 0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c038,0x1c038,0x1c070,0xe070,0xf0f0,0x7fe0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0038, 0x78038, 0x3c038, 0x1e038, 0xf038, 0x7838, 0x3c38, 0x1c38, 0xe38, 0x738, 0xfb8, 0xff8, 0x1ef8, 0x3cf8, 0x7878, 0x7038, 0xf038, 0x1e038, 0x3c038, 0x78038, 0x78038, 0xf0038, 0x1e0038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf0038,0x78038,0x3c038,0x1e038,0xf038,0x7838,0x3c38,0x1c38,0xe38,0x738, + 0xfb8,0xff8,0x1ef8,0x3c78,0x7878,0xf038,0xf038,0x1e038,0x3c038,0x78038,0x78038,0xf0038,0x1e0038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x7fff0, 0x7fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70, + 0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x7fff0,0x7fff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7807c, 0x7c07c, 0x7c07c, 0x7c0fc, 0x7e0fc, 0x760dc, 0x771dc, 0x771dc, 0x7339c, 0x73b9c, 0x71b1c, 0x71f1c, 0x71f1c, 0x70e1c, 0x70e1c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7807c,0x7c07c,0x7c07c,0x7c0fc,0x7e0fc,0x760dc,0x771dc,0x771dc,0x7339c,0x73b9c, + 0x71b1c,0x71f1c,0x71f1c,0x70e1c,0x70e1c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38078, 0x380f8, 0x380f8, 0x380f8, 0x381f8, 0x381f8, 0x383b8, 0x383b8, 0x38738, 0x38738, 0x38638, 0x38e38, 0x38e38, 0x39c38, 0x39c38, 0x3b838, 0x3b838, 0x3b038, 0x3f038, 0x3f038, 0x3e038, 0x3e038, 0x3c038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x38078,0x380f8,0x380f8,0x380f8,0x381f8,0x381f8,0x383b8,0x383b8,0x38738,0x38738, + 0x38638,0x38e38,0x38e38,0x39c38,0x39c38,0x3b838,0x3b838,0x3b038,0x3f038,0x3f038,0x3e038,0x3e038,0x3c038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ff8, 0xfff8, 0x3e038, 0x38038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x78038, 0x38038, 0x1e038, 0xfff8, 0x3ff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3ff8,0xfff8,0x3e038,0x38038,0x70038,0x70038,0x70038,0x70038,0x70038,0x78038, + 0x38038,0x1e038,0xfff8,0x3ff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0x1e0e0, 0xffc0, 0x3f00, 0x1c00, 0x1c00, 0x3800, 0x3800, 0x7000, 0x7e000, 0x7c000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0x1e0e0,0xffc0,0x3f00,0x1c00,0x1c00,0x3800, + 0x3800,0x7000,0x7e000,0x7c000,0x0,0x0,0x0,0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x1fff8, 0x3c038, 0x38038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38038, 0x1c038, 0xfff8, 0x3ff8, 0x3c38, 0x3838, 0x7838, 0xf038, 0xe038, 0x1e038, 0x3c038, 0x78038, 0x70038, 0xf0038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8,0x1fff8,0x3c038,0x38038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38038, + 0x1c038,0xfff8,0x3ff8,0x3c38,0x3838,0x7838,0xf038,0xe038,0x1e038,0x3c038,0x78038,0x70038,0xf0038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fc0, 0xfff0, 0x1f078, 0x1c03c, 0x3801c, 0x3801c, 0x1c, 0x1c, 0x78, 0x3f8, 0x3fe0, 0xff80, 0x1f800, 0x3c000, 0x78000, 0x70000, 0x7000c, 0x7000e, 0x7001c, 0x3803c, 0x3e078, 0xfff0, 0x3fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0xfff0,0x1f078,0x1c03c,0x3801c,0x3801c,0x1c,0x1c,0x78,0x3f8, + 0x3fe0,0xff80,0x1f800,0x3c000,0x78000,0x70000,0x7000c,0x7000e,0x7001c,0x3803c,0x3e078,0xfff0,0x3fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffe, 0xffffe, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffe,0xffffe,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x1c070, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x1c070,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c0007, 0xe000e, 0xe000e, 0xf000e, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0x1c070, 0xe0e0, 0xe0e0, 0xe0e0, 0x71c0, 0x71c0, 0x3180, 0x3b80, 0x3b80, 0x1b00, 0x1f00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c0007,0xe000e,0xe000e,0xf000e,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070, + 0x1c070,0xe0e0,0xe0e0,0xe0e0,0x71c0,0x71c0,0x3180,0x3b80,0x3b80,0x1b00,0x1f00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c0007, 0x1c0007, 0x1c0007, 0xe000e, 0xe000e, 0xe000e, 0xe000e, 0xe0e0e, 0xe0e0e, 0x61e0c, 0x61b1c, 0x71b1c, 0x71b1c, 0x73b9c, 0x7319c, 0x33198, 0x33198, 0x371d8, 0x360d8, 0x3e0f8, 0x3e0f8, 0x1c070, 0x1c070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c0007,0x1c0007,0x1c0007,0xe000e,0xe000e,0xe000e,0xe000e,0xe0e0e,0xe0e0e,0x61e0c, + 0x61b1c,0x71b1c,0x71b1c,0x73b9c,0x7319c,0x33198,0x33198,0x371d8,0x360d8,0x3e0f8,0x3e0f8,0x1c070,0x1c070,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7803c, 0x38038, 0x1c070, 0x1e0f0, 0xe0e0, 0xf1e0, 0x71c0, 0x3b80, 0x3f80, 0x1f00, 0xe00, 0x1f00, 0x1f00, 0x3b80, 0x7bc0, 0x71c0, 0xe0e0, 0xe0f0, 0x1c070, 0x3c078, 0x38038, 0x7001c, 0xf001e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7803c,0x38038,0x1c070,0x1e0f0,0xe0e0,0xf1e0,0x71c0,0x3b80,0x3f80,0x1f00, + 0xe00,0x1f00,0x1f00,0x3b80,0x7bc0,0x71c0,0xe0e0,0xe0f0,0x1c070,0x3c078,0x38038,0x7001c,0xf001e,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf001e, 0x7001c, 0x38038, 0x3c078, 0x1c070, 0x1e0f0, 0xe0e0, 0x71c0, 0x71c0, 0x3b80, 0x3f80, 0x1f00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf001e,0x7001c,0x38038,0x3c078,0x1c070,0x1e0f0,0xe0e0,0x71c0,0x71c0,0x3b80, + 0x3f80,0x1f00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x38000, 0x3c000, 0x1e000, 0xe000, 0xf000, 0x7800, 0x3c00, 0x1c00, 0x1e00, 0xf00, 0x780, 0x380, 0x3c0, 0x1e0, 0xf0, 0xf0, 0x78, 0x3c, 0x1c, 0xffffe, 0xffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fffc,0x7fffc,0x38000,0x3c000,0x1e000,0xe000,0xf000,0x7800,0x3c00,0x1c00, + 0x1e00,0xf00,0x780,0x380,0x3c0,0x1e0,0xe0,0xf0,0x78,0x3c,0x1c,0xffffe,0xffffe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 91 - 0x0, 0x0, 0x0, 0x0, 0xff80, 0xff80, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0xff80, 0xff80, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xff80,0xff80,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0xff80,0xff80,0x0,0x0,0x0,0x0, // 92 - 0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x38, 0x70, 0x70, 0xe0, 0x1e0, 0x1c0, 0x380, 0x380, 0x700, 0x700, 0xe00, 0x1c00, 0x1c00, 0x3800, 0x3800, 0x7000, 0x7000, 0xe000, 0x1c000, 0x1c000, 0x38000, 0x38000, 0x70000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c,0x38,0x38,0x70,0x70,0xe0,0x1e0,0x1c0,0x380,0x380,0x700,0x700, + 0xe00,0x1c00,0x1c00,0x3800,0x3800,0x7000,0x7000,0xe000,0x1c000,0x1c000,0x38000,0x38000,0x70000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 93 - 0x0, 0x0, 0x0, 0x0, 0x3fe0, 0x3fe0, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3fe0, 0x3fe0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3fe0,0x3fe0,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3fe0,0x3fe0,0x0,0x0,0x0,0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0x1f00, 0x1b00, 0x3b80, 0x3180, 0x71c0, 0x60c0, 0xe0e0, 0xc060, 0x1c070, 0x18030, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0x1f00,0x1b00,0x3b80,0x3180,0x71c0,0x60c0,0xe0e0,0xc060,0x1c070, + 0x18030,0x38038,0x38038,0x7001c,0x7001c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fffff, 0x1fffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffff, + 0x1fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 96 - 0x0, 0x0, 0x0, 0x0, 0x780, 0xf00, 0x1c00, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x780,0xf00,0x1c00,0x3800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 98 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3e38, 0xffb8, 0x1e1f8, 0x1c078, 0x1c078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x1c078, 0x1c078, 0xe0f8, 0xffb8, 0x3e38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x3e38,0xffb8,0x1e1f8,0x1c078,0x1c078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x1c078,0x1c078,0xe0f8,0xffb8,0x3e38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x70038, 0x7001c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7001c, 0x70038, 0x38078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x70038, + 0x7001c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7001c,0x70038,0x38078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 100 - 0x0, 0x0, 0x0, 0x0, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38fc0, 0x3bff0, 0x3f070, 0x3c038, 0x3c038, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3c038, 0x3e038, 0x3b078, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38000,0x38000,0x38000,0x38000,0x38000,0x38000,0x38000,0x38fc0,0x3bff0,0x3f070,0x3c038,0x3c038, + 0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3c038,0x3e038,0x3b078,0x3bff0,0x38fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7fffc, 0x7fffc, 0x1c, 0x1c, 0x1c, 0x3c, 0x18038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x38038, + 0x7001c,0x7001c,0x7fffc,0x7fffc,0x1c,0x1c,0x1c,0x3c,0x18038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 102 - 0x0, 0x0, 0x0, 0x0, 0x7f800, 0x7fc00, 0x1e00, 0xf00, 0x700, 0x700, 0x700, 0x7fff0, 0x7fff0, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7f800,0x7fc00,0x1e00,0xf00,0x700,0x700,0x700,0x7fff0,0x7fff0,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38fc0, 0x39ff0, 0x3b070, 0x3e038, 0x3c038, 0x3c01c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3c01c, 0x3c038, 0x3e038, 0x3b078, 0x39ff0, 0x38fc0, 0x38000, 0x38000, 0x3c038, 0x1c038, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38fc0,0x39ff0,0x3b070,0x3e038,0x3c038, + 0x3c01c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3c01c,0x3c038,0x3e038,0x3b078,0x39ff0,0x38fc0,0x38000,0x38000,0x3c038, + 0x1c038,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0,0x0, // 104 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7e38, 0xffb8, 0x1e1b8, 0x3c078, 0x38078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7e38,0xffb8,0x1e1b8,0x3c078,0x38078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 105 - 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 106 - 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3800, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x3ff0, 0x3ff0, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x1c00, 0x1e00, 0xffc, 0x3fc, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3800,0x3800,0x3800,0x0,0x0,0x0,0x0,0x3ff0,0x3ff0,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800, + 0x1c00,0x1e00,0xffc,0x3fc,0x0,0x0,0x0,0x0, // 107 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x78038, 0x3c038, 0x1e038, 0x7038, 0x3838, 0x1c38, 0xf38, 0x7b8, 0x7f8, 0xff8, 0x1e78, 0x3c38, 0x7838, 0xf038, 0xe038, 0x1c038, 0x3c038, 0x78038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x78038,0x3c038,0x1e038,0x7038,0x3838, + 0x1c38,0xf38,0x7b8,0x7f8,0xff8,0x1e78,0x3c38,0x7838,0xf038,0xe038,0x1c038,0x3c038,0x78038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 108 - 0x0, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x7fffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x7fffc,0x7fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e3dc, 0x3f7fc, 0x7973c, 0x71e3c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x70e1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e3dc,0x3f7fc,0x7973c,0x71e3c,0x70e1c, + 0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x70e1c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e38, 0xffb8, 0x1e1b8, 0x3c078, 0x38078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e38,0xffb8,0x1e1b8,0x3c078,0x38078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x38038, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e38, 0xffb8, 0x1e1b8, 0x1c078, 0x1c078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x1c078, 0x1c078, 0x1e0f8, 0xffb8, 0x3e38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e38,0xffb8,0x1e1b8,0x1c078,0x1c078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x1c078,0x1c078,0x1e0f8,0xffb8,0x3e38,0x38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38fc0, 0x3bff0, 0x3f070, 0x3c038, 0x3c038, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3c038, 0x3e038, 0x3b070, 0x3bff0, 0x38fc0, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38fc0,0x3bff0,0x3f070,0x3c038,0x3c038, + 0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3c038,0x3e038,0x3b070,0x3bff0,0x38fc0,0x38000,0x38000,0x38000, + 0x38000,0x38000,0x38000,0x38000,0x0,0x0,0x0,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f060, 0x3fc60, 0x3fee0, 0xfe0, 0x3e0, 0x1e0, 0x1e0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f060,0x3fc60,0x3fee0,0xfe0,0x3e0, + 0x1e0,0x1e0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e0e0, 0x38070, 0x38070, 0x70, 0xf0, 0x7e0, 0x7fc0, 0xff00, 0x1f000, 0x3c000, 0x38000, 0x38038, 0x38078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e0e0,0x38070,0x38070, + 0x70,0xf0,0x7e0,0x7fc0,0xff00,0x1f000,0x3c000,0x38000,0x38038,0x38078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300, 0x300, 0x380, 0x380, 0x380, 0x1fff0, 0x1fff0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x780, 0x3ff00, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x300,0x300,0x380,0x380,0x380,0x1fff0,0x1fff0,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x780,0x3ff00,0x1fe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b070, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b070,0x3bff0,0x38fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf000e, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1c070, 0x1e070, 0xe0e0, 0xe0e0, 0x71c0, 0x71c0, 0x3980, 0x3b80, 0x3b80, 0x1f00, 0x1f00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf000e,0x7001c,0x7001c,0x38038,0x38038, + 0x3c078,0x1c070,0x1e070,0xe0e0,0xe0e0,0x71c0,0x71c0,0x3980,0x3b80,0x3b80,0x1f00,0x1f00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c0007, 0x1c0007, 0x1e0007, 0xe000e, 0xe000e, 0xe0e0e, 0xe0f0e, 0xe1b0e, 0x71b0c, 0x73b9c, 0x7319c, 0x7319c, 0x771dc, 0x360dc, 0x360d8, 0x3e078, 0x3c078, 0x3c078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c0007,0x1c0007,0x1e0007,0xe000e,0xe000e, + 0xe0e0e,0xe0f0e,0xe1b0e,0x71b0c,0x73b9c,0x7319c,0x7319c,0x771dc,0x360dc,0x360d8,0x3e0f8,0x3c078,0x3c078,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7803c, 0x3c078, 0x1e070, 0xe0e0, 0xf1e0, 0x79c0, 0x3b80, 0x1f00, 0xf00, 0x1f00, 0x1f80, 0x3b80, 0x71c0, 0xf1e0, 0xe0e0, 0x1c070, 0x3c078, 0x7803c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7803c,0x3c078,0x1e070,0xe0e0,0xf1e0, + 0x79c0,0x3b80,0x1f00,0xf00,0x1f00,0x1f80,0x3b80,0x71c0,0xf1e0,0xe0e0,0x1c070,0x3c038,0x7803c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe000e, 0xf001e, 0x7001c, 0x7003c, 0x38038, 0x38078, 0x1c070, 0x1c0f0, 0x1e0e0, 0xe0e0, 0xe1c0, 0x71c0, 0x7380, 0x3b80, 0x3f00, 0x1f00, 0x1e00, 0x1e00, 0xe00, 0xe00, 0x700, 0x700, 0x3c0, 0x1f8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000e,0xf001e,0x7001c,0x7003c,0x38038, + 0x38078,0x1c070,0x1c0f0,0x1c0e0,0xe0e0,0xe1c0,0x71c0,0x7380,0x3b80,0x3f00,0x1f00,0x1e00,0x1e00,0xe00,0xe00,0x700, + 0x700,0x3c0,0x1f8,0xf8,0x0,0x0,0x0,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff0, 0x3fff0, 0x3c000, 0x1e000, 0xf000, 0x7800, 0x3800, 0x3c00, 0x1e00, 0xf00, 0x780, 0x380, 0x3c0, 0x1e0, 0xf0, 0x78, 0x3fff8, 0x3fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fff0,0x3fff0,0x3c000,0x1e000,0xf000, + 0x7800,0x3800,0x3c00,0x1e00,0xf00,0x780,0x380,0x3c0,0x1e0,0xf0,0x78,0x3fff8,0x3fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 123 - 0x0, 0x0, 0x0, 0x0, 0x3f000, 0x3fc00, 0x1c00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x700, 0x780, 0x1f0, 0x1f0, 0x780, 0x700, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1c00, 0x3fc00, 0x3f000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f000,0x3fc00,0x1c00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0x700,0x780,0x1f0,0x1f0,0x780,0x700,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0x1c00,0x3fc00,0x3f000,0x0,0x0,0x0,0x0, // 124 - 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0, // 125 - 0x0, 0x0, 0x0, 0x0, 0x3f8, 0xff8, 0xe00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x3800, 0x7800, 0x3e000, 0x3e000, 0x7800, 0x3800, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xe00, 0xff8, 0x3f8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f8,0xff8,0xe00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x3800,0x7800,0x3e000,0x3e000,0x7800,0x3800,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0xe00,0xff8,0x3f8,0x0,0x0,0x0,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x60ffc, 0x7fe0c, 0x3f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f0,0x60ffc,0x7fe0c,0x3f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 127 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fe, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x3fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x12eaba,0x1c5eba,0x1e10ba,0xa2082,0xf31aa,0x159654,0x173400,0xc6282,0x14874c,0x7ded2,0x109c3e,0x6509e,0x140c60,0x3be6,0x26ffa,0x1840fa, + 0x18e21c,0x331c8,0x25088,0x72fe4,0x39600,0xa78fe,0x100182,0x178c92,0x3e8ba,0x1ff0ba,0xa64ba,0x24082,0x8ddfe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff, 0x7fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x1d8, 0x18c, 0x306, 0x202, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0, + 0x1e0,0x1e0,0x1e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 130 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fe, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x3fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1ffc,0x1b68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 131 - 0x0, 0x70e00, 0x70e00, 0x60e00, 0x0, 0x0, 0x1007fe, 0xf0, 0x1e0, 0x1c0, 0x1003c0, 0x100780, 0x80700, 0xc0f00, 0x41e00, 0x21c00, 0x23c00, 0x17800, 0x1f000, 0xf000, 0x6000, 0xf000, 0x6000, 0xf000, 0xe000, 0x7000, 0xe000, 0xf000, 0x7fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1020, 0x7870, 0x78f0, 0x78f0, 0x80, 0x4080, 0x4000, 0x2040, 0x2020, 0x1020, 0x800, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x81020, 0x1c3870, 0x1e38f0, 0x1c3870, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x1c0, 0x180, 0x180, 0x80, 0x180, 0x80, 0x80, 0x1ebc, 0x1dbc, 0x80, 0x80, 0x180, 0x180, 0x1c0, 0x180, 0x1c0, 0x180, 0x1c0, 0x180, 0x1c0, 0x80, 0x180, 0x1c0, 0x80, 0x180, 0x180, 0x80, 0x180, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x1c0, 0x180, 0x80, 0x180, 0x80, 0x1cbc, 0x1fbc, 0x80, 0x80, 0x80, 0x180, 0x1c0, 0x180, 0x1c0, 0x180, 0x1c0, 0x80, 0x180, 0x80, 0x180, 0x80, 0x1efc, 0x1ebc, 0x80, 0x80, 0x180, 0x180, 0x1c0, 0x180, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 136 - 0x3000, 0x7c00, 0x1c600, 0x30100, 0x0, 0x0, 0x1ffffc, 0x1801e0, 0x1e0, 0xc0, 0x1e0, 0xc0, 0x101e0, 0x181c0, 0x100e0, 0x1c1e0, 0xffc0, 0x1c1e0, 0x100c0, 0x101e0, 0x101c0, 0xe0, 0x1c0, 0x1e0, 0xe0, 0x1c0, 0xe0, 0x1c01e0, 0x1ffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 137 - 0x0, 0x0, 0x0, 0x1c0, 0x230, 0xc18, 0x101818, 0xfc80c, 0x80c, 0x10080c, 0x18000c, 0x8080c, 0x40818, 0x60818, 0x30418, 0x18230, 0x81c0, 0xc000, 0x106000, 0x182000, 0xc3000, 0xc1800, 0xc0800, 0xc0c00, 0xc0600, 0xc0300, 0xc0100, 0xc0180, 0x1800c0, 0x100060, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 138 - 0x60c0, 0x3b80, 0xe00, 0x400, 0x0, 0x21f80, 0x33060, 0x3c030, 0x18018, 0x30018, 0x30018, 0x1001c, 0x20018, 0x38, 0xf8, 0x17f0, 0x7ff0, 0xffc0, 0x1fe00, 0x3e000, 0x38000, 0x70000, 0x70004, 0x30008, 0x6000c, 0x30008, 0x3001c, 0x18038, 0xe1cc, 0x3f08, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x20f80, 0x33060, 0x1c030, 0x38018, 0x30018, 0x10018, 0x3001c, 0x20018, 0x38, 0xf8, 0x17f0, 0x7ff0, 0xffc0, 0x1fe00, 0x3c000, 0x38000, 0x70000, 0x70004, 0x30008, 0x7000c, 0x30008, 0x3001c, 0x18038, 0xe1cc, 0x3f08, 0x0, 0x400, 0xe00, 0xe00, 0x0, 0x800, 0x800, 0x400, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 140 - 0x7800, 0x1c00, 0x600, 0x100, 0x0, 0x20f80, 0x33060, 0x3c030, 0x18018, 0x30018, 0x30018, 0x1001c, 0x20018, 0x38, 0xf8, 0x7f0, 0x7ff0, 0xffc0, 0x1fe00, 0x3e000, 0x38000, 0x70000, 0x70004, 0x30008, 0x7000c, 0x30008, 0x1001c, 0x18038, 0xe1cc, 0x3f08, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 141 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f000, 0x1c0e00, 0x1c0300, 0x180380, 0x1801c0, 0x1800e0, 0x1800f0, 0x180070, 0x180070, 0x180078, 0x180038, 0x180078, 0x180038, 0x180078, 0x180038, 0x180078, 0x180070, 0x180070, 0x1800f0, 0x1800e0, 0x1801c0, 0x180380, 0x1c0700, 0x1c0e00, 0x3f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10000, 0x1801c, 0x1c01c, 0xe038, 0x7070, 0x38e0, 0x1fc0, 0xf80, 0xf80, 0xf80, 0x1dc0, 0x78e0, 0x7070, 0xe038, 0x3c01c, 0x1800e, 0x10000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x200, 0x700, 0xf00, 0x700, 0x0, 0x0, 0x0, 0x0, 0x3fffe, 0x3fffe, 0x10840, 0x0, 0x0, 0x0, 0x200, 0xf00, 0x780, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x20, 0x10, 0x0, 0x8, 0x78, 0x78, 0x70, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0xf0, 0xa0, 0x80, 0x80, 0x40, 0x40, 0x20, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2040, 0x1020, 0x810, 0x0, 0x408, 0x3c78, 0x3878, 0x3c70, 0x1020, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3870, 0x3870, 0x78f0, 0x50a0, 0x4080, 0x4080, 0x40, 0x2040, 0x1020, 0x1010, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f000, 0x7fc00, 0xffe00, 0xffe00, 0x1ffe00, 0x1fff00, 0x1fff00, 0x1ffe00, 0xffe00, 0xffc00, 0x7fc00, 0x1f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 152 - 0x0, 0x0, 0x200, 0x700, 0xd80, 0x1880, 0x3060, 0x4020, 0x0, 0x0, 0x0, 0x1fffc, 0x18070, 0x10030, 0x10070, 0x10030, 0x21070, 0x1070, 0x1830, 0xff0, 0x1870, 0x1030, 0x21070, 0x20030, 0x20070, 0x20030, 0x30070, 0x18070, 0x3fffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20000, 0x60000, 0x40000, 0xc0000, 0x180000, 0x180000, 0x1e0000, 0x138000, 0x10f000, 0x1e00, 0x1003c0, 0x78, 0x38, 0x1f0, 0x100f80, 0x107c00, 0x13e000, 0x1f0000, 0x180000, 0x180000, 0x80000, 0xc0000, 0x40000, 0x60000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 154 - 0x0, 0x0, 0x0, 0x1008, 0xc30, 0x660, 0x3c0, 0x180, 0x0, 0x0, 0x0, 0x13e0, 0x1c18, 0x180c, 0x1004, 0x300c, 0x100c, 0x1c, 0x1f8, 0xff8, 0x1fc0, 0x1c00, 0x3000, 0x3004, 0x3004, 0x3004, 0x100c, 0x183e, 0x7c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11e0, 0x1c18, 0x1808, 0x300c, 0x100c, 0x100c, 0x1c, 0xf8, 0xff8, 0x1fc0, 0x3c00, 0x3800, 0x3004, 0x3004, 0x1004, 0x100c, 0x183e, 0x7c4, 0x0, 0x0, 0x180, 0x1c0, 0x280, 0x0, 0x100, 0x0, 0x80, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 156 - 0x0, 0x0, 0xc00, 0xc00, 0xe00, 0x700, 0x180, 0xc0, 0x40, 0x0, 0x0, 0x11e0, 0x1c18, 0x180c, 0x3004, 0x100c, 0x100c, 0x1c, 0x2f8, 0xff8, 0x1fc0, 0x1c00, 0x3000, 0x3004, 0x3004, 0x3004, 0x100c, 0x183e, 0x7c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff00, 0x1c0c0, 0x1c060, 0xc070, 0x18038, 0x1c018, 0x8018, 0x1c01c, 0x1f801c, 0x1c01c, 0x1801c, 0xc038, 0x1c038, 0x18038, 0x1c070, 0xc060, 0x1c1c0, 0x1fff00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 158 - 0x0, 0x0, 0x2000, 0x1030, 0xc60, 0x6c0, 0x380, 0x100, 0x0, 0x0, 0x0, 0xfffc, 0x7018, 0x300c, 0x3804, 0x1c04, 0xe04, 0xe00, 0x700, 0x380, 0x380, 0x1c0, 0x80c0, 0x80e0, 0xc070, 0x4070, 0xc038, 0x701c, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 159 - 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x600, 0x300, 0x180, 0x0, 0x0, 0x0, 0xfffc, 0x7018, 0x300c, 0x3804, 0x1c04, 0x1e04, 0xe00, 0x700, 0x380, 0x380, 0x1c0, 0x80c0, 0x80e0, 0x4070, 0xc070, 0x4038, 0xf01c, 0x7ffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0, + 0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0x0,0x0,0x0,0x0,0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x7f00, 0x1ffc0, 0x3e0f0, 0x38070, 0x70038, 0x70038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x70038, 0x78038, 0x38078, 0x3e0f0, 0x1ffe0, 0x7f80, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x600,0x600,0x600,0x3f80,0xffe0,0x1e6f0,0x1c638,0x38638,0x61c,0x61c, + 0x61c,0x61c,0x61c,0x61c,0x61c,0x3861c,0x38638,0x1c638,0x1e6f0,0x7fe0,0x1f80,0x600,0x600,0x600,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0xff80, 0x1e3c0, 0x3c1c0, 0x180e0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x3ffc, 0x3ffc, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe00e0, 0xe0070, 0x70038, 0x7fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0xff80,0x1e3c0,0x3c1c0,0x180e0,0xe0,0xe0,0xe0,0xe0,0xe0, + 0xe0,0x3ffc,0x3ffc,0xe0,0xe0,0xe0,0xe0,0xe0,0xe00e0,0xe0070,0x70038,0x7fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11f10, 0x3fff8, 0x1fff0, 0x1f1f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x1c070, 0x1e0f0, 0x1fff0, 0x3fff8, 0x11f10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11f10,0x3fff8,0x1fff0,0x1f1f0,0x1c070,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x1c070,0x1e0f0,0x1fff0,0x3fff8,0x11f10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf001e, 0x7001c, 0x38038, 0x3c078, 0x1c070, 0x1e0f0, 0xe0e0, 0x71c0, 0x7bc0, 0x3b80, 0x1f00, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf001e,0x7001c,0x38038,0x3c078,0x1c070,0x1e0f0,0xe0e0,0x71c0,0x7bc0,0x3b80, + 0x1f00,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 166 - 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0, // 167 - 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffc0, 0x3c1e0, 0x78070, 0x70070, 0x70, 0xf0, 0x3e0, 0x3fc0, 0xff80, 0x3f1e0, 0x3c0e0, 0x70070, 0x70070, 0x70070, 0x700f0, 0x3c3e0, 0x1ffc0, 0xff00, 0x3f000, 0x3c000, 0x70000, 0x70000, 0x70038, 0x78078, 0x3c0f0, 0x1ffe0, 0x7f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7f00,0x1ffc0,0x3c1e0,0x78070,0x70070,0x70,0xf0,0x3e0,0x3fc0,0xff80,0x3f1e0,0x3c0e0, + 0x70070,0x70070,0x70070,0x700f0,0x3c3e0,0x1ffc0,0xff00,0x3f000,0x3c000,0x70000,0x70000,0x70038,0x78078,0x3c0f0,0x1ffe0,0x7f80, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 168 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 169 - 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x30018, 0x71f1c, 0x63f8c, 0x671cc, 0xc60c6, 0xc0066, 0xc0066, 0xc0066, 0xc0066, 0xc0066, 0xc0066, 0xc0066, 0xc60c6, 0x671cc, 0x63f8c, 0x71f0c, 0x30018, 0x38038, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x30018,0x71f1c,0x63f8c,0x671cc,0xc60c6,0xc0066,0xc0066,0xc0066, + 0xc0066,0xc0066,0xc0066,0xc0066,0xc60c6,0x671cc,0x63f8c,0x71f0c,0x30018,0x38038,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f00, 0x3fc0, 0x70e0, 0x6060, 0x6000, 0x7f80, 0x7fe0, 0x6070, 0x6030, 0x7030, 0x7870, 0x1efe0, 0x1c7c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f00,0x3fc0,0x70e0,0x6060,0x6000,0x7f80,0x7fe0,0x6070,0x6030,0x7030,0x7870, + 0x1efe0,0x1c7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70700, 0x38380, 0x1c1c0, 0xe0e0, 0x7070, 0x3838, 0x1c1c, 0x1c1c, 0x3838, 0x7070, 0xe0e0, 0x1c1c0, 0x38380, 0x70700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70700,0x38380,0x1c1c0, + 0xe0e0,0x7070,0x3838,0x1c1c,0x1c1c,0x3838,0x7070,0xe0e0,0x1c1c0,0x38380,0x70700,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x70000, 0x70000, 0x70000, 0x70000, 0x70000, 0x70000, 0x70000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7fffc,0x7fffc,0x70000,0x70000,0x70000,0x70000,0x70000,0x70000,0x70000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 174 - 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x30018, 0x71fdc, 0x63fcc, 0x670cc, 0xc60c6, 0xc60c6, 0xc60c6, 0xc70c6, 0xc3fc6, 0xc1fc6, 0xc1cc6, 0xc38c6, 0xc30c6, 0x660cc, 0x6e0cc, 0x7000c, 0x30018, 0x38038, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x30018,0x71fdc,0x63fcc,0x670cc,0xc60c6,0xc60c6,0xc60c6,0xc70c6, + 0xc3fc6,0xc1fc6,0xc1cc6,0xc38c6,0xc30c6,0x660cc,0x6e0cc,0x7000c,0x30018,0x38038,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 175 - 0x0, 0x1fffff, 0x1fffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1fffff,0x1fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x7f80, 0x6180, 0xc0c0, 0xc0c0, 0xc0c0, 0xc0c0, 0x6180, 0x7f80, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x7f80,0x6180,0xc0c0,0xc0c0,0xc0c0,0xc0c0,0x6180,0x7f80,0x1e00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x7fffc, 0x7fffc, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x7fffc, + 0x7fffc,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x7fffc,0x7fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f00, 0x3fc0, 0x70e0, 0x6060, 0x6000, 0x6000, 0x3000, 0x1c00, 0x600, 0x380, 0xc0, 0x60, 0x7fe0, 0x7fe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f00,0x3fc0,0x70e0,0x6060,0x6000,0x6000,0x3000,0x1c00,0x600,0x380,0xc0, + 0x60,0x7fe0,0x7fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80, 0x3fc0, 0x70e0, 0x6060, 0x6000, 0x3000, 0x1e00, 0x3e00, 0x7000, 0x6000, 0x6060, 0x70e0, 0x3fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f80,0x3fc0,0x70e0,0x6060,0x6000,0x3000,0x1e00,0x3e00,0x7000,0x6000,0x6060, + 0x70e0,0x3fc0,0x1f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 180 - 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x1e00, 0x700, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c00,0x1e00,0x700,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b0f8, 0x3bff8, 0x38f38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b0f8,0x3bff8,0x38f38,0x38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffe0, 0x3fff0, 0xc3f8, 0xc3fc, 0xc3fc, 0xc3fc, 0xc3fc, 0xc3fc, 0xc3fc, 0xc3f8, 0xc3f0, 0xc3e0, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0xc300, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3ffe0,0x3fff0,0xc3f8,0xc3fc,0xc3fc,0xc3fc,0xc3fc,0xc3fc,0xc3fc,0xc3f8, + 0xc3f0,0xc3e0,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300,0xc300, + 0xc300,0xc300,0xc300,0x0,0x0,0x0,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf00,0xf00,0xf00,0xf00,0xf00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x70, 0xf8, 0xc0, 0xc0, 0xfc, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x70,0xf8, + 0xc0,0xc0,0xfc,0x3c,0x0,0x0,0x0,0x0, // 185 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xc00, 0xf00, 0xfe0, 0xce0, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xffe0, 0xffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xc00,0xf00,0xfe0,0xce0,0xc00,0xc00,0xc00,0xc00,0xc00,0xc00,0xc00, + 0xc00,0xffe0,0xffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0x7fc0, 0xe0e0, 0xc060, 0x18030, 0x18030, 0x18030, 0x18030, 0x18030, 0xc060, 0xe0e0, 0x7fc0, 0x1f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f00,0x7fc0,0xe0e0,0xc060,0x18030,0x18030,0x18030,0x18030,0x18030,0xc060,0xe0e0, + 0x7fc0,0x1f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c1c, 0x3838, 0x7070, 0xe0e0, 0x1c1c0, 0x38380, 0x70700, 0x70700, 0x38380, 0x1c1c0, 0xe0e0, 0x7070, 0x3838, 0x1c1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c1c,0x3838,0x7070, + 0xe0e0,0x1c1c0,0x38380,0x70700,0x70700,0x38380,0x1c1c0,0xe0e0,0x7070,0x3838,0x1c1c,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18018, 0xc01c, 0xc01f, 0x601b, 0x6018, 0x3018, 0x3018, 0x1818, 0x1818, 0xc18, 0x70c18, 0x7067e, 0x7837e, 0x6c300, 0x66180, 0x66180, 0x630c0, 0x618c0, 0x60c60, 0x1ffc60, 0x1ffc30, 0x60030, 0x60018, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x18018,0xc01c,0xc01f,0x601b,0x6018,0x3018,0x3018,0x1818,0x1818,0xc18, + 0x70c18,0x7067e,0x7837e,0x6c300,0x66180,0x66180,0x630c0,0x618c0,0x60c60,0x1ffc60,0x1ffc30,0x60030,0x60018,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18018, 0xc01c, 0xc01f, 0x601b, 0x6018, 0x3018, 0x3018, 0x1818, 0x1818, 0xc18, 0x3ec18, 0x7f67e, 0xe3b7e, 0xc1b00, 0xc0180, 0x60180, 0x700c0, 0x180c0, 0xe060, 0x3060, 0x1830, 0xff830, 0xff818, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x18018,0xc01c,0xc01f,0x601b,0x6018,0x3018,0x3018,0x1818,0x1818,0xc18, + 0x3ec18,0x7f67e,0xe3b7e,0xc1b00,0xc0180,0x60180,0x700c0,0x180c0,0xe060,0x3060,0x1830,0xff830,0xff818,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1803c, 0xc07e, 0xc0c7, 0x60c3, 0x60c0, 0x3078, 0x3078, 0x18e0, 0x18c0, 0xcc3, 0x70ce7, 0x7067e, 0x7833c, 0x6c300, 0x66180, 0x66180, 0x630c0, 0x618c0, 0x60c60, 0x1ffc60, 0x1ffc30, 0x60030, 0x60018, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1803c,0xc07e,0xc0c7,0x60c3,0x60c0,0x3078,0x3078,0x18e0,0x18c0,0xcc3, + 0x70ce7,0x7067e,0x7833c,0x6c300,0x66180,0x66180,0x630c0,0x618c0,0x60c60,0x1ffc60,0x1ffc30,0x60030,0x60018,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0xe00, 0xf00, 0x780, 0x3c0, 0xe0, 0x70, 0x38, 0x38, 0x70038, 0x70038, 0x38078, 0x3e0f0, 0x1fff0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x0,0x0, + 0x0,0x1c00,0x1c00,0xe00,0xf00,0x780,0x3c0,0xe0,0x70,0x38,0x38,0x70038,0x70038,0x38078,0x3e0f0,0x1fff0, + 0xffe0,0x3f80,0x0,0x0,0x0,0x0,0x0,0x0, // 192 - 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0xe00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0xe00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 193 - 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0xe00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0xe00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 194 - 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0xe00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0xe00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 195 - 0x18380, 0x18fc0, 0xfc60, 0x7060, 0x0, 0x0, 0xe00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18380,0x18fc0,0xfc60,0x7060,0x0,0x0,0xe00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 196 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0xe00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0xe00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 197 - 0x0, 0x1e00, 0x3f00, 0x6180, 0x6180, 0x6180, 0x3f00, 0x1f00, 0x1f00, 0x3b00, 0x3b80, 0x3380, 0x71c0, 0x71c0, 0x60c0, 0xe0e0, 0xe0e0, 0x1c070, 0x1c070, 0x1c070, 0x3fff8, 0x3fff8, 0x7803c, 0x7001c, 0x7001c, 0xe000e, 0xe000e, 0xe000e, 0x1c0007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e00,0x3f00,0x6180,0x6180,0x6180,0x3f00,0x1f00,0x1f00,0x3b00,0x3b80,0x3380,0x71c0,0x71c0,0x60c0,0xe0e0, + 0xe0e0,0x1c070,0x1c070,0x1c070,0x3fff8,0x3fff8,0x7803c,0x7001c,0x7001c,0xe000e,0xe000e,0xe000e,0x1c0007,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff00, 0x7ff80, 0x3b80, 0x3980, 0x39c0, 0x39c0, 0x38c0, 0x38e0, 0x38e0, 0x38e0, 0x7f870, 0x7f870, 0x3870, 0x3838, 0x3ff8, 0x3ff8, 0x381c, 0x381c, 0x381c, 0x380e, 0x380e, 0xff80f, 0xff807, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ff00,0x7ff80,0x3b80,0x3980,0x39c0,0x39c0,0x38c0,0x38e0,0x38e0,0x38e0, + 0x7f870,0x7f870,0x3870,0x3838,0x3ff8,0x3ff8,0x381c,0x381c,0x381c,0x380e,0x380e,0xff80f,0xff807,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffc0, 0x3c1e0, 0x78070, 0x70038, 0xf0038, 0x20038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x20038, 0xf0038, 0x70038, 0x78070, 0x3e1e0, 0x1ffc0, 0x7f00, 0x1800, 0x3800, 0x7c00, 0x6000, 0x6000, 0x7e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f00,0x1ffc0,0x3c1e0,0x78070,0x70038,0xf0038,0x20038,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x20038,0xf0038,0x70038,0x78070,0x3e1e0,0x1ffc0,0x7f00,0x1800,0x3800,0x7c00, + 0x6000,0x6000,0x7e00,0x1e00,0x0,0x0,0x0,0x0, // 200 - 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1fff8, 0x1fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x1fff8,0x1fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7fff8,0x7fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 201 - 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1fff8, 0x1fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x1fff8,0x1fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7fff8,0x7fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 202 - 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1fff8, 0x1fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x1fff8,0x1fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7fff8,0x7fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 203 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x1fff8, 0x1fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x1fff8,0x1fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7fff8,0x7fff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 204 - 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x1fff0, 0x1fff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1fff0, 0x1fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x1fff0,0x1fff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x1fff0,0x1fff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 205 - 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x1fff0, 0x1fff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1fff0, 0x1fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x1fff0,0x1fff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x1fff0,0x1fff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 206 - 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x1fff0, 0x1fff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1fff0, 0x1fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x1fff0,0x1fff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x1fff0,0x1fff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 207 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x1fff0, 0x1fff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1fff0, 0x1fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x1fff0,0x1fff0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x1fff0,0x1fff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff8, 0x7ff8, 0xf838, 0x1e038, 0x3c038, 0x38038, 0x38038, 0x70038, 0x70038, 0x70038, 0x707fe, 0x707fe, 0x70038, 0x70038, 0x70038, 0x70038, 0x38038, 0x38038, 0x1c038, 0x1e038, 0xf038, 0x7ff8, 0x1ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff8,0x7ff8,0xf838,0x1e038,0x3c038,0x38038,0x38038,0x70038,0x70038,0x70038, + 0x707fe,0x707fe,0x70038,0x70038,0x70038,0x70038,0x38038,0x38038,0x1c038,0x1e038,0xf038,0x7ff8,0x1ff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 209 - 0x18380, 0x18fc0, 0xfc60, 0x7060, 0x0, 0x0, 0x38078, 0x380f8, 0x380f8, 0x380f8, 0x381f8, 0x381f8, 0x383b8, 0x383b8, 0x38738, 0x38738, 0x38638, 0x38e38, 0x38e38, 0x39c38, 0x39c38, 0x3b838, 0x3b838, 0x3b038, 0x3f038, 0x3f038, 0x3e038, 0x3e038, 0x3c038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18380,0x18fc0,0xfc60,0x7060,0x0,0x0,0x38078,0x380f8,0x380f8,0x380f8,0x381f8,0x381f8,0x383b8,0x383b8,0x38738,0x38738, + 0x38638,0x38e38,0x38e38,0x39c38,0x39c38,0x3b838,0x3b838,0x3b038,0x3f038,0x3f038,0x3e038,0x3e038,0x3c038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 210 - 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 211 - 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 212 - 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 213 - 0x18380, 0x18fc0, 0xfc60, 0x7060, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18380,0x18fc0,0xfc60,0x7060,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 214 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x3f80, 0x7fc0, 0xe0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x3f80,0x7fc0,0xe0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10010, 0x38038, 0x1c070, 0xe0e0, 0x71c0, 0x3b80, 0x1f00, 0xe00, 0x1f00, 0x3b80, 0x71c0, 0xe0e0, 0x1c070, 0x38038, 0x10010, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10010,0x38038,0x1c070,0xe0e0,0x71c0,0x3b80, + 0x1f00,0xe00,0x1f00,0x3b80,0x71c0,0xe0e0,0x1c070,0x38038,0x10010,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3f80, 0x67fc0, 0x3e0f0, 0x3c070, 0x3c038, 0x3c038, 0x3e038, 0x7701c, 0x7381c, 0x7181c, 0x70c1c, 0x70e1c, 0x7071c, 0x7031c, 0x7019c, 0x701dc, 0x380f8, 0x38078, 0x38038, 0x1c078, 0xe0fc, 0x7fcc, 0x1f84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x43f80,0x67fc0,0x3e0f0,0x3c070,0x3c038,0x3c038,0x3e038,0x7701c,0x7381c,0x7181c, + 0x70c1c,0x70e1c,0x7071c,0x7031c,0x7019c,0x701dc,0x380f8,0x38078,0x38038,0x1c078,0xe0f8,0x7fcc,0x1f84,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 217 - 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x1c070, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x1c070,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 218 - 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x1c070, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x1c070,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 219 - 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x1c070, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x1c070,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 220 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x1c070, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x1c070,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 221 - 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0xf001e, 0x7001c, 0x38038, 0x3c078, 0x1c070, 0x1e0f0, 0xe0e0, 0x71c0, 0x71c0, 0x3b80, 0x3f80, 0x1f00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0xf001e,0x7001c,0x38038,0x3c078,0x1c070,0x1e0f0,0xe0e0,0x71c0,0x71c0,0x3b80, + 0x3f80,0x1f00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x3ff8, 0xfff8, 0x1e038, 0x38038, 0x78038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38038, 0x38038, 0x1e038, 0xfff8, 0x3ff8, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x3ff8,0xfff8,0x1e038,0x38038,0x78038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x38038,0x38038,0x1e038,0xfff8,0x3ff8,0x38,0x38,0x38,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 223 - 0x0, 0x0, 0x0, 0x0, 0x1fc0, 0x7fe0, 0xf078, 0x1e038, 0x1c03c, 0x1c01c, 0x1c01c, 0xe01c, 0x701c, 0x381c, 0x1c1c, 0x1c1c, 0x1c1c, 0x781c, 0xf81c, 0x3e01c, 0x7801c, 0x7001c, 0xe001c, 0xe001c, 0xe001c, 0xe021c, 0x7061c, 0x3fe1c, 0x1fc1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1fc0,0x7fe0,0xf078,0x1e038,0x1c03c,0x1c01c,0x1c01c,0xe01c,0x701c,0x381c,0x1c1c,0x1c1c, + 0x1c1c,0x781c,0xf81c,0x3e01c,0x7801c,0x7001c,0xe001c,0xe001c,0xe001c,0xe021c,0x7061c,0x3fe1c,0x1fc1c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 224 - 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x3c0, 0x700, 0xe00, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e0,0x3c0,0x700,0xe00,0x0,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 225 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 226 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 227 - 0x0, 0x0, 0x0, 0x0, 0x18380, 0x18fc0, 0xfc60, 0x7060, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x18380,0x18fc0,0xfc60,0x7060,0x0,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 228 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x70e0, 0x70e0, 0x70e0, 0x0, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x70e0,0x70e0,0x70e0,0x0,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 229 - 0x0, 0x0, 0x1e00, 0x3f00, 0x6180, 0x6180, 0x6180, 0x3f00, 0x1e00, 0x0, 0x0, 0x1f80, 0x7fe0, 0xf070, 0x1e038, 0x1c038, 0x1c000, 0x1c000, 0x1ffc0, 0x1fff0, 0x1c078, 0x1c03c, 0x1c01c, 0x1c01c, 0x1e01c, 0x1f01c, 0x3d838, 0xf8ff8, 0xf03e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e00,0x3f00,0x6180,0x6180,0x6180,0x3f00,0x1e00,0x0,0x0,0x1f80,0x7fe0,0xf070,0x1e038,0x1c038, + 0x1c000,0x1c000,0x1ffc0,0x1fff0,0x1c078,0x1c03c,0x1c01c,0x1c01c,0x1e01c,0x1f01c,0x3d838,0xf8ff8,0xf03e0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e1f0, 0x7f3fc, 0xe1f1c, 0xe1e0e, 0x1c0e0e, 0x1c0e00, 0x1c0e00, 0x1ffff8, 0x1ffffc, 0xe1e, 0xe0f, 0xe07, 0xe07, 0xc0f07, 0x1e1f07, 0xe398f, 0x7f8fe, 0x3e07c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e1f0,0x7f3fc,0xe1f1c,0xe1e0e,0x1c0e0e, + 0x1c0e00,0x1c0e00,0x1ffff8,0x1ffffc,0xe1e,0xe0f,0xe07,0xe07,0xc0f07,0x1e1f07,0xe398f,0x7f8fe,0x3e07c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x70038, 0x7001c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7001c, 0x70038, 0x38078, 0x1e0f0, 0xffe0, 0x3f80, 0xc00, 0x1c00, 0x3e00, 0x3000, 0x3000, 0x3f00, 0xf00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x70038, + 0x7001c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x7001c,0x70038,0x38078,0x1e0f0,0xffe0,0x3f80,0xc00,0x1c00,0x3e00, + 0x3000,0x3000,0x3f00,0xf00,0x0,0x0,0x0,0x0, // 232 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7fffc, 0x7fffc, 0x1c, 0x1c, 0x1c, 0x3c, 0x18038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x38038, + 0x7001c,0x7001c,0x7fffc,0x7fffc,0x1c,0x1c,0x1c,0x3c,0x18038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 233 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7fffc, 0x7fffc, 0x1c, 0x1c, 0x1c, 0x3c, 0x18038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x38038, + 0x7001c,0x7001c,0x7fffc,0x7fffc,0x1c,0x1c,0x1c,0x3c,0x18038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 234 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7fffc, 0x7fffc, 0x1c, 0x1c, 0x1c, 0x3c, 0x18038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x38038, + 0x7001c,0x7001c,0x7fffc,0x7fffc,0x1c,0x1c,0x1c,0x3c,0x18038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 235 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7fffc, 0x7fffc, 0x1c, 0x1c, 0x1c, 0x3c, 0x18038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38038,0x38038, + 0x7001c,0x7001c,0x7fffc,0x7fffc,0x1c,0x1c,0x1c,0x3c,0x18038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 236 - 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x3c0, 0x700, 0xe00, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e0,0x3c0,0x700,0xe00,0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 237 - 0x0, 0x0, 0x0, 0x0, 0x7800, 0x3c00, 0xe00, 0x700, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7800,0x3c00,0xe00,0x700,0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 238 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 239 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0xff0, 0xff0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fffc, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0xff0,0xff0,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fffc,0x3fffc,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 240 - 0x0, 0x0, 0x0, 0x0, 0x41c0, 0xf380, 0x3f00, 0x1f80, 0x39e0, 0x7840, 0x7000, 0xe000, 0xdf80, 0x1ffe0, 0x1e0f0, 0x1c038, 0x3c038, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x1c038, 0x1c038, 0xf0f0, 0x7fe0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x41c0,0xf380,0x3f00,0x1f80,0x39e0,0x7840,0x7000,0xe000,0xdf80,0x1ffe0,0x1e0f0,0x1c038, + 0x3c038,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x1c038,0x1c038,0xf0f0,0x7fe0,0x1f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 241 - 0x0, 0x0, 0x0, 0x0, 0x18380, 0x18fc0, 0xfc60, 0x7060, 0x0, 0x0, 0x0, 0x7e38, 0xffb8, 0x1e1b8, 0x3c078, 0x38078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x18380,0x18fc0,0xfc60,0x7060,0x0,0x0,0x0,0x7e38,0xffb8,0x1e1b8,0x3c078,0x38078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 242 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x38038, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 243 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x38038, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 244 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x38038, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 245 - 0x0, 0x0, 0x0, 0x0, 0x18380, 0x18fc0, 0xfc60, 0x7060, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x18380,0x18fc0,0xfc60,0x7060,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x38038, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 246 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x38078, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x38078,0x38038, + 0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0, + 0x7fffc,0x7fffc,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11f80, 0x3ffe0, 0x1f0f0, 0x1c038, 0x1e038, 0x3b01c, 0x3981c, 0x38c1c, 0x38e1c, 0x3871c, 0x3831c, 0x3819c, 0x380dc, 0x1c078, 0x1c038, 0xf0f8, 0x7ffc, 0x1f88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11f80,0x3ffe0,0x1f0f0,0x1c038,0x1e038, + 0x3b01c,0x3981c,0x38c1c,0x38e1c,0x3871c,0x3831c,0x3819c,0x380dc,0x1c078,0x1c038,0xf0f8,0x7ffc,0x1f88,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 249 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x780, 0xe00, 0x1c00, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b070, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x780,0xe00,0x1c00,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b070,0x3bff0,0x38fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 250 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b070, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b070,0x3bff0,0x38fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 251 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f80, 0x73c0, 0xe0e0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b070, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f80,0x73c0,0xe0e0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b070,0x3bff0,0x38fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 252 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b070, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b070,0x3bff0,0x38fc0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 253 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x0, 0xe000e, 0xf001e, 0x7001c, 0x7003c, 0x38038, 0x38078, 0x1c070, 0x1c070, 0x1e0e0, 0xe0e0, 0xe1c0, 0x71c0, 0x7380, 0x3b80, 0x3f00, 0x1f00, 0x1e00, 0x1e00, 0xe00, 0xe00, 0x700, 0x700, 0x3c0, 0x1f8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x0,0xe000e,0xf001e,0x7001c,0x7003c,0x38038, + 0x38078,0x1c070,0x1c0f0,0x1c0e0,0xe0e0,0xe1c0,0x71c0,0x7380,0x3b80,0x3f00,0x1f00,0x1e00,0x1e00,0xe00,0xe00,0x700, + 0x700,0x3c0,0x1f8,0xf8,0x0,0x0,0x0,0x0, // 254 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3e38, 0xffb8, 0x1e1b8, 0x1c078, 0x1c078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x1c078, 0x1c078, 0x1e0f8, 0xffb8, 0x3e38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x3e38,0xffb8,0x1e1b8,0x1c078,0x1c078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x1c078,0x1c078,0x1e0f8,0xffb8,0x3e38,0x38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0, // 255 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0xe000e, 0xf001e, 0x7001c, 0x7003c, 0x38038, 0x38078, 0x1c070, 0x1c070, 0x1e0e0, 0xe0e0, 0xe1c0, 0x71c0, 0x7380, 0x3b80, 0x3f00, 0x1f00, 0x1e00, 0x1e00, 0xe00, 0xe00, 0x700, 0x700, 0x3c0, 0x1f8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0xe000e,0xf001e,0x7001c,0x7003c,0x38038, + 0x38078,0x1c070,0x1c0f0,0x1c0e0,0xe0e0,0xe1c0,0x71c0,0x7380,0x3b80,0x3f00,0x1f00,0x1e00,0x1e00,0xe00,0xe00,0x700, + 0x700,0x3c0,0x1f8,0xf8,0x0,0x0,0x0,0x0, }; // Font: Liberation Mono,27,-1,5,50,0,0,0,0,0 const unsigned int ff7_height = 41; const unsigned int ff7_line_height = 41; const unsigned int ff7_width = 22; +const unsigned int ff7_stride = 1; const unsigned char ff7_first_char = ' '; uint32_t ff7_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 34 - 0x0, 0x0, 0x0, 0x0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1e0, 0x1e1c0, 0xc0c0, 0xc0c0, 0xc0c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1e0,0x1e1c0,0xc0c0,0xc0c0,0xc0c0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60300, 0x60300, 0x30180, 0x30180, 0x30180, 0x30180, 0x18180, 0x1ffffc, 0x1ffffc, 0x180c0, 0xc0c0, 0xc0c0, 0xc060, 0xc060, 0x6060, 0xffffe, 0xffffe, 0x6030, 0x3030, 0x3030, 0x3030, 0x3030, 0x1818, 0x1818, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x60300,0x60300,0x30180,0x30180,0x30180,0x30180,0x18180,0x1ffffc,0x1ffffc,0x180c0, + 0xc0c0,0xc0c0,0xc060,0xc060,0x6060,0xffffe,0xffffe,0x6030,0x3030,0x3030,0x3030,0x3030,0x1818,0x1818,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 36 - 0x0, 0x0, 0x0, 0xc00, 0xc00, 0xc00, 0x7fc0, 0x3fff0, 0x7cc78, 0x70c3c, 0xf0c1c, 0xe0c1c, 0xc1c, 0xc1c, 0xc38, 0xcf0, 0x1fe0, 0xff00, 0x3fc00, 0xf8c00, 0xe0c00, 0x1c0c00, 0x1c0c00, 0x1c0c0c, 0x1c0c0e, 0x1e0c1c, 0xe0c3c, 0x78c78, 0x3fff0, 0xffc0, 0xc00, 0xc00, 0xc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0xc00,0xc00,0xc00,0x7fc0,0x3fff0,0x7cc78,0x70c3c,0xf0c1c,0xe0c1c,0xc1c,0xc1c,0xc38,0xcf0, + 0x1fe0,0xff00,0x3fc00,0xf8c00,0xe0c00,0x1c0c00,0x1c0c00,0x1c0c0c,0x1c0c0e,0x1e0c1c,0xe0c3c,0x78c78,0x3fff0,0xffc0,0xc00,0xc00, + 0xc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c0078, 0xc01fe, 0x601ce, 0x70387, 0x38387, 0x18387, 0xc387, 0xe387, 0x7387, 0x31ce, 0x19fe, 0x1c78, 0x78e00, 0x1fe600, 0x1ce300, 0x387380, 0x3871c0, 0x3870c0, 0x387060, 0x387070, 0x387038, 0x1ce018, 0x1fe00c, 0x7800e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c0078,0xc01fe,0x601ce,0x70387,0x38387,0x18387,0xc387,0xe387,0x7387,0x31ce, + 0x19fe,0x1c78,0x78e00,0x1fe600,0x1ce300,0x387380,0x3871c0,0x3870c0,0x387060,0x387070,0x387038,0x1ce018,0x1fe00c,0x7800e,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xff80, 0xe1c0, 0x1c0e0, 0x1c0e0, 0x1c0e0, 0x1e0e0, 0xf0e0, 0x7cc0, 0x1fc0, 0x7c0, 0x603f0, 0xe03f8, 0xf073c, 0x70e1c, 0x71e0e, 0x39c0e, 0x3b80e, 0x1f00e, 0x1e00e, 0x1f01c, 0xff83c, 0x3f3ff8, 0x3c0fe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xff80,0xe1c0,0x1c0e0,0x1c0e0,0x1c0e0,0x1e0e0,0xf0e0,0x7cc0,0x1fc0, + 0x7c0,0x603f0,0xe03f8,0xf073c,0x70e1c,0x71e0e,0x39c0e,0x3b80e,0x1f00e,0x1e00e,0x1f01c,0xff83c,0x3f3ff8,0x3c0fe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 39 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1c00, 0xc00, 0xc00, 0xc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1c00,0xc00,0xc00,0xc00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 40 - 0x0, 0x0, 0x0, 0x0, 0xe000, 0x7000, 0x3800, 0x1c00, 0xe00, 0xe00, 0x700, 0x700, 0x380, 0x380, 0x380, 0x3c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x380, 0x380, 0x380, 0x700, 0x700, 0xe00, 0xe00, 0x1c00, 0x3800, 0x7000, 0xe000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xe000,0x7000,0x3800,0x1c00,0xe00,0xe00,0x700,0x700,0x380,0x380,0x380,0x3c0, + 0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x1c0,0x380,0x380,0x380,0x700,0x700,0xe00, + 0xe00,0x1c00,0x3800,0x7000,0xe000,0x0,0x0,0x0,0x0, // 41 - 0x0, 0x0, 0x0, 0x0, 0x1c0, 0x380, 0x700, 0xe00, 0x1e00, 0x1c00, 0x3800, 0x3800, 0x7000, 0x7000, 0x7000, 0xf000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xf000, 0x7000, 0x7000, 0x7000, 0x3800, 0x3800, 0x1c00, 0x1e00, 0xe00, 0x700, 0x380, 0x1c0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c0,0x380,0x700,0xe00,0x1e00,0x1c00,0x3800,0x3800,0x7000,0x7000,0x7000,0xf000, + 0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xf000,0x7000,0x7000,0x7000,0x3800,0x3800,0x1c00, + 0x1e00,0xe00,0x700,0x380,0x1c0,0x0,0x0,0x0,0x0, // 42 - 0x0, 0x0, 0x0, 0x0, 0xc00, 0xc00, 0xc00, 0x8c40, 0x1ede0, 0x1ffe0, 0x3f00, 0xc00, 0x1e00, 0x1e00, 0x3300, 0x7380, 0x2100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc00,0xc00,0xc00,0x8c40,0x1ede0,0x1ffe0,0x3f00,0xc00,0x1e00,0x1e00,0x3300,0x7380, + 0x2100,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0xffff8,0xffff8,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0xf00, 0xf00, 0x700, 0x780, 0x380, 0x380, 0x1c0, 0x1c0, 0xc0, 0xe0, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0xf00,0xf00,0x700,0x780,0x380,0x380, + 0x1c0,0x1c0,0xc0,0xe0,0x60,0x0,0x0,0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc0, 0xffc0, 0xffc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xffc0,0xffc0,0xffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 47 - 0x0, 0x0, 0x0, 0x0, 0xe0000, 0x70000, 0x70000, 0x38000, 0x3c000, 0x1c000, 0xe000, 0xe000, 0x7000, 0x7800, 0x3800, 0x1c00, 0x1c00, 0xe00, 0xe00, 0x700, 0x780, 0x380, 0x1c0, 0x1c0, 0xe0, 0xf0, 0x70, 0x38, 0x38, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xe0000,0x70000,0x70000,0x38000,0x3c000,0x1c000,0xe000,0xe000,0x7000,0x7800,0x3800,0x1c00, + 0x1c00,0xe00,0xe00,0x700,0x780,0x380,0x1c0,0x1c0,0xe0,0xf0,0x70,0x38,0x38,0x1c,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0x7fe0, 0x1e0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x7001c, 0x7001c, 0x7001c, 0x71f1c, 0x71f1c, 0x71f1c, 0x71f1c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x38038, 0x1c070, 0xe0e0, 0x7fc0, 0x1f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x7fe0,0x1e0f0,0x1c070,0x38038,0x38038,0x38038,0x7001c,0x7001c,0x7001c, + 0x71f1c,0x71f1c,0x71f1c,0x71f1c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x38038,0x1c070,0xe0e0,0x7fc0,0x1f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3c00, 0x3e00, 0x3fc0, 0x39f8, 0x3878, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3800,0x3c00,0x3e00,0x3fc0,0x39f8,0x3878,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffc0, 0x3c1e0, 0x38070, 0x70070, 0x70038, 0x70038, 0x70000, 0x78000, 0x38000, 0x3c000, 0x1e000, 0xf000, 0x7800, 0x3c00, 0x1e00, 0xf00, 0x780, 0x3c0, 0x1e0, 0xf0, 0x78, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f00,0x1ffc0,0x3c1e0,0x38070,0x70070,0x70038,0x70038,0x70000,0x78000,0x38000, + 0x3c000,0x1e000,0xf000,0x7800,0x3c00,0x1e00,0xf00,0x780,0x3c0,0x1e0,0xf0,0x78,0x7fff8,0x7fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x3801c, 0x3801c, 0x38000, 0x3c000, 0x1c000, 0xf000, 0x3f00, 0x7f00, 0x1e000, 0x38000, 0x70000, 0x70000, 0x7001c, 0x7001c, 0x70038, 0x38038, 0x3e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038,0x3801c,0x3801c,0x38000,0x3c000,0x1c000, + 0xf000,0x3f00,0x7f00,0x1e000,0x38000,0x70000,0x70000,0x7001c,0x7001c,0x70038,0x38038,0x3e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1f000, 0x1f800, 0x1dc00, 0x1dc00, 0x1ce00, 0x1c700, 0x1c380, 0x1c380, 0x1c1c0, 0x1c0e0, 0x1c0e0, 0x1c070, 0x1c038, 0x1c01c, 0xffffc, 0xffffc, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000,0x1f000,0x1f800,0x1dc00,0x1dc00,0x1ce00,0x1c700,0x1c380,0x1c380, + 0x1c1c0,0x1c0e0,0x1c0e0,0x1c070,0x1c038,0x1c01c,0xffffc,0xffffc,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff0, 0x3fff0, 0x70, 0x70, 0x70, 0x38, 0x38, 0x38, 0x38, 0x3f38, 0xffb8, 0x1e0f8, 0x38078, 0x78000, 0x70000, 0x70000, 0x70000, 0x70000, 0x7001c, 0x3803c, 0x3c038, 0x1e0f8, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fff0,0x3fff0,0x70,0x70,0x70,0x38,0x38,0x38,0x38,0x3f38, + 0xffb8,0x1e0f8,0x38078,0x78000,0x70000,0x70000,0x70000,0x70000,0x7001c,0x3803c,0x3c038,0x1e0f8,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e00, 0xff80, 0x1e1c0, 0x1c0e0, 0x38070, 0x38070, 0x30, 0x38, 0x38, 0x7e38, 0xffb8, 0x1e1f8, 0x38078, 0x78078, 0x70038, 0x70038, 0x70038, 0x70030, 0x70030, 0x38070, 0x380e0, 0x1e1e0, 0xff80, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3e00,0xff80,0x1e1c0,0x1c0e0,0x38070,0x38070,0x30,0x38,0x38,0x7e38, + 0xffb8,0x1e1f8,0x38078,0x78078,0x70038,0x70038,0x70038,0x70030,0x70030,0x38070,0x380e0,0x1e1e0,0xff80,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x70000, 0x38000, 0x1c000, 0x1c000, 0xe000, 0x7000, 0x7000, 0x3800, 0x3800, 0x1c00, 0x1c00, 0xe00, 0xe00, 0xe00, 0x700, 0x700, 0x700, 0x380, 0x380, 0x380, 0x380, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fff8,0x7fff8,0x70000,0x38000,0x1c000,0x1c000,0xe000,0x7000,0x7000,0x3800, + 0x3800,0x1c00,0x1c00,0xe00,0xe00,0xe00,0x700,0x700,0x700,0x380,0x380,0x380,0x380,0x380,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c070, 0x38038, 0x38038, 0x38038, 0x38038, 0x1c070, 0x1e0f0, 0x7fc0, 0x7fc0, 0x1e0f0, 0x38038, 0x7003c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7803c, 0x38038, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c070,0x38038,0x38038,0x38038,0x38038,0x1c070,0x1e0f0, + 0x7fc0,0x7fc0,0x1e0f0,0x38038,0x7003c,0x7001c,0x7001c,0x7001c,0x7001c,0x7803c,0x38038,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0x7fe0, 0x1e0f0, 0x1c078, 0x38038, 0x3801c, 0x3001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x78038, 0x7c078, 0x7e0f0, 0x77fe0, 0x71f80, 0x30000, 0x30000, 0x38038, 0x18038, 0x1c070, 0xf0f0, 0x7fe0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x7fe0,0x1e0f0,0x1c078,0x38038,0x3801c,0x3001c,0x7001c,0x7001c,0x7001c, + 0x7001c,0x78038,0x7c078,0x7e0f0,0x77fe0,0x71f80,0x30000,0x30000,0x38038,0x18038,0x1c070,0xf0f0,0x7fe0,0x1f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x1e00, 0x1e00, 0xe00, 0xf00, 0x700, 0x700, 0x380, 0x380, 0x180, 0x1c0, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c00,0x1e00,0x1e00,0xe00,0xf00,0x700,0x700, + 0x380,0x380,0x180,0x1c0,0xc0,0x0,0x0,0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000, 0xf0000, 0xfe000, 0x7f800, 0xff00, 0x3fe0, 0x7f8, 0xfc, 0x3c, 0x3c, 0xfc, 0x7f8, 0x3fe0, 0xff00, 0x7f800, 0xfe000, 0xf0000, 0x80000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000,0xf0000,0xfe000,0x7f800,0xff00,0x3fe0,0x7f8, + 0xfc,0x3c,0x3c,0xfc,0x7f8,0x3fe0,0xff00,0x7f800,0xfe000,0xf0000,0x80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffc, 0xffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffc, 0xffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffc,0xffffc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xffffc,0xffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x3c, 0x1fc, 0x7f8, 0x3fc0, 0x1ff00, 0x7f800, 0xfc000, 0xf0000, 0xf0000, 0xfc000, 0x7f800, 0x1ff00, 0x3fc0, 0x7f8, 0x1fc, 0x3c, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3c,0x1fc,0x7f8,0x3fc0,0x1ff00,0x7f800, + 0xfc000,0xf0000,0xf0000,0xfc000,0x7f800,0x1ff00,0x3fc0,0x7f8,0x1fc,0x3c,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0x1ffe0, 0x3fff0, 0x3c0f8, 0x78038, 0x7003c, 0x7001c, 0x70000, 0x78000, 0x38000, 0x1e000, 0xf000, 0x3800, 0x1c00, 0xe00, 0x700, 0x700, 0x0, 0x0, 0x0, 0x700, 0x700, 0x700, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x1ffe0,0x3fff0,0x3c0f8,0x78038,0x7003c,0x7001c,0x70000,0x78000,0x38000, + 0x1e000,0xf000,0x3800,0x1c00,0xe00,0x700,0x700,0x0,0x0,0x0,0x700,0x700,0x700,0x700,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 64 - 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x1ff80, 0x3c1c0, 0x700e0, 0x60070, 0xe0038, 0xc0018, 0xd9e18, 0x19bf0c, 0x19a38c, 0x19e18c, 0x19c0ce, 0x18c0c6, 0x18e0e6, 0x18e066, 0x18e066, 0x18e066, 0x186066, 0xc7066, 0xc7066, 0xc7866, 0x67cc6, 0x7efcc, 0x1c78c, 0xc, 0x18, 0x10018, 0x38030, 0x1e0e0, 0xffc0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7e00,0x1ff80,0x3c1c0,0x700e0,0x60070,0xe0038,0xc0018,0xd9e18,0x19bf0c,0x19a38c,0x19e18c,0x19c0ce, + 0x18c0c6,0x18e0e6,0x18e066,0x18e066,0x18e066,0x186066,0xc7066,0xc7066,0xc7866,0x67cc6,0x7efcc,0x1c78c,0xc,0x18,0x10018,0x38030, + 0x1e0e0,0xffc0,0x1f80,0x0,0x0,0x0,0x0,0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x1fff8, 0x3c038, 0x78038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38038, 0x1e038, 0xfff8, 0xfff8, 0x3c038, 0x70038, 0x70038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xf0038, 0x70038, 0x3c038, 0x1fff8, 0x7ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8,0x1fff8,0x3c038,0x78038,0x70038,0x70038,0x70038,0x70038,0x38038,0x1e038, + 0xfff8,0xfff8,0x3c038,0x70038,0x70038,0xe0038,0xe0038,0xe0038,0xe0038,0xf0038,0x70038,0x3c038,0x1fff8,0x7ff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe00, 0x3ffc0, 0x7c1e0, 0xf00f0, 0xe0070, 0x1e0038, 0x40038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x4001c, 0x1e0038, 0xe0038, 0xf0070, 0x78070, 0x3c1e0, 0x1ffc0, 0x7e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x3ffc0,0x7c1e0,0xf00f0,0xe0070,0x1e0038,0x40038,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x4001c,0x1e0038,0xe0038,0xf0070,0x78070,0x3c1e0,0x1ffc0,0x7e00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff8, 0x7ff8, 0x1f038, 0x3c038, 0x38038, 0x70038, 0x70038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0x70038, 0x70038, 0x70038, 0x38038, 0x3c038, 0x1f038, 0x7ff8, 0x1ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff8,0x7ff8,0x1f038,0x3c038,0x38038,0x70038,0x70038,0xe0038,0xe0038,0xe0038, + 0xe0038,0xe0038,0xe0038,0xe0038,0xe0038,0xe0038,0x70038,0x70038,0x70038,0x38038,0x3c038,0x1f038,0x7ff8,0x1ff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x38,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x3c070, 0x38038, 0x78038, 0x10038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x7f81c, 0x7f81c, 0x7001c, 0x7001c, 0x70018, 0x70038, 0x70038, 0x70070, 0x70070, 0x7c1e0, 0x1ffc0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x3c070,0x38038,0x78038,0x10038,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x7f81c,0x7f81c,0x7001c,0x7001c,0x70018,0x70038,0x70038,0x70070,0x70070,0x7c1e0,0x1ffc0,0x7f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x7fff8, 0x7fff8, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038, + 0x7fff8,0x7fff8,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff00, 0x1ff00, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c038, 0x1c038, 0x1c070, 0xe070, 0xf0f0, 0x7fe0, 0x1f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0x1ff00,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000, + 0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0x1c038,0x1c038,0x1c070,0xe070,0xf0f0,0x7fe0,0x1f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0038, 0xf0038, 0x78038, 0x3c038, 0x1e038, 0xf038, 0x7838, 0x3c38, 0x1e38, 0xf38, 0xfb8, 0xff8, 0x1ff8, 0x3cf8, 0x7878, 0xf838, 0xf038, 0x1e038, 0x3c038, 0x78038, 0xf8038, 0xf0038, 0x1e0038, 0x3c0038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e0038,0xf0038,0x78038,0x3c038,0x1e038,0xf038,0x7838,0x3c38,0x1e38,0xf38, + 0xfb8,0xff8,0x1ff8,0x3cf8,0x7878,0xf838,0xf038,0x1e038,0x3c038,0x78038,0xf8038,0xf0038,0x1e0038,0x3c0038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0xffff0, 0xffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70, + 0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0xffff0,0xffff0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf007c, 0xf807c, 0xf807c, 0xfc0fc, 0xfc0fc, 0xec1dc, 0xee1dc, 0xee1dc, 0xe739c, 0xe739c, 0xe331c, 0xe3f1c, 0xe3f1c, 0xe1e1c, 0xe1e1c, 0xe0c1c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf007c,0xf807c,0xf807c,0xfc0fc,0xfc0fc,0xec1dc,0xee1dc,0xee1dc,0xe739c,0xe739c, + 0xe331c,0xe3f1c,0xe3f1c,0xe1e1c,0xe1e1c,0xe0c1c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70078, 0x700f8, 0x700f8, 0x701f8, 0x701f8, 0x701f8, 0x703b8, 0x703b8, 0x70738, 0x70738, 0x70e38, 0x70e38, 0x71c38, 0x71c38, 0x73838, 0x73838, 0x77038, 0x77038, 0x77038, 0x7e038, 0x7e038, 0x7c038, 0x7c038, 0x78038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x70078,0x700f8,0x700f8,0x701f8,0x701f8,0x701f8,0x703b8,0x703b8,0x70738,0x70738, + 0x70e38,0x70e38,0x71c38,0x71c38,0x73838,0x73838,0x77038,0x77038,0x77038,0x7e038,0x7e038,0x7c038,0x7c038,0x78038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x78078,0x38070,0x1e1e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x1fff8, 0x3c038, 0x70038, 0xf0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0x70038, 0x70038, 0x3c038, 0x1fff8, 0x7ff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8,0x1fff8,0x3c038,0x70038,0xf0038,0xe0038,0xe0038,0xe0038,0xe0038,0x70038, + 0x70038,0x3c038,0x1fff8,0x7ff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x38078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x1c00, 0x3c00, 0x3800, 0x7800, 0xf000, 0xfe000, 0xfc000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x38078,0x38070,0x1e1e0,0xffc0,0x3f00,0x1c00,0x3c00, + 0x3800,0x7800,0xf000,0xfe000,0xfc000,0x0,0x0,0x0,0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x3fff8, 0x7c038, 0x70038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0x70038, 0x3c038, 0x1fff8, 0x3ff8, 0x7838, 0x7038, 0xf038, 0xe038, 0x1e038, 0x3c038, 0x38038, 0x78038, 0xf0038, 0xf0038, 0x1e0038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8,0x3fff8,0x7c038,0x70038,0xe0038,0xe0038,0xe0038,0xe0038,0xe0038,0x70038, + 0x3c038,0x1fff8,0x3ff8,0x7838,0x7038,0xf038,0xe038,0x1e038,0x3c038,0x38038,0x78038,0xf0038,0xf0038,0x1e0038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f80, 0x1ffe0, 0x3e0f0, 0x38070, 0x70038, 0x70038, 0x38, 0x38, 0x78, 0x1f0, 0x1fe0, 0xff80, 0x3fc00, 0x7e000, 0x70000, 0xe0000, 0xe0000, 0xe0018, 0xe001c, 0xe0038, 0x70078, 0x3c0f0, 0x1ffe0, 0x7f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x1ffe0,0x3e0f0,0x38070,0x70038,0x70038,0x38,0x38,0x78,0x1f0, + 0x1fe0,0xff80,0x3fc00,0x7e000,0x70000,0xe0000,0xe0000,0xe0018,0xe001c,0xe0038,0x70078,0x3c0f0,0x1ffe0,0x7f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffffc, 0x1ffffc, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffffc,0x1ffffc,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38030, 0x38070, 0x1c0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38030,0x38070,0x1c0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380007, 0x1c000e, 0x1c000e, 0x1c001e, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x70038, 0x38070, 0x38070, 0x1c0e0, 0x1c0e0, 0x1c0e0, 0xe1c0, 0xe1c0, 0x6380, 0x7380, 0x3300, 0x3f00, 0x3f00, 0x1e00, 0x1e00, 0xc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x380007,0x1c000e,0x1c000e,0x1c001e,0xe001c,0xe001c,0x70038,0x70038,0x70038,0x38070, + 0x38070,0x1c0e0,0x1c0e0,0x1c0e0,0xe1c0,0xe1c0,0x6380,0x7380,0x3300,0x3f00,0x3f00,0x1e00,0x1e00,0xc00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380007, 0x380007, 0x380007, 0x1c000e, 0x1c000e, 0x1c000e, 0x1c000e, 0x1c1c0e, 0x1c1e0e, 0xc1e0c, 0xe1e1c, 0xe3f1c, 0xe331c, 0xe331c, 0xe3318, 0x67398, 0x66198, 0x661b8, 0x7e1b8, 0x7e1f8, 0x3c0f0, 0x3c0f0, 0x3c0f0, 0x38070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x380007,0x380007,0x380007,0x1c000e,0x1c000e,0x1c000e,0x1c000e,0x1c1c0e,0x1c1e0e,0xc1e0c, + 0xe1e1c,0xe3f1c,0xe331c,0xe331c,0xe3318,0x67398,0x66198,0x661b8,0x7e1b8,0x7e1f8,0x3c0f0,0x3c0f0,0x3c0f0,0x38070,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf003c, 0x70038, 0x38070, 0x380f0, 0x1c0e0, 0xe1c0, 0xe1c0, 0x7380, 0x7f00, 0x3f00, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x7380, 0x7380, 0xe1c0, 0x1c1e0, 0x1c0e0, 0x38070, 0x78078, 0x70038, 0xe001c, 0x1e001e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf003c,0x70038,0x38070,0x380f0,0x1c0e0,0xe1c0,0xe1c0,0x7380,0x7f00,0x3f00, + 0x1e00,0x1e00,0x3e00,0x3f00,0x7380,0x7380,0xe1c0,0x1c1e0,0x1c0e0,0x38070,0x78078,0x70038,0xe001c,0x1e001e,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c001e, 0x1e003c, 0xe0038, 0xf0078, 0x70070, 0x380e0, 0x3c1e0, 0x1c1c0, 0x1e3c0, 0xe380, 0x7700, 0x7f00, 0x3e00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3c001e,0x1e003c,0xe0038,0xf0078,0x70070,0x380e0,0x3c1e0,0x1c1c0,0x1e3c0,0xe380, + 0x7700,0x7f00,0x3e00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffc, 0xffffc, 0x70000, 0x78000, 0x3c000, 0x1c000, 0xe000, 0xf000, 0x7800, 0x3800, 0x3c00, 0x1e00, 0xf00, 0x700, 0x780, 0x3c0, 0x1e0, 0xe0, 0xf0, 0x78, 0x3c, 0x1c, 0x1ffffe, 0x1ffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffc,0xffffc,0x70000,0x78000,0x3c000,0x1c000,0xe000,0xf000,0x7800,0x3800, + 0x3c00,0x1e00,0xf00,0x700,0x780,0x3c0,0x1e0,0xe0,0xf0,0x78,0x3c,0x1c,0x1ffffe,0x1ffffe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 91 - 0x0, 0x0, 0x0, 0x0, 0x1ff80, 0x1ff80, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x1ff80, 0x1ff80, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1ff80,0x1ff80,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380, + 0x380,0x380,0x380,0x1ff80,0x1ff80,0x0,0x0,0x0,0x0, // 92 - 0x0, 0x0, 0x0, 0x0, 0x1c, 0x38, 0x38, 0x70, 0xf0, 0xe0, 0x1c0, 0x1c0, 0x380, 0x780, 0x700, 0xe00, 0xe00, 0x1c00, 0x1c00, 0x3800, 0x7800, 0x7000, 0xe000, 0xe000, 0x1c000, 0x3c000, 0x38000, 0x70000, 0x70000, 0xe0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c,0x38,0x38,0x70,0xf0,0xe0,0x1c0,0x1c0,0x380,0x780,0x700,0xe00, + 0xe00,0x1c00,0x1c00,0x3800,0x7800,0x7000,0xe000,0xe000,0x1c000,0x3c000,0x38000,0x70000,0x70000,0xe0000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 93 - 0x0, 0x0, 0x0, 0x0, 0x7fe0, 0x7fe0, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7fe0, 0x7fe0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7fe0,0x7fe0,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000, + 0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000, + 0x7000,0x7000,0x7000,0x7fe0,0x7fe0,0x0,0x0,0x0,0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1f00, 0x3f00, 0x3300, 0x7380, 0x6180, 0xe1c0, 0xc0c0, 0x1c0e0, 0x18060, 0x38070, 0x38070, 0x70038, 0x70038, 0xe001c, 0xe001c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x1f00,0x3f00,0x3300,0x7380,0x6180,0xe1c0,0xc0c0,0x1c0e0,0x18060, + 0x38070,0x38070,0x70038,0x70038,0xe001c,0xe001c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fffff, 0x3fffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffff,0x3fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 96 - 0x0, 0x0, 0x0, 0x0, 0x780, 0x700, 0xe00, 0x1c00, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x780,0x700,0xe00,0x1c00,0x3800,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 98 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7e38, 0xffb8, 0x1e1b8, 0x380f8, 0x38078, 0x70078, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38078, 0x38078, 0x1e1f8, 0xffb8, 0x7e38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7e38,0xffb8,0x1e1b8,0x380f8,0x38078, + 0x70078,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38078,0x38078,0x1e1f8,0xffb8,0x7e38,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffe0, 0x1e0f0, 0x38078, 0x70038, 0x70018, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x70038, 0x70038, 0x38078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffe0,0x1e0f0,0x38078,0x70038, + 0x70018,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x70038,0x70038,0x38078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 100 - 0x0, 0x0, 0x0, 0x0, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38fc0, 0x3bfe0, 0x3f0f0, 0x3c038, 0x3c038, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3c01c, 0x3c038, 0x3e038, 0x3b070, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38000,0x38000,0x38000,0x38000,0x38000,0x38000,0x38000,0x38fc0,0x3bfe0,0x3f0f0,0x3c038,0x3c038, + 0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3c01c,0x3c038,0x3e038,0x3b070,0x3bff0,0x38fc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffe0, 0x3c0f0, 0x78078, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xffffc, 0xffffc, 0x1c, 0x1c, 0x1c, 0x38, 0x30038, 0x78078, 0x3e0f0, 0x1ffe0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f00,0x1ffe0,0x3c0f0,0x78078,0x70038, + 0x70038,0xe001c,0xe001c,0xffffc,0xffffc,0x1c,0x1c,0x1c,0x38,0x30038,0x78078,0x3e0f0,0x1ffe0,0x7f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 102 - 0x0, 0x0, 0x0, 0x0, 0xff000, 0xffc00, 0x1e00, 0xf00, 0x700, 0x700, 0x700, 0xffff8, 0xffff8, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xff000,0xffc00,0x1e00,0xf00,0x700,0x700,0x700,0xffff8,0xffff8,0x700,0x700,0x700, + 0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x700,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38fc0, 0x39fe0, 0x3b0f0, 0x3e038, 0x3c038, 0x3c01c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3c01c, 0x3c038, 0x3e038, 0x3b078, 0x39ff0, 0x38fc0, 0x38000, 0x38000, 0x3c038, 0x1c038, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38fc0,0x39fe0,0x3b0f0,0x3e038,0x3c038, + 0x3c01c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3c01c,0x3c038,0x3e038,0x3b078,0x39ff0,0x38fc0,0x38000,0x38000, + 0x3c038,0x1c038,0x1e0f0,0xffe0,0x3f80,0x0,0x0,0x0,0x0, // 104 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7e38, 0xffb8, 0x1e1b8, 0x3c0f8, 0x38078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7e38,0xffb8,0x1e1b8,0x3c0f8,0x38078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 105 - 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x0,0x0,0x0,0x0,0x1fe0,0x1fe0,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 106 - 0x0, 0x0, 0x0, 0x0, 0x7000, 0x7000, 0x7000, 0x0, 0x0, 0x0, 0x0, 0x7ff0, 0x7ff0, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x3800, 0x3c04, 0x1ffc, 0x7fc, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7000,0x7000,0x7000,0x0,0x0,0x0,0x0,0x7ff0,0x7ff0,0x7000,0x7000,0x7000, + 0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000, + 0x7000,0x3800,0x3c04,0x1ffc,0x7fc,0x0,0x0,0x0,0x0, // 107 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0xf0038, 0x78038, 0x1c038, 0xe038, 0x7838, 0x3c38, 0x1e38, 0xf38, 0x7b8, 0xff8, 0x1ef8, 0x3c78, 0x7838, 0xf038, 0xe038, 0x1e038, 0x3c038, 0x78038, 0xf0038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xf0038,0x78038,0x1c038,0xe038,0x7838, + 0x3c38,0x1e38,0xf38,0x7b8,0xff8,0x1ef8,0x3c78,0x7838,0xf038,0xe038,0x1e038,0x3c038,0x78038,0xf0038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 108 - 0x0, 0x0, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1fe0,0x1fe0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7879c, 0xfcfdc, 0xe6e7c, 0x1c3c3c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x1c1c1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7879c,0xfcfdc,0xe6e7c,0x1c3c3c,0x1c1c1c, + 0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x1c1c1c,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e38, 0xffb8, 0x1e1b8, 0x3c0f8, 0x38078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e38,0xffb8,0x1e1b8,0x3c0f8,0x38078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x3c078, 0x38038, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x3c078,0x38038, + 0x7803c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e38, 0xffb8, 0x1c1b8, 0x380f8, 0x38078, 0x70078, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38078, 0x38078, 0x1c1f8, 0xffb8, 0x7e38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e38,0xffb8,0x1c1b8,0x380f8,0x38078, + 0x70078,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38078,0x38078,0x1c1f8,0xffb8,0x7e38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38fc0, 0x3bfe0, 0x3f070, 0x3c038, 0x3c038, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3801c, 0x3c01c, 0x3c038, 0x3e038, 0x3b070, 0x39ff0, 0x38fc0, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x38000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38fc0,0x3bfe0,0x3f070,0x3c038,0x3c038, + 0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3801c,0x3c01c,0x3c038,0x3e038,0x3b070,0x39ff0,0x38fc0,0x38000,0x38000, + 0x38000,0x38000,0x38000,0x38000,0x38000,0x0,0x0,0x0,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f060, 0x7fc60, 0x7fee0, 0xee0, 0x7e0, 0x3e0, 0x1e0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f060,0x7fc60,0x7fee0,0xee0,0x7e0, + 0x3e0,0x1e0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffc0, 0x3c1e0, 0x78070, 0x70070, 0x70, 0xf0, 0x3e0, 0x3fe0, 0x1ff80, 0x3f800, 0x7c000, 0x70000, 0x70000, 0x70038, 0x70078, 0x3c0f0, 0x1ffe0, 0x7f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f00,0x1ffc0,0x3c1e0,0x78070,0x70070, + 0x70,0xf0,0x3e0,0x3fe0,0x1ff80,0x3f800,0x7c000,0x70000,0x70000,0x70038,0x70078,0x3c0f0,0x1ffe0,0x7f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300, 0x300, 0x380, 0x380, 0x380, 0x1fff0, 0x1fff0, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x780, 0x3ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x300,0x300,0x380,0x380,0x380,0x1fff0,0x1fff0,0x380,0x380,0x380, + 0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x380,0x780,0x3ff00,0x1fc00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b0f0, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b0f0,0x3bff0,0x38fc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c000e, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x3c070, 0x1c0e0, 0x1c0e0, 0xe1c0, 0xe1c0, 0x7380, 0x7380, 0x3300, 0x3f00, 0x1f00, 0x1e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c000e,0xe001c,0xe001c,0x70038,0x70038, + 0x38078,0x38070,0x3c070,0x1c0e0,0x1c0e0,0xe1c0,0xe1c0,0x7380,0x7380,0x3300,0x3f00,0x1f00,0x1e00,0x1e00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380007, 0x380007, 0x3c000f, 0x1c000e, 0x1c000e, 0x1c1e0e, 0x1c1e0e, 0x1e1e0e, 0xe3f1c, 0xe331c, 0xe331c, 0xe739c, 0xe619c, 0x761d8, 0x7e0d8, 0x7c0f8, 0x7c0f8, 0x78078, 0x38070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x380007,0x380007,0x3c000f,0x1c000e,0x1c000e, + 0x1c1e0e,0x1c1e0e,0x1c1e0e,0xe3f1c,0xe331c,0xe331c,0xe739c,0xe619c,0x761d8,0x7e0d8,0x7c0f8,0x7c0f8,0x78078,0x38070,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf003c, 0x78078, 0x38070, 0x1c0e0, 0x1e1e0, 0xf1c0, 0x7380, 0x3f00, 0x3f00, 0x1e00, 0x3f00, 0x3f00, 0x7380, 0xf1c0, 0x1e1e0, 0x1c0e0, 0x38070, 0x78078, 0xf003c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf003c,0x78078,0x38070,0x1c0e0,0x1e1e0, + 0xf1c0,0x7380,0x3f00,0x3f00,0x1e00,0x3f00,0x3f00,0x7380,0xf1c0,0x1e1e0,0x1c0e0,0x38070,0x78078,0xf003c,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c000e, 0x1e001e, 0xe001c, 0xf003c, 0x70038, 0x70078, 0x38070, 0x380f0, 0x1c0e0, 0x1c0e0, 0x1c1c0, 0xe1c0, 0xe380, 0x7380, 0x7700, 0x3f00, 0x3e00, 0x1e00, 0x1c00, 0xc00, 0xe00, 0xe00, 0x700, 0x380, 0x1f8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c000e,0x1e001e,0xe001c,0xf003c,0x70038, + 0x70078,0x38070,0x380f0,0x1c0e0,0x1c0e0,0x1c1c0,0xe1c0,0xe380,0x7380,0x7700,0x3f00,0x3e00,0x1e00,0x1c00,0xc00,0xe00, + 0xe00,0x700,0x380,0x1f8,0xf8,0x0,0x0,0x0,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff0, 0x7fff0, 0x78000, 0x3c000, 0x1e000, 0xf000, 0x7000, 0x3800, 0x3c00, 0x1e00, 0xf00, 0x700, 0x380, 0x3c0, 0x1e0, 0xf0, 0x78, 0x7fff8, 0x7fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff0,0x7fff0,0x78000,0x3c000,0x1e000, + 0xf000,0x7000,0x3800,0x3c00,0x1e00,0xf00,0x700,0x380,0x3c0,0x1e0,0xf0,0x78,0x7fff8,0x7fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 123 - 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x7fc00, 0x1c00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x700, 0x7c0, 0x1f0, 0x1f0, 0x780, 0x700, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x1c00, 0x7fc00, 0x7f000, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7f000,0x7fc00,0x1c00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0x700,0x7c0,0x1f0,0x1f0,0x780,0x700,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0x1c00,0x7fc00,0x7f000,0x0,0x0,0x0,0x0, // 124 - 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0,0x0,0x0, // 125 - 0x0, 0x0, 0x0, 0x0, 0x3f8, 0xff8, 0xe00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x3800, 0x7800, 0x3e000, 0x3e000, 0x7800, 0x3800, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xe00, 0xff8, 0x3f8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f8,0xff8,0xe00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x3800,0x7800,0x3e000,0x3e000,0x7800,0x3800,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0xe00,0xff8,0x3f8,0x0,0x0,0x0,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f0, 0xc1ffc, 0xffe0c, 0x3f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f0,0xc1ffc,0xffe0c,0x3f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 127 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fe, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x3fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5ac82,0x12d5ba,0x1c5d7a,0x3e30ba,0x1a2102,0xd31d6,0x373428,0x373600,0xc2682,0x34834c,0x7bcd2,0x9e3e,0x26b09e,0x3408e0,0x77e6,0x25f7a, + 0x3840fa,0x31e41c,0x2263c0,0x221098,0x72fe4,0x32c00,0x3a71fe,0x220882,0x358992,0x27d93a,0x3fe17a,0xac8b2,0x24182,0x8dcfe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff, 0x7ff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xf0, 0xf8, 0x19c, 0x304, 0x606, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1e0,0x3e0,0x1e0,0x1e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 130 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fe, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x202, 0x3fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xdb4,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 131 - 0x60c00, 0xe1e00, 0xe0e00, 0x40000, 0x0, 0x0, 0x2007fe, 0x1f0, 0x1e0, 0x1c0, 0x2003c0, 0x200780, 0x300700, 0x180f00, 0x81e00, 0xc3c00, 0x63c00, 0x27800, 0x37000, 0x1f000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0xe000, 0x1e000, 0xffe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3060, 0x78f0, 0x78f0, 0x70f0, 0x8000, 0x80, 0x4080, 0x4080, 0x2040, 0x2020, 0x1010, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fffff,0x0,0x0,0x0,0x0,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x183060, 0x3c7870, 0x3878f0, 0x183070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x80, 0x80, 0x908, 0x3ffc, 0x3c9c, 0x80, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x1c0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x80, 0x80, 0x100, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x0, 0x3dbc, 0x3efc, 0x100, 0x80, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x180, 0x80, 0x3c9c, 0x3ffc, 0x1010, 0x180, 0x80, 0x180, 0x180, 0x180, 0x180, 0x100, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 136 - 0x7000, 0xfc00, 0x38600, 0x20100, 0x0, 0x0, 0x3ffffc, 0x3401e0, 0x2001c0, 0x1e0, 0x1c0, 0x1c0, 0x101e0, 0x101c0, 0x101c0, 0x301e0, 0x181c0, 0x1ffc0, 0x3c1e0, 0x101c0, 0x201c0, 0x101e0, 0x1c0, 0x1c0, 0x1e0, 0x1c0, 0x1c0, 0x2001e0, 0x3801e0, 0x3ffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 137 - 0x0, 0x0, 0x0, 0x1c0, 0x630, 0x810, 0x203818, 0x1fc818, 0x101c, 0x20100c, 0x30100c, 0x18101c, 0x80808, 0xc0818, 0x60418, 0x30660, 0x101c0, 0x18000, 0x20c000, 0x304000, 0x186000, 0x183000, 0x181800, 0x1c0800, 0x180c00, 0x1c0600, 0x180300, 0x180300, 0x180180, 0x3000c0, 0x200040, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 138 - 0x3f00, 0x1e00, 0x800, 0x0, 0x20f80, 0x27060, 0x78030, 0x38010, 0x30018, 0x20018, 0x60018, 0x2001c, 0x20038, 0x78, 0x3f8, 0x3ff0, 0xffe0, 0x1ff80, 0x3fc00, 0x7c000, 0x70000, 0x70000, 0x60004, 0xe0008, 0x6000c, 0x60008, 0x30018, 0x3003c, 0x180d8, 0xff8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x0, 0x0, 0x21f80, 0x26060, 0x38030, 0x78010, 0x30018, 0x20018, 0x60018, 0x2001c, 0x20038, 0x78, 0x3f8, 0x3ff0, 0xffe0, 0x1ff80, 0x3f400, 0x7c000, 0x70000, 0x70000, 0x60004, 0xe0008, 0x6000c, 0x60008, 0x70018, 0x3003c, 0x180d8, 0xff8c, 0x2000, 0x0, 0xc00, 0x1e00, 0xc00, 0x1000, 0x0, 0x800, 0x800, 0x400, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 140 - 0x1c00, 0x600, 0x0, 0x0, 0x21f80, 0x27060, 0x78030, 0x38010, 0x30018, 0x60018, 0x20018, 0x2001c, 0x20038, 0x78, 0x3f8, 0x3ff0, 0xffe0, 0x1ff80, 0x3fc00, 0x7c000, 0x70000, 0x70000, 0x60004, 0xe0008, 0x6000c, 0x60008, 0x30018, 0x3003c, 0x180d8, 0xff8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 141 - 0x0, 0x0, 0x0, 0x0, 0x3d000, 0x3c1c00, 0x380700, 0x300380, 0x3001c0, 0x3000c0, 0x3000e0, 0x3000f0, 0x300070, 0x300070, 0x300078, 0x300078, 0x300078, 0x300038, 0x300078, 0x300078, 0x300070, 0x380070, 0x3000f0, 0x3000f0, 0x3000e0, 0x3801c0, 0x300380, 0x380780, 0x380e00, 0x3eb800, 0x14000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3000c, 0x3801c, 0x1c03c, 0xe070, 0xf0e0, 0x39e0, 0x3f80, 0xf80, 0xf00, 0x1f80, 0x3dc0, 0x70e0, 0xf070, 0x1c078, 0x3801c, 0x3801c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x600, 0xf00, 0xf00, 0x600, 0x0, 0x0, 0x0, 0x0, 0x7fffe, 0x7fffe, 0x12490, 0x0, 0x0, 0x0, 0x600, 0xf00, 0xf00, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x20, 0x20, 0x10, 0x10, 0x8, 0x8, 0x68, 0x70, 0xf0, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x70, 0xf0, 0xf0, 0x80, 0x80, 0x80, 0x0, 0x40, 0x20, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x2040, 0x2020, 0x1020, 0x810, 0x810, 0x808, 0x8, 0x3c68, 0x7870, 0x78f0, 0x3070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3060, 0x78f0, 0x78f0, 0x70f0, 0x8000, 0x80, 0x4080, 0x4080, 0x2040, 0x2020, 0x1010, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x7f800, 0xffc00, 0x1ffc00, 0x1ffe00, 0x3ffe00, 0x3ffe00, 0x3ffe00, 0x1ffe00, 0x1ffe00, 0xffc00, 0x7f800, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 152 - 0x0, 0x0, 0x0, 0x600, 0xf00, 0x1980, 0x30c0, 0x2040, 0x4020, 0x0, 0x0, 0x0, 0x3fffc, 0x38070, 0x20070, 0x20070, 0x20070, 0x21030, 0x1070, 0x1070, 0x3ff0, 0x1070, 0x1030, 0x41070, 0x40070, 0x40030, 0x20070, 0x60070, 0x38070, 0x3fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60000, 0xc0000, 0x180000, 0x180000, 0x100000, 0x300000, 0x3e0000, 0x23c000, 0x20f000, 0x201e00, 0x2007c0, 0x78, 0x2000b8, 0x1e0, 0x200f00, 0x207c00, 0x23e000, 0x3f0000, 0x380000, 0x300000, 0x100000, 0x180000, 0xc0000, 0x40000, 0x40000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 154 - 0x0, 0x0, 0x0, 0x1008, 0x1830, 0xc60, 0x7c0, 0x380, 0x100, 0x0, 0x0, 0x140, 0x26b0, 0x3818, 0x300c, 0x3004, 0x200c, 0x200c, 0x3c, 0x1f8, 0xff0, 0x1fc0, 0x3c00, 0x7000, 0x3004, 0x6004, 0x6004, 0x300c, 0x101c, 0xef4, 0x104, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x36b0, 0x3808, 0x300c, 0x300c, 0x200c, 0x200c, 0x3c, 0x1f8, 0xff0, 0x3fc0, 0x3c00, 0x3000, 0x7004, 0x6004, 0x2004, 0x300c, 0x101c, 0xef4, 0x104, 0x0, 0x180, 0x380, 0x180, 0x200, 0x200, 0x0, 0x100, 0x100, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 156 - 0x0, 0x0, 0x1800, 0x1c00, 0xe00, 0x700, 0x300, 0x180, 0xc0, 0x0, 0x0, 0x80, 0x3770, 0x3818, 0x300c, 0x2004, 0x200c, 0x200c, 0x3c, 0x1f8, 0xff0, 0x3fc0, 0x3c00, 0x3000, 0x7004, 0x2004, 0x6004, 0x300c, 0x101c, 0xef4, 0x104, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800, 0x3ff700, 0x381c0, 0x18060, 0x18070, 0x38038, 0x18038, 0x18018, 0x3801c, 0x3f801c, 0x1801c, 0x18038, 0x3801c, 0x18038, 0x18038, 0x38070, 0x180e0, 0x3c0c0, 0x3fd780, 0x2800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 158 - 0x0, 0x0, 0x0, 0x2010, 0x1020, 0x1ce0, 0x780, 0x300, 0x100, 0x0, 0x0, 0x0, 0xfffc, 0xe038, 0x700c, 0x3804, 0x3804, 0x1c04, 0xe00, 0xf00, 0x700, 0x380, 0x1c0, 0x81c0, 0x80e0, 0x8070, 0x8070, 0xc038, 0xe01c, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 159 - 0x0, 0x0, 0x1000, 0x3800, 0x1c00, 0xe00, 0x700, 0x100, 0x80, 0x0, 0x0, 0x0, 0xfff8, 0xe03c, 0x700c, 0x3808, 0x3804, 0x1c04, 0xe00, 0xe00, 0x700, 0x380, 0x3c0, 0x81c0, 0x80e0, 0x8070, 0x8070, 0xc038, 0xe01c, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202, + 0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x202,0x3fe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0x0, + 0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0,0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x7f00, 0x1ffc0, 0x3e0f0, 0x38070, 0x70038, 0x70038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x70038, 0x78038, 0x38078, 0x3e0f0, 0x1ffe0, 0x7f80, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x600,0x600,0x600,0x1f80,0x7fe0,0xfff0,0x1e6f0,0x1c678,0x3c638,0x3861c,0x61c, + 0x61c,0x61c,0x61c,0x61c,0x61c,0x61c,0x3863c,0x3c638,0x1c678,0x1f6f0,0x7fe0,0x1f80,0x600,0x600,0x600,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x1ff80, 0x3c3c0, 0x781c0, 0x300e0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x7ffc, 0x7ffc, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0x1c0070, 0x1c0070, 0xe0038, 0xffffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0x1ff80,0x3c3c0,0x781c0,0x300e0,0xe0,0xe0,0xe0,0xe0,0xe0, + 0xe0,0x7ffc,0x7ffc,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x1c0070,0x1c0070,0xe0038,0xffffc,0x7fffc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23f10, 0x7fff8, 0x3fff0, 0x3e1f0, 0x38070, 0x78078, 0x70038, 0x70038, 0x70038, 0x70038, 0x78078, 0x38070, 0x3e1f0, 0x3fff0, 0x7fff8, 0x23f10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23f10,0x7fff8,0x3fff0,0x3e1f0,0x38070,0x78078, + 0x70038,0x70038,0x70038,0x70038,0x78078,0x38070,0x3e1f0,0x3fff0,0x7fff8,0x23f10,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf001e, 0x7001c, 0x7803c, 0x38038, 0x1c070, 0x1e070, 0xe0e0, 0xf1e0, 0x71c0, 0x7bc0, 0x3b80, 0x1f00, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf001e,0x7001c,0x7803c,0x38038,0x1c070,0x1c070,0xe0e0,0xf1e0,0x71c0,0x7bc0, + 0x3b80,0x1f00,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 166 - 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0,0x0,0x0, // 167 - 0x0, 0x0, 0x0, 0x0, 0x7f00, 0x1ffc0, 0x3c1e0, 0x78070, 0x70070, 0x70, 0xf0, 0x1e0, 0x1fc0, 0xff80, 0x1ffc0, 0x3c0e0, 0x78070, 0x70070, 0x70070, 0x70070, 0x381e0, 0x3e7e0, 0xff80, 0x1fe00, 0x3e000, 0x78000, 0x70000, 0x70000, 0x70038, 0x78078, 0x3c0f0, 0x1ffe0, 0x7f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7f00,0x1ffc0,0x3c1e0,0x78070,0x70070,0x70,0xf0,0x1e0,0x1fc0,0xff80,0x1ffc0,0x3c0e0, + 0x78070,0x70070,0x70070,0x70070,0x381e0,0x3e7e0,0xff80,0x1fe00,0x3e000,0x78000,0x70000,0x70000,0x70038,0x78078,0x3c0f0,0x1ffe0, + 0x7f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 168 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 169 - 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1c0e0, 0x30030, 0x60018, 0xe001c, 0xc1f0c, 0xc7f8c, 0x1c61c6, 0x18c0c6, 0x180066, 0x180066, 0x180066, 0x180066, 0x180066, 0x180066, 0x18c0c6, 0x1ce1c6, 0xc7f8c, 0xc3f0c, 0xe001c, 0x60018, 0x30030, 0x1c0e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1c0e0,0x30030,0x60018,0xe001c,0xc1f0c,0xc7f8c,0x1c61c6,0x18c0c6,0x180066,0x180066, + 0x180066,0x180066,0x180066,0x180066,0x18c0c6,0x1ce1c6,0xc7f8c,0xc3f0c,0xe001c,0x60018,0x30030,0x1c0e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x1c0e0, 0x1c000, 0x1ff80, 0x1ffe0, 0x1c0f0, 0x1c070, 0x1e070, 0x1f0f0, 0x7dfe0, 0x787c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x1c0e0,0x1c000,0x1ff80,0x1ffe0,0x1c0f0,0x1c070,0x1e070,0x1f0f0, + 0x7dfe0,0x787c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0700, 0x70380, 0x381c0, 0x1c0e0, 0xe070, 0x7038, 0x381c, 0x381c, 0x7038, 0xe070, 0x1c0e0, 0x381c0, 0x70380, 0xe0700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0700,0x70380, + 0x381c0,0x1c0e0,0xe070,0x7038,0x381c,0x381c,0x7038,0xe070,0x1c0e0,0x381c0,0x70380,0xe0700,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffc, 0xffffc, 0xe0000, 0xe0000, 0xe0000, 0xe0000, 0xe0000, 0xe0000, 0xe0000, 0xe0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xffffc,0xffffc,0xe0000,0xe0000,0xe0000,0xe0000,0xe0000,0xe0000,0xe0000,0xe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 174 - 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1c0e0, 0x30030, 0x60018, 0xe3fdc, 0xc7fcc, 0xce0cc, 0x1cc0c6, 0x18c0c6, 0x18c0c6, 0x18c0c6, 0x1860c6, 0x187fc6, 0x181fc6, 0x1818c6, 0x1830c6, 0x1c60c6, 0xce0cc, 0xdc0cc, 0xe001c, 0x60018, 0x30030, 0x1c0e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1c0e0,0x30030,0x60018,0xe3fdc,0xc7fcc,0xce0cc,0x1cc0c6,0x18c0c6,0x18c0c6,0x18c0c6, + 0x1860c6,0x187fc6,0x181fc6,0x1818c6,0x1830c6,0x1c60c6,0xce0cc,0xdc0cc,0xe001c,0x60018,0x30030,0x1c0e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 175 - 0x0, 0x3fffff, 0x3fffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x3fffff,0x3fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x7f80, 0x6180, 0xc0c0, 0xc0c0, 0xc0c0, 0xc0c0, 0x6180, 0x7f80, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e00,0x7f80,0x6180,0xc0c0,0xc0c0,0xc0c0,0xc0c0,0x6180,0x7f80,0x1e00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8, + 0xffff8,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0,0x0,0x0,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0xff80, 0x1e3c0, 0x1c1c0, 0x1c000, 0x1c000, 0xe000, 0x7000, 0x3800, 0xe00, 0x700, 0x180, 0xc0, 0x1ffc0, 0x1ffc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e00,0xff80,0x1e3c0,0x1c1c0,0x1c000,0x1c000,0xe000,0x7000,0x3800,0xe00,0x700, + 0x180,0xc0,0x1ffc0,0x1ffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x1c0e0, 0x1c000, 0xe000, 0x7e00, 0x7e00, 0xe000, 0x1c000, 0x1c000, 0x1c0e0, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x1c0e0,0x1c000,0xe000,0x7e00,0x7e00,0xe000,0x1c000,0x1c000, + 0x1c0e0,0x1e1e0,0xffc0,0x3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 180 - 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x1c00, 0xe00, 0x700, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c00,0x1c00,0xe00,0x700,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3e078, 0x3b0f8, 0x3bff8, 0x38f38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3e078,0x3b0f8,0x3bff8,0x38f38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7fff0, 0x187f8, 0x187f8, 0x187fc, 0x187fc, 0x187fc, 0x187fc, 0x187fc, 0x187f8, 0x187f8, 0x187f0, 0x187c0, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x18600, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ffc0,0x7fff0,0x187f8,0x187f8,0x187fc,0x187fc,0x187fc,0x187fc,0x187fc,0x187f8, + 0x187f8,0x187f0,0x187c0,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600,0x18600, + 0x18600,0x18600,0x18600,0x18600,0x0,0x0,0x0,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x70, 0xf8, 0xc0, 0xc0, 0xfc, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x70, + 0xf8,0xc0,0xc0,0xfc,0x3c,0x0,0x0,0x0,0x0, // 185 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1f00, 0x1fe0, 0x1ce0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1ffe0, 0x1ffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c00,0x1f00,0x1fe0,0x1ce0,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1ffe0,0x1ffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x1c0e0, 0x38070, 0x38070, 0x38070, 0x38070, 0x38070, 0x1c0e0, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x1c0e0,0x38070,0x38070,0x38070,0x38070,0x38070,0x1c0e0,0x1e1e0, + 0xffc0,0x3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x381c, 0x7038, 0xe070, 0x1c0e0, 0x381c0, 0x70380, 0xe0700, 0xe0700, 0x70380, 0x381c0, 0x1c0e0, 0xe070, 0x7038, 0x381c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x381c,0x7038, + 0xe070,0x1c0e0,0x381c0,0x70380,0xe0700,0xe0700,0x70380,0x381c0,0x1c0e0,0xe070,0x7038,0x381c,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30038, 0x1803c, 0x1803f, 0xc03b, 0xc038, 0x6038, 0x6038, 0x3038, 0x3038, 0x1838, 0xf1838, 0xf0c38, 0xf8cfe, 0xec6fe, 0xe6600, 0xe6300, 0xe3300, 0xe1980, 0xe0d80, 0x3ffcc0, 0x3ffcc0, 0xe0060, 0xe0060, 0xe0030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x30038,0x1803c,0x1803f,0xc03b,0xc038,0x6038,0x6038,0x3038,0x3038,0x1838, + 0xf1838,0xf0c38,0xf8cfe,0xec6fe,0xe6600,0xe6300,0xe3300,0xe1980,0xe0d80,0x3ffcc0,0x3ffcc0,0xe0060,0xe0060,0xe0030,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30038, 0x1803c, 0x1803f, 0xc03b, 0xc038, 0x6038, 0x6038, 0x3038, 0x3038, 0x1838, 0xf9838, 0x1fec38, 0x3cfcfe, 0x3876fe, 0x380600, 0x380300, 0x1c0300, 0xe0180, 0x78180, 0x1c0c0, 0xe0c0, 0x7060, 0x3ff060, 0x3ff030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x30038,0x1803c,0x1803f,0xc03b,0xc038,0x6038,0x6038,0x3038,0x3038,0x1838, + 0xf9838,0x1fec38,0x3cfcfe,0x3876fe,0x380600,0x380300,0x1c0300,0xe0180,0x78180,0x1c0c0,0xe0c0,0x7060,0x3ff060,0x3ff030,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300f8, 0x181fe, 0x1838f, 0xc387, 0xc380, 0x61c0, 0x60f8, 0x31f8, 0x33c0, 0x1b80, 0xf1b87, 0xf0fcf, 0xf8dfe, 0xec6fc, 0xe6600, 0xe6300, 0xe3300, 0xe1980, 0xe0d80, 0x3ffcc0, 0x3ffcc0, 0xe0060, 0xe0060, 0xe0030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x300f8,0x181fe,0x1838f,0xc387,0xc380,0x61c0,0x60f8,0x31f8,0x33c0,0x1b80, + 0xf1b87,0xf0fcf,0xf8dfe,0xec6fc,0xe6600,0xe6300,0xe3300,0xe1980,0xe0d80,0x3ffcc0,0x3ffcc0,0xe0060,0xe0060,0xe0030,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3800, 0x3800, 0x3800, 0x0, 0x0, 0x0, 0x3800, 0x3800, 0x1c00, 0xe00, 0x700, 0x3c0, 0x1e0, 0x70, 0x78, 0x38, 0xe0038, 0xf0038, 0x70078, 0x7c0f0, 0x3fff0, 0x1ffe0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3800,0x3800,0x3800,0x3800,0x0, + 0x0,0x0,0x3800,0x3800,0x1c00,0xe00,0x700,0x3c0,0x1e0,0x70,0x78,0x38,0xe0038,0xf0038,0x70078,0x7c0f0, + 0x3fff0,0x1ffe0,0x7f00,0x0,0x0,0x0,0x0,0x0,0x0, // 192 - 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x700,0xe00,0x1c00,0x0,0x0,0x1e00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 193 - 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x1e00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 194 - 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x1e00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 195 - 0x30fc0, 0x39ce0, 0x1f860, 0xe060, 0x0, 0x0, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30fc0,0x39ce0,0x1f860,0xe060,0x0,0x0,0x1e00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 196 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x1e00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x1e00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 197 - 0x0, 0x1e00, 0x3f00, 0x6180, 0x6180, 0x6180, 0x3f00, 0x1e00, 0x3e00, 0x3f00, 0x3300, 0x7380, 0x7380, 0xe180, 0xe1c0, 0xc1c0, 0x1c0e0, 0x1c0e0, 0x38060, 0x38070, 0x38070, 0x7fff8, 0x7fff8, 0x70038, 0xe001c, 0xe001c, 0x1c001e, 0x1c000e, 0x1c000e, 0x380007, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1e00,0x3f00,0x6180,0x6180,0x6180,0x3f00,0x1e00,0x3e00,0x3f00,0x3300,0x7380,0x7380,0xe180,0xe1c0,0xc1c0, + 0x1c0e0,0x1c0e0,0x38060,0x38070,0x38070,0x7fff8,0x7fff8,0x70038,0xe001c,0xe001c,0x1c001e,0x1c000e,0x1c000e,0x380007,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfff00, 0xfff00, 0x3b80, 0x3980, 0x3980, 0x39c0, 0x39c0, 0x38c0, 0x38e0, 0x38e0, 0xff860, 0xff870, 0x3870, 0x3870, 0x3ff8, 0x3ff8, 0x3838, 0x381c, 0x381c, 0x381c, 0x380e, 0x380e, 0x1ff80f, 0x1ff807, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfff00,0xfff00,0x3b80,0x3980,0x3980,0x39c0,0x39c0,0x38c0,0x38e0,0x38e0, + 0xff860,0xff870,0x3870,0x3870,0x3ff8,0x3ff8,0x3838,0x381c,0x381c,0x381c,0x380e,0x380e,0x1ff80f,0x1ff807,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe00, 0x3ffc0, 0x7c1e0, 0xf00f0, 0xe0070, 0x1e0038, 0x40038, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x4001c, 0x1e0038, 0xe0038, 0xf0070, 0x78070, 0x3c1e0, 0x1ffc0, 0x7e00, 0x1800, 0x3800, 0x7c00, 0x6000, 0x6000, 0x7e00, 0x1e00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x3ffc0,0x7c1e0,0xf00f0,0xe0070,0x1e0038,0x40038,0x1c,0x1c,0x1c, + 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x4001c,0x1e0038,0xe0038,0xf0070,0x78070,0x3c1e0,0x1ffc0,0x7e00,0x1800,0x3800, + 0x7c00,0x6000,0x6000,0x7e00,0x1e00,0x0,0x0,0x0,0x0, // 200 - 0x700, 0xe00, 0x1c00, 0x3800, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x700,0xe00,0x1c00,0x3800,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 201 - 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 202 - 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 203 - 0x0, 0x1c380, 0x1c380, 0x1c380, 0x0, 0x0, 0x7fff8, 0x7fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3fff8, 0x3fff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x1c380,0x1c380,0x1c380,0x0,0x0,0x7fff8,0x7fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38, + 0x3fff8,0x3fff8,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 204 - 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x700,0xe00,0x1c00,0x0,0x0,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 205 - 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 206 - 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 207 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x3fff8, 0x3fff8, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0x3fff8, 0x3fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x3fff8,0x3fff8,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00, + 0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0xe00,0x3fff8,0x3fff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff8, 0x7ff8, 0x1f038, 0x3c038, 0x38038, 0x70038, 0x70038, 0xe0038, 0xe0038, 0xe0038, 0xe0ffe, 0xe0ffe, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0x70038, 0x70038, 0x70038, 0x38038, 0x3c038, 0x1f038, 0x7ff8, 0x1ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff8,0x7ff8,0x1f038,0x3c038,0x38038,0x70038,0x70038,0xe0038,0xe0038,0xe0038, + 0xe0ffe,0xe0ffe,0xe0038,0xe0038,0xe0038,0xe0038,0x70038,0x70038,0x70038,0x38038,0x3c038,0x1f038,0x7ff8,0x1ff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 209 - 0x30fc0, 0x39ce0, 0x1f860, 0xe060, 0x0, 0x0, 0x70078, 0x700f8, 0x700f8, 0x701f8, 0x701f8, 0x701f8, 0x703b8, 0x703b8, 0x70738, 0x70738, 0x70e38, 0x70e38, 0x71c38, 0x71c38, 0x73838, 0x73838, 0x77038, 0x77038, 0x77038, 0x7e038, 0x7e038, 0x7c038, 0x7c038, 0x78038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30fc0,0x39ce0,0x1f860,0xe060,0x0,0x0,0x70078,0x700f8,0x700f8,0x701f8,0x701f8,0x701f8,0x703b8,0x703b8,0x70738,0x70738, + 0x70e38,0x70e38,0x71c38,0x71c38,0x73838,0x73838,0x77038,0x77038,0x77038,0x7e038,0x7e038,0x7c038,0x7c038,0x78038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 210 - 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x700,0xe00,0x1c00,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x78078,0x38070,0x1e1e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 211 - 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x78078,0x38070,0x1e1e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 212 - 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x78078,0x38070,0x1e1e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 213 - 0x30fc0, 0x39ce0, 0x1f860, 0xe060, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30fc0,0x39ce0,0x1f860,0xe060,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x78078,0x38070,0x1e1e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 214 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e1e0, 0x38070, 0x70038, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0xe001c, 0x70038, 0x70038, 0x78078, 0x38070, 0x1e1e0, 0xffc0, 0x3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x3f00,0xffc0,0x1e1e0,0x38070,0x70038,0x70038,0x70038,0xe001c,0xe001c,0xe001c, + 0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0xe001c,0x70038,0x70038,0x78078,0x38070,0x1e1e0,0xffc0,0x3f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30018, 0x38038, 0x1c070, 0xe0e0, 0x71c0, 0x3b80, 0x1f00, 0xe00, 0x1f00, 0x3b80, 0x71c0, 0xe0e0, 0x1c070, 0x38038, 0x30018, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30018,0x38038,0x1c070,0xe0e0,0x71c0,0x3b80, + 0x1f00,0xe00,0x1f00,0x3b80,0x71c0,0xe0e0,0x1c070,0x38038,0x30018,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3f00, 0xcffc0, 0x7e1e0, 0x78070, 0x78038, 0x78038, 0x7c038, 0xee01c, 0xe701c, 0xe381c, 0xe381c, 0xe1c1c, 0xe0e1c, 0xe071c, 0xe031c, 0xe039c, 0xe01dc, 0x700f8, 0x70078, 0x78078, 0x38078, 0x1e1fc, 0xffcc, 0x3f04, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc3f00,0xcffc0,0x7e1e0,0x78070,0x78038,0x78038,0x7c038,0xee01c,0xe701c,0xe381c, + 0xe381c,0xe1c1c,0xe0e1c,0xe071c,0xe031c,0xe039c,0xe01dc,0x700f8,0x70078,0x78078,0x38078,0x1e1fc,0xffcc,0x3f04,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 217 - 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38030, 0x38070, 0x1c0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x380,0x700,0xe00,0x1c00,0x0,0x0,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38030,0x38070,0x1c0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 218 - 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38030, 0x38070, 0x1c0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38030,0x38070,0x1c0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 219 - 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38030, 0x38070, 0x1c0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38030,0x38070,0x1c0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 220 - 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38030, 0x38070, 0x1c0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038, + 0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38030,0x38070,0x1c0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 221 - 0xe000, 0x7000, 0x3800, 0x1c00, 0x0, 0x0, 0x3c001e, 0x1e003c, 0xe0038, 0xf0078, 0x70070, 0x380e0, 0x3c1e0, 0x1c1c0, 0x1e3c0, 0xe380, 0x7700, 0x7f00, 0x3e00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe000,0x7000,0x3800,0x1c00,0x0,0x0,0x3c001e,0x1e003c,0xe0038,0xf0078,0x70070,0x380e0,0x3c1e0,0x1c1c0,0x1e3c0,0xe380, + 0x7700,0x7f00,0x3e00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x7ff8, 0x1fff8, 0x3c038, 0x78038, 0x70038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0xe0038, 0x70038, 0x78038, 0x3c038, 0x1fff8, 0x7ff8, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x7ff8,0x1fff8,0x3c038,0x78038,0x70038,0xe0038, + 0xe0038,0xe0038,0xe0038,0xe0038,0x70038,0x78038,0x3c038,0x1fff8,0x7ff8,0x38,0x38,0x38,0x38,0x38,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 223 - 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffc0, 0x1e0e0, 0x3c070, 0x38078, 0x38038, 0x38038, 0x1c038, 0x1e038, 0xf038, 0x7838, 0x3838, 0x3838, 0x7838, 0xf038, 0x3e038, 0x7c038, 0xf0038, 0x1e0038, 0x1c0038, 0x1c0038, 0x1c0038, 0x1c0438, 0xe0c38, 0x7fc38, 0x3f838, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3f00,0xffc0,0x1e0e0,0x3c070,0x38078,0x38038,0x38038,0x1c038,0x1e038,0xf038,0x7838,0x3838, + 0x3838,0x7838,0xf038,0x3e038,0x7c038,0xf0038,0x1e0038,0x1c0038,0x1c0038,0x1c0038,0x1c0438,0xe0c38,0x7fc38,0x3f838,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 224 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x380,0x700,0xe00,0x1c00,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 225 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 226 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 227 - 0x0, 0x0, 0x0, 0x0, 0x30380, 0x30fc0, 0x39ce0, 0x1f860, 0xe060, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x30380,0x30fc0,0x39ce0,0x1f860,0xe060,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 228 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 229 - 0x0, 0x0, 0x1e00, 0x3f00, 0x6180, 0x6180, 0x6180, 0x3f00, 0x1e00, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x1c038, 0x38038, 0x38000, 0x38000, 0x38000, 0x3ff80, 0x3fff0, 0x380f8, 0x3803c, 0x3801c, 0x3801c, 0x3c01c, 0x3e01c, 0x7b838, 0x1f1ff8, 0x1e07e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x1e00,0x3f00,0x6180,0x6180,0x6180,0x3f00,0x1e00,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x1c038,0x38038, + 0x38000,0x38000,0x38000,0x3ff80,0x3fff0,0x380f8,0x3803c,0x3801c,0x3801c,0x3c01c,0x3e01c,0x7b838,0x1f1ff8,0x1e07e0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e1f0, 0xff3fc, 0xe3f1c, 0x1c1e0e, 0x1c1e0e, 0x380e00, 0x380e00, 0x380e00, 0x3ffff8, 0x3ffffc, 0xe1e, 0xe0f, 0xe07, 0xe07, 0x181f07, 0x3c1f07, 0x1e398f, 0xff8fe, 0x7e07c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e1f0,0xff3fc,0xe3f1c,0x1c1e0e,0x1c1e0e, + 0x380e00,0x380e00,0x380e00,0x3ffff8,0x3ffffc,0xe1e,0xe0f,0xe07,0xe07,0x181f07,0x3c1f07,0x1e398f,0xff8fe,0x7e07c,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0xffe0, 0x1e0f0, 0x38078, 0x70038, 0x70018, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x70038, 0x70038, 0x38078, 0x1e0f0, 0xffe0, 0x3f80, 0xc00, 0x1c00, 0x3e00, 0x3000, 0x3000, 0x3f00, 0xf00, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00,0xffe0,0x1e0f0,0x38078,0x70038, + 0x70018,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x70038,0x70038,0x38078,0x1e0f0,0xffe0,0x3f80,0xc00,0x1c00, + 0x3e00,0x3000,0x3000,0x3f00,0xf00,0x0,0x0,0x0,0x0, // 232 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x7f00, 0x1ffe0, 0x3c0f0, 0x78078, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xffffc, 0xffffc, 0x1c, 0x1c, 0x1c, 0x38, 0x30038, 0x78078, 0x3e0f0, 0x1ffe0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x380,0x700,0xe00,0x1c00,0x0,0x0,0x7f00,0x1ffe0,0x3c0f0,0x78078,0x70038, + 0x70038,0xe001c,0xe001c,0xffffc,0xffffc,0x1c,0x1c,0x1c,0x38,0x30038,0x78078,0x3e0f0,0x1ffe0,0x7f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 233 - 0x0, 0x0, 0x0, 0x0, 0x1e000, 0xe000, 0x7000, 0x3800, 0x1c00, 0x0, 0x0, 0x7f00, 0x1ffe0, 0x3c0f0, 0x78078, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xffffc, 0xffffc, 0x1c, 0x1c, 0x1c, 0x38, 0x30038, 0x78078, 0x3e0f0, 0x1ffe0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e000,0xe000,0x7000,0x3800,0x1c00,0x0,0x0,0x7f00,0x1ffe0,0x3c0f0,0x78078,0x70038, + 0x70038,0xe001c,0xe001c,0xffffc,0xffffc,0x1c,0x1c,0x1c,0x38,0x30038,0x78078,0x3e0f0,0x1ffe0,0x7f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 234 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x7f00, 0x1ffe0, 0x3c0f0, 0x78078, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xffffc, 0xffffc, 0x1c, 0x1c, 0x1c, 0x38, 0x30038, 0x78078, 0x3e0f0, 0x1ffe0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x7f00,0x1ffe0,0x3c0f0,0x78078,0x70038, + 0x70038,0xe001c,0xe001c,0xffffc,0xffffc,0x1c,0x1c,0x1c,0x38,0x30038,0x78078,0x3e0f0,0x1ffe0,0x7f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 235 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x7f00, 0x1ffe0, 0x3c0f0, 0x78078, 0x70038, 0x70038, 0xe001c, 0xe001c, 0xffffc, 0xffffc, 0x1c, 0x1c, 0x1c, 0x38, 0x30038, 0x78078, 0x3e0f0, 0x1ffe0, 0x7f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x7f00,0x1ffe0,0x3c0f0,0x78078,0x70038, + 0x70038,0xe001c,0xe001c,0xffffc,0xffffc,0x1c,0x1c,0x1c,0x38,0x30038,0x78078,0x3e0f0,0x1ffe0,0x7f00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 236 - 0x0, 0x0, 0x0, 0x0, 0x780, 0x700, 0xe00, 0x1c00, 0x3800, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x780,0x700,0xe00,0x1c00,0x3800,0x0,0x0,0x1fe0,0x1fe0,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 237 - 0x0, 0x0, 0x0, 0x0, 0x1e000, 0xe000, 0x7000, 0x3800, 0x1c00, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e000,0xe000,0x7000,0x3800,0x1c00,0x0,0x0,0x1fe0,0x1fe0,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 238 - 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x7e00, 0xe700, 0x1c380, 0x381c0, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c00,0x7e00,0xe700,0x1c380,0x381c0,0x0,0x0,0x1fe0,0x1fe0,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 239 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c380, 0x1c380, 0x1c380, 0x0, 0x0, 0x1fe0, 0x1fe0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xffff8, 0xffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c380,0x1c380,0x1c380,0x0,0x0,0x1fe0,0x1fe0,0x1c00,0x1c00,0x1c00, + 0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0x1c00,0xffff8,0xffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 240 - 0x0, 0x0, 0x0, 0x0, 0x81c0, 0x1f780, 0x7e00, 0x3f80, 0x7be0, 0x7040, 0xe000, 0x1e000, 0x1c000, 0x3bf80, 0x3ffe0, 0x3e0f0, 0x78038, 0x78038, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x81c0,0x1f780,0x7e00,0x3f80,0x7be0,0x7040,0xe000,0x1e000,0x1c000,0x3bf80,0x3ffe0,0x3e0f0, + 0x78038,0x78038,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 241 - 0x0, 0x0, 0x0, 0x0, 0x181c0, 0x187e0, 0x1ce70, 0xfc30, 0x7030, 0x0, 0x0, 0x7e38, 0xffb8, 0x1e1b8, 0x3c0f8, 0x38078, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x181c0,0x187e0,0x1ce70,0xfc30,0x7030,0x0,0x0,0x7e38,0xffb8,0x1e1b8,0x3c0f8,0x38078, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 242 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x3c078, 0x38038, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x380,0x700,0xe00,0x1c00,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x3c078,0x38038, + 0x7803c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 243 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x3c078, 0x38038, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x3c078,0x38038, + 0x7803c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 244 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x3c078, 0x38038, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x3c078,0x38038, + 0x7803c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 245 - 0x0, 0x0, 0x0, 0x0, 0x181c0, 0x187e0, 0x1ce70, 0xfc30, 0x7030, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x3c078, 0x38038, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x181c0,0x187e0,0x1ce70,0xfc30,0x7030,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x3c078,0x38038, + 0x7803c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 246 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x3f80, 0xffe0, 0x1e0f0, 0x3c078, 0x38038, 0x7803c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x7001c, 0x38038, 0x38038, 0x3c078, 0x1e0f0, 0xffe0, 0x3f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x3f80,0xffe0,0x1e0f0,0x3c078,0x38038, + 0x7803c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x7001c,0x38038,0x38038,0x3c078,0x1e0f0,0xffe0,0x3f80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x7fffc, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0x0, + 0x0,0x7fffc,0x7fffc,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23f80, 0x7ffe0, 0x3e0f0, 0x3c078, 0x3c038, 0x36038, 0x7301c, 0x7181c, 0x71c1c, 0x70e1c, 0x7071c, 0x7039c, 0x7019c, 0x380f8, 0x38078, 0x3c078, 0x1e0f8, 0xfffc, 0x3f88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23f80,0x7ffe0,0x3e0f0,0x3c078,0x3c038, + 0x36038,0x7301c,0x7181c,0x71c1c,0x70e1c,0x7071c,0x7039c,0x7019c,0x380f8,0x38078,0x3c078,0x1e0f8,0xfffc,0x3f88,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 249 - 0x0, 0x0, 0x0, 0x0, 0x3c0, 0x380, 0x700, 0xe00, 0x1c00, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b0f0, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x3c0,0x380,0x700,0xe00,0x1c00,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b0f0,0x3bff0,0x38fc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 250 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x7000, 0x3800, 0x1c00, 0xe00, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b0f0, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x7000,0x3800,0x1c00,0xe00,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b0f0,0x3bff0,0x38fc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 251 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x3f00, 0x7380, 0xe1c0, 0x1c0e0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b0f0, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e00,0x3f00,0x7380,0xe1c0,0x1c0e0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b0f0,0x3bff0,0x38fc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 252 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x38038, 0x3c038, 0x3c078, 0x3b0f0, 0x3bff0, 0x38fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x38038,0x38038,0x38038,0x38038,0x38038, + 0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x38038,0x3c038,0x3c078,0x3b0f0,0x3bff0,0x38fc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 253 - 0x0, 0x0, 0x0, 0x0, 0x1e000, 0xe000, 0x7000, 0x3800, 0x1c00, 0x0, 0x0, 0x1c000e, 0x1e001e, 0xe001c, 0xf003c, 0x70038, 0x70078, 0x38070, 0x380f0, 0x1c0e0, 0x1c0e0, 0x1c1c0, 0xe1c0, 0xe380, 0x7380, 0x7700, 0x3f00, 0x3e00, 0x1e00, 0x1c00, 0xc00, 0xe00, 0xe00, 0x700, 0x380, 0x1f8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1e000,0xe000,0x7000,0x3800,0x1c00,0x0,0x0,0x1c000e,0x1e001e,0xe001c,0xf003c,0x70038, + 0x70078,0x38070,0x380f0,0x1c0e0,0x1c0e0,0x1c1c0,0xe1c0,0xe380,0x7380,0x7700,0x3f00,0x3e00,0x1e00,0x1c00,0xc00,0xe00, + 0xe00,0x700,0x380,0x1f8,0xf8,0x0,0x0,0x0,0x0, // 254 - 0x0, 0x0, 0x0, 0x0, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x7e38, 0xffb8, 0x1c1b8, 0x380f8, 0x38078, 0x70078, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x70038, 0x38078, 0x38078, 0x1c1f8, 0xffb8, 0x7e38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x7e38,0xffb8,0x1c1b8,0x380f8,0x38078, + 0x70078,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x70038,0x38078,0x38078,0x1c1f8,0xffb8,0x7e38,0x38,0x38, + 0x38,0x38,0x38,0x38,0x38,0x0,0x0,0x0,0x0, // 255 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1c0, 0xe1c0, 0xe1c0, 0x0, 0x0, 0x1c000e, 0x1e001e, 0xe001c, 0xf003c, 0x70038, 0x70078, 0x38070, 0x380f0, 0x1c0e0, 0x1c0e0, 0x1c1c0, 0xe1c0, 0xe380, 0x7380, 0x7700, 0x3f00, 0x3e00, 0x1e00, 0x1c00, 0xc00, 0xe00, 0xe00, 0x700, 0x380, 0x1f8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe1c0,0xe1c0,0xe1c0,0x0,0x0,0x1c000e,0x1e001e,0xe001c,0xf003c,0x70038, + 0x70078,0x38070,0x380f0,0x1c0e0,0x1c0e0,0x1c1c0,0xe1c0,0xe380,0x7380,0x7700,0x3f00,0x3e00,0x1e00,0x1c00,0xc00,0xe00, + 0xe00,0x700,0x380,0x1f8,0xf8,0x0,0x0,0x0,0x0, }; // Font: Liberation Mono,33,-1,5,50,0,0,0,0,0 -const unsigned int ff8_height = 51; +const unsigned int ff8_height = 50; const unsigned int ff8_line_height = 50; const unsigned int ff8_width = 26; +const unsigned int ff8_stride = 1; const unsigned char ff8_first_char = ' '; uint32_t ff8_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7000, 0x7000, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7000,0x7000,0x0,0x0,0x0, + 0x0,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 34 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xf87c0, 0xf87c0, 0xf87c0, 0xf87c0, 0xf87c0, 0xf87c0, 0xf87c0, 0xf87c0, 0x70380, 0x70380, 0x70380, 0x70380, 0x70380, 0x70380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf87c0,0xf87c0,0xf87c0,0xf87c0,0xf87c0,0xf87c0,0xf87c0,0xf87c0,0x70380,0x70380,0x70380, + 0x70380,0x70380,0x70380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300c00, 0x300c00, 0x180600, 0x180600, 0x180600, 0x180600, 0x180600, 0xc0300, 0xc0300, 0x1fffffc, 0x1fffffc, 0xc0300, 0x60180, 0x60180, 0x60180, 0x60180, 0x60180, 0x300c0, 0xfffffe, 0xfffffe, 0x300c0, 0x38060, 0x18060, 0x18060, 0x18060, 0x18060, 0x1c070, 0xc030, 0xc030, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x300c00,0x300c00,0x180600,0x180600,0x180600,0x180600,0x180600,0xc0300, + 0xc0300,0x1fffffc,0x1fffffc,0xc0300,0x60180,0x60180,0x60180,0x60180,0x60180,0x300c0,0xfffffe,0xfffffe,0x300c0,0x38060,0x18060,0x18060, + 0x18060,0x18060,0x1c070,0xc030,0xc030,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 36 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7000, 0x7000, 0x7000, 0x3ff00, 0x1fffc0, 0x3fffe0, 0x3e73f0, 0x7c70f8, 0x787078, 0xf07078, 0x707078, 0x7078, 0x70f8, 0x70f0, 0x73f0, 0xffc0, 0x7ff80, 0x1ffc00, 0x7ff000, 0xfc7000, 0xf07000, 0x1f07000, 0x1e07000, 0x1e07030, 0x1e0703c, 0x1e0707c, 0x1f07078, 0xf870f8, 0xfc73f0, 0x7fffe0, 0x1fffc0, 0x7fe00, 0x7000, 0x7000, 0x7000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7000,0x7000,0x7000,0x3ff00,0x1fffc0,0x3fffe0,0x3e73f0,0x7c70f8,0x787078,0xf07078,0x707078, + 0x7078,0x70f8,0x70f0,0x73f0,0xffc0,0x7ff80,0x1ffc00,0x7ff000,0xfc7000,0xf07000,0x1f07000,0x1e07000,0x1e07030,0x1e0703c,0x1e0707c,0x1f07078, + 0xf870f8,0xfc73f0,0x7fffe0,0x1fffc0,0x7fe00,0x7000,0x7000,0x7000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe001f8, 0x7003fc, 0x78070e, 0x38070e, 0x1c0e07, 0x1e0e07, 0xe0e07, 0x70e07, 0x78e07, 0x38e07, 0x1ce07, 0x1e70e, 0xe70e, 0x73fc, 0x7e79f8, 0xff3800, 0x1c39c00, 0x1c39e00, 0x381ce00, 0x381c700, 0x381c780, 0x381c380, 0x381c1c0, 0x381c1e0, 0x381c0e0, 0x1c38070, 0x1c38078, 0xff0038, 0x7e001c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe001f8,0x7003fc,0x78070e,0x38070e,0x1c0e07,0x1e0e07,0xe0e07,0x70e07, + 0x78e07,0x38e07,0x1ce07,0x1e70e,0xe70e,0x73fc,0x7e79f8,0xff3800,0x1c39c00,0x1c39e00,0x381ce00,0x381c700,0x381c780,0x381c380,0x381c1c0,0x381c1e0, + 0x381c0e0,0x1c38070,0x1c38078,0xff0038,0x7e001c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0xfff80, 0x1f0f80, 0x1e07c0, 0x1e03c0, 0x1e03c0, 0x1e03c0, 0xf03c0, 0x7c380, 0x3f380, 0xff80, 0x3f80, 0x300fe0, 0xf00ff0, 0xf81e78, 0x783c3c, 0x783c3c, 0x38781e, 0x3cf01e, 0x1ce01e, 0x1fe01e, 0xfc01e, 0xf803e, 0x1f803c, 0x27fe0fc, 0x3fdfff8, 0x3f8fff0, 0x1e01fc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0xfff80,0x1f0f80,0x1e07c0,0x1e03c0,0x1e03c0,0x1e03c0, + 0xf03c0,0x7c380,0x3f380,0xff80,0x3f80,0x300fe0,0xf00ff0,0xf81e78,0x783c3c,0x783c3c,0x38781e,0x3cf01e,0x1ce01e,0x1fe01e,0xfc01e,0xf803e, + 0x1f803c,0x27fe0fc,0x3fdfff8,0x3f8fff0,0x1e01fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 39 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf800,0xf800,0xf800,0xf800,0xf800,0xf800,0xf800,0xf800,0x7000,0x7000,0x7000, + 0x7000,0x7000,0x7000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 40 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x78000, 0x3c000, 0x1e000, 0xf000, 0xf000, 0x7800, 0x3c00, 0x3c00, 0x1e00, 0x1e00, 0x1e00, 0xf00, 0xf00, 0xf00, 0xf80, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0xf00, 0xf00, 0xf00, 0xf00, 0x1e00, 0x1e00, 0x1e00, 0x3c00, 0x3c00, 0x7800, 0xf000, 0xf000, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x78000,0x3c000,0x1e000,0xf000,0xf000,0x7800,0x3c00,0x3c00,0x1e00,0x1e00,0x1e00, + 0xf00,0xf00,0xf00,0xf80,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0xf00, + 0xf00,0xf00,0xf00,0x1e00,0x1e00,0x1e00,0x3c00,0x3c00,0x7800,0xf000,0xf000,0x1e000,0x3c000,0x78000,0x0,0x0, + 0x0,0x0, // 41 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x780, 0xf00, 0x1e00, 0x3c00, 0x3c00, 0x7800, 0xf000, 0xf000, 0x1e000, 0x1e000, 0x1e000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x78000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x1e000, 0x1e000, 0x1e000, 0xf000, 0xf000, 0x7800, 0x3c00, 0x3c00, 0x1e00, 0xf00, 0x780, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x780,0xf00,0x1e00,0x3c00,0x3c00,0x7800,0xf000,0xf000,0x1e000,0x1e000,0x1e000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x1e000,0x1e000,0x1e000,0xf000,0xf000,0x7800,0x3c00,0x3c00,0x1e00,0xf00,0x780,0x0,0x0, + 0x0,0x0, // 42 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7000, 0x7000, 0x7000, 0x7000, 0x87080, 0x1f77c0, 0x1fffc0, 0x3fe00, 0x7000, 0xf800, 0x1dc00, 0x18c00, 0x38e00, 0x70700, 0x10400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7000,0x7000,0x7000,0x7000,0x87080,0x1f77c0,0x1fffc0,0x3fe00,0x7000,0xf800,0x1dc00, + 0x1cc00,0x38e00,0x70700,0x10400,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x7ffffc, 0x7ffffc, 0x7ffffc, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3800,0x3800,0x3800,0x7ffffc,0x7ffffc,0x7ffffc,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x3e00, 0x3f00, 0x3f00, 0x1f00, 0x1f00, 0xf00, 0xf80, 0x780, 0x780, 0x780, 0x380, 0x3c0, 0x1c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00, + 0x3e00,0x3f00,0x3f00,0x1f00,0x1f00,0xf00,0xf80,0x780,0x780,0x780,0x380,0x3c0,0x1c0,0x0,0x0,0x0, + 0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff80, 0x7ff80, 0x7ff80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff80,0x7ff80,0x7ff80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf800, + 0xf800,0xf800,0xf800,0xf800,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 47 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x780000, 0x380000, 0x3c0000, 0x1e0000, 0x1e0000, 0xf0000, 0xf0000, 0x78000, 0x78000, 0x3c000, 0x1c000, 0x1e000, 0xe000, 0xf000, 0x7800, 0x7800, 0x3c00, 0x3c00, 0x1e00, 0x1e00, 0xf00, 0x700, 0x780, 0x3c0, 0x3c0, 0x1e0, 0x1e0, 0xf0, 0xf0, 0x78, 0x38, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x780000,0x380000,0x3c0000,0x1e0000,0x1e0000,0xf0000,0xf0000,0x78000,0x78000,0x3c000,0x1c000, + 0x1e000,0xe000,0xf000,0x7800,0x7800,0x3c00,0x3c00,0x1e00,0x1e00,0xf00,0x700,0x780,0x3c0,0x3c0,0x1e0,0x1e0, + 0xf0,0xf0,0x78,0x38,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0xfffc0, 0x1f07c0, 0x3c01e0, 0x3c01f0, 0x7800f0, 0x7800f0, 0x7800f0, 0xf00078, 0xf00078, 0xf00078, 0xf0f878, 0xf0f878, 0xf0f878, 0xf0f878, 0xf0f878, 0xf00078, 0xf00078, 0xf00078, 0x7800f0, 0x7800f0, 0x7800f0, 0x3c01e0, 0x3e01e0, 0x1f07c0, 0xfff80, 0x7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0xfffc0,0x1f07c0,0x3c01e0,0x3c01f0,0x7800f0,0x7800f0, + 0x7800f0,0xf00078,0xf00078,0xf00078,0xf0f878,0xf0f878,0xf0f878,0xf0f878,0xf0f878,0xf00078,0xf00078,0xf00078,0x7800f0,0x7800f0,0x7800f0,0x3c01e0, + 0x3e01e0,0x1f07c0,0xfff80,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1f000, 0x1f800, 0x1fc00, 0x1ff80, 0x1eff0, 0x1e3f0, 0x1e070, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e000,0x1f000,0x1f800,0x1fc00,0x1ff80,0x1eff0,0x1e3f0,0x1e070, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1fffff0,0x1fffff0,0x1fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0xfff80, 0x1fffc0, 0x3f03e0, 0x3c01f0, 0x7c00f0, 0x780078, 0x780078, 0x780000, 0x780000, 0x7c0000, 0x3c0000, 0x3e0000, 0x1f0000, 0xf8000, 0x7c000, 0x3f000, 0x1f800, 0x7c00, 0x3e00, 0x1f00, 0xf80, 0x7c0, 0x3e0, 0x1f0, 0xf0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0xfff80,0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x780078,0x780078, + 0x780000,0x780000,0x7c0000,0x3c0000,0x3e0000,0x1f0000,0xf8000,0x7c000,0x3f000,0x1f800,0x7c00,0x3e00,0x1f00,0xf80,0x7c0,0x3e0, + 0x1f0,0xf0,0x7ffff8,0x7ffff8,0x7ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c01f0, 0x3c00f0, 0x3c00f0, 0x3c0000, 0x3c0000, 0x1e0000, 0x1f0000, 0xf8000, 0x7fc00, 0xfc00, 0x7fc00, 0x1f8000, 0x3e0000, 0x3c0000, 0x780000, 0x780078, 0x780078, 0x7800f8, 0x7c00f0, 0x3c01f0, 0x3f03e0, 0x1fffc0, 0xfff80, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0xfffc0,0x1f07e0,0x1e01e0,0x3c01f0,0x3c00f0,0x3c00f0, + 0x3c0000,0x3c0000,0x1e0000,0x1f0000,0xf8000,0x7fc00,0xfc00,0x7fc00,0x1f8000,0x3e0000,0x3c0000,0x780000,0x780078,0x780078,0x7800f8,0x7c00f0, + 0x3c01f0,0x3f03e0,0x1fffc0,0xfff80,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8000, 0xfc000, 0xfc000, 0xfe000, 0xff000, 0xf7000, 0xf3800, 0xf3c00, 0xf1e00, 0xf0e00, 0xf0f00, 0xf0780, 0xf0380, 0xf03c0, 0xf01e0, 0xf00e0, 0xf00f0, 0xf0078, 0xf003c, 0xfffffc, 0xfffffc, 0xfffffc, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0xf8000,0xfc000,0xfe000,0xff000,0xf7000,0xf3800,0xf3c00, + 0xf1c00,0xf0e00,0xf0f00,0xf0780,0xf0380,0xf03c0,0xf01e0,0xf00e0,0xf00f0,0xf0078,0xf003c,0xfffffc,0xfffffc,0xfffffc,0xf0000,0xf0000, + 0xf0000,0xf0000,0xf0000,0xf0000,0xf0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fffe0, 0x1fffe0, 0x1fffe0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1f0, 0xf0, 0xf0, 0x1f8f0, 0x7fef0, 0xffff0, 0x1f03f0, 0x3e01f0, 0x3c0000, 0x7c0000, 0x780000, 0x780000, 0x780000, 0x780000, 0x780078, 0x7c0078, 0x3c00f0, 0x3e01f0, 0x1f83e0, 0xfffe0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffe0,0x1fffe0,0x1fffe0,0x1e0,0x1e0,0x1e0,0x1e0,0x1f0, + 0xf0,0xf0,0x1f8f0,0x7fef0,0xffff0,0x1f03f0,0x3e01f0,0x3c0000,0x7c0000,0x780000,0x780000,0x780000,0x780000,0x780078,0x7c0078,0x3c00f0, + 0x3e01f0,0x1f83e0,0xfffe0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0xfff80, 0x1f87c0, 0x1e01e0, 0x3e01e0, 0x1c00f0, 0xf0, 0x70, 0x70, 0x1f878, 0x7fe78, 0x1fff78, 0x1f07f8, 0x3e01f8, 0x3c00f8, 0x7c0078, 0x780078, 0x780078, 0x780078, 0x780070, 0x780070, 0x7c00f0, 0x3c00e0, 0x3e01e0, 0x1f07c0, 0xfff80, 0x7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0xfff80,0x1f87c0,0x1e01e0,0x3e01e0,0x1c00f0,0xf0, + 0x70,0x70,0x1f878,0x7fe78,0x1fff78,0x1f07f8,0x3e01f8,0x3c00f8,0x7c0078,0x780078,0x780078,0x780078,0x780070,0x780070,0x7c00f0,0x3c00e0, + 0x3e01e0,0x1f07c0,0xfff80,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x780000, 0x3c0000, 0x1e0000, 0xf0000, 0xf0000, 0x78000, 0x78000, 0x3c000, 0x1e000, 0x1e000, 0xf000, 0xf000, 0x7800, 0x7800, 0x3c00, 0x3c00, 0x3c00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x780000,0x3c0000,0x1e0000,0xf0000,0xf0000, + 0x78000,0x78000,0x3c000,0x1e000,0x1e000,0xf000,0xf000,0x7800,0x7800,0x3c00,0x3c00,0x3c00,0x1e00,0x1e00,0x1e00,0x1e00, + 0xf00,0xf00,0xf00,0xf00,0xf00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0xf03c0, 0x7ff80, 0x1fe00, 0xfffc0, 0x1f03e0, 0x3c01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c01f0, 0x3f03f0, 0x1fffe0, 0x7ff80, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x1e01e0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x1e01e0,0xf03c0,0x7ff80,0x1fe00,0xfffc0,0x1f03e0,0x3c01f0,0x3c00f0,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8, + 0x3c01f0,0x3f03f0,0x1fffe0,0x7ff80,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0xfffc0, 0xf83e0, 0x1e01f0, 0x3c00f0, 0x3c00f8, 0x380078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7800f8, 0x7c00f0, 0x7e01f0, 0x7f83e0, 0x7bffc0, 0x79ff80, 0x787e00, 0x380000, 0x380000, 0x3c0000, 0x3c00e0, 0x1e01f0, 0x1f01e0, 0xf83e0, 0x7ffc0, 0x3ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x3ff80,0xfffc0,0xf83e0,0x1e01f0,0x3c00f0,0x3c00f8,0x380078, + 0x780078,0x780078,0x780078,0x780078,0x7800f8,0x7c00f0,0x7e01f0,0x7f83e0,0x7bffc0,0x79ff80,0x787e00,0x380000,0x380000,0x3c0000,0x3c00e0,0x1e01f0, + 0x1f01e0,0xf83e0,0x7ffc0,0x3ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf800,0xf800,0xf800, + 0xf800,0xf800,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf800, + 0xf800,0xf800,0xf800,0xf800,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f800, 0xf800, 0xfc00, 0xfc00, 0x7c00, 0x7c00, 0x3c00, 0x3e00, 0x1e00, 0x1e00, 0x1e00, 0xe00, 0xf00, 0x700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf800,0xf800,0xf800, + 0xf800,0xf800,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800, + 0xf800,0xfc00,0xfc00,0x7c00,0x7c00,0x3c00,0x3e00,0x1e00,0x1e00,0x1e00,0xe00,0xf00,0x700,0x0,0x0,0x0, + 0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400000, 0x700000, 0x7c0000, 0x3f0000, 0xfc000, 0x3f800, 0xfe00, 0x3f80, 0xfe0, 0x3f8, 0xf8, 0x38, 0xf8, 0x3f8, 0xfe0, 0x3f80, 0xfe00, 0x3f800, 0xfe000, 0x3f0000, 0x7c0000, 0x700000, 0x400000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x700000,0x7c0000,0x3f0000,0xfc000, + 0x3f800,0xfe00,0x3f80,0xfe0,0x3f8,0xf8,0x38,0xf8,0x3f8,0xfe0,0x3f80,0xfe00,0x3f800,0xfe000,0x3f0000,0x7c0000, + 0x700000,0x400000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff8, + 0x7ffff8,0x7ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x38, 0xf8, 0x3f0, 0xfc0, 0x3f00, 0x1fc00, 0x7f000, 0x1fc000, 0x7f0000, 0x7c0000, 0x700000, 0x7c0000, 0x7f0000, 0x1fc000, 0x7f000, 0x1fc00, 0x7f00, 0x1fc0, 0x3f0, 0xf8, 0x38, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x38,0xf8,0x3f0,0xfc0, + 0x3f00,0x1fc00,0x7f000,0x1fc000,0x7f0000,0x7c0000,0x700000,0x7c0000,0x7f0000,0x1fc000,0x7f000,0x1fc00,0x7f00,0x1fc0,0x3f0,0xf8, + 0x38,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0x1fffe0, 0x3f03f0, 0x3c00f8, 0x7c0078, 0x780078, 0x78003c, 0x78003c, 0x780000, 0x7c0000, 0x3c0000, 0x3e0000, 0x1f0000, 0xf8000, 0x7e000, 0x1f000, 0xf000, 0x7800, 0x3800, 0x3c00, 0x3c00, 0x0, 0x0, 0x0, 0x3c00, 0x3c00, 0x3c00, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ff80,0x1fffe0,0x3f03f0,0x3c00f8,0x7c0078,0x780078,0x78003c, + 0x78003c,0x780000,0x7c0000,0x3c0000,0x3e0000,0x1f0000,0xf8000,0x7e000,0x1f000,0xf000,0x7800,0x3800,0x3c00,0x3c00,0x0,0x0, + 0x0,0x3c00,0x3c00,0x3c00,0x3c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 64 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f800, 0xffe00, 0x1fff00, 0x3e0fc0, 0x7803c0, 0xf001e0, 0xe000f0, 0x1e00070, 0x1f8f078, 0x1fdfc38, 0x3fd9e3c, 0x39f071c, 0x39e071c, 0x39e039c, 0x39e039e, 0x39e038e, 0x38e01ce, 0x38f01ce, 0x38f01ce, 0x38f01ce, 0x38f01ce, 0x18701ce, 0x1c781ce, 0x1c781ce, 0x1c7c1ce, 0xc7c38e, 0x67639c, 0x7f3f1c, 0x1e1e1c, 0x3c, 0x38, 0x78, 0x2000f0, 0x7801f0, 0x3e07e0, 0x1fffc0, 0x7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f800,0xffe00,0x1fff00,0x3e0fc0,0x7803c0,0xf001e0,0xe000f0,0x1e00070,0x1f8f078,0x1fdfc38,0x3fd9e3c, + 0x39f071c,0x39e071c,0x39e039c,0x39e039e,0x39e038e,0x38e01ce,0x38f01ce,0x38f01ce,0x38f01ce,0x38f01ce,0x18701ce,0x1c781ce,0x1c781ce,0x1c7c1ce,0xc7c38e,0x67639c, + 0x7f3f1c,0x1e1e1c,0x3c,0x38,0x78,0x2000f0,0x7801f0,0x3e07e0,0x1fffc0,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xfc00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf800,0xfc00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfff8, 0x7fff8, 0xffff8, 0x1f8078, 0x3e0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x1e0078, 0xf8078, 0x7fff8, 0x1fff8, 0xffff8, 0x3f0078, 0x7c0078, 0x780078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf80078, 0x7c0078, 0x3f0078, 0x1ffff8, 0xffff8, 0x1fff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff8,0x7fff8,0xffff8,0x1f8078,0x3e0078,0x3c0078,0x3c0078,0x3c0078, + 0x3c0078,0x3c0078,0x1e0078,0xf8078,0x7fff8,0x1fff8,0xffff8,0x3f0078,0x7c0078,0x780078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf80078, + 0x7c0078,0x3f0078,0x1ffff8,0xffff8,0x1fff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x100078, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x200078, 0xf00078, 0x7000f8, 0x7800f0, 0x3c01f0, 0x3f07e0, 0x1fffc0, 0x7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x7ff80,0xfffc0,0x1f07e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x100078,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x200078,0xf00078,0x7000f8,0x7800f0, + 0x3c01f0,0x3f07e0,0x1fffc0,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x3fff8, 0x7fff8, 0xfc078, 0x1f0078, 0x3e0078, 0x7c0078, 0x780078, 0x780078, 0xf80078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0x780078, 0x780078, 0x780078, 0x3c0078, 0x3e0078, 0x1f0078, 0xfc078, 0x7fff8, 0x3fff8, 0x7ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8,0x3fff8,0x7fff8,0xfc078,0x1f0078,0x3e0078,0x7c0078,0x780078, + 0x780078,0xf80078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0x780078,0x780078,0x780078,0x3c0078,0x3e0078, + 0x1f0078,0xfc078,0x7fff8,0x3fff8,0x7ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x3ffff8, 0x3ffff8, 0x3ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0x78,0x78,0x3ffff8,0x3ffff8,0x3ffff8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff0, 0x7ffff0, 0x7ffff0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff0,0x7ffff0,0x7ffff0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x3ffff0,0x3ffff0,0x3ffff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f83e0, 0x3e01f0, 0x3c00f0, 0x7c0078, 0x180078, 0x78, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x7fe03c, 0x7fe03c, 0x7fe03c, 0x78003c, 0x78003c, 0x780038, 0x780078, 0x780078, 0x7800f8, 0x7800f0, 0x7801f0, 0x7f07e0, 0x3fffc0, 0xfff80, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f83e0,0x3e01f0,0x3c00f0,0x7c0078,0x180078, + 0x78,0x3c,0x3c,0x3c,0x3c,0x3c,0x7fe03c,0x7fe03c,0x7fe03c,0x78003c,0x78003c,0x780038,0x780078,0x780078,0x7800f8,0x7800f0, + 0x7801f0,0x7f07e0,0x3fffc0,0xfff80,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3ffff8, 0x3ffff8, 0x3ffff8, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078, + 0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3ffff8,0x3ffff8,0x3ffff8,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078, + 0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff0,0x3ffff0,0x3ffff0,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x3ffff0,0x3ffff0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffc00, 0x1ffc00, 0x1ffc00, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e0000, 0x1e00e0, 0x1e00f0, 0x1e01f0, 0xf01e0, 0xf03e0, 0xf87c0, 0x7ffc0, 0x3ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffc00,0x1ffc00,0x1ffc00,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000, + 0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e00e0,0x1e00f0,0x1e01f0,0xf01e0, + 0xf03e0,0xf87c0,0x7ffc0,0x3ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f00078, 0xf80078, 0x7c0078, 0x3e0078, 0x1f0078, 0xf8078, 0x7c078, 0x3e078, 0x1e078, 0xf078, 0x7878, 0x3c78, 0x3e78, 0x3f78, 0x7ff8, 0xfbf8, 0x1f1f8, 0x1f0f8, 0x3e078, 0x7c078, 0xf8078, 0xf0078, 0x1f0078, 0x3e0078, 0x7c0078, 0xf80078, 0xf80078, 0x1f00078, 0x3e00078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f00078,0xf80078,0x7c0078,0x3e0078,0x1f0078,0xf8078,0x7c078,0x3e078, + 0x1e078,0xf078,0x7878,0x3c78,0x3e78,0x3f78,0x7ff8,0xfbf8,0x1f1f8,0x1f0f8,0x3e078,0x7c078,0xf8078,0x1f0078,0x1f0078,0x3e0078, + 0x7c0078,0xf80078,0xf80078,0x1f00078,0x3e00078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x7fffe0, 0x7fffe0, 0x7fffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0, + 0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0, + 0x1e0,0x1e0,0x7fffe0,0x7fffe0,0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00fc, 0xfc00fc, 0xfc01fc, 0xfe01fc, 0xfe01fc, 0xfe03fc, 0xf703bc, 0xf703bc, 0xf787bc, 0xf3873c, 0xf38f3c, 0xf3cf3c, 0xf1ce3c, 0xf1ce3c, 0xf1fc3c, 0xf0fc3c, 0xf0fc3c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00fc,0xfc00fc,0xfc01fc,0xfe01fc,0xfe01fc,0xfe03fc,0xf703bc,0xf703bc, + 0xf787bc,0xf3873c,0xf38f3c,0xf3cf3c,0xf1ce3c,0xf1ce3c,0xf1fc3c,0xf0fc3c,0xf0fc3c,0xf0783c,0xf0783c,0xf0783c,0xf0003c,0xf0003c,0xf0003c,0xf0003c, + 0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800f8, 0x7801f8, 0x7801f8, 0x7803f8, 0x7803f8, 0x7807f8, 0x7807f8, 0x780f78, 0x780f78, 0x780e78, 0x781e78, 0x781c78, 0x783c78, 0x783878, 0x787878, 0x787078, 0x78f078, 0x78e078, 0x79e078, 0x79e078, 0x7bc078, 0x7bc078, 0x7b8078, 0x7f8078, 0x7f0078, 0x7f0078, 0x7e0078, 0x7e0078, 0x7c0078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800f8,0x7801f8,0x7801f8,0x7803f8,0x7803f8,0x7807f8,0x7807f8,0x780f78, + 0x780f78,0x780e78,0x781e78,0x781c78,0x783c78,0x783878,0x787878,0x787078,0x78f078,0x78e078,0x79e078,0x79e078,0x7bc078,0x7bc078,0x7b8078,0x7f8078, + 0x7f0078,0x7f0078,0x7e0078,0x7e0078,0x7c0078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff8, 0x7fff8, 0x1ffff8, 0x1f8078, 0x3e0078, 0x3c0078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c0078, 0x3e0078, 0x1f8078, 0xffff8, 0x7fff8, 0x1fff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff8,0x7fff8,0x1ffff8,0x1f8078,0x3e0078,0x3c0078,0x780078,0x780078, + 0x780078,0x780078,0x780078,0x7c0078,0x3c0078,0x3e0078,0x1f8078,0xffff8,0x7fff8,0x1fff8,0x78,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0x78,0x78,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0x1fe00, 0xf000, 0x1f000, 0x1e000, 0x3e000, 0x7c000, 0xff8000, 0xff0000, 0xfe0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0x1fe00,0xf000,0x1f000,0x1e000,0x3e000,0x7c000,0xff8000,0xff0000,0xfe0000,0x0,0x0,0x0, + 0x0,0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff8, 0x1ffff8, 0x3ffff8, 0x7e0078, 0x780078, 0xf80078, 0xf00078, 0xf00078, 0xf00078, 0xf00078, 0x780078, 0x7c0078, 0x3e0078, 0x1ffff8, 0xffff8, 0xfff8, 0x1f078, 0x1e078, 0x3c078, 0x7c078, 0x78078, 0xf0078, 0x1f0078, 0x1e0078, 0x3c0078, 0x7c0078, 0xf80078, 0xf00078, 0x1f00078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fff8,0x1ffff8,0x3ffff8,0x7e0078,0x780078,0xf80078,0xf00078,0xf00078, + 0xf00078,0xf00078,0x780078,0x7c0078,0x3e0078,0x1ffff8,0xffff8,0xfff8,0x1f078,0x1e078,0x3c078,0x7c078,0x78078,0xf0078,0x1f0078,0x1e0078, + 0x3c0078,0x7c0078,0xf80078,0xf00078,0x1f00078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ffc0, 0x1fffe0, 0x1f03f0, 0x3e00f0, 0x3c0078, 0x780078, 0x380078, 0x78, 0xf8, 0x1f0, 0x7f0, 0x7fe0, 0x3ffc0, 0xffe00, 0x3fe000, 0x7f0000, 0x7c0000, 0xf80000, 0xf00000, 0xf00030, 0xf0003c, 0xf0007c, 0xf80078, 0x7c00f8, 0x7e03f0, 0x3fffe0, 0xfffc0, 0x3fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ffc0,0x1fffe0,0x1f03f0,0x3e00f0,0x3c0078,0x780078,0x380078, + 0x78,0xf8,0x1f0,0x7f0,0x7fe0,0x3ffc0,0xffe00,0x3fe000,0x7f0000,0x7c0000,0xf80000,0xf00000,0xf00030,0xf0003c,0xf0007c,0xf80078, + 0x7c00f8,0x7e03f0,0x3fffe0,0xfffc0,0x3fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fffffe, 0x1fffffe, 0x1fffffe, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffffe,0x1fffffe,0x1fffffe,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c00f0, 0x3e00f0, 0x1f03e0, 0x1fffe0, 0x7ffc0, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078, + 0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c0078,0x3c00f0, + 0x3e00f0,0x1f03e0,0x1fffe0,0x7ffc0,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c0000f, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0xf0003c, 0xf0003c, 0xf8007c, 0x780078, 0x780078, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1e01e0, 0xe01c0, 0xf03c0, 0xf03c0, 0x70780, 0x78780, 0x78780, 0x3cf00, 0x3cf00, 0x1ce00, 0x1ce00, 0x1fe00, 0xfc00, 0xfc00, 0xfc00, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c0000f,0x1e0001e,0x1e0001e,0x1e0001e,0xf0003c,0xf0003c,0xf8007c,0x780078, + 0x780078,0x3c00f0,0x3c00f0,0x3c00f0,0x1e01e0,0x1e01e0,0xe01c0,0xf03c0,0xf03c0,0x70780,0x78780,0x78780,0x3cf00,0x3cf00,0x1ce00,0x1ce00, + 0x1fe00,0xfc00,0xfc00,0xfc00,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c0000f, 0x3c0000f, 0x3c0000f, 0x1c0000e, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x1e0fc1e, 0xe0fc1c, 0xe1fe3c, 0xf1fe3c, 0xf1fe3c, 0xf1fe3c, 0xf1fe3c, 0x73cf38, 0x73cf38, 0x73cf38, 0x73cf38, 0x73cf78, 0x7b8f78, 0x7f87f8, 0x3f87f0, 0x3f87f0, 0x3f87f0, 0x3f87f0, 0x3f03f0, 0x3f03f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c0000f,0x3c0000f,0x3c0000f,0x1c0000e,0x1e0001e,0x1e0001e,0x1e0001e,0x1e0001e, + 0x1e0001e,0x1e0fc1e,0xe0fc1c,0xe1fe3c,0xf1fe3c,0xf1fe3c,0xf1fe3c,0xf1fe3c,0x73cf38,0x73cf38,0x73cf38,0x73cf38,0x73cf78,0x7b8f78,0x7f87f8,0x3f87f0, + 0x3f87f0,0x3f87f0,0x3f87f0,0x3f03f0,0x3f03f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8007c, 0x780078, 0x3c00f0, 0x3e01f0, 0x1e01e0, 0x1f03e0, 0xf87c0, 0x78780, 0x7cf80, 0x3cf00, 0x1fe00, 0x1fe00, 0xfc00, 0x7800, 0xfc00, 0xfc00, 0x1fe00, 0x3ff00, 0x3cf00, 0x78780, 0xf87c0, 0xf03c0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x7c00f8, 0x780078, 0xf8007c, 0x1f0003e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8007c,0x780078,0x3c00f0,0x3e01f0,0x1e01e0,0x1f03e0,0xf87c0,0x78780, + 0x7cf80,0x3cf00,0x1fe00,0x1fe00,0xfc00,0x7800,0xfc00,0xfc00,0x1fe00,0x3ff00,0x3cf00,0x78780,0xf87c0,0xf03c0,0x1f03e0,0x3e01f0, + 0x3c00f0,0x7c00f8,0x780078,0xf8007c,0x1f0003e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f0003e, 0xf0003c, 0x780078, 0x7c0078, 0x3c00f0, 0x3e01f0, 0x1e01e0, 0xf03c0, 0xf83c0, 0x78780, 0x3cf00, 0x3cf00, 0x1fe00, 0x1fe00, 0xfc00, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0003e,0xf0003c,0x780078,0x7c0078,0x3c00f0,0x3e01f0,0x1e01e0,0xf03c0, + 0xf83c0,0x78780,0x3cf00,0x3cf00,0x1fe00,0x1fe00,0xfc00,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff0, 0x7ffff0, 0x7ffff0, 0x3c0000, 0x3e0000, 0x1f0000, 0xf0000, 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x1f000, 0xf800, 0x7800, 0x7c00, 0x3e00, 0x1e00, 0x1f00, 0xf80, 0x780, 0x3c0, 0x3e0, 0x1e0, 0xf0, 0xf8, 0x78, 0xfffffc, 0xfffffc, 0xfffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff0,0x7ffff0,0x7ffff0,0x3c0000,0x3e0000,0x1f0000,0xf0000,0xf8000, + 0x7c000,0x3c000,0x1e000,0x1f000,0xf800,0x7800,0x7c00,0x3e00,0x1e00,0x1f00,0xf80,0x780,0x3c0,0x3e0,0x1e0,0xf0, + 0xf8,0x78,0xfffffc,0xfffffc,0xfffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 91 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xffe00, 0xffe00, 0xffe00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0x1e00, 0xffe00, 0xffe00, 0xffe00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xffe00,0xffe00,0xffe00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, + 0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, + 0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0xffe00,0xffe00,0xffe00,0x0,0x0, + 0x0,0x0, // 92 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0x38, 0x78, 0xf0, 0xf0, 0x1e0, 0x1c0, 0x3c0, 0x780, 0x780, 0xf00, 0xf00, 0x1e00, 0x1c00, 0x3c00, 0x7800, 0x7800, 0xf000, 0xf000, 0x1e000, 0x3c000, 0x3c000, 0x78000, 0x78000, 0xf0000, 0xe0000, 0x1e0000, 0x3c0000, 0x3c0000, 0x780000, 0x780000, 0xf00000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3c,0x38,0x78,0xf0,0xf0,0x1e0,0x1c0,0x3c0,0x780,0x780,0xf00, + 0xf00,0x1e00,0x1c00,0x3c00,0x7800,0x7800,0xf000,0xf000,0x1e000,0x3c000,0x3c000,0x78000,0x78000,0xf0000,0xe0000,0x1e0000, + 0x3c0000,0x3c0000,0x780000,0x780000,0xf00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 93 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffc0, 0x3ffc0, 0x3ffc0, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3ffc0, 0x3ffc0, 0x3ffc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3ffc0,0x3ffc0,0x3ffc0,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3ffc0,0x3ffc0,0x3ffc0,0x0,0x0, + 0x0,0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0xfc00, 0xfc00, 0x1ee00, 0x1ce00, 0x3cf00, 0x38700, 0x38700, 0x70380, 0x70380, 0xf03c0, 0xe01c0, 0xe01e0, 0x1c00e0, 0x1c00e0, 0x3c0070, 0x380070, 0x780078, 0x700038, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800,0xfc00,0xfc00,0x1ee00,0x1ce00,0x3cf00,0x38700,0x38700, + 0x70380,0x70380,0xf03c0,0xe01c0,0xe01e0,0x1c00e0,0x1c00e0,0x3c0070,0x380070,0x780078,0x700038,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffffff, 0x3ffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffff,0x3ffffff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 96 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e00, 0x3c00, 0x7800, 0xf000, 0x1c000, 0x38000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e00,0x3c00,0x7800,0xf000,0x1c000,0x38000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 98 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x3f0f0, 0xffcf0, 0x1ffef0, 0x1f07f0, 0x3e03f0, 0x3c01f0, 0x3c01f0, 0x7801f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x3c01f0, 0x3c01f0, 0x3e03f0, 0x1f07f0, 0x1ffef0, 0xffcf0, 0x3f0f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x3f0f0,0xffcf0,0x1ffef0, + 0x1f07f0,0x3e03f0,0x3c01f0,0x3c01f0,0x7801f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x3c01f0,0x3c01f0, + 0x3e03f0,0x1f07f0,0x1ffef0,0xffcf0,0x3f0f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7c00f0, 0x7800f0, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x780070, 0x7800f0, 0x3c00f0, 0x3e01e0, 0x1f07e0, 0xfffc0, 0x7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7c00f0,0x7800f0,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x780070,0x7800f0,0x3c00f0, + 0x3e01e0,0x1f07e0,0xfffc0,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 100 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c3f00, 0x3cffc0, 0x3dffe0, 0x3f83e0, 0x3f01f0, 0x3e00f0, 0x3e00f0, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3e0078, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c3f00,0x3cffc0,0x3dffe0, + 0x3f83e0,0x3f01f0,0x3e00f0,0x3e00f0,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3e0078,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7800f0, 0x7800f0, 0x700078, 0xf00078, 0xf00078, 0xfffff8, 0xfffff8, 0xfffff8, 0x78, 0x78, 0x78, 0x70, 0xf0, 0x1800f0, 0x7c01e0, 0x3f07e0, 0x1fffc0, 0xfff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7800f0,0x7800f0,0x700078,0xf00078,0xf00078,0xfffff8,0xfffff8,0xfffff8,0x78,0x78,0x78,0x70,0xf0,0x1800f0, + 0x7c01e0,0x3f07e0,0x1fffc0,0xfff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 102 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fe000, 0x7ffc00, 0x7ffe00, 0x3e00, 0x1f00, 0xf00, 0xf00, 0xf00, 0x3ffffc, 0x3ffffc, 0x3ffffc, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7fe000,0x7ffc00,0x7ffe00,0x3e00,0x1f00,0xf00,0xf00,0xf00,0x3ffffc,0x3ffffc,0x3ffffc, + 0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00, + 0xf00,0xf00,0xf00,0xf00,0xf00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c3f00, 0x3cffc0, 0x3dffe0, 0x3fc3e0, 0x3f01f0, 0x3f00f0, 0x3e00f0, 0x3e0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3e0078, 0x3e00f8, 0x3e00f0, 0x3f01f0, 0x3dc3f0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x3c0000, 0x3c0000, 0x3c0000, 0x1e01e0, 0x1e01e0, 0x1f87e0, 0xfffc0, 0x7ff80, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c3f00,0x3cffc0,0x3dffe0, + 0x3fc3e0,0x3f01f0,0x3f00f0,0x3e00f0,0x3e0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3e0078,0x3e00f8,0x3e00f0, + 0x3f01f0,0x3dc3f0,0x3dffe0,0x3cffc0,0x3c3f00,0x3c0000,0x3c0000,0x3c0000,0x1e01e0,0x1e01e0,0x1f87e0,0xfffc0,0x7ff80,0x1fe00,0x0,0x0, + 0x0,0x0, // 104 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x3f0f0, 0xffcf0, 0x1ffef0, 0x1f07f0, 0x3e03f0, 0x3e01f0, 0x3c01f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x3f0f0,0xffcf0,0x1ffef0, + 0x1f07f0,0x3e03f0,0x3e01f0,0x3c01f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 105 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xf000, 0xf000, 0xf000, 0xf000, 0x0, 0x0, 0x0, 0x0, 0xffe0, 0xffe0, 0xffe0, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf000,0xf000,0xf000,0xf000,0x0,0x0,0x0,0x0,0xffe0,0xffe0,0xffe0, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 106 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x0, 0x0, 0x0, 0x0, 0x3ffc0, 0x3ffc0, 0x3ffc0, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3e000, 0x1e000, 0x1f808, 0xfff8, 0x7ff8, 0x1ff0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3c000,0x3c000,0x3c000,0x3c000,0x0,0x0,0x0,0x0,0x3ffc0,0x3ffc0,0x3ffc0, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3e000,0x1e000,0x1f808,0xfff8,0x7ff8,0x1ff0,0x0,0x0, + 0x0,0x0, // 107 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0xf801e0, 0x7c01e0, 0x3e01e0, 0x1f01e0, 0xf01e0, 0x781e0, 0x3c1e0, 0x1e1e0, 0xf1e0, 0x79e0, 0x7de0, 0x7fe0, 0xffe0, 0x1f7e0, 0x1e3e0, 0x3c1e0, 0x7c1e0, 0xf81e0, 0xf01e0, 0x1e01e0, 0x3e01e0, 0x3c01e0, 0x7801e0, 0xf801e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0xf801e0,0x7c01e0,0x3e01e0, + 0x1f01e0,0xf01e0,0x781e0,0x3c1e0,0x1e1e0,0xf1e0,0x79e0,0x7de0,0x7fe0,0xffe0,0x1f7e0,0x1e3e0,0x3c1e0,0x7c1e0,0xf81e0,0xf01e0, + 0x1e01e0,0x3e01e0,0x3c01e0,0x7801e0,0xf801e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 108 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xffc0, 0xffc0, 0xffc0, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xffc0,0xffc0,0xffc0,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0f1c, 0x7f1f9c, 0x7fbffc, 0xf9bcfc, 0xf0f87c, 0xf0f87c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0xf0783c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0f1c,0x7f1f9c,0x7fbffc, + 0xf9bcfc,0xf0f87c,0xf0f87c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c, + 0xf0783c,0xf0783c,0xf0783c,0xf0783c,0xf0783c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f0f0, 0xffcf0, 0x1ffef0, 0x1f07f0, 0x3e03f0, 0x3e01f0, 0x3c01f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0f0,0xffcf0,0x1ffef0, + 0x1f07f0,0x3e03f0,0x3e01f0,0x3c01f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x7800f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff80,0xfffc0, + 0x1f07e0,0x1e01e0,0x3c00f0,0x3c00f0,0x7800f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8,0x3c00f0,0x3c00f0, + 0x1e01e0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f0f0, 0xffcf0, 0x1ffef0, 0x1f07f0, 0x3e03f0, 0x3c01f0, 0x3c01f0, 0x7801f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x3c01f0, 0x3c01f0, 0x3e03f0, 0x1f07f0, 0x1ffef0, 0xffcf0, 0x3f0f0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0f0,0xffcf0,0x1ffef0, + 0x1f07f0,0x3e03f0,0x3c01f0,0x3c01f0,0x7801f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x3c01f0,0x3c01f0, + 0x3e03f0,0x1f07f0,0x1ffef0,0xffcf0,0x3f0f0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0, + 0x0,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c3f00, 0x3cffc0, 0x3dffe0, 0x3f83e0, 0x3f01f0, 0x3e00f0, 0x3e00f0, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3c0078, 0x3e0078, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x3c0000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c3f00,0x3cffc0,0x3dffe0, + 0x3f83e0,0x3f01f0,0x3e00f0,0x3e00f0,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3c0078,0x3e0078,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x0,0x0, + 0x0,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fc1e0, 0x3fe1e0, 0x3ff1e0, 0x3ff9c0, 0x7fc0, 0x1fc0, 0xfc0, 0x7c0, 0x7c0, 0x7c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc1e0,0x3fe1e0,0x3ff1e0, + 0x3ff9c0,0x7fc0,0x1fc0,0xfc0,0x7c0,0x7c0,0x7c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0, + 0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x1f07c0, 0x3e01e0, 0x3c01e0, 0x1e0, 0x1e0, 0x3e0, 0x1fc0, 0x1ffc0, 0x7ff00, 0x1ffc00, 0x3fc000, 0x7e0000, 0x7c0000, 0x780000, 0x780000, 0x7800e0, 0x7c01f0, 0x3e03e0, 0x1fffe0, 0xfff80, 0x3fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x1f07c0,0x3e01e0,0x3c01e0,0x1e0,0x1e0,0x3e0,0x1fc0,0x1ffc0,0x7ff00,0x1ffc00,0x3fc000,0x7e0000,0x7c0000,0x780000,0x780000,0x7800e0, + 0x7c01f0,0x3e03e0,0x1fffe0,0xfff80,0x3fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, 0xf00, 0x1ffff0, 0x1ffff0, 0x1ffff0, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0x201f00, 0x3ffe00, 0x3ffc00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xf00,0xf00,0x1ffff0,0x1ffff0,0x1ffff0, + 0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00, + 0xf00,0x201f00,0x3ffe00,0x3ffc00,0xff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0001e, 0xf0003c, 0xf0003c, 0xf0007c, 0x780078, 0x780078, 0x3c00f0, 0x3c00f0, 0x1c01f0, 0x1e01e0, 0x1e01e0, 0xf03c0, 0xf03c0, 0x703c0, 0x78780, 0x78780, 0x3cf00, 0x3cf00, 0x1ce00, 0x1ee00, 0x1fe00, 0xfc00, 0xfc00, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0001e,0xf0003c,0xf0003c, + 0xf0007c,0x780078,0x780078,0x3c00f0,0x3c00f0,0x1c01f0,0x1e01e0,0x1e01e0,0xf03c0,0xf03c0,0x703c0,0x78780,0x78780,0x3cf00,0x3cf00,0x1ce00, + 0x1ee00,0x1fe00,0xfc00,0xfc00,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c0000f, 0x3c0000f, 0x3c0000f, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x1e0781e, 0x1e0fc1e, 0xf0fc1c, 0xf0fc3c, 0xf1ce3c, 0xf1ce3c, 0xf1ce3c, 0xf1cf3c, 0x73873c, 0x738738, 0x7b87b8, 0x7f03b8, 0x7f03f8, 0x7f03f8, 0x7f01f8, 0x3e01f0, 0x3e01f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c0000f,0x3c0000f,0x3c0000f, + 0x1e0001e,0x1e0001e,0x1e0001e,0x1e0001e,0x1e0781e,0x1e0fc1e,0xf0fc1c,0xf0fc3c,0xf1ce3c,0xf1ce3c,0xf1ce3c,0xf3cf3c,0x73873c,0x738738,0x7b87b8,0x7f03b8, + 0x7f03f8,0x7f03f8,0x7f01f8,0x3e01f0,0x3e01f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8007c, 0x7800f8, 0x3c00f0, 0x3e01e0, 0x1e03e0, 0xf03c0, 0x78780, 0x78f80, 0x3cf00, 0x1fe00, 0x1fc00, 0xfc00, 0xfc00, 0x1fc00, 0x1fe00, 0x3ff00, 0x7cf00, 0x78780, 0xf87c0, 0x1f03e0, 0x1e01e0, 0x3c00f0, 0x7c00f8, 0xf8007c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8007c,0x7800f8,0x3c00f0, + 0x3e01f0,0x1e03e0,0xf03c0,0x78780,0x78f80,0x3cf00,0x1fe00,0x1fc00,0xfc00,0xfc00,0x1fc00,0x1fe00,0x3ff00,0x7cf00,0x78780,0xf87c0, + 0x1f03e0,0x3e01e0,0x3c00f0,0x7c00f8,0xf8007c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0001e, 0x1e0003e, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x3c00f0, 0x3c00f0, 0x3c01e0, 0x1e01e0, 0x1e01c0, 0xf03c0, 0xf0380, 0x78780, 0x78780, 0x78f00, 0x3cf00, 0x3ce00, 0x1fe00, 0x1fc00, 0xfc00, 0xf800, 0x7800, 0x7800, 0x7800, 0x3c00, 0x3c00, 0x1e00, 0x1f00, 0xf80, 0x7f8, 0x3f8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0001e,0x1e0003e,0xf0003c, + 0xf0003c,0x780078,0x780078,0x3c00f0,0x3c00f0,0x3c01e0,0x1e01e0,0x1e01c0,0xf03c0,0xf03c0,0x78780,0x78780,0x78f00,0x3cf00,0x3ce00,0x1fe00, + 0x1fc00,0xfc00,0xf800,0x7800,0x7800,0x7800,0x3c00,0x3c00,0x1e00,0x1f00,0xf80,0x7f8,0x3f8,0xf8,0x0,0x0, + 0x0,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x3e0000, 0x1f0000, 0xf8000, 0x7c000, 0x3c000, 0x3e000, 0x1f000, 0xf800, 0x7c00, 0x7c00, 0x3e00, 0x1f00, 0xf80, 0x780, 0x7c0, 0x3e0, 0x1f0, 0xf8, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff0,0x3ffff0,0x3ffff0, + 0x3e0000,0x1f0000,0xf8000,0x7c000,0x3c000,0x3e000,0x1f000,0xf800,0x7c00,0x7c00,0x3e00,0x1f00,0xf80,0x780,0x7c0,0x3e0, + 0x1f0,0xf8,0x7ffff8,0x7ffff8,0x7ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 123 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f8000, 0x7fe000, 0x7ff000, 0xf000, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7c00, 0x3e00, 0x1f00, 0xfe0, 0x3e0, 0xfe0, 0x1f00, 0x3e00, 0x7c00, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0xf000, 0x7ff000, 0x7fe000, 0x7f8000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f8000,0x7fe000,0x7ff000,0xf000,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7c00,0x3e00,0x1f00,0xfe0,0x3e0,0xfe0,0x1f00,0x3e00,0x7c00,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0xf000,0x7ff000,0x7fe000,0x7f8000,0x0,0x0, + 0x0,0x0, // 124 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0, + 0x0,0x0, // 125 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xff0, 0x3ff0, 0x7ff0, 0x7800, 0xf800, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0x1f000, 0x1e000, 0x7c000, 0x3f8000, 0x3e0000, 0x3f8000, 0x7c000, 0x3e000, 0x1f000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0x7800, 0x7ff0, 0x3ff0, 0xff0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xff0,0x3ff0,0x7ff0,0x7800,0xf800,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0x1f000,0x1e000,0x7c000,0x3f8000,0x3e0000,0x3f8000,0x7c000,0x3e000,0x1f000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x7800,0x7ff0,0x3ff0,0xff0,0x0,0x0, + 0x0,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff0, 0xc0fffc, 0xfffffc, 0xfff80c, 0x3f8000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff0,0xc0fffc,0xfffffc,0xfff80c,0x3f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 127 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffe, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26303fe,0xddb604,0x22e72f6,0x3c6f6f4,0x3e2a4f2,0x3e102f6,0x1a10604,0x153936e,0x2fad090,0x2719800,0x1c31606,0x34c1d18,0x4c1328,0xfdfba6,0x204f0fc,0x65c27e, + 0x2c02180,0x2d788,0x3dfce,0x2227df4,0x38603f6,0x3020070,0x1370f18,0x278f30,0x28e098,0xf13fc8,0x797800,0x231b000,0x1a3c7fe,0x2d82324,0x2586606,0x17ec2f4, + 0x3ff02f6,0x1aee6f4,0x260206,0x2646a4,0x106f3fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffe, 0x3fff, 0x924, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e0, 0x1e0, 0x3f0, 0x738, 0xe1c, 0x1c0c, 0x1006, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 130 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffe, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0x802, 0xffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff8,0xfff8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 131 - 0x0, 0xe07000, 0x1f07800, 0xe07800, 0xe07000, 0x0, 0x0, 0x2001ffe, 0x7f0, 0x7c0, 0x7c0, 0xf80, 0xf00, 0x1f00, 0x2003e00, 0x3003c00, 0x1807c00, 0x180f800, 0xc0f000, 0x41f000, 0x63e000, 0x33c000, 0x17c000, 0x1f8000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xf0000, 0xfd000, 0xfff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8040, 0x3c1e0, 0x7c3e0, 0x7c3e0, 0x7c3e0, 0x40200, 0x40200, 0x40200, 0x20100, 0x20100, 0x10080, 0x10080, 0x8040, 0x4020, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1008040, 0x383c1e0, 0x3c3e1e0, 0x3c3c1e0, 0x381c1e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x600, 0x700, 0x700, 0x700, 0x600, 0x600, 0x600, 0x600, 0x200, 0x200, 0x1f238, 0x1fffc, 0xd278, 0x200, 0x600, 0x600, 0x700, 0x600, 0x700, 0x700, 0x700, 0x600, 0x700, 0x700, 0x700, 0x600, 0x700, 0x700, 0x600, 0x700, 0x600, 0x700, 0x600, 0x600, 0x600, 0x600, 0x600, 0x200, 0x600, 0x200, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x600, 0x700, 0x700, 0x600, 0x700, 0x600, 0x600, 0x200, 0x200, 0x1f278, 0x1fffc, 0xe238, 0x200, 0x600, 0x600, 0x700, 0x600, 0x700, 0x700, 0x600, 0x200, 0x700, 0x700, 0x700, 0x600, 0x600, 0x600, 0x200, 0x4210, 0x1fef8, 0x1fbfc, 0x8210, 0x200, 0x600, 0x600, 0x700, 0x600, 0x700, 0x700, 0x600, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 136 - 0x7c000, 0xfe000, 0x1c3800, 0x300c00, 0x0, 0x0, 0x0, 0x3fffffc, 0x3d2afe0, 0x2000780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x100780, 0x100780, 0x100780, 0x180780, 0x1c0780, 0x1fff80, 0x3d2780, 0x180780, 0x100780, 0x100780, 0x100780, 0x100780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x2000780, 0x3aaafe8, 0x3fffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 137 - 0x0, 0x0, 0x0, 0x0, 0x780, 0x18c0, 0x3060, 0xe030, 0x2034038, 0x1fc4038, 0x4018, 0x4038, 0x2004018, 0x3004038, 0x1804038, 0x1804038, 0xc04038, 0x606030, 0x703060, 0x3018c0, 0x180780, 0xc0000, 0xc0000, 0x2060000, 0x3030000, 0x3838000, 0x3818000, 0x180c000, 0x3806000, 0x1c07000, 0x1803000, 0x3801800, 0x1800c00, 0x3800c00, 0x3800600, 0x3000700, 0x2000380, 0x180, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 138 - 0x70700, 0x1de00, 0xf800, 0x7000, 0x0, 0x0, 0x20fe00, 0x63a380, 0x3600c0, 0x7c0060, 0x380070, 0x300030, 0x700038, 0x200038, 0x600038, 0x200078, 0x2000f0, 0x1f0, 0x17f0, 0xffe0, 0x7ffc0, 0xfff80, 0x3ffc00, 0x3fc000, 0x7c0000, 0x780000, 0x700000, 0xf00008, 0xe00018, 0xe00008, 0x600018, 0x700018, 0x700038, 0x300078, 0x1800f8, 0x1e0718, 0x7fe08, 0xa000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 139 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x207e00, 0x63c380, 0x3600c0, 0x3c0060, 0x780070, 0x300030, 0x300038, 0x600038, 0x200038, 0x600078, 0x200070, 0x1f0, 0xff0, 0xffe0, 0x7ffc0, 0xfff80, 0x3ffc00, 0x3fc000, 0x7c0000, 0x780000, 0x700000, 0xf00008, 0xe00018, 0xe00008, 0x700018, 0x600018, 0x700038, 0x300078, 0x3800f8, 0xe0718, 0x7fe08, 0xa000, 0x0, 0x2000, 0x7000, 0x7800, 0x7000, 0x8000, 0x4000, 0x4000, 0x4000, 0x2000, 0x1000, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 140 - 0x3c000, 0xf000, 0x3800, 0x800, 0x0, 0x0, 0x20fe00, 0x639380, 0x3600c0, 0x7c0060, 0x380070, 0x300030, 0x700038, 0x200038, 0x600038, 0x200078, 0x200070, 0x1f0, 0xff0, 0xffe0, 0x7ffc0, 0xfff80, 0x3ffc00, 0x3fc000, 0x7c0000, 0x780000, 0xf00000, 0x700008, 0xe00018, 0xf00008, 0x600018, 0x600018, 0x700038, 0x300078, 0x3800f8, 0x1e0718, 0x7fe08, 0xa000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 141 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f8000, 0x3c0e000, 0x3803800, 0x3001c00, 0x3000f00, 0x3000700, 0x3000780, 0x30003c0, 0x30001e0, 0x30001e0, 0x30001e0, 0x20001f0, 0x30000f0, 0x30000f0, 0x30000f0, 0x30000f0, 0x20000f0, 0x30001f0, 0x30000f0, 0x30001f0, 0x30001f0, 0x30001e0, 0x30003e0, 0x30003c0, 0x30003c0, 0x3000780, 0x3000f00, 0x3001e00, 0x3803c00, 0x3807000, 0x3f7c000, 0x2a0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300018, 0x38001c, 0x3c007c, 0x1e0070, 0xf01f0, 0x781e0, 0x3c780, 0x1ef80, 0xff00, 0x7c00, 0x7c00, 0x7e00, 0x1ff00, 0x3c780, 0x3c3c0, 0xf81e0, 0x1e00f0, 0x1e0078, 0x7c003c, 0x30001c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3c00, 0x7c00, 0x3c00, 0x1800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffffe, 0x7ffffe, 0x7ffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3c00, 0x7c00, 0x3c00, 0x800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x80, 0x40, 0x20, 0x20, 0x10, 0x10, 0x10, 0xd0, 0x1f0, 0x1f0, 0x1e0, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x1e0, 0x3e0, 0x3e0, 0x2e0, 0x200, 0x200, 0x200, 0x100, 0x100, 0x80, 0x80, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10080, 0x10080, 0x8040, 0x4020, 0x4020, 0x2010, 0x2010, 0x2010, 0x1a0d0, 0x3e1f0, 0x3e1f0, 0x3c1e0, 0x3c0e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8040, 0x3c1e0, 0x7c3e0, 0x7c3e0, 0x7c3e0, 0x40200, 0x40200, 0x40200, 0x20100, 0x20100, 0x10080, 0x10080, 0x8040, 0x4020, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x160000, 0x7fc000, 0xffe000, 0x1fff000, 0x1fff000, 0x3fff800, 0x3fff800, 0x3fff800, 0x3fffc00, 0x3fff800, 0x3fff800, 0x3fff800, 0x1fff000, 0xffe000, 0x7fc000, 0x1f0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 152 - 0x0, 0x0, 0x0, 0x0, 0x1800, 0x3800, 0x7e00, 0xe600, 0x18300, 0x30180, 0x60040, 0x0, 0x0, 0x0, 0x0, 0x1ffffc, 0x3a01f0, 0x3800e0, 0x2000e0, 0x2000e0, 0x2001e0, 0x2080e0, 0x180e0, 0xc0e0, 0xc0e0, 0xffe0, 0xd1e0, 0x80e0, 0x4180e0, 0x4080e0, 0x4001e0, 0x6000e0, 0x2000e0, 0x6000e0, 0x3000e0, 0x3e01f0, 0x3ffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400000, 0x600000, 0xc00000, 0x1800000, 0x1800000, 0x3000000, 0x3000000, 0x2000000, 0x3c00000, 0x3f80000, 0x3f0000, 0x7e000, 0xf800, 0x1f00, 0x7e0, 0xf8, 0xf0, 0xfc0, 0x3e00, 0x3f000, 0xf8000, 0x27c0000, 0x3f00000, 0x3800000, 0x2000000, 0x3000000, 0x3000000, 0x1800000, 0x1c00000, 0xc00000, 0x600000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 154 - 0x0, 0x0, 0x0, 0x0, 0x8010, 0xc030, 0x6060, 0x39c0, 0x1f80, 0xf00, 0x600, 0x0, 0x0, 0x0, 0x100, 0x19ee0, 0x1e030, 0x1c018, 0x18018, 0x1800c, 0x1801c, 0x1001c, 0x38, 0xf8, 0x1ff0, 0x7fe0, 0xff80, 0x1f800, 0x3c000, 0x38000, 0x3800c, 0x30004, 0x1800c, 0x1800c, 0x1801c, 0xe07c, 0x3fc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x500, 0x19ae0, 0x1e030, 0x1c018, 0x18018, 0x1800c, 0x1801c, 0x10018, 0x3c, 0xf8, 0x1ff0, 0x7fe0, 0xff80, 0x1f800, 0x3c000, 0x38000, 0x3800c, 0x30004, 0x3800c, 0x1800c, 0x1801c, 0xe07c, 0x3fc8, 0x0, 0x0, 0x200, 0xf00, 0xf00, 0xe00, 0x800, 0x800, 0x0, 0x400, 0x400, 0x200, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 156 - 0x0, 0x0, 0x0, 0x6000, 0xf000, 0x7000, 0x3800, 0x1c00, 0xe00, 0x700, 0x100, 0x100, 0x0, 0x0, 0x10500, 0x19ae0, 0x1e030, 0x1c018, 0x18018, 0x1800c, 0x1801c, 0x1001c, 0x38, 0xf8, 0x1ff0, 0x7fe0, 0xff80, 0x1f800, 0x3c000, 0x38000, 0x3800c, 0x30004, 0x3800c, 0x1800c, 0x1801c, 0xe07c, 0x3fc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa000, 0x3ff5c00, 0x3e0700, 0x1c0380, 0x1c01c0, 0x1c00e0, 0x1c00f0, 0x180070, 0x1c0078, 0x1c0078, 0x180038, 0x3fc0078, 0x1c0038, 0x1c0078, 0x180078, 0x1c0078, 0x1c0070, 0x1c00f0, 0x1c00e0, 0x1c01e0, 0x1c0380, 0x3e0700, 0x3ffbc00, 0x2000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 158 - 0x0, 0x0, 0x0, 0x0, 0x10020, 0x18060, 0xe1c0, 0x3300, 0x3f00, 0x1e00, 0x400, 0x0, 0x0, 0x0, 0x0, 0xffff8, 0x700f8, 0x78038, 0x3c018, 0x1c008, 0x1e008, 0xf008, 0x7008, 0x7800, 0x3c00, 0x1e00, 0xe00, 0xf00, 0x80780, 0x80380, 0x803c0, 0xc01e0, 0xc00e0, 0xc00f0, 0x60078, 0xfa038, 0xffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 159 - 0x0, 0x0, 0x0, 0xc000, 0x1e000, 0xe000, 0x7000, 0x3800, 0x1c00, 0xe00, 0x300, 0x0, 0x0, 0x0, 0x0, 0xffff8, 0xf80f8, 0x78038, 0x3c018, 0x1c008, 0x1e008, 0xf008, 0x7008, 0x7800, 0x3c00, 0x1e00, 0xe00, 0xf00, 0x80780, 0x80380, 0x803c0, 0xc01e0, 0xc00e0, 0x400f0, 0xe0078, 0xfa038, 0x7fffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802,0x802, + 0x802,0x802,0x802,0x802,0xffe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800, + 0x7800,0x0,0x0,0x0,0x0,0x3800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf000, 0xf000, 0xf000, 0xf000, 0x3fc00, 0xfff80, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7c00f0, 0x7800f0, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7800f8, 0x7800f0, 0x7c00f0, 0x3e01e0, 0x3f07e0, 0x1fffc0, 0xfff80, 0x3fe00, 0xf000, 0xf000, 0xf000, 0xf000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7000,0x7000,0x7000,0x3fc00,0xfff80,0x1fffc0,0x3e77e0,0x7c71e0, + 0x7870f0,0xf070f0,0x7078,0x7078,0x7078,0x7078,0x7078,0x7078,0x7078,0x7078,0x307078,0xf070f0,0xf870f0,0x7c71e0,0x3e77e0,0x1fffc0, + 0xfff80,0x3fe00,0x7000,0x7000,0x7000,0x7000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f800, 0xffe00, 0x3fff00, 0x3e0f80, 0x7c0780, 0x1803c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3fffc, 0x3fffc, 0x3fffc, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3e0, 0x1e001e0, 0x1e000f0, 0xf00078, 0xfffffc, 0x7ffffc, 0x3ffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0xffe00,0x3fff00,0x3e0f80,0x7c0780,0x1803c0,0x3c0,0x3c0, + 0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3fffc,0x3fffc,0x3fffc,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3e0,0x1e001e0, + 0x1e000f0,0xf00078,0xfffffc,0x7ffffc,0x3ffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8fc20, 0x1fff70, 0x3ffff0, 0x1f87e0, 0x1e01e0, 0x1c00e0, 0x3c00f0, 0x380070, 0x380070, 0x380070, 0x380070, 0x380070, 0x3c00f0, 0x1c00e0, 0x1e01e0, 0x1f87e0, 0x1ffff0, 0x3ffff8, 0x18fc70, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8fc20,0x1fff70,0x3ffff0, + 0x1f87e0,0x1e01e0,0x1c00e0,0x3c00f0,0x380070,0x380070,0x380070,0x380070,0x380070,0x3c00f0,0x1c00e0,0x1e01e0,0x1f87e0,0x1ffff0,0x3ffff8,0x18fc70, + 0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f0003e, 0xf0003c, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1e01e0, 0xf03c0, 0xf03c0, 0x78780, 0x7cf00, 0x3cf00, 0x1fe00, 0x1fe00, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x7800, 0x7800, 0x7800, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0003e,0xf0003c,0x780078,0x780078,0x3c00f0,0x3e01f0,0x1e01e0,0xf03c0, + 0xf03c0,0x78780,0x7cf00,0x3cf00,0x1fe00,0x1fe00,0x7ffff8,0x7ffff8,0x7ffff8,0x7800,0x7800,0x7800,0x7ffff8,0x7ffff8,0x7ffff8,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 166 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0, + 0x0,0x0, // 167 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fe00, 0xfff80, 0x1fffe0, 0x3e03e0, 0x7c01f0, 0x7800f0, 0xf0, 0xf0, 0x1f0, 0x7e0, 0x7fc0, 0x3ff00, 0xfff80, 0x1fc7c0, 0x3f01e0, 0x7c00f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7801f0, 0x3c03e0, 0x1e1fe0, 0xfff80, 0x7fe00, 0x1ff000, 0x3f8000, 0x3e0000, 0x7c0000, 0x780000, 0x780070, 0x7800f8, 0x7c00f0, 0x3f03f0, 0x1fffe0, 0xfffc0, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3fe00,0xfff80,0x1fffe0,0x3e03e0,0x7c01f0,0x7800f0,0xf0,0xf0,0x1f0,0x7e0,0x7fc0, + 0x3ff00,0xfff80,0x1fc7c0,0x3f01e0,0x7c00f0,0x7800f0,0x7800f0,0x7800f0,0x7801f0,0x3c03e0,0x1e1fe0,0xfff80,0x7fe00,0x1ff000,0x3f8000,0x3e0000, + 0x7c0000,0x780000,0x780070,0x7800f8,0x7c00f0,0x3f03f0,0x1fffe0,0xfffc0,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 168 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 169 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0x7ff80, 0xf03c0, 0x1c00e0, 0x380070, 0x700038, 0x600018, 0xe0fc1c, 0xc1fe0c, 0xc3870c, 0xc7038c, 0x1820386, 0x18001c6, 0x18001c6, 0x18001c6, 0x18001c6, 0x18001c6, 0x18001c6, 0x18001c6, 0x18001c6, 0x18603c6, 0xc6038c, 0xc7038c, 0xc38f0c, 0xe1fe1c, 0x60fc18, 0x700038, 0x380070, 0x1c00e0, 0xf03c0, 0x7ff80, 0xfc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc00,0x7ff80,0xf03c0,0x1c00e0,0x380070,0x700038,0x600018,0xe0fc1c,0xc1fe0c,0xc3870c,0xc7038c, + 0x1820386,0x18001c6,0x18001c6,0x18001c6,0x18001c6,0x18001c6,0x18001c6,0x18001c6,0x18001c6,0x18603c6,0xc6038c,0xc7038c,0xc38f0c,0xe1fe1c,0x60fc18,0x700038, + 0x380070,0x1c00e0,0xf03c0,0x7ff80,0xfc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe00, 0x1ff80, 0x3c3c0, 0x781e0, 0x700e0, 0x70000, 0x70000, 0x7ff00, 0x7ffc0, 0x701e0, 0x70070, 0x78070, 0x78070, 0xf60f0, 0x3e3fe0, 0x3c0f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x1ff80,0x3c3c0,0x781e0,0x700e0,0x70000,0x70000,0x7ff00,0x7ffc0, + 0x701e0,0x70070,0x78070,0x78070,0xf60f0,0x3e3fe0,0x3c0f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf03c00, 0x781e00, 0x3c0f00, 0x1e0780, 0x1f07c0, 0xf83e0, 0x7c1f0, 0x3e0f8, 0x1e078, 0x3e0f8, 0x7c1f0, 0xf83e0, 0x1f07c0, 0x1e0780, 0x3c0f00, 0x781e00, 0xf03c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf03c00,0x781e00,0x3c0f00,0x1e0780,0x1f07c0,0xf83e0,0x7c1f0,0x3e0f8,0x1e078,0x3e0f8,0x7c1f0,0xf83e0,0x1f07c0,0x1e0780,0x3c0f00, + 0x781e00,0xf03c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x700000, 0x700000, 0x700000, 0x700000, 0x700000, 0x700000, 0x700000, 0x700000, 0x700000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x700000,0x700000,0x700000,0x700000,0x700000,0x700000,0x700000,0x700000, + 0x700000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 174 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0x7ff80, 0xf03c0, 0x1c00e0, 0x380070, 0x700038, 0x600018, 0xe1ff9c, 0xc3ff8c, 0xc7038c, 0xce038c, 0x18e0386, 0x18e0386, 0x18e0386, 0x18f0386, 0x1870386, 0x183ff86, 0x181ff86, 0x180c386, 0x181c386, 0x1838386, 0xc7038c, 0xc7038c, 0xce038c, 0xfc039c, 0x600018, 0x700038, 0x380070, 0x1c00e0, 0xf03c0, 0x7ff80, 0xfc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc00,0x7ff80,0xf03c0,0x1c00e0,0x380070,0x700038,0x600018,0xe1ff9c,0xc3ff8c,0xc7038c,0xce038c, + 0x18e0386,0x18e0386,0x18e0386,0x18f0386,0x1870386,0x183ff86,0x181ff86,0x180c386,0x181c386,0x1838386,0xc7038c,0xc7038c,0xce038c,0xfc039c,0x600018,0x700038, + 0x380070,0x1c00e0,0xf03c0,0x7ff80,0xfc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 175 - 0x0, 0x0, 0x0, 0x3ffffff, 0x3ffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x3ffffff,0x3ffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x1fe00, 0x38700, 0x30300, 0x60180, 0x60180, 0x60180, 0x60180, 0x30300, 0x38700, 0x1fe00, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800,0x1fe00,0x38700,0x30300,0x60180,0x60180,0x60180,0x60180, + 0x30300,0x38700,0x1fe00,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x7ffffc, 0x7ffffc, 0x7ffffc, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x7ffffc, 0x7ffffc, 0x7ffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3800,0x3800,0x3800,0x3800,0x3800, + 0x3800,0x3800,0x3800,0x7ffffc,0x7ffffc,0x7ffffc,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x3800,0x0,0x0, + 0x0,0x0,0x7ffffc,0x7ffffc,0x7ffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0x3fe00, 0x38700, 0x70380, 0x70380, 0x70000, 0x70000, 0x38000, 0x3c000, 0x1e000, 0xf000, 0x3800, 0x1c00, 0xe00, 0x700, 0x380, 0x7ff80, 0x7ff80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x3fe00,0x38700,0x70380,0x70380,0x70000,0x70000,0x38000,0x3c000, + 0x1e000,0xf000,0x3800,0x1c00,0xe00,0x700,0x380,0x7ff80,0x7ff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f800, 0x7fe00, 0x70f00, 0xe0380, 0xe0380, 0xe0000, 0xe0000, 0x78000, 0x1f000, 0x3f000, 0x70000, 0xe0000, 0xe0000, 0xe0380, 0xe0380, 0x70700, 0x7fe00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0x7fe00,0x70f00,0xe0380,0xe0380,0xe0000,0xe0000,0x78000,0x1f000, + 0x3f000,0x70000,0xe0000,0xe0000,0xe0380,0xe0380,0x70700,0x7fe00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 180 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x1f000, 0xf000, 0x7800, 0x1c00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e000,0x1f000,0xf000,0x7800,0x1c00,0xe00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3e00f0, 0x3e01f0, 0x3f01f0, 0x3f83f0, 0x3dfff0, 0x3cfef0, 0x3c7cf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3e00f0,0x3e01f0, + 0x3f01f0,0x3f83f0,0x3dfff0,0x3cfef0,0x3c7cf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0, + 0x0,0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff00, 0x7fffc0, 0x7fffe0, 0xe1ff0, 0xe1ff8, 0xe1ff8, 0xe1ff8, 0xe1ff8, 0xe1ff8, 0xe1ff8, 0xe1ff8, 0xe1ff0, 0xe1ff0, 0xe1fe0, 0xe1f80, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0xe1c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff00,0x7fffc0,0x7fffe0,0xe1ff0,0xe1ff8,0xe1ff8,0xe1ff8,0xe1ff8, + 0xe1ff8,0xe1ff8,0xe1ff8,0xe1ff0,0xe1ff0,0xe1fe0,0xe1f80,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00, + 0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0xe1c00,0x0,0x0,0x0,0x0, + 0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf800,0xf800,0xf800,0xf800,0xf800,0xf800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0x60, 0x1e0, 0x3f0, 0x780, 0x700, 0x780, 0x3f8, 0x1f8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x60,0x60,0x1e0,0x3f0,0x780,0x700,0x780,0x3f8,0x1f8,0x0,0x0, + 0x0,0x0, // 185 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7000, 0x7800, 0x7e00, 0x77c0, 0x71c0, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0x7000, 0xfffc0, 0xfffc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7000,0x7800,0x7e00,0x77c0,0x71c0,0x7000,0x7000,0x7000,0x7000, + 0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0x7000,0xfffc0,0xfffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0x3ff00, 0x78780, 0xe01c0, 0xe01c0, 0x1c00e0, 0x1c00e0, 0x1c00e0, 0x1c00e0, 0x1c00e0, 0x1c00e0, 0xe01c0, 0xe01c0, 0x78780, 0x3ff00, 0xfc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x3ff00,0x78780,0xe01c0,0xe01c0,0x1c00e0,0x1c00e0,0x1c00e0,0x1c00e0, + 0x1c00e0,0x1c00e0,0xe01c0,0xe01c0,0x78780,0x3ff00,0xfc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf03c, 0x1e078, 0x3c0f0, 0x781e0, 0xf83e0, 0x1f07c0, 0x3e0f80, 0x7c1f00, 0x781e00, 0x7c1f00, 0x3e0f80, 0x1f07c0, 0xf83e0, 0x781e0, 0x3c0f0, 0x1e078, 0xf03c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf03c,0x1e078,0x3c0f0,0x781e0,0xf83e0,0x1f07c0,0x3e0f80,0x7c1f00,0x781e00,0x7c1f00,0x3e0f80,0x1f07c0,0xf83e0,0x781e0,0x3c0f0, + 0x1e078,0xf03c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380070, 0x18007c, 0x1c007f, 0xc0077, 0xe0070, 0x60070, 0x70070, 0x30070, 0x38070, 0x18070, 0xc070, 0xe070, 0x6070, 0xf07070, 0xf033fe, 0xf83bfe, 0xec1800, 0xee1c00, 0xe70c00, 0xe30e00, 0xe18700, 0xe0c300, 0xe06380, 0x3ffe180, 0x3ffe1c0, 0xe000c0, 0xe000e0, 0xe00060, 0xe00070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x380070,0x18007c,0x1c007f,0xc0077,0xe0070,0x60070,0x70070,0x30070, + 0x38070,0x18070,0xc070,0xe070,0x6070,0xf07070,0xf033fe,0xf83bfe,0xec1800,0xee1c00,0xe70c00,0xe30e00,0xe18700,0xe0c300,0xe06380,0x3ffe180, + 0x3ffe1c0,0xe000c0,0xe000e0,0xe00060,0xe00070,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x380070, 0x18007c, 0x1c007f, 0xc0077, 0xe0070, 0x60070, 0x70070, 0x30070, 0x38070, 0x18070, 0xc070, 0xe070, 0x6070, 0x7e7070, 0xff33fe, 0x1e3bbfe, 0x1c1d800, 0x1c1dc00, 0x1c00c00, 0x1e00e00, 0xe00700, 0x780300, 0x3c0380, 0x1e0180, 0x701c0, 0x380c0, 0x1c0e0, 0x1ffc060, 0x1ffc070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x380070,0x18007c,0x1c007f,0xc0077,0xe0070,0x60070,0x70070,0x30070, + 0x38070,0x18070,0xc070,0xe070,0x6070,0x7e7070,0xff33fe,0x1e3bbfe,0x1c1d800,0x1c1dc00,0x1c00c00,0x1e00e00,0xe00700,0x780300,0x3c0380,0x1e0180, + 0x701c0,0x380c0,0x1c0e0,0x1ffc060,0x1ffc070,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7000f8, 0x3003fc, 0x38078e, 0x180707, 0x1c0707, 0xc0700, 0xe03c0, 0x601f0, 0x703f0, 0x30780, 0x18700, 0x1c707, 0xc707, 0xf0e78e, 0xf063fe, 0xf870f8, 0xec3000, 0xee3800, 0xe71800, 0xe31c00, 0xe18e00, 0xe0c600, 0xe06700, 0x3ffe300, 0x3ffe380, 0xe00180, 0xe001c0, 0xe000c0, 0xe000e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7000f8,0x3003fc,0x38078e,0x180707,0x1c0707,0xc0700,0xe03c0,0x601f0, + 0x703f0,0x30780,0x18700,0x1c707,0xc707,0xf0e78e,0xf063fe,0xf870f8,0xec3000,0xee3800,0xe71800,0xe31c00,0xe18e00,0xe0c600,0xe06700,0x3ffe300, + 0x3ffe380,0xe00180,0xe001c0,0xe000c0,0xe000e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf000, 0xf000, 0xf000, 0xf000, 0x0, 0x0, 0x0, 0xf000, 0xf000, 0x7000, 0x7800, 0x3c00, 0x3e00, 0x1f80, 0x7c0, 0x3e0, 0x1f0, 0xf0, 0xf8, 0x78, 0xf00078, 0xf00078, 0x780078, 0x7800f8, 0x7c00f0, 0x3f03f0, 0x1fffe0, 0x7ff80, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf000,0xf000, + 0xf000,0xf000,0x0,0x0,0x0,0xf000,0xf000,0x7000,0x7800,0x3c00,0x3e00,0x1f80,0x7c0,0x3e0,0x1f0,0xf0, + 0xf8,0x78,0xf00078,0xf00078,0x780078,0x7800f8,0x7c00f0,0x3f03f0,0x1fffe0,0x7ff80,0x1fe00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 192 - 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0xf800, 0xfc00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0xf800,0xfc00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 193 - 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0xf800, 0xfc00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0xf800,0xfc00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 194 - 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0xf800, 0xfc00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0xf800,0xfc00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 195 - 0x180f00, 0x183f80, 0x1cff80, 0xff9c0, 0xfe0c0, 0x780c0, 0x0, 0x0, 0xf800, 0xfc00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x180f00,0x183f80,0x1cff80,0xff9c0,0xfe0c0,0x780c0,0x0,0x0,0xf800,0xfc00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 196 - 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0xf800, 0xfc00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0xf800,0xfc00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 197 - 0x0, 0x0, 0x7800, 0x1fe00, 0x3ff00, 0x38700, 0x38700, 0x38700, 0x3ff00, 0x1fe00, 0xfc00, 0x1fe00, 0x1fe00, 0x1ce00, 0x3cf00, 0x3cf00, 0x78700, 0x78780, 0x70780, 0xf03c0, 0xf03c0, 0xe03c0, 0x1e01e0, 0x1e01e0, 0x1c01e0, 0x3c00f0, 0x3ffff0, 0x7ffff0, 0x7ffff8, 0x780078, 0xf0007c, 0xf0003c, 0xf0003c, 0x1e0001e, 0x1e0001e, 0x1e0001e, 0x3c0000f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7800,0x1fe00,0x3ff00,0x38700,0x38700,0x38700,0x3ff00,0x1fe00,0xfc00,0x1fe00,0x1fe00,0x1ce00,0x3cf00,0x3cf00, + 0x78700,0x78780,0x78780,0xf03c0,0xf03c0,0xe03c0,0x1e01e0,0x1e01e0,0x1c01e0,0x3c00f0,0x3ffff0,0x7ffff0,0x7ffff8,0x780078,0xf0007c,0xf0003c, + 0xf0003c,0x1e0001e,0x1e0001e,0x1e0001e,0x3c0000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffc00, 0xfffe00, 0xfffe00, 0x3ce00, 0x3cf00, 0x3cf00, 0x3c700, 0x3c780, 0x3c780, 0x3c780, 0x3c3c0, 0x3c3c0, 0xffc3c0, 0xffc1e0, 0xffc1e0, 0x3c1e0, 0x3c0f0, 0x3fff0, 0x3fff0, 0x3fff8, 0x3c078, 0x3c078, 0x3c03c, 0x3c03c, 0x3c03e, 0x3c01e, 0x1ffc01e, 0x1ffc01f, 0x1ffc00f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc00,0xfffe00,0xfffe00,0x3ce00,0x3cf00,0x3cf00,0x3c700,0x3c780, + 0x3c780,0x3c780,0x3c3c0,0x3c3c0,0xffc3c0,0xffc1e0,0xffc1e0,0x3c1e0,0x3c0f0,0x3fff0,0x3fff0,0x3fff8,0x3c078,0x3c078,0x3c03c,0x3c03c, + 0x3c03e,0x3c01e,0x1ffc01e,0x1ffc01f,0x1ffc00f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x100078, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x200078, 0xf00078, 0x7000f8, 0x7800f0, 0x3c01f0, 0x3f07e0, 0x1fffc0, 0x7ff00, 0x1fc00, 0x3000, 0x3000, 0xf000, 0x1f800, 0x3c000, 0x38000, 0x3c000, 0x1fc00, 0xfc00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x7ff80,0xfffc0,0x1f07e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x100078,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x200078,0xf00078,0x7000f8,0x7800f0, + 0x3c01f0,0x3f07e0,0x1fffc0,0x7ff00,0x1fc00,0x3000,0x3000,0xf000,0x1f800,0x3c000,0x38000,0x3c000,0x1fc00,0xfc00,0x0,0x0, + 0x0,0x0, // 200 - 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x3ffff8, 0x3ffff8, 0x3ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0x78,0x78,0x3ffff8,0x3ffff8,0x3ffff8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 201 - 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x3ffff8, 0x3ffff8, 0x3ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0x78,0x78,0x3ffff8,0x3ffff8,0x3ffff8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 202 - 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x3ffff8, 0x3ffff8, 0x3ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0x78,0x78,0x3ffff8,0x3ffff8,0x3ffff8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 203 - 0x0, 0x0, 0xf0f00, 0xf0f00, 0xf0f00, 0xf0f00, 0x0, 0x0, 0x7ffff8, 0x7ffff8, 0x7ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x3ffff8, 0x3ffff8, 0x3ffff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0xf0f00,0xf0f00,0xf0f00,0xf0f00,0x0,0x0,0x7ffff8,0x7ffff8,0x7ffff8,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0x78,0x78,0x3ffff8,0x3ffff8,0x3ffff8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x78,0x78,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 204 - 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x3ffff0,0x3ffff0,0x3ffff0,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x3ffff0,0x3ffff0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 205 - 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x3ffff0,0x3ffff0,0x3ffff0,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x3ffff0,0x3ffff0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 206 - 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x3ffff0,0x3ffff0,0x3ffff0,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x3ffff0,0x3ffff0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 207 - 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x3ffff0, 0x3ffff0, 0x3ffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x3ffff0,0x3ffff0,0x3ffff0,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x3ffff0,0x3ffff0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff8, 0x3fff8, 0x7fff8, 0xfc078, 0x1f0078, 0x3e0078, 0x7c0078, 0x780078, 0x780078, 0xf80078, 0xf00078, 0xf00078, 0xf00078, 0xf03fff, 0xf03fff, 0xf03fff, 0xf00078, 0xf00078, 0xf00078, 0x780078, 0x780078, 0x780078, 0x3c0078, 0x3e0078, 0x1f0078, 0xfc078, 0x7fff8, 0x3fff8, 0x7ff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8,0x3fff8,0x7fff8,0xfc078,0x1f0078,0x3e0078,0x7c0078,0x780078, + 0x780078,0xf80078,0xf00078,0xf00078,0xf00078,0xf03fff,0xf03fff,0xf03fff,0xf00078,0xf00078,0xf00078,0x780078,0x780078,0x780078,0x3c0078,0x3e0078, + 0x1f0078,0xfc078,0x7fff8,0x3fff8,0x7ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 209 - 0x180f00, 0x183f80, 0x1cff80, 0xff9c0, 0xfe0c0, 0x780c0, 0x0, 0x0, 0x7800f8, 0x7801f8, 0x7801f8, 0x7803f8, 0x7803f8, 0x7807f8, 0x7807f8, 0x780f78, 0x780f78, 0x780e78, 0x781e78, 0x781c78, 0x783c78, 0x783878, 0x787878, 0x787078, 0x78f078, 0x78e078, 0x79e078, 0x79e078, 0x7bc078, 0x7bc078, 0x7b8078, 0x7f8078, 0x7f0078, 0x7f0078, 0x7e0078, 0x7e0078, 0x7c0078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x180f00,0x183f80,0x1cff80,0xff9c0,0xfe0c0,0x780c0,0x0,0x0,0x7800f8,0x7801f8,0x7801f8,0x7803f8,0x7803f8,0x7807f8,0x7807f8,0x780f78, + 0x780f78,0x780e78,0x781e78,0x781c78,0x783c78,0x783878,0x787878,0x787078,0x78f078,0x78e078,0x79e078,0x79e078,0x7bc078,0x7bc078,0x7b8078,0x7f8078, + 0x7f0078,0x7f0078,0x7e0078,0x7e0078,0x7c0078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 210 - 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 211 - 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 212 - 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 213 - 0x180f00, 0x183f80, 0x1cff80, 0xff9c0, 0xfe0c0, 0x780c0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x180f00,0x183f80,0x1cff80,0xff9c0,0xfe0c0,0x780c0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 214 - 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x780078, 0x780078, 0x780078, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x780078, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x780078,0x780078, + 0x780078,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0xf0003c,0x780078,0x780078,0x780078,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x300060, 0x7800f0, 0x7c01f0, 0x3e03e0, 0x1f07c0, 0xf8f80, 0x7df00, 0x3fe00, 0x1fc00, 0xf800, 0x1fc00, 0x3fe00, 0x7df00, 0xf8f80, 0x1f07c0, 0x3e03e0, 0x7c01f0, 0x7800f0, 0x300060, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x300060,0x7800f0,0x7c01f0, + 0x3e03e0,0x1f07c0,0xf8f80,0x7df00,0x3fe00,0x1fc00,0xf800,0x1fc00,0x3fe00,0x7df00,0xf8f80,0x1f07c0,0x3e03e0,0x7c01f0,0x7800f0,0x300060, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc1fe00, 0xe7ff80, 0xefffc0, 0x7f03e0, 0x3e01f0, 0x3c00f0, 0x7c0078, 0x7e0078, 0x7f0078, 0xf7803c, 0xf3c03c, 0xf1c03c, 0xf0e03c, 0xf0703c, 0xf0783c, 0xf0383c, 0xf01c3c, 0xf00e3c, 0xf0073c, 0xf007bc, 0x7803f8, 0x7801f8, 0x7800f8, 0x3c00f0, 0x3e01f0, 0x1f03f8, 0xfffdc, 0x7ff9e, 0x1fe0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1fe00,0xe7ff80,0xefffc0,0x7f03e0,0x3e01f0,0x3c00f0,0x7c0078,0x7e0078, + 0x7f0078,0xf7803c,0xf3c03c,0xf1c03c,0xf0e03c,0xf0703c,0xf0783c,0xf0383c,0xf01c3c,0xf00e3c,0xf0073c,0xf007bc,0x7803f8,0x7801f8,0x7800f8,0x3c00f0, + 0x3e01f0,0x1f03f8,0xfffdc,0x7ff8e,0x1fe0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 217 - 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c00f0, 0x3e00f0, 0x1f03e0, 0x1fffe0, 0x7ffc0, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078, + 0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c0078,0x3c00f0, + 0x3e00f0,0x1f03e0,0x1fffe0,0x7ffc0,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 218 - 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c00f0, 0x3e00f0, 0x1f03e0, 0x1fffe0, 0x7ffc0, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078, + 0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c0078,0x3c00f0, + 0x3e00f0,0x1f03e0,0x1fffe0,0x7ffc0,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 219 - 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c00f0, 0x3e00f0, 0x1f03e0, 0x1fffe0, 0x7ffc0, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078, + 0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c0078,0x3c00f0, + 0x3e00f0,0x1f03e0,0x1fffe0,0x7ffc0,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 220 - 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c00f0, 0x3e00f0, 0x1f03e0, 0x1fffe0, 0x7ffc0, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078, + 0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c0078,0x3c00f0, + 0x3e00f0,0x1f03e0,0x1fffe0,0x7ffc0,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 221 - 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x1f0003e, 0xf0003c, 0x780078, 0x7c0078, 0x3c00f0, 0x3e01f0, 0x1e01e0, 0xf03c0, 0xf83c0, 0x78780, 0x3cf00, 0x3cf00, 0x1fe00, 0x1fe00, 0xfc00, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x1f0003e,0xf0003c,0x780078,0x7c0078,0x3c00f0,0x3e01f0,0x1e01e0,0xf03c0, + 0xf83c0,0x78780,0x3cf00,0x3cf00,0x1fe00,0x1fe00,0xfc00,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800,0x7800, + 0x7800,0x7800,0x7800,0x7800,0x7800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0x78, 0x78, 0x78, 0x78, 0x1fff8, 0x7fff8, 0xffff8, 0x1f8078, 0x3e0078, 0x3c0078, 0x7c0078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c0078, 0x3c0078, 0x3e0078, 0x1f8078, 0xffff8, 0x7fff8, 0x1fff8, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x78,0x78,0x78,0x78,0x1fff8,0x7fff8,0xffff8, + 0x1f8078,0x3e0078,0x3c0078,0x7c0078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c0078,0x3c0078,0x3e0078,0x1f8078,0xffff8,0x7fff8,0x1fff8, + 0x78,0x78,0x78,0x78,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 223 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe00, 0x7ff80, 0xfffc0, 0x1f03e0, 0x3e01f0, 0x3c00f0, 0x3c0078, 0x3c0078, 0x3e0078, 0x1e0078, 0xf8078, 0x7c078, 0x3c078, 0x1e078, 0x1e078, 0x1e078, 0x3e078, 0x7c078, 0x1f8078, 0x3f0078, 0x7e0078, 0xf80078, 0xf00078, 0x1e00078, 0x1e00078, 0x1e00078, 0x1e00078, 0x1f00878, 0xf83878, 0xfff878, 0x7ff878, 0x1fe078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe00,0x7ff80,0xfffc0,0x1f03e0,0x3e01f0,0x3c00f0,0x3c0078,0x3c0078,0x3e0078,0x1e0078,0xf8078, + 0x7c078,0x3c078,0x1e078,0x1e078,0x1e078,0x3e078,0x7c078,0x1f8078,0x3f0078,0x7e0078,0xf80078,0xf00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1f00878,0xf83878,0xfff878,0x7ff878,0x1fe078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 224 - 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x780, 0xf00, 0x1e00, 0x3800, 0x7000, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7c0,0x780,0xf00,0x1e00,0x3800,0x7000,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 225 - 0x0, 0x0, 0x0, 0x0, 0x7c000, 0x3e000, 0x1e000, 0xf000, 0x3800, 0x1c00, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7c000,0x3e000,0x1e000,0xf000,0x3800,0x1c00,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 226 - 0x0, 0x0, 0x0, 0x0, 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 227 - 0x0, 0x0, 0x0, 0x0, 0xc0780, 0xc1fc0, 0xe7fc0, 0x7fce0, 0x7f060, 0x3c060, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xc0780,0xc1fc0,0xe7fc0,0x7fce0,0x7f060,0x3c060,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 228 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 229 - 0x0, 0x7800, 0x1fe00, 0x3ff00, 0x38700, 0x38700, 0x38700, 0x3ff00, 0x1fe00, 0x7800, 0x0, 0x0, 0x0, 0xfe00, 0x3ff80, 0x7ffc0, 0xf83e0, 0xf01f0, 0x1e00f0, 0x1e00f0, 0x1e0000, 0x1e0000, 0x1ffe00, 0x1fffc0, 0x1fffe0, 0x1e03f0, 0x1e00f0, 0x1e00f8, 0x1e0078, 0x1e0078, 0x1f0078, 0x1f8078, 0x1f80f8, 0x3ee1f0, 0xfe7ff0, 0xfc3fe0, 0xf81f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x7800,0x1fe00,0x3ff00,0x38700,0x38700,0x38700,0x3ff00,0x1fe00,0x7800,0x0,0x0,0x0,0xfe00,0x3ff80,0x7ffc0, + 0xf83e0,0xf01f0,0x1e00f0,0x1e00f0,0x1e0000,0x1e0000,0x1ffe00,0x1fffc0,0x1fffe0,0x1e03f0,0x1e00f0,0x1e00f8,0x1e0078,0x1e0078,0x1f0078,0x1f8078, + 0x1f80f8,0x3ee1f0,0xfe7ff0,0xfc3fe0,0xf81f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f07e0, 0x7f9ff8, 0xffdffc, 0xf1fc3c, 0x1e0f83e, 0x1e0f81e, 0x1c0781e, 0x3c07800, 0x3c07800, 0x3c07ff0, 0x3fffffc, 0x3fffffe, 0x3fff83e, 0x781f, 0x780f, 0x780f, 0x780f, 0x7c0f, 0x60fc0f, 0x1f0ee0f, 0xf1ef1e, 0xffe7fe, 0x7fc3fc, 0x1f00f8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f07e0,0x7f9ff8,0xffdffc, + 0xf1fc3c,0x1e0f83e,0x1e0f81e,0x1c0781e,0x3c07800,0x3c07800,0x3c07ff0,0x3fffffc,0x3fffffe,0x3fff83e,0x781f,0x780f,0x780f,0x780f,0x7c0f,0x60fc0f, + 0x1f0ee0f,0xf1ef1e,0xffe7fe,0x7fc3fc,0x1f00f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7c00f0, 0x7800f0, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x780070, 0x7800f0, 0x3c00f0, 0x3e01e0, 0x1f07e0, 0xfffc0, 0x7ff00, 0x1fc00, 0x3000, 0x3000, 0xf000, 0x1f800, 0x3c000, 0x38000, 0x3c000, 0x1fc00, 0xfc00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7c00f0,0x7800f0,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x780070,0x7800f0,0x3c00f0, + 0x3e01e0,0x1f07e0,0xfffc0,0x7ff00,0x1fc00,0x3000,0x3000,0xf000,0x1f800,0x3c000,0x38000,0x3c000,0x1fc00,0xfc00,0x0,0x0, + 0x0,0x0, // 232 - 0x0, 0x0, 0x0, 0x0, 0x1f00, 0x1e00, 0x3c00, 0x7800, 0xe000, 0x1c000, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7800f0, 0x7800f0, 0x700078, 0xf00078, 0xf00078, 0xfffff8, 0xfffff8, 0xfffff8, 0x78, 0x78, 0x78, 0x70, 0xf0, 0x1800f0, 0x7c01e0, 0x3f07e0, 0x1fffc0, 0xfff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f00,0x1e00,0x3c00,0x7800,0xe000,0x1c000,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7800f0,0x7800f0,0x700078,0xf00078,0xf00078,0xfffff8,0xfffff8,0xfffff8,0x78,0x78,0x78,0x70,0xf0,0x1800f0, + 0x7c01e0,0x3f07e0,0x1fffc0,0xfff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 233 - 0x0, 0x0, 0x0, 0x0, 0x1f0000, 0xf8000, 0x78000, 0x3c000, 0xe000, 0x7000, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7800f0, 0x7800f0, 0x700078, 0xf00078, 0xf00078, 0xfffff8, 0xfffff8, 0xfffff8, 0x78, 0x78, 0x78, 0x70, 0xf0, 0x1800f0, 0x7c01e0, 0x3f07e0, 0x1fffc0, 0xfff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x1f0000,0xf8000,0x78000,0x3c000,0xe000,0x7000,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7800f0,0x7800f0,0x700078,0xf00078,0xf00078,0xfffff8,0xfffff8,0xfffff8,0x78,0x78,0x78,0x70,0xf0,0x1800f0, + 0x7c01e0,0x3f07e0,0x1fffc0,0xfff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 234 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x1f800, 0x3fc00, 0x79e00, 0xf0f00, 0x1c0380, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7800f0, 0x7800f0, 0x700078, 0xf00078, 0xf00078, 0xfffff8, 0xfffff8, 0xfffff8, 0x78, 0x78, 0x78, 0x70, 0xf0, 0x1800f0, 0x7c01e0, 0x3f07e0, 0x1fffc0, 0xfff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x1f800,0x3fc00,0x79e00,0xf0f00,0x1c0380,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7800f0,0x7800f0,0x700078,0xf00078,0xf00078,0xfffff8,0xfffff8,0xfffff8,0x78,0x78,0x78,0x70,0xf0,0x1800f0, + 0x7c01e0,0x3f07e0,0x1fffc0,0xfff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 235 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0f00, 0xf0f00, 0xf0f00, 0xf0f00, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff00, 0x1fffc0, 0x3f07e0, 0x3c01e0, 0x7800f0, 0x7800f0, 0x700078, 0xf00078, 0xf00078, 0xfffff8, 0xfffff8, 0xfffff8, 0x78, 0x78, 0x78, 0x70, 0xf0, 0x1800f0, 0x7c01e0, 0x3f07e0, 0x1fffc0, 0xfff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf0f00,0xf0f00,0xf0f00,0xf0f00,0x0,0x0,0x0,0x1fc00,0x7ff00,0x1fffc0, + 0x3f07e0,0x3c01e0,0x7800f0,0x7800f0,0x700078,0xf00078,0xf00078,0xfffff8,0xfffff8,0xfffff8,0x78,0x78,0x78,0x70,0xf0,0x1800f0, + 0x7c01e0,0x3f07e0,0x1fffc0,0xfff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 236 - 0x0, 0x0, 0x0, 0x0, 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x0, 0xffe0, 0xffe0, 0xffe0, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x0,0xffe0,0xffe0,0xffe0, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 237 - 0x0, 0x0, 0x0, 0x0, 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x0, 0xffe0, 0xffe0, 0xffe0, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x0,0xffe0,0xffe0,0xffe0, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 238 - 0x0, 0x0, 0x0, 0x0, 0xf000, 0x1f800, 0x3fc00, 0x79e00, 0xf0f00, 0x1c0380, 0x0, 0x0, 0x0, 0xffe0, 0xffe0, 0xffe0, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf000,0x1f800,0x3fc00,0x79e00,0xf0f00,0x1c0380,0x0,0x0,0x0,0xffe0,0xffe0,0xffe0, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 239 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0f00, 0xf0f00, 0xf0f00, 0xf0f00, 0x0, 0x0, 0x0, 0xffe0, 0xffe0, 0xffe0, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xf000, 0xfffff8, 0xfffff8, 0xfffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf0f00,0xf0f00,0xf0f00,0xf0f00,0x0,0x0,0x0,0xffe0,0xffe0,0xffe0, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xfffff8,0xfffff8,0xfffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 240 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x80f80, 0x1f1e00, 0x1ffc00, 0x3f800, 0x1fc00, 0x3ff80, 0x7c780, 0x78100, 0xf0000, 0xf0000, 0x1e0000, 0x1efe00, 0x3fff80, 0x3fffc0, 0x3f03e0, 0x7e01f0, 0x7c00f0, 0x7c00f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x3c00f8, 0x3c00f0, 0x3e01f0, 0x1f03e0, 0xfffc0, 0x7ff80, 0x1fe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x80f80,0x1f1e00,0x1ffc00,0x3f800,0x1fc00,0x3ff80,0x7c780,0x78100,0xf0000,0xf0000,0x1e0000, + 0x1efe00,0x3fff80,0x3fffc0,0x3f03e0,0x7e01f0,0x7c00f0,0x7c00f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x3c00f8,0x3c00f0, + 0x3e01f0,0x1f03e0,0xfffc0,0x7ff80,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 241 - 0x0, 0x0, 0x0, 0x0, 0x180f00, 0x183f80, 0x1cff80, 0xff9c0, 0xfe0c0, 0x780c0, 0x0, 0x0, 0x0, 0x3f0f0, 0xffcf0, 0x1ffef0, 0x1f07f0, 0x3e03f0, 0x3e01f0, 0x3c01f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x180f00,0x183f80,0x1cff80,0xff9c0,0xfe0c0,0x780c0,0x0,0x0,0x0,0x3f0f0,0xffcf0,0x1ffef0, + 0x1f07f0,0x3e03f0,0x3e01f0,0x3c01f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 242 - 0x0, 0x0, 0x0, 0x0, 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x7800f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x0,0x1fc00,0x7ff80,0xfffc0, + 0x1f07e0,0x1e01e0,0x3c00f0,0x3c00f0,0x7800f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8,0x3c00f0,0x3c00f0, + 0x1e01e0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 243 - 0x0, 0x0, 0x0, 0x0, 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x7800f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x0,0x1fc00,0x7ff80,0xfffc0, + 0x1f07e0,0x1e01e0,0x3c00f0,0x3c00f0,0x7800f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8,0x3c00f0,0x3c00f0, + 0x1e01e0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 244 - 0x0, 0x0, 0x0, 0x0, 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x7800f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x0,0x1fc00,0x7ff80,0xfffc0, + 0x1f07e0,0x1e01e0,0x3c00f0,0x3c00f0,0x7800f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8,0x3c00f0,0x3c00f0, + 0x1e01e0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 245 - 0x0, 0x0, 0x0, 0x0, 0x180f00, 0x183f80, 0x1cff80, 0xff9c0, 0xfe0c0, 0x780c0, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x7800f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x180f00,0x183f80,0x1cff80,0xff9c0,0xfe0c0,0x780c0,0x0,0x0,0x0,0x1fc00,0x7ff80,0xfffc0, + 0x1f07e0,0x1e01e0,0x3c00f0,0x3c00f0,0x7800f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8,0x3c00f0,0x3c00f0, + 0x1e01e0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 246 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x0, 0x1fc00, 0x7ff80, 0xfffc0, 0x1f07e0, 0x1e01e0, 0x3c00f0, 0x3c00f0, 0x7800f8, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x780078, 0x7c00f8, 0x3c00f0, 0x3c00f0, 0x1e01e0, 0x1f03e0, 0xfffc0, 0x7ff80, 0xfe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x0,0x1fc00,0x7ff80,0xfffc0, + 0x1f07e0,0x1e01e0,0x3c00f0,0x3c00f0,0x7800f8,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x780078,0x7c00f8,0x3c00f0,0x3c00f0, + 0x1e01e0,0x1f03e0,0xfffc0,0x7ff80,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0xfffffc, 0xfffffc, 0xfffffc, 0x0, 0x0, 0x0, 0x0, 0x7800, 0x7800, 0x7800, 0x7800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800, + 0x7800,0x0,0x0,0x0,0x0,0xfffffc,0xfffffc,0xfffffc,0x0,0x0,0x0,0x0,0x7800,0x7800,0x7800,0x7800, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21fe00, 0x77ff80, 0x3fffc0, 0x1f07e0, 0x1e01e0, 0x3e00f0, 0x3f00f0, 0x7b80f8, 0x79c078, 0x78c078, 0x786078, 0x787078, 0x783878, 0x781c78, 0x780c78, 0x780678, 0x7c0778, 0x3c03f0, 0x3c01f0, 0x1e01e0, 0x1f03e0, 0xffff0, 0x7ffb8, 0xfc10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21fe00,0x77ff80,0x3fffc0, + 0x1f07e0,0x1e01e0,0x3e00f0,0x3f00f0,0x7b80f8,0x79c078,0x78c078,0x786078,0x787078,0x783878,0x781c78,0x780c78,0x780678,0x7c0778,0x3c03f0,0x3c01f0, + 0x1e01e0,0x1f03e0,0xffff0,0x7ffb8,0xfc10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 249 - 0x0, 0x0, 0x0, 0x0, 0xf80, 0xf00, 0x1e00, 0x3c00, 0x7000, 0xe000, 0x0, 0x0, 0x0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf80,0xf00,0x1e00,0x3c00,0x7000,0xe000,0x0,0x0,0x0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 250 - 0x0, 0x0, 0x0, 0x0, 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 251 - 0x0, 0x0, 0x0, 0x0, 0x7800, 0xfc00, 0x1fe00, 0x3cf00, 0x78780, 0xe01c0, 0x0, 0x0, 0x0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x7800,0xfc00,0x1fe00,0x3cf00,0x78780,0xe01c0,0x0,0x0,0x0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 252 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3c00f0, 0x3e00f0, 0x3e00f0, 0x3f01f0, 0x3f83e0, 0x3dffe0, 0x3cffc0, 0x3c3f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x0,0x3c00f0,0x3c00f0,0x3c00f0, + 0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3c00f0,0x3e00f0,0x3e00f0, + 0x3f01f0,0x3f83e0,0x3dffe0,0x3cffc0,0x3c3f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0, // 253 - 0x0, 0x0, 0x0, 0x0, 0xf8000, 0x7c000, 0x3c000, 0x1e000, 0x7000, 0x3800, 0x0, 0x0, 0x0, 0x1e0001e, 0x1e0003e, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x3c00f0, 0x3c00f0, 0x3c01e0, 0x1e01e0, 0x1e01c0, 0xf03c0, 0xf0380, 0x78780, 0x78780, 0x78f00, 0x3cf00, 0x3ce00, 0x1fe00, 0x1fc00, 0xfc00, 0xf800, 0x7800, 0x7800, 0x7800, 0x3c00, 0x3c00, 0x1e00, 0x1f00, 0xf80, 0x7f8, 0x3f8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0xf8000,0x7c000,0x3c000,0x1e000,0x7000,0x3800,0x0,0x0,0x0,0x1e0001e,0x1e0003e,0xf0003c, + 0xf0003c,0x780078,0x780078,0x3c00f0,0x3c00f0,0x3c01e0,0x1e01e0,0x1e01c0,0xf03c0,0xf03c0,0x78780,0x78780,0x78f00,0x3cf00,0x3ce00,0x1fe00, + 0x1fc00,0xfc00,0xf800,0x7800,0x7800,0x7800,0x3c00,0x3c00,0x1e00,0x1f00,0xf80,0x7f8,0x3f8,0xf8,0x0,0x0, + 0x0,0x0, // 254 - 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x3f0f0, 0xffcf0, 0x1ffef0, 0x1f07f0, 0x3e03f0, 0x3c01f0, 0x3c01f0, 0x7801f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x7800f0, 0x3c01f0, 0x3c01f0, 0x3e03f0, 0x1f07f0, 0x1ffef0, 0xffcf0, 0x3f0f0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x3f0f0,0xffcf0,0x1ffef0, + 0x1f07f0,0x3e03f0,0x3c01f0,0x3c01f0,0x7801f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x7800f0,0x3c01f0,0x3c01f0, + 0x3e03f0,0x1f07f0,0x1ffef0,0xffcf0,0x3f0f0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0, + 0x0,0x0, // 255 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78780, 0x78780, 0x78780, 0x78780, 0x0, 0x0, 0x0, 0x1e0001e, 0x1e0003e, 0xf0003c, 0xf0003c, 0x780078, 0x780078, 0x3c00f0, 0x3c00f0, 0x3c01e0, 0x1e01e0, 0x1e01c0, 0xf03c0, 0xf0380, 0x78780, 0x78780, 0x78f00, 0x3cf00, 0x3ce00, 0x1fe00, 0x1fc00, 0xfc00, 0xf800, 0x7800, 0x7800, 0x7800, 0x3c00, 0x3c00, 0x1e00, 0x1f00, 0xf80, 0x7f8, 0x3f8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x78780,0x78780,0x78780,0x78780,0x0,0x0,0x0,0x1e0001e,0x1e0003e,0xf0003c, + 0xf0003c,0x780078,0x780078,0x3c00f0,0x3c00f0,0x3c01e0,0x1e01e0,0x1e01c0,0xf03c0,0xf03c0,0x78780,0x78780,0x78f00,0x3cf00,0x3ce00,0x1fe00, + 0x1fc00,0xfc00,0xf800,0x7800,0x7800,0x7800,0x3c00,0x3c00,0x1e00,0x1f00,0xf80,0x7f8,0x3f8,0xf8,0x0,0x0, + 0x0,0x0, }; // Font: Liberation Mono,39,-1,5,50,0,0,0,0,0 -const unsigned int ff9_height = 60; +const unsigned int ff9_height = 59; const unsigned int ff9_line_height = 59; const unsigned int ff9_width = 31; +const unsigned int ff9_stride = 1; const unsigned char ff9_first_char = ' '; uint32_t ff9_data [] = { // 32 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 33 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x0,0x0,0x0,0x0,0x0,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 34 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc1f80, 0xfc1f80, 0xfc1f80, 0xfc1f80, 0xfc1f80, 0xfc1f80, 0xfc1f80, 0x780f00, 0x780f00, 0x780f00, 0x780f00, 0x780f00, 0x780f00, 0x780f00, 0x780f00, 0x780f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc1f80,0xfc1f80,0xfc1f80,0xfc1f80,0xfc1f80,0xfc1f80,0xfc1f80,0x780f00,0x780f00,0x780f00,0x780f00, + 0x780f00,0x780f00,0x780f00,0x780f00,0x780f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 35 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3803800, 0x3803800, 0x1c01c00, 0x1c01c00, 0x1c01c00, 0x1c01c00, 0x1c01c00, 0xe00e00, 0xe00e00, 0xe00e00, 0x1ffffffc, 0x1ffffffc, 0x1ffffffc, 0x700700, 0x700700, 0x700700, 0x700700, 0x380380, 0x380380, 0x380380, 0x380380, 0xffffffe, 0xffffffe, 0xffffffe, 0x1c01c0, 0x1c01c0, 0x1c01c0, 0xe00e0, 0xe00e0, 0xe00e0, 0xe00e0, 0xe00e0, 0x70070, 0x70070, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3803800,0x3803800,0x1c01c00,0x1c01c00,0x1c01c00,0x1c01c00,0x1c01c00, + 0xe00e00,0xe00e00,0xe00e00,0x1ffffffc,0x1ffffffc,0x1ffffffc,0x700700,0x700700,0x700700,0x700700,0x380380,0x380380,0x380380,0x380380,0xffffffe,0xffffffe, + 0xffffffe,0x1c01c0,0x1c01c0,0x1c01c0,0xe00e0,0xe00e0,0xe00e0,0xe00e0,0xe00e0,0x70070,0x70070,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 36 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c000, 0x1c000, 0x1c000, 0x1ffc00, 0xffff80, 0x3ffffc0, 0x7ffffe0, 0x7f1c7f0, 0xfc1c1f8, 0xf81c1f8, 0x1f81c0f8, 0x701c0f8, 0x1c0f8, 0x1c0f8, 0x1c1f8, 0x1c3f0, 0x1cfe0, 0x3ffc0, 0x1fff80, 0xfffe00, 0x3fff000, 0x7ffc000, 0xfe1c000, 0x1f81c000, 0x1f01c000, 0x3e01c000, 0x3e01c000, 0x3e01c038, 0x3e01c03e, 0x3e01c07e, 0x3f01c0fc, 0x1f81c1fc, 0x1fe1c7f8, 0xffffff0, 0x3ffffe0, 0x1ffff80, 0x1ffc00, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1c000,0x1c000,0x1c000,0x1ffc00,0xffff80,0x3ffffc0,0x7ffffe0,0x7f1c7f0,0xfc1c1f8,0xf81c1f8, + 0x1f81c0f8,0x701c0f8,0x1c0f8,0x1c0f8,0x1c1f8,0x1c3f0,0x1cfe0,0x3ffc0,0x1fff80,0xfffe00,0x3fff000,0x7ffc000,0xfe1c000,0x1f81c000,0x1f01c000,0x3e01c000, + 0x3e01c000,0x3e01c038,0x3e01c03e,0x3e01c07e,0x3f01c0fc,0x1f81c1fc,0x1fe1c7f8,0xffffff0,0x3ffffe0,0x1ffff80,0x1ffc00,0x1c000,0x1c000,0x1c000,0x1c000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 37 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f0, 0x1e001ffc, 0xf001ffc, 0xf003e3e, 0x7803c1e, 0x3c0780f, 0x1c0780f, 0x1e0780f, 0xf0780f, 0x70780f, 0x78780f, 0x3c780f, 0x1e3c1e, 0x1e3e3e, 0xf1ffc, 0x78ff8, 0x387f0, 0x3c000, 0x1e000, 0x7f0e000, 0x1ffcf000, 0x1ffc7800, 0x3e3e3c00, 0x3c1e3c00, 0x780f1e00, 0x780f0f00, 0x780f0700, 0x780f0780, 0x780f03c0, 0x780f01c0, 0x780f01e0, 0x3c1e00f0, 0x3e3e0078, 0x1ffc0038, 0xff8003c, 0x7f00000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0,0x1e001ffc,0xf001ffc,0xf003e3e,0x7803c1e,0x3c0780f,0x1c0780f,0x1e0780f, + 0xf0780f,0x70780f,0x78780f,0x3c780f,0x1e3c1e,0x1e3e3e,0xf1ffc,0x78ff8,0x387f0,0x3c000,0x1e000,0x7f0e000,0x1ffcf000,0x1ffc7800,0x3e3e3c00,0x3c1e3c00, + 0x780f1e00,0x780f0f00,0x780f0700,0x780f0780,0x780f03c0,0x780f01c0,0x780f01e0,0x3c1e00f0,0x3e3e0078,0x1ffc0038,0xff8003c,0x7f00000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 38 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x1ffe00, 0x3fff00, 0x7e1f80, 0xfc0f80, 0xf807c0, 0xf807c0, 0xf807c0, 0xf807c0, 0x7c07c0, 0x7e07c0, 0x3f8780, 0x1fe780, 0x7ff80, 0x1ff00, 0x7f80, 0x1801fe0, 0xf801ff0, 0xfc03df8, 0x7c07cf8, 0x7c0787c, 0x7c0f87c, 0x3e1f03e, 0x3e1e03e, 0x1e3c03e, 0x1f7c03e, 0xff803e, 0x7f003e, 0x7e007e, 0x7e007c, 0x1ff00fc, 0x6fffc1f8, 0x7fe7fff0, 0x7f81ffe0, 0x3e007f80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x1ffe00,0x3fff00,0x7e1f80,0xfc0f80,0xf807c0,0xf807c0, + 0xf807c0,0xf807c0,0x7c07c0,0x7e07c0,0x3f8780,0x1fe780,0x7ff80,0x1ff00,0x7f80,0x1801fe0,0xf801ff0,0xfc03df8,0x7c07cf8,0x7c0787c,0x7c0f87c,0x3e1f03e, + 0x3e1e03e,0x1e3c03e,0x1f7c03e,0xff803e,0x7f003e,0x7e007e,0x7e007c,0x1ff00fc,0x6fffc1f8,0x7fe7fff0,0x7f81ffe0,0x3e007f80,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 39 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 40 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0000, 0x3e0000, 0x1f0000, 0xf8000, 0xf8000, 0x7c000, 0x7c000, 0x3e000, 0x3f000, 0x1f000, 0x1f000, 0xf800, 0xf800, 0xfc00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0xfc00, 0xf800, 0xf800, 0x1f000, 0x1f000, 0x1f000, 0x3e000, 0x7c000, 0x7c000, 0xf8000, 0xf8000, 0x1f0000, 0x3e0000, 0x7c0000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0000,0x3e0000,0x1f0000,0xf8000,0xf8000,0x7c000,0x7c000,0x3e000,0x3f000,0x1f000,0x1f000, + 0xf800,0xf800,0xfc00,0x7c00,0x7c00,0x7c00,0x7c00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00, + 0x3e00,0x3e00,0x3e00,0x3e00,0x7c00,0x7c00,0x7c00,0x7c00,0xfc00,0xf800,0xf800,0x1f000,0x1f000,0x1f000,0x3e000,0x7c000, + 0x7c000,0xf8000,0xf8000,0x1f0000,0x3e0000,0x7c0000,0x0,0x0,0x0,0x0,0x0, // 41 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e00, 0x7c00, 0xf800, 0x1f000, 0x1f000, 0x3e000, 0x3e000, 0x7c000, 0xfc000, 0xf8000, 0xf8000, 0x1f0000, 0x1f0000, 0x3f0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x7c0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3f0000, 0x1f0000, 0x1f0000, 0xf8000, 0xf8000, 0xfc000, 0x7c000, 0x3e000, 0x3e000, 0x1f000, 0x1f000, 0xf800, 0x7c00, 0x3e00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e00,0x7c00,0xf800,0x1f000,0x1f000,0x3e000,0x3e000,0x7c000,0xfc000,0xf8000,0xf8000, + 0x1f0000,0x1f0000,0x3f0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x7c0000,0x7c0000,0x7c0000,0x7c0000,0x7c0000,0x7c0000,0x7c0000,0x7c0000,0x7c0000, + 0x7c0000,0x7c0000,0x7c0000,0x7c0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3f0000,0x1f0000,0x1f0000,0xf8000,0xf8000,0xfc000,0x7c000,0x3e000, + 0x3e000,0x1f000,0x1f000,0xf800,0x7c00,0x3e00,0x0,0x0,0x0,0x0,0x0, // 42 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0x1c000, 0xc1c180, 0xf9cf80, 0x1ffffc0, 0x1ffffc0, 0xff800, 0x3f000, 0x3f000, 0x77800, 0xe3c00, 0x1e1e00, 0x1c1e00, 0x3c0f00, 0x80400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c000,0x1c000,0x1c000,0x1c000,0x1c000,0xc1c180,0xf9cf80,0x1ffffc0,0x1ffffc0,0xff800,0x3f000, + 0x3f000,0x77800,0xe3c00,0x1e1e00,0x1c1e00,0x3c0f00,0x80400,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 43 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 44 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f800, 0x1f800, 0x1fc00, 0xfc00, 0xfc00, 0x7c00, 0x7e00, 0x3e00, 0x3e00, 0x3e00, 0x1e00, 0x1f00, 0xf00, 0xf00, 0x700, 0x780, 0x380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3f800,0x1f800,0x1fc00,0xfc00,0xfc00,0x7c00,0x7e00,0x3e00,0x3e00,0x3e00,0x1e00,0x1f00,0xf00, + 0xf00,0x700,0x780,0x380,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 45 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fff00, 0x3fff00, 0x3fff00, 0x3fff00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fff00,0x3fff00,0x3fff00,0x3fff00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 46 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 47 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf800000, 0x7800000, 0x7c00000, 0x3c00000, 0x3e00000, 0x1e00000, 0x1f00000, 0xf00000, 0xf80000, 0x780000, 0x7c0000, 0x3c0000, 0x3e0000, 0x1f0000, 0x1f0000, 0xf8000, 0x78000, 0x7c000, 0x3c000, 0x3e000, 0x1e000, 0x1f000, 0xf000, 0xf800, 0x7800, 0x7c00, 0x3e00, 0x3e00, 0x1f00, 0xf00, 0xf80, 0x780, 0x7c0, 0x3c0, 0x3e0, 0x1e0, 0x1f0, 0xf0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf800000,0x7800000,0x7c00000,0x3c00000,0x3e00000,0x1e00000,0x1f00000,0xf00000,0xf80000,0x780000,0x7c0000, + 0x3c0000,0x3e0000,0x1f0000,0x1f0000,0xf8000,0x78000,0x7c000,0x3c000,0x3e000,0x1e000,0x1f000,0xf000,0xf800,0x7800,0x7c00,0x3e00, + 0x3e00,0x1f00,0xf00,0xf80,0x780,0x7c0,0x3c0,0x3e0,0x1e0,0x1f0,0xf0,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 48 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x3f007e0, 0x3e003e0, 0x3e003f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x78000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf83e0f8, 0xf83e0f8, 0xf83e0f8, 0xf83e0f8, 0xf83e0f8, 0xf83e0f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c000f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x3ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x3f007e0,0x3e003e0,0x3e003f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x78000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf83e0f8,0xf83e0f8,0xf83e0f8,0xf83e0f8,0xf83e0f8,0xf83e0f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c000f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x3ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 49 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8000, 0xfc000, 0xfe000, 0xff000, 0xffc00, 0xfff00, 0xfbff0, 0xf8ff0, 0xf83f0, 0xf80f0, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0x1ffffff0, 0x1ffffff0, 0x1ffffff0, 0x1ffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0xfc000,0xfe000,0xff000,0xffc00,0xfff00,0xfbff0, + 0xf8ff0,0xf83f0,0xf80f0,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000, + 0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0x1ffffff0,0x1ffffff0,0x1ffffff0,0x1ffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 50 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff00, 0x1ffff80, 0x3f81fc0, 0x3f007e0, 0x7e003e0, 0x7c003f0, 0x7c001f0, 0x7c001f0, 0x7c00000, 0x7c00000, 0x3e00000, 0x3e00000, 0x3f00000, 0x1f80000, 0xfc0000, 0x7e0000, 0x3f0000, 0x1f8000, 0xfc000, 0x7e000, 0x3f000, 0x1fc00, 0xfe00, 0x3f00, 0x1f80, 0xf80, 0xfc0, 0x7e0, 0x3e0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x3ffe00,0xffff00,0x1ffff80,0x3f81fc0,0x3f007e0,0x7e003e0,0x7c003f0, + 0x7c001f0,0x7c001f0,0x7c00000,0x7c00000,0x3e00000,0x3e00000,0x3f00000,0x1f80000,0xfc0000,0x7e0000,0x3f0000,0x1f8000,0xfc000,0x7e000,0x3f000,0x1fc00, + 0xfe00,0x3f00,0x1f80,0xf80,0xfc0,0x7e0,0x3e0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 51 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0xffff00, 0x1ffff80, 0x3f81fc0, 0x3f007e0, 0x7e003e0, 0x7c003f0, 0x7c001f0, 0x7c001f0, 0x7c00000, 0x7c00000, 0x3e00000, 0x3e00000, 0x1f00000, 0xfe0000, 0x7ff000, 0x1ff000, 0x3ff000, 0xfff000, 0x1fc0000, 0x3f00000, 0x7c00000, 0xfc00000, 0xf800000, 0xf800000, 0xf8000f8, 0xf8000f8, 0xfc001f8, 0x7c001f0, 0x7e003f0, 0x7f80fe0, 0x3ffffc0, 0x1ffff80, 0x7fff00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x7ffe00,0xffff00,0x1ffff80,0x3f81fc0,0x3f007e0,0x7e003e0,0x7c003f0, + 0x7c001f0,0x7c001f0,0x7c00000,0x7c00000,0x3e00000,0x3e00000,0x1f00000,0xfe0000,0x7ff000,0x1ff000,0x3ff000,0xfff000,0x1fc0000,0x3f00000,0x7c00000,0xfc00000, + 0xf800000,0xf800000,0xf8000f8,0xf8000f8,0xfc001f8,0x7c001f0,0x7e003f0,0x7f80fe0,0x3ffffc0,0x1ffff80,0x7fff00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 52 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0000, 0xfe0000, 0xfe0000, 0xff0000, 0xff8000, 0xff8000, 0xfbc000, 0xf9e000, 0xf9e000, 0xf8f000, 0xf87800, 0xf87c00, 0xf83c00, 0xf83e00, 0xf81f00, 0xf80f00, 0xf80f80, 0xf807c0, 0xf803e0, 0xf803e0, 0xf801f0, 0xf800f8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0xf80000, 0xf80000, 0xf80000, 0xf80000, 0xf80000, 0xf80000, 0xf80000, 0xf80000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0xfe0000,0xfe0000,0xff0000,0xff8000,0xff8000,0xfbc000, + 0xf9e000,0xf9e000,0xf8f000,0xf87800,0xf87c00,0xf83c00,0xf81e00,0xf81f00,0xf80f00,0xf80f80,0xf807c0,0xf803e0,0xf803e0,0xf801f0,0xf800f8,0x1ffffff8, + 0x1ffffff8,0x1ffffff8,0x1ffffff8,0xf80000,0xf80000,0xf80000,0xf80000,0xf80000,0xf80000,0xf80000,0xf80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 53 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x1f0, 0x1f0, 0xfe1f0, 0x7ffdf0, 0xfffff0, 0x1fffff0, 0x3fc0ff0, 0x7f003f0, 0x7e00000, 0x7c00000, 0xf800000, 0xf800000, 0xf800000, 0xf800000, 0xf800000, 0xf800000, 0xfc000f8, 0x7c001f8, 0x7e001f0, 0x3f003f0, 0x3fc0fe0, 0x1ffffe0, 0xffffc0, 0x3fff00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e0,0x3e0,0x3e0, + 0x3e0,0x3e0,0x3e0,0x1f0,0x1f0,0xfe1f0,0x7ffdf0,0xfffff0,0x1fffff0,0x3fc0ff0,0x7f003f0,0x7e00000,0x7c00000,0xf800000,0xf800000,0xf800000, + 0xf800000,0xf800000,0xf800000,0xfc000f8,0x7c001f8,0x7e001f0,0x3f003f0,0x3fc0fe0,0x1ffffe0,0xffffc0,0x3fff00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 54 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe000, 0x7ff800, 0xfffe00, 0x1ffff00, 0x3f83f00, 0x3e00f80, 0x7e007c0, 0x1c007c0, 0x3c0, 0x3e0, 0x1e0, 0x1e0, 0x1e0, 0x1fc1f0, 0x7ff1f0, 0xfffdf0, 0x1fffff0, 0x3f81ff0, 0x7e007f0, 0x7c003f0, 0xfc003f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001e0, 0xf8001e0, 0xf8003e0, 0x7c003c0, 0x7e007c0, 0x7e00fc0, 0x3f83f80, 0x1ffff00, 0xfffe00, 0x7ffc00, 0xfe000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe000,0x7ff800,0xfffe00,0x1ffff00,0x3f83f00,0x3e00f80,0x7e007c0,0x1c007c0, + 0x3c0,0x3e0,0x1e0,0x1e0,0x1e0,0x1fc1f0,0x7ff1f0,0xfffdf0,0x1fffff0,0x3f81ff0,0x7e007f0,0x7c003f0,0xfc003f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001e0,0xf8001e0,0xf8003e0,0x7c003c0,0x7e007c0,0x7e00fc0,0x3f83f80,0x1ffff00,0xfffe00,0x7ffc00,0xfe000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 55 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0xf800000, 0x7c00000, 0x3e00000, 0x1f00000, 0x1f00000, 0xf80000, 0x7c0000, 0x7c0000, 0x3e0000, 0x1f0000, 0x1f0000, 0xf8000, 0xf8000, 0x7c000, 0x7c000, 0x3e000, 0x3e000, 0x3e000, 0x1f000, 0x1f000, 0x1f000, 0xf800, 0xf800, 0xf800, 0xfc00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0xf800000,0x7c00000,0x3e00000, + 0x1f00000,0x1f00000,0xf80000,0x7c0000,0x7c0000,0x3e0000,0x1f0000,0x1f0000,0xf8000,0xf8000,0x7c000,0x7c000,0x3e000,0x3e000,0x3e000,0x1f000, + 0x1f000,0x1f000,0xf800,0xf800,0xf800,0xfc00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 56 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff800, 0x3ffe00, 0xffff80, 0x1ffffc0, 0x3f80fe0, 0x3f007e0, 0x7e003f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3f007e0, 0x1f80fc0, 0xffff80, 0x3ffe00, 0x3ffe00, 0xffff80, 0x3f80fc0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xfc001f8, 0x7c001f0, 0x7e003f0, 0x3f80fe0, 0x3ffffe0, 0xffff80, 0x7fff00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff800,0x3ffe00,0xffff80,0x1ffffc0,0x3f80fe0,0x3f007e0,0x7e003f0,0x7c001f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3f007e0,0x1f80fc0,0xffff80,0x3ffe00,0x3ffe00,0xffff80,0x3f80fc0,0x3e003e0,0x7c001f0,0x7c001f0,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xfc001f8,0x7c001f0,0x7e003f0,0x3f80fe0,0x3ffffe0,0xffff80,0x7fff00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 57 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x3f00fe0, 0x3e007e0, 0x7c003e0, 0x7c003f0, 0x7c001f0, 0x78001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8003f0, 0xfc003e0, 0xfe007e0, 0xff00fe0, 0xff81fc0, 0xfffff80, 0xfbfff00, 0xf8ffe00, 0xf83f800, 0x7800000, 0x7800000, 0x7c00000, 0x3c00000, 0x3e003c0, 0x3e007e0, 0x1f007c0, 0xfc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x3f00fe0,0x3e007e0,0x7c003e0, + 0x7c003f0,0x7c001f0,0x78001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8003f0,0xfc003e0,0xfe007e0,0xff00fe0,0xff81fc0,0xfffff80,0xfbfff00,0xf8ffe00,0xf83f800, + 0x7800000,0x7800000,0x7c00000,0x3c00000,0x3e003c0,0x3e007e0,0x1f007c0,0xfc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 58 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 59 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe000, 0x7e000, 0x7f000, 0x3f000, 0x3f000, 0x1f000, 0x1f800, 0xf800, 0xf800, 0xf800, 0x7800, 0x7c00, 0x3c00, 0x3c00, 0x1c00, 0x1e00, 0xe00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xfe000,0x7e000,0x7f000,0x3f000,0x3f000,0x1f000,0x1f800,0xf800,0xf800,0xf800,0x7800,0x7c00,0x3c00, + 0x3c00,0x1c00,0x1e00,0xe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 60 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8000000, 0xf000000, 0xfc00000, 0xff80000, 0x7fe0000, 0x1ffc000, 0x3ff000, 0xffe00, 0x3ff80, 0x7ff0, 0x1ff8, 0x3f8, 0xf8, 0xf8, 0x3f8, 0x1ff8, 0x7ff0, 0x3ff80, 0xffe00, 0x3ff000, 0x1ffc000, 0x7fe0000, 0xff80000, 0xfc00000, 0xf000000, 0x8000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000000,0xf000000,0xfc00000, + 0xff80000,0x7fe0000,0x1ffc000,0x3ff000,0xffe00,0x3ff80,0x7ff0,0x1ff8,0x3f8,0xf8,0xf8,0x3f8,0x1ff8,0x7ff0,0x3ff80,0xffe00, + 0x3ff000,0x1ffc000,0x7fe0000,0xff80000,0xfc00000,0xf000000,0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 61 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffff8, 0xffffff8, 0xffffff8, 0xffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffff8, 0xffffff8, 0xffffff8, 0xffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xffffff8,0xffffff8,0xffffff8,0xffffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff8,0xffffff8, + 0xffffff8,0xffffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 62 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x78, 0x1f8, 0xff8, 0x3ff0, 0x1ffc0, 0x7fe00, 0x3ff800, 0xffe000, 0x7ff0000, 0xffc0000, 0xfe00000, 0xf800000, 0xf800000, 0xfe00000, 0xffc0000, 0x7ff0000, 0xffe000, 0x3ff800, 0x7fe00, 0x1ffc0, 0x3ff0, 0xff8, 0x1f8, 0x78, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x78,0x1f8, + 0xff8,0x3ff0,0x1ffc0,0x7fe00,0x3ff800,0xffe000,0x7ff0000,0xffc0000,0xfe00000,0xf800000,0xf800000,0xfe00000,0xffc0000,0x7ff0000,0xffe000,0x3ff800, + 0x7fe00,0x1ffc0,0x3ff0,0xff8,0x1f8,0x78,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 63 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0xffffc0, 0x1ffffe0, 0x3fc0ff0, 0x3f003f0, 0x7e001f8, 0x7c000f8, 0x7c000fc, 0x7c0007c, 0x7c0007c, 0x7c00000, 0x7e00000, 0x3e00000, 0x3f00000, 0x1f80000, 0xfc0000, 0x7f0000, 0x1f8000, 0xfc000, 0x7e000, 0x3f000, 0x1f000, 0xf000, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0xf800, 0xf800, 0xf800, 0xf800, 0xf800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x3fff00,0xffffc0,0x1ffffe0,0x3fc0ff0,0x3f003f0,0x7e001f8,0x7c000f8, + 0x7c000fc,0x7c0007c,0x7c0007c,0x7c00000,0x7e00000,0x3e00000,0x3f00000,0x1f80000,0xfc0000,0x7f0000,0x1f8000,0xfc000,0x7e000,0x3f000,0x1f000,0xf000, + 0xf800,0xf800,0x0,0x0,0x0,0x0,0xf800,0xf800,0xf800,0xf800,0xf800,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 64 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe000, 0x7ff800, 0xfffe00, 0x1f03f00, 0x3c00f80, 0x78003c0, 0x70001e0, 0xf0000e0, 0xe0000f0, 0x1e000070, 0x1c07c078, 0x1dcff038, 0x1ddff838, 0x39dc3c1c, 0x39f81c1c, 0x39f00e1c, 0x38f00e1c, 0x38f0071e, 0x38f0070e, 0x38f0070e, 0x38f0038e, 0x3878038e, 0x3878038e, 0x3878038e, 0x3878038e, 0x1c3c038e, 0x1c3c038e, 0x1c3c038e, 0xc3e038e, 0xe3f070e, 0xf3b8f1c, 0x7fbff1c, 0x3f1fe1c, 0x1f0781c, 0x38, 0x38, 0x78, 0x10000f0, 0x1c001e0, 0x3e003e0, 0xfc0fc0, 0x7fff80, 0x1ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfe000,0x7ff800,0xfffe00,0x1f03f00,0x3c00f80,0x78003c0,0x70001e0,0xf0000e0,0xe0000f0,0x1e000070,0x1c07c078, + 0x1dcff038,0x1ddff838,0x39dc3c1c,0x39f81c1c,0x39f00e1c,0x38f00e1c,0x38f0071e,0x38f0070e,0x38f0070e,0x3870038e,0x3878038e,0x3878038e,0x3878038e,0x3878038e,0x1c3c038e,0x1c3c038e, + 0x1c3c038e,0xc3e038e,0xe3f070e,0xf3b8f1c,0x7fbff1c,0x3f1fe1c,0x1f0781c,0x38,0x38,0x78,0x10000f0,0x1c001e0,0x3e003e0,0xfc0fc0,0x7fff80,0x1ffe00, + 0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 65 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x7f000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x7ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x7f000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 66 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffff0, 0x7ffff0, 0xfffff0, 0x1fffff0, 0x3f801f0, 0x7e001f0, 0x7e001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e001f0, 0x3f001f0, 0x1fc01f0, 0xfffff0, 0x3ffff0, 0x7ffff0, 0x1fffff0, 0x7f801f0, 0x7c001f0, 0xf8001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f8001f0, 0xfc001f0, 0x7f001f0, 0x7fffff0, 0x1fffff0, 0xfffff0, 0x1ffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff0,0x7ffff0,0xfffff0,0x1fffff0,0x3f801f0,0x7e001f0,0x7e001f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e001f0,0x3f001f0,0x1fc01f0,0xfffff0,0x3ffff0,0x7ffff0,0x1fffff0,0x7f801f0,0x7c001f0,0xf8001f0,0x1f0001f0,0x1f0001f0, + 0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f8001f0,0xfc001f0,0x7f001f0,0x7fffff0,0x1fffff0,0xfffff0,0x1ffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 67 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x7ffc00, 0xffff00, 0x1ffff80, 0x3f83fc0, 0x7e00fc0, 0x7c007e0, 0xf8003e0, 0xf8001f0, 0x10001f0, 0x1f0, 0x1f0, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0x1f0, 0x20001f0, 0x1f0001f0, 0x1f0003f0, 0xf8003e0, 0xfc007e0, 0x7e00fc0, 0x3f83f80, 0x1ffff00, 0xfffe00, 0x7ffc00, 0xfe000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x7ffc00,0xffff00,0x1ffff80,0x3f83fc0,0x7e00fc0,0x7c007e0,0xf8003e0, + 0xf8001f0,0x10001f0,0x1f0,0x1f0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, + 0x1f0,0x20001f0,0x1f0001f0,0x1f0003f0,0xf8003e0,0xfc007e0,0x7e00fc0,0x3f83f80,0x1ffff00,0xfffe00,0x7ffc00,0xfe000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 68 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff0, 0x1ffff0, 0x7ffff0, 0xfffff0, 0x1fe01f0, 0x3f801f0, 0x7e001f0, 0x7c001f0, 0xfc001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0x7c001f0, 0x7e001f0, 0x3e001f0, 0x3f801f0, 0x1fe01f0, 0xfffff0, 0x7ffff0, 0x1ffff0, 0x3fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff0,0x1ffff0,0x7ffff0,0xfffff0,0x1fe01f0,0x3f801f0,0x7e001f0, + 0x7c001f0,0xfc001f0,0xf8001f0,0xf8001f0,0xf8001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0x7c001f0,0x7e001f0,0x3e001f0,0x3f801f0,0x1fe01f0,0xfffff0,0x7ffff0,0x1ffff0,0x3fff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 69 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0x1f0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 70 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffffe0, 0x7ffffe0, 0x7ffffe0, 0x7ffffe0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffffe0,0x7ffffe0,0x7ffffe0,0x7ffffe0,0x3e0,0x3e0,0x3e0, + 0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e0,0x3e0,0x3e0, + 0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 71 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x7ffc00, 0xffff00, 0x1ffff80, 0x3f81fc0, 0x7e00fc0, 0x7c007e0, 0xf8003e0, 0xf8001f0, 0x10001f0, 0x1f0, 0x1f8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfff00f8, 0xfff00f8, 0xfff00f8, 0xfff00f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8003e0, 0xf8003e0, 0xf8007e0, 0xfc00fc0, 0xff03f80, 0x7ffff00, 0x3fffe00, 0xfffc00, 0xfe000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x7ffc00,0xffff00,0x1ffff80,0x3f81fc0,0x7e00fc0,0x7c007e0,0xf8003e0, + 0xf8001f0,0x10001f0,0x1f0,0x1f8,0xf8,0xf8,0xf8,0xf8,0xf8,0xfff00f8,0xfff00f8,0xfff00f8,0xfff00f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8003e0,0xf8003e0,0xf8007e0,0xfc00fc0,0xff03f80,0x7ffff00,0x3fffe00,0xfffc00,0xfe000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 72 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 73 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 74 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff000, 0x1fff000, 0x1fff000, 0x1fff000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f00000, 0x1f001c0, 0x1f001f0, 0x1f803f0, 0xf803e0, 0xfc07e0, 0x7e0fc0, 0x7fffc0, 0x3fff80, 0x1ffe00, 0x3f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff000,0x1fff000,0x1fff000,0x1fff000,0x1f00000,0x1f00000,0x1f00000, + 0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000,0x1f00000, + 0x1f00000,0x1f00000,0x1f001c0,0x1f001f0,0x1f803f0,0xf803e0,0xfc07e0,0x7e0fc0,0x7fffc0,0x3fff80,0x1ffe00,0x3f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 75 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f8001f0, 0xfc001f0, 0x7e001f0, 0x3e001f0, 0x1f001f0, 0xf801f0, 0x7c01f0, 0x7e01f0, 0x3f01f0, 0x1f81f0, 0xf81f0, 0x7c1f0, 0x3e1f0, 0x1f1f0, 0x1f9f0, 0x1fdf0, 0x3fff0, 0x7fff0, 0xfdff0, 0xfcff0, 0x1f87f0, 0x3f03f0, 0x7e01f0, 0x7e01f0, 0xfc01f0, 0x1f801f0, 0x3f001f0, 0x3e001f0, 0x7e001f0, 0xfc001f0, 0x1f8001f0, 0x1f0001f0, 0x3f0001f0, 0x7e0001f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8001f0,0xfc001f0,0x7e001f0,0x3e001f0,0x1f001f0,0xf801f0,0x7c01f0, + 0x7e01f0,0x3f01f0,0x1f81f0,0xf81f0,0x7c1f0,0x3e1f0,0x1f1f0,0x1f9f0,0x1fdf0,0x3fff0,0x7fff0,0xfdff0,0xfcff0,0x1f87f0,0x3f03f0,0x7e01f0, + 0x7e01f0,0xfc01f0,0x1f801f0,0x3f001f0,0x3e001f0,0x7e001f0,0xfc001f0,0x1f8001f0,0x1f0001f0,0x3f0001f0,0x7e0001f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 76 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0xfffffc0, 0xfffffc0, 0xfffffc0, 0xfffffc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0, + 0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0, + 0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0xfffffc0,0xfffffc0,0xfffffc0,0xfffffc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 77 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc001f8, 0xfc003f8, 0xfe003f8, 0xfe003f8, 0xfe007f8, 0xff007f8, 0xff00f78, 0xf780f78, 0xf780f78, 0xf781e78, 0xf3c1e78, 0xf3c1e78, 0xf1e3c78, 0xf1e3c78, 0xf1e7c78, 0xf0f7878, 0xf0f7878, 0xf077078, 0xf07f078, 0xf07f078, 0xf03e078, 0xf03e078, 0xf03c078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0xf000078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc001f8,0xfc003f8,0xfe003f8,0xfe003f8,0xfe007f8,0xff007f8,0xff00f78, + 0xf780f78,0xf780f78,0xf781e78,0xf3c1e78,0xf3c1e78,0xf1e3c78,0xf1e3c78,0xf1e7c78,0xf0f7878,0xf0f7878,0xf077078,0xf07f078,0xf07f078,0xf03e078,0xf03e078,0xf01c078, + 0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0xf000078,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 78 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78003f0, 0x78003f0, 0x78007f0, 0x78007f0, 0x7800ff0, 0x7800ff0, 0x7801ff0, 0x7801ef0, 0x7803ef0, 0x7803cf0, 0x7803cf0, 0x7807cf0, 0x78078f0, 0x780f8f0, 0x780f0f0, 0x781f0f0, 0x781e0f0, 0x783e0f0, 0x783c0f0, 0x787c0f0, 0x78780f0, 0x78f80f0, 0x78f00f0, 0x79f00f0, 0x79e00f0, 0x7be00f0, 0x7bc00f0, 0x7fc00f0, 0x7f800f0, 0x7f800f0, 0x7f000f0, 0x7f000f0, 0x7e000f0, 0x7e000f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78003f0,0x78003f0,0x78007f0,0x78007f0,0x7800ff0,0x7800ff0,0x7801ff0, + 0x7801ef0,0x7803ef0,0x7803cf0,0x7803cf0,0x7807cf0,0x78078f0,0x780f8f0,0x780f0f0,0x781f0f0,0x781e0f0,0x783e0f0,0x783c0f0,0x787c0f0,0x78780f0,0x78f80f0,0x78f00f0, + 0x79f00f0,0x79e00f0,0x7be00f0,0x7bc00f0,0x7fc00f0,0x7f800f0,0x7f800f0,0x7f000f0,0x7f000f0,0x7e000f0,0x7e000f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 79 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 80 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffff0, 0x7ffff0, 0xfffff0, 0x3fffff0, 0x3f801f0, 0x7e001f0, 0x7c001f0, 0xfc001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0x7c001f0, 0x7c001f0, 0x7e001f0, 0x3f801f0, 0x1fffff0, 0xfffff0, 0x7ffff0, 0xffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff0,0x7ffff0,0xfffff0,0x3fffff0,0x3f801f0,0x7e001f0,0x7c001f0, + 0xfc001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0x7c001f0,0x7c001f0,0x7e001f0,0x3f801f0,0x1fffff0,0xfffff0,0x7ffff0,0xffff0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 81 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x3ffe00, 0xff000, 0x7c000, 0xfc000, 0xf8000, 0x1f8000, 0x7f0000, 0xffe0000, 0xffe0000, 0xff80000, 0x7e00000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x3ffe00,0xff000,0x7c000,0xfc000,0xf8000,0x1f8000, + 0x7f0000,0xffe0000,0xffe0000,0xff80000,0x7e00000,0x0,0x0,0x0,0x0,0x0,0x0, // 82 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffff0, 0x7ffff0, 0x1fffff0, 0x3fffff0, 0x7f801f0, 0x7e001f0, 0xfc001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xfc001f0, 0x7c001f0, 0x7e001f0, 0x3f801f0, 0x1fffff0, 0xfffff0, 0x3ffff0, 0x7fff0, 0xf81f0, 0xf81f0, 0x1f01f0, 0x3e01f0, 0x7e01f0, 0x7c01f0, 0xf801f0, 0x1f801f0, 0x1f001f0, 0x3e001f0, 0x7e001f0, 0x7c001f0, 0xf8001f0, 0x1f8001f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff0,0x7ffff0,0x1fffff0,0x3fffff0,0x7f801f0,0x7e001f0,0xfc001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xfc001f0,0x7c001f0,0x7e001f0,0x3f801f0,0x1fffff0,0xfffff0,0x3ffff0,0x7fff0,0xf81f0,0xf81f0,0x1f01f0, + 0x3e01f0,0x7e01f0,0x7c01f0,0xf801f0,0x1f801f0,0x1f001f0,0x3e001f0,0x7e001f0,0x7c001f0,0xf8001f0,0x1f8001f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 83 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff800, 0x7ffe00, 0x1ffff80, 0x3ffffc0, 0x7f80fe0, 0x7e007e0, 0x7c003f0, 0xfc001f0, 0x38001f0, 0x1f0, 0x1f0, 0x1f0, 0x3f0, 0xfe0, 0x3fe0, 0x3ffc0, 0x1fff00, 0xfffc00, 0x3ffe000, 0x7ff0000, 0x7f00000, 0xfc00000, 0xf800000, 0x1f800000, 0x1f000000, 0x1f000000, 0x1f000070, 0x1f00007c, 0x1f8000fc, 0xf8001f8, 0xfc003f8, 0x7f00ff0, 0x3ffffe0, 0x1ffffc0, 0xffff00, 0x1ff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff800,0x7ffe00,0x1ffff80,0x3ffffc0,0x7f80fe0,0x7e007e0,0x7c003f0,0xfc001f0, + 0x38001f0,0x1f0,0x1f0,0x1f0,0x3f0,0xfe0,0x3fe0,0x3ffc0,0x1fff00,0xfffc00,0x3ffe000,0x7ff0000,0x7f00000,0xfc00000,0xf800000,0x1f800000, + 0x1f000000,0x1f000000,0x1f000070,0x1f00007c,0x1f8000fc,0xf8001f8,0xfc003f8,0x7f00ff0,0x3ffffe0,0x1ffffc0,0xffff00,0x1ff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 84 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffffffc, 0x1ffffffc, 0x1ffffffc, 0x1ffffffc, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffffffc,0x1ffffffc,0x1ffffffc,0x1ffffffc,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 85 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xfc001f0, 0x7c003e0, 0x7c003e0, 0x7e007e0, 0x3f80fc0, 0x1ffffc0, 0xffff80, 0x7ffe00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xfc001f0,0x7c003e0,0x7c003e0,0x7e007e0,0x3f80fc0,0x1ffffc0,0xffff80,0x7ffe00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 86 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00001f, 0x3e00003e, 0x3e00003e, 0x3f00007e, 0x1f00007c, 0x1f00007c, 0x1f8000fc, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e003e0, 0x3e003e0, 0x1f007c0, 0x1f007c0, 0xf80f80, 0xf80f80, 0xf80f80, 0x7c1f00, 0x7c1f00, 0x7c1f00, 0x3e3e00, 0x3e3e00, 0x1e3c00, 0x1f7c00, 0x1f7c00, 0xf7800, 0xf7800, 0xff000, 0x7f000, 0x7f000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00001f,0x3e00003e,0x3e00003e,0x3f00007e,0x1f00007c,0x1f00007c,0x1f8000fc, + 0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e003e0,0x3e003e0,0x1f007c0,0x1f007c0,0xf80f80,0xf80f80,0xf80f80,0x7c1f00,0x7c1f00,0x7c1e00, + 0x3e3e00,0x3e3e00,0x1e3c00,0x1f7c00,0x1f7c00,0xf7800,0xf7800,0xff000,0x7f000,0x7f000,0x3e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 87 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c00001f, 0x7c00001f, 0x7c00001f, 0x3e00001e, 0x3e00003e, 0x3e00003e, 0x3e00003e, 0x3e00003e, 0x3e00003e, 0x3e00003e, 0x1e00003c, 0x1e07f03c, 0x1f07f07c, 0x1f07f07c, 0x1f07f07c, 0x1f0ff07c, 0x1f0f787c, 0xf0f7878, 0xf0f7878, 0xf0f7878, 0xf1e3cf8, 0xf9e3cf8, 0xf9e3cf8, 0xf9e3cf8, 0x7be3ef0, 0x7bc1ef0, 0x7bc1ef0, 0x7bc1ef0, 0x7bc1ef0, 0x7f80ff0, 0x7f80ff0, 0x3f80fe0, 0x3f80fe0, 0x3f007e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c00001f,0x7c00001f,0x7c00001f,0x3c00001e,0x3e00003e,0x3e00003e,0x3e00003e, + 0x3e00003e,0x3e00003e,0x3e00003e,0x1e00003c,0x1e07f03c,0x1f07f07c,0x1f07f07c,0x1f07f07c,0x1f0ff07c,0x1f0f787c,0xf0f7878,0xf0f7878,0xf1f7878,0xf1e3cf8,0xf9e3cf8,0xf9e3cf8, + 0xf9e3cf8,0x7be3ef0,0x7bc1ef0,0x7bc1ef0,0x7bc1ef0,0x7bc1ef0,0x7f80ff0,0x3f80ff0,0x3f80fe0,0x3f80fe0,0x3f007e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 88 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f8000fc, 0xfc001f8, 0x7e001f0, 0x7e003f0, 0x3f007e0, 0x1f007c0, 0x1f80fc0, 0xfc0f80, 0x7c1f00, 0x7e3f00, 0x3f3e00, 0x1f7c00, 0x1ffc00, 0xff800, 0x7f800, 0x7f000, 0x7f000, 0x7f000, 0xff800, 0x1ffc00, 0x1f7c00, 0x3f7e00, 0x3e3f00, 0x7c1f00, 0xfc1f80, 0xf80fc0, 0x1f807c0, 0x3f007e0, 0x3e003e0, 0x7e003f0, 0xfc001f8, 0xf8000f8, 0x1f8000fc, 0x3f00007e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000fc,0xfc001f8,0x7e001f0,0x7e003f0,0x3f007e0,0x1f007c0,0x1f80fc0, + 0xfc0f80,0x7c1f00,0x7e3f00,0x3e3e00,0x1f7c00,0x1ffc00,0xff800,0x7f800,0x7f000,0x7f000,0x7f000,0xff800,0x1ffc00,0x1f7c00,0x3f7e00,0x3e3f00, + 0x7c1f00,0xfc1f80,0xf80fc0,0x1f807c0,0x3f007e0,0x3e003e0,0x7e003f0,0xfc001f8,0xf8000f8,0x1f8000fc,0x3f00007e,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 89 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00007e, 0x1f00007c, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7e003f0, 0x3e003e0, 0x1f007c0, 0x1f007c0, 0xf80f80, 0x7c1f00, 0x7c1f00, 0x3e3e00, 0x1f7c00, 0x1f7c00, 0xff800, 0xff800, 0x7f000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00007e,0x1f00007c,0xf8000f8,0xf8000f8,0x7c001f0,0x7e003f0,0x3e003e0, + 0x1f007c0,0x1f007c0,0xf80f80,0x7c1f00,0x7c1f00,0x3e3e00,0x1f7c00,0x1f7c00,0xff800,0xff800,0x7f000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 90 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x7e00000, 0x7f00000, 0x3f00000, 0x1f80000, 0xfc0000, 0xfe0000, 0x7e0000, 0x3f0000, 0x1f8000, 0x1f8000, 0xfc000, 0x7e000, 0x3f000, 0x3f000, 0x1f800, 0xfc00, 0x7e00, 0x7e00, 0x3f00, 0x1f80, 0xfc0, 0xfc0, 0x7e0, 0x3f0, 0x1f8, 0x1f8, 0x1ffffffc, 0x1ffffffc, 0x1ffffffc, 0x1ffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x7e00000,0x7f00000,0x3f00000, + 0x1f80000,0xfc0000,0xfe0000,0x7e0000,0x3f0000,0x1f8000,0x1f8000,0xfc000,0x7e000,0x3f000,0x3f000,0x1f800,0xfc00,0x7e00,0x7e00,0x3f00, + 0x1f80,0xfc0,0xfc0,0x7e0,0x3f0,0x1f8,0x1f8,0x1ffffffc,0x1ffffffc,0x1ffffffc,0x1ffffffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 91 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffc00, 0xfffc00, 0xfffc00, 0xfffc00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0xfffc00, 0xfffc00, 0xfffc00, 0xfffc00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfffc00,0xfffc00,0xfffc00,0xfffc00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00, + 0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00, + 0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00, + 0x7c00,0x7c00,0xfffc00,0xfffc00,0xfffc00,0xfffc00,0x0,0x0,0x0,0x0,0x0, // 92 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0xf0, 0x1f0, 0x1e0, 0x3e0, 0x3c0, 0x7c0, 0x780, 0xf80, 0xf00, 0x1f00, 0x1e00, 0x3e00, 0x7c00, 0x7800, 0xf800, 0xf000, 0x1f000, 0x1e000, 0x3e000, 0x3c000, 0x7c000, 0x78000, 0xf8000, 0xf0000, 0x1f0000, 0x3e0000, 0x3e0000, 0x7c0000, 0x780000, 0xf80000, 0xf00000, 0x1f00000, 0x1e00000, 0x3e00000, 0x3c00000, 0x7c00000, 0x7800000, 0xf800000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xf8,0xf0,0x1f0,0x1e0,0x3e0,0x3c0,0x7c0,0x780,0xf80,0xf00,0x1f00, + 0x1e00,0x3e00,0x7c00,0x7800,0xf800,0xf000,0x1f000,0x1e000,0x3e000,0x3c000,0x7c000,0x78000,0xf8000,0xf0000,0x1f0000,0x3e0000, + 0x3e0000,0x7c0000,0x780000,0xf80000,0xf00000,0x1f00000,0x1e00000,0x3e00000,0x3c00000,0x7c00000,0x7800000,0xf800000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 93 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff80, 0x1fff80, 0x1fff80, 0x1fff80, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1f0000, 0x1fff80, 0x1fff80, 0x1fff80, 0x1fff80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fff80,0x1fff80,0x1fff80,0x1fff80,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000, + 0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000, + 0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000,0x1f0000, + 0x1f0000,0x1f0000,0x1fff80,0x1fff80,0x1fff80,0x1fff80,0x0,0x0,0x0,0x0,0x0, // 94 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x7f000, 0x7f000, 0xf7800, 0xf7800, 0xe3c00, 0x1e3c00, 0x1c1c00, 0x3c1e00, 0x3c0e00, 0x780f00, 0x780f00, 0xf00780, 0xf00780, 0xe003c0, 0x1e003c0, 0x1c001c0, 0x3c001e0, 0x3c001e0, 0x78000f0, 0x78000f0, 0xf000078, 0xf000078, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000,0x7f000,0x7f000,0xf7800,0xf7800,0xe3c00,0x1e3c00, + 0x1c1c00,0x3c1e00,0x3c0e00,0x780f00,0x780f00,0xf00780,0xf00780,0xe003c0,0x1e003c0,0x1c001c0,0x3c001e0,0x3c001e0,0x78000f0,0x78000f0,0xf000078,0xf000078, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 95 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffffff, 0x7fffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffffff,0x7fffffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 96 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc00, 0xf800, 0x1f000, 0x3e000, 0x78000, 0xf0000, 0x1e0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc00,0xf800,0x1f000,0x3e000,0x78000,0xf0000,0x1e0000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 97 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 98 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3f83e0, 0x7fe3e0, 0x1fff3e0, 0x3f83be0, 0x3e01fe0, 0x7e00fe0, 0x7c007e0, 0x7c007e0, 0x7c007e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0x7c007e0, 0x7c007e0, 0x7c007e0, 0x7e00fe0, 0x3e01fe0, 0x1f83be0, 0x1fffbe0, 0x7fe3e0, 0x1f8000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3f83e0, + 0x7fe3e0,0x1fff3e0,0x3f83be0,0x3e01fe0,0x7e00fe0,0x7c007e0,0x7c007e0,0x7c007e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0, + 0xf8003e0,0xf8003e0,0xf8003e0,0x7c007e0,0x7c007e0,0x7c007e0,0x7e00fe0,0x3e01fe0,0x1f83be0,0x1fffbe0,0x7fe3e0,0x1f8000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 99 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff00, 0x1fc1fc0, 0x1f007c0, 0x3e003e0, 0x3e001f0, 0x7c001f0, 0x7c001f0, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x7c001f0, 0x7c001f0, 0x3e001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0x7fff80, 0x3ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff00,0x1fc1fc0,0x1f007c0,0x3e003e0,0x3e001f0,0x7c001f0,0x7c001f0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x7c001f0,0x7c001f0,0x3e001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0x7fff80,0x3ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 100 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c1fc00, 0x7c7ff00, 0x7dfff80, 0x7dc1f80, 0x7f807c0, 0x7f007e0, 0x7e003e0, 0x7e003e0, 0x7e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7e001f0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c1fc00, + 0x7c7ff00,0x7dfff80,0x7dc1f80,0x7f807c0,0x7f007e0,0x7e003e0,0x7e003e0,0x7e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7e001f0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x1fc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 101 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0x1ffff00, 0x3f81f80, 0x3e007c0, 0x7c003e0, 0xfc003e0, 0xf8001f0, 0xf8001f0, 0x1f0000f8, 0x1f0000f8, 0x1f0000f8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x1f0, 0x18001f0, 0xfc003e0, 0x7c003e0, 0x7e007c0, 0x3f81f80, 0x1ffff00, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000, + 0x7ffe00,0x1ffff00,0x3f81f80,0x3e007c0,0x7c003e0,0xfc003e0,0xf8001f0,0xf8001f0,0x1f0000f8,0x1f0000f8,0x1f0000f8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x1f0,0x18001f0,0xfc003e0,0x7c003e0,0x7e007c0,0x3f81f80,0x1ffff00,0x7ffe00,0xff000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 102 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfff0000, 0xfffc000, 0xffff000, 0x3f000, 0x1f800, 0xf800, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x7c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfff0000,0xfffc000,0xffff000,0x3f000,0x1f800,0xf800,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00, + 0x7fffff8,0x7fffff8,0x7fffff8,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00, + 0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 103 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fc00, 0x7c7ff00, 0x7cfff80, 0x7de1fc0, 0x7f807c0, 0x7f007e0, 0x7f003e0, 0x7e003e0, 0x7e001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7e001f0, 0x7e003e0, 0x7e003e0, 0x7f003e0, 0x7f807c0, 0x7de0fc0, 0x7cfff80, 0x7c7ff00, 0x7c1fc00, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x3e00780, 0x3e007c0, 0x1f00fc0, 0x1f81f80, 0xffff00, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00, + 0x7c7ff00,0x7cfff80,0x7de1fc0,0x7f807c0,0x7f007e0,0x7f003e0,0x7e003e0,0x7e001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0, + 0x7c001f0,0x7c001f0,0x7e001f0,0x7e003e0,0x7e003e0,0x7f003e0,0x7f807c0,0x7de0fc0,0x7cfff80,0x7c7ff00,0x7c1fc00,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x3e00780, + 0x3e007c0,0x1f00fc0,0x1f81f80,0xffff00,0x7ffe00,0xff000,0x0,0x0,0x0,0x0,0x0, // 104 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3f83e0, 0xffe3e0, 0x1fff3e0, 0x3f83be0, 0x3e01fe0, 0x3e00fe0, 0x7c007e0, 0x7c007e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3f83e0, + 0xffe3e0,0x1fff3e0,0x3f83be0,0x3e01fe0,0x3e00fe0,0x7c007e0,0x7c007e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 105 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7ffc0, 0x7ffc0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7ffc0,0x7ffc0,0x7ffc0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 106 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fffc0, 0x3fffc0, 0x3fffc0, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3e0000, 0x3f0000, 0x1f0000, 0x1f8000, 0xfe018, 0x7fff8, 0x1fff8, 0x7fe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffc0,0x3fffc0,0x3fffc0,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000, + 0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3e0000,0x3f0000, + 0x1f0000,0x1f8000,0xfe018,0x7fff8,0x1fff8,0x7fe0,0x0,0x0,0x0,0x0,0x0, // 107 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0x7c0, 0xfc007c0, 0x7c007c0, 0x3e007c0, 0x1f007c0, 0xf807c0, 0x7c07c0, 0x3e07c0, 0x1f07c0, 0xf87c0, 0x7c7c0, 0x3e7c0, 0x1f7c0, 0x3f7c0, 0x7ffc0, 0x7ffc0, 0xf9fc0, 0x1f0fc0, 0x1f07c0, 0x3e07c0, 0x7c07c0, 0xfc07c0, 0xf807c0, 0x1f007c0, 0x3f007c0, 0x3e007c0, 0x7c007c0, 0xf8007c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0,0x7c0, + 0xfc007c0,0x7c007c0,0x3e007c0,0x1f007c0,0xf807c0,0x7c07c0,0x3e07c0,0x1f07c0,0xf87c0,0x7c7c0,0x3e7c0,0x1f7c0,0x3f7c0,0x7ffc0,0x7ffc0,0xf9fc0, + 0x1f0fc0,0x1f07c0,0x3e07c0,0x7c07c0,0xfc07c0,0xf807c0,0x1f007c0,0x3f007c0,0x3e007c0,0x7c007c0,0xf8007c0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 108 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7ffc0, 0x7ffc0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7ffc0,0x7ffc0,0x7ffc0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 109 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e07800, 0x7f1fe78, 0xff9fe78, 0xf9be378, 0x1f8fe178, 0x1f0fc1f8, 0x1f07c1f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x1f07c0f8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e07800, + 0x7f1fe78,0xff9fe78,0xf9be378,0x1f8fe178,0x1f0fc1f8,0x1f07c1f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8, + 0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x1f07c0f8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 110 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f8000, 0xffe3e0, 0x1fff3e0, 0x3f83be0, 0x3e01fe0, 0x3e00fe0, 0x7c007e0, 0x7c007e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000, + 0xffe3e0,0x1fff3e0,0x3f83be0,0x3e01fe0,0x3e00fe0,0x7c007e0,0x7c007e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 111 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff80, 0x1fc1fc0, 0x3f007c0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x3c001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x3ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff80,0x1fc1fc0,0x3f007c0,0x3e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x3c001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x3ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 112 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f8000, 0xffe3e0, 0x1fff3e0, 0x3f83be0, 0x3e01fe0, 0x7e00fe0, 0x7c007e0, 0x7c007e0, 0x78007e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0x7c007e0, 0x7c007e0, 0x7c007e0, 0x7e00fe0, 0x3e01fe0, 0x1f83be0, 0x1fffbe0, 0x7fe3e0, 0x3f83e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000, + 0xffe3e0,0x1fff3e0,0x3f83be0,0x3e01fe0,0x7e00fe0,0x7c007e0,0x7c007e0,0x78007e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0, + 0xf8003e0,0xf8003e0,0xf8003e0,0x7c007e0,0x7c007e0,0x7c007e0,0x7e00fe0,0x3e01fe0,0x1f83be0,0x1fffbe0,0x7fe3e0,0x3f83e0,0x3e0,0x3e0,0x3e0,0x3e0, + 0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x0,0x0,0x0,0x0,0x0, // 113 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c1fc00, 0x7c7ff00, 0x7cfff80, 0x7dc1f80, 0x7f807c0, 0x7f007e0, 0x7e003e0, 0x7e003e0, 0x7e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7e001f0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x7c1fc00, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x7c00000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c1fc00, + 0x7c7ff00,0x7cfff80,0x7dc1f80,0x7f807c0,0x7f007e0,0x7e003e0,0x7e003e0,0x7e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7e001f0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x7c1fc00,0x7c00000,0x7c00000,0x7c00000,0x7c00000, + 0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x7c00000,0x0,0x0,0x0,0x0,0x0, // 114 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fe0000, 0x3ff07c0, 0x3ffc7c0, 0x3ffc7c0, 0x3e780, 0xf780, 0x7f80, 0x3f80, 0x3f80, 0x1f80, 0x1f80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe0000, + 0x3ff07c0,0x3ffc7c0,0x3ffc7c0,0x3e780,0xf780,0x7f80,0x3f80,0x3f80,0x1f80,0x1f80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80, + 0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 115 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff800, 0x3ffe00, 0xffff80, 0x1fc0fc0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3e0, 0x3e0, 0x7e0, 0xfe0, 0x7fc0, 0x3ff80, 0x3fff00, 0xfffe00, 0x1fff000, 0x3ff0000, 0x3f80000, 0x7e00000, 0x7c00000, 0x7c00000, 0x7c001c0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f80fc0, 0xffff80, 0x7fff00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff800, + 0x3ffe00,0xffff80,0x1fc0fc0,0x1f007c0,0x3e003e0,0x3e003e0,0x3e0,0x3e0,0x7e0,0xfe0,0x7fc0,0x3ff80,0x3fff00,0xfffe00,0x1fff000,0x3ff0000, + 0x3f80000,0x7e00000,0x7c00000,0x7c00000,0x7c001c0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f80fc0,0xffff80,0x7fff00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 116 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x3c00, 0x3c00, 0x3c00, 0x3c00, 0x3e00, 0x3e00, 0x1ffffe0, 0x1ffffe0, 0x1ffffe0, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x3e00, 0x7e00, 0x300fc00, 0x3fffc00, 0x3fff800, 0xffc000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3800,0x3c00,0x3c00,0x3c00,0x3c00,0x3e00,0x3e00, + 0x1ffffe0,0x1ffffe0,0x1ffffe0,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00, + 0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x3e00,0x7e00,0x300fc00,0x3fffc00,0x3fff800,0xffc000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 117 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x1fc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 118 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80007c, 0xf8000f8, 0xf8000f8, 0xfc001f8, 0x7c001f0, 0x7e001f0, 0x3e003e0, 0x3e003e0, 0x3f003e0, 0x1f007c0, 0x1f007c0, 0xf80fc0, 0xf80f80, 0xf80f80, 0x7c1f00, 0x7c1f00, 0x7e1f00, 0x3e3e00, 0x3e3e00, 0x1f3c00, 0x1f7c00, 0x1f7c00, 0xf7800, 0xff800, 0x7f800, 0x7f000, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80007c,0xf8000f8,0xf8000f8,0xfc001f8,0x7c001f0,0x7e001f0,0x3e003e0,0x3e003e0,0x3f003e0,0x1f007c0,0x1f007c0,0xf80fc0,0xf80f80,0xf80f80,0x7c1f00,0x7c1f00, + 0x7e1f00,0x3e3e00,0x3e3e00,0x1f3c00,0x1f7c00,0x1f7c00,0xf7800,0xff800,0x7f800,0x7f000,0x7f000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 119 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e00003e, 0x3e00003e, 0x3e00003e, 0x3f00003e, 0x1f00007c, 0x1f00007c, 0x1f00007c, 0x1f03e07c, 0x1f03e07c, 0x1f03f07c, 0x1f07707c, 0xf877078, 0xf877878, 0xf8f78f8, 0xf8e38f8, 0xf8e38f8, 0xf9e3cf8, 0xf9c1cf8, 0x79c1cf0, 0x79c1ef0, 0x7f80ef0, 0x7f80ef0, 0x7f80ef0, 0x7f807f0, 0x7f007f0, 0x3f007f0, 0x3f007e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3e00003e,0x3e00003e,0x3e00003e,0x3f00003e,0x1f00007c,0x1f00007c,0x1f00007c,0x1f03e07c,0x1f03e07c,0x1f03f07c,0x1f07707c,0xf877078,0xf877078,0xf8f78f8,0xf8e38f8,0xf8e38f8, + 0xf9e3cf8,0xf9c1cf8,0x79c1cf0,0x79c1ef0,0x7f80ef0,0x7f80ef0,0x7f80ef0,0x7f807f0,0x7f007f0,0x3f007f0,0x3f007e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 120 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe000fc, 0x7e001f8, 0x3f003f0, 0x1f807e0, 0x1f807e0, 0xfc0fc0, 0x7e1f80, 0x3e3f00, 0x3f3e00, 0x1ffe00, 0xffc00, 0x7f800, 0x7f000, 0x7f000, 0x7f800, 0xffc00, 0x1ffc00, 0x3f3e00, 0x3e3f00, 0x7e1f80, 0xfc0f80, 0x1f80fc0, 0x3f007e0, 0x3f003e0, 0x7e003f0, 0xfc001f8, 0x1fc000fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000fc,0x7e001f8,0x3f003f0,0x1f807e0,0x1f807e0,0xfc0fc0,0x7e1f80,0x3e3f00,0x3f3e00,0x1ffe00,0xffc00,0x7f800,0x7f000,0x7f000,0x7f800,0xffc00, + 0x1ffc00,0x3f3e00,0x3e3f00,0x7e1f80,0xfc0f80,0x1f80fc0,0x3f007e0,0x3f003e0,0x7e003f0,0xfc001f8,0x1fc000fc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 121 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f00007c, 0x1f00007c, 0xf8000f8, 0xf8000f8, 0x78000f0, 0x7c001f0, 0x3c001e0, 0x3e003e0, 0x3e003e0, 0x1e003c0, 0x1f007c0, 0xf00780, 0xf80f80, 0xf80f00, 0x780f00, 0x7c1f00, 0x3c1e00, 0x3e3e00, 0x1e3c00, 0x1e3c00, 0x1f7800, 0xf7800, 0xf7800, 0x7f000, 0x7f000, 0x3e000, 0x3e000, 0x3e000, 0x1e000, 0x1f000, 0xf000, 0xf800, 0x7800, 0x7c00, 0x3f00, 0x1ff0, 0xff0, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f00007c,0x1f00007c,0xf8000f8,0xf8000f8,0x78000f0,0x7c001f0,0x3c001e0,0x3e003e0,0x3e003e0,0x1e003c0,0x1f007c0,0xf00780,0xf80f80,0xf80f00,0x780f00,0x7c1f00, + 0x3c1e00,0x3e3e00,0x1e3c00,0x1e3c00,0x1f7800,0xf7800,0xf7800,0x7f000,0x7f000,0x3e000,0x3e000,0x3e000,0x1e000,0x1f000,0xf000,0xf800, + 0x7800,0x7c00,0x3f00,0x1ff0,0xff0,0x3f0,0x0,0x0,0x0,0x0,0x0, // 122 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3f80000, 0x1f80000, 0xfc0000, 0x7e0000, 0x7f0000, 0x3f0000, 0x1f8000, 0xfc000, 0xfe000, 0x7e000, 0x3f000, 0x1f800, 0x1fc00, 0xfc00, 0x7e00, 0x3f00, 0x3f80, 0x1f80, 0xfc0, 0x7e0, 0x7f0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3f80000,0x1f80000,0xfc0000,0x7e0000,0x7f0000,0x3f0000,0x1f8000,0xfc000,0xfe000,0x7e000,0x3f000,0x1f800,0x1fc00, + 0xfc00,0x7e00,0x3f00,0x3f80,0x1f80,0xfc0,0x7e0,0x7f0,0x7fffff0,0x7fffff0,0x7fffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 123 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fc0000, 0x7ff0000, 0x7ff8000, 0x7ffc000, 0x7c000, 0x3e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1f000, 0x1f000, 0xf800, 0x7e00, 0x3fc0, 0x1fc0, 0x1fc0, 0x7fc0, 0xfe00, 0xf800, 0x1f000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x3e000, 0x7c000, 0x7ffc000, 0x7ff8000, 0x7ff0000, 0x7fc0000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x7ff0000,0x7ff8000,0x7ffc000,0x7c000,0x3e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1f000,0x1f000,0xf800,0x7e00,0x3fc0,0x1fc0,0x1fc0,0x7fc0, + 0xfe00,0xf800,0x1f000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x3e000,0x7c000,0x7ffc000,0x7ff8000,0x7ff0000,0x7fc0000,0x0,0x0,0x0,0x0,0x0, // 124 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0, // 125 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff0, 0x7ff0, 0xfff0, 0x1fff0, 0x1f000, 0x3e000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x7c000, 0xf8000, 0x3f0000, 0x1fe0000, 0x1fc0000, 0x1fc0000, 0x1ff0000, 0x3f8000, 0xf8000, 0x7c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3e000, 0x1f000, 0x1fff0, 0xfff0, 0x7ff0, 0x1ff0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1ff0,0x7ff0,0xfff0,0x1fff0,0x1f000,0x3e000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x7c000,0xf8000,0x3f0000,0x1fe0000,0x1fc0000,0x1fc0000,0x1ff0000, + 0x3f8000,0xf8000,0x7c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3e000,0x1f000,0x1fff0,0xfff0,0x7ff0,0x1ff0,0x0,0x0,0x0,0x0,0x0, // 126 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3fc0, 0xc03fff0, 0xffffff8, 0xffffff8, 0x7ffe018, 0x1fc0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0xc03fff0,0xffffff8,0xffffff8,0x7ffe018,0x1fc0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 127 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffc, 0xfffc, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5edc804,0x6272d9e4,0x7636cbee,0x7c1699e4,0x7e080bf4,0x7f0c19e6,0x12080804,0x6db65ffc,0x6f8ec008,0x6f8ec000,0x2c1c4804,0x1c38dc04,0x6c406638,0xfebdcec,0x7cfcec4,0x6047c1fc, + 0xe6e08fe,0xe4e18fc,0x4c018700,0x60018700,0x3e7f1c,0x237f7ec,0x2213ffe6,0x70300ff4,0x70b802f8,0x71f860f8,0x23c3e20,0x6151a30,0x2c78338,0xf89ff18,0x78df500,0x6389c000, + 0x331f0ddc,0x163e0ffc,0x6d819804,0x65810806,0x2ff71bf4,0x7ff809e4,0x37fd1bf6,0x127308e4,0x230180c,0x12314f4e,0x1077dffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 128 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xeeee, 0xffff, 0xffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 129 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c0, 0x7c0, 0xfe0, 0x1ef0, 0x3c78, 0x3838, 0x600c, 0xc006, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f80,0x1f80,0x1f80,0x1f80,0x1f80,0x1f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 130 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffc, 0xfffc, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xc00c, 0xfffc, 0xfffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff8,0x7fff8,0x14a40,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 131 - 0xe01c000, 0x1f03c000, 0x1f03e000, 0x1f03e000, 0xe01c000, 0x0, 0x0, 0x0, 0x4000fffe, 0x4000bff4, 0xfc0, 0x1f80, 0x1f00, 0x3e00, 0x7e00, 0x40007c00, 0x4000fc00, 0x6000f800, 0x3001f000, 0x3003f000, 0x1803e000, 0x1807c000, 0xc0fc000, 0x60f8000, 0x61f8000, 0x33f0000, 0x1be0000, 0x1fe0000, 0xfc0000, 0x780000, 0xf80000, 0x780000, 0x780000, 0xf80000, 0x780000, 0xf80000, 0x780000, 0xfc0000, 0x780000, 0xf80000, 0x780000, 0xfc0000, 0x15fec000, 0x1fffe000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 132 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40280, 0x1e03c0, 0x3f07c0, 0x3f0fe0, 0x7f0fc0, 0x3c0b80, 0x200800, 0x200c00, 0x200800, 0x200400, 0x300400, 0x100600, 0x180200, 0x80100, 0x40180, 0x600c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7fffffff,0x44444444,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 133 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10040100, 0x781f07c0, 0x7c1f07c0, 0x783f07e0, 0x7c1f07c0, 0x700c0380, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 134 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1800, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x800, 0x1800, 0x800, 0x800, 0xf48f8, 0xffff8, 0xfdbf8, 0x20820, 0x800, 0x1c00, 0x1800, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1e00, 0x3c00, 0x1c00, 0x1c00, 0x3c00, 0x1e00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0xc00, 0x1800, 0xc00, 0x1800, 0xc00, 0x800, 0x800, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 135 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x800, 0x1800, 0x800, 0xf8978, 0xffff8, 0xfedf8, 0x20820, 0x800, 0x1c00, 0x800, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x800, 0x800, 0x50850, 0xffbf8, 0xffff8, 0xf8878, 0x800, 0xc00, 0x1800, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x1c00, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 136 - 0x3f0000, 0xff8000, 0x1e1e000, 0x3807000, 0x6001000, 0x0, 0x0, 0x0, 0x7ffffff8, 0x7f6efff8, 0x60001f00, 0x40001f00, 0x1f00, 0x1f00, 0x1e00, 0x1f00, 0x1f00, 0x1f00, 0x1001f00, 0x1001f00, 0x1800f00, 0x1001f00, 0x1801f00, 0x1c01f00, 0x1fd5f00, 0x1ffff00, 0x1c01f00, 0x1800f00, 0x1801f00, 0x1001f00, 0x1801f00, 0x1000f00, 0x1f00, 0x1f00, 0x1f00, 0xf00, 0x1f00, 0x1f00, 0x1f00, 0xf00, 0x1f00, 0x70001f00, 0x7fff7ff8, 0x7ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 137 - 0x0, 0x0, 0x0, 0x0, 0x1e00, 0x7380, 0xc0c0, 0x180e0, 0x70060, 0x603b0070, 0x3fe30070, 0x20070, 0x20038, 0x40020078, 0x60060038, 0x70020038, 0x30060078, 0x38020030, 0x1c030078, 0xc020070, 0xe010070, 0x7018060, 0x30080e0, 0x380c0c0, 0x1c06380, 0xc01e00, 0xe00000, 0x700000, 0x40300000, 0x60380000, 0x701c0000, 0x700e0000, 0x38060000, 0x38070000, 0x38038000, 0x38018000, 0x3801c000, 0x3c00e000, 0x38006000, 0x38007000, 0x38003800, 0x70001800, 0x70001c00, 0x60000e00, 0x60000700, 0x300, 0x300, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 138 - 0x3c3c00, 0xff800, 0x7e000, 0x3c000, 0x8000, 0x0, 0x0, 0x607fc00, 0x31daf00, 0x7380380, 0x3e001c0, 0x7c000e0, 0x38000e0, 0x3800070, 0x7000070, 0x3000070, 0x6000070, 0x20000f0, 0x60000f0, 0x20001f0, 0x3f0, 0xfe0, 0xffe0, 0xfffc0, 0x3fff80, 0xfffe00, 0x1fff800, 0x3ffc000, 0x7f80000, 0x7e00000, 0x7c00000, 0xf800000, 0xf000010, 0xf000010, 0xe000018, 0xe000030, 0xf000030, 0x6000030, 0x7000078, 0x7000070, 0x38001f0, 0x1c003f0, 0xf00e38, 0x7ffc30, 0xfe010, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 139 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x207fc00, 0x71eaf00, 0x3300380, 0x7e001c0, 0x3c000e0, 0x7800060, 0x3800070, 0x3000070, 0x7000070, 0x2000070, 0x60000f0, 0x20000f0, 0x60001f0, 0x3f0, 0xfe0, 0xffe0, 0xfffc0, 0x7fff80, 0xfffe00, 0x1fff800, 0x3ffc000, 0x3f80000, 0x7e00000, 0x7800000, 0xf800000, 0xf000010, 0xf000010, 0xf000018, 0xe000030, 0xf000030, 0x6000030, 0x7000078, 0x7000070, 0x38001f0, 0x1c003f0, 0xf00e38, 0x7ffc30, 0xfe010, 0x0, 0x0, 0x1c000, 0x1c000, 0x3e000, 0x3c000, 0x20000, 0x20000, 0x20000, 0x20000, 0x10000, 0x10000, 0x8000, 0x4000, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 140 - 0xf8000, 0x3c000, 0xe000, 0x3000, 0x0, 0x0, 0x0, 0x607fc00, 0x31faf00, 0x7300380, 0x3e001c0, 0x7c000e0, 0x3800060, 0x7800070, 0x3000070, 0x7000070, 0x2000070, 0x60000f0, 0x20000f0, 0x60001f0, 0x3f0, 0xfe0, 0xffe0, 0xfffc0, 0x7fff80, 0xfffe00, 0x1fff800, 0x3ffc000, 0x3fc0000, 0x7e00000, 0x7800000, 0xf800000, 0xf000010, 0xf000010, 0xe000018, 0xf000030, 0xe000030, 0x7000030, 0x7000078, 0x7000070, 0x38001f0, 0x1c003f0, 0xf00e38, 0x7ffc30, 0xfe010, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 141 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f40000, 0x3e0f0000, 0x7803c000, 0x7000f000, 0x70007800, 0x70003c00, 0x70001e00, 0x60001f00, 0x70000f00, 0x60000780, 0x70000780, 0x600007c0, 0x600007c0, 0x700003e0, 0x600003e0, 0x600003e0, 0x700003e0, 0x600003f0, 0x600003e0, 0x700003f0, 0x600003e0, 0x700003f0, 0x600003e0, 0x600003e0, 0x700003e0, 0x600007e0, 0x700007c0, 0x600007c0, 0x700007c0, 0x60000f80, 0x70001f00, 0x60001f00, 0x70003e00, 0x70003c00, 0x70007800, 0x7801f000, 0x7803c000, 0x7e9f0000, 0xbf40000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 142 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000010, 0x3c00038, 0x7c0007c, 0x1f000f8, 0x1f001f0, 0x7c03e0, 0x7c07c0, 0x1f0f80, 0x1f9f00, 0x7fe00, 0x3fc00, 0x1f800, 0x1f000, 0x3f800, 0x7fc00, 0xfbf00, 0x3f1f00, 0x3e07c0, 0x7c07c0, 0xf801f0, 0x1e001f0, 0x3e0007c, 0x7c0007c, 0x1800010, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 143 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe000, 0x1f000, 0x1f800, 0x1f000, 0xf000, 0x4000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5555554, 0x7fffffe, 0x7fffffc, 0x7fffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe000, 0x1f000, 0x1f800, 0x1f000, 0xf000, 0x4000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 144 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 145 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x200, 0x300, 0x180, 0x80, 0x40, 0x40, 0x60, 0x20, 0x20, 0x20, 0x2a0, 0x3e0, 0x7e0, 0x7e0, 0x7c0, 0x3c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 146 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x280, 0x3c0, 0x7c0, 0xfe0, 0xfc0, 0xb80, 0x800, 0x400, 0xc00, 0x400, 0x400, 0x200, 0x200, 0x300, 0x180, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 147 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100200, 0x80300, 0xc0180, 0x60080, 0x20040, 0x30040, 0x10060, 0x10020, 0x18020, 0x10020, 0x482a0, 0x1f83e0, 0x3f07e0, 0x3f07e0, 0x1f07c0, 0xe03c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 148 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40280, 0x1e03c0, 0x3f07c0, 0x3f0fe0, 0x7f0fc0, 0x3c0b80, 0x200800, 0x200c00, 0x200800, 0x200400, 0x300400, 0x100600, 0x180200, 0x80300, 0x40180, 0x600c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 149 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80000, 0x7fe0000, 0xfff0000, 0x1fff8000, 0x3fffc000, 0x7fffe000, 0x7fffe000, 0x7fffe000, 0x7fffe000, 0x7ffff000, 0x7fffe000, 0x7fffe000, 0x7fffe000, 0x3fffe000, 0x3fffc000, 0x1fff8000, 0xfff0000, 0x7fe0000, 0x1fc0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 150 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 151 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 152 - 0x0, 0x0, 0x0, 0x4000, 0xe000, 0xf000, 0x3f800, 0x31800, 0xf0c00, 0xc0600, 0x180300, 0x200180, 0x200000, 0x0, 0x0, 0x0, 0x0, 0x3fffffc, 0x1f557f0, 0x38003c0, 0x38003c0, 0x30003c0, 0x20003c0, 0x20001c0, 0x20403c0, 0x20403c0, 0x403c0, 0x603c0, 0x703c0, 0x7ffc0, 0x743c0, 0x603c0, 0x403c0, 0x40c03c0, 0xc0403c0, 0x40003c0, 0x60001c0, 0x60003c0, 0x60003c0, 0x20003c0, 0x70003c0, 0x3c003c0, 0x3f523e8, 0x3fffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 153 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6000000, 0xe000000, 0x1c000000, 0x18000000, 0x30000000, 0x30000000, 0x70000000, 0x60000000, 0x60000000, 0x7c000000, 0x7f800000, 0x7f00000, 0x40fe0000, 0x1fc000, 0x3f800, 0x7e00, 0xfc0, 0x1f0, 0x3f0, 0xfe0, 0x7e00, 0x3f000, 0x1fc000, 0xfe0000, 0x47f00000, 0x5f800000, 0x7c000000, 0x60000000, 0x60000000, 0x60000000, 0x30000000, 0x38000000, 0x18000000, 0x1c000000, 0xe000000, 0x6000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 154 - 0x0, 0x0, 0x0, 0x80010, 0x60060, 0x300c0, 0x181c0, 0x1e300, 0x7f00, 0x3e00, 0x3c00, 0x800, 0x0, 0x0, 0x0, 0x0, 0x83f00, 0xce1c0, 0xf8060, 0xe0030, 0xe0038, 0xc0018, 0xc0018, 0xc0038, 0xc003c, 0x80078, 0xf8, 0x7f0, 0x7ff0, 0x3ffe0, 0x3ff80, 0xffc00, 0xfe000, 0x1f0000, 0x1e0000, 0x1c0008, 0x1c0008, 0x18000c, 0x1c0008, 0xc0018, 0xc003c, 0xe0038, 0x300f8, 0x3d79c, 0x7e08, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 155 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x83f00, 0xce1c0, 0xf8060, 0xe0030, 0xe0038, 0xc0018, 0xc0018, 0xc0038, 0x8003c, 0x80078, 0x78, 0x7f0, 0x7ff0, 0x3ffe0, 0x3ff80, 0xffe00, 0xfe000, 0x1f0000, 0x1e0000, 0x1c0008, 0x1c0008, 0x18000c, 0x1c0008, 0x180018, 0xc003c, 0xe0038, 0x700f8, 0x1d79c, 0x7e08, 0x0, 0x0, 0x0, 0x1c00, 0x3c00, 0x3c00, 0x3c00, 0x2000, 0x2000, 0x2000, 0x2000, 0x1000, 0x800, 0x800, 0x400, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 156 - 0x0, 0x0, 0x0, 0x30000, 0x78000, 0x3c000, 0x3e000, 0xf000, 0x7800, 0x3800, 0xc00, 0xe00, 0x200, 0x0, 0x0, 0x0, 0x83f00, 0xce1c0, 0xf8060, 0xe0030, 0xe0038, 0xc0018, 0xc0018, 0xc0038, 0xc003c, 0x80078, 0xf8, 0x7f0, 0x7ff0, 0x1ffe0, 0x7ff80, 0x7fc00, 0xfe000, 0x1f0000, 0x1e0000, 0x1c0008, 0x1c0008, 0x18000c, 0x1c0008, 0x1c0018, 0xc003c, 0x60038, 0x700f8, 0x1d79c, 0x7e08, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 157 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe000, 0x7ff83800, 0x13e01e00, 0x1e00700, 0x1e00780, 0x1c003c0, 0x1e001c0, 0x1c001e0, 0x1e000f0, 0x1c000f0, 0x1c000f0, 0x1e000f8, 0x1c00070, 0x1c000f8, 0x7fe000f8, 0x15c00078, 0x1c000f8, 0x1e000f0, 0x1c000f0, 0x1c000f0, 0x1e001f0, 0x1c001e0, 0x1e003e0, 0x1c003c0, 0x1e00780, 0x1e00f00, 0x2be01c00, 0x7ff97800, 0x2fe000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 158 - 0x0, 0x0, 0x0, 0x0, 0x180060, 0xe01c0, 0x30300, 0x38700, 0x1ee00, 0xfc00, 0x7800, 0x3000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ffff0, 0x7d2bf8, 0x7c00f0, 0x3c0038, 0x1e0030, 0xf0018, 0xf0018, 0x78010, 0x7c008, 0x3c000, 0x1e000, 0x1f000, 0xf800, 0x7800, 0x3c00, 0x3e00, 0x801e00, 0x400f00, 0xc00f80, 0x400780, 0xc003c0, 0x6003e0, 0x6001e0, 0x7000f0, 0x7800f8, 0x7fd578, 0x7ffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 159 - 0x0, 0x0, 0x40000, 0x70000, 0xf0000, 0x78000, 0x7c000, 0x1e000, 0xf000, 0x7000, 0x3800, 0xc00, 0x400, 0x0, 0x0, 0x0, 0x0, 0x7ffff0, 0x7d2bf8, 0x7c00f0, 0x3c0038, 0x1e0030, 0x1f0018, 0xf0018, 0x78010, 0x7c008, 0x3c000, 0x1e000, 0x1f000, 0xf000, 0x7800, 0x7c00, 0x3e00, 0x801e00, 0x400f00, 0xc00f80, 0x400780, 0xc003c0, 0x6003e0, 0x6001e0, 0x7000f0, 0x7800f8, 0x7fd578, 0x7ffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc,0xfffc,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c, + 0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xc00c,0xfffc,0xfffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 160 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 161 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 162 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ff800, 0xfffe00, 0x1ffff80, 0x3f81fc0, 0x3e007c0, 0x7c003e0, 0x7c003f0, 0xf8001f0, 0xf8001f0, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8001f0, 0xf8001f0, 0x7c003f0, 0x7c003e0, 0x7e007e0, 0x3f81fc0, 0x1ffff80, 0xfffe00, 0x1ff800, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c000,0x1c000,0x1c000,0x1c000,0xff800,0x3ffe00,0x7fff00,0xffffc0, + 0x1f9cfc0,0x3f1c7e0,0x3e1c3f0,0x7e1c1f0,0x7c1c1f0,0x1c0f8,0x1c0f8,0x1c0f8,0x1c0f8,0x1c0f8,0x1c0f8,0x1c0f8,0x1c0f8,0x1c0f8,0x1c1f8,0x7c1c1f0, + 0x7e1c1f0,0x3e1c3f0,0x3f1c7e0,0x1f9cfc0,0xffffc0,0x7fff80,0x3ffe00,0xff800,0x1c000,0x1c000,0x1c000,0x1c000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 163 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fe000, 0xfff800, 0x1fffc00, 0x3fffe00, 0x7f07f00, 0x7e01f00, 0xc01f80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0x1ffffc, 0x1ffffc, 0x1ffffc, 0x1ffffc, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0x7c0, 0x1e0007c0, 0x3e0003e0, 0x3f0000f8, 0x1ffffffc, 0x1ffffffc, 0xffffffc, 0x3fffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe000,0xfff800,0x1fffc00,0x3fffe00,0x7f07f00,0x7e01f00,0xc01f80,0xf80, + 0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0xf80,0x1ffffc,0x1ffffc,0x1ffffc,0x1ffffc,0xf80,0xf80,0xf80,0xf80, + 0xf80,0xf80,0xf80,0x7c0,0x1e0007c0,0x3e0003e0,0x3f0000f8,0x1ffffffc,0x1ffffffc,0xffffffc,0x3fffffc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 164 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x107e0c0, 0x39ffde0, 0x7fffff0, 0x3ffffc0, 0x1f81f80, 0x1f00fc0, 0x3e007c0, 0x3c003c0, 0x78001e0, 0x78001e0, 0x78001e0, 0x78001e0, 0x78001e0, 0x78001e0, 0x3c003c0, 0x3e007c0, 0x3f00fc0, 0x1f81f80, 0x3ffffc0, 0x7ffffe0, 0x7bffdf0, 0x307e0e0, 0x1000040, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x107e0c0, + 0x39ffde0,0x7fffff0,0x3ffffe0,0x1f81f80,0x1f00fc0,0x3e007c0,0x3c003c0,0x78001e0,0x78001e0,0x78001e0,0x78001e0,0x78001e0,0x78001e0,0x3c003c0,0x3e007c0,0x3f00fc0, + 0x1f81f80,0x3ffffc0,0x7ffffe0,0x7bffdf0,0x307e0e0,0x1000040,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 165 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f00003e, 0xf80007c, 0x7800078, 0x7c000f8, 0x3e001f0, 0x3e001f0, 0x1f003e0, 0xf003c0, 0xf807c0, 0x7c0780, 0x7c0f80, 0x3e1f00, 0x1e1e00, 0x1f3e00, 0xf3c00, 0xff800, 0x7f800, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x1e000, 0x1e000, 0x1e000, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f00003e,0xf80007c,0x7800078,0x7c000f8,0x3e001f0,0x3e001f0,0x1f003e0, + 0xf003c0,0xf807c0,0x7c0780,0x7c0f80,0x3e1f00,0x1e1e00,0x1f3e00,0xf3c00,0xff800,0x7f800,0x7fffff8,0x7fffff8,0x7fffff8,0x7fffff8,0x1e000,0x1e000, + 0x1e000,0x7fffff8,0x7fffff8,0x7fffff8,0x7fffff8,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 166 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0, // 167 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff000, 0x7ffe00, 0x1ffff00, 0x3f83f80, 0x3e00f80, 0x7c007c0, 0x7c007c0, 0x7c0, 0x7c0, 0xfc0, 0x1f80, 0xff80, 0xffe00, 0x7ffc00, 0x1fffe00, 0x3ff3f00, 0x7f80f80, 0x7e007c0, 0xfc003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8007e0, 0x7c00fc0, 0x7e03fc0, 0x3fdff80, 0xfffe00, 0x7ff800, 0x1ffc000, 0x3fc0000, 0x7f00000, 0xfc00000, 0xf800000, 0xf800000, 0xf8001c0, 0xf8001f0, 0xfc003e0, 0x7c007e0, 0x3f01fc0, 0x1ffff80, 0xffff00, 0x1ff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1ff000,0x7ffe00,0x1ffff00,0x3f83f80,0x3e00f80,0x7c007c0,0x7c007c0,0x7c0,0x7c0,0xfc0,0x1f80, + 0xff80,0xffe00,0x7ffc00,0x1fffe00,0x3ff3f00,0x7f80f80,0x7e007c0,0xfc003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8007e0,0x7c00fc0,0x7e03fc0,0x3fdff80,0xfffe00, + 0x7ff800,0x1ffc000,0x3fc0000,0x7f00000,0xfc00000,0xf800000,0xf800000,0xf8001c0,0xf8001f0,0xfc003e0,0x7c007e0,0x3f01fc0,0x1ffff80,0xffff00,0x1ff800,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 168 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 169 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x3ffe00, 0xf80f80, 0x1e001c0, 0x38000e0, 0x7000070, 0x6000030, 0xe000038, 0xc07f018, 0x1c0ff81c, 0x181ffe0c, 0x183c1e0c, 0x18780f0c, 0x30300706, 0x30000786, 0x30000386, 0x30000386, 0x30000386, 0x30000386, 0x30000386, 0x30000386, 0x30000386, 0x30000386, 0x30300706, 0x1870070c, 0x18780f0c, 0x183c1e0c, 0x1c1ffc0c, 0xc0ff818, 0xe07e018, 0x6000030, 0x7000070, 0x38000e0, 0x1c001c0, 0xf80f80, 0x3ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f000,0x3ffe00,0xf80f80,0x1e001c0,0x38000e0,0x7000070,0x6000030,0xe000038,0xc07f018,0x1c0ff81c,0x181ffe0c, + 0x183c1e0c,0x18780f0c,0x30300706,0x30000786,0x30000386,0x30000386,0x30000386,0x30000386,0x30000386,0x30000386,0x30000386,0x30000386,0x30300706,0x1870070c,0x18780f0c,0x183c1e0c, + 0x1c1ffc0c,0xc0ff818,0xe07e018,0x6000030,0x7000070,0x38000e0,0x1c001c0,0xf80f80,0x3ffe00,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 170 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f800, 0x1ffe00, 0x3fff00, 0x3e0f80, 0x7c07c0, 0x7803c0, 0x780000, 0x780000, 0x7ffc00, 0x7fff80, 0x7fffc0, 0x7807e0, 0x7801e0, 0x7c01e0, 0x7e01e0, 0xff03e0, 0x3fbffc0, 0x3f1ff80, 0x3e07f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x1ffe00,0x3fff00,0x3e0f80,0x7c07c0,0x7803c0,0x780000,0x780000,0x7ffc00, + 0x7fff80,0x7fffc0,0x7807e0,0x7801e0,0x7c01e0,0x7e01e0,0xff03e0,0x3fbffc0,0x3f1ff80,0x3e07f00,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 171 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf80f800, 0x7c07c00, 0x7e07e00, 0x3f03f00, 0x1f81f80, 0xfc0fc0, 0x7e07e0, 0x3f03f0, 0x1f01f0, 0xf80f8, 0xf80f8, 0x1f01f0, 0x3f03f0, 0x7e07e0, 0xfc0fc0, 0x1f81f80, 0x3f03f00, 0x3e03e00, 0x7c07c00, 0xf80f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xf80f800,0x7c07c00,0x7e07e00,0x3f03f00,0x1f81f80,0xfc0fc0,0x7e07e0,0x3f03f0,0x1f01f0,0xf80f8,0xf80f8,0x1f01f0,0x3f03f0, + 0x7e07e0,0xfc0fc0,0x1f81f80,0x3f03f00,0x3e03e00,0x7c07c00,0xf80f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 172 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffff8, 0xffffff8, 0xffffff8, 0xffffff8, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0xf000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff8,0xffffff8,0xffffff8,0xffffff8,0xf000000,0xf000000,0xf000000,0xf000000, + 0xf000000,0xf000000,0xf000000,0xf000000,0xf000000,0xf000000,0xf000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 173 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 174 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x3ffe00, 0xf80f80, 0x1e001c0, 0x38000e0, 0x7000070, 0x6000030, 0xe000038, 0xc07ff18, 0x1c1fff1c, 0x183c070c, 0x1878070c, 0x1870070c, 0x30700706, 0x30700706, 0x30700706, 0x30380706, 0x303c0706, 0x301fff06, 0x3003ff06, 0x30038706, 0x30070706, 0x300f0706, 0x300e0706, 0x181e070c, 0x183c070c, 0x1838070c, 0x1c78070c, 0xc700718, 0xef00718, 0x6000030, 0x7000070, 0x38000e0, 0x1c001c0, 0xf80f80, 0x3ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f000,0x3ffe00,0xf80f80,0x1e001c0,0x38000e0,0x7000070,0x6000030,0xe000038,0xc07ff18,0x1c1fff1c,0x183c070c, + 0x1878070c,0x1870070c,0x30700706,0x30700706,0x30700706,0x30380706,0x303c0706,0x301fff06,0x3003ff06,0x30038706,0x30070706,0x300f0706,0x300e0706,0x181e070c,0x183c070c,0x1838070c, + 0x1c78070c,0xc700718,0xef00718,0x6000030,0x7000070,0x38000e0,0x1c001c0,0xf80f80,0x3ffe00,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 175 - 0x0, 0x0, 0x0, 0x7fffffff, 0x7fffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7fffffff,0x7fffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 176 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0xff800, 0x1ffc00, 0x3c1e00, 0x380f00, 0x700700, 0x700700, 0x700700, 0x700700, 0x780f00, 0x3c1e00, 0x1ffc00, 0xff800, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000,0xff800,0x1ffc00,0x3c1e00,0x380f00,0x700700,0x700700,0x700700, + 0x700700,0x780f00,0x3c1e00,0x1ffc00,0xff800,0x3e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 177 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x0, 0x0, 0x0, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x0,0x0,0x0,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 178 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x1ff800, 0x3ffe00, 0x7c3e00, 0x781f00, 0x780f00, 0x780000, 0x780000, 0x3c0000, 0x3c0000, 0x1e0000, 0xf0000, 0x7c000, 0x3e000, 0xf000, 0x7800, 0x3c00, 0x1e00, 0xf00, 0x7fff00, 0x7fff00, 0x7fff00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e000,0x1ff800,0x3ffe00,0x7c3e00,0x781f00,0x780f00,0x780000,0x780000,0x3c0000, + 0x3c0000,0x1e0000,0xf0000,0x7c000,0x3e000,0xf000,0x7800,0x3c00,0x1e00,0xf00,0x7fff00,0x7fff00,0x7fff00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 179 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f000, 0x1ffc00, 0x3ffe00, 0x7c3e00, 0x780f00, 0x780f00, 0x780000, 0x780000, 0x3e0000, 0x1fc000, 0x7c000, 0x3fc000, 0x7c0000, 0xf80000, 0xf00000, 0xf00000, 0xf00f00, 0xf81f00, 0x7c3e00, 0x7ffe00, 0x3ffc00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x1ffc00,0x3ffe00,0x7c3e00,0x780f00,0x780f00,0x780000,0x780000,0x3e0000, + 0x1fc000,0x7c000,0x3fc000,0x7c0000,0xf80000,0xf00000,0xf00000,0xf00f00,0xf81f00,0x7c3e00,0x7ffe00,0x3ffc00,0xff000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 180 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f8000, 0xfc000, 0x7c000, 0x3e000, 0xf000, 0x7800, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f8000,0xf8000,0x7c000,0x3e000,0xf000,0x7800,0x3c00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 181 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7e003e0, 0x7e007e0, 0x7f007e0, 0x7f80fe0, 0x7dc1fe0, 0x7cfffe0, 0x7c7fbe0, 0x3e3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7e003e0,0x7e007e0,0x7f007e0,0x7f80fe0,0x7dc1fe0,0x7cfffe0,0x7c7fbe0,0x3e3e0,0x3e0,0x3e0,0x3e0,0x3e0, + 0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x0,0x0,0x0,0x0,0x0, // 182 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffe00, 0x7ffff80, 0x7ffffe0, 0xe07fe0, 0xe07ff0, 0xe07ff0, 0xe07ff8, 0xe07ff8, 0xe07ff8, 0xe07ff8, 0xe07ff8, 0xe07ff8, 0xe07ff8, 0xe07ff0, 0xe07ff0, 0xe07fe0, 0xe07fc0, 0xe07e00, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0xe07000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x7ffff80,0x7ffffe0,0xe07fe0,0xe07ff0,0xe07ff0,0xe07ff8, + 0xe07ff8,0xe07ff8,0xe07ff8,0xe07ff8,0xe07ff8,0xe07ff8,0xe07ff0,0xe07ff0,0xe07fe0,0xe07fc0,0xe07e00,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000, + 0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000,0xe07000, + 0xe07000,0xe07000,0xe07000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 183 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x7e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000,0x7e000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 184 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xe0, 0xe0, 0x3f0, 0x7f0, 0xf00, 0xe00, 0xe00, 0xf00, 0x7f8, 0x1f8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xe0,0xe0,0x3f0,0x7f0, + 0xf00,0xe00,0xe00,0xf00,0x7f8,0x1f8,0x0,0x0,0x0,0x0,0x0, // 185 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c000, 0x3e000, 0x3f800, 0x3ff80, 0x3df80, 0x3c380, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0x3c000, 0xffff80, 0xffff80, 0xffff80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c000,0x3e000,0x3f800,0x3ff80,0x3df80,0x3c380,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0xffff80,0xffff80,0xffff80,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 186 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x3ffc00, 0x7ffe00, 0xf81f00, 0x1f00f80, 0x1e00780, 0x3c003c0, 0x3c003c0, 0x3c003c0, 0x3c003c0, 0x3c003c0, 0x3c003c0, 0x3c003c0, 0x1e00780, 0x1f00f80, 0xf81f00, 0x7ffe00, 0x3ffc00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x3ffc00,0x7ffe00,0xf81f00,0x1f00f80,0x1e00780,0x3c003c0,0x3c003c0,0x3c003c0, + 0x3c003c0,0x3c003c0,0x3c003c0,0x3c003c0,0x1e00780,0x1f00f80,0xf81f00,0x7ffe00,0x3ffc00,0xff000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 187 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf80f8, 0x1f01f0, 0x3e03e0, 0x7e07e0, 0xfc0fc0, 0x1f81f80, 0x3f03f00, 0x7e07e00, 0x7c07c00, 0xf80f800, 0xf80f800, 0x7c07c00, 0x7e07e00, 0x3f03f00, 0x1f81f80, 0xfc0fc0, 0x7e07e0, 0x3e03e0, 0x1f01f0, 0xf80f8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xf80f8,0x1f01f0,0x3f03f0,0x7e07e0,0xfc0fc0,0x1f81f80,0x3f03f00,0x7e07e00,0x7c07c00,0xf80f800,0xf80f800,0x7c07c00,0x7e07e00, + 0x3f03f00,0x1f81f80,0xfc0fc0,0x7e07e0,0x3e03e0,0x1f01f0,0xf80f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 188 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38001e0, 0x1c001f0, 0x1c001f8, 0xe001fe, 0xe001ee, 0x7001e6, 0x7001e0, 0x3801e0, 0x3801e0, 0x1c01e0, 0x1c01e0, 0xe01e0, 0x701e0, 0x701e0, 0x381e0, 0xf8381e0, 0xf81cffc, 0xfc1cffc, 0xfe0effc, 0xf70e000, 0xf707000, 0xf387000, 0xf1c3800, 0xf0c1c00, 0xf0e1c00, 0xf070e00, 0xf038e00, 0x7fff8700, 0x7fff8700, 0x7fff8380, 0xf000380, 0xf0001c0, 0xf0001c0, 0xf0000e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38001e0,0x1c001f0,0x1c001f8,0xe001fe,0xe001ee,0x7001e6,0x7001e0, + 0x3801e0,0x3801e0,0x1c01e0,0x1c01e0,0xe01e0,0x701e0,0x701e0,0x381e0,0xf8381e0,0xf81cffc,0xfc1cffc,0xfe0effc,0xf70e000,0xf707000,0xf387000,0xf1c3800, + 0xf0c1c00,0xf0e1c00,0xf070e00,0xf038e00,0x7fff8700,0x7fff8700,0x7fff8380,0xf000380,0xf0001c0,0xf0001c0,0xf0000e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 189 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38001e0, 0x1c001f0, 0x1c001f8, 0xe001fe, 0xe001ee, 0x7001e6, 0x7001e0, 0x3801e0, 0x3801e0, 0x1c01e0, 0x1c01e0, 0xe01e0, 0x701e0, 0x701e0, 0x381e0, 0xfe381e0, 0x1ff9cffc, 0x3ffdcffc, 0x7c3ceffc, 0x781ee000, 0x781e7000, 0x78007000, 0x3c003800, 0x3c001c00, 0x1e001c00, 0xf800e00, 0x3c00e00, 0x1f00700, 0x780700, 0x3c0380, 0x1e0380, 0x7ffe01c0, 0x7ffe01c0, 0x7ffe00e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38001e0,0x1c001f0,0x1c001f8,0xe001fe,0xe001ee,0x7001e6,0x7001e0, + 0x3801e0,0x3801e0,0x1c01e0,0x1c01e0,0xe01e0,0x701e0,0x701e0,0x381e0,0xfe381e0,0x1ff9cffc,0x3ffdcffc,0x7c3ceffc,0x781ee000,0x781e7000,0x78007000,0x3c003800, + 0x3c001c00,0x1e001c00,0xf800e00,0x3c00e00,0x1f00700,0x780700,0x3c0380,0x1e0380,0x7ffe01c0,0x7ffe01c0,0x7ffe00e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 190 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70003f0, 0x3800ffc, 0x3800ffe, 0x1c01f1e, 0x1c01e0f, 0xe01e0f, 0xe01e00, 0x700f80, 0x7003e0, 0x3807e0, 0x381e00, 0x1c1c00, 0xe3c00, 0xe3c0f, 0x73c0f, 0xf873e1e, 0xf839ffe, 0xfc38ffc, 0xfe1c3f0, 0xf71c000, 0xf70e000, 0xf38e000, 0xf1c7000, 0xf0c3800, 0xf0e3800, 0xf071c00, 0xf039c00, 0x7fff8e00, 0x7fff8e00, 0x7fff8700, 0xf000700, 0xf000380, 0xf000380, 0xf0001c0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70003f0,0x3800ffc,0x3800ffe,0x1c01f1e,0x1c01e0f,0xe01e0f,0xe01e00, + 0x700f80,0x7003e0,0x3807e0,0x381e00,0x1c1c00,0xe3c00,0xe3c0f,0x73c0f,0xf873e1e,0xf839ffe,0xfc38ffc,0xfe1c3f0,0xf71c000,0xf70e000,0xf38e000,0xf1c7000, + 0xf0c3800,0xf0e3800,0xf071c00,0xf039c00,0x7fff8e00,0x7fff8e00,0x7fff8700,0xf000700,0xf000380,0xf000380,0xf0001c0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 191 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0xf8000, 0x0, 0x0, 0x0, 0x0, 0xf8000, 0xf8000, 0x78000, 0x7c000, 0x3e000, 0x3f000, 0x1f800, 0x7e00, 0x3f00, 0x1f80, 0xfc0, 0x7e0, 0x3e0, 0x1f0, 0x1f0001f0, 0x1f0001f0, 0x1f8001f0, 0xf8001f0, 0xfc003f0, 0x7e007e0, 0x7f81fe0, 0x3ffffc0, 0x1ffff80, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf8000,0xf8000,0xf8000,0xf8000,0xf8000,0x0,0x0,0x0,0x0,0xf8000,0xf8000,0x78000,0x7c000,0x3e000,0x3f000,0x1f800, + 0x7e00,0x3f00,0x1f80,0xfc0,0x7e0,0x3e0,0x1f0,0x1f0001f0,0x1f0001f0,0x1f8001f0,0xf8001f0,0xfc003f0,0x7e007e0,0x7f81fe0,0x3ffffc0,0x1ffff80, + 0x7ffe00,0xff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 192 - 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0x7f000, 0x7f000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0x7f000,0x7f000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 193 - 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0x7f000, 0x7f000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0x7f000,0x7f000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 194 - 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3c1e00, 0x780f00, 0xe00380, 0x0, 0x0, 0x0, 0x7f000, 0x7f000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f000,0xff800,0x1f7c00,0x3c1e00,0x780f00,0xe00380,0x0,0x0,0x0,0x7f000,0x7f000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 195 - 0x1c03c00, 0x1c07e00, 0x1c1ff00, 0xe3c700, 0xff8380, 0x7e0380, 0x3c0380, 0x0, 0x0, 0x0, 0x7f000, 0x7f000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c07e00,0x1c1ff00,0xe3c700,0xff8380,0x7e0380,0x3c0380,0x0,0x0,0x0,0x7f000,0x7f000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 196 - 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x7f000, 0x7f000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x7f000,0x7f000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 197 - 0x0, 0x0, 0x0, 0x7e000, 0xff800, 0x1ff800, 0x3c3c00, 0x381c00, 0x381c00, 0x3c3c00, 0x1ff800, 0xff000, 0xff000, 0xff800, 0xf7800, 0x1f7800, 0x1f7c00, 0x1e3c00, 0x3e3e00, 0x3e3e00, 0x7c1e00, 0x7c1f00, 0x7c1f00, 0xf80f00, 0xf80f80, 0xf80f80, 0x1f007c0, 0x1f007c0, 0x1f007c0, 0x3e003e0, 0x3e003e0, 0x3ffffe0, 0x7fffff0, 0x7fffff0, 0xffffff8, 0xf8000f8, 0xf8000f8, 0x1f8000fc, 0x1f00007c, 0x1f00007c, 0x3e00007e, 0x3e00003e, 0x3e00003e, 0x7c00001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x7e000,0xff800,0x1ff800,0x3c3c00,0x381c00,0x381c00,0x3c3c00,0x1ff800,0xff000,0xff000,0xff800,0xf7800,0x1f7800,0x1f7c00, + 0x1e3c00,0x3e3e00,0x3e3e00,0x7c1e00,0x7c1f00,0x7c1f00,0xf80f00,0xf80f80,0xf80f80,0x1f007c0,0x1f007c0,0x1f007c0,0x3e003e0,0x3e003e0,0x7ffffe0,0x7fffff0, + 0x7fffff0,0xffffff8,0xf8000f8,0xf8000f8,0x1f8000fc,0x1f00007c,0x1f00007c,0x3e00007e,0x3e00003e,0x3e00003e,0x7c00001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 198 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ffff800, 0x1ffff800, 0x1ffffc00, 0x1ffffc00, 0xf3c00, 0xf3e00, 0xf3e00, 0xf1e00, 0xf1f00, 0xf1f00, 0xf1f00, 0xf0f80, 0xf0f80, 0xf0f80, 0xf07c0, 0x1fff07c0, 0x1fff07c0, 0x1fff03e0, 0x1fff03e0, 0xf03e0, 0xffff0, 0xffff0, 0xffff0, 0xffff8, 0xf00f8, 0xf00f8, 0xf00fc, 0xf007c, 0xf007c, 0xf007e, 0x3fff003e, 0x3fff003e, 0x3fff003f, 0x3fff001f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff800,0x1ffff800,0x1ffffc00,0x1ffffc00,0xf3c00,0xf3e00,0xf3e00, + 0xf1e00,0xf1f00,0xf1f00,0xf1f00,0xf0f80,0xf0f80,0xf0f80,0xf07c0,0x1fff07c0,0x1fff07c0,0x1fff03e0,0x1fff03e0,0xf03e0,0xffff0,0xffff0,0xffff0, + 0xffff8,0xf00f8,0xf00f8,0xf00fc,0xf007c,0xf007c,0xf007e,0x3fff003e,0x3fff003e,0x3fff003f,0x3fff001f,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 199 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x7ffc00, 0xffff00, 0x1ffff80, 0x3f83fc0, 0x7e00fc0, 0x7c007e0, 0xf8003e0, 0xf8001f0, 0x10001f0, 0x1f0, 0x1f0, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0x1f0, 0x20001f0, 0x1f0001f0, 0x1f0003f0, 0xf8003e0, 0xfc007e0, 0x7e00fc0, 0x3f83f80, 0x1ffff00, 0xfffe00, 0x7ffc00, 0xfe000, 0x1c000, 0x1c000, 0x7e000, 0xfe000, 0x1e0000, 0x1c0000, 0x1c0000, 0x1e0000, 0xff000, 0x3f000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x7ffc00,0xffff00,0x1ffff80,0x3f83fc0,0x7e00fc0,0x7c007e0,0xf8003e0, + 0xf8001f0,0x10001f0,0x1f0,0x1f0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, + 0x1f0,0x20001f0,0x1f0001f0,0x1f0003f0,0xf8003e0,0xfc007e0,0x7e00fc0,0x3f83f80,0x1ffff00,0xfffe00,0x7ffc00,0xfe000,0x1c000,0x1c000,0x7e000,0xfe000, + 0x1e0000,0x1c0000,0x1c0000,0x1e0000,0xff000,0x3f000,0x0,0x0,0x0,0x0,0x0, // 200 - 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0x1f0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 201 - 0x7e0000, 0x3f0000, 0x1f0000, 0xf8000, 0x3c000, 0x1e000, 0xf000, 0x0, 0x0, 0x0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0x1f0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 202 - 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3c1e00, 0x780f00, 0xe00380, 0x0, 0x0, 0x0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f000,0xff800,0x1f7c00,0x3c1e00,0x780f00,0xe00380,0x0,0x0,0x0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0x1f0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 203 - 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x7fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1fffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0xffffff0, 0xffffff0, 0xffffff0, 0xffffff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0x1f0,0x1f0,0x1f0,0x1f0, + 0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0xffffff0,0xffffff0,0xffffff0,0xffffff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 204 - 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 205 - 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 206 - 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3c1e00, 0x780f00, 0xe00380, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f000,0xff800,0x1f7c00,0x3c1e00,0x780f00,0xe00380,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 207 - 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x3ffffe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 208 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1fff0, 0x1ffff0, 0x7ffff0, 0xfffff0, 0x1fe01f0, 0x3f801f0, 0x7e001f0, 0x7c001f0, 0xfc001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0x1f00fffe, 0x1f00fffe, 0x1f00fffe, 0x1f00fffe, 0x1f0001f0, 0x1f0001f0, 0x1f0001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0x7c001f0, 0x7e001f0, 0x3e001f0, 0x3f801f0, 0x1fe01f0, 0xfffff0, 0x7ffff0, 0x1ffff0, 0x3fff0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff0,0x1ffff0,0x7ffff0,0xfffff0,0x1fe01f0,0x3f801f0,0x7e001f0, + 0x7c001f0,0xfc001f0,0xf8001f0,0xf8001f0,0xf8001f0,0x1f0001f0,0x1f0001f0,0x1f0001f0,0x1f00fffe,0x1f00fffe,0x1f00fffe,0x1f00fffe,0x1f0001f0,0x1f0001f0,0x1f0001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0x7c001f0,0x7e001f0,0x3e001f0,0x3f801f0,0x1fe01f0,0xfffff0,0x7ffff0,0x1ffff0,0x3fff0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 209 - 0x1c03c00, 0x1c07e00, 0x1c1ff00, 0xe3c700, 0xff8380, 0x7e0380, 0x3c0380, 0x0, 0x0, 0x0, 0x78003f0, 0x78003f0, 0x78007f0, 0x78007f0, 0x7800ff0, 0x7800ff0, 0x7801ff0, 0x7801ef0, 0x7801ef0, 0x7803cf0, 0x7803cf0, 0x7807cf0, 0x78078f0, 0x780f8f0, 0x780f0f0, 0x781f0f0, 0x781e0f0, 0x783e0f0, 0x783c0f0, 0x787c0f0, 0x78780f0, 0x78f80f0, 0x78f00f0, 0x79f00f0, 0x79e00f0, 0x7be00f0, 0x7bc00f0, 0x7fc00f0, 0x7f800f0, 0x7f800f0, 0x7f000f0, 0x7f000f0, 0x7e000f0, 0x7e000f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c07e00,0x1c1ff00,0xe3c700,0xff8380,0x7e0380,0x3c0380,0x0,0x0,0x0,0x78003f0,0x78003f0,0x78007f0,0x78007f0,0x7800ff0,0x7800ff0,0x7801ff0, + 0x7801ef0,0x7803ef0,0x7803cf0,0x7803cf0,0x7807cf0,0x78078f0,0x780f8f0,0x780f0f0,0x781f0f0,0x781e0f0,0x783e0f0,0x783c0f0,0x787c0f0,0x78780f0,0x78f80f0,0x78f00f0, + 0x79f00f0,0x79e00f0,0x7be00f0,0x7bc00f0,0x7fc00f0,0x7f800f0,0x7f800f0,0x7f000f0,0x7f000f0,0x7e000f0,0x7e000f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 210 - 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 211 - 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 212 - 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3c1e00, 0x780f00, 0xe00380, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7f000,0xff800,0x1f7c00,0x3c1e00,0x780f00,0xe00380,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 213 - 0x1c03c00, 0x1c07e00, 0x1c1ff00, 0xe3c700, 0xff8380, 0x7e0380, 0x3c0380, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c07e00,0x1c1ff00,0xe3c700,0xff8380,0x7e0380,0x3c0380,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 214 - 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x7f000, 0x3ffe00, 0x7fff00, 0xffff80, 0x1fc1fc0, 0x1f007c0, 0x3f003e0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3e007e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x7fff00, 0x1ffe00, 0x7f000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x7f000,0x3ffe00,0x7fff00,0xffff80,0x1fc1fc0,0x1f007c0,0x3f003e0,0x3e003e0, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0x7c001f0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3e007e0,0x1f007c0,0x1fc1fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 215 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000040, 0x38000e0, 0x7c001f0, 0x3e003e0, 0x1f007c0, 0xf80f80, 0x7c1f00, 0x3e3e00, 0x1f7c00, 0xff800, 0x7f000, 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3e3e00, 0x7c1f00, 0xf80f80, 0x1f007c0, 0x3e003e0, 0x7c001f0, 0x38000e0, 0x1000040, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1000040,0x38000e0, + 0x7c001f0,0x3e003e0,0x1f007c0,0xf80f80,0x7c1f00,0x3e3e00,0x1f7c00,0xff800,0x7f000,0x3e000,0x7f000,0xff800,0x1f7c00,0x3e3e00,0x7c1f00,0xf80f80, + 0x1f007c0,0x3e003e0,0x7c001f0,0x38000e0,0x1000040,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 216 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc07f000, 0x1e1ffe00, 0xe7fff00, 0x7ffff80, 0x7fc1fc0, 0x3f007c0, 0x3f003e0, 0x3e003e0, 0x7f001f0, 0x7f001f0, 0x7f801f0, 0x7fc01f8, 0xf9c00f8, 0xf8e00f8, 0xf8f00f8, 0xf8780f8, 0xf8380f8, 0xf83c0f8, 0xf81e0f8, 0xf80e0f8, 0xf8070f8, 0xf8078f8, 0xf8038f8, 0xf801cf8, 0x7c01ff0, 0x7c00ff0, 0x7c007f0, 0x7c007f0, 0x3e003e0, 0x3e007e0, 0x1f007e0, 0x1fc1ff0, 0xfffff8, 0x7fff38, 0x1ffe3c, 0x7f018, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc07f000,0x1e1ffe00,0xe7fff00,0x7ffff80,0x7fc1fc0,0x3f007c0,0x3f003e0,0x3e003e0, + 0x7f001f0,0x7f001f0,0x7f801f0,0x7fc01f8,0xf9c00f8,0xf8e00f8,0xf8f00f8,0xf8780f8,0xf8380f8,0xf83c0f8,0xf81e0f8,0xf80e0f8,0xf8070f8,0xf8078f8,0xf8038f8,0xf801cf8, + 0x7c01ff0,0x7c00ff0,0x7c007f0,0x7c007f0,0x3e003e0,0x3e007e0,0x1f007e0,0x1fc1ff0,0xfffff8,0x7fff38,0x1ffe3c,0x7f018,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 217 - 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xfc001f0, 0x7c003e0, 0x7c003e0, 0x7e007e0, 0x3f80fc0, 0x1ffffc0, 0xffff80, 0x7ffe00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xfc001f0,0x7c003e0,0x7c003e0,0x7e007e0,0x3f80fc0,0x1ffffc0,0xffff80,0x7ffe00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 218 - 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xfc001f0, 0x7c003e0, 0x7c003e0, 0x7e007e0, 0x3f80fc0, 0x1ffffc0, 0xffff80, 0x7ffe00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xfc001f0,0x7c003e0,0x7c003e0,0x7e007e0,0x3f80fc0,0x1ffffc0,0xffff80,0x7ffe00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 219 - 0x7c000, 0xfe000, 0x1ff000, 0x3ef800, 0x783c00, 0xf01e00, 0x1c00700, 0x0, 0x0, 0x0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xfc001f0, 0x7c003e0, 0x7c003e0, 0x7e007e0, 0x3f80fc0, 0x1ffffc0, 0xffff80, 0x7ffe00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfe000,0x1ff000,0x3ef800,0x783c00,0xf01e00,0x1c00700,0x0,0x0,0x0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xfc001f0,0x7c003e0,0x7c003e0,0x7e007e0,0x3f80fc0,0x1ffffc0,0xffff80,0x7ffe00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 220 - 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xfc001f0, 0x7c003e0, 0x7c003e0, 0x7e007e0, 0x3f80fc0, 0x1ffffc0, 0xffff80, 0x7ffe00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0, + 0xf8001f0,0xf8001f0,0xf8001f0,0xfc001f0,0x7c003e0,0x7c003e0,0x7e007e0,0x3f80fc0,0x1ffffc0,0xffff80,0x7ffe00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 221 - 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0x3f00007e, 0x1f00007c, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7e003f0, 0x3e003e0, 0x1f007c0, 0x1f007c0, 0xf80f80, 0x7c1f00, 0x7c1f00, 0x3e3e00, 0x1f7c00, 0x1f7c00, 0xff800, 0xff800, 0x7f000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x3e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0x3f00007e,0x1f00007c,0xf8000f8,0xf8000f8,0x7c001f0,0x7e003f0,0x3e003e0, + 0x1f007c0,0x1f007c0,0xf80f80,0x7c1f00,0x7c1f00,0x3e3e00,0x1f7c00,0x1f7c00,0xff800,0xff800,0x7f000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000, + 0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x3e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 222 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0xffff0, 0x7ffff0, 0xfffff0, 0x1fffff0, 0x3f801f0, 0x7e001f0, 0x7c001f0, 0xfc001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0xf8001f0, 0x7c001f0, 0x7c001f0, 0x7f001f0, 0x3f801f0, 0x1fffff0, 0xfffff0, 0x7ffff0, 0xffff0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0xffff0, + 0x7ffff0,0xfffff0,0x1fffff0,0x3f801f0,0x7e001f0,0x7c001f0,0xfc001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0xf8001f0,0x7c001f0,0x7c001f0,0x7f001f0, + 0x3f801f0,0x1fffff0,0xfffff0,0x7ffff0,0xffff0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x1f0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 223 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0x1ffff00, 0x3f81f80, 0x3f007c0, 0x7e003e0, 0x7c003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0x3e001f0, 0x3f001f0, 0x1f801f0, 0xfc01f0, 0x7e01f0, 0x3e01f0, 0x1f01f0, 0x1f01f0, 0x1f01f0, 0x3f01f0, 0x3f01f0, 0xfe01f0, 0x1fc01f0, 0x3f801f0, 0x7f001f0, 0xfc001f0, 0x1f8001f0, 0x1f0001f0, 0x3f0001f0, 0x3e0001f0, 0x3e0001f0, 0x3e0001f0, 0x3e0001f0, 0x3f0001f0, 0x1f0041f0, 0x1f81c1f0, 0xfffc1f0, 0x7ffc1f0, 0x1ff0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xff000,0x7ffe00,0x1ffff00,0x3f81f80,0x3f007c0,0x7e003e0,0x7c003e0,0x7c001f0,0x7c001f0,0x7c001f0,0x3e001f0, + 0x3f001f0,0x1f801f0,0xfc01f0,0x7e01f0,0x3e01f0,0x1f01f0,0x1f01f0,0x1f01f0,0x3f01f0,0x3f01f0,0xfe01f0,0x1fc01f0,0x3f801f0,0x7f001f0,0xfc001f0,0x1f8001f0, + 0x1f0001f0,0x3f0001f0,0x3e0001f0,0x3e0001f0,0x3e0001f0,0x3e0001f0,0x3f0001f0,0x1f0041f0,0x1f81c1f0,0xfffc1f0,0x7ffc1f0,0x1ff0000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 224 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f00,0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 225 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e0000, 0x3f0000, 0x1f0000, 0xf8000, 0x3c000, 0x1e000, 0xf000, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e0000,0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 226 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3c1e00, 0x780f00, 0xe00380, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e000,0x7f000,0xff800,0x1f7c00,0x3c1e00,0x780f00,0xe00380,0x0,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 227 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c03c00, 0x1c07e00, 0x1c1ff00, 0xe3c700, 0xff8380, 0x7e0380, 0x3c0380, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c03c00,0x1c07e00,0x1c1ff00,0xe3c700,0xff8380,0x7e0380,0x3c0380,0x0,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 228 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 229 - 0x0, 0x0, 0x0, 0x0, 0x7e000, 0xff800, 0x1ff800, 0x3c3c00, 0x381c00, 0x381c00, 0x3c3c00, 0x1ff800, 0xff000, 0x7e000, 0x0, 0x0, 0x7f800, 0x3fff00, 0x7fffc0, 0xfc0fc0, 0x1f803e0, 0x1f003f0, 0x3e001f0, 0x3e001f0, 0x3e00000, 0x3e00000, 0x3e00000, 0x3e00000, 0x3fff800, 0x3ffff80, 0x3ffffc0, 0x3e00fe0, 0x3e003f0, 0x3e001f0, 0x3e000f8, 0x3e000f8, 0x3f000f8, 0x3f000f8, 0x3f800f8, 0x3f800f8, 0x3ee01f0, 0x7e703f0, 0x3fc7ffe0, 0x3fc1ffc0, 0x3f007f00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x7e000,0xff800,0x1ff800,0x3c3c00,0x381c00,0x381c00,0x3c3c00,0x1ff800,0xff000,0x7e000,0x0,0x0,0x7f800, + 0x3fff00,0x7fffc0,0xfc0fc0,0x1f803e0,0x1f003f0,0x3e001f0,0x3e001f0,0x3e00000,0x3e00000,0x3e00000,0x3e00000,0x3fff800,0x3ffff80,0x3ffffc0,0x3e00fe0,0x3e003f0, + 0x3e001f0,0x3e000f8,0x3e000f8,0x3f000f8,0x3f000f8,0x3f800f8,0x3f800f8,0x3ee01f0,0x7e703f0,0x3fc7ffe0,0x3fc1ffc0,0x3f007f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 230 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f01f80, 0x7fc7fe0, 0xffefff0, 0x1f0ff0f8, 0x1e0ff0f8, 0x3e07e07c, 0x3e07e07c, 0x3e07e07c, 0x7c03e000, 0x7c03e000, 0x7c03e000, 0x7c03e000, 0x7fffffc0, 0x7ffffff0, 0x7ffffff8, 0x3e0fc, 0x3e07c, 0x3e07e, 0x3e03e, 0x3e03e, 0x3e03e, 0x603f03e, 0x3e07f03e, 0x3f07f03e, 0x1f07b87e, 0x1f8f3c7c, 0xfff1ffc, 0x7fe0ff8, 0x1f803e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f01f80, + 0x7fc7fe0,0xffefff0,0x1f0ff0f8,0x1e0ff0f8,0x3e07e07c,0x3e07e07c,0x3e07e07c,0x7c03e000,0x7c03e000,0x7c03e000,0x7c03e000,0x7fffffc0,0x7ffffff0,0x7ffffff8,0x3e0fc,0x3e07c, + 0x3e07e,0x3e03e,0x3e03e,0x3e03e,0x603f03e,0x3e07f03e,0x3f07f03e,0x1f07b87e,0x1f8f3c7c,0xfff1ffc,0x7fe0ff8,0x1f803e0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 231 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff00, 0x1fc1fc0, 0x1f007c0, 0x3e003e0, 0x3e001f0, 0x7c001f0, 0x7c001f0, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x7c001f0, 0x7c001f0, 0x3e001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0x7fff80, 0x3ffe00, 0x7f800, 0x1c000, 0x1c000, 0x7e000, 0xfe000, 0x1e0000, 0x1c0000, 0x1c0000, 0x1e0000, 0xff000, 0x3f000, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff00,0x1fc1fc0,0x1f007c0,0x3e003e0,0x3e001f0,0x7c001f0,0x7c001f0,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x7c001f0,0x7c001f0,0x3e001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0x7fff80,0x3ffe00,0x7f800,0x1c000,0x1c000,0x7e000,0xfe000, + 0x1e0000,0x1c0000,0x1c0000,0x1e0000,0xff000,0x3f000,0x0,0x0,0x0,0x0,0x0, // 232 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x7c00, 0xf800, 0x1f000, 0x3c000, 0x78000, 0xf0000, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0x1ffff00, 0x3f81f80, 0x3e007c0, 0x7c003e0, 0xfc003e0, 0xf8001f0, 0xf8001f0, 0x1f0000f8, 0x1f0000f8, 0x1f0000f8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x1f0, 0x18001f0, 0xfc003e0, 0x7c003e0, 0x7e007c0, 0x3f81f80, 0x1ffff00, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e00,0x7c00,0xf800,0x1f000,0x3c000,0x78000,0xf0000,0x0,0x0,0x0,0xff000, + 0x7ffe00,0x1ffff00,0x3f81f80,0x3e007c0,0x7c003e0,0xfc003e0,0xf8001f0,0xf8001f0,0x1f0000f8,0x1f0000f8,0x1f0000f8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x1f0,0x18001f0,0xfc003e0,0x7c003e0,0x7e007c0,0x3f81f80,0x1ffff00,0x7ffe00,0xff000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 233 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f80000, 0xfc0000, 0x7c0000, 0x3e0000, 0xf0000, 0x78000, 0x3c000, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0x1ffff00, 0x3f81f80, 0x3e007c0, 0x7c003e0, 0xfc003e0, 0xf8001f0, 0xf8001f0, 0x1f0000f8, 0x1f0000f8, 0x1f0000f8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x1f0, 0x18001f0, 0xfc003e0, 0x7c003e0, 0x7e007c0, 0x3f81f80, 0x1ffff00, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f80000,0xf80000,0x7c0000,0x3e0000,0xf0000,0x78000,0x3c000,0x0,0x0,0x0,0xff000, + 0x7ffe00,0x1ffff00,0x3f81f80,0x3e007c0,0x7c003e0,0xfc003e0,0xf8001f0,0xf8001f0,0x1f0000f8,0x1f0000f8,0x1f0000f8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x1f0,0x18001f0,0xfc003e0,0x7c003e0,0x7e007c0,0x3f81f80,0x1ffff00,0x7ffe00,0xff000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 234 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c000, 0xfe000, 0x1ff000, 0x3ef800, 0x783c00, 0xf01e00, 0x1c00700, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0x1ffff00, 0x3f81f80, 0x3e007c0, 0x7c003e0, 0xfc003e0, 0xf8001f0, 0xf8001f0, 0x1f0000f8, 0x1f0000f8, 0x1f0000f8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x1f0, 0x18001f0, 0xfc003e0, 0x7c003e0, 0x7e007c0, 0x3f81f80, 0x1ffff00, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c000,0xfe000,0x1ff000,0x3ef800,0x783c00,0xf01e00,0x1c00700,0x0,0x0,0x0,0xff000, + 0x7ffe00,0x1ffff00,0x3f81f80,0x3e007c0,0x7c003e0,0xfc003e0,0xf8001f0,0xf8001f0,0x1f0000f8,0x1f0000f8,0x1f0000f8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x1f0,0x18001f0,0xfc003e0,0x7c003e0,0x7e007c0,0x3f81f80,0x1ffff00,0x7ffe00,0xff000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 235 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0xff000, 0x7ffe00, 0x1ffff00, 0x3f81f80, 0x3e007c0, 0x7c003e0, 0xfc003e0, 0xf8001f0, 0xf8001f0, 0x1f0000f8, 0x1f0000f8, 0x1f0000f8, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0x1f0, 0x18001f0, 0xfc003e0, 0x7c003e0, 0x7e007c0, 0x3f81f80, 0x1ffff00, 0x7ffe00, 0xff000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0xff000, + 0x7ffe00,0x1ffff00,0x3f81f80,0x3e007c0,0x7c003e0,0xfc003e0,0xf8001f0,0xf8001f0,0x1f0000f8,0x1f0000f8,0x1f0000f8,0x1ffffff8,0x1ffffff8,0x1ffffff8,0xf8,0xf8, + 0xf8,0xf8,0xf0,0x1f0,0x18001f0,0xfc003e0,0x7c003e0,0x7e007c0,0x3f81f80,0x1ffff00,0x7ffe00,0xff000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 236 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x7c00, 0xf800, 0x1f000, 0x3c000, 0x78000, 0xf0000, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7ffc0, 0x7ffc0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e00,0x7c00,0xf800,0x1f000,0x3c000,0x78000,0xf0000,0x0,0x0,0x0,0x0, + 0x7ffc0,0x7ffc0,0x7ffc0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 237 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7ffc0, 0x7ffc0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0000,0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0x0, + 0x7ffc0,0x7ffc0,0x7ffc0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 238 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c000, 0xfe000, 0x1ff000, 0x3ef800, 0x783c00, 0xf01e00, 0x1c00700, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7ffc0, 0x7ffc0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c000,0xfe000,0x1ff000,0x3ef800,0x783c00,0xf01e00,0x1c00700,0x0,0x0,0x0,0x0, + 0x7ffc0,0x7ffc0,0x7ffc0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 239 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf03c00, 0xf03c00, 0xf03c00, 0xf03c00, 0xf03c00, 0x0, 0x0, 0x0, 0x0, 0x7ffc0, 0x7ffc0, 0x7ffc0, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x7c000, 0x1ffffff8, 0x1ffffff8, 0x1ffffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf03c00,0xf03c00,0xf03c00,0xf03c00,0xf03c00,0x0,0x0,0x0,0x0, + 0x7ffc0,0x7ffc0,0x7ffc0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x1ffffff8,0x1ffffff8,0x1ffffff8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 240 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc01f00, 0xf07c00, 0x1fdf800, 0x7fe000, 0xff000, 0xffc00, 0x1f7f00, 0x3e1e00, 0x7c0600, 0xf80000, 0xf80000, 0x1f00000, 0x1f00000, 0x3e7f800, 0x3fffe00, 0x7ffff80, 0x7f81fc0, 0x7f007e0, 0x7e003e0, 0xfc001f0, 0xfc001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x78000f0, 0x7c001f0, 0x7c001f0, 0x3e003e0, 0x3f007e0, 0x1fc0fc0, 0xffff80, 0x3ffe00, 0xff800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xc01f00,0xf07c00,0x1fdf800,0x7fe000,0xfe000,0xffc00,0x1f7f00,0x3e1e00,0x7c0600,0xf80000,0xf80000, + 0x1f00000,0x1f00000,0x3e7f800,0x3fffe00,0x7ffff80,0x7f81fc0,0x7f007e0,0x7e003e0,0xfc001f0,0xfc001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x78000f0,0x7c001f0,0x7c001f0,0x3e003e0,0x3f007e0,0x1fc0fc0,0xffff80,0x3ffe00,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 241 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c03c00, 0x1c07e00, 0x1c1ff00, 0xe3c700, 0xff8380, 0x7e0380, 0x3c0380, 0x0, 0x0, 0x0, 0x3f8000, 0xffe3e0, 0x1fff3e0, 0x3f83be0, 0x3e01fe0, 0x3e00fe0, 0x7c007e0, 0x7c007e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c03c00,0x1c07e00,0x1c1ff00,0xe3c700,0xff8380,0x7e0380,0x3c0380,0x0,0x0,0x0,0x3f8000, + 0xffe3e0,0x1fff3e0,0x3f83be0,0x3e01fe0,0x3e00fe0,0x7c007e0,0x7c007e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 242 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e00, 0x7c00, 0xf800, 0x1f000, 0x3c000, 0x78000, 0xf0000, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff80, 0x1fc1fc0, 0x3f007c0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x3c001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x3ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e00,0x7c00,0xf800,0x1f000,0x3c000,0x78000,0xf0000,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff80,0x1fc1fc0,0x3f007c0,0x3e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x3c001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x3ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 243 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff80, 0x1fc1fc0, 0x3f007c0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x3c001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x3ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0000,0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff80,0x1fc1fc0,0x3f007c0,0x3e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x3c001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x3ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 244 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e000, 0x7f000, 0xff800, 0x1f7c00, 0x3c1e00, 0x780f00, 0xe00380, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff80, 0x1fc1fc0, 0x3f007c0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x3c001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x3ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e000,0x7f000,0xff800,0x1f7c00,0x3c1e00,0x780f00,0xe00380,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff80,0x1fc1fc0,0x3f007c0,0x3e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x3c001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x3ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 245 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c03c00, 0x1c07e00, 0x1c1ff00, 0xe3c700, 0xff8380, 0x7e0380, 0x3c0380, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff80, 0x1fc1fc0, 0x3f007c0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x3c001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x3ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x1c03c00,0x1c07e00,0x1c1ff00,0xe3c700,0xff8380,0x7e0380,0x3c0380,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff80,0x1fc1fc0,0x3f007c0,0x3e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x3c001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x3ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 246 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0xff000, 0x3ffe00, 0xffff80, 0x1fc1fc0, 0x3f007c0, 0x3e003e0, 0x7c001f0, 0x7c001f0, 0x7c001f0, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0xf8000f8, 0x7c001f0, 0x7c001f0, 0x3c001f0, 0x3e003e0, 0x1f007c0, 0x1fc1fc0, 0xffff80, 0x3ffe00, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0xff000, + 0x3ffe00,0xffff80,0x1fc1fc0,0x3f007c0,0x3e003e0,0x7c001f0,0x7c001f0,0x7c001f0,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8,0xf8000f8, + 0xf8000f8,0xf8000f8,0xf8000f8,0x7c001f0,0x7c001f0,0x3c001f0,0x3e003e0,0x1f007c0,0x1fc1fc0,0xffff80,0x3ffe00,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 247 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x7fffff8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x7fffff8,0x7fffff8,0x7fffff8,0x0,0x0,0x0,0x0, + 0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 248 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20ff800, 0x63ffe00, 0xfffff80, 0x7fc1fc0, 0x3f007c0, 0x3e003e0, 0x7f001f0, 0x7f801f0, 0x7fc01f0, 0xf9c00f8, 0xf8e00f8, 0xf8700f8, 0xf8780f8, 0xf8380f8, 0xf81c0f8, 0xf80e0f8, 0xf80f0f8, 0xf8078f8, 0xf8038f8, 0xf801cf8, 0x7c00ff0, 0x7c00ff0, 0x3c007f0, 0x3e003e0, 0x1f007e0, 0x1fc1ff0, 0xfffff8, 0x3ffe30, 0x7f800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20ff800, + 0x63ffe00,0xfffff80,0x7fc1fc0,0x3f007c0,0x3e003e0,0x7f001f0,0x7f801f0,0x7f801f0,0xf9c00f8,0xf8e00f8,0xf8700f8,0xf8780f8,0xf8380f8,0xf81c0f8,0xf80e0f8,0xf80f0f8, + 0xf8078f8,0xf8038f8,0xf801cf8,0x7c00ff0,0x7c00ff0,0x3c007f0,0x3e003e0,0x1f007e0,0x1fc1ff0,0xfffff8,0x3ffe30,0x7f800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 249 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f00, 0x3e00, 0x7c00, 0xf800, 0x1e000, 0x3c000, 0x78000, 0x0, 0x0, 0x0, 0x0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f00,0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0x0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x1fc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 250 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0000,0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0x0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x1fc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 251 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c000, 0xfe000, 0x1ff000, 0x3ef800, 0x783c00, 0xf01e00, 0x1c00700, 0x0, 0x0, 0x0, 0x0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x7c000,0xfe000,0x1ff000,0x3ef800,0x783c00,0xf01e00,0x1c00700,0x0,0x0,0x0,0x0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x1fc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 252 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7c003e0, 0x7e003e0, 0x7e003e0, 0x7f007e0, 0x7f807c0, 0x7dc1fc0, 0x7cfff80, 0x7c7ff00, 0x1fc00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0, + 0x7c003e0,0x7c003e0,0x7c003e0,0x7c003e0,0x7e003e0,0x7e003e0,0x7f007e0,0x7f807c0,0x7dc1fc0,0x7cfff80,0x7c7ff00,0x1fc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // 253 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc0000, 0x7e0000, 0x3e0000, 0x1f0000, 0x78000, 0x3c000, 0x1e000, 0x0, 0x0, 0x0, 0x0, 0x1f00007c, 0x1f00007c, 0xf8000f8, 0xf8000f8, 0x78000f0, 0x7c001f0, 0x7c001e0, 0x3e003e0, 0x3e003e0, 0x1e003c0, 0x1f007c0, 0xf00780, 0xf80f80, 0xf80f00, 0x780f00, 0x7c1f00, 0x3c1e00, 0x3e3e00, 0x1e3c00, 0x1e3c00, 0x1f7800, 0xf7800, 0xf7800, 0x7f000, 0x7f000, 0x3e000, 0x3e000, 0x3e000, 0x1e000, 0x1f000, 0xf000, 0xf800, 0x7800, 0x7c00, 0x3f00, 0x1ff0, 0xff0, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0000,0x7c0000,0x3e0000,0x1f0000,0x78000,0x3c000,0x1e000,0x0,0x0,0x0,0x0, + 0x1f00007c,0x1f00007c,0xf8000f8,0xf8000f8,0x78000f0,0x7c001f0,0x3c001e0,0x3e003e0,0x3e003e0,0x1e003c0,0x1f007c0,0xf00780,0xf80f80,0xf80f00,0x780f00,0x7c1f00, + 0x3c1e00,0x3e3e00,0x1e3c00,0x1e3c00,0x1f7800,0xf7800,0xf7800,0x7f000,0x7f000,0x3e000,0x3e000,0x3e000,0x1e000,0x1f000,0xf000,0xf800, + 0x7800,0x7c00,0x3f00,0x1ff0,0xff0,0x3f0,0x0,0x0,0x0,0x0,0x0, // 254 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3f83e0, 0xffe3e0, 0x1fff3e0, 0x3f83be0, 0x3e01fe0, 0x7e00fe0, 0x7c007e0, 0x7c007e0, 0x78007e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0xf8003e0, 0x7c007e0, 0x7c007e0, 0x7c007e0, 0x7e00fe0, 0x3e01fe0, 0x1f83be0, 0x1fffbe0, 0x7fe3e0, 0x3f83e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x3e0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3f83e0, + 0xffe3e0,0x1fff3e0,0x3f83be0,0x3e01fe0,0x7e00fe0,0x7c007e0,0x7c007e0,0x78007e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0,0xf8003e0, + 0xf8003e0,0xf8003e0,0xf8003e0,0x7c007e0,0x7c007e0,0x7c007e0,0x7e00fe0,0x3e01fe0,0x1f83be0,0x1fffbe0,0x7fe3e0,0x3f83e0,0x3e0,0x3e0,0x3e0,0x3e0, + 0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x3e0,0x0,0x0,0x0,0x0,0x0, // 255 - 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x781e00, 0x0, 0x0, 0x0, 0x0, 0x1f00007c, 0x1f00007c, 0xf8000f8, 0xf8000f8, 0x78000f0, 0x7c001f0, 0x7c001e0, 0x3e003e0, 0x3e003e0, 0x1e003c0, 0x1f007c0, 0xf00780, 0xf80f80, 0xf80f00, 0x780f00, 0x7c1f00, 0x3c1e00, 0x3e3e00, 0x1e3c00, 0x1e3c00, 0x1f7800, 0xf7800, 0xf7800, 0x7f000, 0x7f000, 0x3e000, 0x3e000, 0x3e000, 0x1e000, 0x1f000, 0xf000, 0xf800, 0x7800, 0x7c00, 0x3f00, 0x1ff0, 0xff0, 0x3f0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x781e00,0x781e00,0x781e00,0x781e00,0x781e00,0x0,0x0,0x0,0x0, + 0x1f00007c,0x1f00007c,0xf8000f8,0xf8000f8,0x78000f0,0x7c001f0,0x3c001e0,0x3e003e0,0x3e003e0,0x1e003c0,0x1f007c0,0xf00780,0xf80f80,0xf80f00,0x780f00,0x7c1f00, + 0x3c1e00,0x3e3e00,0x1e3c00,0x1e3c00,0x1f7800,0xf7800,0xf7800,0x7f000,0x7f000,0x3e000,0x3e000,0x3e000,0x1e000,0x1f000,0xf000,0xf800, + 0x7800,0x7c00,0x3f00,0x1ff0,0xff0,0x3f0,0x0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,36,-1,5,50,0,0,0,0,0 +const unsigned int ff10_height = 54; +const unsigned int ff10_line_height = 54; +const unsigned int ff10_width = 29; +const unsigned int ff10_stride = 1; +const unsigned char ff10_first_char = ' '; + +uint32_t ff10_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000, + 0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0xe000,0x0,0x0, + 0x0,0x0,0x0,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x7e1f80,0x7e1f80,0x7e1f80,0x7e1f80,0x7e1f80,0x7e1f80,0x7e1f80,0x3c0f00,0x3c0f00,0x3c0f00,0x3c0f00, + 0x3c0f00,0x3c0f00,0x3c0f00,0x3c0f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c01c00,0x1c01c00,0xe01c00,0xe00e00,0xe00e00,0xe00e00,0xe00e00,0x700e00, + 0x700700,0x700700,0xffffffc,0xffffffc,0xffffffc,0x380700,0x380380,0x380380,0x3c0380,0x1c0380,0x1c0380,0x1c01c0,0x7fffffe,0x7fffffe,0x7fffffe,0xe01c0, + 0xe00e0,0xf00e0,0x700e0,0x700e0,0x700e0,0x700f0,0x38070,0x38070,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0xe000,0xe000,0xe000,0xffe00,0x3fffc0,0x7fffe0,0xfce3f0,0x1f0e0f0,0x1e0e0f8,0x3c0e078,0x1c0e078, + 0xe078,0xe078,0xe0f0,0xe1f0,0xe7e0,0x1ffc0,0xfff00,0x3ff800,0xffe000,0x1f8e000,0x3e0e000,0x3c0e000,0x780e000,0x780e000,0x780e000,0x780e030, + 0x780e03c,0x7c0e07c,0x3c0e078,0x3e0e0f8,0x1f8e3f0,0xffffe0,0x7fff80,0xffe00,0xe000,0xe000,0xe000,0xe000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78001f0,0x38007fc,0x3c00ffe,0x1e00e1e,0xe01e0f,0x701c07,0x781c07,0x381c07, + 0x1c1c07,0x1e1c07,0xe1c07,0x71e0f,0x78f1e,0x3cffe,0x1c7fc,0x1e1f0,0x1f0f000,0x7fc7000,0xffe3800,0xe1e3c00,0x1e0f1c00,0x1c070e00,0x1c070f00,0x1c070700, + 0x1c070380,0x1c0703c0,0x1c0701c0,0x1e0f00e0,0xf1e00f0,0xffe0078,0x7fc0038,0x1f0003c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0xffe00,0x1fff00,0x1f0f80,0x3e07c0,0x3c03c0,0x3c03c0,0x3c03c0, + 0x3e03c0,0x1f03c0,0xf8380,0x7e780,0x1ff80,0x7f00,0xc01fc0,0x3c01fe0,0x3e01ff0,0x1e03c78,0x1e07c3c,0x1e0783c,0xf0f01e,0xf1e01e,0x7be01e,0x7fc01e, + 0x3f801e,0x3f001e,0x3e003c,0x7f807c,0x13ffc0fc,0x1ff3fff8,0x1fe1ffe0,0xf003f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x1e0000,0xf0000,0x78000,0x3c000,0x3e000,0x1e000,0xf000,0xf000,0x7800,0x7800,0x3c00, + 0x3c00,0x1e00,0x1e00,0x1e00,0x1e00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00, + 0xf00,0xf00,0x1e00,0x1e00,0x1e00,0x1e00,0x3c00,0x3c00,0x7800,0x7800,0xf000,0xf000,0x1e000,0x1e000,0x3c000,0x78000, + 0xf0000,0x1e0000,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0xf00,0x1e00,0x3c00,0x7800,0x7800,0xf000,0x1e000,0x1e000,0x3c000,0x3c000,0x78000, + 0x78000,0xf8000,0xf0000,0xf0000,0xf0000,0x1f0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000,0x1e0000, + 0x1e0000,0x1f0000,0xf0000,0xf0000,0xf0000,0xf8000,0x78000,0x78000,0x3c000,0x3c000,0x1e000,0x1e000,0xf000,0xf800,0x7800,0x3c00, + 0x1e00,0xf00,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0xe000,0xe000,0xe000,0xe000,0x20e080,0x38e380,0x7eefc0,0x3fff80,0x7fc00,0x1f000,0x1f000, + 0x3b800,0x7bc00,0xf1e00,0xe0e00,0x1e0f00,0x40400,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000,0xe000,0xe000,0xe000, + 0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0x3fffff8,0x3fffff8,0x3fffff8,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000, + 0xe000,0xe000,0xe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xfc00,0x7c00,0x7e00,0x3e00,0x3e00,0x3e00,0x1f00,0x1f00,0xf00,0xf00,0x780,0x780,0x780,0x380,0x3c0, + 0x1c0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff00,0x1fff00,0x1fff00,0x1fff00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x3c00000,0x1e00000,0x1e00000,0xf00000,0xf00000,0x780000,0x7c0000,0x3c0000,0x3e0000,0x1e0000,0xf0000, + 0xf0000,0x78000,0x78000,0x3c000,0x3c000,0x1e000,0x1f000,0xf000,0xf800,0x7800,0x3c00,0x3c00,0x1e00,0x1e00,0xf00,0xf80, + 0x780,0x7c0,0x3c0,0x1e0,0x1e0,0xf0,0xf0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0x1fff00,0x3fff80,0x7e0fc0,0x7803e0,0xf001e0,0xf001f0,0x1e000f0, + 0x1e000f0,0x1e000f0,0x3c00078,0x3c00078,0x3c00078,0x3c1f078,0x3c1f078,0x3c1f078,0x3c1f078,0x3c1f078,0x3c1f078,0x3c00078,0x3c00078,0x3c00078,0x1e000f0,0x1e000f0, + 0x1e000f0,0xf001e0,0xf001e0,0x7803c0,0x7e0fc0,0x3fff80,0xffe00,0x3f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c000,0x3e000,0x3f000,0x3fc00,0x3ff00,0x3dff0,0x3c7f0,0x3c0f0, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3c000, + 0x3c000,0x3c000,0x3c000,0x3c000,0x3c000,0x3fffff0,0x3fffff0,0x3fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00,0x1fff00,0x3fffc0,0x7e07e0,0xf801f0,0xf000f0,0x1e000f8,0x1e00078, + 0x1e00078,0x1e00000,0x1e00000,0x1f00000,0xf00000,0xf80000,0x7c0000,0x3e0000,0x1f0000,0xf8000,0x7e000,0x3f000,0x1f800,0x7c00,0x3e00,0x1f00, + 0xf80,0x7c0,0x3e0,0x1f0,0xf0,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x1fff00,0x7fff80,0xfc0fc0,0xf803e0,0x1f001e0,0x1e001f0,0x1e000f0, + 0x1e000f0,0x1e00000,0x1e00000,0xf00000,0x780000,0x3e0000,0x1ff800,0x3f800,0x3ff800,0x7e0000,0xf80000,0x1e00000,0x3e00000,0x3c00000,0x3c00000,0x3c00078, + 0x3c00078,0x3e000f8,0x1e000f0,0x1f001f0,0xfc07e0,0x7fffc0,0x3fff00,0x7fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0000,0x3f0000,0x3f0000,0x3f8000,0x3fc000,0x3de000,0x3de000,0x3cf000, + 0x3c7800,0x3c3800,0x3c3c00,0x3c1e00,0x3c0f00,0x3c0700,0x3c0780,0x3c03c0,0x3c01e0,0x3c01e0,0x3c00f0,0x3c0078,0x3c003c,0x3fffffc,0x3fffffc,0x3fffffc, + 0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffe0,0xffffe0,0xffffe0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0, + 0x1e0,0xf0,0xf0,0x7f0f0,0x1ffcf0,0x7ffef0,0xfe0ff0,0xf803f0,0x1f001f0,0x1e00000,0x3c00000,0x3c00000,0x3c00000,0x3c00000,0x3c00000,0x3c00000, + 0x3e00078,0x1e000f8,0x1f000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x3ffc00,0x7ffe00,0xfc1f00,0xf00780,0x1f003c0,0xe001c0,0x1e0, + 0x1e0,0xe0,0xe0,0x7f0f0,0x3ffcf0,0x7ffef0,0xfc0ff0,0x1f003f0,0x1e001f0,0x1e001f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000e0,0x3c000e0, + 0x3c001e0,0x1e001e0,0x1f003c0,0xf00780,0xfc1f80,0x7fff00,0x1ffc00,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffff0,0x1fffff0,0x1fffff0,0x1e00000,0xf00000,0x780000,0x780000,0x3c0000, + 0x1c0000,0x1e0000,0xf0000,0xf0000,0x78000,0x78000,0x3c000,0x3c000,0x1e000,0x1e000,0x1e000,0xf000,0xf000,0xf000,0x7800,0x7800, + 0x7800,0x7800,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00,0xfff00,0x3fffc0,0x3e07c0,0x7801e0,0xf801f0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0x7801e0,0x7803e0,0x3e07c0,0x1fff80,0x3fc00,0x1fff80,0x7e07e0,0xf801f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1e00078,0x1e00078,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0xfff00,0x1fffc0,0x3f07e0,0x7c01e0,0x7801f0,0xf000f0,0xf00078, + 0xe00078,0xe00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1f000f0,0x1f000f0,0x1fc01e0,0x1fe07e0,0x1efffc0,0x1e7ff80,0x1e0fc00,0xe00000,0xe00000,0xf00000, + 0xf000e0,0x7800f0,0x7801e0,0x3c03e0,0x1f07c0,0xfffc0,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000,0x3f000, + 0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0x1f800, + 0x1f800,0x1f800,0x1f800,0x1f800,0x1f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3f000,0x1f000,0x1f800,0xf800,0xf800,0xf800,0x7c00,0x7c00,0x3c00,0x3c00,0x1e00,0x1e00,0x1e00,0xe00,0xf00, + 0x700,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2000000,0x3800000,0x3f00000,0x1fc0000, + 0x7f0000,0x1fe000,0x7f800,0xfe00,0x3f80,0xff0,0x3f8,0x78,0x78,0x3f8,0xff0,0x3fc0,0xfe00,0x7f800,0x1fe000,0x7f0000, + 0x1fc0000,0x3f00000,0x3800000,0x2000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x3fffff8,0x3fffff8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x38,0x1f8,0x7f0, + 0x1fc0,0xff00,0x3fc00,0xfe000,0x3f8000,0x1fe0000,0x3f80000,0x3c00000,0x3c00000,0x3f80000,0x1fe0000,0x7f8000,0xfe000,0x3fc00,0xff00,0x1fc0, + 0x7f0,0x1f8,0x38,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00,0x3fff00,0x7fffc0,0xffffe0,0x1fc07f0,0x1f801f8,0x3f000f8,0x3e000fc, + 0x3e0007c,0x3e0007c,0x3e00000,0x1f00000,0x1f00000,0xfc0000,0x7e0000,0x3f0000,0xfc000,0x7e000,0x1f000,0xf800,0x7800,0x7c00,0x7c00,0x0, + 0x0,0x0,0x0,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x7f000,0x1ffc00,0x7fff00,0xfc1f80,0x1f007c0,0x1e003e0,0x3c001e0,0x38000f0,0x7800070,0x701e078,0x773f838, + 0x7773c38,0xe7e1c1c,0xe7c0e1c,0xe3c0e1c,0xe3c071c,0xe3c070e,0xe3c070e,0xe3c038e,0xe1e038e,0xe1e038e,0xe1e038e,0xe1e038e,0x61e038e,0x70e038e,0x70f038e,0x70f038e, + 0x30f838e,0x38e871c,0x1cec71c,0xfe7e1c,0x7c3c3c,0x38,0x78,0x800070,0xc000f0,0x1f001e0,0x7c07c0,0x3fff80,0xfff00,0x3f800,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000,0x1f000,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff0,0x1ffff0,0x7ffff0,0xfffff0,0xfc00f0,0x1f000f0,0x1e000f0,0x1e000f0, + 0x1e000f0,0x1e000f0,0xf000f0,0xf000f0,0x7c00f0,0x3ffff0,0xffff0,0x3ffff0,0xfffff0,0x1f800f0,0x3e000f0,0x3c000f0,0x78000f0,0x78000f0,0x78000f0,0x78000f0, + 0x78000f0,0x7c000f0,0x3e000f0,0x3f800f0,0x1fffff0,0xfffff0,0x3ffff0,0xffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x1ffe00,0x7fff80,0xffffc0,0xfc0fc0,0x1f803e0,0x3f001e0,0x3e001f0, + 0x4000f0,0xf0,0xf8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0xf0,0x8000f0,0x7c000f0, + 0x7c001f0,0x3e001e0,0x1f003e0,0x1fc0fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff0,0x7fff0,0x1ffff0,0x3ffff0,0x7f80f0,0xfc00f0,0xf800f0,0x1f000f0, + 0x1e000f0,0x1e000f0,0x1e000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x1e000f0,0x1e000f0,0x1f000f0, + 0xf000f0,0xf800f0,0x7c00f0,0x7f00f0,0x3ffff0,0x1ffff0,0x7fff0,0x1fff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff0,0x3fffff0,0x3fffff0,0x3fffff0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x3ffffe0,0x1e0,0x1e0,0x1e0,0x1e0, + 0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1ffffe0,0x1ffffe0,0x1ffffe0,0x1ffffe0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0, + 0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x1e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x1ffe00,0x7fff80,0xffffc0,0xfc0fc0,0x1f003e0,0x1e001e0,0x3e001f0, + 0xc000f0,0xf0,0x78,0x78,0x78,0x78,0x78,0x3ff8078,0x3ff8078,0x3ff8078,0x3ff8078,0x3c00078,0x3c00078,0x3c000f0,0x3c000f0,0x3c000f0, + 0x3c001f0,0x3c003e0,0x3c007e0,0x3f80fc0,0x3ffff80,0xffff00,0x3ffe00,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0, + 0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0, + 0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff800,0x7ff800,0x7ff800,0x7ff800,0x780000,0x780000,0x780000,0x780000, + 0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x780000,0x7800e0, + 0x7800f0,0x7c01f0,0x3c03e0,0x3f07e0,0x1fffc0,0xfff80,0x7ff00,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c000f0,0x3e000f0,0x1f000f0,0xf800f0,0x7c00f0,0x3e00f0,0x1f00f0,0x1f80f0, + 0xf80f0,0x7c0f0,0x3e0f0,0x1f0f0,0xf8f0,0x7cf0,0xfef0,0x1fff0,0x1fff0,0x3f7f0,0x7e3f0,0xfc1f0,0xf80f0,0x1f00f0,0x3f00f0,0x7e00f0, + 0xfc00f0,0xf800f0,0x1f000f0,0x3f000f0,0x7e000f0,0x7c000f0,0xf8000f0,0x1f0000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0, + 0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0, + 0x3c0,0x3c0,0x3c0,0x3c0,0x3ffffc0,0x3ffffc0,0x3ffffc0,0x3ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f001f8,0x3f001f8,0x3f003f8,0x3f803f8,0x3f803f8,0x3f807f8,0x3dc0778,0x3dc0778, + 0x3de0f78,0x3de0e78,0x3ce1e78,0x3cf1e78,0x3cf1c78,0x3c73c78,0x3c7bc78,0x3c3b878,0x3c3b878,0x3c3f878,0x3c1f078,0x3c1f078,0x3c1f078,0x3c0e078,0x3c00078,0x3c00078, + 0x3c00078,0x3c00078,0x3c00078,0x3c00078,0x3c00078,0x3c00078,0x3c00078,0x3c00078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e001f0,0x1e003f0,0x1e003f0,0x1e007f0,0x1e007f0,0x1e00ff0,0x1e00ff0,0x1e01ef0, + 0x1e01ef0,0x1e01cf0,0x1e03cf0,0x1e03cf0,0x1e078f0,0x1e078f0,0x1e0f0f0,0x1e0f0f0,0x1e1e0f0,0x1e1e0f0,0x1e3c0f0,0x1e3c0f0,0x1e380f0,0x1e780f0,0x1e780f0,0x1ef00f0, + 0x1ef00f0,0x1fe00f0,0x1fe00f0,0x1fc00f0,0x1fc00f0,0x1f800f0,0x1f800f0,0x1f800f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x1e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff0,0x1ffff0,0x7ffff0,0xfffff0,0x1fc00f0,0x1f000f0,0x3e000f0,0x3c000f0, + 0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3e000f0,0x1e000f0,0x1f000f0,0xfc00f0,0xfffff0,0x3ffff0,0x1ffff0,0x7fff0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x1e000,0x3e000,0x3c000,0x7c000,0x78000,0x1f8000,0x3ff0000,0x3fe0000, + 0x3f80000,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff0,0x3ffff0,0x7ffff0,0xfffff0,0x1fc00f0,0x1f000f0,0x3e000f0,0x3c000f0, + 0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x1e000f0,0x1f000f0,0xfc00f0,0xfffff0,0x7ffff0,0x1ffff0,0x3fff0,0x7c0f0,0x780f0,0xf80f0,0x1f00f0,0x1e00f0, + 0x3e00f0,0x7c00f0,0x7800f0,0xf800f0,0x1f000f0,0x3f000f0,0x3e000f0,0x7c000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe00,0x1fff80,0x3fffe0,0x7e03f0,0xf801f0,0xf000f8,0x1f00078,0xe00078, + 0x78,0x78,0xf8,0x1f0,0x7f0,0x7fe0,0x3ffc0,0x1fff00,0x7ff800,0xff8000,0x1fc0000,0x1f00000,0x3e00000,0x3c00000,0x3c00000,0x3c00018, + 0x3c0003e,0x3e0003e,0x1f0007c,0x1fc03f8,0xfffff8,0x7ffff0,0x1fffc0,0x3fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffffc,0x3fffffc,0x3fffffc,0x3fffffc,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0xfe03f0,0x7fffe0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00000f,0xf00001e,0xf00001e,0xf00003e,0x780003c,0x780003c,0x3c00078,0x3c00078, + 0x3c00078,0x1e000f0,0x1e000f0,0xe001e0,0xf001e0,0xf001e0,0x7803c0,0x7803c0,0x380380,0x3c0780,0x3c0780,0x1e0f00,0x1e0f00,0xe0e00,0xf1e00,0xf1e00, + 0x71c00,0x7bc00,0x3b800,0x3b800,0x3f800,0x1f000,0x1f000,0xe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00000f,0x1e00000f,0x1e00000f,0xe00001e,0xf00001e,0xf00001e,0xf00001e,0xf00001e, + 0xf00001e,0x700001c,0x703f83c,0x783f83c,0x783f83c,0x783f83c,0x787b83c,0x387bc38,0x387bc38,0x387bc78,0x3c7bc78,0x3cf3e78,0x3cf1e70,0x1cf1e70,0x1cf1e70,0x1cf1e70, + 0x1de0f70,0x1de0ff0,0xfe0fe0,0xfe0fe0,0xfe0fe0,0xfc07e0,0xfc07e0,0xfc07e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c0007c,0x3c000f8,0x1e000f0,0x1f001f0,0xf001e0,0x7803c0,0x7c07c0,0x3c0780, + 0x1e0f00,0x1f1f00,0xf1e00,0x7bc00,0x7fc00,0x3f800,0x1f000,0x1f000,0x3f800,0x3f800,0x7bc00,0xfbe00,0xf1e00,0x1e0f00,0x3e0f80,0x3c0780, + 0x7807c0,0xf803e0,0xf001e0,0x1f001f0,0x3e000f8,0x3c00078,0x7c0007c,0xf80003e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c0003e,0x3e0007c,0x1e00078,0x1f000f8,0xf000f0,0xf801f0,0x7c03e0,0x3c03c0, + 0x3e07c0,0x1e0780,0x1f0f80,0xf0f00,0x79e00,0x7be00,0x3fc00,0x3fc00,0x1f800,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff0,0x3fffff0,0x3fffff0,0x3fffff0,0x1f00000,0x1f00000,0xf80000,0x7c0000, + 0x3e0000,0x1e0000,0x1f0000,0xf8000,0x7c000,0x3e000,0x1e000,0x1f000,0xf800,0x7c00,0x3c00,0x3e00,0x1f00,0xf80,0x7c0,0x3c0, + 0x3e0,0x1f0,0xf8,0x78,0x7fffffc,0x7fffffc,0x7fffffc,0x7fffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x7ffc00,0x7ffc00,0x7ffc00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00, + 0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00, + 0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x3c00,0x7ffc00, + 0x7ffc00,0x7ffc00,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x78,0xf0,0xf0,0x1e0,0x1e0,0x3c0,0x7c0,0x780,0xf80,0xf00,0x1e00, + 0x1e00,0x3c00,0x3c00,0x7800,0x7800,0xf000,0x1f000,0x1e000,0x3e000,0x3c000,0x78000,0x78000,0xf0000,0xf0000,0x1e0000,0x3e0000, + 0x3c0000,0x7c0000,0x780000,0xf00000,0xf00000,0x1e00000,0x1e00000,0x3c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x7ffc0,0x7ffc0,0x7ffc0,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000, + 0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000, + 0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x7ffc0, + 0x7ffc0,0x7ffc0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000,0x3f800,0x3f800,0x3b800,0x7bc00,0x71c00,0xf1e00,0xe0e00, + 0x1e0f00,0x1c0700,0x3c0780,0x3c0380,0x380380,0x7803c0,0x7001c0,0xf001e0,0xe000e0,0x1e000f0,0x1c00070,0x3c00078,0x3c00078,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffffff,0x1fffffff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x3e00,0x7c00,0xf800,0x1e000,0x3c000,0x78000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x7e0f0,0x1ffcf0, + 0x3ffef0,0x7e0ef0,0x7807f0,0xf003f0,0xf001f0,0xf001f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0, + 0xf001f0,0xf001f0,0xf001f0,0x7803f0,0x7e0ff0,0x3ffef0,0x1ffcf0,0x7f0f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e07c0,0xf803e0,0xf001e0,0x1e000f0,0x1e000f0,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x1e000f0,0x1e000f0,0xf001e0,0xf803e0,0x7e07c0,0x3fff80,0x1fff00,0x3f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf0fe00,0xf3ff80, + 0xf7ffc0,0xf707e0,0xfc01e0,0xfc00f0,0xf800f0,0xf800f0,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078, + 0xf800f0,0xf800f0,0xfc00f0,0xfe01f0,0xf707e0,0xf7ffc0,0xf3ff80,0xf0fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e0fc0,0xf803e0,0xf001f0,0x1e000f0,0x1e000f0,0x1c00078,0x3c00078,0x3c00078,0x3fffff8,0x3fffff8,0x3fffff8,0x78,0x78,0x78,0x78, + 0xf0,0x6000f0,0x1f001e0,0xf803e0,0xfe07c0,0x7fff80,0x1fff00,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x3ffc000,0x3fff000,0x3fff800,0xfc00,0x3c00,0x3e00,0x1e00,0x1e00,0x1e00,0x1fffff8,0x1fffff8, + 0x1fffff8,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00, + 0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x1e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf07e00,0xf1ff80, + 0xf3ffc0,0xf707e0,0xfe01f0,0xfc00f0,0xf800f0,0xf800f0,0xf80078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf80078, + 0xf80078,0xf800f0,0xfc00f0,0xfe01f0,0xf703e0,0xf3ffc0,0xf1ff80,0xf07e00,0xf00000,0xf00000,0xf00000,0x7801e0,0x7801e0,0x7c03e0,0x3e07c0,0x1fff80, + 0xfff00,0x3fc00,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x7e0f0,0x1ff8f0, + 0x3ffef0,0x7e0ef0,0x7807f0,0xf803f0,0xf001f0,0xf001f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x0,0x0,0x0,0x0,0x1ffe0,0x1ffe0, + 0x1ffe0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x7c000,0x7c000,0x7c000,0x7c000,0x7c000,0x0,0x0,0x0,0x0,0x7ffc0,0x7ffc0, + 0x7ffc0,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000, + 0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x78000,0x3c000,0x3e000,0x1f008,0x1fff8, + 0x7ff8,0x1ff0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x7c003c0,0x3e003c0, + 0x1f003c0,0xf803c0,0x7c03c0,0x3e03c0,0x1f03c0,0xf83c0,0x7c3c0,0x3e3c0,0x1f3c0,0xfbc0,0x1ffc0,0x3ffc0,0x7dfc0,0x7c7c0,0xf83c0,0x1f03c0, + 0x3e03c0,0x3e03c0,0x7c03c0,0xf803c0,0x1f003c0,0x1f003c0,0x3e003c0,0x7c003c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x1ffc0,0x1ffc0,0x1ffc0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c1f1c,0xfe3f9c, + 0x1ff7fdc,0x1e378fc,0x3e1f87c,0x3c1f07c,0x3c0f07c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c, + 0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x3c0f03c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e0f0,0x1ff8f0, + 0x3ffef0,0x7e0ef0,0x7807f0,0xf803f0,0xf001f0,0xf001f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00,0xfff00, + 0x3fff80,0x3e07c0,0x7803e0,0xf801f0,0xf000f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf000f0,0xf000f0,0xf801f0,0x7c03e0,0x3e07c0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0f0,0x1ffcf0, + 0x3ffef0,0x7e0ef0,0x7807f0,0xf003f0,0xf001f0,0xf001f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0, + 0xf001f0,0xf001f0,0xf001f0,0x7803f0,0x7e0ff0,0x3ffef0,0x1ffcf0,0x7f0f0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0fe00,0xf3ff80, + 0xf7ffc0,0xf707e0,0xfc01e0,0xfc00f0,0xf800f0,0xf800f0,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf00078,0xf80078, + 0xf800f0,0xf800f0,0xfc00f0,0xfe01f0,0xf707e0,0xf7ffc0,0xf1ff80,0xf07e00,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000,0xf00000, + 0xf00000,0xf00000,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff03c0,0x1ffc3c0, + 0x1ffe3c0,0x1fff380,0x1f780,0x7f80,0x3f80,0x1f80,0xf80,0xf80,0xf80,0x780,0x780,0x780,0x780,0x780,0x780,0x780, + 0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x780,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00,0x1fff00, + 0x3fff80,0x7e07c0,0x7803e0,0xf001e0,0xf001e0,0x1e0,0x3e0,0x7e0,0x3fc0,0x3ff80,0x1fff00,0x7ff800,0xffc000,0xfc0000,0x1f00000,0x1e00000, + 0x1e00000,0x1e000e0,0x1e000f0,0xf001e0,0xfc07e0,0x7fffc0,0x1fff80,0x7fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0xe00,0xe00,0xe00,0xf00,0xf00,0xf00,0x7ffff0,0x7ffff0, + 0x7ffff0,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00,0xf00, + 0xf00,0xf00,0xf00,0x1f00,0xc03e00,0xfffe00,0xfffc00,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf800f0,0xf800f0,0xfc01f0,0xfc01e0,0xf703e0,0xf7ffc0,0xf1ff80,0xf07f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x780003c,0x3c00078, + 0x3c00078,0x3c000f8,0x1e000f0,0x1e000f0,0xf001e0,0xf001e0,0xf001e0,0x7803c0,0x7803c0,0x3c0780,0x3c0780,0x1c0780,0x1e0f00,0x1e0f00,0xf1e00,0xf1e00, + 0x71e00,0x79c00,0x7bc00,0x3b800,0x3f800,0x1f800,0x1f000,0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00001e,0x1e00001e, + 0x1e00001e,0xf00003c,0xf00003c,0xf00003c,0xf00003c,0xf03e03c,0xf03f03c,0x783f078,0x783f078,0x787f878,0x7873878,0x7873878,0x38f3c70,0x3ce1c70,0x3ce1cf0,0x3ce1ef0, + 0x3de0ef0,0x3dc0ef0,0x1dc0ee0,0x1dc07e0,0x1f807e0,0x1f807e0,0x1f807e0,0x1f803e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0007c,0x1e000f8, + 0xf001f0,0x7801e0,0x7803e0,0x3c07c0,0x1e0f80,0x1f0f00,0xf1e00,0x7be00,0x3fc00,0x3f800,0x1f000,0x1f800,0x3f800,0x7fc00,0xfbe00,0xf1f00, + 0x1e0f00,0x3e0780,0x7c07c0,0xf803e0,0xf001e0,0x1f000f0,0x3e000f8,0x7c0007c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x780003c,0x7c0007c, + 0x3c00078,0x3e000f8,0x1e000f0,0x1e000f0,0x1f001f0,0xf001e0,0xf003e0,0x7803c0,0x7803c0,0x7c0780,0x3c0780,0x3c0780,0x1e0f00,0x1e0f00,0xe1e00,0xf1e00, + 0xf1e00,0x7bc00,0x7bc00,0x3b800,0x3f800,0x3f000,0x1f000,0x1f000,0xf000,0xf000,0xf000,0x7800,0x7c00,0x3c00,0x1f00,0xff0, + 0x7f0,0x3f0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffff0,0xfffff0, + 0xfffff0,0xf80000,0x7c0000,0x3e0000,0x1f0000,0xf8000,0xf8000,0x7c000,0x3e000,0x1f000,0xf800,0xf800,0x7c00,0x3e00,0x1f00,0xf80, + 0x780,0x7c0,0x3e0,0x1f0,0xf8,0x1fffff8,0x1fffff8,0x1fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x1ff0000,0x1ffc000,0x1ffe000,0x3e000,0x1f000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x7800,0x7c00,0x3e00,0x1fc0,0x7c0,0x1fc0,0x3e00,0x7c00,0xf800, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x1f000,0x3e000,0x1ffe000, + 0x1ffc000,0x1ff0000,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x1ff0,0x7ff0,0xfff0,0xf800,0x1f000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3c000,0x7c000,0xf8000,0x7f0000,0x7c0000,0x7f0000,0xf8000,0x7c000,0x3e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1f000,0xf800,0xfff0, + 0x7ff0,0x1ff0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xfc0,0x2007ff0,0x383fff8,0x3fff038,0x1ffc008,0x7e0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0xb8e07fc,0x176ec06,0x8b925f4,0x1d9dece6,0x1f05e5f4,0x1f860df6,0x5820404,0x6860c06,0x1b6d27fc,0x1bc3a000,0x1be76000,0x70e2c04,0x19103a38,0x3306b14,0x1f7e744,0x1811e1fe, + 0x3b7847c,0x1181047c,0x1b00c380,0xfbf8c,0xf7f8e,0x80caff4,0x1e0807f4,0x1c7e2078,0x105e1030,0x108e1f30,0x191c0b8,0x10b3c1b8,0x3e2ff08,0x19c6e000,0x10c22000,0xd8f8ffc, + 0x1b604406,0x10e9cce4,0x1ffe05f6,0x1ffe0cf4,0x499c5e6,0x18c0c04,0x880406,0x43deffc,0x8248,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1f80,0x1f80,0xf80,0x1f80,0x1f80,0x200,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fff8,0x3fff8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004, + 0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x2004,0x3ffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000,0x1f000, + 0x1f000,0x1f000,0x1f000,0x0,0x0,0x0,0x0,0x0,0xe000,0xf000,0xf000,0xf000,0xf000,0xf000,0x1f000,0x1f000, + 0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x1f000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000,0xe000,0xe000,0xe000,0x7fc00,0x1fff00,0x3fff80,0x7ce7c0, + 0xf8e3e0,0xf0e1f0,0x1f0e0f0,0xe0e0f0,0xe078,0xe078,0xe078,0xe078,0xe078,0xe078,0xe078,0xe078,0xe078,0x1e0e0f0,0x1e0e0f0,0xf0e1f0, + 0xf8e3e0,0x7ce7c0,0x3fff80,0x1fff00,0x7fc00,0xe000,0xe000,0xe000,0xe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000,0x3ffc00,0x7fff00,0xfc1f00,0x1f00780,0x1f00780,0x6003c0,0x3c0, + 0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x7fffc,0x7fffc,0x7fffc,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0,0x3c0, + 0x3c0,0x1e0,0x78001e0,0x78000f0,0x3c00078,0x3fffffc,0x1fffffc,0xfffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21f820,0x77fef0, + 0xfffff8,0x7fffe0,0x3e07c0,0x7801e0,0x7000e0,0xf000f0,0xe00070,0xe00070,0xe00070,0xe00070,0xf000f0,0x7000e0,0x7801e0,0x3e07c0,0x7fffe0,0x7ffff0, + 0xf7fef8,0x61f870,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c0003e,0x3e0007c,0x3e0007c,0x1f000f8,0xf000f0,0xf801f0,0x7801e0,0x7c03e0, + 0x3c03c0,0x1e0780,0x1f0f80,0xf0f00,0xf9f00,0x79e00,0x3fc00,0x3fc00,0x1fffff8,0x1fffff8,0x1fffff8,0xf000,0xf000,0xf000,0xf000,0x1fffff8, + 0x1fffff8,0x1fffff8,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x7f800,0x1fff00,0x7fff80,0xfc0fc0,0xf003e0,0x1f001e0,0x1e001e0,0x1e0,0x3e0,0x7c0,0x1fc0, + 0x1ff80,0xffe00,0x7ffe00,0xff9f80,0x1f807c0,0x3f003c0,0x3e001e0,0x3c001e0,0x3c001e0,0x3c001e0,0x1e003e0,0x1f00fc0,0xfc7f80,0x7fff00,0x1ffc00,0x7fc000, + 0xfe0000,0x1f00000,0x3e00000,0x3c00000,0x3c00000,0x3c000e0,0x3c001f0,0x1e001e0,0x1f807e0,0xffffc0,0x3fff00,0xffc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x3f800,0x1fff00,0x3c0780,0x7001c0,0xc00060,0x1c00030,0x3800038,0x303f018,0x707fc1c,0x60e1e0c,0x61c0e0c, + 0x63c070c,0xc180706,0xc000386,0xc000386,0xc000386,0xc000386,0xc000386,0xc000386,0xc000386,0xc000386,0xc000386,0xc180706,0x638070c,0x61c0e0c,0x61e1e0c,0x70ffc1c, + 0x303f018,0x3800038,0x1800030,0xc00060,0x7001c0,0x3c0780,0x1fff00,0x3f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7ff00,0xf0780,0xe0380,0x1c01c0,0x1c01c0,0x1c0000,0x1ffc00,0x1fff80, + 0x1c07c0,0x1c01e0,0x1c00e0,0x1e00e0,0x1e00e0,0x1f01e0,0x3dc3c0,0xf8ffc0,0xf03f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3c07800,0x1e03c00,0xf01e00,0x780f00,0x7c0f80,0x3e07c0,0x1f03e0,0xf81f0,0x7c0f8,0x3c078,0x7c0f8,0xf81f0,0x1f03e0,0x3e07c0, + 0x7c0f80,0x780f00,0xf01e00,0x1e03c00,0x3c07800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x3fffff8,0x3fffff8,0x3800000,0x3800000,0x3800000,0x3800000,0x3800000,0x3800000,0x3800000, + 0x3800000,0x3800000,0x3800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x3f800,0x1fff00,0x3c0780,0x7001c0,0xc00060,0x1c00030,0x3800038,0x3000018,0x703ff1c,0x60fff0c,0x61e070c, + 0x63c070c,0xc380706,0xc380706,0xc380706,0xc3c0706,0xc1e0706,0xc0fff06,0xc03ff06,0xc038706,0xc078706,0xc070706,0xc0e0706,0x60e070c,0x61c070c,0x63c070c,0x738071c, + 0x3700718,0x3800038,0x1800030,0xc00060,0x7001c0,0x3c0780,0x1fff00,0x3f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x1fffffff,0x1fffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000,0x7fc00,0xffe00,0xf1e00,0x1e0f00,0x1c0700,0x1c0700,0x1c0700, + 0x1e0f00,0xf1e00,0xffe00,0x7fc00,0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000,0xe000,0xe000,0xe000, + 0xe000,0xe000,0xe000,0xe000,0xe000,0x3fffff8,0x3fffff8,0x3fffff8,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000, + 0xe000,0x0,0x0,0x0,0x0,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0x7fe00,0xf0f00,0x1e0700,0x1c0380,0x1c0380,0x1c0000,0x1e0000,0xe0000, + 0xf0000,0x78000,0x3e000,0xf000,0x7800,0x1c00,0xe00,0x700,0x380,0x1fff80,0x1fff80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0x7fe00,0xf0f00,0x1e0700,0x1c0380,0x1c0380,0x1c0000,0xe0000,0xf0000, + 0x3f000,0x7f000,0xf0000,0x1e0000,0x1c0000,0x1c0380,0x1c0380,0x1e0700,0xf0f00,0x7fe00,0x1f800,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x7c000,0x3e000,0x1f000,0x7800,0x3c00,0x1e00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf800f0,0xf801f0,0xfc01f0,0xfe03f0,0xf707f0,0xf7fff0,0xf3fef0,0xf0f8f0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff00,0x1ffffc0,0x1ffffe0,0x383ff0,0x383ff0,0x383ff8,0x383ff8,0x383ff8, + 0x383ff8,0x383ff8,0x383ff8,0x383ff8,0x383ff0,0x383ff0,0x383fe0,0x383fc0,0x383f00,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800, + 0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800,0x383800, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x3f000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x60,0x3e0,0x7f0,0xf00,0xe00,0xe00,0xf00, + 0x7f8,0x1f8,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000,0xf000,0xfc00,0xff80,0xe780,0xe000,0xe000,0xe000,0xe000, + 0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0xe000,0x3fff80,0x3fff80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0xfff00,0x1e0780,0x3c03c0,0x3801c0,0x7801c0,0x7000e0,0x7000e0,0x7000e0, + 0x7000e0,0x7000e0,0x7000e0,0x3801c0,0x3801c0,0x3c03c0,0x1e0780,0xfff00,0x1f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3c078,0x780f0,0xf01e0,0x1e03c0,0x3e07c0,0x7c0f80,0xf81f00,0x1f03e00,0x3e07c00,0x3c07800,0x3e07c00,0x1f03e00,0xf81f00,0x7c0f80, + 0x3e07c0,0x1e03c0,0xf01e0,0x780f0,0x3c078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000e0,0x6000f0,0x7000f8,0x3000fe,0x3800e6,0x1800e0,0x1c00e0,0xc00e0, + 0xe00e0,0x600e0,0x700e0,0x300e0,0x380e0,0x1c0e0,0x781c0e0,0x780e0e0,0x7c0e7fc,0x7e077fc,0x7707000,0x7303800,0x7383800,0x71c1c00,0x70c0c00,0x70e0e00, + 0x7070600,0x7038700,0x1fff8300,0x1fff8380,0x7000180,0x70001c0,0x70000c0,0x70000e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe000e0,0x6000f0,0x7000f8,0x3000fe,0x3800e6,0x1800e0,0x1c00e0,0xc00e0, + 0xe00e0,0x600e0,0x700e0,0x300e0,0x380e0,0x1c0e0,0x1f9c0e0,0x7fce0e0,0x70ee7fc,0xe0777fc,0xe077000,0xe003800,0xe003800,0x7001c00,0x7800c00,0x3c00e00, + 0x1e00600,0xf00700,0x380300,0x1c0380,0xe0180,0x701c0,0xfff00c0,0xfff00e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c001f8,0xc007fc,0xe0071e,0x600e07,0x700e07,0x300e00,0x380f00,0x1807f0, + 0x1c03f0,0xc03f0,0xe0700,0x60e00,0x70e00,0x38e07,0x7838e07,0x781c70e,0x7c1c7fc,0x7e0e1f8,0x770e000,0x7307000,0x7387000,0x71c3800,0x70c1800,0x70e1c00, + 0x7070c00,0x7038e00,0x1fff8600,0x1fff8700,0x7000300,0x7000380,0x7000180,0x70001c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c000, + 0x7c000,0x7c000,0x7c000,0x7c000,0x0,0x0,0x0,0x7c000,0x7c000,0x3c000,0x3e000,0x1f000,0xf800,0x7e00,0x3f00,0x1f80, + 0x7c0,0x3e0,0x3e0,0x1f0,0x7c001f0,0x7c001f0,0x7e001f0,0x3e003f0,0x3f003f0,0x1fc0fe0,0xffffc0,0x7fff80,0x3fff00,0x7f800,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x1f00,0x3e00,0x7c00,0xf000,0x1e000,0x3c000,0x0,0x0,0x1f000,0x1f000,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x1f000,0x1f000,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x3e000,0x7f800,0xffc00,0x1f3e00,0x3c0f00,0x700380,0x0,0x0,0x1f000,0x1f000,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0x701e00,0x707f80,0x78ff80,0x3fe3c0,0x3fc1c0,0xf01c0,0x0,0x0,0x1f000,0x1f000,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x1f000,0x1f000,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x1f000,0x7fc00,0xffe00,0xf1e00,0xe0e00,0xf1e00,0xffe00,0x7fc00,0x3f000,0x3f800,0x3b800,0x7bc00,0x73c00,0xf1c00, + 0xf1e00,0xe0e00,0x1e0f00,0x1e0f00,0x3c0700,0x3c0780,0x3c0780,0x7803c0,0x7803c0,0x7003c0,0xf001e0,0xffffe0,0x1fffff0,0x1fffff0,0x1fffff0,0x3c00078, + 0x3c00078,0x7c00078,0x780003c,0x780003c,0xf00003e,0xf00001e,0xf00001e,0x1e00000f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff800,0x7fff800,0x7fffc00,0x7fffc00,0x79c00,0x79e00,0x79e00,0x78e00, + 0x78f00,0x78f00,0x78700,0x78780,0x78780,0x7ff8380,0x7ff83c0,0x7ff83c0,0x7ff81e0,0x781e0,0x7ffe0,0x7fff0,0x7fff0,0x7fff0,0x78078,0x78078, + 0x78078,0x7803c,0x7803c,0x7803c,0xfff801e,0xfff801e,0xfff801e,0xfff800f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x1ffe00,0x7fff80,0xffffc0,0xfc0fc0,0x1f803e0,0x3f001e0,0x3e001f0, + 0x4000f0,0xf0,0xf8,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0xf0,0x8000f0,0x7c000f0, + 0x7c001f0,0x3e001e0,0x1f003e0,0x1fc0fc0,0xffff80,0x7fff00,0x1ffe00,0x7f000,0xe000,0x6000,0x3e000,0x7f000,0xf0000,0xe0000,0xe0000,0xf0000, + 0x7f800,0x1f800,0x0,0x0,0x0,0x0, + // 200 + 0x1f00,0x3e00,0x7c00,0xf000,0x1e000,0x3c000,0x0,0x0,0x3fffff0,0x3fffff0,0x3fffff0,0x3fffff0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x3fffff0,0x3fffff0,0x3fffff0,0x3fffff0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x3e000,0x7f800,0xffc00,0x1f3e00,0x3c0f00,0x700380,0x0,0x0,0x3fffff0,0x3fffff0,0x3fffff0,0x3fffff0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x3c1e00,0x3c1e00,0x3c1e00,0x3c1e00,0x0,0x0,0x3fffff0,0x3fffff0,0x3fffff0,0x3fffff0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0xf0,0x1fffff0,0x1fffff0,0x1fffff0,0x1fffff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0xf0,0xf0,0x7fffff0,0x7fffff0,0x7fffff0,0x7fffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0xf80,0x1f00,0x3e00,0x7800,0xf000,0x1e000,0x0,0x0,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0x7fffe0,0x7fffe0,0x7fffe0,0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff0,0x7fff0,0x1ffff0,0x3ffff0,0x7f80f0,0xfc00f0,0xf800f0,0x1f000f0, + 0x1e000f0,0x1e000f0,0x1e000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c07ffe,0x3c07ffe,0x3c07ffe,0x3c07ffe,0x3c000f0,0x3c000f0,0x3c000f0,0x1e000f0,0x1e000f0,0x1f000f0, + 0xf000f0,0xf800f0,0x7c00f0,0x7f00f0,0x3ffff0,0x1ffff0,0x7fff0,0x1fff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0x701e00,0x707f80,0x78ff80,0x3fe3c0,0x3fc1c0,0xf01c0,0x0,0x0,0x1e001f0,0x1e003f0,0x1e003f0,0x1e007f0,0x1e007f0,0x1e00ff0,0x1e00ff0,0x1e01ef0, + 0x1e01ef0,0x1e01cf0,0x1e03cf0,0x1e03cf0,0x1e078f0,0x1e078f0,0x1e0f0f0,0x1e0f0f0,0x1e1e0f0,0x1e1e0f0,0x1e3c0f0,0x1e3c0f0,0x1e380f0,0x1e780f0,0x1e780f0,0x1ef00f0, + 0x1ef00f0,0x1fe00f0,0x1fe00f0,0x1fc00f0,0x1fc00f0,0x1f800f0,0x1f800f0,0x1f800f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0xf80,0x1f00,0x3e00,0x7800,0xf000,0x1e000,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x1e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x1e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x1e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0x701e00,0x707f80,0x78ff80,0x3fe3c0,0x3fc1c0,0xf01c0,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x1e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x3fc00,0xfff00,0x1fffc0,0x3fffe0,0x7e07e0,0xf801f0,0xf000f0,0x1f000f8, + 0x1e00078,0x1e00078,0x3e0007c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x3c0003c,0x1e0007c,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07e0,0x3fffc0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400040,0xe000e0,0x1f001f0, + 0xf803e0,0x7c07c0,0x3e0f80,0x1f1f00,0xfbe00,0x7fc00,0x3f800,0x1f000,0x3f800,0x7fc00,0xfbe00,0x1f1f00,0x3e0f80,0x7c07c0,0xf803e0,0x1f001f0, + 0xe000f0,0x400060,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x303fc00,0x78fff00,0x39fffc0,0x1ffffe0,0xfe07e0,0xf801f0,0xf000f0,0x1f800f8, + 0x1f80078,0x1fc0078,0x3fe007c,0x3cf003c,0x3c7803c,0x3c3c03c,0x3c1e03c,0x3c0f03c,0x3c0703c,0x3c0383c,0x3c03c3c,0x3c01e3c,0x3c00f3c,0x1e007fc,0x1e003f8,0x1e001f8, + 0x1f000f8,0xf000f0,0xf801f0,0x7e07f0,0x3ffff8,0x1fff9c,0xfff1e,0x3fc0c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0xf80,0x1f00,0x3e00,0x7800,0xf000,0x1e000,0x0,0x0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0xfe03f0,0x7fffe0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0x1f0000,0xf8000,0x7c000,0x1e000,0xf000,0x7800,0x0,0x0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0xfe03f0,0x7fffe0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0xfe03f0,0x7fffe0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0x1f000f8,0xf000f0,0xf801f0,0xfe03f0,0x7fffe0,0x3fffc0,0x1fff80,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x7c0003e,0x3e0007c,0x1e00078,0x1f000f8,0xf000f0,0xf801f0,0x7c03e0,0x3c03c0, + 0x3e07c0,0x1e0780,0x1f0f80,0xf0f00,0x79e00,0x7be00,0x3fc00,0x3fc00,0x1f800,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, + 0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x7fff0,0x1ffff0, + 0x7ffff0,0xfc00f0,0x1f000f0,0x1e000f0,0x3e000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x3c000f0,0x1e000f0,0x1e000f0,0xf800f0,0xfc00f0,0x7ffff0, + 0x1ffff0,0x7fff0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x3fc00,0x1fff80,0x3fffc0,0x7e07e0,0x7801f0,0xf000f0,0xf000f0,0xf00078,0xf00078,0x780078,0x7c0078, + 0x3e0078,0x1f0078,0xf8078,0x7c078,0x3c078,0x3c078,0x7c078,0xfc078,0x1f8078,0x7f0078,0xfe0078,0x1f80078,0x3f00078,0x3c00078,0x7c00078,0x7800078, + 0x7800078,0x7800078,0x7800078,0x3c01078,0x3e07078,0x1fff078,0xfff078,0x3fc078,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0xf80,0x1f00,0x3e00,0x7800,0xf000,0x1e000,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x1f0000,0xf8000,0x7c000,0x1e000,0xf000,0x7800,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x701e00,0x707f80,0x78ff80,0x3fe3c0,0x3fc1c0,0xf01c0,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x1f000,0x7fc00,0xffe00,0xf1e00,0xe0e00,0xf1e00,0xffe00,0x7fc00,0x1f000,0x0,0x0,0x0,0x3fe00,0xfff80, + 0x1fffc0,0x3f03e0,0x3c01f0,0x7c00f0,0x7800f0,0x780000,0x780000,0x780000,0x7ffc00,0x7fff80,0x7fffe0,0x7807f0,0x7801f0,0x7800f8,0x780078,0x780078, + 0x7c0078,0x7c0078,0x7e0078,0x7f00f8,0xfbc1f0,0x7f1fff0,0x7f0ffe0,0x7e03f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0fe0,0x1ff1ff8, + 0x3ffbffc,0x7c7fc7c,0xf83f83e,0xf01f01e,0xf01f01e,0xe00f000,0x1e00f000,0x1e00f000,0x1e00ffe0,0x1ffffff8,0x1ffffffc,0x1ffff07e,0xf01e,0xf01f,0xf00f,0xf00f, + 0xf80f,0x301f80f,0xf01f80f,0xf81dc1f,0x7c3ce1e,0x3ff8ffe,0x1ff07fc,0x7e01f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e07c0,0xf803e0,0xf001e0,0x1e000f0,0x1e000f0,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78, + 0x1e000f0,0x1e000f0,0xf001e0,0xf803e0,0x7e07c0,0x3fff80,0x1fff00,0x3f800,0xe000,0x6000,0x3e000,0x7f000,0xf0000,0xe0000,0xe0000,0xf0000, + 0x7f800,0x1f800,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x1f00,0x3e00,0x7c00,0xf000,0x1e000,0x3c000,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e0fc0,0xf803e0,0xf001f0,0x1e000f0,0x1e000f0,0x1c00078,0x3c00078,0x3c00078,0x3fffff8,0x3fffff8,0x3fffff8,0x78,0x78,0x78,0x78, + 0xf0,0x6000f0,0x1f001e0,0xf803e0,0xfe07c0,0x7fff80,0x1fff00,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e0fc0,0xf803e0,0xf001f0,0x1e000f0,0x1e000f0,0x1c00078,0x3c00078,0x3c00078,0x3fffff8,0x3fffff8,0x3fffff8,0x78,0x78,0x78,0x78, + 0xf0,0x6000f0,0x1f001e0,0xf803e0,0xfe07c0,0x7fff80,0x1fff00,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x3e000,0x7f800,0xffc00,0x1f3e00,0x3c0f00,0x700380,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e0fc0,0xf803e0,0xf001f0,0x1e000f0,0x1e000f0,0x1c00078,0x3c00078,0x3c00078,0x3fffff8,0x3fffff8,0x3fffff8,0x78,0x78,0x78,0x78, + 0xf0,0x6000f0,0x1f001e0,0xf803e0,0xfe07c0,0x7fff80,0x1fff00,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x0,0x3f800,0x1fff00, + 0x3fff80,0x7e0fc0,0xf803e0,0xf001f0,0x1e000f0,0x1e000f0,0x1c00078,0x3c00078,0x3c00078,0x3fffff8,0x3fffff8,0x3fffff8,0x78,0x78,0x78,0x78, + 0xf0,0x6000f0,0x1f001e0,0xf803e0,0xfe07c0,0x7fff80,0x1fff00,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x1f00,0x3e00,0x7c00,0xf000,0x1e000,0x3c000,0x0,0x0,0x0,0x1ffe0,0x1ffe0, + 0x1ffe0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x0,0x1ffe0,0x1ffe0, + 0x1ffe0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x0,0x1ffe0,0x1ffe0, + 0x1ffe0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c1e00,0x3c1e00,0x3c1e00,0x3c1e00,0x0,0x0,0x0,0x1ffe0,0x1ffe0, + 0x1ffe0,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x1e000, + 0x1e000,0x1e000,0x1e000,0x1e000,0x1e000,0x3fffff8,0x3fffff8,0x3fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x101f00,0x3e3c00,0x3ff800,0xff000,0x3f800,0x7ff00,0xf8f00,0xf0200,0x1e0000,0x3e0000,0x3c0000, + 0x780000,0x79fc00,0xffff00,0xffffc0,0xfe07e0,0xf801e0,0x1f000f0,0x1f000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf00078,0xf000f0,0xf000f0,0x7801e0,0x3e07e0,0x3fffc0,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x701e00,0x707f80,0x78ff80,0x3fe3c0,0x3fc1c0,0xf01c0,0x0,0x0,0x0,0x7e0f0,0x1ff8f0, + 0x3ffef0,0x7e0ef0,0x7807f0,0xf803f0,0xf001f0,0xf001f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x1f00,0x3e00,0x7c00,0xf000,0x1e000,0x3c000,0x0,0x0,0x0,0x3fc00,0xfff00, + 0x3fff80,0x3e07c0,0x7803e0,0xf801f0,0xf000f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf000f0,0xf000f0,0xf801f0,0x7c03e0,0x3e07c0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x0,0x3fc00,0xfff00, + 0x3fff80,0x3e07c0,0x7803e0,0xf801f0,0xf000f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf000f0,0xf000f0,0xf801f0,0x7c03e0,0x3e07c0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x0,0x3fc00,0xfff00, + 0x3fff80,0x3e07c0,0x7803e0,0xf801f0,0xf000f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf000f0,0xf000f0,0xf801f0,0x7c03e0,0x3e07c0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x701e00,0x707f80,0x78ff80,0x3fe3c0,0x3fc1c0,0xf01c0,0x0,0x0,0x0,0x3fc00,0xfff00, + 0x3fff80,0x3e07c0,0x7803e0,0xf801f0,0xf000f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf000f0,0xf000f0,0xf801f0,0x7c03e0,0x3e07c0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x0,0x3fc00,0xfff00, + 0x3fff80,0x3e07c0,0x7803e0,0xf801f0,0xf000f0,0xf000f0,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078,0x1e00078, + 0xf000f0,0xf000f0,0xf801f0,0x7c03e0,0x3e07c0,0x1fff80,0xfff00,0x3fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf000,0xf000,0xf000, + 0xf000,0x0,0x0,0x0,0x0,0x0,0x3fffffc,0x3fffffc,0x3fffffc,0x0,0x0,0x0,0x0,0x0,0xf000,0xf000, + 0xf000,0xf000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83fc00,0x1cfff00, + 0xffff80,0x7e07c0,0x7803e0,0xf801f0,0xfc00f0,0xfe00f0,0x1e70078,0x1e38078,0x1e38078,0x1e1c078,0x1e0e078,0x1e07078,0x1e03878,0x1e01c78,0x1e01e78,0x1e00e78, + 0xf007f0,0xf003f0,0xf801f0,0x7c03e0,0x3e07f0,0x1ffff0,0xfff38,0x3fc10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0xf80,0x1f00,0x3e00,0x7800,0xf000,0x1e000,0x0,0x0,0x0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf800f0,0xf800f0,0xfc01f0,0xfc01e0,0xf703e0,0xf7ffc0,0xf1ff80,0xf07f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x1f0000,0xf8000,0x7c000,0x1e000,0xf000,0x7800,0x0,0x0,0x0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf800f0,0xf800f0,0xfc01f0,0xfc01e0,0xf703e0,0xf7ffc0,0xf1ff80,0xf07f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x1f000,0x3fc00,0x7fe00,0xf9f00,0x1e0780,0x3801c0,0x0,0x0,0x0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf800f0,0xf800f0,0xfc01f0,0xfc01e0,0xf703e0,0xf7ffc0,0xf1ff80,0xf07f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x0,0xf000f0,0xf000f0, + 0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0,0xf000f0, + 0xf800f0,0xf800f0,0xfc01f0,0xfc01e0,0xf703e0,0xf7ffc0,0xf1ff80,0xf07f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x3e0000,0x1f0000,0xf8000,0x3c000,0x1e000,0xf000,0x0,0x0,0x0,0x780003c,0x7c0007c, + 0x3c00078,0x3e000f8,0x1e000f0,0x1e000f0,0x1f001f0,0xf001e0,0xf003e0,0x7803c0,0x7803c0,0x7c0780,0x3c0780,0x3c0780,0x1e0f00,0x1e0f00,0xe1e00,0xf1e00, + 0xf1e00,0x7bc00,0x7bc00,0x3b800,0x3f800,0x3f000,0x1f000,0x1f000,0xf000,0xf000,0xf000,0x7800,0x7c00,0x3c00,0x1f00,0xff0, + 0x7f0,0x3f0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0x7f0f0,0x1ff8f0, + 0x3ffef0,0x7e0ef0,0x7807f0,0xf003f0,0xf001f0,0xf001f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0,0x1e000f0, + 0xf001f0,0xf001f0,0xf001f0,0x7803f0,0x7e0ff0,0x3ffef0,0x1ffcf0,0x7f0f0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, + 0xf0,0xf0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0f00,0x1e0f00,0x1e0f00,0x1e0f00,0x0,0x0,0x0,0x780003c,0x7c0007c, + 0x3c00078,0x3e000f8,0x1e000f0,0x1e000f0,0x1f001f0,0xf001e0,0xf003e0,0x7803c0,0x7803c0,0x7c0780,0x3c0780,0x3c0780,0x1e0f00,0x1e0f00,0xe1e00,0xf1e00, + 0xf1e00,0x7bc00,0x7bc00,0x3b800,0x3f800,0x3f000,0x1f000,0x1f000,0xf000,0xf000,0xf000,0x7800,0x7c00,0x3c00,0x1f00,0xff0, + 0x7f0,0x3f0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,44,-1,5,50,0,0,0,0,0 +const unsigned int ff11_height = 67; +const unsigned int ff11_line_height = 67; +const unsigned int ff11_width = 35; +const unsigned int ff11_stride = 2; +const unsigned char ff11_first_char = ' '; + +uint32_t ff11_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe07f00,0x0,0xfe07f00,0x0, + 0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0, + 0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3800e000,0x0,0x3800e000,0x0,0x1c007000,0x0,0x1c007000,0x0,0x1c007000,0x0,0x1c007000,0x0, + 0x1e007000,0x0,0xe003800,0x0,0xe003800,0x0,0xe003800,0x0,0xe003800,0x0,0x7003800,0x0,0xfffffff8,0x3,0xfffffff8,0x3, + 0xfffffff8,0x3,0x3801c00,0x0,0x3801c00,0x0,0x3800e00,0x0,0x3800e00,0x0,0x3c00e00,0x0,0x1c00e00,0x0,0x1c00e00,0x0, + 0x1c00700,0x0,0x1c00700,0x0,0xfffffffc,0x0,0xfffffffc,0x0,0xfffffffc,0x0,0xe00380,0x0,0x700380,0x0,0x700380,0x0, + 0x700380,0x0,0x7001c0,0x0,0x7801c0,0x0,0x3801c0,0x0,0x3801c0,0x0,0x3801c0,0x0,0x3801e0,0x0,0x1c00e0,0x0, + 0x1c00e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xfff000,0x0,0x7fffe00,0x0,0xfffff80,0x0,0x1fffffc0,0x0,0x3fcf1fe0,0x0,0x7f0f07e0,0x0, + 0x7e0f03f0,0x0,0x7c0f01f0,0x0,0xf80f01f0,0x0,0x380f01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf03f0,0x0,0xf03e0,0x0, + 0xf0fe0,0x0,0xf3fc0,0x0,0xfff80,0x0,0xfffe00,0x0,0x3fff800,0x0,0xfffc000,0x0,0x3fff0000,0x0,0x7f8f0000,0x0, + 0x7e0f0000,0x0,0xfc0f0000,0x0,0xf80f0000,0x0,0xf00f0000,0x1,0xf00f0000,0x1,0xf00f0000,0x1,0xf00f0060,0x1,0xf00f007c,0x1, + 0xf00f00fc,0x1,0xf80f00f8,0x1,0xfc0f01f8,0x0,0xfe0f07f0,0x0,0x7f8f1ff0,0x0,0x3fffffe0,0x0,0x1fffff80,0x0,0x7fffe00,0x0, + 0xfff000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfe0,0x0,0xe0003ff8,0x1,0xf0007ffc,0x0,0xf800f83e,0x0,0x7800f01e,0x0,0x3c00f01e,0x0,0x1e01e00f,0x0, + 0x1f01e00f,0x0,0xf01e00f,0x0,0x781e00f,0x0,0x7c1e00f,0x0,0x3c1e00f,0x0,0x1e1e00f,0x0,0x1f1e00f,0x0,0xf0f01e,0x0, + 0x78f01e,0x0,0x3cf83e,0x0,0x3e7ffc,0x0,0x1e3ff8,0x0,0xf0fe0,0x0,0xf8000,0x0,0x3f878000,0x0,0xffe3c000,0x0, + 0xfff3e000,0x1,0xe0f9e000,0x3,0xc078f000,0x3,0xc0787800,0x3,0x803c7c00,0x7,0x803c3c00,0x7,0x803c1e00,0x7,0x803c1f00,0x7, + 0x803c0f00,0x7,0x803c0780,0x7,0x803c03c0,0x7,0x803c03c0,0x7,0xc07801e0,0x3,0xc07800f0,0x3,0xe0f800f8,0x3,0xfff00078,0x1, + 0xffe0003c,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fe000,0x0,0xfff800,0x0,0x1fffc00,0x0,0x3fffe00,0x0,0x3f07f00,0x0,0x7e01f00,0x0, + 0x7c01f80,0x0,0x7c00f80,0x0,0x7c00f80,0x0,0x7c00f80,0x0,0x3e00f80,0x0,0x3f00f80,0x0,0x1f80f00,0x0,0xfe1f00,0x0, + 0x7f9f00,0x0,0x1ffe00,0x0,0x7fe00,0x0,0x1ff00,0x0,0xc007fc0,0x0,0x7c007fe0,0x0,0x7c00fbf0,0x0,0x3e00f9f8,0x0, + 0x3e01f0f8,0x0,0x3e03e07c,0x0,0x1f03e07c,0x0,0x1f07c03e,0x0,0x1f0f803e,0x0,0xf9f803e,0x0,0xf9f003e,0x0,0x7be003e,0x0, + 0x7fc003e,0x0,0x3fc003e,0x0,0x3f8007e,0x0,0x3f8007c,0x0,0xffc00fc,0x0,0xffff03f8,0x3,0xffbffff0,0x3,0xff1fffe0,0x3, + 0xfc07ffc0,0x3,0xf000fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f00000,0x0,0xf80000,0x0, + 0x7c0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x1f8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0, + 0x3e000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0xf800,0x0,0xf800,0x0, + 0xf800,0x0,0xf800,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x3e000,0x0,0x3e000,0x0,0x3e000,0x0,0x7c000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f8000,0x0,0x1f0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x7c0000,0x0,0xf80000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c00,0x0,0xf800,0x0, + 0x1f000,0x0,0x3e000,0x0,0x3e000,0x0,0x7c000,0x0,0xfc000,0x0,0xf8000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x3f0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0x1f80000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xfc000,0x0,0x7c000,0x0, + 0x3e000,0x0,0x3e000,0x0,0x1f000,0x0,0xf800,0x0,0x7c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xc0f0300,0x0,0xf8f1f00,0x0,0x1fffff80,0x0,0x1fffff80,0x0, + 0x3fffc00,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fc000,0x0,0x79e000,0x0,0x79e000,0x0,0xf0f000,0x0,0x1f0f800,0x0, + 0x3e07c00,0x0,0x1c03800,0x0,0x402000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78000,0x0, + 0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0, + 0x78000,0x0,0x78000,0x0,0x78000,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x78000,0x0, + 0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0, + 0x78000,0x0,0x78000,0x0,0x78000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000,0x0,0x7f000,0x0,0x7f800,0x0,0x3f800,0x0,0x3f800,0x0,0x1f800,0x0,0x1fc00,0x0,0xfc00,0x0, + 0xfc00,0x0,0xfe00,0x0,0x7e00,0x0,0x7e00,0x0,0x3e00,0x0,0x3f00,0x0,0x1f00,0x0,0x1f00,0x0, + 0xf00,0x0,0xf80,0x0,0x780,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffc00,0x0, + 0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0x0,0x7c000000,0x0, + 0x7c000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0xf800000,0x0,0xfc00000,0x0,0x7c00000,0x0, + 0x3e00000,0x0,0x3e00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0xf80000,0x0,0xf80000,0x0,0x7c0000,0x0,0x7e0000,0x0, + 0x3e0000,0x0,0x3f0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0, + 0x3f000,0x0,0x1f000,0x0,0x1f800,0x0,0xf800,0x0,0x7c00,0x0,0x7c00,0x0,0x3e00,0x0,0x3e00,0x0, + 0x1f00,0x0,0x1f80,0x0,0xf80,0x0,0xfc0,0x0,0x7c0,0x0,0x3e0,0x0,0x3e0,0x0,0x1f0,0x0, + 0x1f0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x1fffc00,0x0,0x3ffff00,0x0,0x7f07f00,0x0,0xfc01f80,0x0,0xf800fc0,0x0, + 0x1f0007c0,0x0,0x1f0007c0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c1fc1f0,0x0,0x7c1fc1f0,0x0,0x7c1fc1f0,0x0,0x7c1fc1f0,0x0,0x7c1fc1f0,0x0,0x7c1fc1f0,0x0, + 0x7c1fc1f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3c0001f0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f0007c0,0x0,0xf800f80,0x0,0xfc01f80,0x0,0x7f07f00,0x0,0x3fffe00,0x0,0x1fffc00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3fc000,0x0,0x3fe000,0x0,0x3ff800,0x0, + 0x3eff00,0x0,0x3e7ff0,0x0,0x3e3ff0,0x0,0x3e07f0,0x0,0x3e00f0,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0xfe03fc0,0x0,0x1f800fc0,0x0,0x1f0007e0,0x0, + 0x3f0003e0,0x0,0x3e0003f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x1f000000,0x0, + 0x1f800000,0x0,0xf800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0, + 0x7f0000,0x0,0x1fc000,0x0,0xfe000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0,0x7e00,0x0,0x3f00,0x0, + 0x1f80,0x0,0xf80,0x0,0x7c0,0x0,0x7e0,0x0,0x3e0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0, + 0x7ffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffe00,0x0,0xfffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007c0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x1f000000,0x0, + 0x1f800000,0x0,0xfc00000,0x0,0x7f00000,0x0,0x1ffc000,0x0,0x7fc000,0x0,0xffc000,0x0,0x7ffc000,0x0,0xff00000,0x0, + 0x1f800000,0x0,0x3f000000,0x0,0x3e000000,0x0,0x7e000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0003f0,0x0,0x7e0003e0,0x0,0x3e0003e0,0x0,0x3f0007e0,0x0,0x3f800fc0,0x0,0x1fe03f80,0x0,0xfffff00,0x0,0x7fffe00,0x0, + 0x1fffc00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7de0000,0x0,0x7df0000,0x0,0x7cf8000,0x0,0x7c78000,0x0,0x7c7c000,0x0,0x7c3e000,0x0,0x7c1e000,0x0,0x7c1f000,0x0, + 0x7c0f800,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c03e00,0x0,0x7c01f00,0x0,0x7c00f00,0x0,0x7c00f80,0x0,0x7c007c0,0x0, + 0x7c003e0,0x0,0x7c003e0,0x0,0x7c001f0,0x0,0x7c000f8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0, + 0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0, + 0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fffffc0,0x0,0x1fffffc0,0x0,0x1fffffc0,0x0,0x1fffffc0,0x0,0x7c0,0x0,0x7c0,0x0, + 0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x3e0,0x0, + 0x3f83e0,0x0,0x1fff3e0,0x0,0x3fffbe0,0x0,0xfffffe0,0x0,0xff03fe0,0x0,0x1f800fe0,0x0,0x3f0007e0,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0, + 0x7e0001e0,0x0,0x3e0003f0,0x0,0x3f0003e0,0x0,0x1f0007e0,0x0,0x1fc00fe0,0x0,0xff03fc0,0x0,0x7ffff80,0x0,0x3ffff00,0x0, + 0xfffc00,0x0,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x1fff000,0x0,0x7fff800,0x0,0xffffc00,0x0,0xfe07e00,0x0,0x1f803f00,0x0,0x1f000f80,0x0, + 0x3f000f80,0x0,0xe0007c0,0x0,0x3c0,0x0,0x3e0,0x0,0x3e0,0x0,0x1e0,0x0,0x1e0,0x0,0x1e0,0x0, + 0x3f81f0,0x0,0x1fff1f0,0x0,0x7fff9f0,0x0,0xffffdf0,0x0,0xfe03ef0,0x0,0x1f800ff0,0x0,0x3f0007f0,0x0,0x3e0003f0,0x0, + 0x3e0003f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001e0,0x0,0x7c0001e0,0x0,0x7c0003e0,0x0, + 0x7e0003e0,0x0,0x3e0003c0,0x0,0x3e0007c0,0x0,0x3f000f80,0x0,0x1f801f80,0x0,0xfe07f00,0x0,0x7fffe00,0x0,0x3fffc00,0x0, + 0x1fff000,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7c000000,0x0,0x3e000000,0x0, + 0x1f000000,0x0,0x1f000000,0x0,0xf800000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x3e00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0xf80000,0x0,0xf80000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0xf0000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x3e000,0x0, + 0x3e000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0x1fffc00,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe03f80,0x0,0x1f800fc0,0x0,0x1f0007c0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f0007c0,0x0, + 0xf800f80,0x0,0x7e03f80,0x0,0x3fffe00,0x0,0x1fffc00,0x0,0x1fff800,0x0,0x7ffff00,0x0,0xfe03f80,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7e0003f0,0x0,0x3e0003e0,0x0,0x3f0007e0,0x0,0x1f800fc0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe000,0x0,0x7ffc00,0x0,0xfffe00,0x0,0x3ffff00,0x0,0x3f03f80,0x0,0x7e00fc0,0x0,0xfc007e0,0x0, + 0xf8003e0,0x0,0xf0003e0,0x0,0x1f0003f0,0x0,0x1f0001f0,0x0,0x1e0001f0,0x0,0x1e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0, + 0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0003f0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3ff03f80,0x0, + 0x3effff80,0x0,0x3e7fff00,0x0,0x3e3ffc00,0x0,0x3e07f000,0x0,0x1e000000,0x0,0x1e000000,0x0,0x1f000000,0x0,0x1f000000,0x0, + 0xf000000,0x0,0xf800380,0x0,0x78007e0,0x0,0x7c007c0,0x0,0x3e00fc0,0x0,0x3f83f80,0x0,0x1ffff80,0x0,0xffff00,0x0, + 0x3ffc00,0x0,0xff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f8000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0xfc000,0x0,0xfe000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7f000,0x0,0x3f000,0x0,0x3f000,0x0,0x1f000,0x0,0x1f800,0x0,0xf800,0x0,0xf800,0x0, + 0x7800,0x0,0x7c00,0x0,0x3c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0x0, + 0xf0000000,0x0,0xfc000000,0x0,0xff000000,0x0,0x7fe00000,0x0,0x1ff80000,0x0,0x7fe0000,0x0,0xffc000,0x0,0x3ff000,0x0, + 0xffc00,0x0,0x1ff80,0x0,0x7fe0,0x0,0x1ff8,0x0,0x3f8,0x0,0xf8,0x0,0xf8,0x0,0x3f8,0x0, + 0x1ff8,0x0,0x7fe0,0x0,0x1ff80,0x0,0xffe00,0x0,0x3ff000,0x0,0xffc000,0x0,0x7fe0000,0x0,0x1ff80000,0x0, + 0x7fe00000,0x0,0xff000000,0x0,0xfc000000,0x0,0xf0000000,0x0,0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x78,0x0,0x1f8,0x0,0x7f8,0x0,0x3ff0,0x0,0xffc0,0x0,0x3ff00,0x0,0x1ff800,0x0,0x7fe000,0x0, + 0x3ff8000,0x0,0xffc0000,0x0,0x3ff00000,0x0,0xffc00000,0x0,0xfe000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xfe000000,0x0, + 0xffc00000,0x0,0x3ff00000,0x0,0xffc0000,0x0,0x3ff8000,0x0,0x7fe000,0x0,0x1ff800,0x0,0x3ff00,0x0,0xffc0,0x0, + 0x3ff0,0x0,0x7f8,0x0,0x1f8,0x0,0x78,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0x1fffc00,0x0,0x7ffff00,0x0,0xfffff80,0x0,0x1fe03fc0,0x0,0x3f800fe0,0x0,0x3f0007e0,0x0, + 0x7f0003f0,0x0,0x7e0003f0,0x0,0x7e0003f8,0x0,0x7e0001f8,0x0,0x7e0001f8,0x0,0x7e000000,0x0,0x7f000000,0x0,0x3f000000,0x0, + 0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fe0000,0x0,0xff0000,0x0,0x3f8000,0x0, + 0x1f8000,0x0,0xfc000,0x0,0xfc000,0x0,0x7c000,0x0,0x7e000,0x0,0x7e000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f8000,0x0,0x1fff000,0x0, + 0x7fff800,0x0,0xfc0fe00,0x0,0x1f003f00,0x0,0x3e000f80,0x0,0x7c000780,0x0,0x780003c0,0x0,0xf80003e0,0x0,0xf00001e0,0x0, + 0xf00000f0,0x0,0xe01f00f0,0x1,0xff3fc0f8,0x1,0xff7fe078,0x1,0xff71f078,0x1,0xcf60f87c,0x3,0xcfe0783c,0x3,0xcfc03c3c,0x3, + 0xcfc03c3c,0x3,0xc7c01e3c,0x3,0xc7c01e1e,0x3,0xc7c01e1e,0x3,0xc7c01e1e,0x3,0xc7c00f1e,0x3,0xc3e00f1e,0x3,0xc3e00f1e,0x3, + 0xc3e00f1e,0x3,0xc3e00f1e,0x3,0xe3e00f1e,0x1,0xe1f00f1e,0x1,0xe1f00f1e,0x1,0xe1f00f1e,0x1,0xe1f80f1e,0x0,0xf1f81e1e,0x0, + 0x71ec1e3c,0x0,0x79ee3e3c,0x0,0x3fe7fc3c,0x0,0x1fc3f83c,0x0,0xf81f078,0x0,0x78,0x0,0xf8,0x0,0xf0,0x0, + 0x80001f0,0x0,0x1c0003e0,0x0,0x3e0007c0,0x0,0x1f800f80,0x0,0x7e03f00,0x0,0x3fffe00,0x0,0xfffc00,0x0,0x1fe000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffe0,0x0,0x3ffffe0,0x0,0xfffffe0,0x0,0x1fffffe0,0x0,0x3fe007e0,0x0,0x3f8007e0,0x0, + 0x7f0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x3f0007e0,0x0, + 0x3f0007e0,0x0,0x1f8007e0,0x0,0xfe007e0,0x0,0x7ffffe0,0x0,0x1ffffe0,0x0,0x3ffffe0,0x0,0x1fffffe0,0x0,0x3fc007e0,0x0, + 0x7f0007e0,0x0,0xfe0007e0,0x0,0xfc0007e0,0x0,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xfc0007e0,0x1,0xfc0007e0,0x0,0xff0007e0,0x0,0x7fc007e0,0x0,0x3fffffe0,0x0,0x1fffffe0,0x0,0x7ffffe0,0x0, + 0x7fffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x1fff800,0x0,0x7fffc00,0x0,0xfffff00,0x0,0x1fe0ff80,0x0,0x3f803f80,0x0,0x3f000fc0,0x0, + 0x7e000fe0,0x0,0x7c0007e0,0x0,0xfc0007e0,0x0,0x7c0003f0,0x0,0x80003f0,0x0,0x3f0,0x0,0x1f0,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x3f0,0x0,0x100003f0,0x0,0xf80003f0,0x0,0xf80003f0,0x1, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0,0x7fffc00,0x0, + 0x1fff000,0x0,0x7f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffe0,0x0,0x7fffe0,0x0,0x1ffffe0,0x0,0x7ffffe0,0x0,0xff807e0,0x0,0x1fe007e0,0x0, + 0x3f8007e0,0x0,0x3f0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0007e0,0x0, + 0x7f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc007e0,0x0,0xff807e0,0x0,0x7ffffe0,0x0,0x1ffffe0,0x0,0xffffe0,0x0, + 0xfffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0, + 0xffffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffc0,0x0,0x7fffffc0,0x0,0x7fffffc0,0x0,0x7fffffc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x1fff800,0x0,0x7fffc00,0x0,0xfffff00,0x0,0x1fc07f80,0x0,0x3f803f80,0x0,0x7f000fc0,0x0, + 0x7e000fe0,0x0,0xfc0007e0,0x0,0xfc0007f0,0x0,0x180003f0,0x0,0x3f0,0x0,0x3f0,0x0,0x1f8,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0xfffc01f8,0x0,0xfffc01f8,0x0,0xfffc01f8,0x0, + 0xfffc01f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc000fc0,0x0,0xfc001fc0,0x0,0xfe003f80,0x0,0xffc0ff00,0x0,0x7ffffe00,0x0,0x1ffffc00,0x0, + 0x3fff000,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800380,0x0,0x1f8003e0,0x0, + 0x1f8007e0,0x0,0xfc007c0,0x0,0xfc007c0,0x0,0xfc00fc0,0x0,0x7e01f80,0x0,0x7f83f80,0x0,0x3ffff00,0x0,0x1fffe00,0x0, + 0xfff800,0x0,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0007e0,0x1,0xfc0007e0,0x0,0x7e0007e0,0x0,0x3f0007e0,0x0,0x1f8007e0,0x0,0x1fc007e0,0x0, + 0xfe007e0,0x0,0x7e007e0,0x0,0x3f007e0,0x0,0x1f807e0,0x0,0xfc07e0,0x0,0x7e07e0,0x0,0x7e07e0,0x0,0x3f07e0,0x0, + 0x1f87e0,0x0,0xfc7e0,0x0,0x7e7e0,0x0,0xfe7e0,0x0,0x1ff7e0,0x0,0x1fffe0,0x0,0x3fffe0,0x0,0x7f7fe0,0x0, + 0x7e3fe0,0x0,0xfc1fe0,0x0,0x1fc0fe0,0x0,0x3f807e0,0x0,0x3f007e0,0x0,0x7e007e0,0x0,0xfe007e0,0x0,0xfc007e0,0x0, + 0x1f8007e0,0x0,0x3f8007e0,0x0,0x7f0007e0,0x0,0x7e0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf00007e0,0x3, + 0xf00007e0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x7fffff80,0x0,0x7fffff80,0x0,0x7fffff80,0x0, + 0x7fffff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe0007f0,0x0,0xfe000ff0,0x0,0xff000ff0,0x0,0xff000ff0,0x0,0xff001ff0,0x0,0xff801ff0,0x0, + 0xff803ff0,0x0,0xfbc03df0,0x0,0xfbc03df0,0x0,0xfbc07df0,0x0,0xfbe079f0,0x0,0xf9e079f0,0x0,0xf9e0f9f0,0x0,0xf9f0f1f0,0x0, + 0xf8f0f1f0,0x0,0xf8f1f1f0,0x0,0xf879e1f0,0x0,0xf879e1f0,0x0,0xf87be1f0,0x0,0xf83fc1f0,0x0,0xf83fc1f0,0x0,0xf83fc1f0,0x0, + 0xf81f81f0,0x0,0xf81f81f0,0x0,0xf81f01f0,0x0,0xf80f01f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0, + 0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0, + 0xf80001f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7c000fe0,0x0,0x7c000fe0,0x0,0x7c001fe0,0x0,0x7c001fe0,0x0,0x7c003fe0,0x0,0x7c003fe0,0x0, + 0x7c003fe0,0x0,0x7c007fe0,0x0,0x7c007be0,0x0,0x7c00fbe0,0x0,0x7c00fbe0,0x0,0x7c01f3e0,0x0,0x7c01f3e0,0x0,0x7c03e3e0,0x0, + 0x7c03e3e0,0x0,0x7c07c3e0,0x0,0x7c07c3e0,0x0,0x7c0783e0,0x0,0x7c0f83e0,0x0,0x7c0f03e0,0x0,0x7c1f03e0,0x0,0x7c1f03e0,0x0, + 0x7c3e03e0,0x0,0x7c3e03e0,0x0,0x7c7c03e0,0x0,0x7c7c03e0,0x0,0x7cf803e0,0x0,0x7cf803e0,0x0,0x7df003e0,0x0,0x7df003e0,0x0, + 0x7df003e0,0x0,0x7fe003e0,0x0,0x7fe003e0,0x0,0x7fc003e0,0x0,0x7fc003e0,0x0,0x7f8003e0,0x0,0x7f8003e0,0x0,0x7f0003e0,0x0, + 0x7f0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0x1fc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffe0,0x0,0x7ffffe0,0x0,0xfffffe0,0x0,0x3fffffe0,0x0,0x7fc007e0,0x0,0x7f0007e0,0x0, + 0xfe0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfe0007e0,0x0,0x7f0007e0,0x0,0x3fe007e0,0x0,0x1fffffe0,0x0,0xfffffe0,0x0, + 0x3ffffe0,0x0,0xffffe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0xfc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f000fe0,0x0,0x1f800fc0,0x0,0x1fc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0x1fff800,0x0,0x3fe000,0x0,0x3f0000,0x0,0x7f0000,0x0,0x7e0000,0x0,0xfe0000,0x0,0x1fc0000,0x0,0x3fc0000,0x0, + 0xfff80000,0x0,0xfff00000,0x0,0xffe00000,0x0,0x7f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffe0,0x0,0x7ffffe0,0x0,0x1fffffe0,0x0,0x3fffffe0,0x0,0x7fc007e0,0x0,0xfe0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xfc0007e0,0x0,0xfe0007e0,0x0,0x7f0007e0,0x0,0x3fc007e0,0x0,0x1fffffe0,0x0,0xfffffe0,0x0,0x3ffffe0,0x0,0x7fffe0,0x0, + 0xfc07e0,0x0,0xf807e0,0x0,0x1f807e0,0x0,0x3f007e0,0x0,0x7e007e0,0x0,0x7e007e0,0x0,0xfc007e0,0x0,0x1f8007e0,0x0, + 0x1f8007e0,0x0,0x3f0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0xfc0007e0,0x0,0xf80007e0,0x1,0xf80007e0,0x3,0xf00007e0,0x3, + 0xe00007e0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fe000,0x0,0x3fffc00,0x0,0xfffff00,0x0,0x1fffff80,0x0,0x3fe03fc0,0x0,0x7f800fe0,0x0,0x7f0007e0,0x0, + 0x7e0007f0,0x0,0xfc0003f0,0x0,0x1c0003f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x7f0,0x0,0xfe0,0x0, + 0x1fe0,0x0,0xffc0,0x0,0xfff80,0x0,0x7fff00,0x0,0x3fffc00,0x0,0xffff000,0x0,0x3fff8000,0x0,0x7ff80000,0x0, + 0x7fc00000,0x0,0xff000000,0x0,0xfe000000,0x0,0xfc000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf80000e0,0x1, + 0xf80000fc,0x1,0xfc0001fc,0x1,0xfc0001f8,0x0,0xfe0003f8,0x0,0x7f0007f0,0x0,0x7fc03fe0,0x0,0x3fffffc0,0x0,0xfffff80,0x0, + 0x3fffe00,0x0,0x7ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffffc,0x3,0xfffffffc,0x3,0xfffffffc,0x3,0xfffffffc,0x3,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7f0003f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc00fc0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000007f,0x7,0xf000007e,0x3,0xf000007e,0x3,0xf00000fe,0x3,0xf80000fc,0x1,0xf80000fc,0x1, + 0xf80001fc,0x1,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfe0003f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7f0007f0,0x0,0x3f0007e0,0x0, + 0x3f0007e0,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x7e03f00,0x0, + 0x7e03f00,0x0,0x7e03f00,0x0,0x3f07e00,0x0,0x3f07e00,0x0,0x1f07c00,0x0,0x1f8fc00,0x0,0x1f8fc00,0x0,0xf8f800,0x0, + 0xf9f800,0x0,0xfdf800,0x0,0x7df000,0x0,0x7df000,0x0,0x7ff000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000003f,0x7,0xe000003f,0x7,0xe000003f,0x7,0xe000003f,0x7,0xf000007e,0x3,0xf000007e,0x3, + 0xf000007e,0x3,0xf000007e,0x3,0xf000007e,0x3,0xf000007e,0x3,0xf000007e,0x3,0xf000007c,0x1,0xf01fc07c,0x1,0xf03fe07c,0x1, + 0xf83fe0fc,0x1,0xf83fe0fc,0x1,0xf83fe0fc,0x1,0xf83de0fc,0x1,0xf87df0f8,0x1,0xf87df0f8,0x0,0xf87df0f8,0x0,0xf87df0f8,0x0, + 0xf8fdf0f8,0x0,0xf8f8f9f8,0x0,0xfcf8f9f8,0x0,0xfcf8f9f8,0x0,0x7cf8f9f0,0x0,0x7cf8f9f0,0x0,0x7df07df0,0x0,0x7df07df0,0x0, + 0x7df07df0,0x0,0x7df07df0,0x0,0x7df07df0,0x0,0x7fe03de0,0x0,0x3fe03fe0,0x0,0x3fe03fe0,0x0,0x3fe03fe0,0x0,0x3fe03fe0,0x0, + 0x3fc01fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0001fc,0x1,0xfe0003f8,0x0,0x7e0007f0,0x0,0x7f0007f0,0x0,0x3f800fe0,0x0,0x3f800fc0,0x0, + 0x1fc01fc0,0x0,0xfe03f80,0x0,0xfe03f80,0x0,0x7f07f00,0x0,0x3f07e00,0x0,0x3f8fe00,0x0,0x1fdfc00,0x0,0xfdf800,0x0, + 0xfff800,0x0,0x7ff000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x1fc000,0x0,0x3fc000,0x0,0x3fe000,0x0,0x7ff000,0x0, + 0x7ff000,0x0,0xfff800,0x0,0x1fdfc00,0x0,0x1f8fc00,0x0,0x3f8fe00,0x0,0x7f07f00,0x0,0x7f07f00,0x0,0xfe03f80,0x0, + 0x1fc01fc0,0x0,0x1fc01fc0,0x0,0x3f800fe0,0x0,0x3f0007e0,0x0,0x7f0007f0,0x0,0xfe0003f8,0x0,0xfe0003f8,0x0,0xfc0001fc,0x1, + 0xf80000fe,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000007e,0x7,0xf00000fc,0x3,0xf00000f8,0x1,0xf80001f8,0x1,0xfc0003f0,0x0,0xfc0003e0,0x0, + 0x7e0007e0,0x0,0x3f000fc0,0x0,0x3f000fc0,0x0,0x1f801f80,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0x7e07e00,0x0,0x3e07c00,0x0, + 0x3f0fc00,0x0,0x1f9f800,0x0,0x1f9f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fc000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x7f000000,0x0,0x7f800000,0x0, + 0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x3fc0000,0x0,0x1fc0000,0x0, + 0xfe0000,0x0,0xff0000,0x0,0x7f8000,0x0,0x3f8000,0x0,0x1fc000,0x0,0x1fe000,0x0,0xfe000,0x0,0x7f000,0x0, + 0x7f800,0x0,0x3fc00,0x0,0x1fc00,0x0,0xfe00,0x0,0xff00,0x0,0x7f00,0x0,0x3f80,0x0,0x3fc0,0x0, + 0x1fe0,0x0,0xfe0,0x0,0xff0,0x0,0x7f8,0x0,0x3f8,0x0,0xfffffffc,0x1,0xfffffffc,0x1,0xfffffffc,0x1, + 0xfffffffc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff000,0x0,0x7fff000,0x0, + 0x7fff000,0x0,0x7fff000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x7fff000,0x0,0x7fff000,0x0,0x7fff000,0x0,0x7fff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x0,0x1f0,0x0, + 0x1f0,0x0,0x3e0,0x0,0x3e0,0x0,0x7c0,0x0,0x7c0,0x0,0xf80,0x0,0x1f80,0x0,0x1f00,0x0, + 0x3e00,0x0,0x3e00,0x0,0x7c00,0x0,0x7c00,0x0,0xf800,0x0,0xf800,0x0,0x1f000,0x0,0x3f000,0x0, + 0x3e000,0x0,0x7e000,0x0,0x7c000,0x0,0xf8000,0x0,0xf8000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x3e0000,0x0, + 0x7e0000,0x0,0x7c0000,0x0,0xfc0000,0x0,0xf80000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x3e00000,0x0,0x3e00000,0x0, + 0x7c00000,0x0,0xfc00000,0x0,0xf800000,0x0,0x1f800000,0x0,0x1f000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x7c000000,0x0, + 0x7c000000,0x0,0xf8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fff00,0x0,0x7fff00,0x0, + 0x7fff00,0x0,0x7fff00,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7fff00,0x0,0x7fff00,0x0,0x7fff00,0x0,0x7fff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fe000,0x0,0x3de000,0x0,0x3de000,0x0,0x7cf000,0x0, + 0x78f000,0x0,0xf8f800,0x0,0xf07800,0x0,0xf07800,0x0,0x1f03c00,0x0,0x1e03c00,0x0,0x3e03e00,0x0,0x3c01e00,0x0, + 0x3c01f00,0x0,0x7800f00,0x0,0x7800f00,0x0,0xf800f80,0x0,0xf000780,0x0,0x1f0007c0,0x0,0x1e0003c0,0x0,0x1e0003c0,0x0, + 0x3e0003e0,0x0,0x3c0001e0,0x0,0x7c0001f0,0x0,0x780000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x7,0xffffffff,0x7,0xffffffff,0x7, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000,0x0, + 0x7e000,0x0,0xfc000,0x0,0x1f0000,0x0,0x3e0000,0x0,0x7c0000,0x0,0xf00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x7f03e0,0x0,0x1ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0xfe07be0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x7e0007e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x3e0007e0,0x0, + 0x3e0007e0,0x0,0x3e0007e0,0x0,0x3f000fe0,0x0,0x1f000fe0,0x0,0x1f801fe0,0x0,0xfe07fe0,0x0,0xffffbe0,0x0,0x7fff3e0,0x0, + 0x1ffe3e0,0x0,0x7f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe03f80,0x0,0xf800f80,0x0,0x1f0007c0,0x0, + 0x1f0007c0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0, + 0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f0007c0,0x0,0x1f800f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e07f000,0x0,0x3e3ffc00,0x0,0x3e7fff00,0x0,0x3effff80,0x0,0x3ff03f80,0x0,0x3fc00fc0,0x0,0x3f8007c0,0x0, + 0x3f8007e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f0003f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0, + 0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3f0001f0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8003e0,0x0,0x3fc007e0,0x0,0x3fe00fc0,0x0,0x3ef03fc0,0x0,0x3effff80,0x0,0x3e7fff00,0x0, + 0x3e1ffe00,0x0,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fe07f80,0x0,0x1f801f80,0x0,0x3f000fc0,0x0, + 0x3e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x780001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xc0003e0,0x0,0x7e0007c0,0x0,0x7f000fc0,0x0,0x3f801f80,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7fffc00,0x0, + 0x1fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffc0000,0x0,0x7fff8000,0x0, + 0x7fffc000,0x0,0x7fffe000,0x0,0xff000,0x0,0x3f000,0x0,0x1f800,0x0,0x1f800,0x0,0xf800,0x0,0xf800,0x0, + 0xf800,0x0,0xf800,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0xf800,0x0,0xf800,0x0, + 0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0, + 0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0, + 0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0, + 0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f000,0x0,0x3e1ffe00,0x0,0x3e7fff00,0x0,0x3e7fff80,0x0,0x3ef83fc0,0x0,0x3fe00fc0,0x0,0x3fc007e0,0x0, + 0x3f8003e0,0x0,0x3f8003e0,0x0,0x3f0003e0,0x0,0x3f0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0, + 0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3f0001f0,0x0,0x3f0003f0,0x0, + 0x3f0003e0,0x0,0x3f8003e0,0x0,0x3fc007e0,0x0,0x3fe00fc0,0x0,0x3ef81fc0,0x0,0x3e7fff80,0x0,0x3e3fff00,0x0,0x3e1ffe00,0x0, + 0x3e07f800,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3f000000,0x0,0x1f000780,0x0,0x1f8007c0,0x0,0xfc00fc0,0x0, + 0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0,0x1fffc00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x7f03e0,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0x1fe0fbe0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffff80,0x0,0xffff80,0x0,0xffff80,0x0,0xffff80,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x7c0000,0x0,0x7e0000,0x0,0x7f0000,0x0, + 0x3fc038,0x0,0x1ffff8,0x0,0xffff8,0x0,0x7fff8,0x0,0xffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf80,0x0,0xf80,0x0, + 0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0, + 0xf80,0x0,0xf80,0x0,0xfc000f80,0x0,0x7e000f80,0x0,0x3f000f80,0x0,0x1f800f80,0x0,0xfc00f80,0x0,0x7e00f80,0x0, + 0x3f00f80,0x0,0x1f80f80,0x0,0xfc0f80,0x0,0x7e0f80,0x0,0x3f0f80,0x0,0x1f8f80,0x0,0xfcf80,0x0,0x7ef80,0x0, + 0xfef80,0x0,0x1fff80,0x0,0x3fff80,0x0,0x3f7f80,0x0,0x7e1f80,0x0,0xfc0f80,0x0,0x1f80f80,0x0,0x1f80f80,0x0, + 0x3f00f80,0x0,0x7e00f80,0x0,0xfe00f80,0x0,0xfc00f80,0x0,0x1f800f80,0x0,0x3f000f80,0x0,0x3f000f80,0x0,0x7e000f80,0x0, + 0xfc000f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff00,0x0,0x1fff00,0x0, + 0x1fff00,0x0,0x1fff00,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf80f800,0x0,0x3fc1fc78,0x0,0x7fe3fe78,0x0,0x7ff3ff78,0x0,0x7e37e778,0x0,0xfc3fc378,0x0,0xf81f81f8,0x0, + 0xf81f81f8,0x0,0xf80f81f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0, + 0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0, + 0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0,0xf80f80f8,0x0, + 0xf80f80f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0x1fe0fbe0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f0000,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0xfe07be0,0x0,0x1f801fe0,0x0,0x1f001fe0,0x0, + 0x3e000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x7c0007e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7e0007e0,0x0, + 0x3e0007e0,0x0,0x3e0007e0,0x0,0x3f000fe0,0x0,0x1f000fe0,0x0,0x1f801fe0,0x0,0xfe07fe0,0x0,0xffffbe0,0x0,0x7fff3e0,0x0, + 0x1ffe3e0,0x0,0x7f03e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07f000,0x0,0x3e3ffc00,0x0,0x3e7fff00,0x0,0x3effff80,0x0,0x3ef03f80,0x0,0x3fc00fc0,0x0,0x3f8007c0,0x0, + 0x3f8007e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f0003f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0, + 0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3e0001f0,0x0,0x3f0001f0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8003e0,0x0,0x3fc007c0,0x0,0x3fe00fc0,0x0,0x3ef03fc0,0x0,0x3effff80,0x0,0x3e7fff00,0x0, + 0x3e1ffe00,0x0,0x3e07f000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3ff00000,0x0,0x3ffc0f80,0x0,0x3fff0f80,0x0,0x3fff8f80,0x0,0x3fff8f00,0x0,0xfcf00,0x0,0x3ef00,0x0, + 0x1ff00,0x0,0xff00,0x0,0x7f00,0x0,0x7f00,0x0,0x3f00,0x0,0x3f00,0x0,0x1f00,0x0,0x1f00,0x0, + 0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0, + 0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0, + 0x1f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0x1fffc00,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe03f80,0x0,0xf800f80,0x0,0x1f0007c0,0x0, + 0xf0007c0,0x0,0x7c0,0x0,0x7c0,0x0,0xfc0,0x0,0xfc0,0x0,0x3f80,0x0,0x3ff80,0x0,0x1fff00,0x0, + 0xfffe00,0x0,0x3fff800,0x0,0x7ffc000,0x0,0xffe0000,0x0,0x1fe00000,0x0,0x3f800000,0x0,0x3f000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000380,0x0,0x3e0003e0,0x0,0x3f0007e0,0x0,0x1f800fc0,0x0,0x1fc03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7000,0x0,0x7800,0x0,0x7800,0x0,0x7800,0x0,0x7800,0x0,0x7800,0x0, + 0x7c00,0x0,0x7c00,0x0,0xfffffe0,0x0,0xfffffe0,0x0,0xfffffe0,0x0,0xfffffe0,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0xfc00,0x0,0x1c01f800,0x0,0x1ffff800,0x0,0x1ffff000,0x0, + 0x1fffe000,0x0,0x1ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0,0x3e7fff80,0x0, + 0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf80000fc,0x1,0xf80000f8,0x0,0xf80000f8,0x0,0xfc0001f8,0x0,0x7c0001f0,0x0,0x7e0001f0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f0007c0,0x0,0x1f8007c0,0x0,0xf800f80,0x0,0xf800f80,0x0,0x7c01f00,0x0, + 0x7c01f00,0x0,0x3e01f00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x1f07c00,0x0,0x1f07c00,0x0,0xf87c00,0x0,0xf8f800,0x0, + 0x78f800,0x0,0x7cf000,0x0,0x7df000,0x0,0x3de000,0x0,0x3fe000,0x0,0x1fe000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000003e,0x3,0xe000003e,0x3,0xe000003e,0x3,0xf000007c,0x1,0xf000007c,0x1,0xf000007c,0x1, + 0xf000007c,0x1,0xf000007c,0x1,0xf01fc07c,0x1,0xf81fc078,0x0,0xf81fc0f8,0x0,0xf83de0f8,0x0,0xf83de0f8,0x0,0xf83de0f8,0x0, + 0xf83de0f8,0x0,0x787cf0f0,0x0,0x7c78f0f0,0x0,0x7c78f1f0,0x0,0x7c78f9f0,0x0,0x7cf079f0,0x0,0x7cf079f0,0x0,0x3cf079f0,0x0, + 0x3cf07de0,0x0,0x3de03de0,0x0,0x3fe03de0,0x0,0x3fe03de0,0x0,0x3fe03fe0,0x0,0x1fc01fe0,0x0,0x1fc01fc0,0x0,0x1fc01fc0,0x0, + 0x1fc00fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0003f0,0x0,0x3f0007e0,0x0,0x1f800fc0,0x0,0xf800fc0,0x0,0xfc01f80,0x0,0x7e03f00,0x0, + 0x3e03e00,0x0,0x3f07e00,0x0,0x1f8fc00,0x0,0xf8f800,0x0,0x7df800,0x0,0x7ff000,0x0,0x3fe000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0xfdf800,0x0,0x1f8fc00,0x0,0x1f07c00,0x0, + 0x3f07e00,0x0,0x7e03f00,0x0,0x7c01f00,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0, + 0xfc0001f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf000007c,0x1,0xf80000fc,0x1,0xf80000f8,0x0,0xfc0001f8,0x0,0x7c0001f0,0x0,0x7c0003f0,0x0, + 0x7e0003e0,0x0,0x3e0003e0,0x0,0x3e0007c0,0x0,0x1f0007c0,0x0,0x1f000fc0,0x0,0xf800f80,0x0,0xf800f80,0x0,0xf801f00,0x0, + 0x7c01f00,0x0,0x7c03e00,0x0,0x3e03e00,0x0,0x3e07e00,0x0,0x3e07c00,0x0,0x1f07c00,0x0,0x1f0f800,0x0,0xf8f800,0x0, + 0xf9f000,0x0,0x79f000,0x0,0x7de000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1f8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f800,0x0, + 0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fc00000,0x0,0xfc00000,0x0, + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x1f8000,0x0, + 0xfc000,0x0,0xfe000,0x0,0x7e000,0x0,0x3f000,0x0,0x1f800,0x0,0xfc00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x3f00,0x0,0x1f80,0x0,0xfc0,0x0,0x7e0,0x0,0x7f0,0x0,0x3ffffff0,0x0,0x3ffffff0,0x0,0x3ffffff0,0x0, + 0x3ffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff80000,0x0,0x3ffe0000,0x0, + 0x3fff0000,0x0,0x3fff8000,0x0,0x1f8000,0x0,0xfc000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7e000,0x0,0x3f000,0x0,0x3f800,0x0,0x1fe00,0x0, + 0xffc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0xffc0,0x0,0x1fe00,0x0,0x3f800,0x0,0x3e000,0x0,0x7e000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0xfc000,0x0, + 0x1f8000,0x0,0x3fff8000,0x0,0x3fff0000,0x0,0x3ffe0000,0x0,0x3ff80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0,0x0,0x3ffe0,0x0, + 0x7ffe0,0x0,0xfffe0,0x0,0xfc000,0x0,0xf8000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xfe0000,0x0,0x3fc0000,0x0, + 0x1ff80000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x1ff80000,0x0,0x3fc0000,0x0,0xfe0000,0x0,0x3e0000,0x0,0x3f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f8000,0x0, + 0xfc000,0x0,0xfffe0,0x0,0x7ffe0,0x0,0x3ffe0,0x0,0xffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7f80,0x0,0x8003fff0,0x0,0xf03ffff8,0x0,0xfffffff8,0x0,0xffffc078,0x0,0x7ffe0008,0x0, + 0x1fe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0xcf67300c,0x0,0x6e67300c,0x0,0x339b33c4,0x6,0x239b27ec,0x7,0xc1df37ec,0x7,0xf06433cc,0x7,0xf06027e4,0x7,0xb060300c,0x3, + 0xb060300c,0x1,0xcc9b3ffc,0x6,0x7cfb2dd4,0x6,0xfc730000,0x6,0xc0e12004,0x1,0xc0e3300c,0x1,0xc303c830,0x6,0x6203d878,0x6, + 0xff7f3d84,0x0,0x2e3f2bdc,0x0,0x31f07fc,0x6,0x727821fc,0x0,0xf23831fc,0x0,0x400c0e00,0x6,0xc0061e00,0x4,0x1fbfe1c,0x0, + 0x1fbff3c,0x0,0x309fdfec,0x0,0x1803fcc,0x7,0x81c03fec,0x7,0xfe301f0,0x7,0xfe180f0,0x7,0x31e0fc60,0x0,0x30b47c60,0x0, + 0x331c0678,0x0,0x7c6fae30,0x0,0x7c67fe10,0x0,0x3c670000,0x6,0x386f0000,0x6,0x10f03ffc,0x1,0xb0f83ffc,0x3,0xcc0c300c,0x4, + 0x3f9e33cc,0x0,0x3f9427ec,0x2,0xffe033c4,0x7,0xffe037ec,0x7,0xb3dc27cc,0x1,0x3184308c,0x0,0x3180300c,0x0,0x39f37fc,0x1, + 0x39f3ffc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2a00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3ffff0,0x0,0x3ffff0,0x0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x7, + 0xaaaaaaaa,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3fffc,0x0, + 0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x7fe000,0x0, + 0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fcf3f80,0x0,0x1f0f1fc0,0x0,0x3e0f07c0,0x0,0x3e0f07e0,0x0,0x7e0f03e0,0x0, + 0xf03e0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0, + 0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0x7c0f03e0,0x0,0x7c0f03e0,0x0,0x7e0f07e0,0x0,0x3e0f07c0,0x0,0x3f0f1fc0,0x0, + 0x1fcf3f80,0x0,0xfffff00,0x0,0x7fffe00,0x0,0x1fffc00,0x0,0x7fe000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3fff000,0x0,0x7fff800,0x0,0xffffc00,0x0,0x1fc0fe00,0x0,0x3f803f00,0x0,0x3f001f00,0x0, + 0x6001f80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0, + 0xf80,0x0,0xf80,0x0,0xf80,0x0,0xfffffc,0x0,0xfffffc,0x0,0xfffffc,0x0,0xfffffc,0x0,0xf80,0x0, + 0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0, + 0x7c0,0x0,0x700007c0,0x0,0xf00003e0,0x1,0xf80001f0,0x1,0xfc0000f8,0x0,0xfffffffc,0x0,0x7ffffffc,0x0,0x3ffffffc,0x0, + 0x1ffffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4000080,0x0,0xc0fc0c0,0x0,0x1e7ff9e0,0x0,0x3ffffff0,0x0,0x1fffffe0,0x0,0xff03fc0,0x0,0x7e01f80,0x0,0x78007c0,0x0, + 0xf8007c0,0x0,0xf0003c0,0x0,0x1f0003e0,0x0,0x1e0001e0,0x0,0x1e0001e0,0x0,0x1e0001e0,0x0,0x1e0001e0,0x0,0x1e0001e0,0x0, + 0x1f0001e0,0x0,0xf0003c0,0x0,0xf8007c0,0x0,0xf8007c0,0x0,0x7c00f80,0x0,0xff03fc0,0x0,0x1fffffe0,0x0,0x3ffffff0,0x0, + 0x1e7ff9e0,0x0,0xc0fc0c0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf000007e,0x3,0xf80000fc,0x1,0xf80000f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x3e0003e0,0x0, + 0x3f0007e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0x7c01f00,0x0,0x7e03f00,0x0,0x3e03e00,0x0,0x1f07c00,0x0, + 0x1f8fc00,0x0,0xf8f800,0x0,0x7df000,0x0,0x7ff000,0x0,0x3fe000,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0, + 0x7ffffff0,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0, + 0x7ffffff0,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc000,0x0,0x3fff800,0x0, + 0x7fffc00,0x0,0xffffe00,0x0,0x1fc07f00,0x0,0x1f001f80,0x0,0x3f001f80,0x0,0x1e000f80,0x0,0xf80,0x0,0xf80,0x0, + 0x1f80,0x0,0x3f00,0x0,0x7f00,0x0,0x3fe00,0x0,0x3ffc00,0x0,0x1fff000,0x0,0x7fff800,0x0,0xffffe00,0x0, + 0x1fe03f00,0x0,0x3f800f80,0x0,0x7f000f80,0x0,0x7e0007c0,0x0,0x7c0007c0,0x0,0x7c0007c0,0x0,0x7c0007c0,0x0,0x7c000fc0,0x0, + 0x3e001f80,0x0,0x3f003f80,0x0,0x1f81ff00,0x0,0xffffe00,0x0,0x7fffc00,0x0,0x3ffe000,0x0,0xfff0000,0x0,0x1ff00000,0x0, + 0x3fc00000,0x0,0x3f000000,0x0,0x7e000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000380,0x0,0x7c0003e0,0x0,0x7e0007e0,0x0, + 0x3f000fc0,0x0,0x3fc03fc0,0x0,0x1fffff80,0x0,0xfffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0,0xfff800,0x0, + 0x3fffe00,0x0,0xfe03f80,0x0,0x1f0007c0,0x0,0x3e0003e0,0x0,0x3c0001e0,0x0,0x780000f0,0x0,0x70000070,0x0,0xe01fc038,0x0, + 0xe07ff038,0x0,0xe0fff83c,0x1,0xc1f0fc1c,0x1,0xc1e03c1c,0x1,0xc3c01e1c,0x1,0x81801e0e,0x3,0x80001f0e,0x3,0x80000f0e,0x3, + 0x80000f0e,0x3,0x80000f0e,0x3,0x80000f0e,0x3,0x80000f0e,0x3,0x80000f0e,0x3,0x80000f0e,0x3,0x80000f0e,0x3,0x80001f0e,0x3, + 0x81801e0e,0x3,0xc3803e1c,0x1,0xc3c03c1c,0x1,0xc1f0fc1c,0x1,0xe0fff81c,0x1,0xe07ff038,0x0,0xe01fc038,0x0,0x70000070,0x0, + 0x780000f0,0x0,0x3c0001e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0xfe03f80,0x0,0x3fffe00,0x0,0x1fffc00,0x0,0x3fe000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fe000,0x0,0x7ffc00,0x0,0xfffe00,0x0,0x1f83f00,0x0,0x1e00f00,0x0,0x3c00780,0x0,0x3c00780,0x0,0x3c00000,0x0, + 0x3c00000,0x0,0x3fff000,0x0,0x3fffe00,0x0,0x3ffff00,0x0,0x3c01f80,0x0,0x3c007c0,0x0,0x3c003c0,0x0,0x3e003c0,0x0, + 0x3e003c0,0x0,0x3f807c0,0x0,0x7de0f80,0x0,0x3f8fff80,0x0,0x3f87ff00,0x0,0x3e01fc00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf807c000,0x0,0x7c03e000,0x0, + 0x3e01f000,0x0,0x3f01f800,0x0,0x1f80fc00,0x0,0xfc07e00,0x0,0x7e03f00,0x0,0x3f01f80,0x0,0x1f80fc0,0x0,0xfc07e0,0x0, + 0x7e03f0,0x0,0x3e01f0,0x0,0x7e03f0,0x0,0xfc07e0,0x0,0x1f80fc0,0x0,0x3f01f80,0x0,0x7e03f00,0x0,0xfc07e00,0x0, + 0x1f80fc00,0x0,0x3f01f800,0x0,0x3e01f000,0x0,0x7c03e000,0x0,0xf807c000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xf0000000,0x0, + 0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0, + 0xf0000000,0x0,0xf0000000,0x0,0xf0000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0,0xfff800,0x0, + 0x3fffe00,0x0,0xfe03f80,0x0,0x1f0007c0,0x0,0x3e0003e0,0x0,0x3c0001e0,0x0,0x780000f0,0x0,0x70000070,0x0,0xe03ffe38,0x0, + 0xe0fffe38,0x0,0xe1fffe3c,0x1,0xc3e01e1c,0x1,0xc7c01e1c,0x1,0xc7801e1c,0x1,0x87801e0e,0x3,0x87801e0e,0x3,0x87801e0e,0x3, + 0x87c01e0e,0x3,0x83e01e0e,0x3,0x81fffe0e,0x3,0x80fffe0e,0x3,0x801ffe0e,0x3,0x803c1e0e,0x3,0x803c1e0e,0x3,0x80781e0e,0x3, + 0x80f01e0e,0x3,0xc0f01e1c,0x1,0xc1e01e1c,0x1,0xc3c01e1c,0x1,0xe7c01e1c,0x1,0xe7801e38,0x0,0xef001e38,0x0,0x70000070,0x0, + 0x780000f0,0x0,0x3c0001e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0xfe03f80,0x0,0x3fffe00,0x0,0x1fffc00,0x0,0x3fe000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x7,0xffffffff,0x7,0xffffffff,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf8000,0x0,0x3fe000,0x0,0xfff800,0x0,0x1f07c00,0x0,0x1e03c00,0x0,0x3c01e00,0x0,0x3800e00,0x0, + 0x3800e00,0x0,0x3800e00,0x0,0x3800e00,0x0,0x3c01e00,0x0,0x1e03c00,0x0,0x1f07c00,0x0,0xfff800,0x0,0x3fe000,0x0, + 0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78000,0x0,0x78000,0x0, + 0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0, + 0x78000,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0, + 0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0, + 0x7ffffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc000,0x0,0x7ff000,0x0,0xfff800,0x0,0x1f07c00,0x0,0x3e03c00,0x0,0x3c01e00,0x0,0x3c01e00,0x0,0x3c00000,0x0, + 0x3c00000,0x0,0x3e00000,0x0,0x1e00000,0x0,0xf00000,0x0,0xf80000,0x0,0x7e0000,0x0,0x1f0000,0x0,0xf8000,0x0, + 0x7c000,0x0,0x1f000,0x0,0xf800,0x0,0x7c00,0x0,0x3c00,0x0,0x1e00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f8000,0x0,0x7fe000,0x0,0xfff000,0x0,0xf8f800,0x0,0x1f07c00,0x0,0x1e03c00,0x0,0x1e03c00,0x0,0x1e00000,0x0, + 0x1e00000,0x0,0xf00000,0x0,0xf80000,0x0,0x3f8000,0x0,0x1f8000,0x0,0xff8000,0x0,0x1f00000,0x0,0x1e00000,0x0, + 0x3c00000,0x0,0x3c00000,0x0,0x3c01e00,0x0,0x3c01e00,0x0,0x3e03c00,0x0,0x1f07c00,0x0,0x1fff800,0x0,0x7ff000,0x0, + 0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0x7e0000,0x0,0x3f0000,0x0,0xf8000,0x0,0x7c000,0x0,0x3e000,0x0,0xf000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3f0003e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x3fc00fe0,0x0,0x3fe00fe0,0x0,0x3ef03fe0,0x0,0x3effffe0,0x0,0x3e7ffbe0,0x0, + 0x3e1ff3e0,0x0,0x7e3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7ffff800,0x0,0x7fffff00,0x0,0x7fffff80,0x0,0x7fffffc0,0x0,0x783ffe0,0x0,0x783ffe0,0x0, + 0x783ffe0,0x0,0x783fff0,0x0,0x783fff0,0x0,0x783fff0,0x0,0x783fff0,0x0,0x783fff0,0x0,0x783fff0,0x0,0x783fff0,0x0, + 0x783ffe0,0x0,0x783ffe0,0x0,0x783ffe0,0x0,0x783ffc0,0x0,0x783ff80,0x0,0x783ff00,0x0,0x783fc00,0x0,0x783c000,0x0, + 0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0, + 0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0, + 0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0,0x783c000,0x0, + 0x783c000,0x0,0x783c000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1c0,0x0,0xe0,0x0,0xe0,0x0,0x7e0,0x0,0x1ff0,0x0,0x3c00,0x0,0x3800,0x0, + 0x3800,0x0,0x3c00,0x0,0x1ff8,0x0,0xff8,0x0,0x3f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf0000,0x0,0xf8000,0x0,0xfc000,0x0,0xff000,0x0,0xf7f00,0x0,0xf3f00,0x0,0xf0f00,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x7ffff00,0x0,0x7ffff00,0x0, + 0x7ffff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc000,0x0,0xfff000,0x0,0x3fffc00,0x0,0x7e07e00,0x0,0x7801e00,0x0,0xf000f00,0x0,0xf000f00,0x0,0x1e000780,0x0, + 0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0xf000f00,0x0, + 0xf000f00,0x0,0x7801e00,0x0,0x7e07e00,0x0,0x3fffc00,0x0,0xfff000,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00f8,0x0,0x7c01f0,0x0, + 0xf803e0,0x0,0x1f807e0,0x0,0x3f00fc0,0x0,0x7e01f80,0x0,0xfc03f00,0x0,0x1f807e00,0x0,0x3f00fc00,0x0,0x7e01f800,0x0, + 0xfc03f000,0x0,0xf803e000,0x0,0xfc03f000,0x0,0x7e01f800,0x0,0x3f00fc00,0x0,0x1f807e00,0x0,0xfc03f00,0x0,0x7e01f80,0x0, + 0x3f00fc0,0x0,0x1f807e0,0x0,0xf803e0,0x0,0x7c01f0,0x0,0x3e00f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1c0001e0,0x0,0x1e0001f0,0x0,0xe0001fc,0x0,0x70001ff,0x0,0x70001ff,0x0,0x38001e7,0x0, + 0x38001e0,0x0,0x1c001e0,0x0,0x1c001e0,0x0,0xe001e0,0x0,0xf001e0,0x0,0x7001e0,0x0,0x7801e0,0x0,0x3801e0,0x0, + 0x3c01e0,0x0,0x1c01e0,0x0,0x1e01e0,0x0,0xf00e01e0,0x1,0xf80f01e0,0x1,0xf8070ffe,0x1,0xfc078ffe,0x1,0xee038ffe,0x1, + 0xef03c000,0x1,0xe701c000,0x1,0xe381e000,0x1,0xe1c0e000,0x1,0xe1e0f000,0x1,0xe0e07000,0x1,0xe0707800,0x1,0xe0383800,0x1, + 0xe01c3c00,0x1,0xfffc1c00,0x7,0xfffc1e00,0x7,0xfffc0e00,0x7,0xe0000700,0x1,0xe0000700,0x1,0xe0000380,0x1,0xe0000380,0x1, + 0xe00001c0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1c0001e0,0x0,0x1e0001f0,0x0,0xe0001fc,0x0,0x70001ff,0x0,0x70001ff,0x0,0x38001e7,0x0, + 0x38001e0,0x0,0x1c001e0,0x0,0x1c001e0,0x0,0xe001e0,0x0,0xf001e0,0x0,0x7001e0,0x0,0x7801e0,0x0,0x3801e0,0x0, + 0x3c01e0,0x0,0x1c01e0,0x0,0x1e01e0,0x0,0x3f8e01e0,0x0,0xffcf01e0,0x0,0xfff70ffe,0x1,0xe1f78ffe,0x3,0xc07b8ffe,0x3, + 0xc07bc000,0x3,0xc001c000,0x3,0xc001e000,0x3,0xe000e000,0x3,0xe000f000,0x1,0xf0007000,0x0,0x78007800,0x0,0x3e003800,0x0, + 0x1f003c00,0x0,0xf801c00,0x0,0x3c01e00,0x0,0x1e00e00,0x0,0xf00700,0x0,0x780700,0x0,0xfff80380,0x3,0xfff80380,0x3, + 0xfff801c0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x380007e0,0x0,0x3c001ff8,0x0,0x1c003ffc,0x0,0xe007c7c,0x0,0xe00781e,0x0,0x700781e,0x0, + 0x7007800,0x0,0x3807800,0x0,0x3803c00,0x0,0x1c01fc0,0x0,0x1e007c0,0x0,0xe01fc0,0x0,0xf07c00,0x0,0x707800,0x0, + 0x78f000,0x0,0x38f000,0x0,0x3cf01e,0x0,0xf01cf03e,0x1,0xf81e787c,0x1,0xf80e7ffc,0x1,0xfc0f3ff8,0x1,0xee070fe0,0x1, + 0xef078000,0x1,0xe7038000,0x1,0xe383c000,0x1,0xe1c1c000,0x1,0xe1e1e000,0x1,0xe0e0e000,0x1,0xe070f000,0x1,0xe0387000,0x1, + 0xe01c7800,0x1,0xfffc3800,0x7,0xfffc3c00,0x7,0xfffc1c00,0x7,0xe0000e00,0x1,0xe0000e00,0x1,0xe0000700,0x1,0xe0000700,0x1, + 0xe0000380,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0000,0x0,0x3f0000,0x0,0x1f0000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0xfc000,0x0,0x7e000,0x0,0x7f800,0x0,0x3fc00,0x0,0xfe00,0x0,0x7f00,0x0,0x3f80,0x0, + 0x1fc0,0x0,0xfe0,0x0,0x7e0,0x0,0x7f0,0x0,0x3f0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xfc0003f0,0x1, + 0xfc0003f0,0x0,0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f800fe0,0x0,0x3fe07fc0,0x0,0x1fffff80,0x0,0xfffff00,0x0,0x3fffc00,0x0, + 0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x7e00,0x0,0xfc00,0x0,0x1f800,0x0,0x3e000,0x0,0x7c000,0x0,0xf8000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0xf8000,0x0,0x3c000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x1f8000,0x0,0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0xe00fc00,0x0,0xe03fe00,0x0,0xf0fff00,0x0,0x7ffff00,0x0,0x7ff8780,0x0,0x3fe0380,0x0,0x1f80380,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x1f8000,0x0,0x7fe000,0x0,0xfff000,0x0,0xf0f000,0x0,0x1c03800,0x0,0x1c03800,0x0,0x1c03800,0x0, + 0x1c03800,0x0,0xf0f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x7ff000,0x0,0x7df000,0x0,0x7df000,0x0, + 0xfdf800,0x0,0xf9f800,0x0,0x1f8f800,0x0,0x1f8fc00,0x0,0x1f0fc00,0x0,0x3f07c00,0x0,0x3f07e00,0x0,0x3f07e00,0x0, + 0x7e03e00,0x0,0x7e03f00,0x0,0x7e03f00,0x0,0xfc01f00,0x0,0xfc01f80,0x0,0xfc01f80,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x3f0007e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7e0003f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xf80000fc,0x1,0xf80000fc,0x1,0xf80000fc,0x1,0xf00000fe,0x3,0xf000007e,0x3,0xf000007e,0x3, + 0xe000007f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffff000,0x1,0xfffff000,0x1,0xfffff800,0x1,0xfffff800,0x1,0x7cf800,0x0,0x7cf800,0x0, + 0x7cfc00,0x0,0x7c7c00,0x0,0x7c7c00,0x0,0x7c7e00,0x0,0x7c7e00,0x0,0x7c3e00,0x0,0x7c3f00,0x0,0x7c3f00,0x0, + 0x7c1f00,0x0,0x7c1f80,0x0,0x7c1f80,0x0,0xfffc1f80,0x1,0xfffc0fc0,0x1,0xfffc0fc0,0x1,0xfffc0fc0,0x1,0x7c0fe0,0x0, + 0x7c07e0,0x0,0x7fffe0,0x0,0x7fffe0,0x0,0x7ffff0,0x0,0x7ffff0,0x0,0x7c03f0,0x0,0x7c01f8,0x0,0x7c01f8,0x0, + 0x7c01f8,0x0,0x7c01fc,0x0,0x7c00fc,0x0,0x7c00fc,0x0,0x7c00fe,0x0,0xfffc007e,0x3,0xfffc007e,0x3,0xfffc007f,0x3, + 0xfffc003f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x1fff800,0x0,0x7fffc00,0x0,0xfffff00,0x0,0x1fe0ff80,0x0,0x3f803f80,0x0,0x3f000fc0,0x0, + 0x7e000fe0,0x0,0x7c0007e0,0x0,0xfc0007e0,0x0,0x7c0003f0,0x0,0x80003f0,0x0,0x3f0,0x0,0x1f0,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x3f0,0x0,0x100003f0,0x0,0xf80003f0,0x0,0xf80003f0,0x1, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0,0x7fffc00,0x0, + 0x1fff000,0x0,0x7f8000,0x0,0x70000,0x0,0x70000,0x0,0x3f0000,0x0,0xff8000,0x0,0x1e00000,0x0,0x1c00000,0x0, + 0x1c00000,0x0,0x1e00000,0x0,0xffc000,0x0,0x7fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 200 + 0xfc00,0x0,0x1f800,0x0,0x3f000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0, + 0xffffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0, + 0xffffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x1f8000,0x0,0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0, + 0xffffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0, + 0xffffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0xfc00,0x0,0x1f800,0x0,0x3f000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x3f0000,0x0,0x7f8000,0x0,0xffe000,0x0,0x1fbf000,0x0,0x3e0f800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffe0,0x0,0x7fffe0,0x0,0x1ffffe0,0x0,0x7ffffe0,0x0,0xff807e0,0x0,0x1fe007e0,0x0, + 0x3f8007e0,0x0,0x3f0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf807fffe,0x1,0xf807fffe,0x1,0xf807fffe,0x1,0xf807fffe,0x1, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0007e0,0x0, + 0x7f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc007e0,0x0,0xff807e0,0x0,0x7ffffe0,0x0,0x1ffffe0,0x0,0xffffe0,0x0, + 0xfffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0x1c01f800,0x0,0x1c07fc00,0x0,0x1e1ffe00,0x0,0xffffe00,0x0,0xfff0f00,0x0,0x7fc0700,0x0,0x3f00700,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7c000fe0,0x0,0x7c000fe0,0x0,0x7c001fe0,0x0,0x7c001fe0,0x0,0x7c003fe0,0x0,0x7c003fe0,0x0, + 0x7c003fe0,0x0,0x7c007fe0,0x0,0x7c007be0,0x0,0x7c00fbe0,0x0,0x7c00fbe0,0x0,0x7c01f3e0,0x0,0x7c01f3e0,0x0,0x7c03e3e0,0x0, + 0x7c03e3e0,0x0,0x7c07c3e0,0x0,0x7c07c3e0,0x0,0x7c0783e0,0x0,0x7c0f83e0,0x0,0x7c0f03e0,0x0,0x7c1f03e0,0x0,0x7c1f03e0,0x0, + 0x7c3e03e0,0x0,0x7c3e03e0,0x0,0x7c7c03e0,0x0,0x7c7c03e0,0x0,0x7cf803e0,0x0,0x7cf803e0,0x0,0x7df003e0,0x0,0x7df003e0,0x0, + 0x7df003e0,0x0,0x7fe003e0,0x0,0x7fe003e0,0x0,0x7fc003e0,0x0,0x7fc003e0,0x0,0x7f8003e0,0x0,0x7f8003e0,0x0,0x7f0003e0,0x0, + 0x7f0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0x7e00,0x0,0xfc00,0x0,0x1f800,0x0,0x3e000,0x0,0x7c000,0x0,0xf8000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0x1fc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0x1fc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x1f8000,0x0,0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0x1fc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0xe00fc00,0x0,0xe03fe00,0x0,0xf0fff00,0x0,0x7ffff00,0x0,0x7ff8780,0x0,0x3fe0380,0x0,0x1f80380,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0x1fc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xff07f80,0x0,0x1fc01fc0,0x0,0x1f800fc0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003e0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0001f0,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0, + 0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x8000000,0x0,0x1c0000c0,0x0,0x3e0001e0,0x0,0x7f0003f0,0x0,0x3f8007e0,0x0,0x1fc00fc0,0x0,0xfe01f80,0x0,0x7f03f00,0x0, + 0x3f87e00,0x0,0x1fcfc00,0x0,0x7ff800,0x0,0x3ff000,0x0,0x1fe000,0x0,0xfc000,0x0,0x1fe000,0x0,0x3ff000,0x0, + 0x7ff800,0x0,0xf9fc00,0x0,0x1f0fe00,0x0,0x3e07f00,0x0,0x7c03f80,0x0,0xf801fc0,0x0,0x1f0007e0,0x0,0x3e0003f0,0x0, + 0x3c0001e0,0x0,0x180000c0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x40000000,0x0,0xc03fc000,0x0,0xe0fff800,0x1,0xf3fffe00,0x0,0xf7ffff00,0x0,0x7ff07f80,0x0,0x3fc01fc0,0x0,0x3f800fc0,0x0, + 0x3f0007e0,0x0,0x3f8007e0,0x0,0x3f8003e0,0x0,0x7fc003f0,0x0,0x7fe003f0,0x0,0x7fe003f0,0x0,0x7cf001f8,0x0,0xfc7801f8,0x0, + 0xfc7801f8,0x0,0xfc3c01f8,0x0,0xfc1e01f8,0x0,0xfc1e01f8,0x0,0xfc0f01f8,0x0,0xfc0781f8,0x0,0xfc0781f8,0x0,0xfc03c1f8,0x0, + 0xfc01e1f8,0x0,0xfc01e1f8,0x0,0xfc00f1f8,0x0,0xfc0079f8,0x0,0x7e007bf0,0x0,0x7e003ff0,0x0,0x7e001ff0,0x0,0x7e001ff0,0x0, + 0x3f000fe0,0x0,0x3f0007e0,0x0,0x1f000fe0,0x0,0x1f800fe0,0x0,0xfc01fe0,0x0,0xff07ff0,0x0,0x7ffff78,0x0,0x3fffe7c,0x0, + 0xfff83c,0x0,0x1fe018,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0x7e00,0x0,0xfc00,0x0,0x1f800,0x0,0x3e000,0x0,0x7c000,0x0,0xf8000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7f0003f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc00fc0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0xf8000,0x0,0x3c000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7f0003f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc00fc0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x1f8000,0x0,0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7f0003f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc00fc0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0,0x7e0003f0,0x0, + 0x7f0003f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x1fc00fc0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0,0x7ffff00,0x0, + 0x1fffc00,0x0,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000007e,0x7,0xf00000fc,0x3,0xf00000f8,0x1,0xf80001f8,0x1,0xfc0003f0,0x0,0xfc0003e0,0x0, + 0x7e0007e0,0x0,0x3f000fc0,0x0,0x3f000fc0,0x0,0x1f801f80,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0x7e07e00,0x0,0x3e07c00,0x0, + 0x3f0fc00,0x0,0x1f9f800,0x0,0x1f9f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fc000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0xffffe0,0x0,0x7ffffe0,0x0,0xfffffe0,0x0,0x3fffffe0,0x0,0x3fc007e0,0x0,0x7f0007e0,0x0,0xfe0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfe0007e0,0x0,0x7f0007e0,0x0,0x3fe007e0,0x0,0x1fffffe0,0x0,0xfffffe0,0x0, + 0x3ffffe0,0x0,0xffffe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0,0xfffc00,0x0, + 0x3ffff00,0x0,0x7ffff80,0x0,0xff03fc0,0x0,0xfc00fc0,0x0,0x1f8007e0,0x0,0x1f0003e0,0x0,0x1f0003e0,0x0,0x1f0001f0,0x0, + 0x1f0001f0,0x0,0x1f8001f0,0x0,0xf8001f0,0x0,0xfc001f0,0x0,0x7e001f0,0x0,0x3f001f0,0x0,0x1f801f0,0x0,0xf801f0,0x0, + 0x7c01f0,0x0,0x7c01f0,0x0,0x7c01f0,0x0,0x7c01f0,0x0,0xfc01f0,0x0,0x1f801f0,0x0,0x3f801f0,0x0,0xff001f0,0x0, + 0x1fe001f0,0x0,0x3fc001f0,0x0,0x7f0001f0,0x0,0xfe0001f0,0x0,0xfc0001f0,0x0,0xf80001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1, + 0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf80001f0,0x1,0xf80081f0,0x0,0xfe0781f0,0x0,0x7fff81f0,0x0,0x3fff81f0,0x0, + 0x1fff81f0,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0x0, + 0xfc00,0x0,0x1f800,0x0,0x3e000,0x0,0x7c000,0x0,0xf8000,0x0,0x1e0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0xf8000,0x0,0x3c000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0, + 0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00fc00,0x0, + 0xe03fe00,0x0,0xf0fff00,0x0,0x7ffff00,0x0,0x7ff8780,0x0,0x3fe0380,0x0,0x1f80380,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f03e00,0x0,0x1f03e00,0x0,0x1f03e00,0x0,0x1f03e00,0x0,0x1f03e00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000,0x0,0x3ff000,0x0,0x7ff800,0x0,0x787800,0x0,0xe01c00,0x0, + 0xe01c00,0x0,0xe01c00,0x0,0xe01c00,0x0,0x787800,0x0,0x7ff800,0x0,0x3ff000,0x0,0xfc000,0x0,0x0,0x0, + 0x0,0x0,0x1ff000,0x0,0x7ffe00,0x0,0x1ffff00,0x0,0x3ffff80,0x0,0x7f01fc0,0x0,0x7e007c0,0x0,0x7c007e0,0x0, + 0xfc003e0,0x0,0xf8003e0,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xf800000,0x0,0xfffe000,0x0,0xffffe00,0x0, + 0xfffff00,0x0,0xfffffc0,0x0,0xf803fc0,0x0,0xf8007e0,0x0,0xf8003e0,0x0,0xf8003f0,0x0,0xf8001f0,0x0,0xf8001f0,0x0, + 0xfc001f0,0x0,0xfc001f0,0x0,0xfe001f0,0x0,0xff003f0,0x0,0xfb803e0,0x0,0x1fbe07e0,0x0,0xff1fffe0,0x1,0xff0fffc0,0x1, + 0xfe07ff80,0x1,0xfc00fe00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc03f00,0x0,0x3fe0ffc0,0x0,0x7ff9fff0,0x0,0xfffbfff0,0x0,0xf87fe1f8,0x1,0xf03fc0f8,0x1,0xe01fc07c,0x3, + 0xe01f807c,0x3,0xe01f807c,0x3,0xc00f8000,0x3,0xc00f8000,0x7,0xc00f8000,0x7,0xc00f8000,0x7,0xc00fff00,0x7,0xffffffe0,0x7, + 0xfffffff0,0x7,0xfffffff8,0x7,0xffff81fc,0x7,0xf80fc,0x0,0xf807e,0x0,0xf803e,0x0,0xf803e,0x0,0xf803e,0x0, + 0xfc03e,0x0,0x601fc03e,0x0,0xe01fc03e,0x3,0xf01fe03e,0x3,0xf03ef07e,0x1,0xf87cf8fc,0x1,0xfffc7ffc,0x0,0x7ff83ff8,0x0, + 0x3ff01ff0,0x0,0xfc007e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe03f80,0x0,0xf800f80,0x0,0x1f0007c0,0x0, + 0x1f0007c0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0, + 0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f0007c0,0x0,0x1f800f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fc000,0x0,0x38000,0x0,0x38000,0x0,0x1f8000,0x0,0x7fc000,0x0,0xf00000,0x0,0xe00000,0x0, + 0xe00000,0x0,0xf00000,0x0,0x7fe000,0x0,0x3fe000,0x0,0xfe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x0, + 0x1f800,0x0,0x3f000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f0000,0x0,0x3c0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fe07f80,0x0,0x1f801f80,0x0,0x3f000fc0,0x0, + 0x3e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x780001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xc0003e0,0x0,0x7e0007c0,0x0,0x7f000fc0,0x0,0x3f801f80,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7fffc00,0x0, + 0x1fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fe07f80,0x0,0x1f801f80,0x0,0x3f000fc0,0x0, + 0x3e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x780001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xc0003e0,0x0,0x7e0007c0,0x0,0x7f000fc0,0x0,0x3f801f80,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7fffc00,0x0, + 0x1fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0000,0x0, + 0x7f8000,0x0,0xffe000,0x0,0x1fbf000,0x0,0x3e0f800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fe07f80,0x0,0x1f801f80,0x0,0x3f000fc0,0x0, + 0x3e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x780001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xc0003e0,0x0,0x7e0007c0,0x0,0x7f000fc0,0x0,0x3f801f80,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7fffc00,0x0, + 0x1fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fe07f80,0x0,0x1f801f80,0x0,0x3f000fc0,0x0, + 0x3e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x780001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x1f0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xc0003e0,0x0,0x7e0007c0,0x0,0x7f000fc0,0x0,0x3f801f80,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7fffc00,0x0, + 0x1fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x0, + 0x1f800,0x0,0x3f000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f0000,0x0,0x3c0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0, + 0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c0f800,0x0,0x7c0f800,0x0,0x7c0f800,0x0,0x7c0f800,0x0,0x7c0f800,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1fff80,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6007e00,0x0,0x781fc00,0x0, + 0xfe3f000,0x0,0x7ffe000,0x0,0x1ff8000,0x0,0x7fc000,0x0,0x7ff000,0x0,0xfffc00,0x0,0xf8fe00,0x0,0x1f03c00,0x0, + 0x3f00c00,0x0,0x7e00000,0x0,0x7c00000,0x0,0xfc00000,0x0,0xf800000,0x0,0x1f9fe000,0x0,0x1ffffc00,0x0,0x1ffffe00,0x0, + 0x3fffff00,0x0,0x3fe03f80,0x0,0x3f800fc0,0x0,0x3f0007c0,0x0,0x7e0003e0,0x0,0x7e0003e0,0x0,0x7e0003e0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfffc00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00fc00,0x0, + 0xe03fe00,0x0,0xf0fff00,0x0,0x7ffff00,0x0,0x7ff8780,0x0,0x3fe0380,0x0,0x1f80380,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0x1fe0fbe0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x0, + 0x1f800,0x0,0x3f000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f0000,0x0,0x3c0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0, + 0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00fc00,0x0, + 0xe03fe00,0x0,0xf0fff00,0x0,0x7ffff00,0x0,0x7ff8780,0x0,0x3fe0380,0x0,0x1f80380,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffe00,0x0,0x7ffff00,0x0,0xfe07f80,0x0,0x1f801f80,0x0,0x1f000fc0,0x0, + 0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0, + 0xfff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0xfffffff8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe000,0x0,0x10fffc00,0x0,0x7bffff00,0x0,0x3fffff80,0x0,0x1ff03fc0,0x0,0xfc00fc0,0x0,0x1f8007e0,0x0, + 0x3f8003e0,0x0,0x3fc001f0,0x0,0x3fe001f0,0x0,0x3ef001f0,0x0,0x7c7800f8,0x0,0x7c3c00f8,0x0,0x7c3c00f8,0x0,0x7c1e00f8,0x0, + 0x7c0f00f8,0x0,0x7c0780f8,0x0,0x7c03c0f8,0x0,0x7c01e0f8,0x0,0x7c00f0f8,0x0,0x7c0078f8,0x0,0x7c0078f8,0x0,0x3e003df0,0x0, + 0x3e001ff0,0x0,0x3e000ff0,0x0,0x1f0007e0,0x0,0x1f8007e0,0x0,0xfc00fc0,0x0,0xff03fe0,0x0,0x7fffff0,0x0,0x3ffff78,0x0, + 0xfffc20,0x0,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0x0, + 0xfc00,0x0,0x1f800,0x0,0x3e000,0x0,0x7c000,0x0,0xf8000,0x0,0x1e0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0,0x3e7fff80,0x0, + 0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0xf8000,0x0,0x3c000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0,0x3e7fff80,0x0, + 0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0, + 0x3fc000,0x0,0x7ff000,0x0,0xfdf800,0x0,0x1f07c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0,0x3e7fff80,0x0, + 0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0,0x3e7fff80,0x0, + 0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x78000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf000007c,0x1,0xf80000fc,0x1,0xf80000f8,0x0,0xfc0001f8,0x0,0x7c0001f0,0x0,0x7c0003f0,0x0, + 0x7e0003e0,0x0,0x3e0003e0,0x0,0x3e0007c0,0x0,0x1f0007c0,0x0,0x1f000fc0,0x0,0xf800f80,0x0,0xf800f80,0x0,0xf801f00,0x0, + 0x7c01f00,0x0,0x7c03e00,0x0,0x3e03e00,0x0,0x3e07e00,0x0,0x3e07c00,0x0,0x1f07c00,0x0,0x1f0f800,0x0,0xf8f800,0x0, + 0xf9f000,0x0,0x79f000,0x0,0x7de000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1f8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f800,0x0, + 0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x7f03e0,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0xfe07be0,0x0,0x1f801fe0,0x0,0x1f001fe0,0x0, + 0x3e000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x7c0007e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7e0007e0,0x0, + 0x3e0007e0,0x0,0x3e0007e0,0x0,0x3f000fe0,0x0,0x1f000fe0,0x0,0x1f801fe0,0x0,0xfe07fe0,0x0,0xffffbe0,0x0,0x7fff3e0,0x0, + 0x1ffe3e0,0x0,0x7f03e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf000007c,0x1,0xf80000fc,0x1,0xf80000f8,0x0,0xfc0001f8,0x0,0x7c0001f0,0x0,0x7c0003f0,0x0, + 0x7e0003e0,0x0,0x3e0003e0,0x0,0x3e0007c0,0x0,0x1f0007c0,0x0,0x1f000fc0,0x0,0xf800f80,0x0,0xf800f80,0x0,0xf801f00,0x0, + 0x7c01f00,0x0,0x7c03e00,0x0,0x3e03e00,0x0,0x3e07e00,0x0,0x3e07c00,0x0,0x1f07c00,0x0,0x1f0f800,0x0,0xf8f800,0x0, + 0xf9f000,0x0,0x79f000,0x0,0x7de000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1f8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f800,0x0, + 0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,52,-1,5,50,0,0,0,0,0 +const unsigned int ff12_height = 78; +const unsigned int ff12_line_height = 78; +const unsigned int ff12_width = 41; +const unsigned int ff12_stride = 2; +const unsigned char ff12_first_char = ' '; + +uint32_t ff12_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe01fc00,0x1, + 0xfe01fc00,0x1,0xfe01fc00,0x1,0xfe01fc00,0x0,0xfe01fc00,0x0,0xfe01fc00,0x0,0xfe01fc00,0x0,0xfc01fc00,0x0,0xfc01fc00,0x0, + 0xfc01fc00,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00f800,0x0,0xfc00f800,0x0, + 0xfc00f800,0x0,0x7c00f800,0x0,0x7c00f800,0x0,0x7c00f800,0x0,0x7c00f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0xf,0x70000,0x7,0x80078000,0x7,0x80078000,0x7, + 0x80078000,0x7,0x80038000,0x3,0x80038000,0x3,0xc003c000,0x3,0xc003c000,0x3,0xc003c000,0x3,0xc001c000,0x1,0xe001e000,0x1, + 0xe001e000,0x1,0xe001e000,0x1,0xfffffff0,0xff,0xfffffff0,0xff,0xfffffff0,0xff,0xf000f000,0x0,0xf000f000,0x0,0xf000f000,0x0, + 0x70007000,0x0,0x78007800,0x0,0x78007800,0x0,0x78007800,0x0,0x38003800,0x0,0x38003c00,0x0,0x3c003c00,0x0,0x3c003c00,0x0, + 0xfffffffc,0x7f,0xfffffffc,0x7f,0xfffffffc,0x7f,0xfffffffc,0x7f,0x1e001e00,0x0,0x1e000e00,0x0,0xe000e00,0x0,0xf000f00,0x0, + 0xf000f00,0x0,0xf000f00,0x0,0x7000700,0x0,0x7000700,0x0,0x7800780,0x0,0x7800780,0x0,0x7800780,0x0,0x3800380,0x0, + 0x3c00380,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xfff8000,0x0,0x7ffff800,0x0,0xfffffe00,0x1,0xffffff00,0x3, + 0xfffbff80,0x7,0xf0f83fc0,0xf,0xc0f81fc0,0x1f,0x80f80fe0,0x1f,0x80f807e0,0x3f,0xf807e0,0x3f,0xf807e0,0x3f,0xf807e0,0x7, + 0xf807e0,0x0,0xf807e0,0x0,0xf80fe0,0x0,0xf81fc0,0x0,0xf83fc0,0x0,0xf8ff80,0x0,0xffff00,0x0,0x3fffe00,0x0, + 0x3ffff800,0x0,0xffffe000,0x0,0xffff8000,0x3,0xfff80000,0x7,0xfef80000,0xf,0xf0f80000,0x1f,0xc0f80000,0x3f,0xf80000,0x3f, + 0xf80000,0x7f,0xf80000,0x7e,0xf80000,0x7e,0xf80100,0x7e,0xf801f0,0x7c,0xf801f8,0x7c,0xf803f8,0x7e,0xf803f0,0x7e, + 0xf807f0,0x7f,0x80f80fe0,0x3f,0xc0f81fe0,0x3f,0xf0f8ffc0,0x1f,0xffffff80,0xf,0xffffff00,0x7,0xfffffc00,0x1,0x7ffff000,0x0, + 0x7ff0000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0x0,0x7fe0,0x7c,0x1fff0,0x3e,0x3fff8,0x3e,0x3f0fc,0x1f, + 0x8007c07c,0xf,0x8007c03e,0xf,0xc007c03e,0x7,0xe00f803e,0x3,0xe00f803e,0x3,0xf00f803e,0x1,0xf80f803e,0x0,0x7c0f803e,0x0, + 0x7c0f803e,0x0,0x3e0f803e,0x0,0x1f0f803e,0x0,0x1f07c03e,0x0,0xf87c07e,0x0,0x7c7e07c,0x0,0x7c3fffc,0x0,0x3e1fff8,0x0, + 0x1f0fff0,0x0,0x1f07fc0,0x0,0xf80000,0x0,0xe07c0000,0xf,0xf83c0000,0x3f,0xfe3e0000,0x7f,0xfe1f0000,0xff,0x3f0f8000,0x1f8, + 0x1f0f8000,0x1f0,0xf87c000,0x1f0,0xf83e000,0x1e0,0xf83e000,0x1e0,0xf81f000,0x1e0,0xf80f800,0x1e0,0xf80f800,0x1e0,0xf807c00,0x1e0, + 0xf803e00,0x1e0,0xf803e00,0x1e0,0xf801f00,0x1e0,0x1f800f80,0x1f0,0x1f000780,0x1f0,0x3f0007c0,0x1f8,0xfe0003e0,0xff,0xfc0001f0,0x7f, + 0xf80001f0,0x3f,0xe0000000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff0000,0x0,0xfffc000,0x0,0x3ffff000,0x0,0x3ffff800,0x0, + 0x7f03f800,0x0,0xfc00fc00,0x0,0xfc007c00,0x0,0xf8007e00,0x0,0xf8003e00,0x0,0xf8003e00,0x0,0xf8003e00,0x0,0x7c003e00,0x0, + 0x7e007c00,0x0,0x3f007c00,0x0,0x3fc07c00,0x0,0xfe0fc00,0x0,0x7fcf800,0x0,0x1fff800,0x0,0xfff000,0x0,0x3ff800,0x0, + 0xffc00,0x0,0x7ff00,0x7,0x8007ff80,0x1f,0x800fdfc0,0xf,0x800f8fe0,0xf,0x801f87f0,0xf,0x803f03f0,0xf,0xc03f01f8,0x7, + 0xc07e01f8,0x7,0xc0fc00fc,0x7,0xe1fc00fc,0x3,0xe1f800fc,0x3,0xf3f000fc,0x3,0xf7e000fc,0x1,0xffe000fc,0x1,0xffc000fc,0x0, + 0xff8000fc,0x0,0x7f0001f8,0x0,0xff0001f8,0x0,0xff8003f8,0x1,0xffe007f0,0x7,0xfffc3fe0,0x1ff,0xe7ffffe0,0x1ff,0xc1ffff80,0x1ff, + 0x7fff00,0x1ff,0x1ff800,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000000,0x0, + 0x3f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1fc0000,0x0, + 0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1fc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfe000,0x0,0xfe000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7f000,0x0,0x7f000,0x0,0x7f000,0x0,0x7f000,0x0,0x3f000,0x0,0x3f000,0x0,0x3f000,0x0, + 0x3f000,0x0,0x3f000,0x0,0x7f000,0x0,0x7f000,0x0,0x7f000,0x0,0x7f000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0xfe000,0x0,0xfe000,0x0,0xfc000,0x0,0xfc000,0x0,0x1fc000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x3f8000,0x0,0x3f0000,0x0,0x7f0000,0x0,0x7e0000,0x0,0xfe0000,0x0,0xfc0000,0x0,0x1fc0000,0x0, + 0x1f80000,0x0,0x3f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfc00000,0x0,0x1fc00000,0x0,0x3f800000,0x0,0x3f000000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f000,0x0, + 0x7e000,0x0,0xfc000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x3f0000,0x0,0x7f0000,0x0,0xfe0000,0x0,0xfc0000,0x0, + 0x1fc0000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x3f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfe00000,0x0,0x7e00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0, + 0xfe0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3f8000,0x0,0x1fc000,0x0,0xfc000,0x0,0x7e000,0x0,0x7f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x780000,0x0,0x780000,0x0,0x780000,0x0,0xc0780c00,0x0,0xf0787c00,0x1, + 0xfe79fe00,0x1,0xfffffe00,0x1,0xfffffc00,0x1,0x1fffc000,0x0,0x1fe0000,0x0,0x1fc0000,0x0,0x1fe0000,0x0,0x3df0000,0x0, + 0x7cf0000,0x0,0xf8f8000,0x0,0xf87c000,0x0,0x1f03e000,0x0,0x3e03f000,0x0,0x3e01e000,0x0,0xc01c000,0x0,0x4000000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x0, + 0x7f8000,0x0,0x7fc000,0x0,0x7fc000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x1fe000,0x0,0x1fe000,0x0,0xfe000,0x0, + 0xfe000,0x0,0x7f000,0x0,0x7f000,0x0,0x3f000,0x0,0x3f000,0x0,0x1f800,0x0,0x1f800,0x0,0xf800,0x0, + 0xf800,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x3c00,0x0,0x3e00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff000,0x0,0x7ffff000,0x0,0x7ffff000,0x0,0x7ffff000,0x0, + 0x7ffff000,0x0,0x7ffff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f, + 0x80000000,0x3f,0x80000000,0x1f,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0x7,0xe0000000,0x7,0xf0000000,0x3,0xf0000000,0x3, + 0xf8000000,0x1,0xf8000000,0x1,0xfc000000,0x0,0xfe000000,0x0,0x7e000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0xfc00000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0xfc000,0x0,0xfe000,0x0,0x7e000,0x0,0x3f000,0x0,0x3f000,0x0,0x1f800,0x0,0x1f800,0x0,0xfc00,0x0, + 0xfc00,0x0,0x7e00,0x0,0x7e00,0x0,0x3f00,0x0,0x3f80,0x0,0x1f80,0x0,0x1fc0,0x0,0xfc0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffc000,0x0,0x3ffff000,0x0,0x7ffff800,0x0,0xfffffc00,0x1, + 0xff03fe00,0x1,0xf800ff00,0x3,0xf0007f00,0x7,0xe0003f80,0x7,0xe0001f80,0xf,0xc0001f80,0xf,0xc0000fc0,0xf,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fc0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x81fe07e0,0x3f,0x1fe07e0,0x3f, + 0x1fe07e0,0x3f,0x1fe07e0,0x3f,0x1fe07e0,0x3f,0x1fe07e0,0x3f,0x1fe07e0,0x3f,0x1fe07e0,0x3f,0x1fe07e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0xf,0xc0001f80,0xf, + 0xe0001f80,0x7,0xe0003f80,0x7,0xf0007f00,0x7,0xf800fe00,0x3,0xfe03fe00,0x1,0xfffffc00,0x0,0x7ffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0,0x7f00000,0x0,0x7f80000,0x0,0x7fc0000,0x0, + 0x7ff0000,0x0,0x7ff8000,0x0,0x7eff000,0x0,0x7efff80,0x0,0x7e3ffc0,0x0,0x7e1ffc0,0x0,0x7e07fc0,0x0,0x7e00fc0,0x0, + 0x7e00040,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x1,0xfffffc00,0x3, + 0xff03fe00,0x3,0xf800ff00,0x7,0xf0007f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf, + 0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0xf,0xe0000000,0x7,0xf0000000,0x7,0xf8000000,0x3,0xf8000000,0x3, + 0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x3fc0000,0x0, + 0x1fe0000,0x0,0x7f8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0xff000,0x0,0x7f800,0x0,0x3fc00,0x0,0x1fe00,0x0, + 0xfe00,0x0,0x7f00,0x0,0x3f80,0x0,0x1fc0,0x0,0x1fc0,0x0,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f, + 0xffffffe0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3, + 0xfe03ff00,0x3,0xf800ff00,0x7,0xf0003f80,0xf,0xe0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf, + 0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0x7,0xf0000000,0x7,0xf8000000,0x3,0xfe000000,0x1,0xfff00000,0x0, + 0x7fff0000,0x0,0xfff0000,0x0,0xfff0000,0x0,0x7fff0000,0x0,0xffff0000,0x1,0xfe000000,0x3,0xf8000000,0x7,0xe0000000,0xf, + 0xc0000000,0x1f,0xc0000000,0x1f,0x80000000,0x1f,0x80000000,0x3f,0x80000000,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f, + 0x80000fc0,0x1f,0xc0001fc0,0x1f,0xe0003fc0,0x1f,0xf0007f80,0xf,0xfc01ff00,0x7,0xffffff00,0x7,0xfffffc00,0x3,0xfffff800,0x0, + 0x3fffe000,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff800000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xfdf00000,0x0,0xfdf80000,0x0,0xfcf80000,0x0,0xfc7c0000,0x0,0xfc3e0000,0x0, + 0xfc3f0000,0x0,0xfc1f0000,0x0,0xfc0f8000,0x0,0xfc0fc000,0x0,0xfc07c000,0x0,0xfc03e000,0x0,0xfc01f000,0x0,0xfc01f800,0x0, + 0xfc00f800,0x0,0xfc007c00,0x0,0xfc007e00,0x0,0xfc003e00,0x0,0xfc001f00,0x0,0xfc000f80,0x0,0xfc000fc0,0x0,0xfc0007c0,0x0, + 0xfc0003e0,0x0,0xfc0001f0,0x0,0xfffffff0,0x7f,0xfffffff0,0x7f,0xfffffff0,0x7f,0xfffffff0,0x7f,0xfffffff0,0x7f,0xfc000000,0x0, + 0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0, + 0xfc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x7,0xffffff00,0x7,0xffffff00,0x7,0xffffff00,0x7, + 0xffffff00,0x7,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x3fc1f80,0x0,0x1fff9f80,0x0,0x7fffef80,0x0,0xffffff80,0x1, + 0xffffffc0,0x3,0xff03ffc0,0x7,0xf8007fc0,0x7,0xf0001fc0,0xf,0xe0000000,0x1f,0xc0000000,0x1f,0xc0000000,0x1f,0x80000000,0x1f, + 0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x1f,0x80000700,0x1f,0xc0000fe0,0x1f, + 0xc0000fe0,0x1f,0xe0001fc0,0xf,0xf0001fc0,0xf,0xf8007f80,0x7,0xfe01ff80,0x3,0xffffff00,0x3,0xfffffe00,0x0,0x7ffffc00,0x0, + 0x1ffff000,0x0,0x3ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x3fff0000,0x0,0x7fffc000,0x0,0xffffe000,0x1,0xfffff000,0x3, + 0xfe0ff800,0x3,0xf003fc00,0x7,0xe000fc00,0x7,0xe000fe00,0xf,0xc0007f00,0xf,0xc0003f00,0x1,0x3f00,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0xf80,0x0,0xfc0,0x0,0xffc0fc0,0x0,0x7fff0fc0,0x0,0xffff8fc0,0x0,0xffffefc0,0x1, + 0xff8fefc0,0x3,0xf801ffc0,0x7,0xf000ffc0,0xf,0xe0003fc0,0xf,0xc0003fc0,0x1f,0xc0001fc0,0x1f,0x80001fc0,0x1f,0x80000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80003f80,0x1f, + 0xc0003f00,0x1f,0xe0007f00,0xf,0xe000fe00,0xf,0xf001fe00,0x7,0xfc07fc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0xffffe000,0x0, + 0x3fff8000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xc0000000,0xf,0xc0000000,0x7,0xe0000000,0x7,0xf0000000,0x3,0xf0000000,0x3,0xf8000000,0x1,0xfc000000,0x0, + 0xfc000000,0x0,0x7e000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x1f800000,0x0,0x1f800000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0, + 0x3f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffffc00,0x0,0xfffffe00,0x1, + 0xfc01ff00,0x3,0xf0007f00,0x7,0xe0003f80,0x7,0xe0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf, + 0xc0001fc0,0xf,0xc0001fc0,0xf,0xc0001f80,0xf,0xe0001f80,0x7,0xf0003f00,0x7,0xf8007f00,0x3,0xfe01fe00,0x1,0xfffffc00,0x0, + 0x3ffff000,0x0,0xfff8000,0x0,0x7ffff000,0x0,0xfffffc00,0x1,0xfc00fe00,0x3,0xf0007f00,0x7,0xe0001f80,0xf,0xc0001fc0,0xf, + 0xc0000fc0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f, + 0xc0000fc0,0x1f,0xc0001fc0,0x1f,0xe0001fc0,0xf,0xf0003f80,0xf,0xf800ff80,0x7,0xff8fff00,0x3,0xfffffe00,0x1,0xfffff800,0x0, + 0x3fffe000,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffc000,0x0,0x3ffff000,0x0,0x7ffff800,0x0,0xfffffe00,0x0, + 0xff03fe00,0x1,0xfc00ff00,0x3,0xf8007f80,0x3,0xf0003f80,0x7,0xe0001fc0,0x7,0xe0000fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf, + 0xc0000fe0,0xf,0xc0000fe0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0001fc0,0x1f,0xe0001f80,0x1f,0xf0003f80,0x1f,0xf8007f80,0x1f,0xfe01ff00,0x1f,0xbffffe00,0x1f,0x9ffffc00,0x1f,0x8ffff800,0x1f, + 0x83ffe000,0x1f,0x80ff8000,0x1f,0x80000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0x7,0xe0000800,0x7, + 0xf0001fc0,0x7,0xf0001f80,0x3,0xf8003f80,0x3,0xfe007f00,0x1,0xff00ff00,0x0,0x7ffffe00,0x0,0x3ffffc00,0x0,0x1ffff800,0x0, + 0x7fff000,0x0,0x1ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x3fc0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0xfe0000,0x0,0xff0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x3f0000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xf8000,0x0,0xfc000,0x0,0xfc000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x3e000,0x0,0x1e000,0x0,0x1f000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x20,0x0,0x38,0x0,0x3f,0xc0000000,0x3f,0xf0000000,0x3f,0xfe000000,0x3f,0xff800000,0x7, + 0xfff00000,0x1,0x7ffc0000,0x0,0xfff0000,0x0,0x3ffe000,0x0,0xfff800,0x0,0x1ffe00,0x0,0x7ffc0,0x0,0x1fff0,0x0, + 0x3ff0,0x0,0xff0,0x0,0x1f0,0x0,0x7f0,0x0,0x1ff0,0x0,0xfff0,0x0,0x3ffe0,0x0,0xfff00,0x0, + 0x7ffc00,0x0,0x1fff000,0x0,0x7ff8000,0x0,0x3ffe0000,0x0,0xfff00000,0x0,0xffc00000,0x3,0xff000000,0x1f,0xf8000000,0x3f, + 0xe0000000,0x3f,0x80000000,0x3f,0x0,0x3c,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff0,0x3f, + 0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x10,0x0,0xf0,0x0,0x3f0,0x0,0x1ff0,0x0,0x7ff0,0x0,0x1ffe0,0x0,0xfff80,0x0, + 0x3ffc00,0x0,0xfff000,0x0,0x7ffc000,0x0,0x1ffe0000,0x0,0xfff80000,0x0,0xffe00000,0x3,0xff000000,0xf,0xfc000000,0x3f, + 0xf0000000,0x3f,0x80000000,0x3f,0x0,0x3e,0x0,0x3f,0xe0000000,0x3f,0xf8000000,0x3f,0xfe000000,0x1f,0xffc00000,0x7, + 0xfff00000,0x1,0x3ffc0000,0x0,0xfff8000,0x0,0x1ffe000,0x0,0x7ff800,0x0,0x1fff00,0x0,0x3ffc0,0x0,0xfff0,0x0, + 0x1ff0,0x0,0x7f0,0x0,0x1f0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff0000,0x0,0x1fffe000,0x0,0x7ffff800,0x0,0xfffffe00,0x1,0xffffff00,0x3, + 0xff03ff80,0x7,0xf8007fc0,0x7,0xf0001fc0,0xf,0xe0000fe0,0xf,0xc0000fe0,0xf,0xc00007e0,0x1f,0x800007f0,0x1f,0x800003f0,0x1f, + 0x800003f0,0x1f,0x80000000,0x1f,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0xf,0xf0000000,0x7,0xf8000000,0x7,0xfc000000,0x3, + 0xfe000000,0x1,0xff000000,0x0,0x7fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0, + 0xfe0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0, + 0x3f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00000,0x0, + 0x3ffe0000,0x0,0x7fff8000,0x0,0xffffe000,0x1,0xfc0ff000,0x3,0xf003f800,0x7,0xc000fc00,0xf,0x80007e00,0xf,0x3f00,0x1f, + 0x1f00,0x1e,0xf80,0x3e,0x780,0x3c,0x7c0,0x7c,0xf003c0,0x78,0xc3fc03e0,0x7b,0xe7fe01e0,0xf9,0xefff01f0,0xf1, + 0xee0f81f0,0xf1,0xec07c0f0,0xf1,0xfc03e0f0,0xf1,0xfc03e0f8,0x1f0,0xfc01f078,0x1f0,0xf800f078,0x1e0,0xf800f078,0x1e0,0xf800f878,0x1e0, + 0x7800f87c,0x1e0,0x7800787c,0x1e0,0x7c00787c,0x1e0,0x7c007c3c,0x1e0,0x7c007c3c,0x1f0,0x3c007c3c,0xf0,0x3c007c3c,0xf0,0x3c007c3c,0xf0, + 0x3e003c3c,0xf0,0x3e003c3c,0xf0,0x3e007c3c,0xf0,0x1f007c3c,0x78,0x1f007c3c,0x78,0x1f007c7c,0x78,0x1f807c7c,0x78,0x1d807878,0x3c, + 0x1dc0f878,0x3c,0x1ce0f878,0x1e,0xbcfff0f8,0xf,0xfc7fe0f8,0xf,0xf83fc0f0,0x7,0xf00f81f0,0x1,0x1f0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x7c0,0x0,0x7c0,0x3,0x80000f80,0x7,0xc0003f00,0xf,0xf0007e00,0x7,0xfe01fe00,0x1,0xfffff800,0x0, + 0x3ffff000,0x0,0xfffc000,0x0,0x1ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffffc0,0x0,0x3fffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x3, + 0xffffffc0,0x7,0xfe000fc0,0x7,0xf0000fc0,0xf,0xe0000fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0000fc0,0xf,0xc0000fc0,0xf,0xe0000fc0,0xf,0xf0000fc0,0x7,0xf8000fc0,0x7,0xfe000fc0,0x3,0xffffffc0,0x0, + 0x3fffffc0,0x0,0xfffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x3,0xfe000fc0,0xf,0xe0000fc0,0x1f,0xc0000fc0,0x3f,0x80000fc0,0x3f, + 0xfc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f, + 0xfc0,0x7f,0x80000fc0,0x3f,0xc0000fc0,0x3f,0xf0000fc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0xf,0xffffffc0,0x3,0xffffffc0,0x0, + 0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fff8000,0x0,0x7fffe000,0x0,0xfffff800,0x1,0xfffffc00,0x3, + 0xff1ffe00,0x7,0xf801fe00,0xf,0xf000ff00,0xf,0xe0007f80,0x1f,0xc0003f80,0x1f,0x80003fc0,0x3f,0x1fc0,0x3f,0x1fc0,0xf, + 0xfe0,0x1,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7f0,0x0, + 0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7e0,0x0,0x7e0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x1e,0x1fc0,0x7e,0x1fc0,0x7f,0x3f80,0x3f, + 0x80003f80,0x3f,0xc0007f00,0x1f,0xe000ff00,0x1f,0xf001fe00,0xf,0xfc0ffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0xffffe000,0x0, + 0x3fff8000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffc0,0x0,0x7ffffc0,0x0,0x1fffffc0,0x0,0x7fffffc0,0x0, + 0xffffffc0,0x0,0xffe00fc0,0x1,0xff000fc0,0x3,0xfc000fc0,0x7,0xf0000fc0,0x7,0xe0000fc0,0xf,0xe0000fc0,0xf,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x7f, + 0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f, + 0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xe0000fc0,0xf,0xe0000fc0,0xf, + 0xf0000fc0,0x7,0xf8000fc0,0x7,0xfe000fc0,0x3,0xff800fc0,0x1,0xffffffc0,0x0,0x7fffffc0,0x0,0x3fffffc0,0x0,0xfffffc0,0x0, + 0x1ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x7, + 0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x1f, + 0xffffff80,0x1f,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0xffffff80,0xf,0xffffff80,0xf,0xffffff80,0xf,0xffffff80,0xf,0xffffff80,0xf,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff800,0x1,0xfffffc00,0x3, + 0xff1ffe00,0x7,0xf801ff00,0x7,0xf000ff00,0xf,0xe0007f80,0x1f,0xc0003f80,0x1f,0x80001fc0,0x3f,0x80001fc0,0x1f,0xfc0,0x3, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7f0,0x0, + 0x7f0,0x0,0x7f0,0x0,0xffc007f0,0x3f,0xffc007f0,0x3f,0xffc007f0,0x3f,0xffc007f0,0x3f,0xffc007e0,0x3f,0x800007e0,0x3f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x80007f00,0x3f,0x8000ff00,0x3f,0xe001fe00,0x3f,0xfc0ffc00,0x3f,0xfffff800,0x1f,0xfffff000,0x7,0xffffe000,0x1, + 0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffe0000,0x3,0xfffe0000,0x3,0xfffe0000,0x3,0xfffe0000,0x3, + 0xfffe0000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3, + 0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3, + 0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3, + 0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8000000,0x3,0xf8001f80,0x3,0xf8001f80,0x3,0xf8003f80,0x1, + 0xf8003f80,0x1,0xfc003f80,0x1,0xfc007f00,0x1,0xfe00ff00,0x0,0xff83fe00,0x0,0x7ffffc00,0x0,0x3ffffc00,0x0,0x1ffff000,0x0, + 0x7ffe000,0x0,0x1ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fc0,0x7f,0xc0000fc0,0x3f,0xc0000fc0,0x1f,0xe0000fc0,0xf, + 0xf0000fc0,0x7,0xf8000fc0,0x3,0xfc000fc0,0x3,0xfe000fc0,0x1,0xff000fc0,0x0,0x7f000fc0,0x0,0x3f800fc0,0x0,0x1fc00fc0,0x0, + 0xfe00fc0,0x0,0x7f00fc0,0x0,0x7f80fc0,0x0,0x3fc0fc0,0x0,0x1fc0fc0,0x0,0xfe0fc0,0x0,0x7f0fc0,0x0,0x7f8fc0,0x0, + 0x7fcfc0,0x0,0xffefc0,0x0,0x1ffefc0,0x0,0x3ffffc0,0x0,0x3fdffc0,0x0,0x7f8ffc0,0x0,0xff07fc0,0x0,0x1fe03fc0,0x0, + 0x1fe03fc0,0x0,0x3fc01fc0,0x0,0x7f800fc0,0x0,0xff000fc0,0x0,0xfe000fc0,0x0,0xfe000fc0,0x1,0xfc000fc0,0x3,0xf8000fc0,0x7, + 0xf0000fc0,0x7,0xf0000fc0,0xf,0xe0000fc0,0x1f,0xc0000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x7f,0xfc0,0xff,0xfc0,0x1fe, + 0xfc0,0x1fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0xfffffe00,0x3f,0xfffffe00,0x3f,0xfffffe00,0x3f,0xfffffe00,0x3f, + 0xfffffe00,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0001fe0,0x3f,0xe0003fe0,0x3f,0xe0003fe0,0x3f,0xe0003fe0,0x3f, + 0xf0007fe0,0x3f,0xf0007fe0,0x3f,0xf0007fe0,0x3f,0xf800fbe0,0x3f,0xf800fbe0,0x3f,0x7c01fbe0,0x3f,0x7c01f3e0,0x3f,0x7c01f3e0,0x3f, + 0x3e03f3e0,0x3f,0x3e03e3e0,0x3f,0x3e03e3e0,0x3f,0x1f07e3e0,0x3f,0x1f07c3e0,0x3f,0x1f8fc3e0,0x3f,0xf8fc3e0,0x3f,0xf8f83e0,0x3f, + 0x78f83e0,0x3f,0x7df03e0,0x3f,0x7df03e0,0x3f,0x3df03e0,0x3f,0x3fe03e0,0x3f,0x3fe03e0,0x3f,0x1fe03e0,0x3f,0x1fc03e0,0x3f, + 0xfc03e0,0x3f,0xf803e0,0x3f,0xf803e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f, + 0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f,0x3e0,0x3f, + 0x3e0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80003fc0,0x1f,0x80003fc0,0x1f,0x80007fc0,0x1f,0x80007fc0,0x1f, + 0x8000ffc0,0x1f,0x8000ffc0,0x1f,0x8001ffc0,0x1f,0x8001ffc0,0x1f,0x8003f7c0,0x1f,0x8003f7c0,0x1f,0x8003e7c0,0x1f,0x8007efc0,0x1f, + 0x8007cfc0,0x1f,0x800fcfc0,0x1f,0x800f8fc0,0x1f,0x801f8fc0,0x1f,0x801f8fc0,0x1f,0x803f0fc0,0x1f,0x803f0fc0,0x1f,0x807e0fc0,0x1f, + 0x807e0fc0,0x1f,0x80fc0fc0,0x1f,0x80fc0fc0,0x1f,0x80f80fc0,0x1f,0x81f80fc0,0x1f,0x81f00fc0,0x1f,0x83f00fc0,0x1f,0x83e00fc0,0x1f, + 0x87e00fc0,0x1f,0x87e00fc0,0x1f,0x8fc00fc0,0x1f,0x8fc00fc0,0x1f,0x9f800fc0,0x1f,0x9f800fc0,0x1f,0xbf000fc0,0x1f,0xbf000fc0,0x1f, + 0xfe000fc0,0x1f,0xfe000fc0,0x1f,0xfc000fc0,0x1f,0xfc000fc0,0x1f,0xf8000fc0,0x1f,0xf8000fc0,0x1f,0xf8000fc0,0x1f,0xf0000fc0,0x1f, + 0xf0000fc0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffc0,0x0,0x7fffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x3, + 0xffffffc0,0x7,0xfe000fc0,0xf,0xf0000fc0,0x1f,0xe0000fc0,0x1f,0xc0000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xc0000fc0,0x1f, + 0xe0000fc0,0x1f,0xf8000fc0,0xf,0xfe000fc0,0x7,0xffffffc0,0x3,0xffffffc0,0x1,0xffffffc0,0x0,0x3fffffc0,0x0,0x7ffffc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0x1f, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3fe0000,0x0,0x3f80000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0,0x1fe00000,0x0, + 0x3fc00000,0x0,0xff800000,0x41,0xff800000,0x7f,0xff000000,0x7f,0xfc000000,0x7f,0xf8000000,0x7f,0x0,0x3,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x7, + 0xffffffc0,0xf,0xfc000fc0,0xf,0xe0000fc0,0x1f,0xc0000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xf0000fc0,0xf, + 0xfc000fc0,0xf,0xffffffc0,0x7,0xffffffc0,0x1,0xffffffc0,0x0,0x3fffffc0,0x0,0x7ffffc0,0x0,0xfe00fc0,0x0,0xfe00fc0,0x0, + 0x1fc00fc0,0x0,0x3f800fc0,0x0,0x3f800fc0,0x0,0x7f000fc0,0x0,0xfe000fc0,0x0,0xfe000fc0,0x0,0xfc000fc0,0x1,0xf8000fc0,0x3, + 0xf8000fc0,0x3,0xf0000fc0,0x7,0xf0000fc0,0xf,0xe0000fc0,0xf,0xc0000fc0,0x1f,0xc0000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x7f, + 0xfc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe0000,0x0,0x3fffe000,0x0,0xfffff800,0x0,0xfffffe00,0x1,0xffffff00,0x3, + 0xfe01ff80,0x7,0xf0007f80,0xf,0xe0001fc0,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f,0x80000fc0,0x1f,0x80000fe0,0x7,0xfe0,0x0, + 0xfe0,0x0,0xfc0,0x0,0x1fc0,0x0,0x3fc0,0x0,0x7f80,0x0,0x1ff80,0x0,0x1fff00,0x0,0xfffe00,0x0, + 0xffffc00,0x0,0x7ffff000,0x0,0xffffc000,0x1,0xfffc0000,0x3,0xffe00000,0x7,0xfe000000,0xf,0xf0000000,0x1f,0xe0000000,0x3f, + 0x80000000,0x3f,0x80000000,0x3f,0x0,0x3f,0x0,0x7f,0x0,0x7f,0x3c0,0x7f,0x3f8,0x7f,0x3f0,0x3f, + 0x7f0,0x3f,0x80000ff0,0x3f,0xc0001fe0,0x3f,0xe0003fe0,0x1f,0xfc00ffc0,0xf,0xffffff80,0x7,0xffffff00,0x3,0xfffffc00,0x1, + 0x7ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x7f,0xfffffff8,0x7f,0xfffffff8,0x7f,0xfffffff8,0x7f, + 0xfffffff8,0x7f,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0001fc0,0xf,0xf0003f80,0xf,0xf8007f80,0x7,0xfe03ff00,0x3,0xfffffe00,0x3,0xfffffe00,0x1,0xfffff800,0x0, + 0x3ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1f8,0xfe,0x1fc,0x1fc,0x1fc,0x1fc,0xfc, + 0x1f8,0xfe,0x3f8,0xfe,0x3f8,0x7e,0x3f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x800007e0,0x3f,0x80000fe0,0x1f, + 0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0xf,0xe0001f80,0xf,0xe0003f80,0x7,0xe0003f80,0x7,0xf0003f00,0x7,0xf0007f00,0x3, + 0xf0007e00,0x3,0xf8007e00,0x3,0xf800fe00,0x1,0xf800fc00,0x1,0xfc00fc00,0x1,0xfc01fc00,0x0,0xfc01f800,0x0,0x7e01f800,0x0, + 0x7e03f000,0x0,0x7f03f000,0x0,0x3f07f000,0x0,0x3f07e000,0x0,0x3f87e000,0x0,0x1f87e000,0x0,0x1f8fc000,0x0,0xf8fc000,0x0, + 0xfcf8000,0x0,0xfdf8000,0x0,0x7df8000,0x0,0x7ff0000,0x0,0x7ff0000,0x0,0x3ff0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0, + 0x1fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x1f0,0x7e,0x1f8,0x7e,0x1f8,0x7e,0x1f8, + 0xfe,0x1f8,0xfe,0x1f8,0xfc,0x1f8,0xfc,0x1f8,0xfc,0x1f8,0xfc,0x1fc,0xfc,0xfc,0xfc,0xfc, + 0x1fc,0xfc,0x1f8,0xfc,0xfc01f8,0xfc,0x1fc01f8,0xfc,0x1fc01f8,0x7c,0x1fe01f8,0x7e,0x3fe01f8,0x7e,0x3fe01f0,0x7e, + 0x3fe03f0,0x7e,0x3df03f0,0x7e,0x7df03f0,0x7e,0x7df03f0,0x3e,0x7cf03f0,0x3e,0x78f83e0,0x3f,0xf8f83e0,0x3f,0xf8f87e0,0x3f, + 0xf87c7e0,0x3f,0x1f07c7e0,0x1f,0x1f07c7e0,0x1f,0x1f07c7e0,0x1f,0x1f03e7c0,0x1f,0x1e03e7c0,0x1f,0x3e03e7c0,0x1f,0xbe01e7c0,0x1f, + 0xbc01f7c0,0xf,0xbc01ffc0,0xf,0xfc01ff80,0xf,0xfc00ff80,0xf,0xf800ff80,0xf,0xf800ff80,0xf,0xf800ff80,0x7,0xf8007f80,0x7, + 0xf0007f80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0,0x7f,0x800007f0,0x3f,0x80000fe0,0x3f,0xc0000fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f00,0x7,0xf0007f00,0x3,0xf800fe00,0x3,0xfc00fc00,0x1,0xfc01fc00,0x0,0xfe03f800,0x0, + 0x7f03f000,0x0,0x3f07f000,0x0,0x3f8fe000,0x0,0x1fcfc000,0x0,0xfdfc000,0x0,0xfff8000,0x0,0x7ff0000,0x0,0x3ff0000,0x0, + 0x3fe0000,0x0,0x1fc0000,0x0,0x1fe0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0x7ff8000,0x0,0xfdf8000,0x0,0x1fcfc000,0x0, + 0x1f8fe000,0x0,0x3f07e000,0x0,0x7f03f000,0x0,0x7e03f800,0x0,0xfe01fc00,0x0,0xfc00fc00,0x1,0xf800fe00,0x1,0xf8007f00,0x3, + 0xf0007f00,0x7,0xe0003f80,0x7,0xe0001fc0,0xf,0xc0001fc0,0x1f,0x80000fe0,0x3f,0x800007f0,0x3f,0x7f0,0x7f,0x3f8,0xfe, + 0x1fc,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0xfc,0x3f8,0xfe,0x3f8,0x7f,0x7f0,0x7f, + 0x80000fe0,0x3f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xe0001f80,0xf,0xe0003f80,0x7,0xf0007f00,0x7,0xf8007f00,0x3,0xf800fe00,0x1, + 0xfc00fc00,0x1,0xfc01fc00,0x0,0xfe03f800,0x0,0x7f03f000,0x0,0x3f07f000,0x0,0x3f87e000,0x0,0x1f8fc000,0x0,0xfdfc000,0x0, + 0xfff8000,0x0,0x7ff8000,0x0,0x7ff0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0x3f,0xffffffe0,0x3f,0xffffffe0,0x3f,0xffffffe0,0x3f, + 0xffffffe0,0x3f,0xc0000000,0x1f,0xc0000000,0xf,0xe0000000,0xf,0xf0000000,0x7,0xf8000000,0x3,0xfc000000,0x1,0xfc000000,0x1, + 0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x1fc000,0x0,0xfe000,0x0, + 0x7f000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0,0xfe00,0x0,0xfe00,0x0,0x7f00,0x0,0x3f80,0x0, + 0x1fc0,0x0,0xfe0,0x0,0xfe0,0x0,0x7f0,0x0,0xfffffff8,0xff,0xfffffff8,0xff,0xfffffff8,0xff,0xfffffff8,0xff, + 0xfffffff8,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffc000,0x1, + 0xffffc000,0x1,0xffffc000,0x1,0xffffc000,0x1,0xffffc000,0x1,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xffffc000,0x1,0xffffc000,0x1,0xffffc000,0x1,0xffffc000,0x1,0xffffc000,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e0,0x0, + 0x7e0,0x0,0xfc0,0x0,0xfc0,0x0,0x1f80,0x0,0x1f80,0x0,0x3f00,0x0,0x3f00,0x0,0x7e00,0x0, + 0x7e00,0x0,0xfc00,0x0,0x1f800,0x0,0x1f800,0x0,0x3f000,0x0,0x3f000,0x0,0x7e000,0x0,0x7e000,0x0, + 0xfc000,0x0,0xfc000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3f0000,0x0,0x7f0000,0x0,0x7e0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0xfc00000,0x0, + 0x1fc00000,0x0,0x1f800000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0xfc000000,0x0,0xfc000000,0x0, + 0xf8000000,0x1,0xf8000000,0x1,0xf0000000,0x3,0xf0000000,0x7,0xe0000000,0x7,0xc0000000,0xf,0xc0000000,0xf,0x80000000,0x1f, + 0x80000000,0x1f,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffc00,0x0, + 0xffffc00,0x0,0xffffc00,0x0,0xffffc00,0x0,0xffffc00,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xffffc00,0x0,0xffffc00,0x0,0xffffc00,0x0,0xffffc00,0x0,0xffffc00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7df0000,0x0,0x7cf8000,0x0,0x7cf8000,0x0,0xf8f8000,0x0,0xf87c000,0x0,0x1f07c000,0x0,0x1f03e000,0x0,0x3e03e000,0x0, + 0x3e01e000,0x0,0x3e01f000,0x0,0x7c01f000,0x0,0x7c00f800,0x0,0xf800f800,0x0,0xf8007c00,0x0,0xf8007c00,0x1,0xf0007c00,0x1, + 0xf0003e00,0x1,0xe0003e00,0x3,0xe0001f00,0x3,0xe0001f00,0x7,0xc0001f00,0x7,0xc0000f80,0x7,0x80000f80,0xf,0x800007c0,0xf, + 0x800007c0,0x1f,0x7e0,0x1f,0x3e0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x1ff,0xffffffff,0x1ff, + 0xffffffff,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1f80000,0x0,0x3f00000,0x0,0x7e00000,0x0,0xf800000,0x0, + 0xf000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0xfe01f80,0x0,0x3ffc1f80,0x0,0xffff1f80,0x0,0xffff9f80,0x1, + 0xffffdf80,0x3,0xfc07df80,0x3,0xf001ff80,0x7,0xf000ff80,0xf,0xe0007f80,0xf,0xc0007f80,0xf,0xc0003f80,0x1f,0xc0003f80,0x1f, + 0x80003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f, + 0xc0003f80,0xf,0xe0007f80,0xf,0xe0007f80,0xf,0xf000ff80,0x7,0xf803ff80,0x3,0xff0fdf80,0x3,0xffff9f80,0x1,0xffff1f80,0x0, + 0x3ffe1f80,0x0,0xff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x1fff8000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x3,0xfe03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0xf,0xe0003f80,0xf,0xc0001f80,0x1f,0xc0001fc0,0x1f,0xc0000fc0,0x0, + 0xfc0,0x0,0xfe0,0x0,0xfe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0x80000fc0,0xf,0xc0000fc0,0x1f, + 0xc0001fc0,0x1f,0xc0001f80,0xf,0xe0003f80,0xf,0xf0007f00,0x7,0xfc01fe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7ffff000,0x0, + 0x1fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0000000,0xf, + 0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf, + 0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc00e0000,0xf,0xc1ffe000,0xf,0xc3fff800,0xf,0xcffffc00,0xf, + 0xcffffe00,0xf,0xdf01ff00,0xf,0xfc007f00,0xf,0xf8003f80,0xf,0xf0001f80,0xf,0xf0001fc0,0xf,0xe0001fc0,0xf,0xe0000fc0,0xf, + 0xe0000fc0,0xf,0xe0000fc0,0xf,0xe0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc00007e0,0xf,0xc00007e0,0xf, + 0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fc0,0xf,0xe0000fc0,0xf,0xe0000fc0,0xf, + 0xf0001fc0,0xf,0xf0001f80,0xf,0xf8003f80,0xf,0xfc003f80,0xf,0xde00ff00,0xf,0xcfc3ff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc3fff800,0xf,0xffe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf800ff00,0x3,0xf0003f00,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x3f, + 0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0, + 0x80001f80,0x1,0xc0003f80,0x1f,0xc0007f80,0xf,0xf0007f00,0x7,0xf801fe00,0x7,0xff9ffc00,0x3,0xfffff800,0x1,0xfffff000,0x0, + 0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000000,0x3, + 0xfff00000,0x3f,0xfffc0000,0x3f,0xfffe0000,0x3f,0xffff0000,0x3f,0x3ff0000,0x3c,0x7f8000,0x0,0x3f8000,0x0,0x1f8000,0x0, + 0x1fc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f, + 0xffffffe0,0x1f,0xffffffe0,0x1f,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0, + 0xfc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0,0xc0ffe000,0xf,0xc3fff800,0xf,0xc7fffc00,0xf, + 0xcffffe00,0xf,0xdf01ff00,0xf,0xde007f00,0xf,0xfc003f80,0xf,0xf8001f80,0xf,0xf0001f80,0xf,0xf0001fc0,0xf,0xe0000fc0,0xf, + 0xe0000fc0,0xf,0xe0000fc0,0xf,0xc0000fc0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf, + 0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xe0000fc0,0xf,0xe0000fc0,0xf,0xe0000fc0,0xf,0xe0000fc0,0xf,0xf0001fc0,0xf, + 0xf0001f80,0xf,0xf8003f80,0xf,0xfc003f80,0xf,0xdf00ff00,0xf,0xcfe7ff00,0xf,0xc7fffe00,0xf,0xc3fffc00,0xf,0xc1fff000,0xf, + 0xc07fc000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0x7,0xe0003c00,0x7,0xe0007f00,0x7, + 0xf0007f00,0x3,0xf800fe00,0x3,0xfe03fe00,0x1,0xfffffc00,0x1,0xfffff800,0x0,0x7ffff000,0x0,0x1fffc000,0x0,0x1fe0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x7e01f80,0x0,0x3ffc1f80,0x0,0xfffe1f80,0x0,0xffff9f80,0x1, + 0xffffdf80,0x3,0xfc07df80,0x3,0xf801ff80,0x7,0xf000ff80,0x7,0xe0007f80,0x7,0xe0003f80,0xf,0xc0003f80,0xf,0xc0003f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x3fffe00,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffffe00,0x0,0x1ffffe00,0x0,0x1ffffe00,0x0, + 0x1ffffe00,0x0,0x1ffffe00,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0x7f80000,0x0,0x3fe01f0,0x0,0x3fffff0,0x0,0x1fffff0,0x0,0x7ffff0,0x0,0x3fffe0,0x0,0x3fe00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f00,0x0, + 0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0, + 0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0xc0007f00,0x1f,0xe0007f00,0xf,0xf0007f00,0x7, + 0xf8007f00,0x3,0xfc007f00,0x1,0xfc007f00,0x0,0xfe007f00,0x0,0x7f007f00,0x0,0x3f807f00,0x0,0x1fc07f00,0x0,0xfe07f00,0x0, + 0x7f07f00,0x0,0x3f87f00,0x0,0x1fc7f00,0x0,0xfe7f00,0x0,0x7e7f00,0x0,0xff7f00,0x0,0xffff00,0x0,0x1ffff00,0x0, + 0x3ffff00,0x0,0x7f3ff00,0x0,0x7f1ff00,0x0,0xfe07f00,0x0,0x1fc07f00,0x0,0x3f807f00,0x0,0x3f807f00,0x0,0x7f007f00,0x0, + 0xfe007f00,0x0,0xfc007f00,0x1,0xfc007f00,0x1,0xf8007f00,0x3,0xf0007f00,0x7,0xe0007f00,0xf,0xe0007f00,0xf,0xc0007f00,0x1f, + 0x80007f00,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fffc00,0x0, + 0x1fffc00,0x0,0x1fffc00,0x0,0x1fffc00,0x0,0x1fffc00,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffffe0,0x3f,0xffffffe0,0x3f,0xffffffe0,0x3f, + 0xffffffe0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe007c000,0x1,0xf81ff1f0,0x7,0xfc1ff9f0,0xf,0xfe3ff9f0,0x1f, + 0xff3ffdf0,0x1f,0x877e1df0,0x3f,0x3fe0ff0,0x3f,0x3fc07f0,0x3f,0x1fc07f0,0x3f,0x1fc07f0,0x3e,0x1fc03f0,0x3e,0xfc03f0,0x7e, + 0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e, + 0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e, + 0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e,0xfc03f0,0x7e, + 0xfc03f0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00000,0x0,0x7ffc0f80,0x0,0xfffe0f80,0x0,0xffff8f80,0x1, + 0xffffdf80,0x3,0xfc07df80,0x7,0xf801ff80,0x7,0xf000ff80,0x7,0xe0007f80,0xf,0xe0003f80,0xf,0xc0003f80,0xf,0xc0003f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf8007f00,0x7,0xf0003f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f80,0x7,0xf8007f00,0x7,0xfc00fe00,0x3,0xff87fe00,0x1,0xfffffc00,0x0,0x7ffff000,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff00000,0x0,0x3ffc1f80,0x0,0xffff1f80,0x0,0xffff9f80,0x1, + 0xffffdf80,0x3,0xfc07df80,0x7,0xf001ff80,0x7,0xe000ff80,0xf,0xe0007f80,0xf,0xc0007f80,0xf,0xc0003f80,0xf,0xc0003f80,0x1f, + 0x80003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0xf, + 0xc0003f80,0xf,0xe0007f80,0xf,0xe0007f80,0xf,0xf000ff80,0x7,0xf803ff80,0x7,0xff0fdf80,0x3,0xffff9f80,0x1,0xffff1f80,0x0, + 0x7ffe1f80,0x0,0xff01f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0,0xc1ffe000,0xf,0xc3fff800,0xf,0xc7fffc00,0xf, + 0xcffffe00,0xf,0xdf01ff00,0xf,0xfc007f00,0xf,0xf8003f80,0xf,0xf0001f80,0xf,0xf0001fc0,0xf,0xf0001fc0,0xf,0xe0000fc0,0xf, + 0xe0000fc0,0xf,0xe0000fc0,0xf,0xe0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xc00007e0,0xf,0xc00007e0,0xf, + 0xc0000fe0,0xf,0xc0000fe0,0xf,0xc0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fc0,0xf,0xe0000fc0,0xf,0xf0000fc0,0xf, + 0xf0001fc0,0xf,0xf0001f80,0xf,0xf8003f80,0xf,0xfc007f80,0xf,0xde00ff00,0xf,0xcfc3ff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc3fff800,0xf,0xc0ffc000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf, + 0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3,0xff807e00,0xf,0xffe07e00,0xf,0xfff07e00,0xf, + 0xfff87e00,0xf,0xfffcfc00,0xf,0x1fcfc00,0x0,0x7efc00,0x0,0x1efc00,0x0,0xffc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x3fc00,0x0,0x3fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0, + 0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0, + 0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0, + 0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf0007f00,0x7,0xe0003f00,0x7,0xc0001f00,0x7,0xc0001f00,0x0,0x1f00,0x0,0x3f00,0x0, + 0x3f00,0x0,0x7f00,0x0,0x1ff00,0x0,0x1ffe00,0x0,0xfffc00,0x0,0xffff800,0x0,0x3ffff000,0x0,0xffff8000,0x0, + 0xfffc0000,0x3,0xffe00000,0x3,0xfe000000,0x7,0xf0000000,0xf,0xe0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0x80000000,0xf, + 0x80000e00,0xf,0xc0000fc0,0xf,0xc0001f80,0xf,0xe0001f80,0x7,0xf0007f00,0x7,0xff87ff00,0x3,0xfffffe00,0x1,0xfffffc00,0x0, + 0x3ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x78000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0, + 0x7c000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0xffffff80,0x1,0xffffff80,0x1,0xffffff80,0x1, + 0xffffff80,0x1,0xffffff80,0x1,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0xfe000,0x0,0x803fe000,0x7,0xffffc000,0x7,0xffffc000,0x7,0xffff8000,0x7, + 0xfffe0000,0x7,0x3ff80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xe0001f80,0xf,0xe0001f80,0xf, + 0xe0001f80,0xf,0xf0003f80,0xf,0xf8003f80,0xf,0xfc007f00,0xf,0xde00ff00,0xf,0xdfffff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc1fff800,0xf,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x7e,0x3f8,0x7f,0x7f0,0x7f, + 0x7f0,0x3f,0x800007e0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf,0xe0001f80,0xf,0xe0003f80,0x7, + 0xf0003f80,0x7,0xf0003f00,0x7,0xf0007f00,0x3,0xf8007e00,0x3,0xf800fe00,0x1,0xfc00fe00,0x1,0xfc00fc00,0x1,0xfc01fc00,0x0, + 0xfe01f800,0x0,0x7e03f800,0x0,0x7f03f800,0x0,0x3f03f000,0x0,0x3f07f000,0x0,0x3f87e000,0x0,0x1f87e000,0x0,0x1f8fe000,0x0, + 0xfcfc000,0x0,0xfcfc000,0x0,0xfcf8000,0x0,0x7ff8000,0x0,0x7ff8000,0x0,0x3ff0000,0x0,0x3ff0000,0x0,0x3fe0000,0x0, + 0x1fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x1f8,0x7e,0x1f8,0xfc,0x1f8, + 0xfc,0x1f8,0xfc,0x1f8,0xfc,0xfc,0xfc,0xfc,0xf8,0xfc,0x1f8,0xfc,0x1f8,0xfc,0x1fc01f8,0xfc, + 0x1fc01f8,0x7c,0x1fe01f8,0x7e,0x3fe01f0,0x7e,0x3de01f0,0x7e,0x3df03f0,0x7e,0x7df03f0,0x3e,0x7cf03f0,0x3e,0x78f83f0,0x3f, + 0xf8f83e0,0x3f,0xf8783e0,0x3f,0xf07c7e0,0x3f,0xf07c7e0,0x1f,0x1f03c7e0,0x1f,0x9f03e7e0,0x1f,0x9e03e7c0,0x1f,0xbe01e7c0,0x1f, + 0xbe01e7c0,0x1f,0xbc01f7c0,0xf,0xbc01f7c0,0xf,0xfc00f7c0,0xf,0xf800ff80,0xf,0xf800ff80,0xf,0xf8007f80,0x7,0xf8007f80,0x7, + 0xf0007f80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x800007e0,0x3f,0xc0000fc0,0x1f,0xe0001fc0,0xf, + 0xe0003f80,0x7,0xf0003f00,0x7,0xf8007e00,0x3,0xf800fe00,0x1,0xfc00fc00,0x0,0xfe01f800,0x0,0x7f03f000,0x0,0x3f07f000,0x0, + 0x1f87e000,0x0,0x1fcfc000,0x0,0xfdf8000,0x0,0x7ff8000,0x0,0x3ff0000,0x0,0x1fe0000,0x0,0x1fc0000,0x0,0x1fe0000,0x0, + 0x3ff0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0xfcfc000,0x0,0x1f8fe000,0x0,0x3f87e000,0x0,0x7f03f000,0x0,0x7e03f800,0x0, + 0xfc01fc00,0x0,0xfc00fc00,0x1,0xf8007e00,0x3,0xf0007f00,0x3,0xf0003f80,0x7,0xe0001f80,0xf,0xc0000fc0,0x1f,0x80000fe0,0x1f, + 0x800007f0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8,0xfe,0x3f8,0x7e,0x3f0,0x7f, + 0x7f0,0x3f,0x7e0,0x3f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001f80,0xf,0xc0001f80,0xf,0xe0003f80,0x7, + 0xe0003f00,0x7,0xf0003f00,0x3,0xf0007e00,0x3,0xf0007e00,0x3,0xf800fc00,0x1,0xf800fc00,0x1,0xfc00fc00,0x0,0xfc01f800,0x0, + 0xfc01f800,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x3f07e000,0x0,0x3f07e000,0x0,0x1f07c000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0, + 0xfdf8000,0x0,0xfdf8000,0x0,0x7df0000,0x0,0x7ff0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0xf80000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f8000,0x0, + 0x1f8000,0x0,0x1fe000,0x0,0xff000,0x0,0x7ffc0,0x0,0x3ffc0,0x0,0x1ffc0,0x0,0xffc0,0x0,0x1fc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xffffff80,0x7,0xf0000000,0x7,0xf8000000,0x3,0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x3f000000,0x0, + 0x1f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0, + 0x7f0000,0x0,0x3f8000,0x0,0x1fc000,0x0,0xfe000,0x0,0x7e000,0x0,0x3f000,0x0,0x3f800,0x0,0x1fc00,0x0, + 0xfe00,0x0,0x7f00,0x0,0x3f80,0x0,0x1f80,0x0,0x1fc0,0x0,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f, + 0xffffffe0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0xf, + 0xffc00000,0xf,0xffe00000,0xf,0xfff00000,0xf,0xfff80000,0xf,0x3f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x7e0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3fc000,0x0,0x1ff000,0x0,0xfff00,0x0,0x3ff00,0x0,0xff00,0x0, + 0x3ff00,0x0,0xfff00,0x0,0x1ff000,0x0,0x3fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0xfe0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x1fc0000,0x0,0x3f80000,0x0,0xfff80000,0xf,0xfff00000,0xf,0xffe00000,0xf,0xffc00000,0xf,0xfe000000,0xf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc0,0x0, + 0xfffc0,0x0,0x3fffc0,0x0,0x7fffc0,0x0,0x7fffc0,0x0,0xff0000,0x0,0xfc0000,0x0,0x1fc0000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x3f80000,0x0,0x3f00000,0x0,0x7f00000,0x0,0xfe00000,0x0,0x3fc00000,0x0,0xff800000,0x3,0xff000000,0x3,0xf8000000,0x3, + 0xfe000000,0x3,0xff800000,0x3,0x7fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7fffc0,0x0,0x7fffc0,0x0,0x3fffc0,0x0,0xfffc0,0x0,0x3ffc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x0,0xfff80,0x0, + 0x7fffe0,0x30,0x3fffff0,0x3c,0xfffffff0,0x3f,0xfffe01f0,0x3f,0xfff00030,0x3f,0xff800010,0xf,0xf8000000,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0xe6798018,0x39,0xe6798018,0x1b,0x79999f98,0x10e,0x79999f98,0x18c,0x19f99f98,0x1f8,0x19f99f98,0x1f8,0x6019f98,0x1fc,0x6019f98,0x1fe, + 0x6018018,0xee,0x6018018,0xee,0x9999fff8,0x1bb,0x9999fff8,0x13b,0x87980000,0x13f,0x87980000,0x13f,0x1e198018,0xf8,0x1e198018,0xf0, + 0x601e61e0,0x1b0,0x601e61e0,0x138,0xe7f9e618,0x3f,0xe7f9e618,0x3f,0xe3f81ff8,0x100,0x61f81ff8,0x100,0x678187f8,0x1c,0x678187f8,0x3e, + 0xe07800,0x138,0x607800,0x130,0x1fbff838,0x0,0x1f9ff878,0x0,0x1ffffc78,0x0,0x19fe7f98,0xe,0x19feff98,0x4,0x1801ff98,0x1c0, + 0x3801ffd8,0x1c0,0xfe1807e0,0x1c1,0xfe1807e0,0x1c3,0x1e07e180,0xe,0x3e07e180,0xe,0x61e019e0,0xe,0xc1e019e0,0xe,0x867ff860,0x3f, + 0x867ff860,0x1f,0x86780000,0x10f,0x6780000,0x18f,0x1f81fff8,0xce,0x1f81fff8,0xee,0x80618018,0x13b,0x80618018,0x11b,0xf9e19f98,0xf, + 0xf9e19f98,0xf,0xfe019f98,0x1ff,0xfe019f98,0x1ff,0x79e19f98,0xee,0x79e19f98,0xce,0x18018018,0xe,0x18018018,0x4,0x79f9fff8,0x40, + 0x79f9fff8,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffe0,0x0,0x3ffffe0,0x0,0x3ffffe0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffffff,0x1ff,0xffffffff,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x1ffff8,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0, + 0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x180018,0x0,0x1ffff8,0x0, + 0x1ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0, + 0xf00000,0x0,0x7fe0000,0x0,0x3fffc000,0x0,0xfffff000,0x0,0xfffff800,0x1,0xfffffc00,0x3,0xf8f1fe00,0x7,0xf0f0ff00,0xf, + 0xe0f07f80,0xf,0xc0f03f80,0x1f,0xc0f01fc0,0x1f,0x80f00fc0,0x1f,0xf00fc0,0x0,0xf00fc0,0x0,0xf00fe0,0x0,0xf007e0,0x0, + 0xf007e0,0x0,0xf007e0,0x0,0xf007e0,0x0,0xf007e0,0x0,0xf007e0,0x0,0xf007e0,0x0,0xf007e0,0x0,0xf00fe0,0x0, + 0xf00fc0,0x0,0x80f00fc0,0x3f,0x80f01fc0,0x1f,0x80f01fc0,0x1f,0xc0f03f80,0x1f,0xe0f07f80,0xf,0xf0f0ff00,0xf,0xfcf1fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7ffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0, + 0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fff0000,0x0,0xffffc000,0x0,0xffffe000,0x3,0xfffff000,0x7, + 0xfffff800,0x7,0xf003f800,0xf,0xe001fc00,0xf,0xc000fc00,0x7,0xc000fe00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x1ffffff8,0x0,0x1ffffff8,0x0,0x1ffffff8,0x0,0x1ffffff8,0x0,0x1ffffff8,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x3f00,0x0,0x3f00,0x0, + 0x3f80,0x0,0x1fc0,0xfc,0xfe0,0xfc,0x7f0,0xfe,0xfffffffc,0x7f,0xfffffffc,0x7f,0xfffffffc,0x3f,0xfffffffc,0x1f, + 0xfffffffc,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x200,0x2,0x3ff0700,0x7,0x9fffcf80,0xf,0xffffffc0,0x1f,0xffffff80,0xf, + 0xffffff00,0x7,0xfe03fe00,0x3,0xf800fe00,0x3,0xf0007f00,0x3,0xe0003f00,0x7,0xc0001f80,0x7,0xc0001f80,0xf,0xc0000f80,0xf, + 0x80000f80,0xf,0x80000f80,0xf,0x80000f80,0xf,0x80000f80,0xf,0x80000f80,0xf,0xc0000f80,0xf,0xc0001f80,0xf,0xe0001f00,0x7, + 0xf0003f00,0x7,0xf8007f00,0x3,0xfc01fe00,0x3,0xff87fe00,0x3,0xffffff00,0x7,0xffffff80,0xf,0xffffffc0,0x1f,0x8fff8f80,0xf, + 0x1fc0700,0x7,0x200,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8,0xfe,0x3f8,0x7e,0x7f0,0x7f,0x800007e0,0x3f, + 0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0xf,0xe0001f80,0xf,0xf0003f00,0x7,0xf0007f00,0x3,0xf8007e00,0x3,0xf800fe00,0x1, + 0xfc00fc00,0x1,0xfe01f800,0x0,0x7e03f800,0x0,0x7f03f000,0x0,0x3f07f000,0x0,0x1f87e000,0x0,0x1f8fc000,0x0,0xfdfc000,0x0, + 0xfff8000,0x0,0x7ff0000,0x0,0x3ff0000,0x0,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f, + 0xffffffe0,0x1f,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0, + 0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x1,0xff07fc00,0x3,0xf800fe00,0x3,0xe0007e00,0x7,0xc0003f00,0x7,0xc0001f00,0xf, + 0xc0001f00,0x0,0x1f00,0x0,0x3f00,0x0,0x3f00,0x0,0x7e00,0x0,0x1fe00,0x0,0xffc00,0x0,0x7ff800,0x0, + 0x7fff000,0x0,0x3fffc000,0x0,0xffffe000,0x0,0xfffff800,0x1,0xff01fc00,0x3,0xfc007e00,0x7,0xf0003e00,0xf,0xc0001f00,0xf, + 0x80001f00,0xf,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0xf,0x80003f00,0xf,0xc0007f00,0xf,0xe001fe00,0x7, + 0xf807fe00,0x3,0xfffffc00,0x1,0xfffff000,0x0,0x1fffc000,0x0,0x7ffe0000,0x0,0xfff00000,0x1,0xff000000,0x3,0xfc000000,0x7, + 0xf0000000,0x7,0xc0000000,0xf,0xc0000000,0xf,0x80000000,0xf,0x80000000,0xf,0x80000600,0xf,0x80000fc0,0xf,0xc0000fc0,0xf, + 0xc0001f80,0xf,0xe0003f80,0x7,0xf800ff00,0x3,0xfffffe00,0x3,0xfffffc00,0x0,0x7ffff000,0x0,0xfffc000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0xfffc000,0x0,0x3ffff000,0x0,0xffdffc00,0x0,0xf8007e00,0x1,0xe0001f00,0x7,0x80000f80,0xf,0x7c0,0xf,0x3c0,0x1e, + 0x1e0,0x3c,0xf800e0,0x3c,0x7ff00f0,0x38,0xfffc070,0x70,0x1fffe078,0x70,0x3f03f038,0xf0,0x7c01f038,0xe0,0x7800f83c,0xe0, + 0x7800783c,0xe0,0x7c1c,0x1e0,0x7c1c,0x1c0,0x3c1c,0x1c0,0x3c1c,0x1c0,0x3c1c,0x1c0,0x3c1c,0x1c0,0x3c1c,0x1c0, + 0x3c1c,0x1c0,0x3c1c,0x1c0,0x3c1c,0x1c0,0x3c1c,0x1c0,0x7c1c,0x1c0,0x7c1c,0x1e0,0xf000781c,0xe0,0xf800f83c,0xe0, + 0x7c01f03c,0xe0,0x7e03f038,0xe0,0x3f8fe038,0xf0,0x1fffc078,0x70,0xfff8070,0x78,0x3fe00f0,0x38,0x1e0,0x3c,0x1e0,0x1e, + 0x3c0,0x1e,0x80000780,0xf,0xc0000f00,0x7,0xf0003e00,0x3,0xfe01fc00,0x1,0x7ffff800,0x0,0x1fffe000,0x0,0x3ff0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x7ffe000,0x0,0xffff000,0x0,0x1f81f800,0x0,0x3f007c00,0x0,0x3e003e00,0x0,0x7c003e00,0x0, + 0x7c003e00,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7fffc000,0x0,0x7ffff800,0x0,0x7dfffc00,0x0,0x7c007e00,0x0, + 0x7c003f00,0x0,0x7c001f00,0x0,0x7c001f00,0x0,0x7e000f00,0x0,0x7f001f00,0x0,0x7f001f00,0x0,0x7fc03f00,0x0,0xfdf07f00,0x0, + 0xf8fffe00,0x7,0xf87ffc00,0x7,0xe01ff800,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f8000,0x3f,0x801f8000,0x3f,0xc01fc000,0x1f,0xe00fe000,0xf,0xf007f000,0x7,0xf803f800,0x3, + 0xfc01fc00,0x1,0xfe00fe00,0x0,0x7f007f00,0x0,0x3f803f80,0x0,0x1fc01fc0,0x0,0x1fc00fe0,0x0,0xfe00fe0,0x0,0x7e007e0,0x0, + 0xfe00fe0,0x0,0x1fc01fc0,0x0,0x3f803f80,0x0,0x7f007f00,0x0,0xfe00fe00,0x0,0xfc01fc00,0x1,0xf801fc00,0x3,0xf803f800,0x3, + 0xf007f000,0x7,0xe00fe000,0xf,0xc01fc000,0x1f,0x803f8000,0x3f,0x3f0000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0x0,0x3e,0x0,0x3e,0x0,0x3e, + 0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3e, + 0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0xfffc000,0x0,0x3ffff000,0x0,0xffdffc00,0x0,0xf8007e00,0x1,0xe0001f00,0x7,0x80000f80,0xf,0x7c0,0xf,0x3c0,0x1e, + 0x1e0,0x3c,0xe0,0x3c,0x7fff0f0,0x38,0x1ffff070,0x70,0x3ffff078,0x70,0x7f00f038,0xf0,0x7c00f038,0xe0,0xf800f03c,0xe0, + 0xf800f03c,0xe0,0xf000f01c,0x1e0,0xf000f01c,0x1c0,0xf800f01c,0x1c0,0xf800f01c,0x1c0,0x7c00f01c,0x1c0,0x7e00f01c,0x1c0,0x3ffff01c,0x1c0, + 0x1ffff01c,0x1c0,0x7fff01c,0x1c0,0x3fff01c,0x1c0,0x3c0f01c,0x1c0,0x780f01c,0x1c0,0xf80f01c,0x1e0,0xf00f01c,0xe0,0x1f00f03c,0xe0, + 0x3e00f03c,0xe0,0x3e00f038,0xe0,0x7c00f038,0xf0,0x7800f078,0x70,0xf800f070,0x78,0xf000f0f0,0x39,0x1e0,0x3c,0x1e0,0x1e, + 0x3c0,0x1e,0x80000780,0xf,0xc0000f00,0x7,0xf0003e00,0x3,0xfe01fc00,0x1,0x7ffff800,0x0,0x1fffe000,0x0,0x3ff0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x1ff,0xffffffff,0x1ff,0xffffffff,0x1ff,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf80000,0x0,0x3ff0000,0x0,0xfff8000,0x0,0x1fffc000,0x0,0x1f03e000,0x0, + 0x3c01e000,0x0,0x3c00f000,0x0,0x7800f000,0x0,0x78007000,0x0,0x78007000,0x0,0x78007000,0x0,0x7800f000,0x0,0x7800f000,0x0, + 0x3c01f000,0x0,0x3e03e000,0x0,0x1f87c000,0x0,0xfffc000,0x0,0x7ff0000,0x0,0x1fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xfffffff0,0x3f,0xfffffff0,0x3f, + 0xfffffff0,0x3f,0xfffffff0,0x3f,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f, + 0xfffffff0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf00000,0x0,0x7ff0000,0x0,0x1fff8000,0x0,0x1fffc000,0x0,0x3f07e000,0x0,0x3e01f000,0x0,0x7c01f000,0x0, + 0x7c00f000,0x0,0x7c00f000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x3c000000,0x0,0x3e000000,0x0,0x1f000000,0x0,0xf800000,0x0, + 0x7c00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x3f0000,0x0,0x1f8000,0x0,0xfc000,0x0,0x7e000,0x0, + 0x3f000,0x0,0x1f000,0x0,0xf800,0x0,0x7ffff800,0x0,0x7ffff800,0x0,0x7ffff800,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x700000,0x0,0x7ff0000,0x0,0x1fff8000,0x0,0x3fffe000,0x0,0x3f07e000,0x0,0x7e01f000,0x0,0x7c01f000,0x0, + 0x7c00f000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x3c000000,0x0,0x3e000000,0x0,0x1f800000,0x0,0xff80000,0x0,0x1f80000,0x0, + 0xff80000,0x0,0x1ff80000,0x0,0x3e000000,0x0,0x7c000000,0x0,0x78000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf800f800,0x0, + 0x7800f800,0x0,0x7c01f000,0x0,0x7e03f000,0x0,0x3fffe000,0x0,0x1fffc000,0x0,0xfff8000,0x0,0x1fc0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x1f0000,0x0,0xf8000,0x0, + 0x7c000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0000fe0,0x1f,0xc0000fe0,0x1f, + 0xe0000fe0,0x1f,0xf0001fe0,0x1f,0xf8003fe0,0x1f,0xfc007fe0,0x1f,0xbe00ffe0,0x1f,0x9fffffe0,0x1f,0x8ffff7e0,0x1f,0x87ffe7e0,0x1f, + 0x83ffcfe0,0x1f,0xff0fe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffe000,0x1f,0xfffffc00,0x1f,0xfffffe00,0x1f,0xffffff00,0x1f, + 0xf03fff80,0x1,0xf03fffc0,0x1,0xf03fffc0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1, + 0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffe0,0x1,0xf03fffc0,0x1,0xf03fffc0,0x1,0xf03fff80,0x1, + 0xf03fff00,0x1,0xf03ffe00,0x1,0xf03ffc00,0x1,0xf03fe000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1, + 0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1, + 0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1, + 0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1, + 0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0xf03e0000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf00,0x0,0x700,0x0,0x780,0x0,0x780,0x0,0x3f80,0x0,0x7fc0,0x0,0xffc0,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0xf800,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0, + 0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf80000,0x0,0xfc0000,0x0,0xfe0000,0x0,0xff8000,0x0,0xfffc00,0x0,0xfbfc00,0x0, + 0xf9fc00,0x0,0xf83c00,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xfffffc00,0x0,0xfffffc00,0x0,0xfffffc00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe0000,0x0,0xfff8000,0x0,0x3fffe000,0x0,0x7ffff000,0x0,0xfc01f800,0x0,0xf800fc00,0x1,0xf0007c00,0x1, + 0xf0003e00,0x1,0xe0003e00,0x3,0xe0003e00,0x3,0xe0001f00,0x3,0xe0001f00,0x3,0xe0001f00,0x3,0xe0001f00,0x3,0xe0001f00,0x3, + 0xe0001f00,0x3,0xe0003f00,0x3,0xe0003e00,0x3,0xf0003e00,0x3,0xf0007e00,0x1,0xf8007c00,0x1,0xfc00f800,0x0,0x7f03f800,0x0, + 0x3ffff000,0x0,0x1fffc000,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7f007f0,0x0,0xfe00fe0,0x0,0x1fc01fc0,0x0,0x3f803f80,0x0,0x7f007f00,0x0,0xfe007e00,0x0, + 0xfc00fe00,0x1,0xfc01fc00,0x1,0xf803f800,0x3,0xf007f000,0x7,0xe00fe000,0xf,0xc01fc000,0x1f,0x803f8000,0x3f,0x3f8000,0x3f, + 0x801fc000,0x3f,0xc01fc000,0x1f,0xe00fe000,0xf,0xf007f000,0x7,0xf803f800,0x3,0xfc01fc00,0x1,0xfe00fe00,0x0,0x7f007f00,0x0, + 0x3f803f80,0x0,0x1fc01fc0,0x0,0xfe00fe0,0x0,0x7e007f0,0x0,0x3f003f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000f80,0x7,0xc0000fc0,0x3,0xc0000fe0,0x3,0xe0000ff8,0x1, + 0xe0000ffe,0x1,0xf0000fbe,0x0,0xf0000f9e,0x0,0x78000f86,0x0,0x78000f80,0x0,0x3c000f80,0x0,0x3c000f80,0x0,0x1e000f80,0x0, + 0x1e000f80,0x0,0xf000f80,0x0,0x7000f80,0x0,0x7800f80,0x0,0x3800f80,0x0,0x3c00f80,0x0,0x1e00f80,0x0,0x1e00f80,0x0, + 0xf00f80,0x3e,0xf00f80,0x3f,0x8078fff8,0x3f,0xc078fff8,0x3f,0xc03cfff8,0x3d,0xe03cfff8,0x3d,0xf01e0000,0x3c,0x701e0000,0x3c, + 0x780f0000,0x3c,0x3c0f0000,0x3c,0x1e078000,0x3c,0xe078000,0x3c,0xf03c000,0x3c,0x783c000,0x3c,0x381e000,0x3c,0x1c1e000,0x3c, + 0x1e0f000,0x3c,0xffe0f000,0x1ff,0xffe07800,0x1ff,0xffe07800,0x1ff,0x3c00,0x3c,0x1e00,0x3c,0x1e00,0x3c,0xf00,0x3c, + 0xf00,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0000780,0x3,0xc00007c0,0x3,0xe00007e0,0x1,0xe00007f8,0x1, + 0xf00007fe,0x0,0xf00007be,0x0,0x7800079e,0x0,0x78000786,0x0,0x3c000780,0x0,0x3c000780,0x0,0x1e000780,0x0,0x1e000780,0x0, + 0xf000780,0x0,0x7000780,0x0,0x7800780,0x0,0x3800780,0x0,0x3c00780,0x0,0x1e00780,0x0,0x1e00780,0x0,0xc0f00780,0x7, + 0xf0f00780,0x3f,0xfc780780,0x7f,0xfe787ffc,0xff,0x3e3c7ffc,0xf8,0x1f3c7ffc,0x1f0,0xf1e7ffc,0x1f0,0xf1e0000,0x1f0,0xf0000,0x1f0, + 0xf0000,0x1f0,0x78000,0xf8,0x78000,0xf8,0x3c000,0x7c,0x3c000,0x3e,0x1e000,0x1f,0xc001e000,0xf,0xe000f000,0x7, + 0xf000f000,0x3,0xf8007800,0x0,0x7c003800,0x0,0x3e003c00,0x0,0x1f001e00,0x0,0xf001e00,0x0,0xff800f00,0x1ff,0xff800f00,0x1ff, + 0xff800780,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x700,0x0,0x3fe0,0xf,0x8000fff0,0x7,0x8001fff8,0x7,0xc001f8fc,0x3, + 0xc001f07c,0x3,0xe003e03e,0x1,0xe003e03e,0x0,0xf001e000,0x0,0x7001e000,0x0,0x7801f000,0x0,0x3c00fc00,0x0,0x3c003f80,0x0, + 0x1e003f80,0x0,0x1e00ff80,0x0,0xf01fc00,0x0,0xf01f000,0x0,0x783e000,0x0,0x783c000,0x0,0x3c3c000,0x0,0x3c3c03e,0x0, + 0x1e3e03e,0x3e,0x1e3e07c,0x3f,0x80f1fdfc,0x3f,0xc0f0fff8,0x3f,0xc0787ff0,0x3d,0xe0781fc0,0x3d,0xf03c0000,0x3c,0x703c0000,0x3c, + 0x781e0000,0x3c,0x3c1e0000,0x3c,0x1e0f0000,0x3c,0xe0f0000,0x3c,0xf078000,0x3c,0x7838000,0x3c,0x383c000,0x3c,0x1c1e000,0x3c, + 0x1e1e000,0x3c,0xffe0f000,0x1ff,0xffe0f000,0x1ff,0xffe07800,0x1ff,0x7800,0x3c,0x3c00,0x3c,0x3c00,0x3c,0x1e00,0x3c, + 0x1e00,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7e00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0, + 0xff0000,0x0,0x7f8000,0x0,0x3fc000,0x0,0x1ff000,0x0,0x7f800,0x0,0x3fc00,0x0,0x1fe00,0x0,0xff00,0x0, + 0x3f80,0x0,0x3f80,0x0,0x1fc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80000fc0,0x3f,0xc0001fc0,0x1f,0xe0003f80,0x1f,0xf0007f80,0xf,0xfc01ff00,0xf,0xffffff00,0x7,0xfffffe00,0x3, + 0xfffff800,0x0,0x3fffe000,0x0,0xfff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x3f800,0x0,0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f00000,0x0, + 0x1e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f00000,0x0,0xf80000,0x0,0x7c0000,0x0, + 0x3e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fcfc000,0x0,0x3f07e000,0x0,0x7c01f000,0x0,0xf8007c00,0x0, + 0xe0003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0xc003c000,0x1,0xe00ff000,0x1,0xe03ff800,0x1,0xf0fffc00,0x1,0xfffffc00,0x0,0xfff83c00,0x0,0x7fe01e00,0x0,0x3f801e00,0x0, + 0x4001e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0, + 0x7e01f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x0,0x0,0xf80000,0x0,0x3ff0000,0x0,0xfff8000,0x0,0x1fffc000,0x0,0x1f87c000,0x0,0x1e03e000,0x0, + 0x3e01e000,0x0,0x3e01e000,0x0,0x1e03e000,0x0,0x1f87c000,0x0,0x1fffc000,0x0,0xfff8000,0x0,0x3ff0000,0x0,0x3ff0000,0x0, + 0x7ff0000,0x0,0x7df0000,0x0,0xfdf8000,0x0,0xfcf8000,0x0,0xf8fc000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0,0x1f07e000,0x0, + 0x3f07e000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e01f800,0x0,0xfc01f800,0x0,0xfc01f800,0x0,0xfc00fc00,0x0, + 0xf800fc00,0x1,0xf800fc00,0x1,0xf8007e00,0x3,0xf0007e00,0x3,0xf0007f00,0x3,0xf0003f00,0x7,0xe0003f00,0x7,0xe0003f80,0x7, + 0xffffff80,0xf,0xffffff80,0xf,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffe0,0x1f,0x800007e0,0x3f,0x7e0,0x3f,0x7f0,0x3f, + 0x3f0,0x7f,0x3f0,0x7e,0x3f8,0x7e,0x1f8,0xfe,0x1fc,0xfc,0x1fc,0x1fc,0xfc,0x1fc,0xfe,0x1f8, + 0x7e,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffe0000,0xff,0xffff0000,0xff,0xffff0000,0xff,0xffff0000,0xff, + 0xffff8000,0xff,0xfcf8000,0x0,0xfc78000,0x0,0xfc7c000,0x0,0xfc7c000,0x0,0xfc7c000,0x0,0xfc3e000,0x0,0xfc3e000,0x0, + 0xfc3f000,0x0,0xfc1f000,0x0,0xfc1f000,0x0,0xfc1f800,0x0,0xfc0f800,0x0,0xfc0f800,0x0,0xfc0fc00,0x0,0xfc07c00,0x0, + 0xffc07c00,0x7f,0xffc03e00,0x7f,0xffc03e00,0x7f,0xffc03f00,0x7f,0xffc01f00,0x7f,0xfc01f00,0x0,0xfffff80,0x0,0xfffff80,0x0, + 0xfffff80,0x0,0xfffffc0,0x0,0xfffffc0,0x0,0xfffffc0,0x0,0xfc007e0,0x0,0xfc003e0,0x0,0xfc003f0,0x0,0xfc003f0,0x0, + 0xfc001f0,0x0,0xfc001f8,0x0,0xfc001f8,0x0,0xfc000f8,0x0,0xffc000fc,0x1ff,0xffc000fc,0x1ff,0xffc0007c,0x1ff,0xffc0007e,0x1ff, + 0xffc0007e,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fff8000,0x0,0x7fffe000,0x0,0xfffff800,0x1,0xfffffc00,0x3, + 0xff1ffe00,0x7,0xf801fe00,0xf,0xf000ff00,0xf,0xe0007f80,0x1f,0xc0003f80,0x1f,0x80003fc0,0x3f,0x1fc0,0x3f,0x1fc0,0xf, + 0xfe0,0x1,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7f0,0x0, + 0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7e0,0x0,0x7e0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x1e,0x1fc0,0x7e,0x1fc0,0x7f,0x3f80,0x3f, + 0x80003f80,0x3f,0xc0007f00,0x1f,0xe000ff00,0x1f,0xf001fe00,0xf,0xfc0ffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0xffffe000,0x0, + 0x3fff8000,0x0,0x7fc0000,0x0,0x700000,0x0,0x780000,0x0,0x780000,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffc0000,0x0, + 0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0xf800000,0x0,0xffe0000,0x0,0x7fe0000,0x0,0x1fe0000,0x0, + 0xc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 200 + 0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0,0x3f00000,0x0, + 0x3c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x7, + 0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f80000,0x0,0xf80000,0x0,0x7c0000,0x0, + 0x1e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x7, + 0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fcfc000,0x0,0x3f07e000,0x0,0x7c01f000,0x0,0xf8007c00,0x0, + 0xe0003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x7, + 0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x7c03e000,0x0,0x7c03e000,0x0,0x7c03e000,0x0,0x7c03e000,0x0,0x7c03e000,0x0,0x7c03e000,0x0, + 0x7c03e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f, + 0xffffffc0,0x1f,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x7, + 0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xffffffc0,0x7,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0x7f800,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0x7c0000,0x0,0xf80000,0x0,0x1f00000,0x0, + 0x3e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0, + 0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fcfc000,0x0,0x3f07e000,0x0,0x7c01f000,0x0,0xf8007c00,0x0, + 0xe0003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0, + 0x7e01f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffc0,0x0,0x7ffffc0,0x0,0x1fffffc0,0x0,0x7fffffc0,0x0, + 0xffffffc0,0x0,0xffe00fc0,0x1,0xff000fc0,0x3,0xfc000fc0,0x7,0xf0000fc0,0x7,0xe0000fc0,0xf,0xe0000fc0,0xf,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x7f, + 0x3ffffe,0x7f,0x3ffffe,0x7f,0x3ffffe,0x7f,0x3ffffe,0x7f,0x3ffffe,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f, + 0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xe0000fc0,0xf,0xe0000fc0,0xf, + 0xf0000fc0,0x7,0xf8000fc0,0x7,0xfe000fc0,0x3,0xff800fc0,0x1,0xffffffc0,0x0,0x7fffffc0,0x0,0x3fffffc0,0x0,0xfffffc0,0x0, + 0x1ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0xc003c000,0x1,0xe00ff000,0x1,0xe03ff800,0x1,0xf0fffc00,0x1,0xfffffc00,0x0,0xfff83c00,0x0,0x7fe01e00,0x0,0x3f801e00,0x0, + 0x4001e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80003fc0,0x1f,0x80003fc0,0x1f,0x80007fc0,0x1f,0x80007fc0,0x1f, + 0x8000ffc0,0x1f,0x8000ffc0,0x1f,0x8001ffc0,0x1f,0x8001ffc0,0x1f,0x8003f7c0,0x1f,0x8003f7c0,0x1f,0x8003e7c0,0x1f,0x8007efc0,0x1f, + 0x8007cfc0,0x1f,0x800fcfc0,0x1f,0x800f8fc0,0x1f,0x801f8fc0,0x1f,0x801f8fc0,0x1f,0x803f0fc0,0x1f,0x803f0fc0,0x1f,0x807e0fc0,0x1f, + 0x807e0fc0,0x1f,0x80fc0fc0,0x1f,0x80fc0fc0,0x1f,0x80f80fc0,0x1f,0x81f80fc0,0x1f,0x81f00fc0,0x1f,0x83f00fc0,0x1f,0x83e00fc0,0x1f, + 0x87e00fc0,0x1f,0x87e00fc0,0x1f,0x8fc00fc0,0x1f,0x8fc00fc0,0x1f,0x9f800fc0,0x1f,0x9f800fc0,0x1f,0xbf000fc0,0x1f,0xbf000fc0,0x1f, + 0xfe000fc0,0x1f,0xfe000fc0,0x1f,0xfc000fc0,0x1f,0xfc000fc0,0x1f,0xf8000fc0,0x1f,0xf8000fc0,0x1f,0xf8000fc0,0x1f,0xf0000fc0,0x1f, + 0xf0000fc0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0x7f800,0x0,0x7f000,0x0,0xfe000,0x0,0x1f8000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xf80000,0x0,0x1f00000,0x0, + 0x3e00000,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0xff000000,0x0,0x7f800000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0xf80000,0x0,0x7c0000,0x0, + 0x3e0000,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fcfc000,0x0,0x3f07e000,0x0,0x7c01f000,0x0,0xf8007c00,0x0, + 0xe0003c00,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0xc003c000,0x1,0xe00ff000,0x1,0xe03ff800,0x1,0xf0fffc00,0x1,0xfffffc00,0x0,0xfff83c00,0x0,0x7fe01e00,0x0,0x3f801e00,0x0, + 0x4001e00,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0, + 0x7e03f000,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0,0xfffffc00,0x1, + 0xffcffe00,0x3,0xfc01ff00,0x3,0xf8007f00,0x7,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fe0,0x1f, + 0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007f0,0x3f,0x800007f0,0x3f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x3f,0x7f0,0x3f,0x7f0,0x3f, + 0x800007f0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x1f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ff00,0x3,0xff07fe00,0x3,0xfffffc00,0x1,0xfffff800,0x0,0x3ffff000,0x0, + 0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x200,0x2,0x700,0x7,0x80000f80,0xf,0xc0001fc0,0x1f,0xe0003f80,0xf, + 0xf0007f00,0x7,0xf800fe00,0x3,0xfc01fc00,0x1,0xfe03f800,0x0,0x7f07f000,0x0,0x3f8fe000,0x0,0x1fdfc000,0x0,0xfff8000,0x0, + 0x7ff0000,0x0,0x3fe0000,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fdfc000,0x0,0x3f8fe000,0x0, + 0x7f07f000,0x0,0xfe03f800,0x0,0xfc01fc00,0x1,0xf800fe00,0x3,0xf0007f00,0x7,0xe0003f80,0xf,0xc0001fc0,0x1f,0x80000f80,0xf, + 0x700,0x7,0x200,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x70,0xfffc000,0xf8,0x3ffff000,0x78,0xfffff800,0x7c,0xfffffc00,0x3f, + 0xffcffe00,0x1f,0xfc01ff00,0xf,0xf8007f00,0xf,0xf0003f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0x1f,0xf0001fc0,0x1f,0xf8000fe0,0x1f, + 0xfc000fe0,0x1f,0xbc000fe0,0x3f,0xbe0007e0,0x3f,0x9f0007f0,0x3f,0x8f8007f0,0x3f,0x78007f0,0x3f,0x7c007f0,0x3f,0x3e007f0,0x3f, + 0x1f007f0,0x7f,0xf007f0,0x7f,0xf807f0,0x7f,0x7c07f0,0x7f,0x3e07f0,0x7f,0x1e07f0,0x3f,0x1f07f0,0x3f,0xf87f0,0x3f, + 0x8007c7f0,0x3f,0x8007c7f0,0x3f,0x8003efe0,0x3f,0x8001ffe0,0x3f,0x8000ffe0,0x1f,0xc000ffe0,0x1f,0xc0007fc0,0x1f,0xc0003fc0,0xf, + 0xe0003fc0,0xf,0xf0003f80,0xf,0xf0007f80,0x7,0xfc00ffc0,0x3,0xff07ffe0,0x3,0xffffffe0,0x1,0xfffff9f0,0x0,0x3ffff0f8,0x0, + 0x1fffc07c,0x0,0x3ff0070,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0x3f800,0x0,0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f00000,0x0, + 0x1e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0001fc0,0xf,0xf0003f80,0xf,0xf8007f80,0x7,0xfe03ff00,0x3,0xfffffe00,0x3,0xfffffe00,0x1,0xfffff800,0x0, + 0x3ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0, + 0x1e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0001fc0,0xf,0xf0003f80,0xf,0xf8007f80,0x7,0xfe03ff00,0x3,0xfffffe00,0x3,0xfffffe00,0x1,0xfffff800,0x0, + 0x3ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fcfc000,0x0,0x3f07e000,0x0,0x7c01f000,0x0,0xf8007c00,0x0, + 0xe0003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0001fc0,0xf,0xf0003f80,0xf,0xf8007f80,0x7,0xfe03ff00,0x3,0xfffffe00,0x3,0xfffffe00,0x1,0xfffff800,0x0, + 0x3ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0, + 0x7e01f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0001fc0,0xf,0xf0003f80,0xf,0xf8007f80,0x7,0xfe03ff00,0x3,0xfffffe00,0x3,0xfffffe00,0x1,0xfffff800,0x0, + 0x3ffff000,0x0,0x7ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0xf80000,0x0,0x7c0000,0x0, + 0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0xfc,0x3f8,0xfe,0x3f8,0x7f,0x7f0,0x7f, + 0x80000fe0,0x3f,0xc0000fe0,0x1f,0xc0001fc0,0x1f,0xe0001f80,0xf,0xe0003f80,0x7,0xf0007f00,0x7,0xf8007f00,0x3,0xf800fe00,0x1, + 0xfc00fc00,0x1,0xfc01fc00,0x0,0xfe03f800,0x0,0x7f03f000,0x0,0x3f07f000,0x0,0x3f87e000,0x0,0x1f8fc000,0x0,0xfdfc000,0x0, + 0xfff8000,0x0,0x7ff8000,0x0,0x7ff0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfffffc0,0x0,0x7fffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x3, + 0xffffffc0,0x7,0xfc000fc0,0xf,0xf0000fc0,0xf,0xe0000fc0,0x1f,0xc0000fc0,0x1f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x1f, + 0xc0000fc0,0x1f,0xe0000fc0,0xf,0xf0000fc0,0xf,0xfe000fc0,0x7,0xffffffc0,0x3,0xffffffc0,0x1,0xffffffc0,0x0,0x3fffffc0,0x0, + 0x3ffffc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0, + 0xfffc000,0x0,0x7ffff800,0x0,0xfffffc00,0x0,0xfffffe00,0x1,0xfe03ff00,0x3,0xf8007f80,0x3,0xf0003f80,0x7,0xe0001f80,0x7, + 0xe0001fc0,0x7,0xe0000fc0,0x7,0xe0000fc0,0x7,0xe0000fc0,0x7,0xe0000fe0,0x7,0xf00007e0,0x3,0xf80007e0,0x3,0xfc0007e0,0x1, + 0xfe0007e0,0x0,0x7f0007e0,0x0,0x3f8007e0,0x0,0x1f8007e0,0x0,0xfc007e0,0x0,0xfc007e0,0x0,0xfc007e0,0x0,0xfc007e0,0x0, + 0xfc007e0,0x0,0x1fc007e0,0x0,0x3f8007e0,0x0,0x7f8007e0,0x0,0xff0007e0,0x1,0xfe0007e0,0x3,0xfc0007e0,0x7,0xf00007e0,0x1f, + 0xe00007e0,0x1f,0xc00007e0,0x3f,0x7e0,0x7f,0x7e0,0x7e,0x7e0,0xfe,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc, + 0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x407e0,0x7e,0x1c07e0,0x7f,0xe3fc07e0,0x3f,0xfffc07e0,0x3f,0xfffc07e0,0x1f, + 0xfffc07e0,0xf,0xfff00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc00,0x0,0x3f800,0x0,0x7f000,0x0,0xfe000,0x0,0x1f8000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xf80000,0x0, + 0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0, + 0x1e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc0000,0x0,0x1fe0000,0x0,0x3ff8000,0x0,0x7ffc000,0x0,0xfefe000,0x0,0x1f87f000,0x0,0x3e01f800,0x0,0x7c007c00,0x0, + 0xf0003e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xe0008000,0x1,0xe00ff000,0x1,0xe03ff800,0x1,0xf07ffc00,0x1,0xfffffc00,0x0,0xfffc3e00,0x0,0x7ff01e00,0x0,0x3fc01e00,0x0, + 0xf001e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e01f800,0x0,0x3e01f800,0x0,0x3e01f800,0x0,0x3e01f800,0x0,0x3e01f800,0x0,0x3e01f800,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0,0x3ff0000,0x0,0x7ff8000,0x0, + 0xfffc000,0x0,0x1f87e000,0x0,0x1e01e000,0x0,0x1e01e000,0x0,0x1e01e000,0x0,0x1f03e000,0x0,0x1fcfe000,0x0,0xfffc000,0x0, + 0x7ff8000,0x0,0x3ff0000,0x0,0x780000,0x0,0x0,0x0,0x1fe0000,0x0,0xfffe000,0x0,0x3ffff800,0x0,0x7ffffc00,0x0, + 0xfffffe00,0x0,0xff00ff00,0x1,0xfc007f00,0x1,0xf8003f80,0x3,0xf8001f80,0x3,0xf0001f80,0x3,0xf0001800,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xfffe0000,0x3,0xfffff000,0x3,0xfffffc00,0x3,0xfffffe00,0x3,0xf0ffff00,0x3, + 0xf000ff80,0x3,0xf0003fc0,0x3,0xf0001fc0,0x3,0xf0000fe0,0x3,0xf0000fe0,0x3,0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x3, + 0xfc0007e0,0x3,0xfc000fe0,0x3,0xfe000fe0,0x7,0xef001fe0,0x7,0xe7c01fc0,0x7,0xe3ffffc0,0x1f,0xe1ffff80,0xff,0xc0ffff00,0xff, + 0x807ffe00,0xff,0xff800,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf800fc00,0x1,0xfe07ff00,0x7,0xff0fffc0,0xf,0xff9fffe0,0x1f, + 0xffdffff0,0x3f,0x7ff07f0,0x7f,0x3fe03f0,0x7e,0x1fe01f8,0xfc,0x1fc01f8,0xfc,0xfc01f8,0xf8,0xfc0080,0x1f8,0xfc0000,0x1f8, + 0xfc0000,0x1f8,0xfc0000,0x1f0,0xfc0000,0x1f0,0xfffc00,0x1f0,0xffffff80,0x1ff,0xffffffe0,0x1ff,0xfffffff0,0x1ff,0xfffc7ff8,0x1ff, + 0x7c03f8,0x0,0xfc01fc,0x0,0xfc00fc,0x0,0xfc007c,0x0,0xfc007e,0x0,0xfc007e,0x0,0xfe007e,0x0,0xfe007e,0x0, + 0xfe007e,0x10,0x1ff007e,0xf8,0x1ff007e,0xf8,0x3f780fc,0xfc,0x7e7c0fc,0x7e,0x9fe3fffc,0x7f,0xffc1fff8,0x3f,0xff81fff8,0x1f, + 0xff007ff0,0xf,0xfc003fc0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x1fff8000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x3,0xfe03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0xf,0xe0003f80,0xf,0xc0001f80,0x1f,0xc0001fc0,0x1f,0xc0000fc0,0x0, + 0xfc0,0x0,0xfe0,0x0,0xfe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0x80000fc0,0xf,0xc0000fc0,0x1f, + 0xc0001fc0,0x1f,0xc0001f80,0xf,0xe0003f80,0xf,0xf0007f00,0x7,0xfc01fe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7ffff000,0x0, + 0x1fffc000,0x0,0x7fe0000,0x0,0x780000,0x0,0x380000,0x0,0x380000,0x0,0x1fc0000,0x0,0x7fc0000,0x0,0x7fe0000,0x0, + 0xf800000,0x0,0xf000000,0x0,0xf000000,0x0,0xf000000,0x0,0xf800000,0x0,0x7ff0000,0x0,0x3ff0000,0x0,0x1ff0000,0x0, + 0xe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f800,0x0,0x7f000,0x0,0xfe000,0x0,0x1f8000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xf80000,0x0,0x1f00000,0x0, + 0x3e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf800ff00,0x3,0xf0003f00,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x3f, + 0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0, + 0x80001f80,0x1,0xc0003f80,0x1f,0xc0007f80,0xf,0xf0007f00,0x7,0xf801fe00,0x7,0xff9ffc00,0x3,0xfffff800,0x1,0xfffff000,0x0, + 0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0x0,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0, + 0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf800ff00,0x3,0xf0003f00,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x3f, + 0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0, + 0x80001f80,0x1,0xc0003f80,0x1f,0xc0007f80,0xf,0xf0007f00,0x7,0xf801fe00,0x7,0xff9ffc00,0x3,0xfffff800,0x1,0xfffff000,0x0, + 0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fdfc000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0xf800f800,0x0, + 0xe0003c00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf800ff00,0x3,0xf0003f00,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x3f, + 0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0, + 0x80001f80,0x1,0xc0003f80,0x1f,0xc0007f80,0xf,0xf0007f00,0x7,0xf801fe00,0x7,0xff9ffc00,0x3,0xfffff800,0x1,0xfffff000,0x0, + 0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0000,0x0,0x1fffc000,0x0,0x3ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf800ff00,0x3,0xf0003f00,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x1f,0xffffffe0,0x3f, + 0x7e0,0x0,0x7e0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0, + 0x80001f80,0x1,0xc0003f80,0x1f,0xc0007f80,0xf,0xf0007f00,0x7,0xf801fe00,0x7,0xff9ffc00,0x3,0xfffff800,0x1,0xfffff000,0x0, + 0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f000,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0,0x3f00000,0x0, + 0x3c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x3fffe00,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0, + 0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x3fffe00,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fdfc000,0x0,0x3f0fe000,0x0,0x7c03f000,0x0,0xf800f800,0x0, + 0xe0003c00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x3fffe00,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf807e000,0x0,0xf807e000,0x0,0xf807e000,0x0,0xf807e000,0x0,0xf807e000,0x0,0xf807e000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x3fffe00,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc003f800,0x0, + 0xf00ff000,0x1,0xfc1fc000,0x1,0xffff8000,0x3,0x7ffe0000,0x0,0x1ffc0000,0x0,0x7ff0000,0x0,0x7ffc000,0x0,0xffff000,0x0, + 0x1fcff800,0x0,0x3f81f000,0x0,0x7f007000,0x0,0xfe000000,0x0,0xfc000000,0x0,0xfc000000,0x1,0xf8000000,0x3,0xf0000000,0x3, + 0xf0f80000,0x7,0xe7ffc000,0x7,0xfffff000,0x7,0xfffffc00,0xf,0xfffffe00,0xf,0xfc01ff00,0xf,0xf0007f00,0x1f,0xe0003f80,0x1f, + 0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fc0,0x1f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f, + 0xc0000fc0,0xf,0xc0001fc0,0xf,0xe0001f80,0xf,0xf0003f80,0x7,0xfc00ff00,0x3,0xff87fe00,0x3,0xfffffc00,0x0,0x7ffff800,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc0010000,0x3,0xc00fe000,0x3,0xc03ff000,0x1,0xe0fff800,0x1,0xfffffc00,0x1,0xfff83c00,0x0,0xffe03c00,0x0,0x7f801c00,0x0, + 0x1e001c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00000,0x0,0x7ffc0f80,0x0,0xfffe0f80,0x0,0xffff8f80,0x1, + 0xffffdf80,0x3,0xfc07df80,0x7,0xf801ff80,0x7,0xf000ff80,0x7,0xe0007f80,0xf,0xe0003f80,0xf,0xc0003f80,0xf,0xc0003f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f000,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0,0x1f00000,0x0, + 0x3e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf8007f00,0x7,0xf0003f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f80,0x7,0xf8007f00,0x7,0xfc00fe00,0x3,0xff87fe00,0x1,0xfffffc00,0x0,0x7ffff000,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x7c0000,0x0, + 0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf8007f00,0x7,0xf0003f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f80,0x7,0xf8007f00,0x7,0xfc00fe00,0x3,0xff87fe00,0x1,0xfffffc00,0x0,0x7ffff000,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fdfc000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0xf800f800,0x0, + 0xf0003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf8007f00,0x7,0xf0003f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f80,0x7,0xf8007f00,0x7,0xfc00fe00,0x3,0xff87fe00,0x1,0xfffffc00,0x0,0x7ffff000,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc0018000,0x1,0xe00ff000,0x1,0xe03ff800,0x1,0xe0fff800,0x1,0xfffffc00,0x0,0xfffc3c00,0x0,0xfff01c00,0x0,0x7fc01e00,0x0, + 0x1e001e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf8007f00,0x7,0xf0003f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f80,0x7,0xf8007f00,0x7,0xfc00fe00,0x3,0xff87fe00,0x1,0xfffffc00,0x0,0x7ffff000,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xfc01fe00,0x3,0xf8007f00,0x7,0xf0003f80,0x7,0xe0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0x1f,0xc0000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x800007e0,0x1f,0x800007e0,0x1f,0x800007e0,0x3f,0x800007e0,0x3f,0x800007e0,0x3f, + 0x800007e0,0x3f,0x800007e0,0x1f,0x800007e0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0xf,0xe0003f80,0xf,0xf0003f80,0x7,0xf8007f00,0x7,0xfc00fe00,0x3,0xff87fe00,0x1,0xfffffc00,0x0,0x7ffff000,0x0, + 0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0xfffffff0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe0000,0x0,0x1fffc000,0xc,0x7ffff000,0x1c,0xfffffc00,0x1f, + 0xfffffe00,0xf,0xfc01ff00,0xf,0xf0007f00,0x7,0xe0003f80,0xf,0xf0001fc0,0xf,0xf8001fc0,0x1f,0xf8000fc0,0x1f,0xbc000fe0,0x1f, + 0x9e0007e0,0x3f,0x9f0007e0,0x3f,0xf8007e0,0x3f,0x7c007f0,0x3f,0x3e007f0,0x3f,0x1f007f0,0x3f,0xf807f0,0x3f,0x7807f0,0x3f, + 0x3c07f0,0x3f,0x1e07f0,0x3f,0x1f07f0,0x3f,0xf87e0,0x3f,0x8007c7e0,0x3f,0x8003e7e0,0x3f,0x8001ffe0,0x1f,0x8000ffe0,0x1f, + 0xc0007fc0,0x1f,0xc0003fc0,0xf,0xe0003f80,0xf,0xf0007f80,0x7,0xfc00ff80,0x3,0xff87ffc0,0x3,0xffffffe0,0x0,0x7ffff9e0,0x0, + 0x1fffe0c0,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800,0x0,0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x1e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xe0001f80,0xf,0xe0001f80,0xf, + 0xe0001f80,0xf,0xf0003f80,0xf,0xf8003f80,0xf,0xfc007f00,0xf,0xde00ff00,0xf,0xdfffff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc1fff800,0xf,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0x0,0x7f800000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0xf80000,0x0,0x7c0000,0x0, + 0x3e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xe0001f80,0xf,0xe0001f80,0xf, + 0xe0001f80,0xf,0xf0003f80,0xf,0xf8003f80,0xf,0xfc007f00,0xf,0xde00ff00,0xf,0xdfffff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc1fff800,0xf,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fdfc000,0x0,0x3f07e000,0x0,0x7e03f000,0x0,0xf800f800,0x0, + 0xf0003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xe0001f80,0xf,0xe0001f80,0xf, + 0xe0001f80,0xf,0xf0003f80,0xf,0xf8003f80,0xf,0xfc007f00,0xf,0xde00ff00,0xf,0xdfffff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc1fff800,0xf,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0,0x7e01f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf, + 0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xc0001f80,0xf,0xe0001f80,0xf,0xe0001f80,0xf, + 0xe0001f80,0xf,0xf0003f80,0xf,0xf8003f80,0xf,0xfc007f00,0xf,0xde00ff00,0xf,0xdfffff00,0xf,0xcffffe00,0xf,0xc7fffc00,0xf, + 0xc1fff800,0xf,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0x0,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0, + 0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8,0xfe,0x3f8,0x7e,0x3f0,0x7f, + 0x7f0,0x3f,0x7e0,0x3f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001f80,0xf,0xc0001f80,0xf,0xe0003f80,0x7, + 0xe0003f00,0x7,0xf0003f00,0x3,0xf0007e00,0x3,0xf0007e00,0x3,0xf800fc00,0x1,0xf800fc00,0x1,0xfc00fc00,0x0,0xfc01f800,0x0, + 0xfc01f800,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x3f07e000,0x0,0x3f07e000,0x0,0x1f07c000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0, + 0xfdf8000,0x0,0xfdf8000,0x0,0x7df0000,0x0,0x7ff0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0xf80000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f8000,0x0, + 0x1f8000,0x0,0x1fe000,0x0,0xff000,0x0,0x7ffc0,0x0,0x3ffc0,0x0,0x1ffc0,0x0,0xffc0,0x0,0x1fc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0xff01f80,0x0,0x3ffc1f80,0x0,0xffff1f80,0x0,0xffff9f80,0x1, + 0xffffdf80,0x3,0xfc07df80,0x7,0xf001ff80,0x7,0xe000ff80,0xf,0xe0007f80,0xf,0xc0007f80,0xf,0xc0003f80,0xf,0xc0003f80,0x1f, + 0x80003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0xf, + 0xc0003f80,0xf,0xe0007f80,0xf,0xe0007f80,0xf,0xf000ff80,0x7,0xf803ff80,0x7,0xff0fdf80,0x3,0xffff9f80,0x1,0xffff1f80,0x0, + 0x7ffe1f80,0x0,0xff01f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x7e03f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8,0xfe,0x3f8,0x7e,0x3f0,0x7f, + 0x7f0,0x3f,0x7e0,0x3f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001f80,0xf,0xc0001f80,0xf,0xe0003f80,0x7, + 0xe0003f00,0x7,0xf0003f00,0x3,0xf0007e00,0x3,0xf0007e00,0x3,0xf800fc00,0x1,0xf800fc00,0x1,0xfc00fc00,0x0,0xfc01f800,0x0, + 0xfc01f800,0x0,0x7e03f000,0x0,0x7e03f000,0x0,0x3f07e000,0x0,0x3f07e000,0x0,0x1f07c000,0x0,0x1f8fc000,0x0,0x1f8fc000,0x0, + 0xfdf8000,0x0,0xfdf8000,0x0,0x7df0000,0x0,0x7ff0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x3fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0xf80000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f8000,0x0, + 0x1f8000,0x0,0x1fe000,0x0,0xff000,0x0,0x7ffc0,0x0,0x3ffc0,0x0,0x1ffc0,0x0,0xffc0,0x0,0x1fc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,45,-1,5,50,0,0,0,0,0 +const unsigned int ff13_height = 68; +const unsigned int ff13_line_height = 68; +const unsigned int ff13_width = 36; +const unsigned int ff13_stride = 2; +const unsigned char ff13_first_char = ' '; + +uint32_t ff13_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe07f00,0x0, + 0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0xfe07f00,0x0,0xfe07e00,0x0,0x7c03e00,0x0, + 0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0, + 0x7c03e00,0x0,0x7c03e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3801c000,0x0,0x3801c000,0x0,0x1c00e000,0x0,0x1c00e000,0x0,0x1c00e000,0x0,0x1c00e000,0x0, + 0x1c00f000,0x0,0xe007000,0x0,0xe007000,0x0,0xe007000,0x0,0xe007000,0x0,0xe003800,0x0,0xfffffff0,0x3,0xfffffff0,0x3, + 0xfffffff0,0x3,0x7001c00,0x0,0x7001c00,0x0,0x3801c00,0x0,0x3801c00,0x0,0x3801c00,0x0,0x3800e00,0x0,0x3800e00,0x0, + 0x3800e00,0x0,0x1c00e00,0x0,0x1c00e00,0x0,0xfffffffc,0x0,0xfffffffc,0x0,0xfffffffc,0x0,0xe00700,0x0,0xe00380,0x0, + 0xe00380,0x0,0xe00380,0x0,0xf00380,0x0,0x7001c0,0x0,0x7001c0,0x0,0x7001c0,0x0,0x7001c0,0x0,0x7801c0,0x0, + 0x3800e0,0x0,0x3800e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0000,0x0,0x1e0000,0x0, + 0x1e0000,0x0,0x1e0000,0x0,0x1ffe000,0x0,0xffffe00,0x0,0x1fffff80,0x0,0x3fffffc0,0x0,0x7f9e3fe0,0x0,0xfe1e07e0,0x0, + 0xfc1e03f0,0x0,0xf81e01f0,0x0,0xf01e01f0,0x1,0x701e01f0,0x0,0x1e01f0,0x0,0x1e01f0,0x0,0x1e03f0,0x0,0x1e07e0,0x0, + 0x1e0fe0,0x0,0x1e7fc0,0x0,0x1fff80,0x0,0x1fffe00,0x0,0x7fff800,0x0,0x1fff8000,0x0,0x3ffe0000,0x0,0xff1e0000,0x0, + 0xfc1e0000,0x0,0xf81e0000,0x1,0xf01e0000,0x1,0xf01e0000,0x3,0xe01e0000,0x3,0xe01e0000,0x3,0xe01e0060,0x3,0xe01e007c,0x3, + 0xe01e00fc,0x3,0xf01e00f8,0x3,0xf01e01f8,0x1,0xf81e03f0,0x1,0xfc1e07f0,0x1,0xff1e3fe0,0x0,0x7fffffc0,0x0,0x3fffff80,0x0, + 0xffffe00,0x0,0x1ffe000,0x0,0x1e0000,0x0,0x1e0000,0x0,0x1e0000,0x0,0x1e0000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfe0,0x0,0xc0003ff8,0x3,0xe0007ffc,0x1,0xf000f83e,0x0,0xf800f01e,0x0,0x7800f01e,0x0,0x3c01e00f,0x0, + 0x3e01e00f,0x0,0x1e01e00f,0x0,0xf01e00f,0x0,0xf81e00f,0x0,0x781e00f,0x0,0x3c1e00f,0x0,0x1e1e00f,0x0,0x1f0f01e,0x0, + 0xf0f01e,0x0,0x78f83e,0x0,0x7c7ffc,0x0,0x3c3ff8,0x0,0x1e0fe0,0x0,0xf0000,0x0,0xf8000,0x0,0x7f078000,0x0, + 0xffc3c000,0x1,0xffe3e000,0x3,0xc1f1e000,0x7,0x80f0f000,0x7,0x80f0f800,0x7,0x787800,0xf,0x783c00,0xf,0x781e00,0xf, + 0x781f00,0xf,0x780f00,0xf,0x780780,0xf,0x7807c0,0xf,0x7803c0,0xf,0x80f001e0,0x7,0x80f000f0,0x7,0xc1f000f0,0x7, + 0xffe00078,0x3,0xffc0003c,0x1,0x7f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0xfff800,0x0,0x3fffc00,0x0,0x7fffe00,0x0,0x7f07f00,0x0,0xfc03f00,0x0, + 0xf801f80,0x0,0xf800f80,0x0,0xf800f80,0x0,0xf800f80,0x0,0xfc00f80,0x0,0x7c00f80,0x0,0x3f00f80,0x0,0x1fc1f00,0x0, + 0xff1f00,0x0,0x7fdf00,0x0,0x1ffe00,0x0,0x3fe00,0x0,0x1800ff80,0x0,0xf800ffc0,0x0,0xf800ffe0,0x0,0x7c01fbf0,0x0, + 0x7c01f1f8,0x0,0x7c03e0f8,0x0,0x7e07e07c,0x0,0x3e07c07c,0x0,0x3e0f803e,0x0,0x1f1f803e,0x0,0x1f3f003e,0x0,0xf7e003e,0x0, + 0xffc003e,0x0,0x7fc003e,0x0,0x7f8003e,0x0,0x7f0007e,0x0,0xff000fc,0x0,0x1ffc01fc,0x0,0xffff03f8,0x7,0xff7ffff0,0x7, + 0xfe1fffe0,0x7,0xf80fffc0,0x7,0xe001fe00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00000,0x0, + 0x1f00000,0x0,0xf80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0xf800,0x0, + 0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0xf800,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x3e000,0x0,0x3e000,0x0,0x7c000,0x0,0x7c000,0x0,0xf8000,0x0,0xf8000,0x0,0x1f0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x7c0000,0x0,0xf80000,0x0,0x1f00000,0x0,0x3e00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c00,0x0, + 0xf800,0x0,0x1f000,0x0,0x3e000,0x0,0x7e000,0x0,0x7c000,0x0,0xf8000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x7c0000,0x0,0x7c0000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0, + 0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x3e00000,0x0, + 0x3e00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xf8000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x3e000,0x0,0x1f000,0x0,0xf800,0x0,0x7c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xc0f0300,0x0,0xf8f1f00,0x0,0xfffff80,0x0, + 0x1fffff80,0x0,0x3fffc00,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fc000,0x0,0x79e000,0x0,0x79e000,0x0,0xf0f000,0x0, + 0x1f0f800,0x0,0x3e07c00,0x0,0x1c03800,0x0,0x402000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe000,0x0,0xfe000,0x0,0xff000,0x0,0x7f000,0x0,0x7f000,0x0,0x3f000,0x0,0x3f800,0x0, + 0x1f800,0x0,0x1f800,0x0,0x1fc00,0x0,0xfc00,0x0,0xfc00,0x0,0x7c00,0x0,0x7e00,0x0,0x3e00,0x0, + 0x3e00,0x0,0x1e00,0x0,0x1f00,0x0,0xf00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x1, + 0xf8000000,0x0,0xf8000000,0x0,0x7c000000,0x0,0x7e000000,0x0,0x3e000000,0x0,0x3f000000,0x0,0x1f000000,0x0,0xf800000,0x0, + 0xf800000,0x0,0x7c00000,0x0,0x7e00000,0x0,0x3e00000,0x0,0x3f00000,0x0,0x1f00000,0x0,0xf80000,0x0,0xf80000,0x0, + 0x7c0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0x3f0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0, + 0x7e000,0x0,0x3e000,0x0,0x3f000,0x0,0x1f000,0x0,0xf800,0x0,0xfc00,0x0,0x7c00,0x0,0x7e00,0x0, + 0x3e00,0x0,0x3f00,0x0,0x1f00,0x0,0xf80,0x0,0xfc0,0x0,0x7c0,0x0,0x7e0,0x0,0x3e0,0x0, + 0x3f0,0x0,0x1f0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0x7fffe00,0x0,0xfe07f00,0x0,0x1f801f80,0x0,0x1f000f80,0x0, + 0x3e0007c0,0x0,0x3e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x780001f0,0x0,0xf80001f0,0x0, + 0xf80001f0,0x0,0xf80001f0,0x0,0xf81f81f0,0x0,0xf81f81f0,0x0,0xf81f81f0,0x0,0xf81f81f0,0x0,0xf81f81f0,0x0,0xf81f81f0,0x0, + 0xf81f81f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0x7c0001e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7c0003e0,0x0,0x3e0003c0,0x0,0x3e0007c0,0x0,0x3f0007c0,0x0,0x1f000f80,0x0,0x1f801f80,0x0,0xfe07f00,0x0,0x7fffe00,0x0, + 0x3fffc00,0x0,0xfff000,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3fc000,0x0,0x3fe000,0x0,0x3ff800,0x0, + 0x3eff00,0x0,0x3e7ff0,0x0,0x3e3ff0,0x0,0x3e07f0,0x0,0x3e00f0,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0x1fffc00,0x0,0x7fffe00,0x0,0xfffff80,0x0,0x1fe03fc0,0x0,0x3f800fc0,0x0,0x3f0007e0,0x0, + 0x3e0003e0,0x0,0x7c0003f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0, + 0xfe0000,0x0,0x7f0000,0x0,0x3fc000,0x0,0xfe000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0,0x7e00,0x0, + 0x3f00,0x0,0x1f80,0x0,0xf80,0x0,0xfc0,0x0,0x7e0,0x0,0x3e0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fc07f80,0x0,0x3f801f80,0x0,0x3f000fc0,0x0, + 0x7e0007c0,0x0,0x7c0007e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x1f000000,0x0,0x1f800000,0x0,0xff00000,0x0,0x3ffc000,0x0,0xffc000,0x0,0x1ffc000,0x0,0x7ffc000,0x0, + 0x1fe00000,0x0,0x3f800000,0x0,0x7e000000,0x0,0x7c000000,0x0,0x7c000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf80001f0,0x0, + 0xf80001f0,0x0,0xf80003f0,0x0,0xfc0003e0,0x0,0x7c0007e0,0x0,0x7e0007e0,0x0,0x3f001fc0,0x0,0x3fc07f80,0x0,0x1fffff00,0x0, + 0xffffe00,0x0,0x3fff800,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7de0000,0x0,0x7df0000,0x0,0x7cf8000,0x0,0x7c78000,0x0,0x7c7c000,0x0,0x7c3e000,0x0,0x7c1e000,0x0,0x7c1f000,0x0, + 0x7c0f800,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c03e00,0x0,0x7c01f00,0x0,0x7c01f00,0x0,0x7c00f80,0x0,0x7c007c0,0x0, + 0x7c003c0,0x0,0x7c003e0,0x0,0x7c001f0,0x0,0x7c000f8,0x0,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1, + 0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x7c00000,0x0, + 0x7c00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x7c0,0x0,0x7c0,0x0, + 0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0, + 0x3e0,0x0,0x7f83e0,0x0,0x1fff3e0,0x0,0x7fffbe0,0x0,0xfffffe0,0x0,0x1fe03fe0,0x0,0x3f800fe0,0x0,0x7e0007e0,0x0, + 0x7e000000,0x0,0x7c000000,0x0,0xfc000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf8000000,0x0, + 0xf8000000,0x0,0xfc0001e0,0x0,0x7c0003f0,0x0,0x7e0003e0,0x0,0x3f0007e0,0x0,0x3f800fe0,0x0,0x1fe03fc0,0x0,0xfffff80,0x0, + 0x7ffff00,0x0,0x1fffc00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3ffe000,0x0,0x7fff800,0x0,0xffffc00,0x0,0x1fc0fe00,0x0,0x3f003f00,0x0,0x3e001f80,0x0, + 0x7e000f80,0x0,0x1c0007c0,0x0,0x7c0,0x0,0x3c0,0x0,0x3e0,0x0,0x1e0,0x0,0x1e0,0x0,0x1e0,0x0, + 0x7f81f0,0x0,0x3fff1f0,0x0,0x7fff9f0,0x0,0xffffdf0,0x0,0x1fe07ef0,0x0,0x3f801ff0,0x0,0x7e0007f0,0x0,0x7e0003f0,0x0, + 0x7c0003f0,0x0,0xfc0001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001e0,0x0,0xf80001e0,0x0,0xf80001e0,0x0, + 0xf80003e0,0x0,0x7c0003c0,0x0,0x7c0007c0,0x0,0x7e0007c0,0x0,0x3f000f80,0x0,0x3f801f00,0x0,0x1fe07f00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x1fff000,0x0,0x7f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0x7c000000,0x0,0x3e000000,0x0, + 0x1f000000,0x0,0x1f000000,0x0,0xf800000,0x0,0x7c00000,0x0,0x7c00000,0x0,0x3e00000,0x0,0x3e00000,0x0,0x1f00000,0x0, + 0xf80000,0x0,0xf80000,0x0,0x7c0000,0x0,0x7c0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0, + 0x3e000,0x0,0x3e000,0x0,0x3e000,0x0,0x3e000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fc07f80,0x0,0x3f000fc0,0x0,0x3e0007c0,0x0, + 0x7e0007e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x3e0007c0,0x0, + 0x3e000fc0,0x0,0x1f001f80,0x0,0xfc07f00,0x0,0x7fffe00,0x0,0x1fff800,0x0,0x1fff800,0x0,0xffffe00,0x0,0x1fc03f80,0x0, + 0x3f000fc0,0x0,0x7e0007c0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0,0xf80001f0,0x0, + 0xf80001f0,0x0,0xf80001f0,0x0,0xfc0003f0,0x0,0x7c0003e0,0x0,0x7e0007e0,0x0,0x3f000fc0,0x0,0x3fc03fc0,0x0,0x1fffff80,0x0, + 0x7fffe00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe000,0x0,0xfff800,0x0,0x1fffe00,0x0,0x3ffff00,0x0,0x7f03f80,0x0,0xfc01fc0,0x0,0xf8007c0,0x0, + 0x1f0007e0,0x0,0x1f0003e0,0x0,0x3e0003e0,0x0,0x3e0001f0,0x0,0x3c0001f0,0x0,0x3c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0, + 0x7c0001f0,0x0,0x7c0001f0,0x0,0x7c0001f0,0x0,0x7e0003e0,0x0,0x7e0003e0,0x0,0x7f0007e0,0x0,0x7f0007c0,0x0,0x7fc01fc0,0x0, + 0x7ff03f80,0x0,0x7dffff00,0x0,0x7cfffe00,0x0,0x7c3ffc00,0x0,0x3c0fe000,0x0,0x3c000000,0x0,0x3c000000,0x0,0x3e000000,0x0, + 0x1e000000,0x0,0x1e000000,0x0,0x1f000380,0x0,0xf8007e0,0x0,0xf8007c0,0x0,0x7c00fc0,0x0,0x3f03f80,0x0,0x1ffff80,0x0, + 0xffff00,0x0,0x7ffc00,0x0,0xff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0xfc000,0x0,0xfe000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7f000,0x0,0x3f000,0x0,0x3f000,0x0,0x1f000,0x0,0x1f800,0x0,0xf800,0x0, + 0xf800,0x0,0x7800,0x0,0x7c00,0x0,0x3c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0xe0000000,0x1,0xf8000000,0x1,0xff000000,0x1,0xffc00000,0x0,0x3ff80000,0x0,0xffe0000,0x0,0x1ff8000,0x0,0x7ff000,0x0, + 0xffc00,0x0,0x3ff80,0x0,0x7fe0,0x0,0x1ff8,0x0,0x7f8,0x0,0xf8,0x0,0xf8,0x0,0x7f8,0x0, + 0x1ff8,0x0,0x7fe0,0x0,0x3ff80,0x0,0xffc00,0x0,0x7ff000,0x0,0x1ff8000,0x0,0x7fe0000,0x0,0x3ff80000,0x0, + 0xffc00000,0x0,0xff000000,0x1,0xf8000000,0x1,0xe0000000,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1, + 0xfffffff8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x78,0x0,0x1f8,0x0,0xff8,0x0,0x3ff0,0x0,0xffc0,0x0,0x7ff00,0x0,0x1ff800,0x0,0xffe000,0x0, + 0x3ff0000,0x0,0x1ffc0000,0x0,0x7fe00000,0x0,0xff800000,0x1,0xfe000000,0x1,0xf0000000,0x1,0xf0000000,0x1,0xfe000000,0x1, + 0xff800000,0x1,0x7fe00000,0x0,0x1ffc0000,0x0,0x3ff0000,0x0,0xffe000,0x0,0x1ff800,0x0,0x7ff00,0x0,0x1ffc0,0x0, + 0x3ff0,0x0,0xff8,0x0,0x1f8,0x0,0x78,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fe000,0x0,0x3fffc00,0x0,0xfffff00,0x0,0x1fffff80,0x0,0x3fe07fc0,0x0,0x7f801fe0,0x0,0x7e0007e0,0x0, + 0x7e0007f0,0x0,0xfc0003f0,0x0,0xfc0003f8,0x0,0xfc0001f8,0x0,0xfc0001f8,0x0,0xfc000000,0x0,0xfe000000,0x0,0x7e000000,0x0, + 0x7f000000,0x0,0x3f000000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0x3f80000,0x0,0x1fe0000,0x0,0xff0000,0x0, + 0x3f8000,0x0,0x1f8000,0x0,0xfc000,0x0,0xfc000,0x0,0x7c000,0x0,0x7e000,0x0,0x7e000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x0, + 0x3ffe000,0x0,0xffff800,0x0,0x1f80fc00,0x0,0x3e003e00,0x0,0x7c001f00,0x0,0x78000780,0x0,0xf00007c0,0x0,0xf00003e0,0x1, + 0xe00001e0,0x1,0xe00001f0,0x1,0xc01f00f0,0x3,0xfc7fc0f8,0x3,0xfeffe078,0x3,0xfee1f078,0x3,0x9ec0f078,0x7,0x9fc0783c,0x7, + 0x9f803c3c,0x7,0x9f803c3c,0x7,0x9f803e3c,0x7,0x8f801e1e,0x7,0x8f801e1e,0x7,0x8f801e1e,0x7,0x8f800f1e,0x7,0x87c00f1e,0x7, + 0x87c00f1e,0x7,0x87c00f1e,0x7,0x87c00f1e,0x7,0xc7c00f1e,0x3,0xc3e00f1e,0x3,0xc3e00f1e,0x3,0xc3f00f1e,0x3,0xc3f00f1e,0x1, + 0xe3f81e1e,0x1,0xe3d81e3c,0x0,0xf3de3e3c,0x0,0x7fcffc3c,0x0,0x3f87f83c,0x0,0x1f01f078,0x0,0x78,0x0,0xf8,0x0, + 0xf0,0x0,0x100001e0,0x0,0x380003e0,0x0,0x7c0007c0,0x0,0x3f000f80,0x0,0xfc07f00,0x0,0x7fffe00,0x0,0x1fff800,0x0, + 0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffe0,0x0,0x3ffffe0,0x0,0xfffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7fc007e0,0x0, + 0x7f0007e0,0x0,0xfe0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x3f0007e0,0x0,0x3fc007e0,0x0,0xfffffe0,0x0,0x7ffffe0,0x0,0x1ffffe0,0x0,0x1fffffe0,0x0,0x3fffffe0,0x0, + 0x7f8007e0,0x0,0xfe0007e0,0x0,0xf80007e0,0x1,0xf80007e0,0x1,0xf00007e0,0x3,0xf00007e0,0x3,0xf00007e0,0x3,0xf00007e0,0x3, + 0xf00007e0,0x3,0xf80007e0,0x3,0xf80007e0,0x1,0xfe0007e0,0x1,0xff8007e0,0x0,0xffffffe0,0x0,0x7fffffe0,0x0,0x1fffffe0,0x0, + 0x7ffffe0,0x0,0xffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3fff000,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fffff00,0x0,0x7fc0ff80,0x0,0x7f003fc0,0x0, + 0xfe001fc0,0x0,0xfc000fe0,0x0,0xf80007e0,0x1,0xf80007f0,0x0,0x100003f0,0x0,0x3f0,0x0,0x3f0,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x3f0,0x0,0x3f0,0x0,0x200003f0,0x0,0xf00003f0,0x1, + 0xf00007e0,0x3,0xf80007e0,0x1,0xfc000fe0,0x1,0xfe001fc0,0x0,0xff003fc0,0x0,0x7fc0ff80,0x0,0x3fffff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0x7f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7ffe0,0x0,0x7fffe0,0x0,0x1ffffe0,0x0,0x7ffffe0,0x0,0xfffffe0,0x0,0x1ff807e0,0x0, + 0x3fe007e0,0x0,0x3f8007e0,0x0,0x7f0007e0,0x0,0x7e0007e0,0x0,0xfe0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xfc0007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x7f0007e0,0x0,0x3f8007e0,0x0,0x1fc007e0,0x0,0x1ff807e0,0x0,0xfffffe0,0x0,0x7ffffe0,0x0,0x1ffffe0,0x0, + 0x7fffe0,0x0,0xfffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x1,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x7fffffc0,0x0,0x7fffffc0,0x0,0x7fffffc0,0x0, + 0x7fffffc0,0x0,0x7fffffc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3fff000,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fffff00,0x0,0x7fc0ff80,0x0,0xfe003fc0,0x0, + 0xfc000fe0,0x0,0xf8000fe0,0x1,0xf80007e0,0x1,0x300007f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0xfffc01f8,0x1,0xfffc01f8,0x1,0xfffc01f8,0x1, + 0xfffc01f8,0x1,0xfffc01f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf8000fe0,0x1,0xf8001fc0,0x1,0xfc003f80,0x1,0xff80ff80,0x1,0xffffff00,0x1,0x7ffffe00,0x0, + 0x1ffffc00,0x0,0x7fff000,0x0,0xff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1fffc000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800380,0x0, + 0x1f8003e0,0x0,0x1f8007e0,0x0,0xfc007c0,0x0,0xfc00fc0,0x0,0xfe01fc0,0x0,0x7f83f80,0x0,0x7ffff80,0x0,0x3ffff00,0x0, + 0x1fffe00,0x0,0x7ff800,0x0,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf80007e0,0x3,0xfc0007e0,0x1,0xfc0007e0,0x0,0x7e0007e0,0x0,0x3f0007e0,0x0,0x1f8007e0,0x0, + 0x1fc007e0,0x0,0xfe007e0,0x0,0x7e007e0,0x0,0x3f007e0,0x0,0x1f807e0,0x0,0xfc07e0,0x0,0x7e07e0,0x0,0x7f07e0,0x0, + 0x3f07e0,0x0,0x1f87e0,0x0,0xfc7e0,0x0,0xfe7e0,0x0,0x1ff7e0,0x0,0x1fffe0,0x0,0x3fffe0,0x0,0x7f7fe0,0x0, + 0x7e3fe0,0x0,0xfe1fe0,0x0,0x1fc0fe0,0x0,0x3f80fe0,0x0,0x3f007e0,0x0,0x7f007e0,0x0,0xfe007e0,0x0,0x1fc007e0,0x0, + 0x1f8007e0,0x0,0x3f8007e0,0x0,0x7f0007e0,0x0,0xfe0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x3,0xf00007e0,0x3, + 0xe00007e0,0x7,0xe00007e0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0xffffff80,0x0,0xffffff80,0x0,0xffffff80,0x0, + 0xffffff80,0x0,0xffffff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0007f0,0x1,0xfc000ff0,0x1,0xfe000ff0,0x1,0xfe001ff0,0x1,0xff001ff0,0x1,0xff001ff0,0x1, + 0xff003ff0,0x1,0xff803df0,0x1,0xf7803df0,0x1,0xf7807df0,0x1,0xf7c079f0,0x1,0xf3c0f9f0,0x1,0xf3e0f9f0,0x1,0xf3e0f1f0,0x1, + 0xf1e1f1f0,0x1,0xf1f1f1f0,0x1,0xf0f1e1f0,0x1,0xf0f3e1f0,0x1,0xf0fbe1f0,0x1,0xf07bc1f0,0x1,0xf07bc1f0,0x1,0xf07fc1f0,0x1, + 0xf03f81f0,0x1,0xf03f81f0,0x1,0xf03f01f0,0x1,0xf01f01f0,0x1,0xf01f01f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1, + 0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1,0xf00001f0,0x1, + 0xf00001f0,0x1,0xf00001f0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7c000fe0,0x0,0x7c000fe0,0x0,0x7c001fe0,0x0,0x7c001fe0,0x0,0x7c003fe0,0x0,0x7c003fe0,0x0, + 0x7c003fe0,0x0,0x7c007fe0,0x0,0x7c007fe0,0x0,0x7c00fbe0,0x0,0x7c00fbe0,0x0,0x7c01f3e0,0x0,0x7c01f3e0,0x0,0x7c03e3e0,0x0, + 0x7c03e3e0,0x0,0x7c03c3e0,0x0,0x7c07c3e0,0x0,0x7c07c3e0,0x0,0x7c0f83e0,0x0,0x7c0f83e0,0x0,0x7c1f03e0,0x0,0x7c1f03e0,0x0, + 0x7c3e03e0,0x0,0x7c3e03e0,0x0,0x7c3e03e0,0x0,0x7c7c03e0,0x0,0x7c7c03e0,0x0,0x7cf803e0,0x0,0x7cf803e0,0x0,0x7df003e0,0x0, + 0x7df003e0,0x0,0x7fe003e0,0x0,0x7fe003e0,0x0,0x7fe003e0,0x0,0x7fc003e0,0x0,0x7fc003e0,0x0,0x7f8003e0,0x0,0x7f8003e0,0x0, + 0x7f0003e0,0x0,0x7f0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3fffc00,0x0,0x1fff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fffe0,0x0,0x3ffffe0,0x0,0xfffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x7fc007e0,0x0, + 0xff0007e0,0x0,0xfe0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xfc0007e0,0x1,0xfc0007e0,0x0,0xfe0007e0,0x0,0x7f0007e0,0x0,0x7fc007e0,0x0,0x3fffffe0,0x0,0x1fffffe0,0x0, + 0xfffffe0,0x0,0x3ffffe0,0x0,0x7fffe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fc0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x1,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff80,0x0,0xfffff00,0x0, + 0x3fffe00,0x0,0x1fff800,0x0,0x7fe000,0x0,0x3f0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0xfe0000,0x0,0x1fc0000,0x0, + 0x7f80000,0x0,0xfff80000,0x1,0xfff00000,0x1,0xffc00000,0x1,0xff000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffe0,0x0,0x7ffffe0,0x0,0x1fffffe0,0x0,0x3fffffe0,0x0,0x7fffffe0,0x0,0xff8007e0,0x0, + 0xfe0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xfc0007e0,0x1,0xfc0007e0,0x0,0xfe0007e0,0x0,0x7fc007e0,0x0,0x3fffffe0,0x0,0x1fffffe0,0x0,0xfffffe0,0x0,0x3ffffe0,0x0, + 0x7fffe0,0x0,0xfc07e0,0x0,0xf807e0,0x0,0x1f807e0,0x0,0x3f007e0,0x0,0x7e007e0,0x0,0x7e007e0,0x0,0xfc007e0,0x0, + 0x1f8007e0,0x0,0x1f8007e0,0x0,0x3f0007e0,0x0,0x7f0007e0,0x0,0x7e0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x3, + 0xf00007e0,0x3,0xf00007e0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fe000,0x0,0x3fffc00,0x0,0xfffff00,0x0,0x1fffff80,0x0,0x3fe03fc0,0x0,0x7f800fe0,0x0,0x7f0007e0,0x0, + 0x7e0007f0,0x0,0xfc0003f0,0x0,0x1c0003f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x7f0,0x0,0x7e0,0x0, + 0x1fe0,0x0,0x7fe0,0x0,0x3ffc0,0x0,0x3fff80,0x0,0x1fffe00,0x0,0x7fff800,0x0,0x1fffc000,0x0,0x3ffe0000,0x0, + 0x7fe00000,0x0,0xff800000,0x0,0xfe000000,0x0,0xfc000000,0x0,0xfc000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf80000e0,0x1, + 0xf80000fc,0x1,0xf80001fc,0x1,0xfc0001f8,0x1,0xfc0003f8,0x0,0xff0007f0,0x0,0x7fc03ff0,0x0,0x7fffffe0,0x0,0x3fffffc0,0x0, + 0xfffff80,0x0,0x3fffe00,0x0,0x7ff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffffc,0x3,0xfffffffc,0x3,0xfffffffc,0x3,0xfffffffc,0x3,0xfffffffc,0x3,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0003f0,0x0,0x7e0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f800fe0,0x0,0x3fe03fc0,0x0,0x1fffffc0,0x0,0x1fffff80,0x0, + 0x7ffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc000007f,0xf,0xe000007e,0x7,0xe000007e,0x7,0xe00000fe,0x7,0xf00000fc,0x3,0xf00000fc,0x3, + 0xf00001fc,0x3,0xf80001f8,0x1,0xf80001f8,0x1,0xf80003f8,0x1,0xfc0003f0,0x0,0xfc0003f0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x3f000fc0,0x0,0x3f000fc0,0x0,0x3f000fc0,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0xfc03f00,0x0, + 0xfc03f00,0x0,0x7c03e00,0x0,0x7e07e00,0x0,0x7e07e00,0x0,0x3e07c00,0x0,0x3f0fc00,0x0,0x3f0fc00,0x0,0x1f0f800,0x0, + 0x1f9f800,0x0,0xf9f800,0x0,0xf9f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fc000,0x0, + 0x3fc000,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc000003f,0xf,0xc000003f,0xf,0xc000003f,0xf,0xc000003f,0xf,0xc000007e,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xe000007e,0x7,0xe000007e,0x7,0xe000007e,0x7,0xe000007e,0x7,0xe000007c,0x3,0xe03fc07c,0x3,0xe03fc0fc,0x3, + 0xf03fc0fc,0x3,0xf07fe0fc,0x3,0xf07fe0fc,0x3,0xf07fe0fc,0x3,0xf07fe0f8,0x1,0xf07fe0f8,0x1,0xf0f9f0f8,0x1,0xf0f9f0f8,0x1, + 0xf0f9f1f8,0x1,0xf8f9f1f8,0x1,0xf8f9f1f8,0x1,0xf9f1f9f0,0x0,0xf9f0f9f0,0x0,0xf9f0f9f0,0x0,0xf9f0f9f0,0x0,0xf9f0f9f0,0x0, + 0xfbe0fdf0,0x0,0xfbe07df0,0x0,0x7be07de0,0x0,0x7be07fe0,0x0,0x7fe07fe0,0x0,0x7fc03fe0,0x0,0x7fc03fe0,0x0,0x7fc03fe0,0x0, + 0x7fc03fe0,0x0,0x3fc03fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf80001fc,0x3,0xfc0003f8,0x1,0xfc0007f0,0x0,0xfe0007f0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0, + 0x3f801fc0,0x0,0x1f803f80,0x0,0x1fc03f00,0x0,0xfe07f00,0x0,0x7e0fe00,0x0,0x7f0fe00,0x0,0x3f9fc00,0x0,0x1f9f800,0x0, + 0x1fff800,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x7fe000,0x0, + 0xfff000,0x0,0xfff000,0x0,0x1fff800,0x0,0x3f9f800,0x0,0x3f1fc00,0x0,0x7f0fe00,0x0,0xfe07e00,0x0,0xfe07f00,0x0, + 0x1fc03f80,0x0,0x1f801f80,0x0,0x3f801fc0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f8,0x1,0xfc0003f8,0x1, + 0xf80001fc,0x3,0xf00000fe,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000007e,0x7,0xf00000fc,0x3,0xf80000f8,0x3,0xf80001f8,0x1,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0x7e0007e0,0x0,0x3e0007c0,0x0,0x3f000fc0,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0xfc03f00,0x0,0x7c03e00,0x0,0x7e07e00,0x0, + 0x3f0fc00,0x0,0x3f0fc00,0x0,0x1f9f800,0x0,0xf9f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fc000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x7f000000,0x0, + 0x7f800000,0x0,0x3fc00000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0, + 0x1fe0000,0x0,0xfe0000,0x0,0x7f0000,0x0,0x7f8000,0x0,0x3fc000,0x0,0x1fc000,0x0,0xfe000,0x0,0xff000,0x0, + 0x7f800,0x0,0x3f800,0x0,0x1fc00,0x0,0x1fe00,0x0,0xfe00,0x0,0x7f00,0x0,0x7f80,0x0,0x3fc0,0x0, + 0x1fc0,0x0,0xfe0,0x0,0xff0,0x0,0x7f8,0x0,0x3f8,0x0,0xfffffffc,0x3,0xfffffffc,0x3,0xfffffffc,0x3, + 0xfffffffc,0x3,0xfffffffc,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff000,0x0, + 0xffff000,0x0,0xffff000,0x0,0xffff000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0xffff000,0x0,0xffff000,0x0,0xffff000,0x0,0xffff000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x0, + 0x1f0,0x0,0x1f0,0x0,0x3e0,0x0,0x7e0,0x0,0x7c0,0x0,0xfc0,0x0,0xf80,0x0,0x1f00,0x0, + 0x1f00,0x0,0x3e00,0x0,0x7e00,0x0,0x7c00,0x0,0xfc00,0x0,0xf800,0x0,0x1f000,0x0,0x1f000,0x0, + 0x3e000,0x0,0x7e000,0x0,0x7c000,0x0,0xfc000,0x0,0xf8000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x3e0000,0x0, + 0x7e0000,0x0,0x7c0000,0x0,0xfc0000,0x0,0xf80000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x3e00000,0x0,0x7e00000,0x0, + 0x7c00000,0x0,0xfc00000,0x0,0xf800000,0x0,0x1f000000,0x0,0x3f000000,0x0,0x3e000000,0x0,0x7e000000,0x0,0x7c000000,0x0, + 0xfc000000,0x0,0xf8000000,0x0,0xf0000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff00,0x0, + 0xffff00,0x0,0xffff00,0x0,0xffff00,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xffff00,0x0,0xffff00,0x0,0xffff00,0x0,0xffff00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f8000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x79e000,0x0,0x79e000,0x0, + 0xf9f000,0x0,0xf0f000,0x0,0xf0f800,0x0,0x1e07800,0x0,0x1e07800,0x0,0x3e07c00,0x0,0x3c03c00,0x0,0x7c03e00,0x0, + 0x7801e00,0x0,0x7801e00,0x0,0xf800f00,0x0,0xf000f00,0x0,0x1f000f80,0x0,0x1e000780,0x0,0x3e0007c0,0x0,0x3e0003c0,0x0, + 0x3c0003c0,0x0,0x7c0003e0,0x0,0x780001e0,0x0,0xf80001f0,0x0,0xf00000f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0xf,0xffffffff,0xf, + 0xffffffff,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000,0x0, + 0x7e000,0x0,0xfc000,0x0,0x1f8000,0x0,0x1f0000,0x0,0x3c0000,0x0,0x780000,0x0,0xf00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xff03e0,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0x1fe07be0,0x0,0x3f803fe0,0x0,0x3f001fe0,0x0, + 0x7f000fe0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0xfc0007e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0, + 0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fe0,0x0,0x3f801fe0,0x0,0x1fe07fe0,0x0,0xffffbe0,0x0, + 0x7fff3e0,0x0,0x3ffc3e0,0x0,0xff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3fff000,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x3fc07f00,0x0,0x3f003f80,0x0,0x7e000fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0, + 0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7e001fc0,0x0,0x3f003f80,0x0,0x3fc07f00,0x0,0x1ffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e07f000,0x0,0x3e3ffc00,0x0,0x3e7fff00,0x0,0x3effff80,0x0,0x3ef03f80,0x0,0x3fc01fc0,0x0,0x3f800fc0,0x0, + 0x3f800fe0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0, + 0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0, + 0x3f0007f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x3f800fc0,0x0,0x3fc01fc0,0x0,0x3ef03f80,0x0,0x3effff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x7f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x1fc0ff00,0x0,0x3f803f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xfffffff0,0x1, + 0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x18000fe0,0x0,0xfc000fc0,0x0,0xfe001fc0,0x0,0x7f003f80,0x0,0x3fc0ff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x0, + 0xffff0000,0x0,0xffff8000,0x0,0xffffc000,0x0,0xfe000,0x0,0x7e000,0x0,0x3f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f000,0x0,0x3e1ffc00,0x0,0x3e3fff00,0x0,0x3e7fff80,0x0,0x3ef03f80,0x0,0x3fe01fc0,0x0,0x3fc00fc0,0x0, + 0x3f8007e0,0x0,0x3f8007e0,0x0,0x3f0007e0,0x0,0x3f0003f0,0x0,0x3f0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0, + 0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3f0003f0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x3fc00fe0,0x0,0x3fe01fc0,0x0,0x3ef03fc0,0x0,0x3e7fff80,0x0,0x3e3fff00,0x0, + 0x3e1ffe00,0x0,0x3e07f800,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x1f000780,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0, + 0xfc01f80,0x0,0xfe03f80,0x0,0x7ffff00,0x0,0x3fffe00,0x0,0x1fff800,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x7f03e0,0x0,0x3ffc3e0,0x0,0x7fff3e0,0x0,0xffffbe0,0x0,0x1fe0fbe0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f0000,0x0, + 0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffff80,0x0,0xffff80,0x0,0xffff80,0x0,0xffff80,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0, + 0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0xf80000,0x0,0x7c0000,0x0,0x7e0000,0x0, + 0x7f0000,0x0,0x3fc038,0x0,0x1ffff8,0x0,0xffff8,0x0,0x7fff8,0x0,0xffc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf80,0x0, + 0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0,0xf80,0x0, + 0xf80,0x0,0xf80,0x0,0xf8000f80,0x1,0xfc000f80,0x0,0x7e000f80,0x0,0x3f000f80,0x0,0x1f800f80,0x0,0xfc00f80,0x0, + 0x7e00f80,0x0,0x3f00f80,0x0,0x1f80f80,0x0,0xfc0f80,0x0,0x7e0f80,0x0,0x3f0f80,0x0,0x1f8f80,0x0,0xfcf80,0x0, + 0xfef80,0x0,0x1fff80,0x0,0x3fff80,0x0,0x3fff80,0x0,0x7e3f80,0x0,0xfc1f80,0x0,0x1f80f80,0x0,0x1f80f80,0x0, + 0x3f00f80,0x0,0x7e00f80,0x0,0xfe00f80,0x0,0xfc00f80,0x0,0x1f800f80,0x0,0x3f000f80,0x0,0x7f000f80,0x0,0x7e000f80,0x0, + 0xfc000f80,0x0,0xf8000f80,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fff00,0x0, + 0x1fff00,0x0,0x1fff00,0x0,0x1fff00,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f01f800,0x0,0x7f83fc78,0x0,0x7fc7fe78,0x0,0xffe7ff78,0x0,0xfcefc778,0x0,0xf87f8378,0x1,0xf03f81f8,0x1, + 0xf03f01f8,0x1,0xf01f01f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1, + 0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1, + 0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1,0xf01f00f8,0x1, + 0xf01f00f8,0x1,0xf01f00f8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x3ffc3e0,0x0,0x7ffe3e0,0x0,0xffffbe0,0x0,0x1fe0fbe0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fc0ff00,0x0,0x3f003f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x3ffc3e0,0x0,0xffff3e0,0x0,0x1ffff3e0,0x0,0x1fe07be0,0x0,0x3f803fe0,0x0,0x3f001fe0,0x0, + 0x7f000fe0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0, + 0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fe0,0x0,0x3f801fe0,0x0,0x1fe07fe0,0x0,0xffffbe0,0x0, + 0x7fff3e0,0x0,0x3ffc3e0,0x0,0xff03e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e07f000,0x0,0x3e3ffc00,0x0,0x3e7fff00,0x0,0x3effff80,0x0,0x3ef03f80,0x0,0x3fc01fc0,0x0,0x3f800fc0,0x0, + 0x3f800fe0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0, + 0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0,0x3e0003f0,0x0, + 0x3f0007f0,0x0,0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f8007e0,0x0,0x3fc00fc0,0x0,0x3fc01fc0,0x0,0x3ef03f80,0x0,0x3e7fff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x3e07f000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fe00000,0x0,0x7ff81f00,0x0,0x7ffe1f00,0x0,0x7fff1f00,0x0,0x7fff1f00,0x0,0x3f9e00,0x0,0x7de00,0x0, + 0x3fe00,0x0,0x1fe00,0x0,0xfe00,0x0,0xfe00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x3e00,0x0, + 0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0, + 0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0,0x3e00,0x0, + 0x3e00,0x0,0x3e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fc03f80,0x0,0x1f000f80,0x0,0x3f000fc0,0x0, + 0x1e0007c0,0x0,0x7c0,0x0,0x7c0,0x0,0x7c0,0x0,0xfc0,0x0,0x3fc0,0x0,0x1ff80,0x0,0xfff00,0x0, + 0xfffe00,0x0,0x3fffc00,0x0,0xfffe000,0x0,0x1fff0000,0x0,0x3ff00000,0x0,0x3f800000,0x0,0x7f000000,0x0,0x7e000000,0x0, + 0x7c000000,0x0,0x7c000000,0x0,0x7c000380,0x0,0x7c0003e0,0x0,0x3e0007e0,0x0,0x3f000fc0,0x0,0x1fc03fc0,0x0,0x1fffff80,0x0, + 0x7ffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7000,0x0,0x7800,0x0,0x7800,0x0,0x7800,0x0,0x7800,0x0,0x7800,0x0, + 0x7c00,0x0,0x7c00,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x1fffffe0,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0, + 0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0x7c00,0x0,0xfc00,0x0,0x3801f800,0x0,0x3ffff800,0x0, + 0x3ffff000,0x0,0x3fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007c0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe00000fc,0x3,0xf00000f8,0x1,0xf00000f8,0x1,0xf80001f8,0x1,0xf80001f0,0x0,0xf80003f0,0x0, + 0x7c0003e0,0x0,0x7c0003e0,0x0,0x3e0007c0,0x0,0x3e0007c0,0x0,0x3f000fc0,0x0,0x1f000f80,0x0,0x1f000f80,0x0,0xf801f00,0x0, + 0xf801f00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x7c03e00,0x0,0x3e07c00,0x0,0x3e07c00,0x0,0x1f0f800,0x0,0x1f0f800,0x0, + 0xf0f800,0x0,0xf9f000,0x0,0xf9f000,0x0,0x79e000,0x0,0x7de000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x1fc000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc000003e,0x7,0xc000003e,0x7,0xc000003e,0x7,0xe000007c,0x3,0xe000007c,0x3,0xe000007c,0x3, + 0xe000007c,0x3,0xe000007c,0x3,0xe000007c,0x3,0xf01f8078,0x1,0xf03fc0f8,0x1,0xf03fc0f8,0x1,0xf03fc0f8,0x1,0xf03fc0f8,0x1, + 0xf079e0f8,0x1,0xf879e0f0,0x0,0xf879e1f0,0x0,0xf879f1f0,0x0,0xf8f0f1f0,0x0,0xf8f0f1f0,0x0,0xf8f0f1f0,0x0,0x79f0f9e0,0x0, + 0x7de079e0,0x0,0x7de079e0,0x0,0x7de07de0,0x0,0x7fc03fe0,0x0,0x7fc03fe0,0x0,0x3fc03fc0,0x0,0x3fc01fc0,0x0,0x3f801fc0,0x0, + 0x3f801fc0,0x0,0x3f801fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0003f0,0x0,0x7e0007e0,0x0,0x3e000fc0,0x0,0x3f000f80,0x0,0x1f801f80,0x0,0xfc03f00,0x0, + 0x7c03e00,0x0,0x7e07e00,0x0,0x3f0fc00,0x0,0x1f0f800,0x0,0xf9f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x3fc000,0x0, + 0x3fc000,0x0,0x1f8000,0x0,0x3fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xfff000,0x0,0x1f9f800,0x0,0x3f0f800,0x0, + 0x3e07c00,0x0,0x7e07e00,0x0,0xfc03f00,0x0,0xf801f00,0x0,0x1f801f80,0x0,0x3f000fc0,0x0,0x7e0007c0,0x0,0x7e0007e0,0x0, + 0xfc0003f0,0x0,0xf80001f8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf00000fc,0x3,0xf00000fc,0x3,0xf00000f8,0x1,0xf80001f8,0x1,0xf80001f0,0x0,0xfc0003f0,0x0, + 0x7c0003e0,0x0,0x7c0007e0,0x0,0x7e0007c0,0x0,0x3e0007c0,0x0,0x3f000f80,0x0,0x1f000f80,0x0,0x1f001f80,0x0,0x1f801f00,0x0, + 0xf803f00,0x0,0xfc03e00,0x0,0x7c03e00,0x0,0x7c07c00,0x0,0x3e07c00,0x0,0x3e0f800,0x0,0x3f0f800,0x0,0x1f1f000,0x0, + 0x1f1f000,0x0,0xf9f000,0x0,0xfbe000,0x0,0x7fe000,0x0,0x7fc000,0x0,0x7fc000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0,0xfc000,0x0,0x7c000,0x0,0x7e000,0x0,0x3e000,0x0, + 0x3f800,0x0,0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3f800000,0x0,0x1f800000,0x0, + 0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3f0000,0x0, + 0x1f8000,0x0,0xfc000,0x0,0xfe000,0x0,0x7e000,0x0,0x3f000,0x0,0x1f800,0x0,0xfc00,0x0,0xfe00,0x0, + 0x7e00,0x0,0x3f00,0x0,0x1f80,0x0,0xfc0,0x0,0x7e0,0x0,0x7f0,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0, + 0x7ffffff0,0x0,0x7ffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff00000,0x0, + 0x7ffc0000,0x0,0x7ffe0000,0x0,0x7fff0000,0x0,0x3f0000,0x0,0x1f8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xfc000,0x0,0x7e000,0x0,0x7f000,0x0, + 0x3fc00,0x0,0x1ff80,0x0,0x7f80,0x0,0x7f80,0x0,0x1ff80,0x0,0x3fc00,0x0,0x7f000,0x0,0x7c000,0x0, + 0xfc000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0x1f8000,0x0,0x3f0000,0x0,0x7fff0000,0x0,0x7ffe0000,0x0,0x7ffc0000,0x0,0x7ff00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0,0x0, + 0x3ffe0,0x0,0x7ffe0,0x0,0xfffe0,0x0,0xfc000,0x0,0xf8000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xfe0000,0x0, + 0x3fc0000,0x0,0x1ff80000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x1ff80000,0x0,0x3fc0000,0x0,0xfe0000,0x0,0x3e0000,0x0, + 0x3f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f8000,0x0,0xfc000,0x0,0xfffe0,0x0,0x7ffe0,0x0,0x3ffe0,0x0,0xffe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x0,0x7fff0,0x1,0xe03ffff8,0x1,0xfffffff8,0x1,0xffffc078,0x1, + 0xfffc0008,0x0,0x1fe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0xde4f200c,0x0,0x57eb708c,0x0,0x273327cc,0xc,0xc19f77ec,0xf,0xc1be27c4,0xf,0xf06037ec,0xf,0xe04067cc,0xf,0x3060200c,0x3, + 0x7060700c,0x3,0xd9933ffc,0xc,0xd8f30080,0xc,0xfc730000,0xe,0xc1f33004,0x3,0xc1c3300c,0x3,0xc603d870,0xc,0xc603d8f8,0xc, + 0xfe7f398c,0x0,0x563f2fac,0x4,0x61f07fc,0xc,0x667821fc,0x8,0xe67031fc,0x0,0xc00c1e00,0xc,0xc00c0e00,0xc,0x1fbfe1c,0x0, + 0x1f3fe3c,0x0,0x21bfdfec,0x0,0x218abfcc,0xa,0x1803fec,0xf,0xfc105f0,0xf,0x1fe301f0,0xf,0x21e0f860,0x8,0x31e0f860,0x0, + 0x261c0670,0x0,0x763c0670,0x0,0xf86ffe38,0x0,0x784fee00,0x8,0x386f0000,0xc,0x31f03ffc,0xb,0x71f83ffc,0xb,0xd80c200c,0xc, + 0xd80c600c,0xc,0x3f9c33cc,0x8,0x7fb467e4,0x5,0xffc037cc,0xf,0x77a027ec,0xb,0x279c67cc,0x3,0x3180300c,0x0,0x6180600c,0x0, + 0x39f3ffc,0x1,0x79f3ffc,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xff00,0x0,0xfe00,0x0, + 0xbe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3bdef0,0x0,0x7ffff0,0x0,0x3ffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffffff,0xf,0x55555555,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffc,0x0,0x3fffc,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0,0x3000c,0x0, + 0x3fffc,0x0,0x3fffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x7fe000,0x0, + 0x1fff800,0x0,0x7fffe00,0x0,0xfffff00,0x0,0x1fcf3f80,0x0,0x1f8f1fc0,0x0,0x3f0f07c0,0x0,0x3e0f07e0,0x0,0x7e0f03e0,0x0, + 0x1c0f03e0,0x0,0xf03f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0, + 0xf01f0,0x0,0xf01f0,0x0,0xf01f0,0x0,0xf03f0,0x0,0x7c0f03e0,0x0,0x7c0f03e0,0x0,0x3e0f07e0,0x0,0x3f0f0fc0,0x0, + 0x3f8f1fc0,0x0,0x1fcf3f80,0x0,0xfffff00,0x0,0x7fffe00,0x0,0x1fff800,0x0,0x7fe000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x7ffe000,0x0,0xffff000,0x0,0x1ffff800,0x0,0x3f81fc00,0x0,0x7f007e00,0x0,0x7e003e00,0x0, + 0xc003e00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0, + 0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0xfffffc,0x0,0xfffffc,0x0,0xfffffc,0x0,0xfffffc,0x0, + 0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0,0x1f00,0x0, + 0xf80,0x0,0xf80,0x0,0xe0000f80,0x0,0xe00007c0,0x3,0xf00003e0,0x3,0xf80000f8,0x1,0xfffffffc,0x1,0xfffffffc,0x0, + 0x7ffffffc,0x0,0x3ffffffc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x8000080,0x0,0x1c1fc1c0,0x0,0x3e7ff1e0,0x0,0x7ffffff0,0x0,0x3fffffe0,0x0,0x1fffffc0,0x0,0xff07f80,0x0,0xfc01f80,0x0, + 0x1f0007c0,0x0,0x1f0007c0,0x0,0x3e0003e0,0x0,0x3c0001e0,0x0,0x3c0001e0,0x0,0x3c0001e0,0x0,0x3c0001e0,0x0,0x3c0001e0,0x0, + 0x3c0001e0,0x0,0x3e0003e0,0x0,0x1e0003c0,0x0,0x1f0007c0,0x0,0xfc01f80,0x0,0xff07f80,0x0,0x1fffffc0,0x0,0x3fffffe0,0x0, + 0x7ffffff0,0x0,0x3e7ff1e0,0x0,0x1c1fc1c0,0x0,0x8000080,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf000007e,0x3,0xf80000fc,0x1,0xf80000f8,0x1,0xfc0001f8,0x0,0x7c0001f0,0x0,0x7e0003f0,0x0, + 0x3f0007e0,0x0,0x1f0007c0,0x0,0x1f800fc0,0x0,0xf800f80,0x0,0xfc01f80,0x0,0x7e01f00,0x0,0x3e03e00,0x0,0x3f07e00,0x0, + 0x1f07c00,0x0,0x1f8fc00,0x0,0xf8f800,0x0,0x7df000,0x0,0x7ff000,0x0,0x3fe000,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0, + 0x7ffffff0,0x0,0x7ffffff0,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0x7ffffff0,0x0,0x7ffffff0,0x0, + 0x7ffffff0,0x0,0x7ffffff0,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc000,0x0, + 0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3f807f00,0x0,0x3f001f80,0x0,0x7e001f80,0x0,0x3c000f80,0x0,0xf80,0x0, + 0xf80,0x0,0x1f80,0x0,0x3f00,0x0,0xff00,0x0,0x7fe00,0x0,0x7ffc00,0x0,0x3fff000,0x0,0xffff800,0x0, + 0x1ffffe00,0x0,0x3fe03f00,0x0,0x7f001f80,0x0,0xfe000f80,0x0,0xfc0007c0,0x0,0xf80007c0,0x0,0xf80007c0,0x0,0xf80007c0,0x0, + 0xf8000fc0,0x0,0x7c001f80,0x0,0x7e003f80,0x0,0x3f01ff00,0x0,0x1ffffe00,0x0,0x7fff800,0x0,0x7ffe000,0x0,0xfff0000,0x0, + 0x3ff00000,0x0,0x7f800000,0x0,0x7e000000,0x0,0xfc000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf8000380,0x0,0xf80007e0,0x0, + 0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f803f80,0x0,0x3fffff80,0x0,0x1fffff00,0x0,0x7fffc00,0x0,0xffe000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc000,0x0, + 0x1fff800,0x0,0x7fffe00,0x0,0xfc03f00,0x0,0x1f000f80,0x0,0x3c0003c0,0x0,0x780001e0,0x0,0xf00000f0,0x0,0xe0000070,0x0, + 0xe01f8078,0x1,0xc07ff038,0x1,0xc1fff83c,0x3,0x83e0fc1c,0x3,0x83c03c1c,0x3,0x87801e1c,0x3,0x3001e0e,0x7,0x1f0e,0x7, + 0xf0e,0x7,0xf0e,0x7,0xf0e,0x7,0xf0e,0x7,0xf0e,0x7,0xf0e,0x7,0xf0e,0x7,0xf0e,0x7, + 0x3001e0e,0x7,0x7001e0e,0x7,0x87803e1c,0x3,0x83c07c1c,0x3,0x83e0fc1c,0x3,0xc1fff83c,0x3,0xc07fe038,0x1,0xe01f8038,0x1, + 0xe0000070,0x0,0xf00000f0,0x0,0x780001e0,0x0,0x3c0003c0,0x0,0x3f0007c0,0x0,0xfc03f00,0x0,0x7fffe00,0x0,0x1fff800,0x0, + 0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fe000,0x0,0x7ffc00,0x0,0xfffe00,0x0,0x1f83f00,0x0,0x1e00f00,0x0,0x3c00780,0x0,0x3c00780,0x0, + 0x3c00000,0x0,0x3c00000,0x0,0x3fff000,0x0,0x3fffe00,0x0,0x3ffff00,0x0,0x3c01f80,0x0,0x3c007c0,0x0,0x3c003c0,0x0, + 0x3e003c0,0x0,0x3e003c0,0x0,0x3f807c0,0x0,0x7de0f80,0x0,0x3f8fff80,0x0,0x3f87ff00,0x0,0x3e01fc00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf007c000,0x1, + 0xf803e000,0x0,0x7c01f000,0x0,0x7e01f800,0x0,0x3f00fc00,0x0,0x1f807e00,0x0,0xfc03f00,0x0,0x7e01f80,0x0,0x3f00fc0,0x0, + 0x1f807e0,0x0,0xfc03f0,0x0,0x7c01f0,0x0,0xfc03f0,0x0,0x1f807e0,0x0,0x3f00fc0,0x0,0x7e01f80,0x0,0xfc03f00,0x0, + 0x1f807e00,0x0,0x3f00fc00,0x0,0x7e01f800,0x0,0x7c01f000,0x0,0xf803e000,0x0,0xf007c000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1,0xfffffff8,0x1, + 0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1, + 0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0xe0000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc000,0x0, + 0x1fff800,0x0,0x7fffe00,0x0,0xfc03f00,0x0,0x1f000f80,0x0,0x3c0003c0,0x0,0x780001e0,0x0,0xf00000f0,0x0,0xe0000070,0x0, + 0xe03ffc78,0x1,0xc0fffc38,0x1,0xc3fffc3c,0x3,0x83e03c1c,0x3,0x87c03c1c,0x3,0x87803c1c,0x3,0x7803c0e,0x7,0x7803c0e,0x7, + 0x7803c0e,0x7,0x7c03c0e,0x7,0x3e03c0e,0x7,0x1fffc0e,0x7,0xfffc0e,0x7,0x3ffc0e,0x7,0x3c3c0e,0x7,0x783c0e,0x7, + 0xf03c0e,0x7,0xf03c0e,0x7,0x81e03c1c,0x3,0x81e03c1c,0x3,0x83c03c1c,0x3,0xc7803c3c,0x3,0xc7803c38,0x1,0xef003c38,0x1, + 0xe0000070,0x0,0xf00000f0,0x0,0x780001e0,0x0,0x3c0003c0,0x0,0x3f0007c0,0x0,0xfc03f00,0x0,0x7fffe00,0x0,0x1fff800,0x0, + 0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0xf,0xffffffff,0xf,0xffffffff,0xf,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f0000,0x0,0x7fc000,0x0,0x1fff000,0x0,0x1e0f000,0x0,0x3c07800,0x0,0x3803800,0x0,0x7001c00,0x0, + 0x7001c00,0x0,0x7001c00,0x0,0x7001c00,0x0,0x7001c00,0x0,0x3803800,0x0,0x3c07800,0x0,0x1e0f000,0x0,0x1fff000,0x0, + 0x7fc000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0, + 0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fc000,0x0,0x7ff000,0x0,0x1fff800,0x0,0x1f07c00,0x0,0x3e03c00,0x0,0x3c01e00,0x0,0x3c01e00,0x0, + 0x3c00000,0x0,0x3c00000,0x0,0x1e00000,0x0,0x1f00000,0x0,0xf80000,0x0,0x7c0000,0x0,0x3e0000,0x0,0xf8000,0x0, + 0x7c000,0x0,0x1e000,0x0,0xf000,0x0,0x7800,0x0,0x3c00,0x0,0x1e00,0x0,0x3fffe00,0x0,0x3fffe00,0x0, + 0x3fffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f8000,0x0,0xffe000,0x0,0x1fff000,0x0,0x1f0f800,0x0,0x3e07c00,0x0,0x3c03c00,0x0,0x3c03c00,0x0, + 0x3c00000,0x0,0x1e00000,0x0,0x1f00000,0x0,0xff0000,0x0,0x3f0000,0x0,0x1ff0000,0x0,0x3e00000,0x0,0x3c00000,0x0, + 0x7800000,0x0,0x7800000,0x0,0x7801e00,0x0,0x7801e00,0x0,0x7c03c00,0x0,0x3e07c00,0x0,0x1fff800,0x0,0xfff000,0x0, + 0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0x7e0000,0x0,0x3f0000,0x0,0x1f8000,0x0,0xfc000,0x0,0x7c000,0x0,0x1e000,0x0,0xf000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0,0x7c0003e0,0x0, + 0x7e0003e0,0x0,0x7e0003e0,0x0,0x7e0007e0,0x0,0x7f0007e0,0x0,0x7f800fe0,0x0,0x7fc01fe0,0x0,0x7df03fe0,0x0,0x7cffffe0,0x0, + 0x7c7ffbe0,0x0,0x7c3ff3e0,0x0,0xfc3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffff800,0x0,0xfffffe00,0x0,0xffffff80,0x0,0xffffffc0,0x0,0xf03ffc0,0x0,0xf03ffe0,0x0, + 0xf03ffe0,0x0,0xf03fff0,0x0,0xf03fff0,0x0,0xf03fff0,0x0,0xf03fff0,0x0,0xf03fff0,0x0,0xf03fff0,0x0,0xf03fff0,0x0, + 0xf03ffe0,0x0,0xf03ffe0,0x0,0xf03ffe0,0x0,0xf03ffc0,0x0,0xf03ff80,0x0,0xf03ff00,0x0,0xf03fc00,0x0,0xf03c000,0x0, + 0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0, + 0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0, + 0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0, + 0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0xf03c000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1c0,0x0,0xe0,0x0,0xe0,0x0,0x7e0,0x0,0x1ff0,0x0,0x3e00,0x0, + 0x3c00,0x0,0x3c00,0x0,0x3e00,0x0,0x1ff8,0x0,0xff8,0x0,0x3f8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf0000,0x0,0xf8000,0x0,0xfc000,0x0,0xff000,0x0,0xfff00,0x0,0xf3f00,0x0,0xf0f00,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0, + 0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0xf0000,0x0,0x7ffff00,0x0,0x7ffff00,0x0, + 0x7ffff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0xfff000,0x0,0x3fffc00,0x0,0x7e07e00,0x0,0x7801e00,0x0,0xf000f00,0x0,0xf000f00,0x0, + 0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0,0x1e000780,0x0, + 0xf000f00,0x0,0xf000f00,0x0,0x7801e00,0x0,0x7e07e00,0x0,0x3fffc00,0x0,0xfff000,0x0,0x3fc000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00f8,0x0, + 0x7c01f0,0x0,0xf803e0,0x0,0x1f807e0,0x0,0x3f00fc0,0x0,0x7e01f80,0x0,0xfc03f00,0x0,0x1f807e00,0x0,0x3f00fc00,0x0, + 0x7e01f800,0x0,0xfc03f000,0x0,0xf803e000,0x0,0xfc03f000,0x0,0x7e01f800,0x0,0x3f00fc00,0x0,0x1f807e00,0x0,0xfc03f00,0x0, + 0x7e01f80,0x0,0x3f00fc0,0x0,0x1f807e0,0x0,0xf803e0,0x0,0x7c01f0,0x0,0x3e00f8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x380003c0,0x0,0x1c0003e0,0x0,0x1c0003f8,0x0,0xe0003fe,0x0,0xf0003fe,0x0,0x70003ce,0x0, + 0x78003c0,0x0,0x38003c0,0x0,0x3c003c0,0x0,0x1c003c0,0x0,0x1e003c0,0x0,0xe003c0,0x0,0xf003c0,0x0,0x7003c0,0x0, + 0x7803c0,0x0,0x3803c0,0x0,0x3c03c0,0x0,0xf01c03c0,0x1,0xf01e03c0,0x1,0xf80e03c0,0x1,0xfc071ffc,0x1,0xfe071ffc,0x1, + 0xee039ffc,0x1,0xe703c000,0x1,0xe381c000,0x1,0xe381e000,0x1,0xe1c0e000,0x1,0xe0e0f000,0x1,0xe0f07000,0x1,0xe0707800,0x1, + 0xe0383800,0x1,0xe01c3c00,0x1,0xfffc1c00,0xf,0xfffc1e00,0xf,0xfffc0e00,0xf,0xe0000f00,0x1,0xe0000700,0x1,0xe0000780,0x1, + 0xe0000380,0x1,0xe00001c0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x380003c0,0x0,0x1c0003e0,0x0,0x1c0003f8,0x0,0xe0003fe,0x0,0xf0003fe,0x0,0x70003ce,0x0, + 0x78003c0,0x0,0x38003c0,0x0,0x3c003c0,0x0,0x1c003c0,0x0,0x1e003c0,0x0,0xe003c0,0x0,0xf003c0,0x0,0x7003c0,0x0, + 0x7803c0,0x0,0x3803c0,0x0,0x3c03c0,0x0,0x7e1c03c0,0x0,0xff9e03c0,0x1,0xffce03c0,0x3,0xc3e71ffc,0x3,0x81e71ffc,0x7, + 0x80f39ffc,0x7,0x80f3c000,0x7,0x8001c000,0x7,0x8001e000,0x7,0xc000e000,0x3,0xe000f000,0x3,0xf0007000,0x1,0xf8007800,0x0, + 0x7c003800,0x0,0x3e003c00,0x0,0xf001c00,0x0,0x7801e00,0x0,0x3c00e00,0x0,0x1e00f00,0x0,0xf00700,0x0,0xfff00780,0x7, + 0xfff00380,0x7,0xfff001c0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x700003f0,0x0,0x38000ff8,0x0,0x38001ffc,0x0,0x1c003e3e,0x0,0x1e003c1f,0x0,0xe003c0f,0x0, + 0xf003c0f,0x0,0x7003c00,0x0,0x7801e00,0x0,0x3801f00,0x0,0x3c00fe0,0x0,0x1c007e0,0x0,0x1e01fe0,0x0,0xe03e00,0x0, + 0xf07c00,0x0,0x707800,0x0,0x78780f,0x0,0xf038780f,0x1,0xf03c781e,0x1,0xf81c3c3e,0x1,0xfc0e3ffc,0x1,0xfe0e1ff8,0x1, + 0xee0707e0,0x1,0xe7078000,0x1,0xe3838000,0x1,0xe383c000,0x1,0xe1c1c000,0x1,0xe0e1e000,0x1,0xe0f0e000,0x1,0xe070f000,0x1, + 0xe0387000,0x1,0xe01c7800,0x1,0xfffc3800,0xf,0xfffc3c00,0xf,0xfffc1c00,0xf,0xe0001e00,0x1,0xe0000e00,0x1,0xe0000f00,0x1, + 0xe0000700,0x1,0xe0000380,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3e0000,0x0, + 0x3f0000,0x0,0x3f0000,0x0,0x1f8000,0x0,0xfe000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fe00,0x0,0xff00,0x0, + 0x3f80,0x0,0x1fc0,0x0,0xfe0,0x0,0x7e0,0x0,0x7f0,0x0,0x3f0,0x0,0xf00003f0,0x3,0xf00003f0,0x3, + 0xf80003f0,0x3,0xf80003f0,0x1,0xfc0007f0,0x1,0xfe0007e0,0x0,0xff001fe0,0x0,0x7fc07fc0,0x0,0x3fffff80,0x0,0xfffff00,0x0, + 0x7fffc00,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x1f800,0x0,0x3f000,0x0,0x7e000,0x0,0x7c000,0x0,0xf0000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0x1c03fc00,0x0,0x1e0ffe00,0x0,0xe3ffe00,0x0,0xfff8e00,0x0,0xffe0f00,0x0,0x7f80700,0x0,0x1e00700,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x1f8000,0x0,0x7fe000,0x0,0xfff000,0x0,0xf0f000,0x0,0x1e07800,0x0,0x1e07800,0x0,0x1e07800,0x0, + 0x1e07800,0x0,0xf0f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffe000,0x0,0xfff000,0x0, + 0xf9f000,0x0,0x1f9f000,0x0,0x1f9f800,0x0,0x1f1f800,0x0,0x3f0f800,0x0,0x3f0fc00,0x0,0x3e0fc00,0x0,0x7e07e00,0x0, + 0x7e07e00,0x0,0x7c07e00,0x0,0xfc03f00,0x0,0xfc03f00,0x0,0xf803f00,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0x3f001f80,0x0, + 0x3f000fc0,0x0,0x3f000fc0,0x0,0x7fffffc0,0x0,0x7fffffe0,0x0,0x7fffffe0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfc0003f0,0x0, + 0xfc0003f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001fc,0x3,0xf00000fc,0x3,0xf00000fc,0x3,0xe00000fe,0x7,0xe000007e,0x7, + 0xe000007e,0x7,0xc000003f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffe000,0x3,0xfffff000,0x3,0xfffff000,0x3,0xfffff000,0x3,0xfffff800,0x3,0xf9f800,0x0, + 0xf9f800,0x0,0xf8fc00,0x0,0xf8fc00,0x0,0xf8fc00,0x0,0xf8fe00,0x0,0xf87e00,0x0,0xf87e00,0x0,0xf87e00,0x0, + 0xf83f00,0x0,0xf83f00,0x0,0xf83f00,0x0,0xfff81f80,0x3,0xfff81f80,0x3,0xfff81f80,0x3,0xfff80fc0,0x3,0xfff80fc0,0x3, + 0xf80fc0,0x0,0xffffe0,0x0,0xffffe0,0x0,0xffffe0,0x0,0xfffff0,0x0,0xfffff0,0x0,0xf803f0,0x0,0xf803f8,0x0, + 0xf801f8,0x0,0xf801f8,0x0,0xf801fc,0x0,0xf800fc,0x0,0xf800fc,0x0,0xfff800fe,0x7,0xfff8007e,0x7,0xfff8007e,0x7, + 0xfff8007f,0x7,0xfff8003f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3fff000,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fffff00,0x0,0x7fc0ff80,0x0,0x7f003fc0,0x0, + 0xfe001fc0,0x0,0xfc000fe0,0x0,0xf80007e0,0x1,0xf80007f0,0x0,0x100003f0,0x0,0x3f0,0x0,0x3f0,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0, + 0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x1f8,0x0,0x3f0,0x0,0x3f0,0x0,0x200003f0,0x0,0xf00003f0,0x1, + 0xf00007e0,0x3,0xf80007e0,0x1,0xfc000fe0,0x1,0xfe001fc0,0x0,0xff003fc0,0x0,0x7fc0ff80,0x0,0x3fffff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0xff8000,0x0,0x70000,0x0,0x70000,0x0,0x3f0000,0x0,0xff8000,0x0,0x1f00000,0x0, + 0x1e00000,0x0,0x1e00000,0x0,0x1f00000,0x0,0xffc000,0x0,0x7fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 200 + 0x1f800,0x0,0x3f000,0x0,0x7e000,0x0,0x7c000,0x0,0xf0000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x1,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x1,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x1,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0xffffffe0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0,0x3fffffe0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0xffffffe0,0x1,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0x1f800,0x0,0x3f000,0x0,0x7e000,0x0,0x7c000,0x0,0xf0000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0, + 0x3fffffc0,0x0,0x3fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7ffe0,0x0,0x7fffe0,0x0,0x1ffffe0,0x0,0x7ffffe0,0x0,0xfffffe0,0x0,0x1ff807e0,0x0, + 0x3fe007e0,0x0,0x3f8007e0,0x0,0x7f0007e0,0x0,0x7e0007e0,0x0,0xfe0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0, + 0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf807fffe,0x1,0xf807fffe,0x1,0xf807fffe,0x1,0xf807fffe,0x1, + 0xf807fffe,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xfc0007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0007e0,0x0, + 0x7e0007e0,0x0,0x7f0007e0,0x0,0x3f8007e0,0x0,0x1fc007e0,0x0,0x1ff807e0,0x0,0xfffffe0,0x0,0x7ffffe0,0x0,0x1ffffe0,0x0, + 0x7fffe0,0x0,0xfffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0x1c03fc00,0x0,0x1e0ffe00,0x0,0xe3ffe00,0x0,0xfff8e00,0x0,0xffe0f00,0x0,0x7f80700,0x0,0x1e00700,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7c000fe0,0x0,0x7c000fe0,0x0,0x7c001fe0,0x0,0x7c001fe0,0x0,0x7c003fe0,0x0,0x7c003fe0,0x0, + 0x7c003fe0,0x0,0x7c007fe0,0x0,0x7c007fe0,0x0,0x7c00fbe0,0x0,0x7c00fbe0,0x0,0x7c01f3e0,0x0,0x7c01f3e0,0x0,0x7c03e3e0,0x0, + 0x7c03e3e0,0x0,0x7c03c3e0,0x0,0x7c07c3e0,0x0,0x7c07c3e0,0x0,0x7c0f83e0,0x0,0x7c0f83e0,0x0,0x7c1f03e0,0x0,0x7c1f03e0,0x0, + 0x7c3e03e0,0x0,0x7c3e03e0,0x0,0x7c3e03e0,0x0,0x7c7c03e0,0x0,0x7c7c03e0,0x0,0x7cf803e0,0x0,0x7cf803e0,0x0,0x7df003e0,0x0, + 0x7df003e0,0x0,0x7fe003e0,0x0,0x7fe003e0,0x0,0x7fe003e0,0x0,0x7fc003e0,0x0,0x7fc003e0,0x0,0x7f8003e0,0x0,0x7f8003e0,0x0, + 0x7f0003e0,0x0,0x7f0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0x1f800,0x0,0x3f000,0x0,0x7e000,0x0,0x7c000,0x0,0xf0000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3fffc00,0x0,0x1fff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3fffc00,0x0,0x1fff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3fffc00,0x0,0x1fff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0x1c03fc00,0x0,0x1e0ffe00,0x0,0xe3ffe00,0x0,0xfff8e00,0x0,0xffe0f00,0x0,0x7f80700,0x0,0x1e00700,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3fffc00,0x0,0x1fff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0, + 0x0,0x0,0x3fc000,0x0,0x1fff800,0x0,0x3fffc00,0x0,0xfffff00,0x0,0xfffff80,0x0,0x1fe07f80,0x0,0x3f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7e0007e0,0x0,0xfe0007f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1, + 0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xf80001f8,0x1,0xfc0001f8,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fc0,0x0,0x1fe07f80,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3fffc00,0x0,0x1fff800,0x0,0x3fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x10000100,0x0,0x38000380,0x0,0x7c0003c0,0x0,0xfe0007e0,0x0,0x7f000fc0,0x0,0x3f801f80,0x0,0x1fc03f00,0x0,0xfe07e00,0x0, + 0x7f0fc00,0x0,0x3f9f800,0x0,0x1fff000,0x0,0xffe000,0x0,0x7fc000,0x0,0x3f8000,0x0,0x7fc000,0x0,0xffe000,0x0, + 0x1fff000,0x0,0x3fbf800,0x0,0x7f1fc00,0x0,0xfe0fe00,0x0,0x1fc07f00,0x0,0x3f803f80,0x0,0x7f001fc0,0x0,0xfe000fe0,0x0, + 0x7c0007c0,0x0,0x38000380,0x0,0x10000100,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x80000000,0x0,0x803fc000,0x1,0xc1fff800,0x3,0xe3fffc00,0x1,0xefffff00,0x1,0xffffff80,0x0,0x7fe07f80,0x0,0x7f801fc0,0x0, + 0x3f000fe0,0x0,0x7f000fe0,0x0,0x7f0007e0,0x0,0xff8007f0,0x0,0xff8003f0,0x0,0xffc003f0,0x0,0xfde003f0,0x0,0xf9e001f8,0x1, + 0xf8f001f8,0x1,0xf87801f8,0x1,0xf87c01f8,0x1,0xf83c01f8,0x1,0xf81e01f8,0x1,0xf80f01f8,0x1,0xf80f81f8,0x1,0xf80781f8,0x1, + 0xf803c1f8,0x1,0xf801e1f8,0x1,0xf801e1f8,0x1,0xf800f1f8,0x1,0xfc007bf8,0x0,0xfc007ff0,0x0,0xfc003ff0,0x0,0xfc001ff0,0x0, + 0xfe000ff0,0x0,0x7e000fe0,0x0,0x7f000fe0,0x0,0x3f000fc0,0x0,0x3f801fe0,0x0,0x1fe07fe0,0x0,0xffffff0,0x0,0x7ffff78,0x0, + 0x3fffc7c,0x0,0x1fff83c,0x0,0x3fc018,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0xfc00,0x0,0x1f800,0x0,0x3f000,0x0,0x3e000,0x0,0x78000,0x0,0xf0000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0003f0,0x0,0x7e0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f800fe0,0x0,0x3fe03fc0,0x0,0x1fffffc0,0x0,0x1fffff80,0x0, + 0x7ffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0003f0,0x0,0x7e0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f800fe0,0x0,0x3fe03fc0,0x0,0x1fffffc0,0x0,0x1fffff80,0x0, + 0x7ffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0003f0,0x0,0x7e0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f800fe0,0x0,0x3fe03fc0,0x0,0x1fffffc0,0x0,0x1fffff80,0x0, + 0x7ffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0xfe0003f0,0x0,0x7e0007f0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f800fe0,0x0,0x3fe03fc0,0x0,0x1fffffc0,0x0,0x1fffff80,0x0, + 0x7ffff00,0x0,0x3fffc00,0x0,0x7fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000007e,0x7,0xf00000fc,0x3,0xf80000f8,0x3,0xf80001f8,0x1,0xfc0003f0,0x0,0xfc0003f0,0x0, + 0x7e0007e0,0x0,0x3e0007c0,0x0,0x3f000fc0,0x0,0x1f801f80,0x0,0x1f801f80,0x0,0xfc03f00,0x0,0x7c03e00,0x0,0x7e07e00,0x0, + 0x3f0fc00,0x0,0x3f0fc00,0x0,0x1f9f800,0x0,0xf9f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fc000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0xffffe0,0x0,0x7ffffe0,0x0,0xfffffe0,0x0,0x3fffffe0,0x0,0x3fc007e0,0x0,0x7f0007e0,0x0,0xfe0007e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1,0xf80007e0,0x1, + 0xf80007e0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfe0007e0,0x0,0x7f0007e0,0x0,0x3fe007e0,0x0,0x1fffffe0,0x0,0xfffffe0,0x0, + 0x3ffffe0,0x0,0xffffe0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0,0x7e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0, + 0x1fffc00,0x0,0x7ffff00,0x0,0xfffff80,0x0,0x1fe03fc0,0x0,0x1f800fc0,0x0,0x3f0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0001f0,0x0,0x3e0001f0,0x0,0x3f0001f0,0x0,0x1f0001f0,0x0,0xf8001f0,0x0,0xfe001f0,0x0,0x7f001f0,0x0,0x1f801f0,0x0, + 0xf801f0,0x0,0xfc01f0,0x0,0x7c01f0,0x0,0x7c01f0,0x0,0x7c01f0,0x0,0xfc01f0,0x0,0x1f801f0,0x0,0x7f801f0,0x0, + 0xff001f0,0x0,0x3fe001f0,0x0,0x7f8001f0,0x0,0xff0001f0,0x0,0xfc0001f0,0x0,0xf80001f0,0x1,0xf00001f0,0x1,0xe00001f0,0x3, + 0xe00001f0,0x3,0xe00001f0,0x3,0xe00001f0,0x3,0xe00001f0,0x3,0xf00001f0,0x3,0xf00081f0,0x1,0xfc0781f0,0x1,0xffff81f0,0x0, + 0x7fff81f0,0x0,0x3fff81f0,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0x0, + 0xfc00,0x0,0x1f800,0x0,0x3f000,0x0,0x3e000,0x0,0x78000,0x0,0xf0000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0, + 0x1fc000,0x0,0x3fe000,0x0,0x7df000,0x0,0xf0f800,0x0,0x1e03c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00f000,0x0, + 0x1c03fc00,0x0,0x1e0ffe00,0x0,0xe3ffe00,0x0,0xfff8e00,0x0,0xffe0f00,0x0,0x7f80700,0x0,0x1e00700,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f8000,0x0,0x7fe000,0x0,0xfff000,0x0,0xf0f000,0x0,0x1e07800,0x0, + 0x1e07800,0x0,0x1e07800,0x0,0x1e07800,0x0,0xf0f000,0x0,0xfff000,0x0,0x7fe000,0x0,0x1f8000,0x0,0x0,0x0, + 0x0,0x0,0x3fe000,0x0,0xfffc00,0x0,0x3ffff00,0x0,0x7ffff80,0x0,0x7e03fc0,0x0,0xfc00fc0,0x0,0xf800fe0,0x0, + 0x1f8007e0,0x0,0x1f0007e0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1fffe000,0x0,0x1ffffc00,0x0, + 0x1fffff00,0x0,0x1fffff80,0x0,0x1f007fc0,0x0,0x1f001fe0,0x0,0x1f000fe0,0x0,0x1f0007f0,0x0,0x1f0003f0,0x0,0x1f0003f0,0x0, + 0x1f8003f0,0x0,0x1f8003f0,0x0,0x1fc003f0,0x0,0x1fc003f0,0x0,0x1fe007f0,0x0,0x3f7007e0,0x0,0x3f7c1fe0,0x0,0xfe3fffc0,0x3, + 0xfe1fffc0,0x3,0xfc07ff00,0x3,0xf801fc00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f803f00,0x0,0x7fe0ffc0,0x0,0xfff1fff0,0x0,0xfffbfff0,0x1,0xf07fe1f8,0x3,0xe03fc0f8,0x3,0xe03fc07c,0x3, + 0xc01f807c,0x7,0xc01f807c,0x7,0xc01f8000,0x7,0x800f8000,0xf,0x800f8000,0xf,0x800f8000,0xf,0x800fff00,0xf,0xffffffe0,0xf, + 0xfffffff0,0xf,0xfffffff8,0xf,0xffff81fc,0xf,0xf80fc,0x0,0xf807c,0x0,0xf807e,0x0,0xf803e,0x0,0xf803e,0x0, + 0xf803e,0x0,0x1fc03e,0x0,0xc01fc03e,0x0,0xc01fc03e,0x7,0xe01fe03e,0x7,0xf03ef07e,0x3,0xf87cf8fc,0x3,0xfffc7ffc,0x1, + 0xfff83ff8,0x0,0x7ff01ff0,0x0,0x1fc007e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f8000,0x0,0x3fff000,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x3fc07f00,0x0,0x3f003f80,0x0,0x7e000fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0, + 0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7e001fc0,0x0,0x3f003f80,0x0,0x3fc07f00,0x0,0x1ffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x70000,0x0,0x70000,0x0,0x3f0000,0x0,0xff8000,0x0,0x1f00000,0x0, + 0x1e00000,0x0,0x1e00000,0x0,0x1f00000,0x0,0xffc000,0x0,0x7fc000,0x0,0x1fc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00,0x0, + 0x1f800,0x0,0x3f000,0x0,0x7e000,0x0,0x7c000,0x0,0xf0000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x1fc0ff00,0x0,0x3f803f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xfffffff0,0x1, + 0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x18000fe0,0x0,0xfc000fc0,0x0,0xfe001fc0,0x0,0x7f003f80,0x0,0x3fc0ff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00000,0x0, + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7c0000,0x0,0x1e0000,0x0,0xf0000,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x1fc0ff00,0x0,0x3f803f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xfffffff0,0x1, + 0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x18000fe0,0x0,0xfc000fc0,0x0,0xfe001fc0,0x0,0x7f003f80,0x0,0x3fc0ff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0, + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x1fc0ff00,0x0,0x3f803f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xfffffff0,0x1, + 0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x18000fe0,0x0,0xfc000fc0,0x0,0xfe001fc0,0x0,0x7f003f80,0x0,0x3fc0ff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0x7fffc00,0x0,0x1ffffe00,0x0,0x1fc0ff00,0x0,0x3f803f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xfffffff0,0x1, + 0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3f0,0x0,0x3e0,0x0, + 0x7e0,0x0,0x7e0,0x0,0x18000fe0,0x0,0xfc000fc0,0x0,0xfe001fc0,0x0,0x7f003f80,0x0,0x3fc0ff00,0x0,0x1ffffe00,0x0, + 0xffffc00,0x0,0x3fff000,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0x0, + 0x3f000,0x0,0x7e000,0x0,0xfc000,0x0,0xf8000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x780000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00000,0x0, + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7c0000,0x0,0x1e0000,0x0,0xf0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0, + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf80f800,0x0,0xf80f800,0x0,0xf80f800,0x0,0xf80f800,0x0,0xf80f800,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3fff00,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0, + 0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0x3e0000,0x0,0xffffffe0,0x1,0xffffffe0,0x1, + 0xffffffe0,0x1,0xffffffe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc00fc00,0x0, + 0xf03f800,0x0,0x1fc7e000,0x0,0xfffc000,0x0,0x3ff0000,0x0,0xff8000,0x0,0xffe000,0x0,0x1fff800,0x0,0x3f1fc00,0x0, + 0x7e07800,0x0,0x7e01800,0x0,0xfc00000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x3f000000,0x0,0x3f3fc000,0x0,0x7ffff800,0x0, + 0x7ffffe00,0x0,0xffffff00,0x0,0xffc07f80,0x0,0xff001fc0,0x0,0xfe000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x1,0xfc0007e0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3fc07f80,0x0,0x1fffff00,0x0, + 0xffffe00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe007800,0x0, + 0xe01fe00,0x0,0xf07ff00,0x0,0x71fff00,0x0,0x7ffc700,0x0,0x7ff0780,0x0,0x3fc0380,0x0,0xf00380,0x0,0x0,0x0, + 0x0,0x0,0xff0000,0x0,0x3ffc3e0,0x0,0x7ffe3e0,0x0,0xffffbe0,0x0,0x1fe0fbe0,0x0,0x1f803fe0,0x0,0x1f001fe0,0x0, + 0x3f000fe0,0x0,0x3e0007e0,0x0,0x3e0007e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0x0, + 0x3f000,0x0,0x7e000,0x0,0xfc000,0x0,0xf8000,0x0,0x1e0000,0x0,0x3c0000,0x0,0x780000,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fc0ff00,0x0,0x3f003f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00000,0x0, + 0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7c0000,0x0,0x1e0000,0x0,0xf0000,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fc0ff00,0x0,0x3f003f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0, + 0x3f8000,0x0,0x7fc000,0x0,0xfbe000,0x0,0x1e1f000,0x0,0x3c07800,0x0,0x7803c00,0x0,0xf001e00,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fc0ff00,0x0,0x3f003f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00f000,0x0, + 0x1c03fc00,0x0,0x1e0ffe00,0x0,0xe3ffe00,0x0,0xfff8e00,0x0,0xffe0f00,0x0,0x7f80700,0x0,0x1e00700,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fc0ff00,0x0,0x3f003f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x3fff800,0x0,0xffffc00,0x0,0x1ffffe00,0x0,0x3fc0ff00,0x0,0x3f003f80,0x0,0x7f001fc0,0x0, + 0x7e000fc0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1, + 0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003f0,0x1,0xf80003e0,0x0, + 0xfc0007e0,0x0,0xfc0007e0,0x0,0xfc0007e0,0x0,0x7e000fc0,0x0,0x7f001fc0,0x0,0x3f803f80,0x0,0x1fe0ff00,0x0,0xffffe00,0x0, + 0x7fffc00,0x0,0x3fff800,0x0,0x7fc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1,0xfffffff0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f0000,0x0,0x1f0000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0x1f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc000,0x0,0x43fff800,0x0,0xe7fffe00,0x1,0xffffff00,0x0,0x7fe07f80,0x0,0x3f801fc0,0x0,0x7f000fe0,0x0, + 0x7f0007e0,0x0,0xff8007f0,0x0,0xffc003f0,0x0,0xfde003f0,0x0,0xf9e003f0,0x0,0xf8f001f8,0x1,0xf87801f8,0x1,0xf83c01f8,0x1, + 0xf81e01f8,0x1,0xf80f01f8,0x1,0xf80f01f8,0x1,0xf80781f8,0x1,0xf803c1f8,0x1,0xf801e1f8,0x1,0xf800f1f8,0x1,0xfc0079f0,0x0, + 0xfc007bf0,0x0,0xfc003ff0,0x0,0xfc001ff0,0x0,0x7e000fe0,0x0,0x7f000fe0,0x0,0x3f801fc0,0x0,0x1fe07fe0,0x0,0xffffff0,0x0, + 0x7fffe78,0x0,0x1fff820,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00,0x0, + 0xfc00,0x0,0x1f800,0x0,0x3f000,0x0,0x3e000,0x0,0x78000,0x0,0xf0000,0x0,0x1e0000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007c0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x1f0000,0x0,0x78000,0x0,0x3c000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007c0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0, + 0x1fc000,0x0,0x3fe000,0x0,0x7df000,0x0,0xf0f800,0x0,0x1e03c00,0x0,0x3c01e00,0x0,0x7800f00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007c0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x3e03e00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0,0x3e0003e0,0x0, + 0x3e0003e0,0x0,0x3f0003e0,0x0,0x3f0003e0,0x0,0x3f8007e0,0x0,0x3f8007c0,0x0,0x3fc00fc0,0x0,0x3ef01fc0,0x0,0x3effff80,0x0, + 0x3e7fff00,0x0,0x3e1ffe00,0x0,0x7f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3e0000,0x0,0xf0000,0x0,0x78000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf00000fc,0x3,0xf00000fc,0x3,0xf00000f8,0x1,0xf80001f8,0x1,0xf80001f0,0x0,0xfc0003f0,0x0, + 0x7c0003e0,0x0,0x7c0007e0,0x0,0x7e0007c0,0x0,0x3e0007c0,0x0,0x3f000f80,0x0,0x1f000f80,0x0,0x1f001f80,0x0,0x1f801f00,0x0, + 0xf803f00,0x0,0xfc03e00,0x0,0x7c03e00,0x0,0x7c07c00,0x0,0x3e07c00,0x0,0x3e0f800,0x0,0x3f0f800,0x0,0x1f1f000,0x0, + 0x1f1f000,0x0,0xf9f000,0x0,0xfbe000,0x0,0x7fe000,0x0,0x7fc000,0x0,0x7fc000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0,0xfc000,0x0,0x7c000,0x0,0x7e000,0x0,0x3e000,0x0, + 0x3f800,0x0,0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0xff03e0,0x0,0x3ffc3e0,0x0,0xffff3e0,0x0,0x1ffff3e0,0x0,0x1fe07be0,0x0,0x3f803fe0,0x0,0x3f001fe0,0x0, + 0x7f000fe0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0, + 0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0,0xfc0003e0,0x0, + 0x7e0007e0,0x0,0x7e0007e0,0x0,0x7e0007e0,0x0,0x7f000fe0,0x0,0x3f000fe0,0x0,0x3f801fe0,0x0,0x1fe07fe0,0x0,0xffffbe0,0x0, + 0x7fff3e0,0x0,0x3ffc3e0,0x0,0xff03e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0, + 0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x3e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x7c07c00,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf00000fc,0x3,0xf00000fc,0x3,0xf00000f8,0x1,0xf80001f8,0x1,0xf80001f0,0x0,0xfc0003f0,0x0, + 0x7c0003e0,0x0,0x7c0007e0,0x0,0x7e0007c0,0x0,0x3e0007c0,0x0,0x3f000f80,0x0,0x1f000f80,0x0,0x1f001f80,0x0,0x1f801f00,0x0, + 0xf803f00,0x0,0xfc03e00,0x0,0x7c03e00,0x0,0x7c07c00,0x0,0x3e07c00,0x0,0x3e0f800,0x0,0x3f0f800,0x0,0x1f1f000,0x0, + 0x1f1f000,0x0,0xf9f000,0x0,0xfbe000,0x0,0x7fe000,0x0,0x7fc000,0x0,0x7fc000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x1f0000,0x0,0x1f0000,0x0,0xf8000,0x0,0xf8000,0x0,0xfc000,0x0,0x7c000,0x0,0x7e000,0x0,0x3e000,0x0, + 0x3f800,0x0,0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,55,-1,5,50,0,0,0,0,0 +const unsigned int ff14_height = 83; +const unsigned int ff14_line_height = 83; +const unsigned int ff14_width = 44; +const unsigned int ff14_stride = 2; +const unsigned char ff14_first_char = ' '; + +uint32_t ff14_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf803fc00,0x7,0xf803fc00,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3, + 0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf803f800,0x3,0xf801f800,0x3, + 0xf001f800,0x1,0xf001f000,0x1,0xf001f000,0x1,0xf001f000,0x1,0xf001f000,0x1,0xf001f000,0x1,0xf001f000,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e0000,0x3c,0x1e0000,0x1c,0xf0000,0x1e, + 0xf0000,0x1e,0xf0000,0x1e,0xf0000,0x1e,0x78000,0xf,0x78000,0xf,0x78000,0xf,0x78000,0xf,0x78000,0xf, + 0x8003c000,0x7,0x8003c000,0x7,0x8003c000,0x7,0x8003c000,0x7,0xfffffff0,0x3ff,0xfffffff0,0x3ff,0xfffffff0,0x3ff,0xfffffff0,0x3ff, + 0xc001e000,0x3,0xe001e000,0x1,0xe000f000,0x1,0xe000f000,0x1,0xe000f000,0x1,0xe000f000,0x1,0xf0007800,0x0,0xf0007800,0x0, + 0xf0007800,0x0,0xf0007800,0x0,0xf0007800,0x0,0xfffffffc,0x1ff,0xfffffffc,0x1ff,0xfffffffc,0x1ff,0xfffffffc,0x1ff,0x3c001e00,0x0, + 0x3c001e00,0x0,0x3c001e00,0x0,0x3c001e00,0x0,0x3c001e00,0x0,0x1e000f00,0x0,0x1e000f00,0x0,0x1e000f00,0x0,0x1e000f00,0x0, + 0x1e000f00,0x0,0xf000780,0x0,0xf000780,0x0,0xf000780,0x0,0xf000780,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x7fc0000,0x0,0xffffe000,0x0,0xfffff800,0x3, + 0xfffffe00,0xf,0xffffff00,0x1f,0xf1f1ff80,0x3f,0xc1f03f80,0x3f,0x1f01fc0,0x7f,0x1f00fc0,0x7f,0x1f00fe0,0xfe,0x1f007e0,0xfc, + 0x1f007e0,0xfc,0x1f007e0,0x1c,0x1f007e0,0x0,0x1f00fe0,0x0,0x1f00fc0,0x0,0x1f01fc0,0x0,0x1f03fc0,0x0,0x1f0ff80,0x0, + 0x1ffff00,0x0,0x3fffe00,0x0,0x3ffffc00,0x0,0xfffff000,0x1,0xffffc000,0x7,0xfffe0000,0xf,0xfff00000,0x3f,0xf9f00000,0x7f, + 0xc1f00000,0xff,0x1f00000,0xff,0x1f00000,0x1fe,0x1f00000,0x1fc,0x1f00000,0x1f8,0x1f00000,0x3f8,0x1f00000,0x3f8,0x1f001e0,0x3f8, + 0x1f001f8,0x3f8,0x1f003f8,0x3f8,0x1f003f0,0x1f8,0x1f007f0,0x1f8,0x1f00fe0,0x1fc,0x1f01fe0,0xfe,0x81f07fc0,0xff,0xf1f3ff80,0x7f, + 0xffffff00,0x3f,0xfffffe00,0x1f,0xfffff800,0x7,0xffffe000,0x1,0xffe0000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0,0x3f0,0x1fff0,0x1f0,0x3fff8,0xf8, + 0x7fff8,0x7c,0xfc0fc,0x7c,0xf807e,0x3e,0xf803e,0x1f,0x801f803e,0x1f,0x801f003e,0xf,0xc01f003e,0x7,0xe01f003e,0x7, + 0xe01f003e,0x3,0xf01f003e,0x1,0xf81f003e,0x1,0xf81f003e,0x0,0x7c1f803e,0x0,0x7e0f803e,0x0,0x3e0f807e,0x0,0x1f0fc07c,0x0, + 0xf87e1fc,0x0,0xf87fff8,0x0,0x7c3fff0,0x0,0x3e1ffe0,0x0,0x3f03f80,0x0,0x1f00000,0x0,0xc0f80000,0x7f,0xf0fc0000,0x1ff, + 0xf87c0000,0x3ff,0xfc3e0000,0x7ff,0x7e3f0000,0x7e0,0x3e1f0000,0xfc0,0x3e0f8000,0xf80,0x3f07c000,0xf80,0x3f07c000,0xf80,0x1f03e000,0xf80, + 0x1f01f000,0xf80,0x1f01f800,0xf80,0x1f00f800,0xf80,0x1f007c00,0xf80,0x1f007e00,0xf80,0x3f003e00,0xf80,0x3e001f00,0xf80,0x3e001f80,0xfc0, + 0x7e000f80,0x7c0,0xfc0007c0,0x7f0,0xfc0003e0,0x3ff,0xf80003e0,0x1ff,0xe00001f0,0xff,0x80000000,0x1f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x1fff8000,0x0,0x7fffc000,0x0, + 0xfffff000,0x0,0xff0ff000,0x0,0xfc03f800,0x1,0xf801f800,0x1,0xf000fc00,0x3,0xf0007c00,0x3,0xf0007c00,0x3,0xf0007c00,0x3, + 0xf0007c00,0x3,0xf0007c00,0x1,0xf8007c00,0x1,0xfc00fc00,0x0,0x7f00f800,0x0,0x3fc0f800,0x0,0x1ff1f800,0x0,0xffdf800,0x0, + 0x3fff000,0x0,0xfff000,0x0,0x3ff800,0x0,0xffc00,0x4,0xfff00,0x7e,0xfff80,0x7e,0x1fbfc0,0x3e,0x3f8fe0,0x3e, + 0x3f07f0,0x3f,0x7e03f0,0x3f,0xfe03f8,0x1f,0xfc01f8,0x1f,0x81f801f8,0x1f,0x83f800fc,0xf,0x87f000fc,0xf,0xc7e000fc,0xf, + 0xcfc000fc,0x7,0xffc000fc,0x7,0xff8000fc,0x3,0xff0000fc,0x3,0xfe0001f8,0x1,0xfc0001f8,0x1,0xfe0003f8,0x3,0xff0007f0,0xf, + 0xffc01ff0,0x43f,0xdffdffe0,0x7ff,0x8fffffc0,0x7ff,0x3ffff80,0x7ff,0x1fffe00,0x7fe,0x3ff000,0x3f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc000000,0x0,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0xfc000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0, + 0xfe000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0, + 0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7e0000,0x0,0xfe0000,0x0, + 0xfc0000,0x0,0x1fc0000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xfe00000,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x3f800000,0x0,0x7f000000,0x0,0x7e000000,0x0,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x7e000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0, + 0xfe000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfc000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0, + 0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0x7e000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x3f000000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0, + 0x7e00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x3f8000,0x0,0x1fc000,0x0,0xfe000,0x0,0xfe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00800,0x2, + 0x81f03800,0x3,0xf1f1fc00,0x7,0xfde7fc00,0x7,0xfffffc00,0x7,0xfffff800,0x3,0x3fff8000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x7fc0000,0x0,0xfbe0000,0x0,0xfbf0000,0x0,0x1f1f0000,0x0,0x3e0f8000,0x0,0x7e0fc000,0x0,0x7c07e000,0x0,0xfc03e000,0x0, + 0x7803c000,0x0,0x18010000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff0000,0x0,0x1ff8000,0x0,0xff8000,0x0,0xff8000,0x0,0x7f8000,0x0, + 0x7fc000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1fe000,0x0,0xfe000,0x0,0xfe000,0x0,0x7e000,0x0, + 0x7f000,0x0,0x3f000,0x0,0x3f000,0x0,0x1f000,0x0,0x1f800,0x0,0x1f800,0x0,0xf800,0x0,0xf800,0x0, + 0x7c00,0x0,0x7c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffff000,0x1, + 0xfffff000,0x1,0xfffff000,0x1,0xfffff000,0x1,0xfffff000,0x1,0xfffff000,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xfc,0x0,0xfe,0x0,0x7e,0x0,0x7f,0x0,0x3f,0x80000000,0x3f,0x80000000,0x1f,0xc0000000,0xf, + 0xc0000000,0xf,0xe0000000,0x7,0xf0000000,0x7,0xf0000000,0x3,0xf8000000,0x3,0xf8000000,0x1,0xfc000000,0x1,0xfc000000,0x0, + 0xfe000000,0x0,0x7e000000,0x0,0x7f000000,0x0,0x3f000000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0, + 0x7e00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0x7e0000,0x0, + 0x7f0000,0x0,0x3f0000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1fc000,0x0,0xfc000,0x0,0xfe000,0x0,0x7e000,0x0, + 0x7f000,0x0,0x3f000,0x0,0x1f800,0x0,0x1fc00,0x0,0xfc00,0x0,0xfe00,0x0,0x7e00,0x0,0x7f00,0x0, + 0x3f00,0x0,0x3f80,0x0,0x1f80,0x0,0x1fc0,0x0,0xfc0,0x0,0x7e0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0x7,0xe000fe00,0xf,0xc0007f00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f,0x80001f80,0x3f, + 0x1f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfe0,0x7e,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0x7fc0fe0,0xfe,0x7fc0fe0,0xfe,0x7fc0fe0,0xfe,0x7fc07e0,0xfe,0x7fc07e0,0xfe,0x7fc07e0,0xfe,0x7fc0fe0,0xfe, + 0x7fc0fe0,0xfe,0x7fc0fe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x3f,0x80001f80,0x3f,0x80003f80,0x3f,0x80003f00,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf,0xf001fe00,0xf, + 0xfe07fc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0xffffe000,0x0,0x3fff8000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00000,0x0,0xfe00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0xffc0000,0x0,0xffe0000,0x0,0xfff8000,0x0,0xfdff000,0x0,0xfcfffc0,0x0,0xfc7ffc0,0x0,0xfc3ffc0,0x0, + 0xfc0ffc0,0x0,0xfc01fc0,0x0,0xfc000c0,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfc00000,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x600000,0x0,0x3fff0000,0x0,0xffffe000,0x0,0xfffff000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf803fe00,0x1f,0xe000ff00,0x1f,0xc0007f00,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0x1f80,0x3f, + 0x1fc0,0x3f,0x1fc0,0x7f,0x0,0x3f,0x0,0x3f,0x0,0x3f,0x80000000,0x3f,0x80000000,0x1f,0xc0000000,0x1f, + 0xe0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x1,0xff800000,0x0,0x7fc00000,0x0, + 0x3fe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x3fc0000,0x0,0x1ff0000,0x0,0xff8000,0x0,0x3fc000,0x0,0x1fe000,0x0, + 0xff000,0x0,0x7f800,0x0,0x3fc00,0x0,0x1fe00,0x0,0xfe00,0x0,0x7f00,0x0,0x3f80,0x0,0x3f80,0x0, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00000,0x0,0x3fff0000,0x0,0xffffe000,0x0,0xfffff000,0x3, + 0xfffffc00,0x7,0xfffffe00,0xf,0xf803fe00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80001f80,0x3f,0x1fc0,0x3f, + 0x1fc0,0x3f,0x1fc0,0x3f,0x0,0x3f,0x0,0x3f,0x80000000,0x3f,0x80000000,0x3f,0xc0000000,0x1f,0xe0000000,0xf, + 0xf0000000,0xf,0xfe000000,0x7,0xfffe0000,0x1,0x7ffe0000,0x0,0x1ffe0000,0x0,0x7ffe0000,0x0,0xfffe0000,0x3,0xfffe0000,0x7, + 0xf8000000,0xf,0xe0000000,0x1f,0xc0000000,0x3f,0x80000000,0x7f,0x0,0x7f,0x0,0x7e,0x0,0xfe,0x0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0xfe,0x1fc0,0x7f,0x80003fc0,0x7f,0xc0007f80,0x7f,0xe001ff80,0x3f, + 0xfc07ff00,0x1f,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff000,0x3,0xffffc000,0x0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x3, + 0xfe000000,0x3,0xff000000,0x3,0xff800000,0x3,0xffc00000,0x3,0xf7c00000,0x3,0xf7e00000,0x3,0xf3f00000,0x3,0xf1f00000,0x3, + 0xf0f80000,0x3,0xf0fc0000,0x3,0xf07e0000,0x3,0xf03e0000,0x3,0xf03f0000,0x3,0xf01f8000,0x3,0xf00f8000,0x3,0xf007c000,0x3, + 0xf007e000,0x3,0xf003f000,0x3,0xf001f000,0x3,0xf001f800,0x3,0xf000fc00,0x3,0xf0007c00,0x3,0xf0003e00,0x3,0xf0003f00,0x3, + 0xf0001f80,0x3,0xf0000f80,0x3,0xf00007c0,0x3,0xf00007e0,0x3,0xf00003e0,0x3,0xfffffff0,0x1ff,0xfffffff0,0x1ff,0xfffffff0,0x1ff, + 0xfffffff0,0x1ff,0xfffffff0,0x1ff,0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3, + 0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0xf0000000,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0, + 0x3f00,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1c01f80,0x0,0x3ffe1f80,0x0, + 0xffff9f80,0x0,0xffffff80,0x3,0xffffff80,0x7,0xffffff80,0xf,0xf801ff80,0x1f,0xe0007f80,0x3f,0xc0003f80,0x3f,0x80000000,0x7f, + 0x0,0x7f,0x0,0x7f,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe, + 0x0,0xfe,0x800,0x7e,0xfe0,0x7f,0xfe0,0x7f,0x80001fc0,0x7f,0xc0003fc0,0x3f,0xe0007f80,0x3f,0xf000ff80,0x1f, + 0xfe03ff00,0xf,0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1800000,0x0,0x3ffc0000,0x0,0xffff0000,0x1,0xffffc000,0x3, + 0xffffe000,0x7,0xfffff000,0xf,0xf00ff800,0xf,0xe003fc00,0x1f,0xc001fc00,0x3f,0x8000fe00,0x3f,0x7e00,0x3f,0x7f00,0x3, + 0x3f00,0x0,0x3f00,0x0,0x3f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1ff01f80,0x0,0xfffc1fc0,0x0, + 0xffff0fc0,0x3,0xffff8fc0,0x7,0xffffcfc0,0xf,0xf80fefc0,0x1f,0xe001ffc0,0x1f,0xc000ffc0,0x3f,0x80007fc0,0x3f,0x3fc0,0x7f, + 0x3fc0,0x7f,0x1fc0,0x7e,0x1fc0,0x7e,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1f80,0xfe,0x1f80,0xfe, + 0x3f80,0xfe,0x3f80,0x7e,0x3f00,0x7f,0x7f00,0x7f,0x7f00,0x7f,0x8000fe00,0x3f,0xc001fc00,0x3f,0xe003fc00,0x1f, + 0xfc0ff800,0xf,0xfffff000,0xf,0xffffe000,0x3,0xffffc000,0x1,0x7fff0000,0x0,0x1ffc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0x0,0x7f,0x0,0x3f,0x80000000,0x1f,0xc0000000,0x1f,0xc0000000,0xf,0xe0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x3,0xf8000000,0x1,0xfc000000,0x1,0xfc000000,0x0,0xfe000000,0x0,0x7e000000,0x0,0x7f000000,0x0, + 0x3f000000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0,0x7e00000,0x0,0x7f00000,0x0, + 0x3f00000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0, + 0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3f0000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x600000,0x0,0x3fff8000,0x0,0xffffe000,0x0,0xfffff800,0x1, + 0xfffffc00,0x7,0xfe07fe00,0xf,0xf001ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x3f,0x80003f80,0x3f,0x80001f80,0x3f,0x1f80,0x3f, + 0x1fc0,0x3f,0x1fc0,0x3f,0x1f80,0x3f,0x80001f80,0x3f,0x80003f80,0x3f,0x80003f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf001fe00,0xf,0xff1ffc00,0x3,0xfffff000,0x1,0x7fffc000,0x0,0x7fffc000,0x0,0xfffff800,0x3,0xff9ffc00,0x7,0xf001fe00,0xf, + 0xc0007f00,0x1f,0x80003f80,0x3f,0x1f80,0x3f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0x7e,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f, + 0xf001ff00,0x1f,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x0,0x1fff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x7,0xf000ff00,0xf,0xe0007f80,0xf,0xc0003f80,0x1f,0xc0003f80,0x1f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80003f80,0x7f,0xc0003f80,0x7f,0xe0007f80,0x7f,0xf000ff00,0x7f,0xfc03fe00,0x7e, + 0xfffffe00,0x7e,0x7ffffc00,0x7e,0x1ffff000,0x7e,0xfffe000,0x7e,0x1ff0000,0x7f,0x0,0x7f,0x0,0x3f,0x0,0x3f, + 0x80000000,0x3f,0x80000000,0x1f,0x80000000,0x1f,0xc0001f00,0x1f,0xc0003f80,0xf,0xe0003f80,0xf,0xf0007f00,0x7,0xfc00ff00,0x7, + 0xff03fe00,0x3,0xfffffe00,0x1,0xfffffc00,0x0,0x3ffff800,0x0,0x1fffe000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff80000,0x0,0xff80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0xfe0000,0x0,0xff0000,0x0,0x7f0000,0x0,0x7f0000,0x0, + 0x3f0000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xf8000,0x0,0xfc000,0x0,0x7c000,0x0,0x7c000,0x0, + 0x3c000,0x0,0x3e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0xf0,0x0,0xfc,0x80000000,0xff,0xe0000000,0xff, + 0xf8000000,0xff,0xff000000,0x1f,0xffc00000,0x7,0xfff80000,0x1,0x3ffe0000,0x0,0xfff8000,0x0,0x3fff000,0x0,0x7ffc00,0x0, + 0x1fff00,0x0,0x7ffe0,0x0,0xffe0,0x0,0x3fe0,0x0,0xfe0,0x0,0x3e0,0x0,0xfe0,0x0,0x7fe0,0x0, + 0x1ffe0,0x0,0x7ffc0,0x0,0x3fff00,0x0,0xfff800,0x0,0x3ffe000,0x0,0x1fff8000,0x0,0x7ffc0000,0x0,0xfff00000,0x1, + 0xffc00000,0xf,0xfe000000,0x3f,0xf8000000,0xff,0xc0000000,0xff,0x0,0xff,0x0,0xfc,0x0,0xe0,0x0,0x80, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff, + 0xffffffe0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x1e0,0x0,0x7e0,0x0,0x3fe0,0x0,0xffe0,0x0, + 0x3ffe0,0x0,0x1fff00,0x0,0x7ffc00,0x0,0x3fff000,0x0,0xfff8000,0x0,0x3ffe0000,0x0,0xfff80000,0x1,0xffc00000,0x7, + 0xff000000,0x1f,0xfc000000,0xff,0xe0000000,0xff,0x80000000,0xff,0x0,0xfe,0x0,0xf8,0x0,0xfe,0xc0000000,0xff, + 0xf0000000,0xff,0xfc000000,0x7f,0xff800000,0x1f,0xffe00000,0x3,0xfff80000,0x0,0x3fff0000,0x0,0x7ffc000,0x0,0x1fff000,0x0, + 0x7ffe00,0x0,0xfff80,0x0,0x3ffe0,0x0,0x7fe0,0x0,0x1fe0,0x0,0x7e0,0x0,0xe0,0x0,0x20,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x600000,0x0,0x1fff8000,0x0,0xfffff000,0x0,0xfffff800,0x3, + 0xfffffe00,0x7,0xffffff00,0xf,0xf801ff80,0x1f,0xe0007f80,0x1f,0xc0003fc0,0x3f,0x80001fe0,0x3f,0xfe0,0x7f,0xfe0,0x7f, + 0x7f0,0x7f,0x7f0,0x7f,0x7f0,0x7f,0x0,0x7f,0x0,0x7f,0x0,0x3f,0x80000000,0x3f,0xc0000000,0x3f, + 0xe0000000,0x1f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x1,0xff800000,0x0,0x7fc00000,0x0,0x1fe00000,0x0, + 0xff00000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x7e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0000,0x0,0xfe0000,0x0, + 0xfe0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7c00000,0x0,0x7ffc0000,0x0,0xffff0000,0x1,0xffffc000,0x3,0xffffe000,0x7,0xe007f000,0xf,0x8003f800,0x1f,0xfc00,0x3f, + 0x7e00,0x7e,0x3f00,0x7c,0x1f00,0xf8,0x1f80,0xf8,0xf80,0x1f0,0x7c0,0x1f0,0x3e007c0,0x1e0,0x8ff803e0,0x3ef, + 0x8ffe03e0,0x3e7,0x9fff01e0,0x3c7,0xbc1f01f0,0x3c7,0xf80f81f0,0x3c7,0xf807c0f0,0x7c7,0xf007c0f0,0x7c3,0xf003e0f8,0x783,0xf003e0f8,0x783, + 0xf001f0f8,0x783,0xf001f078,0x783,0xf001f078,0x781,0xf000f078,0x781,0xf000f87c,0x781,0xf000f87c,0x781,0xf000f87c,0x781,0xf000f87c,0x780, + 0xf800787c,0x7c0,0xf800787c,0x7c0,0xf8007c7c,0x7c0,0xf8007c7c,0x3c0,0x78007c7c,0x3c0,0x7c007c7c,0x3c0,0x7c00787c,0x3c0,0x7e00787c,0x3e0, + 0x7e00f87c,0x1e0,0x7e00f87c,0x1e0,0x7f00f878,0xf0,0x7f80f878,0xf0,0x7bc1f0f8,0x78,0x79e3f0f8,0x7c,0xf9ffe0f8,0x3f,0xf0ffc0f0,0x1f, + 0xf03f81f0,0xf,0xc00e01f0,0x3,0x3e0,0x0,0x3e0,0x0,0x7c0,0x0,0x7c0,0x0,0xf80,0xc,0x1f80,0x1e, + 0x3f00,0x3f,0xc0007e00,0x1f,0xf803fc00,0xf,0xfffff800,0x3,0xfffff000,0x1,0x7fffe000,0x0,0xfff8000,0x0,0xf00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffc0,0x0,0x7fffffc0,0x0,0xffffffc0,0x1, + 0xffffffc0,0x7,0xffffffc0,0xf,0xffffffc0,0x1f,0xf8001fc0,0x3f,0xe0001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x1f,0xe0001fc0,0x1f, + 0xf8001fc0,0xf,0xffc01fc0,0x7,0xffffffc0,0x1,0x7fffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x7,0xffffffc0,0x1f,0xf0001fc0,0x3f, + 0x80001fc0,0x7f,0x1fc0,0xff,0x1fc0,0xfe,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x3f8,0x1fc0,0x3f8,0x1fc0,0x3f8, + 0x1fc0,0x3f8,0x1fc0,0x3f8,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fe,0x1fc0,0x1ff,0x80001fc0,0xff,0xf0001fc0,0x7f, + 0xffffffc0,0x3f,0xffffffc0,0x1f,0xffffffc0,0xf,0xffffffc0,0x3,0x7fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00000,0x0,0x3ffe0000,0x0,0xffffc000,0x0,0xffffe000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf80ffc00,0x1f,0xe003fe00,0x3f,0xc001ff00,0x3f,0x8000ff00,0x7f,0x7f80,0x7f,0x3f80,0xfe, + 0x3fc0,0xfe,0x1fc0,0x3c,0x1fc0,0x4,0x1fc0,0x0,0x1fe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x1fc0,0x0,0x1fc0,0x38, + 0x1fc0,0xf8,0x3fc0,0x1fc,0x3f80,0x1fc,0x7f80,0xfe,0x7f00,0xff,0x8000ff00,0x7f,0xc001fe00,0x3f,0xe007fe00,0x3f, + 0xfc7ffc00,0x1f,0xfffff800,0xf,0xfffff000,0x7,0xffffc000,0x1,0xffff0000,0x0,0x1ffc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffc0,0x0,0x7ffffc0,0x0,0x3fffffc0,0x0, + 0xffffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x3,0xff801fc0,0x7,0xfc001fc0,0xf,0xf0001fc0,0x1f,0xe0001fc0,0x3f,0xc0001fc0,0x3f, + 0x80001fc0,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0xff,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc, + 0x1fc0,0x1fc,0x1fc0,0xfc,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xff,0x1fc0,0x7f, + 0x1fc0,0x7f,0x80001fc0,0x7f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xe0001fc0,0x1f,0xf0001fc0,0xf,0xfc001fc0,0xf,0xff801fc0,0x7, + 0xffffffc0,0x3,0xffffffc0,0x1,0x7fffffc0,0x0,0x1fffffc0,0x0,0x3ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f, + 0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x3f, + 0xffffff80,0x3f,0xffffff80,0x3f,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc00000,0x0,0x3fff0000,0x0,0xffffc000,0x0,0xffffe000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf80ffe00,0x1f,0xe003fe00,0x3f,0xc000ff00,0x3f,0x80007f80,0x7f,0x7f80,0x7f,0x3f80,0xfe, + 0x3fc0,0x7e,0x1fc0,0xe,0x1fc0,0x0,0x1fe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xff800fe0,0xff,0xff800fe0,0xff,0xff800fe0,0xff,0xff800fe0,0xff, + 0xff800fe0,0xff,0xff800fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0xfe,0x3fc0,0xfe,0x3f80,0xfe,0x7f80,0xfe,0x7f00,0xfe,0xff00,0xfe,0x1fe00,0xff,0xc007fc00,0xff, + 0xfc3ffc00,0xff,0xfffff800,0x7f,0xfffff000,0x1f,0xffffc000,0x7,0xffff8000,0x1,0x1ffc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc0000,0xf,0xfffc0000,0xf,0xfffc0000,0xf, + 0xfffc0000,0xf,0xfffc0000,0xf,0xfffc0000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0003c00,0xf,0xe0003f80,0xf,0xe0003f80,0x7,0xf0003f80,0x7,0xf0007f00,0x7,0xf800ff00,0x7,0xf800ff00,0x3,0xfc03fe00,0x3, + 0xff8ffc00,0x1,0xfffffc00,0x0,0xfffff800,0x0,0x3ffff000,0x0,0x1fffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x1fe,0x1fc0,0x1fe,0x1fc0,0xff, + 0x80001fc0,0x7f,0xc0001fc0,0x3f,0xe0001fc0,0x1f,0xf0001fc0,0xf,0xf8001fc0,0x7,0xf8001fc0,0x3,0xfc001fc0,0x1,0xfe001fc0,0x1, + 0xff001fc0,0x0,0x7f801fc0,0x0,0x3fc01fc0,0x0,0x1fe01fc0,0x0,0xfe01fc0,0x0,0x7f01fc0,0x0,0x3f81fc0,0x0,0x3fc1fc0,0x0, + 0x1fe1fc0,0x0,0xff1fc0,0x0,0xff1fc0,0x0,0x1ff9fc0,0x0,0x3ffdfc0,0x0,0x7ffffc0,0x0,0x7ffffc0,0x0,0xff3ffc0,0x0, + 0x1ff1ffc0,0x0,0x1fe0ffc0,0x0,0x3fc07fc0,0x0,0x7f803fc0,0x0,0xff801fc0,0x0,0xff001fc0,0x0,0xfe001fc0,0x1,0xfc001fc0,0x3, + 0xfc001fc0,0x7,0xf8001fc0,0x7,0xf0001fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x7f,0x1fc0,0xff, + 0x1fc0,0x1fe,0x1fc0,0x1fe,0x1fc0,0x3fc,0x1fc0,0x7f8,0x1fc0,0xff0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfffffe00,0xff,0xfffffe00,0xff,0xfffffe00,0xff,0xfffffe00,0xff,0xfffffe00,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe0,0xff,0x80003fe0,0xff,0x80003fe0,0xff, + 0x80007fe0,0xff,0xc0007fe0,0xff,0xc000ffe0,0xff,0xe000ffe0,0xff,0xe000ffe0,0xff,0xe001ffe0,0xff,0xf001f7e0,0xfd,0xf003f7e0,0xfd, + 0xf003f7e0,0xfd,0xf803e7e0,0xfc,0xf807e7e0,0xfc,0xfc07e7e0,0xfc,0x7c07c7e0,0xfc,0x7c0fc7e0,0xfc,0x7e0fc7e0,0xfc,0x3e0f87e0,0xfc, + 0x3e1f87e0,0xfc,0x3f1f87e0,0xfc,0x1f1f07e0,0xfc,0x1f3f07e0,0xfc,0xfbe07e0,0xfc,0xfbe07e0,0xfc,0xffe07e0,0xfc,0x7fc07e0,0xfc, + 0x7fc07e0,0xfc,0x7fc07e0,0xfc,0x3f807e0,0xfc,0x3f807e0,0xfc,0x1f007e0,0xfc,0x1f007e0,0xfc,0x7e0,0xfc,0x7e0,0xfc, + 0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc, + 0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x7e,0x7fc0,0x7e,0x7fc0,0x7e, + 0xffc0,0x7e,0xffc0,0x7e,0x1ffc0,0x7e,0x1ffc0,0x7e,0x3ffc0,0x7e,0x3ffc0,0x7e,0x7ffc0,0x7e,0x7efc0,0x7e, + 0x7efc0,0x7e,0xfcfc0,0x7e,0xfcfc0,0x7e,0x1f8fc0,0x7e,0x1f8fc0,0x7e,0x3f0fc0,0x7e,0x3f0fc0,0x7e,0x7e0fc0,0x7e, + 0x7e0fc0,0x7e,0xfc0fc0,0x7e,0xfc0fc0,0x7e,0x1fc0fc0,0x7e,0x1f80fc0,0x7e,0x3f80fc0,0x7e,0x3f00fc0,0x7e,0x3f00fc0,0x7e, + 0x7e00fc0,0x7e,0x7e00fc0,0x7e,0xfc00fc0,0x7e,0xfc00fc0,0x7e,0x1f800fc0,0x7e,0x1f800fc0,0x7e,0x3f000fc0,0x7e,0x3f000fc0,0x7e, + 0x7f000fc0,0x7e,0x7e000fc0,0x7e,0xfe000fc0,0x7e,0xfc000fc0,0x7e,0xfc000fc0,0x7e,0xf8000fc0,0x7f,0xf8000fc0,0x7f,0xf0000fc0,0x7f, + 0xf0000fc0,0x7f,0xe0000fc0,0x7f,0xe0000fc0,0x7f,0xc0000fc0,0x7f,0xc0000fc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0xffffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffffc0,0x0,0x7fffffc0,0x0,0xffffffc0,0x3, + 0xffffffc0,0x7,0xffffffc0,0xf,0xffffffc0,0x1f,0xf0001fc0,0x3f,0xc0001fc0,0x7f,0x80001fc0,0x7f,0x1fc0,0xff,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfc,0x1fc0,0x1fc,0x1fc0,0xfc,0x1fc0,0xfc,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0x7f,0x80001fc0,0x7f,0xc0001fc0,0x3f,0xf0001fc0,0x3f,0xfe001fc0,0x1f,0xffffffc0,0xf,0xffffffc0,0x7, + 0xffffffc0,0x1,0x7fffffc0,0x0,0xfffffc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff000,0x1,0xffffe000,0x0,0x3fff8000,0x0,0xffe0000,0x0,0xff00000,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0xff800000,0x0,0xff000000,0x1,0xff000000,0x1ff,0xfe000000,0x1ff, + 0xfc000000,0x1ff,0xf0000000,0x1ff,0xc0000000,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x3, + 0xffffffc0,0xf,0xffffffc0,0x1f,0xffffffc0,0x3f,0xe0001fc0,0x7f,0x80001fc0,0x7f,0x1fc0,0xff,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0xfc,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xff, + 0x1fc0,0x7f,0x80001fc0,0x7f,0xe0001fc0,0x3f,0xffffffc0,0x1f,0xffffffc0,0xf,0xffffffc0,0x7,0xffffffc0,0x1,0x7fffffc0,0x0, + 0x1fffffc0,0x0,0x1fc01fc0,0x0,0x3f801fc0,0x0,0x7f801fc0,0x0,0x7f001fc0,0x0,0xfe001fc0,0x0,0xfe001fc0,0x1,0xfc001fc0,0x1, + 0xfc001fc0,0x3,0xf8001fc0,0x7,0xf0001fc0,0x7,0xf0001fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0x3f,0x80001fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0xff,0x1fc0,0x1fe,0x1fc0,0x1fe,0x1fc0,0x3fc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00000,0x0,0x7fff8000,0x0,0xfffff000,0x1,0xfffffc00,0x7, + 0xfffffe00,0xf,0xffffff00,0x1f,0xf001ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0xff, + 0xfc0,0x1e,0xfc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3fc0,0x0,0x7f80,0x0,0x1ff80,0x0, + 0xfff00,0x0,0xfffe00,0x0,0xffffc00,0x0,0x7ffff000,0x0,0xffffe000,0x1,0xffff0000,0x7,0xfff00000,0x1f,0xff800000,0x3f, + 0xf8000000,0x7f,0xe0000000,0x7f,0x80000000,0xff,0x0,0xff,0x0,0xfe,0x0,0x1fc,0x0,0x1fc,0x0,0x1fc, + 0x300,0x1fc,0x3f8,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0xff0,0xfe,0x1fe0,0xff,0x80003fe0,0x7f,0xc0007fc0,0x7f, + 0xf807ff80,0x3f,0xffffff00,0x1f,0xfffffe00,0xf,0xfffffc00,0x3,0xfffff000,0x0,0x1fff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x3ff,0xfffffff8,0x3ff,0xfffffff8,0x3ff, + 0xfffffff8,0x3ff,0xfffffff8,0x3ff,0xfffffff8,0x3ff,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0xfc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xe0007f80,0x1f,0xf001ff00,0x1f, + 0xfe0fff00,0xf,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfe0,0x1fe,0xff0,0x1fc,0x7f0, + 0x1fc,0x7f0,0x3fc,0x7f8,0x3f8,0x3f8,0x3f8,0x3f8,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7f,0x1fc0,0x7f,0x1f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0007f00,0x1f, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf,0xe000fe00,0xf,0xe000fc00,0x7,0xf001fc00,0x7,0xf001fc00,0x7,0xf001f800,0x3, + 0xf803f800,0x3,0xf803f800,0x3,0xf803f000,0x1,0xfc07f000,0x1,0xfc07e000,0x0,0xfc0fe000,0x0,0xfe0fe000,0x0,0x7e0fc000,0x0, + 0x7e0fc000,0x0,0x7f1fc000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0xffe0000,0x0, + 0xffe0000,0x0,0xffe0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xfc0,0x7e,0xfc0,0xfe,0xfe0, + 0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0x1fc,0x7f0, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1f8,0x3f0,0x1f8,0x3f0,0x3f801f8,0x3f0,0x3f801f8,0x3f0,0x3f803f8,0x3f0,0x7fc03f8,0x3f8, + 0x7fc03f0,0x1f8,0x7fc03f0,0x1f8,0x7fc03f0,0x1f8,0xfbe03f0,0x1f8,0xfbe03f0,0x1f8,0xfbe03f0,0x1f8,0xf3e07f0,0x1f8,0x1f1f07e0,0xfc, + 0x1f1f07e0,0xfc,0x1f1f07e0,0xfc,0x3f1f87e0,0xfc,0x3e0f87e0,0xfc,0x3e0f87e0,0xfc,0x3e0f87c0,0x7c,0x7e0fcfc0,0x7c,0x7c07cfc0,0x7c, + 0x7c07cfc0,0x7e,0x7c07cfc0,0x7e,0xf807cfc0,0x7e,0xf803efc0,0x7e,0xf803ef80,0x3e,0xf803ef80,0x3e,0xf001ef80,0x3f,0xf001ff80,0x3f, + 0xf001ff80,0x3f,0xf001ff80,0x3f,0xe000ff00,0x1f,0xe000ff00,0x1f,0xe000ff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f8,0x3fc,0x7f0,0x1fc,0xfe0,0xfe, + 0x1fe0,0xff,0x1fc0,0x7f,0x80003f80,0x3f,0xc0007f00,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf,0xf001fc00,0x7,0xf001fc00,0x7, + 0xf803f800,0x3,0xfc07f000,0x1,0xfc07f000,0x1,0xfe0fe000,0x0,0x7f1fc000,0x0,0x7f1fc000,0x0,0x3fbf8000,0x0,0x1fbf0000,0x0, + 0x1fff0000,0x0,0xffe0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0xffe0000,0x0, + 0x1fff0000,0x0,0x3fbf8000,0x0,0x3f9f8000,0x0,0x7f1fc000,0x0,0xfe0fe000,0x0,0xfe0fe000,0x0,0xfc07f000,0x1,0xf803f800,0x3, + 0xf803f800,0x3,0xf001fc00,0x7,0xe000fe00,0xf,0xe000fe00,0xf,0xc0007f00,0x1f,0x80003f80,0x3f,0x80003f80,0x3f,0x1fc0,0x7f, + 0xfe0,0xfe,0xff0,0x1fe,0x7f0,0x1fc,0x3f8,0x3f8,0x3fc,0x7f8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0x7f0,0x3f8,0x3f8,0x7f8,0x3fc, + 0x7f0,0x1fc,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f00,0x1f,0xc0007f00,0x1f, + 0xe000fe00,0xf,0xf001fc00,0x7,0xf001fc00,0x7,0xf803f800,0x3,0xf807f800,0x3,0xfc07f000,0x1,0xfe0fe000,0x0,0xfe0fe000,0x0, + 0x7f1fc000,0x0,0x3fbf8000,0x0,0x3fbf8000,0x0,0x1fff0000,0x0,0xffe0000,0x0,0xffe0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x7f,0x80000000,0x3f,0xc0000000,0x3f,0xc0000000,0x1f,0xe0000000,0xf, + 0xf0000000,0x7,0xf8000000,0x3,0xfc000000,0x3,0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x7f800000,0x0,0x3fc00000,0x0, + 0x1fc00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0xff0000,0x0, + 0x7f8000,0x0,0x3f8000,0x0,0x1fc000,0x0,0x1fe000,0x0,0xff000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0, + 0x1fe00,0x0,0xff00,0x0,0x7f00,0x0,0x3f80,0x0,0x3fc0,0x0,0x1fe0,0x0,0xfe0,0x0,0x7f0,0x0, + 0xfffffff8,0x3ff,0xfffffff8,0x3ff,0xfffffff8,0x3ff,0xfffffff8,0x3ff,0xfffffff8,0x3ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffff8000,0x7,0xffff8000,0x7,0xffff8000,0x7,0xffff8000,0x7,0xffff8000,0x7,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0xffff8000,0x7,0xffff8000,0x7,0xffff8000,0x7,0xffff8000,0x7,0xffff8000,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e0,0x0,0xfe0,0x0,0xfc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x0,0x3f00,0x0,0x7e00,0x0, + 0x7e00,0x0,0xfc00,0x0,0x1fc00,0x0,0x1f800,0x0,0x3f800,0x0,0x3f000,0x0,0x7f000,0x0,0x7e000,0x0, + 0xfe000,0x0,0xfc000,0x0,0x1fc000,0x0,0x1f8000,0x0,0x3f0000,0x0,0x7f0000,0x0,0x7e0000,0x0,0xfe0000,0x0, + 0xfc0000,0x0,0x1fc0000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x3f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfc00000,0x0, + 0x1fc00000,0x0,0x1f800000,0x0,0x3f800000,0x0,0x3f000000,0x0,0x7f000000,0x0,0x7e000000,0x0,0xfe000000,0x0,0xfc000000,0x0, + 0xfc000000,0x1,0xf8000000,0x1,0xf0000000,0x3,0xf0000000,0x7,0xe0000000,0x7,0xe0000000,0xf,0xc0000000,0xf,0xc0000000,0x1f, + 0x80000000,0x1f,0x80000000,0x3f,0x0,0x3f,0x0,0x7f,0x0,0x7e,0x0,0xfe,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3ffffc00,0x0,0x3ffffc00,0x0,0x3ffffc00,0x0,0x3ffffc00,0x0,0x3ffffc00,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3ffffc00,0x0,0x3ffffc00,0x0,0x3ffffc00,0x0,0x3ffffc00,0x0,0x3ffffc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xfbe0000,0x0,0xfbe0000,0x0,0x1f9f0000,0x0,0x1f1f0000,0x0,0x3f1f8000,0x0,0x3e0f8000,0x0,0x3e0f8000,0x0, + 0x7e07c000,0x0,0x7c07c000,0x0,0xfc03e000,0x0,0xf803e000,0x0,0xf803f000,0x0,0xf001f000,0x1,0xf001f000,0x1,0xf000f800,0x3, + 0xe000f800,0x3,0xe000fc00,0x7,0xc0007c00,0x7,0xc0007c00,0x7,0xc0003e00,0xf,0x80003e00,0xf,0x80003f00,0x1f,0x1f00,0x1f, + 0x1f80,0x3f,0xf80,0x3f,0xf80,0x3e,0xfc0,0x7e,0x7c0,0x7c,0x7e0,0xfc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffff,0xfff,0xffffffff,0xfff,0xffffffff,0xfff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f8000,0x0,0x7f8000,0x0,0xfe0000,0x0,0x1fc0000,0x0,0x3f80000,0x0,0x7f00000,0x0,0xfc00000,0x0, + 0x1f800000,0x0,0x3f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3fe03f80,0x0,0xfff83f80,0x0, + 0xfffe3f80,0x3,0xffff3f80,0x7,0xffffbf80,0xf,0xf80fdf80,0xf,0xe003df80,0x1f,0xc001ff80,0x1f,0x8000ff80,0x3f,0x8000ff80,0x3f, + 0x7f80,0x3f,0x7f80,0x7f,0x7f80,0x7f,0x3f80,0x7f,0x3f80,0x7f,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e, + 0x3f80,0x7e,0x3f80,0xfe,0x3f80,0xfe,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e, + 0x3f80,0x7f,0x3f80,0x7f,0x7f80,0x7f,0x7f80,0x3f,0x80007f80,0x3f,0x8000ff80,0x3f,0xc000ff80,0x1f,0xe001ff80,0x1f, + 0xf007df80,0xf,0xffff9f80,0xf,0xffff9f80,0x7,0xfffe1f80,0x3,0xfffc1f80,0x0,0x3fe00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff80000,0x0,0x7fff8000,0x0, + 0xffffe000,0x1,0xfffff000,0x3,0xfffff800,0x7,0xfc07fc00,0xf,0xe001fe00,0x1f,0xc000ff00,0x3f,0x80007f00,0x3f,0x80003f80,0x3f, + 0x1f80,0x7f,0x1fc0,0x7f,0x1fc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x7f,0x1f80,0x7f,0x80003f80,0x7f,0x80007f80,0x3f,0xc0007f00,0x3f,0xe001fe00,0x1f, + 0xf807fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f, + 0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x807f0000,0x3f,0x83ffe000,0x3f, + 0x8ffff000,0x3f,0x9ffffc00,0x3f,0xbffffc00,0x3f,0xfe03fe00,0x3f,0xf800ff00,0x3f,0xf0007f00,0x3f,0xe0003f80,0x3f,0xc0003f80,0x3f, + 0xc0001f80,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f, + 0x80000fc0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0001fc0,0x3f,0xe0003f80,0x3f,0xe0003f80,0x3f,0xf0007f80,0x3f,0x7800ff00,0x3f, + 0x7c01ff00,0x3f,0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x7fff000,0x3f,0x1ffc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x3fff8000,0x0, + 0xffffe000,0x0,0xfffff000,0x3,0xfffffc00,0x7,0xf807fc00,0xf,0xf001fe00,0xf,0xc000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f, + 0x1f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfe0,0x7e,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3f80,0x0,0x3f80,0x1f,0x7f00,0x3f,0x8000ff00,0x3f,0xc001fe00,0x1f, + 0xf807fe00,0x1f,0xfffffc00,0xf,0xfffff800,0x7,0xffffe000,0x1,0xffff8000,0x0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf8000000,0x3,0xffc00000,0xff,0xfff00000,0xff,0xfffc0000,0xff,0xfffe0000,0xff,0xfffe0000,0xff,0x1ff0000,0x0,0x7f0000,0x0, + 0x7f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0x0,0x3ffe000,0x3f, + 0xffff000,0x3f,0x1ffffc00,0x3f,0x3ffffc00,0x3f,0x3e03fe00,0x3f,0x7800ff00,0x3f,0xf0007f00,0x3f,0xe0003f80,0x3f,0xe0003f80,0x3f, + 0xc0001f80,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0001fc0,0x3f,0xe0003f80,0x3f,0xe0003f80,0x3f,0xf0007f80,0x3f,0x7800ff00,0x3f,0x3e01ff00,0x3f, + 0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x3fff000,0x3f,0xff8000,0x3f,0x0,0x3f,0x0,0x3f,0x80000000,0x3f, + 0x80000000,0x3f,0x80000000,0x1f,0x80006000,0x1f,0xc0007f00,0x1f,0xc000fe00,0x1f,0xe001fe00,0xf,0xf003fe00,0xf,0xfe0ffc00,0x7, + 0xfffff800,0x3,0xfffff000,0x1,0xffffe000,0x0,0x3fff8000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3fc03f80,0x0,0xfff83f80,0x0, + 0xfffe3f80,0x3,0xffff3f80,0x7,0xffff9f80,0xf,0xf81f9f80,0xf,0xe007df80,0x1f,0xc001ff80,0x1f,0xc000ff80,0x1f,0x8000ff80,0x3f, + 0x80007f80,0x3f,0x80007f80,0x3f,0x80003f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffe00,0x0, + 0x3ffffe00,0x0,0x3ffffe00,0x0,0x3ffffe00,0x0,0x3ffffe00,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xff80020,0x0,0xfffffe0,0x0, + 0x7ffffe0,0x0,0x3ffffe0,0x0,0xffffe0,0x0,0x3fffc0,0x0,0x3f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x7f, + 0x80007e00,0x3f,0xc0007e00,0x1f,0xe0007e00,0xf,0xf0007e00,0x7,0xf8007e00,0x7,0xfc007e00,0x3,0xfe007e00,0x1,0xff007e00,0x0, + 0x7f007e00,0x0,0x3f807e00,0x0,0x1fc07e00,0x0,0xfe07e00,0x0,0x7f07e00,0x0,0x3f87e00,0x0,0x1fc7e00,0x0,0xfe7e00,0x0, + 0x1ff7e00,0x0,0x3fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0xfe7fe00,0x0,0x1fc3fe00,0x0,0x3fc0fe00,0x0,0x3f807e00,0x0, + 0x7f007e00,0x0,0xff007e00,0x0,0xfe007e00,0x1,0xfc007e00,0x1,0xf8007e00,0x3,0xf8007e00,0x7,0xf0007e00,0xf,0xe0007e00,0xf, + 0xc0007e00,0x1f,0xc0007e00,0x3f,0x80007e00,0x7f,0x7e00,0x7f,0x7e00,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7fffc00,0x0,0x7fffc00,0x0,0x7fffc00,0x0,0x7fffc00,0x0,0x7fffc00,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc00f8000,0xf,0xf03fe1f0,0x1f, + 0xf87ff1f0,0x3f,0xfc7ffbf0,0x7f,0xfcfffbf0,0xff,0x1efe3ff0,0xfe,0xefc1ff0,0xfe,0x7f80ff0,0xfc,0x7f80ff0,0xfc,0x3f807f0,0x1fc, + 0x3f807f0,0x1f8,0x3f807f0,0x1f8,0x3f807f0,0x1f8,0x3f807f0,0x1f8,0x3f803f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8, + 0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8, + 0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8, + 0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x3f003f0,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00000,0x0,0xfff81f80,0x0, + 0xfffe1f80,0x3,0xffff1f80,0x7,0xffff9f80,0xf,0xf81f9f80,0xf,0xe007df80,0x1f,0xc001ff80,0x1f,0xc000ff80,0x1f,0x8000ff80,0x3f, + 0x80007f80,0x3f,0x80007f80,0x3f,0x80003f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000fe00,0x1f,0xc0007f00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0xfc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001f80,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf803fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fe00000,0x0,0xfff81f80,0x0, + 0xfffe1f80,0x3,0xffff1f80,0x7,0xffff9f80,0xf,0xf80f9f80,0xf,0xe003ff80,0x1f,0xc001ff80,0x1f,0x8000ff80,0x3f,0x8000ff80,0x3f, + 0x7f80,0x3f,0x7f80,0x7f,0x7f80,0x7f,0x3f80,0x7f,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e, + 0x3f80,0x7e,0x3f80,0xfe,0x3f80,0xfe,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e, + 0x3f80,0x7f,0x3f80,0x7f,0x7f80,0x7f,0x7f80,0x3f,0x80007f80,0x3f,0x8000ff80,0x3f,0xc001ff80,0x1f,0xe001ff80,0x1f, + 0xf007ff80,0xf,0xffffbf80,0xf,0xffff3f80,0x7,0xfffe3f80,0x3,0xfffc3f80,0x0,0x3fe03f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0x0,0x3ffe000,0x3f, + 0xffff000,0x3f,0x1ffffc00,0x3f,0xbffffc00,0x3f,0xbe03fe00,0x3f,0xf800ff00,0x3f,0xf0007f00,0x3f,0xe0003f80,0x3f,0xe0003f80,0x3f, + 0xc0001f80,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f, + 0x80000fc0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f,0x80000fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0001fc0,0x3f,0xe0003f80,0x3f,0xe0003f80,0x3f,0xf0007f80,0x3f,0x7800ff00,0x3f, + 0x7c01ff00,0x3f,0xbffffe00,0x3f,0x9ffffc00,0x3f,0x8ffff800,0x3f,0x87fff000,0x3f,0x81ffc000,0x3f,0x80000000,0x3f,0x80000000,0x3f, + 0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f, + 0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1f,0xff007e00,0x3f, + 0xffc0fc00,0x3f,0xffe0fc00,0x3f,0xfff0fc00,0x3f,0xfff8fc00,0x3f,0x7f9fc00,0x20,0xfdfc00,0x0,0x7df800,0x0,0x3ff800,0x0, + 0x1ff800,0x0,0xff800,0x0,0xff800,0x0,0x7f800,0x0,0x7f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0, + 0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0, + 0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0, + 0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x1,0xfffff800,0x3,0xfffffc00,0x7,0xf803fc00,0xf,0xc000fe00,0xf,0x80007e00,0x1f,0x80003f00,0x1f,0x3f00,0x1f, + 0x3f00,0x0,0x3f00,0x0,0x7f00,0x0,0x7f00,0x0,0x1fe00,0x0,0x7fe00,0x0,0x7ffc00,0x0,0x3fffc00,0x0, + 0x3ffff000,0x0,0xffffe000,0x0,0xffff8000,0x3,0xfff80000,0x7,0xffc00000,0xf,0xfc000000,0x1f,0xe0000000,0x3f,0x80000000,0x3f, + 0x0,0x3f,0x0,0x3f,0x0,0x3f,0x0,0x3f,0xf80,0x3f,0x1f80,0x3f,0x80001f80,0x3f,0xc0003f00,0x1f, + 0xe000ff00,0x1f,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x0,0x1fff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000,0x0,0xf8000,0x0,0xf8000,0x0, + 0xf8000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfc000,0x0,0xfe000,0x0,0xffffff80,0x7, + 0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0, + 0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0, + 0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0, + 0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0xc0ffc000,0x1f,0xffff8000,0x1f,0xffff8000,0x1f,0xffff0000,0x1f,0xfffc0000,0x1f,0xfff00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xc0003f80,0x3f,0xe0003f00,0x3f,0xf0007f00,0x3f,0x7800ff00,0x3f, + 0x7e01ff00,0x3f,0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x7fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x3f8, + 0x7f0,0x1fc,0x7f0,0x1fc,0xff0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x3f, + 0x80003f80,0x3f,0x80003f80,0x3f,0xc0007f00,0x1f,0xc0007f00,0x1f,0xe0007f00,0xf,0xe000fe00,0xf,0xe000fe00,0xf,0xf001fc00,0x7, + 0xf001fc00,0x7,0xf801fc00,0x3,0xf803f800,0x3,0xf803f800,0x1,0xfc03f000,0x1,0xfc07f000,0x1,0xfc07f000,0x0,0xfe0fe000,0x0, + 0x7e0fe000,0x0,0x7f0fc000,0x0,0x7f1fc000,0x0,0x3f1fc000,0x0,0x3f9f8000,0x0,0x1f9f8000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0, + 0xfff0000,0x0,0xffe0000,0x0,0x7fe0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfe0, + 0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0xfc,0x7e0,0x1fc,0x7f0,0x1fc,0x7f0,0x1f8,0x3f0,0x1f8,0x3f0, + 0x1f8,0x3f0,0x3f801f8,0x3f0,0x3f801f8,0x3f0,0x7fc03f8,0x3f8,0x7fc03f0,0x1f8,0x7bc03f0,0x1f8,0xfbe03f0,0x1f8,0xfbe03f0,0x1f8, + 0xfbe03f0,0x1f8,0xf1f03f0,0xfc,0x1f1f07e0,0xfc,0x1f1f07e0,0xfc,0x1f0f87e0,0xfc,0x3e0f87e0,0xfc,0x3e0f87e0,0xfc,0x3e0f87e0,0x7e, + 0x7c07c7c0,0x7e,0x7c07cfc0,0x7e,0x7c07cfc0,0x7e,0x7803efc0,0x7e,0xf803efc0,0x7e,0xf803efc0,0x3e,0xf001ef80,0x3e,0xf001ff80,0x3e, + 0xf001ff80,0x3f,0xf000ff80,0x3f,0xe000ff80,0x1f,0xe000ff80,0x1f,0xe0007f00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0,0xfe, + 0x1fc0,0x7f,0x80003f80,0x3f,0xc0003f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf,0xf000fc00,0x7,0xf001fc00,0x3,0xf803f800,0x3, + 0xfc07f000,0x1,0xfe07e000,0x0,0x7e0fe000,0x0,0x7f1fc000,0x0,0x3f9f8000,0x0,0x1fbf0000,0x0,0xfff0000,0x0,0xffe0000,0x0, + 0x7fc0000,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fbf8000,0x0,0x7f1fc000,0x0, + 0x7f0fc000,0x0,0xfe0fe000,0x0,0xfc07f000,0x1,0xf803f800,0x3,0xf801f800,0x3,0xf001fc00,0x7,0xe000fe00,0xf,0xc0007f00,0x1f, + 0xc0003f00,0x1f,0x80003f80,0x3f,0x1fc0,0x7f,0xfe0,0xff,0xfe0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x3f8, + 0x3f0,0x1f8,0x7f0,0x1fc,0x7e0,0xfc,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f,0x1f80,0x3f, + 0x80003f80,0x3f,0x80003f00,0x3f,0x80007f00,0x1f,0xc0007f00,0x1f,0xc0007e00,0xf,0xe000fe00,0xf,0xe000fc00,0x7,0xe001fc00,0x7, + 0xf001f800,0x7,0xf001f800,0x3,0xf003f000,0x3,0xf803f000,0x1,0xf807f000,0x1,0xfc07e000,0x0,0xfc07e000,0x0,0xfc0fc000,0x0, + 0x7e0fc000,0x0,0x7e1f8000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0,0x3f3f0000,0x0,0x1fbf0000,0x0,0x1ffe0000,0x0,0xffe0000,0x0, + 0xffc0000,0x0,0x7fc0000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x1fe000,0x0,0x1ff800,0x0, + 0xfff80,0x0,0x7ff80,0x0,0x3ff80,0x0,0xff80,0x0,0x1f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x1f, + 0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xc0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7,0xf8000000,0x3, + 0xfc000000,0x1,0xfe000000,0x0,0xff000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0, + 0x7f80000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x1fc000,0x0,0x1fe000,0x0, + 0xfe000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0,0xfe00,0x0,0xff00,0x0,0x7f00,0x0,0x3f80,0x0, + 0x1fc0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf8000000,0x3f,0xff000000,0x3f,0xffc00000,0x3f,0xffe00000,0x3f,0xfff00000,0x3f,0x1ff00000,0x0,0x7f80000,0x0,0x3f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7f0000,0x0,0x7f8000,0x0,0x3ff000,0x0, + 0xffe00,0x0,0x7fe00,0x0,0xfe00,0x0,0x7fe00,0x0,0x1ffe00,0x0,0x3ff000,0x0,0x7f8000,0x0,0x7f0000,0x0, + 0xfe0000,0x0,0xfc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x7f80000,0x0,0x1ff00000,0x0, + 0xfff00000,0x3f,0xffe00000,0x3f,0xffc00000,0x3f,0xff000000,0x3f,0xf8000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3ffc0,0x0,0x1fffc0,0x0,0x7fffc0,0x0,0xffffc0,0x0,0x1ffffc0,0x0,0x1ff0000,0x0,0x3fc0000,0x0,0x3f80000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0,0x1fc00000,0x0,0x3fc00000,0x0,0xff800000,0x1, + 0xfe000000,0xf,0xfc000000,0xf,0xf0000000,0xf,0xfc000000,0xf,0xff000000,0xf,0xff800000,0x1,0x3fc00000,0x0,0x1fc00000,0x0, + 0xfe00000,0x0,0x7e00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x3fc0000,0x0,0x1ff0000,0x0, + 0xffffc0,0x0,0xffffc0,0x0,0x7fffc0,0x0,0x1fffc0,0x0,0x3ffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfff00,0x0,0x7fffc0,0x180,0x3ffffe0,0x1e0,0x1ffffff0,0x1fc,0xfffffff0,0x1ff,0xfff800f0,0x1ff,0xffc00030,0xff, + 0xfe000010,0x3f,0xe0000000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0xf8e38038,0xef,0x98f30018,0xc7,0x9df30018,0x6f,0xe7333f98,0xc39,0xe7733f98,0xc31,0x67f33f98,0xfe0,0x67f33f98,0xfe0,0x18033f98,0xff8, + 0x18033f98,0xff8,0x18030018,0x338,0x18030018,0x338,0x6633fff8,0xcee,0x6733fff8,0xcc6,0x3f31fff0,0xcee,0x1f300000,0xcfe,0x1e300000,0xefe, + 0x78330018,0x3c0,0x78330018,0x3c0,0x803cc1e0,0xcc1,0x803cc1e0,0xce1,0x9ff3c618,0xff,0x9ff3ce18,0xff,0x87f03ff8,0xc01,0x87f03ff8,0xc01, + 0x9f030ff8,0x71,0x9f030ff8,0xf9,0x180f800,0xce0,0xc0f000,0xcc0,0x1c0f000,0xc40,0x7f3ff078,0x0,0x7f7ff878,0x0,0x67fcff98,0x18, + 0x67fcff98,0x18,0x6003ff98,0xf00,0x6003ff98,0xf00,0xf8300fe0,0xf07,0xf8300fe0,0xf07,0x780fc380,0x18,0x780fc180,0x38,0xfc07e1c0,0x38, + 0x87c031e0,0x39,0x87c031e0,0x3b,0x18fff060,0xfe,0x18fff060,0x7e,0x18f00000,0xc3e,0x19f00000,0xc3e,0x7f03fff8,0x338,0x7f03fff8,0x338, + 0x1c30018,0xcee,0xc30018,0xcc6,0xe3c31f98,0x3f,0xe7c33f98,0x3f,0xfc033f98,0xfff,0xf8033f98,0xfff,0xfc033f98,0xfff,0xe7c33f98,0x339, + 0xe7833f98,0x339,0x60030018,0x38,0x60030018,0x18,0xe7f3fff8,0x301,0xe7f3fff8,0x301,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe0,0x0,0xfffffe0,0x0,0xfffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0xfff,0xffffffff,0xfff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0, + 0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x3ffe0000,0x0,0xffffc000,0x0,0xffffe000,0x3,0xfffff800,0x7,0xfffffc00,0xf, + 0xf1e3fe00,0x1f,0xc1e1fe00,0x3f,0x81e07f00,0x3f,0x1e03f80,0x7f,0x1e03f80,0x7f,0x1e01f80,0x7f,0x1e01fc0,0xe,0x1e01fc0,0x0, + 0x1e00fc0,0x0,0x1e00fc0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0, + 0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fc0,0x0,0x1e00fc0,0x0,0x1e01fc0,0x7e,0x1e01fc0,0x7e,0x1e03f80,0x7f,0x1e03f80,0x7f, + 0x81e07f00,0x3f,0xc1e0ff00,0x3f,0xe1e3fe00,0x1f,0xfdeffc00,0xf,0xfffff800,0x7,0xfffff000,0x3,0xffffe000,0x1,0x7fff0000,0x0, + 0x7f00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3000000,0x0,0x7ffc0000,0x0,0xffff0000,0x3,0xffffc000,0x7, + 0xffffe000,0xf,0xfffff000,0x1f,0xf83ff800,0x3f,0xc007f800,0x3f,0x8003fc00,0x7f,0x1fc00,0xf,0x1fc00,0x1,0xfc00,0x0, + 0xfc00,0x0,0xfc00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0,0x7ffffff8,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0x7e00,0x0,0x7f00,0x0,0x7f00,0x0,0x3f80,0xf0,0x1fc0,0x3f0,0xfe0,0x3f8,0x7f8,0x3fc, + 0xfffffffc,0x1ff,0xfffffffc,0x1ff,0xfffffffc,0xff,0xfffffffc,0x7f,0xfffffffc,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00600,0xc,0xffe0f00,0x1e,0x3fff9f80,0x3f, + 0xffffffc0,0x7f,0xffffff80,0x3f,0xffffff00,0x1f,0xfc07fe00,0xf,0xf001fc00,0xf,0xe000fe00,0xf,0xc0007f00,0x1f,0x80003f00,0x1f, + 0x3f00,0x3f,0x1f80,0x3f,0x1f80,0x3f,0x1f80,0x3f,0x1f80,0x3e,0x1f80,0x3e,0x1f80,0x3f,0x1f80,0x3f, + 0x1f80,0x3f,0x80003f00,0x1f,0x80003f00,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf,0xf001fc00,0xf,0xfe0ffe00,0xf,0xffffff00,0x1f, + 0xffffff80,0x3f,0xffffffc0,0x7f,0x3fff9f80,0x3f,0xffe0f00,0x1e,0x400600,0xc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x3f8,0x3f8,0x3f8,0x7f0,0x1fc, + 0x7f0,0x1fc,0xfe0,0xfe,0x1fc0,0x7f,0x1fc0,0x7f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xe000fe00,0xf,0xf001fc00,0x7,0xf001f800,0x3,0xf803f800,0x3,0xfc03f000,0x1,0xfc07f000,0x1,0xfe0fe000,0x0,0x7e0fc000,0x0, + 0x7f1fc000,0x0,0x3f9f8000,0x0,0x3fbf8000,0x0,0x1fff0000,0x0,0xffe0000,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f00000,0x0,0x7fff8000,0x0,0xffffe000,0x1,0xfffff000,0x3,0xfffff800,0x7,0xf003fc00,0xf,0xc000fe00,0x1f,0x80007e00,0x1f, + 0x3e00,0x3f,0x3f00,0x3f,0x3f00,0x0,0x3f00,0x0,0x7f00,0x0,0x7e00,0x0,0xfe00,0x0,0x3fc00,0x0, + 0x1ffc00,0x0,0x1fff000,0x0,0xfffe000,0x0,0x7fff8000,0x0,0xffffc000,0x1,0xfffff000,0x7,0xff07f800,0xf,0xf800fc00,0x1f, + 0xe0007e00,0x3f,0x80003e00,0x3f,0x3f00,0x3f,0x1f00,0x7e,0x1f00,0x7e,0x1f00,0x7e,0x1f00,0x7e,0x3f00,0x3e, + 0x7f00,0x3f,0xfe00,0x3f,0x8003fe00,0x1f,0xe00ffc00,0xf,0xfffff800,0x7,0xfffff000,0x3,0xffffc000,0x0,0xfffe0000,0x0, + 0xfff00000,0x3,0xff000000,0x7,0xf8000000,0x1f,0xe0000000,0x1f,0x80000000,0x3f,0x0,0x3f,0x0,0x3f,0x0,0x3e, + 0x0,0x7e,0xf00,0x3e,0xfc0,0x3e,0x1f80,0x3f,0x80003f80,0x3f,0xc0007f00,0x1f,0xf001ff00,0xf,0xfffffe00,0xf, + 0xfffffc00,0x7,0xfffff000,0x1,0x3fffc000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0, + 0xf803f000,0x0,0xf803f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xe00000,0x0,0x1fff0000,0x0,0xffffe000,0x0,0xfffff800,0x3,0xf001fc00,0x7,0xc0007e00,0xf,0x1f00,0x1f,0xf80,0x3e, + 0x7c0,0x7c,0x3c0,0x78,0x1e0,0xf0,0x3f800e0,0xe0,0x1fff00f0,0x1e0,0x3fff8070,0x1c0,0x7fffc078,0x3c0,0xfc07e078,0x3c0, + 0xf803f038,0x380,0xf001f03c,0x381,0xe000f83c,0x781,0x2000f83c,0x780,0x781c,0x700,0x781c,0x700,0x7c1c,0x700,0x7c1c,0x700, + 0x7c1c,0x700,0x7c1c,0x700,0x7c1c,0x700,0x7c1c,0x700,0x7c1c,0x700,0x7c1c,0x700,0x781c,0x700,0x781c,0x700, + 0x4000f81c,0x700,0xe000f83c,0x783,0xe001f03c,0x781,0xf003f038,0x381,0xf807e038,0x380,0x7e1fe078,0x3c0,0x7fffc070,0x1c0,0x1fff00f0,0x1e0, + 0xffe00f0,0x1e0,0xc001e0,0xf0,0x1e0,0xf0,0x3c0,0x78,0x780,0x3c,0xf80,0x3e,0x80003f00,0x1f,0xe000fc00,0x7, + 0xfe0ff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fc0000,0x0,0xfffc000,0x0,0x3fffe000,0x0,0x7fdff800,0x0,0x7e01f800,0x0,0xfc00fc00,0x0, + 0xf8007c00,0x0,0xf8007e00,0x0,0xf8003000,0x1,0xf8000000,0x1,0xf0000000,0x1,0xf0000000,0x1,0xffffc000,0x1,0xfffff000,0x1, + 0xf3fffc00,0x1,0xf000fe00,0x1,0xf0003e00,0x1,0xf8003f00,0x1,0xf8001f00,0x1,0xf8001f00,0x1,0xfc001f00,0x1,0xfe001f00,0x1, + 0xf7003f00,0x1,0xf7807f00,0x1,0xf3fbfe00,0x1f,0xe1fffc00,0x1f,0xe07ff800,0x1f,0x801fe000,0x1f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0x1fc,0x7f0000,0xfe,0x3f8000,0x7f,0x801fc000,0x3f, + 0xc00fe000,0x1f,0xe007f000,0xf,0xf003f800,0x7,0xf803fc00,0x7,0xfc01fe00,0x3,0xfe00ff00,0x1,0xff007f80,0x0,0x7f003f80,0x0, + 0x3f801fc0,0x0,0x1fc00fe0,0x0,0x1fc00fe0,0x0,0x3fc01fe0,0x0,0x7f801fc0,0x0,0x7f003f80,0x0,0xfe007f00,0x0,0xfc00fe00,0x1, + 0xf801fc00,0x3,0xf003f800,0x7,0xe007f000,0xf,0xc00fe000,0x1f,0x801fe000,0x3f,0x803fc000,0x7f,0x7f8000,0xff,0x7f0000,0x1fe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff, + 0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8, + 0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xe00000,0x0,0x1fff0000,0x0,0xffffe000,0x0,0xfffff800,0x3,0xf001fc00,0x7,0xc0007e00,0xf,0x1f00,0x1f,0xf80,0x3e, + 0x7c0,0x7c,0x3c0,0x78,0x1e0,0xf0,0xfff0e0,0xe0,0x1ffff0f0,0x1e0,0x7ffff070,0x1c0,0xfffff078,0x3c0,0xfc01f078,0x3c1, + 0xf001f038,0x381,0xf001f03c,0x381,0xe001f03c,0x783,0xe001f03c,0x783,0xe001f01c,0x703,0xe001f01c,0x703,0xe001f01c,0x701,0xf001f01c,0x701, + 0xf801f01c,0x701,0xfe01f01c,0x700,0x7ffff01c,0x700,0x3ffff01c,0x700,0x7fff01c,0x700,0x781f01c,0x700,0xf81f01c,0x700,0x1f01f01c,0x700, + 0x1e01f01c,0x700,0x3e01f03c,0x780,0x7c01f03c,0x780,0x7c01f038,0x380,0xf801f038,0x380,0xf801f078,0x3c1,0xf001f070,0x1c1,0xe001f0f0,0x1e3, + 0xe001f0f0,0x1e3,0x1e0,0xf0,0x1e0,0xf0,0x3c0,0x78,0x780,0x3c,0xf80,0x3e,0x80003f00,0x1f,0xe000fc00,0x7, + 0xfe0ff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0xfff,0xffffffff,0xfff,0xffffffff,0xfff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x7fc0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0, + 0x7f1fc000,0x0,0x7c07c000,0x0,0xf803e000,0x0,0xf001e000,0x0,0xf000f000,0x1,0xe000f000,0x1,0xe000f000,0x1,0xe000f000,0x1, + 0xe000f000,0x1,0xf001e000,0x0,0xf803e000,0x0,0x7803c000,0x0,0x7e0fc000,0x0,0x3fff8000,0x0,0x1fff0000,0x0,0x7fc0000,0x0, + 0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffc0000,0x0,0x3fff0000,0x0,0x7fff8000,0x0,0xffbfc000,0x0,0xfc07e000,0x0, + 0xf803e000,0x0,0xf001f000,0x1,0xf001f000,0x1,0xf0000000,0x1,0xf0000000,0x1,0xf8000000,0x0,0xf8000000,0x0,0xfc000000,0x0, + 0x7e000000,0x0,0x3f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x7f00000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0, + 0x1f0000,0x0,0xf8000,0x0,0x7c000,0x0,0x3e000,0x0,0x1f000,0x0,0xfffff000,0x1,0xfffff000,0x1,0xfffff000,0x1, + 0xfffff000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffc0000,0x0,0x3fff0000,0x0,0x7fff8000,0x0,0xffbfc000,0x0,0xfc07e000,0x0, + 0xf803e000,0x0,0xf001f000,0x1,0xf001f000,0x1,0xf0000000,0x1,0xf0000000,0x0,0xf8000000,0x0,0x7c000000,0x0,0x7f000000,0x0, + 0x1ff00000,0x0,0x7f00000,0x0,0x1ff00000,0x0,0x7ff00000,0x0,0xfc000000,0x0,0xf8000000,0x1,0xf0000000,0x1,0xf0000000,0x1, + 0xe0000000,0x1,0xf000e000,0x1,0xf001f000,0x1,0xf001f000,0x1,0xf803f000,0x1,0xfc0fe000,0x0,0xffffc000,0x0,0x7fff8000,0x0, + 0x1fff0000,0x0,0x3f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f800000,0x0,0x3fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0x7e0000,0x0, + 0x3f0000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0xfc0,0x7f, + 0xfc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x7f,0x80001fc0,0x7f,0xc0001fc0,0x7f,0xc0003fc0,0x7f,0xe0007fc0,0x7f,0xf800ffc0,0x7e, + 0x7e03ffc0,0x7e,0x7fffffc0,0x7e,0x3fffefc0,0x7e,0x1fffefc0,0x7e,0x7ff8fc0,0x7e,0x1fe0fc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff8000,0x7f,0xfffff000,0x7f,0xfffffc00,0x7f, + 0xfffffe00,0x7f,0xffffff00,0x7f,0xc07fff80,0x7,0xc07fff80,0x7,0xc07fffc0,0x7,0xc07fffc0,0x7,0xc07fffe0,0x7,0xc07fffe0,0x7, + 0xc07fffe0,0x7,0xc07fffe0,0x7,0xc07fffe0,0x7,0xc07fffe0,0x7,0xc07fffe0,0x7,0xc07fffe0,0x7,0xc07fffc0,0x7,0xc07fffc0,0x7, + 0xc07fffc0,0x7,0xc07fff80,0x7,0xc07fff00,0x7,0xc07ffe00,0x7,0xc07ffc00,0x7,0xc07ff000,0x7,0xc07f8000,0x7,0xc07c0000,0x7, + 0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7, + 0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7, + 0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7, + 0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7,0xc07c0000,0x7, + 0xc07c0000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00,0x0,0xf00,0x0,0xf00,0x0, + 0x700,0x0,0x3f80,0x0,0xff80,0x0,0x1ffc0,0x0,0x1f800,0x0,0x3e000,0x0,0x3e000,0x0,0x3e000,0x0, + 0x3f000,0x0,0x1f800,0x0,0x1ffe0,0x0,0xffe0,0x0,0x3fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f80000,0x0,0x1fe0000,0x0,0x1ffc000,0x0, + 0x1fff800,0x0,0x1f7f800,0x0,0x1f1f800,0x0,0x1f01800,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0xfffff800,0x3,0xfffff800,0x3,0xfffff800,0x3, + 0xfffff800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f80000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xffffe000,0x0,0xfc07f000,0x1,0xf001f800,0x3, + 0xe000fc00,0x7,0xc0007c00,0x7,0xc0007c00,0xf,0xc0007e00,0xf,0x80003e00,0xf,0x80003e00,0xf,0x80003e00,0xf,0x80003e00,0xf, + 0x80003e00,0xf,0x80003e00,0xf,0x80003e00,0xf,0x80003e00,0xf,0x80007e00,0xf,0xc0007e00,0xf,0xc0007c00,0x7,0xe000fc00,0x7, + 0xf001f800,0x3,0xf803f000,0x1,0xfffff000,0x1,0x7fffc000,0x0,0x3fff8000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe007f0,0x0,0x1fc00fe0,0x0,0x3f801fc0,0x0,0x7f003f80,0x0, + 0xfe007f00,0x0,0xfc00fe00,0x1,0xfc01fe00,0x3,0xf803fc00,0x7,0xf007f800,0xf,0xe00ff000,0x1f,0xc00fe000,0x1f,0x801fc000,0x3f, + 0x3f8000,0x7f,0x7f0000,0xfe,0x7f0000,0xfe,0x7f8000,0xff,0x803fc000,0x7f,0x801fe000,0x3f,0xc00fe000,0x1f,0xe007f000,0xf, + 0xf003f800,0x7,0xf801fc00,0x3,0xfc00fe00,0x1,0xfe007f00,0x0,0x7f003f80,0x0,0x7f801fc0,0x0,0x3fc01fe0,0x0,0x1fe00ff0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0x1e,0xf80,0xf,0xfc0,0xf, + 0x80000fe0,0x7,0x80000ffe,0x7,0xc0000f7e,0x3,0xc0000f7e,0x3,0xe0000f1e,0x1,0xe0000f02,0x1,0xf0000f00,0x0,0xf0000f00,0x0, + 0x78000f00,0x0,0x78000f00,0x0,0x3c000f00,0x0,0x3c000f00,0x0,0x1e000f00,0x0,0x1f000f00,0x0,0xf000f00,0x0,0xf800f00,0x0, + 0x7800f00,0x0,0x7c00f00,0x0,0x3c00f00,0xf8,0x3e00f00,0xfc,0x1e00f00,0xfe,0xf0fff8,0xfe,0xf0fff8,0xff,0x8078fff8,0xf7, + 0x80780000,0xf3,0xc03c0000,0xf3,0xe03c0000,0xf1,0xf01e0000,0xf0,0xf01e0000,0xf0,0x780f0000,0xf0,0x3c0f0000,0xf0,0x1c078000,0xf0, + 0x1e078000,0xf0,0xf03c000,0xf0,0x783c000,0xf0,0x781e000,0xf0,0xffc1e000,0xfff,0xffc0f000,0xfff,0xffc0f800,0xfff,0xffc07800,0xfff, + 0x7c00,0xf0,0x3c00,0xf0,0x3e00,0xf0,0x1e00,0xf0,0x1f00,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf80,0xf,0xf80,0xf,0x80000fc0,0x7, + 0x80000ff0,0x7,0xc0000ffe,0x3,0xc0000ffe,0x3,0xe0000fbe,0x1,0xe0000f9e,0x1,0xf0000f82,0x0,0xf0000f80,0x0,0x78000f80,0x0, + 0x78000f80,0x0,0x3c000f80,0x0,0x3e000f80,0x0,0x1e000f80,0x0,0x1f000f80,0x0,0xf000f80,0x0,0xf800f80,0x0,0x7800f80,0x0, + 0x7c00f80,0x0,0x3c00f80,0x0,0xc1e00f80,0x7f,0xe1e00f80,0xff,0xf8f00f80,0x1ff,0xf8f0fffc,0x3f9,0x7c78fffc,0x7e0,0x3c78fffc,0x7c0, + 0x3e3c0000,0x7c0,0x3e3c0000,0x7c0,0x1e0000,0x7c0,0x1e0000,0x7c0,0xf0000,0x3c0,0xf0000,0x3e0,0x78000,0x1f0,0x78000,0x1f8, + 0x3c000,0xfc,0x3e000,0x3e,0x8001e000,0x1f,0xc001f000,0xf,0xe000f000,0x7,0xf000f800,0x3,0xf8007800,0x0,0x7c007c00,0x0, + 0x3c003c00,0x0,0x3e003e00,0x0,0xfe001e00,0x7ff,0xfe000f00,0x7ff,0xfe000f00,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x3c,0xffe0,0x1e,0x1fff8,0x1e, + 0x3fff8,0xf,0x3e0fc,0xf,0x8003e07c,0x7,0x8007c03e,0x7,0xc007c03c,0x3,0xc003e000,0x3,0xe003e000,0x1,0xe003e000,0x1, + 0xf001fc00,0x0,0xf8007f00,0x0,0x78003f00,0x0,0x7c00ff00,0x0,0x3c03ff00,0x0,0x3e03e000,0x0,0x1e07c000,0x0,0xf07c000,0x0, + 0xf07c000,0x0,0x787c03e,0x0,0x787c03e,0xf8,0x3c7c07c,0xfc,0x3c7e0fc,0xfe,0x1e3fffc,0xfe,0x1e1fff8,0xff,0x80f0ffe0,0xf7, + 0x80f03f80,0xf3,0xc0780000,0xf3,0xe0780000,0xf1,0xf03c0000,0xf0,0xf03c0000,0xf0,0x781e0000,0xf0,0x3c1e0000,0xf0,0x1c0f0000,0xf0, + 0x1e0f8000,0xf0,0xf078000,0xf0,0x787c000,0xf0,0x783c000,0xf0,0xffc3e000,0xfff,0xffc1e000,0xfff,0xffc1f000,0xfff,0xffc0f000,0xfff, + 0xf800,0xf0,0x7800,0xf0,0x3c00,0xf0,0x3c00,0xf0,0x1e00,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00000,0x0,0xfc00000,0x0,0xfe00000,0x0,0x7e00000,0x0, + 0x7f00000,0x0,0x3f80000,0x0,0x3fc0000,0x0,0x1fe0000,0x0,0xff0000,0x0,0x7f8000,0x0,0x3fe000,0x0,0x1ff000,0x0, + 0x7f800,0x0,0x3fc00,0x0,0x1fe00,0x0,0xff00,0x0,0x7f80,0x0,0x3f80,0x0,0x1f80,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0xfe,0x1fc0,0xfe,0x3f80,0xff,0x80003f80,0x7f, + 0xc000ff80,0x3f,0xf001ff00,0x3f,0xfffffe00,0x1f,0xfffffc00,0xf,0xfffff800,0x7,0xfffff000,0x1,0x7fff8000,0x0,0x7f80000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x0,0x0,0xff000,0x0,0x1fe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1ffe0000,0x0,0x3fff8000,0x0,0x7f3fc000,0x0,0xfe0fe000,0x0,0xf803f000,0x1, + 0xe000f800,0x3,0xc0007800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0x0,0x0,0x800fc000,0x7,0x803ff000,0x7,0x80fff000,0x7,0xc3fff800,0x7,0xfffffc00,0x3,0xfff07c00,0x3,0xffc03c00,0x1, + 0xff003c00,0x0,0x3c003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x0,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0, + 0xf803f000,0x0,0xf803f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x7e1fc000,0x0, + 0x7c07c000,0x0,0x7803c000,0x0,0x7803c000,0x0,0x7c07c000,0x0,0x7e0fc000,0x0,0x3fff8000,0x0,0x3fff8000,0x0,0x1ffe0000,0x0, + 0xffc0000,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x1fbf0000,0x0,0x1fbf0000,0x0,0x3f3f0000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0, + 0x7e1fc000,0x0,0x7e0fc000,0x0,0x7e0fc000,0x0,0xfc0fe000,0x0,0xfc07e000,0x0,0xfc07e000,0x1,0xf807f000,0x1,0xf803f000,0x1, + 0xf803f800,0x3,0xf001f800,0x3,0xf001f800,0x3,0xf001fc00,0x7,0xe000fc00,0x7,0xe000fc00,0xf,0xe000fe00,0xf,0xc0007e00,0xf, + 0xc0007f00,0x1f,0xc0007f00,0x1f,0xffffff00,0x1f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xfe0,0xfe,0xfe0,0xfe,0x7e0,0xfc,0x7f0,0x1fc,0x7f0,0x1fc,0x3f0,0x3f8,0x3f8,0x3f8,0x3f8,0x3f8, + 0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc0000,0x3ff,0xfffe0000,0x3ff,0xfffe0000,0x3ff, + 0xfffe0000,0x3ff,0xffff0000,0x3ff,0xff1f0000,0x3ff,0x3f1f0000,0x0,0x3f0f8000,0x0,0x3f0f8000,0x0,0x3f0f8000,0x0,0x3f0fc000,0x0, + 0x3f07c000,0x0,0x3f07c000,0x0,0x3f07e000,0x0,0x3f03e000,0x0,0x3f03f000,0x0,0x3f03f000,0x0,0x3f01f000,0x0,0x3f01f800,0x0, + 0x3f01f800,0x0,0x3f00f800,0x0,0xff00fc00,0x1ff,0xff00fc00,0x1ff,0xff007c00,0x1ff,0xff007e00,0x1ff,0xff003e00,0x1ff,0x3f003f00,0x0, + 0x3f003f00,0x0,0x3fffff00,0x0,0x3fffff80,0x0,0x3fffff80,0x0,0x3fffff80,0x0,0x3fffffc0,0x0,0x3fffffc0,0x0,0x3f0007c0,0x0, + 0x3f0007e0,0x0,0x3f0007e0,0x0,0x3f0003f0,0x0,0x3f0003f0,0x0,0x3f0003f0,0x0,0x3f0001f8,0x0,0x3f0001f8,0x0,0x3f0001f8,0x0, + 0xff0000fc,0x7ff,0xff0000fc,0x7ff,0xff0000fc,0x7ff,0xff00007e,0x7ff,0xff00007e,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c00000,0x0,0x3ffe0000,0x0,0xffffc000,0x0,0xffffe000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf80ffc00,0x1f,0xe003fe00,0x3f,0xc001ff00,0x3f,0x8000ff00,0x7f,0x7f80,0x7f,0x3f80,0xfe, + 0x3fc0,0xfe,0x1fc0,0x3c,0x1fc0,0x4,0x1fc0,0x0,0x1fe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x1fc0,0x0,0x1fc0,0x38, + 0x1fc0,0xf8,0x3fc0,0x1fc,0x3f80,0x1fc,0x7f80,0xfe,0x7f00,0xff,0x8000ff00,0x7f,0xc001fe00,0x3f,0xe007fe00,0x3f, + 0xfc7ffc00,0x1f,0xfffff800,0xf,0xfffff000,0x7,0xffffc000,0x1,0xffff0000,0x0,0x1ffc0000,0x0,0x1e00000,0x0,0xe00000,0x0, + 0xf00000,0x0,0x7f00000,0x0,0x1ff00000,0x0,0x1ff80000,0x0,0x3f000000,0x0,0x3e000000,0x0,0x3c000000,0x0,0x3c000000,0x0, + 0x3e000000,0x0,0x3f000000,0x0,0x1ffe0000,0x0,0xffe0000,0x0,0x3fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 200 + 0x7f000,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0,0x3f00000,0x0, + 0x7e00000,0x0,0xf800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1ffe0000,0x0,0x3fff8000,0x0,0x7f3fc000,0x0,0xfe0fe000,0x0,0xf803f000,0x1, + 0xe000f800,0x3,0xc0007800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x0,0x0,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1, + 0xf807e000,0x1,0xf807e000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0xffffffc0,0x1f,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0x7f000,0x0,0xff000,0x0,0x1fe000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1fc0000,0x0,0x3f00000,0x0, + 0x7e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0x780000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1ffe0000,0x0,0x3fff8000,0x0,0x7f3fc000,0x0,0xfe0fe000,0x0,0xf803f000,0x1, + 0xe000f800,0x3,0xc0007800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x0,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0, + 0xf803f000,0x0,0xf803f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffc0,0x0,0x7ffffc0,0x0,0x3fffffc0,0x0, + 0xffffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x3,0xff801fc0,0x7,0xfc001fc0,0xf,0xf0001fc0,0x1f,0xe0001fc0,0x3f,0xc0001fc0,0x3f, + 0x80001fc0,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0xff,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x7ffffe,0x1fc,0x7ffffe,0x1fc,0x7ffffe,0x1fc,0x7ffffe,0x1fc,0x7ffffe,0x1fc, + 0x1fc0,0x1fc,0x1fc0,0xfc,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xff,0x1fc0,0x7f, + 0x1fc0,0x7f,0x80001fc0,0x7f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xe0001fc0,0x1f,0xf0001fc0,0xf,0xfc001fc0,0xf,0xff801fc0,0x7, + 0xffffffc0,0x3,0xffffffc0,0x1,0x7fffffc0,0x0,0x1fffffc0,0x0,0x3ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0x0,0x0,0x800fc000,0x7,0x803ff000,0x7,0x80fff800,0x7,0xc3fff800,0x7,0xfffefc00,0x3,0xfff07c00,0x3,0xffc03c00,0x1, + 0xff003c00,0x0,0x3c003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x7e,0x7fc0,0x7e,0x7fc0,0x7e, + 0xffc0,0x7e,0xffc0,0x7e,0x1ffc0,0x7e,0x1ffc0,0x7e,0x3ffc0,0x7e,0x3ffc0,0x7e,0x7ffc0,0x7e,0x7efc0,0x7e, + 0x7efc0,0x7e,0xfcfc0,0x7e,0xfcfc0,0x7e,0x1f8fc0,0x7e,0x1f8fc0,0x7e,0x3f0fc0,0x7e,0x3f0fc0,0x7e,0x7e0fc0,0x7e, + 0x7e0fc0,0x7e,0xfc0fc0,0x7e,0xfc0fc0,0x7e,0x1fc0fc0,0x7e,0x1f80fc0,0x7e,0x3f80fc0,0x7e,0x3f00fc0,0x7e,0x3f00fc0,0x7e, + 0x7e00fc0,0x7e,0x7e00fc0,0x7e,0xfc00fc0,0x7e,0xfc00fc0,0x7e,0x1f800fc0,0x7e,0x1f800fc0,0x7e,0x3f000fc0,0x7e,0x3f000fc0,0x7e, + 0x7f000fc0,0x7e,0x7e000fc0,0x7e,0xfe000fc0,0x7e,0xfc000fc0,0x7e,0xfc000fc0,0x7e,0xf8000fc0,0x7f,0xf8000fc0,0x7f,0xf0000fc0,0x7f, + 0xf0000fc0,0x7f,0xe0000fc0,0x7f,0xe0000fc0,0x7f,0xc0000fc0,0x7f,0xc0000fc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0x7f000,0x0,0xff000,0x0,0x1fe000,0x0,0x3fc000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1fc0000,0x0,0x3f00000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0xffffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0xffffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1ffe0000,0x0,0x3fff8000,0x0,0x7f3fc000,0x0,0xfe0fe000,0x0,0xf803f000,0x1, + 0xe000f800,0x3,0xc0007800,0x3,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0xffffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0x0,0x0,0x800fc000,0x7,0x803ff000,0x7,0x80fff000,0x7,0xc3fff800,0x7,0xfffffc00,0x3,0xfff07c00,0x3,0xffc03c00,0x1, + 0xff003c00,0x0,0x3c003c00,0x0,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0xffffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x0,0x0,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1, + 0xf807e000,0x1,0xf807e000,0x1,0x0,0x0,0x0,0x0,0x400000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x1, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc07fe00,0xf,0xf001ff00,0x1f,0xe000ff00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f,0x80003fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fe0,0xff,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xff0,0x1fe, + 0xff0,0x1fe,0x7f0,0x1fe,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc,0x7f0,0x1fc, + 0x7f0,0x1fe,0x7f0,0x1fe,0xff0,0x1fe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0x1fe0,0xff, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc0007f00,0x1f,0xe001ff00,0x1f,0xf803fe00,0xf, + 0xff1ffc00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0xffffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x600,0xc,0xf00,0x1e,0x1f80,0x3f, + 0x80003fc0,0x7f,0xc0007f80,0x3f,0xe000ff00,0x1f,0xf001fe00,0xf,0xf803fc00,0x7,0xfc07f800,0x3,0xfe0ff000,0x1,0xff1fe000,0x0, + 0x7fbfc000,0x0,0x3fff8000,0x0,0x1fff0000,0x0,0xffe0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0, + 0x3fff8000,0x0,0x7fbfc000,0x0,0xff1fe000,0x0,0xfe0ff000,0x1,0xfc07f800,0x3,0xf803fc00,0x7,0xf001fe00,0xf,0xe000ff00,0x1f, + 0xc0007f80,0x3f,0x80003fc0,0x7f,0x1f80,0x3f,0xf00,0x1e,0x600,0xc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x400000,0xc0,0x1fff0000,0x3c0,0x7fffc000,0x3e0,0xfffff000,0x1f1, + 0xfffff800,0x1fb,0xfffffc00,0xff,0xfc07fe00,0x7f,0xf001ff00,0x3f,0xe000ff00,0x3f,0xc0007f80,0x3f,0x80003f80,0x3f,0xc0003fc0,0x7f, + 0xe0001fc0,0x7f,0xe0001fc0,0x7f,0xf0001fe0,0xff,0xf8000fe0,0xfe,0xfc000fe0,0xfe,0x7c000fe0,0xfe,0x3e000fe0,0xfe,0x1f000ff0,0xfe, + 0x1f800ff0,0x1fe,0xf8007f0,0x1fe,0x7c007f0,0x1fe,0x3e007f0,0x1fc,0x3f007f0,0x1fc,0x1f007f0,0x1fc,0xf807f0,0x1fc,0x7c07f0,0x1fc, + 0x7e07f0,0x1fe,0x3e0ff0,0x1fe,0x1f0ff0,0x1fe,0xf8fe0,0xfe,0xfcfe0,0xfe,0x7cfe0,0xfe,0x3efe0,0xfe,0x1ffe0,0xff, + 0x1ffc0,0x7f,0xffc0,0x7f,0x80007fc0,0x7f,0x80003f80,0x3f,0xc0007f80,0x3f,0xc000ff80,0x1f,0xe001ff80,0x1f,0xf803ffc0,0xf, + 0xff1fffc0,0x7,0xffffffe0,0x3,0xfffff9f0,0x1,0xffffe0f8,0x0,0x3fff80f8,0x0,0x7fe0070,0x0,0x20,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0x7f800,0x0,0x7f800,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0xfc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xe0007f80,0x1f,0xf001ff00,0x1f, + 0xfe0fff00,0xf,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0xfc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xe0007f80,0x1f,0xf001ff00,0x1f, + 0xfe0fff00,0xf,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1ffe0000,0x0,0x3fff8000,0x0,0x7f3fc000,0x0,0xfe0fe000,0x0,0xf803f000,0x1, + 0xe000f800,0x3,0xc0007800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0xfc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xe0007f80,0x1f,0xf001ff00,0x1f, + 0xfe0fff00,0xf,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x0,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0, + 0xf803f000,0x0,0xf803f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e, + 0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0xfc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xe0007f80,0x1f,0xf001ff00,0x1f, + 0xfe0fff00,0xf,0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0x780000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0x7f0,0x3f8,0x3f8,0x7f8,0x3fc, + 0x7f0,0x1fc,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7f,0x80003fc0,0x7f,0x80003f80,0x3f,0xc0007f00,0x1f,0xc0007f00,0x1f, + 0xe000fe00,0xf,0xf001fc00,0x7,0xf001fc00,0x7,0xf803f800,0x3,0xf807f800,0x3,0xfc07f000,0x1,0xfe0fe000,0x0,0xfe0fe000,0x0, + 0x7f1fc000,0x0,0x3fbf8000,0x0,0x3fbf8000,0x0,0x1fff0000,0x0,0xffe0000,0x0,0xffe0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3fffffc0,0x0,0xffffffc0,0x1, + 0xffffffc0,0x3,0xffffffc0,0xf,0xffffffc0,0x1f,0xf8001fc0,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x7f,0x1fc0,0x7f,0x1fc0,0xff, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0xfc,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xff,0x1fc0,0x7f,0x80001fc0,0x7f,0xe0001fc0,0x3f,0xf8001fc0,0x1f,0xffffffc0,0xf, + 0xffffffc0,0x7,0xffffffc0,0x3,0xffffffc0,0x0,0x1fffffc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f00000,0x0,0x3fff8000,0x0,0xfffff000,0x0,0xfffff800,0x1,0xfffffc00,0x7,0xff1ffe00,0x7,0xf001ff00,0xf,0xe0007f00,0xf, + 0xc0003f80,0x1f,0x80003f80,0x1f,0x80001fc0,0x1f,0x80001fc0,0x1f,0x80001fc0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xe0000fc0,0xf, + 0xe0000fc0,0xf,0xf0000fc0,0x7,0xf8000fc0,0x3,0xfc000fc0,0x1,0xfe000fc0,0x0,0x7f000fc0,0x0,0x3f000fc0,0x0,0x1f800fc0,0x0, + 0x1f800fc0,0x0,0x1f800fc0,0x0,0x1f800fc0,0x0,0x3f800fc0,0x0,0x7f000fc0,0x0,0xff000fc0,0x0,0xfe000fc0,0x1,0xfe000fc0,0x7, + 0xfc000fc0,0xf,0xf0000fc0,0x1f,0xe0000fc0,0x7f,0x80000fc0,0xff,0xfc0,0xff,0xfc0,0x1fe,0xfc0,0x1fc,0xfc0,0x3f8, + 0xfc0,0x3f0,0xfc0,0x3f0,0xfc0,0x3f0,0xfc0,0x3f0,0xfc0,0x3f0,0xfc0,0x3f0,0xfc0,0x3f8,0x180fc0,0x3fc, + 0x780fc0,0x1fe,0xfff80fc0,0xff,0xfff80fc0,0xff,0xfff80fc0,0x7f,0xfff80fc0,0x1f,0xffe00000,0x7,0x20000000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f800,0x0,0x7f800,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0, + 0x1f80000,0x0,0x3f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f80000,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f0fe000,0x0,0x7e07f000,0x0, + 0xf801f800,0x0,0xf0007c00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x800fe000,0x7,0x803ff000,0x7,0xc0fff800,0x7,0xe3fffc00,0x3,0xfffc7c00,0x3,0xfff03c00,0x1, + 0xffc03c00,0x1,0x7f003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0xffe0000,0x0, + 0x1fff8000,0x0,0x3fff8000,0x0,0x3f0fc000,0x0,0x7c07c000,0x0,0x7c03c000,0x0,0x7c03c000,0x0,0x7c03c000,0x0,0x3e07c000,0x0, + 0x3fffc000,0x0,0x1fff8000,0x0,0xfff0000,0x0,0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffffc00,0x1,0xfffffe00,0x3,0xfc03fe00,0x3,0xf800ff00,0x7,0xf0007f00,0x7,0xe0003f80,0xf,0xe0003f80,0xf, + 0xe0003f80,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xffff0000,0xf,0xfffff000,0xf, + 0xfffffc00,0xf,0xfffffe00,0xf,0xc0ffff00,0xf,0xc001ff80,0xf,0xc0007fc0,0xf,0xc0003fc0,0xf,0xc0001fc0,0xf,0xc0000fe0,0xf, + 0xe0000fe0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xf8000fe0,0xf,0xfc001fc0,0x1f,0xdf001fc0,0x1f, + 0xcfc07fc0,0x1f,0x8fffff80,0x3ff,0x87ffff80,0x3ff,0x1ffff00,0x3ff,0xfffc00,0x3ff,0x3ff000,0x1fc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe003fc00,0x7,0xfc0fff00,0x1f, + 0xfe1fffc0,0x7f,0xff3fffe0,0xff,0xffffffe0,0xff,0x1fff0ff0,0x1fc,0xffc03f0,0x1f8,0x7fc03f8,0x3f0,0x3fc01f8,0x3f0,0x3f801f8,0x7e0, + 0x3f801f8,0x7e0,0x1f80000,0x7e0,0x1f80000,0x7e0,0x1f80000,0x7e0,0x1f80000,0x7c0,0x1f80000,0xfc0,0x1fffe00,0xfc0,0xffffffc0,0xfff, + 0xffffffe0,0xfff,0xfffffff0,0xfff,0xfff87ff8,0xfff,0x1f803f8,0x0,0x1f801fc,0x0,0x1f800fc,0x0,0x1f800fc,0x0,0x1f800fe,0x0, + 0x1f8007e,0x0,0x1f8007e,0x0,0x1fc007e,0x0,0x3fc007e,0x0,0x3fc007e,0x1c0,0x3fe00fe,0x7e0,0x7ff00fc,0x3e0,0xfcf80fc,0x3f0, + 0x1fcfc1fc,0x1f8,0xff87fffc,0x1ff,0xff83fff8,0xff,0xff01fff0,0x7f,0xfe00ffe0,0x3f,0xf8003f80,0xf,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff80000,0x0,0x7fff8000,0x0, + 0xffffe000,0x1,0xfffff000,0x3,0xfffff800,0x7,0xfc07fc00,0xf,0xe001fe00,0x1f,0xc000ff00,0x3f,0x80007f00,0x3f,0x80003f80,0x3f, + 0x1f80,0x7f,0x1fc0,0x7f,0x1fc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x7f,0x1f80,0x7f,0x80003f80,0x7f,0x80007f80,0x3f,0xc0007f00,0x3f,0xe001fe00,0x1f, + 0xf807fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0xf00000,0x0,0xf00000,0x0, + 0x700000,0x0,0x3f80000,0x0,0xff80000,0x0,0x1ff80000,0x0,0x1f000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x1f800000,0x0,0x1ffe0000,0x0,0xffe0000,0x0,0x3fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f000,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3f00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x3fff8000,0x0, + 0xffffe000,0x0,0xfffff000,0x3,0xfffffc00,0x7,0xf807fc00,0xf,0xf001fe00,0xf,0xc000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f, + 0x1f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfe0,0x7e,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3f80,0x0,0x3f80,0x1f,0x7f00,0x3f,0x8000ff00,0x3f,0xc001fe00,0x1f, + 0xf807fe00,0x1f,0xfffffc00,0xf,0xfffff800,0x7,0xffffe000,0x1,0xffff8000,0x0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x3fff8000,0x0, + 0xffffe000,0x0,0xfffff000,0x3,0xfffffc00,0x7,0xf807fc00,0xf,0xf001fe00,0xf,0xc000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f, + 0x1f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfe0,0x7e,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3f80,0x0,0x3f80,0x1f,0x7f00,0x3f,0x8000ff00,0x3f,0xc001fe00,0x1f, + 0xf807fe00,0x1f,0xfffffc00,0xf,0xfffff800,0x7,0xffffe000,0x1,0xffff8000,0x0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x7f1fc000,0x0,0xfc0fe000,0x0, + 0xf003f000,0x1,0xe000f800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x3fff8000,0x0, + 0xffffe000,0x0,0xfffff000,0x3,0xfffffc00,0x7,0xf807fc00,0xf,0xf001fe00,0xf,0xc000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f, + 0x1f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfe0,0x7e,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3f80,0x0,0x3f80,0x1f,0x7f00,0x3f,0x8000ff00,0x3f,0xc001fe00,0x1f, + 0xf807fe00,0x1f,0xfffffc00,0xf,0xfffff800,0x7,0xffffe000,0x1,0xffff8000,0x0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1, + 0xf807e000,0x1,0xf807e000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x3fff8000,0x0, + 0xffffe000,0x0,0xfffff000,0x3,0xfffffc00,0x7,0xf807fc00,0xf,0xf001fe00,0xf,0xc000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f, + 0x1f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfc0,0x7e,0xfc0,0x7e,0xfe0,0x7e,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3f80,0x0,0x3f80,0x1f,0x7f00,0x3f,0x8000ff00,0x3f,0xc001fe00,0x1f, + 0xf807fe00,0x1f,0xfffffc00,0xf,0xfffff800,0x7,0xffffe000,0x1,0xffff8000,0x0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff000,0x0,0x1fe000,0x0,0x3fc000,0x0,0x7f8000,0x0,0xfe0000,0x0,0x1fc0000,0x0,0x3f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x3,0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f00000,0x0,0x7f80000,0x0,0xffc0000,0x0,0x1ffe0000,0x0,0x3fff0000,0x0,0x7e1fc000,0x0,0xfc0fe000,0x0, + 0xf003f000,0x1,0xe000f800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf00fc000,0x3,0xf00fc000,0x3,0xf00fc000,0x3,0xf00fc000,0x3,0xf00fc000,0x3, + 0xf00fc000,0x3,0xf00fc000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0, + 0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0xffffffc0,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800,0x3,0xc00fe000,0x7,0xf03fc000,0x7,0xfeff0000,0xf,0xfffe0000,0x3,0xfff80000,0x0,0x1ffc0000,0x0,0x1fff0000,0x0, + 0x3fffc000,0x0,0x7fbff000,0x0,0x7f0ff000,0x0,0xfe03e000,0x0,0xfc006000,0x1,0xf8000000,0x3,0xf8000000,0x3,0xf0000000,0x7, + 0xe0000000,0xf,0xe0000000,0xf,0xc0400000,0x1f,0xdfff8000,0x1f,0xffffe000,0x1f,0xfffff800,0x3f,0xfffffc00,0x3f,0xfc07fe00,0x3f, + 0xf001ff00,0x7f,0xc0007f00,0x7f,0x80003f80,0x7f,0x80003f80,0x7f,0x1fc0,0x7f,0x1fc0,0xff,0xfc0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0x7e,0xfc0,0x7e,0xfc0,0x7f,0x1fc0,0x7f,0x1fc0,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xe000ff00,0x1f, + 0xf801fe00,0xf,0xfffffe00,0x7,0xfffff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x801fc000,0xf,0x807ff000,0x7,0x81fff000,0x7,0xc7fff800,0x7,0xfff8f800,0x3,0xffe07c00,0x3, + 0xff803c00,0x1,0xfe003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00000,0x0,0xfff81f80,0x0, + 0xfffe1f80,0x3,0xffff1f80,0x7,0xffff9f80,0xf,0xf81f9f80,0xf,0xe007df80,0x1f,0xc001ff80,0x1f,0xc000ff80,0x1f,0x8000ff80,0x3f, + 0x80007f80,0x3f,0x80007f80,0x3f,0x80003f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff000,0x0,0x1fe000,0x0,0x3fc000,0x0,0x7f8000,0x0,0xfe0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000fe00,0x1f,0xc0007f00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0xfc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001f80,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf803fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x3,0xfe000000,0x1,0xff000000,0x0,0x7f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000fe00,0x1f,0xc0007f00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0xfc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001f80,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf803fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x7f1fc000,0x0,0xfc07e000,0x0, + 0xf803f000,0x1,0xe000f800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000fe00,0x1f,0xc0007f00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0xfc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001f80,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf803fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x800fe000,0x7,0x803ff000,0x7,0x80fff800,0x7,0xc3fff800,0x7,0xfffc7c00,0x3,0xfff03c00,0x3, + 0xffc03c00,0x1,0xff003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000fe00,0x1f,0xc0007f00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0xfc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001f80,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf803fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0, + 0xf803f000,0x0,0xf803f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fff8000,0x0, + 0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000fe00,0x1f,0xc0007f00,0x1f,0xc0007f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7e,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe, + 0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0xfe,0xfe0,0x7e,0xfc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001f80,0x3f,0x80003f80,0x3f,0xc0007f80,0x1f,0xc0007f00,0x1f,0xe000fe00,0xf, + 0xf803fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0x7fffc000,0x30, + 0xfffff000,0x79,0xfffff800,0xfb,0xfffffc00,0x7f,0xf803fe00,0x3f,0xe000ff00,0x1f,0xc0007f80,0x3f,0xc0003f80,0x3f,0xe0001fc0,0x7f, + 0xf0001fc0,0x7f,0xf0001fc0,0x7e,0xf8000fe0,0xfe,0x7c000fe0,0xfe,0x3e000fe0,0xfe,0x1f000fe0,0xfe,0xf8007e0,0xfc,0x7c007e0,0xfc, + 0x3e007e0,0xfc,0x1f007f0,0xfc,0x1f007f0,0xfc,0xf807e0,0xfc,0x7c07e0,0xfc,0x3e07e0,0xfc,0x1f07e0,0xfe,0xf8fe0,0xfe, + 0x7cfe0,0xfe,0x3efe0,0xfe,0x1efc0,0x7e,0x1ffc0,0x7f,0xffc0,0x7f,0x80007f80,0x3f,0xc0007f80,0x3f,0xe000ff00,0x1f, + 0xf803ff80,0xf,0xffffffc0,0x7,0xfffffbe0,0x3,0xfffff1e0,0x1,0x7fffc180,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f000,0x0,0xff000,0x0,0x1fe000,0x0,0x3fc000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1fc0000,0x0, + 0x3f00000,0x0,0x3e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xc0003f80,0x3f,0xe0003f00,0x3f,0xf0007f00,0x3f,0x7800ff00,0x3f, + 0x7e01ff00,0x3f,0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x7fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xc0003f80,0x3f,0xe0003f00,0x3f,0xf0007f00,0x3f,0x7800ff00,0x3f, + 0x7e01ff00,0x3f,0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x7fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x7f1fc000,0x0,0xfc07e000,0x0, + 0xf803f000,0x1,0xe000f800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xc0003f80,0x3f,0xe0003f00,0x3f,0xf0007f00,0x3f,0x7800ff00,0x3f, + 0x7e01ff00,0x3f,0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x7fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0,0xf803f000,0x0, + 0xf803f000,0x0,0xf803f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80003f80,0x3f,0x80003f80,0x3f,0x80003f80,0x3f,0xc0003f80,0x3f,0xc0003f80,0x3f,0xe0003f00,0x3f,0xf0007f00,0x3f,0x7800ff00,0x3f, + 0x7e01ff00,0x3f,0x3ffffe00,0x3f,0x1ffffc00,0x3f,0xffff800,0x3f,0x7fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x3f8, + 0x3f0,0x1f8,0x7f0,0x1fc,0x7e0,0xfc,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f,0x1f80,0x3f, + 0x80003f80,0x3f,0x80003f00,0x3f,0x80007f00,0x1f,0xc0007f00,0x1f,0xc0007e00,0xf,0xe000fe00,0xf,0xe000fc00,0x7,0xe001fc00,0x7, + 0xf001f800,0x7,0xf001f800,0x3,0xf003f000,0x3,0xf803f000,0x1,0xf807f000,0x1,0xfc07e000,0x0,0xfc07e000,0x0,0xfc0fc000,0x0, + 0x7e0fc000,0x0,0x7e1f8000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0,0x3f3f0000,0x0,0x1fbf0000,0x0,0x1ffe0000,0x0,0xffe0000,0x0, + 0xffc0000,0x0,0x7fc0000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x1fe000,0x0,0x1ff800,0x0, + 0xfff80,0x0,0x7ff80,0x0,0x3ff80,0x0,0xff80,0x0,0x1f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3fe03f80,0x0,0xfff83f80,0x0, + 0xfffe3f80,0x3,0xffff3f80,0x7,0xffffbf80,0xf,0xf80f9f80,0xf,0xe003df80,0x1f,0xc001ff80,0x1f,0x8000ff80,0x3f,0x8000ff80,0x3f, + 0x7f80,0x3f,0x7f80,0x7f,0x7f80,0x7f,0x3f80,0x7f,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e, + 0x3f80,0x7e,0x3f80,0xfe,0x3f80,0xfe,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x3f80,0x7e, + 0x3f80,0x7f,0x3f80,0x7f,0x7f80,0x7f,0x7f80,0x3f,0x80007f80,0x3f,0x8000ff80,0x3f,0xc001ff80,0x1f,0xe001ff80,0x1f, + 0xf007ff80,0xf,0xffffbf80,0xf,0xffff3f80,0x7,0xfffe3f80,0x3,0xfffc3f80,0x0,0x3fe03f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1, + 0xf807e000,0x1,0xf807e000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x3f8, + 0x3f0,0x1f8,0x7f0,0x1fc,0x7e0,0xfc,0xfe0,0xfe,0xfe0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f,0x1f80,0x3f, + 0x80003f80,0x3f,0x80003f00,0x3f,0x80007f00,0x1f,0xc0007f00,0x1f,0xc0007e00,0xf,0xe000fe00,0xf,0xe000fc00,0x7,0xe001fc00,0x7, + 0xf001f800,0x7,0xf001f800,0x3,0xf003f000,0x3,0xf803f000,0x1,0xf807f000,0x1,0xfc07e000,0x0,0xfc07e000,0x0,0xfc0fc000,0x0, + 0x7e0fc000,0x0,0x7e1f8000,0x0,0x3f1f8000,0x0,0x3f1f8000,0x0,0x3f3f0000,0x0,0x1fbf0000,0x0,0x1ffe0000,0x0,0xffe0000,0x0, + 0xffc0000,0x0,0x7fc0000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x1fe000,0x0,0x1ff800,0x0, + 0xfff80,0x0,0x7ff80,0x0,0x3ff80,0x0,0xff80,0x0,0x1f00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,65,-1,5,50,0,0,0,0,0 +const unsigned int ff15_height = 98; +const unsigned int ff15_line_height = 99; +const unsigned int ff15_width = 52; +const unsigned int ff15_stride = 2; +const unsigned char ff15_first_char = ' '; + +uint32_t ff15_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x803ff000,0x1ff,0x803ff000,0x1ff,0x803ff000,0x1ff,0x801ff000,0xff,0x1fe000,0xff,0x1fe000,0xff, + 0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff, + 0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0x1fe000,0xff,0xfe000,0x7f,0xfe000,0x7f,0xfc000,0x7e,0xfc000,0x7e, + 0xfc000,0x7e,0xfc000,0x7e,0xfc000,0x7e,0xfc000,0x7e,0xfc000,0x7e,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0xf00, + 0xf00000,0xf00,0xf80000,0xf80,0xf80000,0xf80,0xf80000,0xf80,0x780000,0x780,0x780000,0x780,0x7c0000,0x7c0,0x7c0000,0x7c0, + 0x7c0000,0x7c0,0x3c0000,0x3c0,0x3e0000,0x3e0,0x3e0000,0x3e0,0x3e0000,0x3e0,0x1e0000,0x1e0,0x1e0000,0x1e0,0x1f0000,0x1f0, + 0x1f0000,0x1f0,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xf8000,0xf8,0xf8000,0xf8,0x78000,0x78, + 0x7c000,0x7c,0x7c000,0x7c,0x7c000,0x7c,0x7c000,0x7c,0x3c000,0x3c,0x3e000,0x3e,0x3e000,0x3e,0x3e000,0x3e, + 0x1e000,0x1e,0x1e000,0x1e,0x1f000,0x1f,0xfffffff8,0xffff,0xfffffff8,0xffff,0xfffffff8,0xffff,0xfffffff8,0xffff,0x8000f800,0xf, + 0x8000f800,0xf,0x80007800,0xf,0x80007800,0x7,0xc0007c00,0x7,0xc0007c00,0x7,0xc0007c00,0x7,0xc0003c00,0x3,0xc0003c00,0x3, + 0xe0003e00,0x3,0xe0003e00,0x3,0xe0003e00,0x3,0xe0001e00,0x1,0xe0001e00,0x1,0xf0001f00,0x1,0xf0001f00,0x1,0xf0001f00,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0xfffe0000,0xf,0xffffc000,0x7f,0xfffff000,0x1ff,0xfffff800,0x3ff,0xfffffe00,0x7ff,0x3f1ffe00,0xfff,0x3f03ff00,0x1ff8,0x3f00ff80,0x3fe0, + 0x3f007f80,0x3fc0,0x3f003f80,0x7fc0,0x3f003fc0,0x7f80,0x3f003fc0,0x7f00,0x3f001fc0,0xff00,0x3f001fc0,0x3f00,0x3f001fc0,0x100,0x3f001fc0,0x0, + 0x3f003fc0,0x0,0x3f003f80,0x0,0x3f007f80,0x0,0x3f00ff80,0x0,0x3f03ff00,0x0,0x3f1fff00,0x0,0x3ffffe00,0x0,0x7ffffc00,0x0, + 0xfffff000,0x7,0xffffc000,0x3f,0xffff0000,0xff,0xfffc0000,0x3ff,0xffc00000,0xfff,0xff000000,0x1fff,0xbf000000,0x3fff,0x3f000000,0x7ff8, + 0x3f000000,0x7fe0,0x3f000000,0xff80,0x3f000000,0xff00,0x3f000000,0x1fe00,0x3f000000,0x1fe00,0x3f000000,0x1fe00,0x3f000000,0x1fc00,0x3f000700,0x1fc00, + 0x3f0007f8,0x1fc00,0x3f0007f0,0x1fc00,0x3f000ff0,0x1fc00,0x3f000ff0,0x1fe00,0x3f001fe0,0x1fe00,0x3f003fe0,0xff00,0x3f007fc0,0xff80,0x3f00ffc0,0x7fc0, + 0x3f03ff80,0x7ff0,0x3f1fff00,0x3ffe,0xfffffe00,0x1fff,0xfffffc00,0xfff,0xfffff000,0x3ff,0xffffc000,0xff,0xffff0000,0x1f,0x7fc00000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0x1f800, + 0xfffc0,0x1fc00,0x1ffff0,0xfc00,0x3ffff0,0x7e00,0x7feff8,0x3f00,0x7f01fc,0x3f00,0xfe00fc,0x1f80,0xfc00fe,0xfc0,0xfc007e,0xfe0, + 0xfc007e,0x7e0,0x1fc007e,0x3f0,0x1fc007e,0x3f8,0x1f8007e,0x1f8,0x1f8007e,0xfc,0x1f8007e,0xfe,0x1f8007e,0x7e,0x1fc007e,0x3f, + 0x81fc007e,0x1f,0x80fc007e,0x1f,0xc0fc007e,0xf,0xe0fc00fe,0x7,0xe0fe00fc,0x7,0xf07f01fc,0x3,0xf87fc7f8,0x1,0xfc3ffff8,0x1, + 0xfc1ffff0,0x0,0x7e0fffe0,0x0,0x7f03ff80,0x0,0x3f001000,0x0,0x1f800000,0x7c0,0xfc00000,0x3ff8,0xfc00000,0xfffe,0x7e00000,0x1ffff, + 0x83f00000,0x3ffff,0xc3f00000,0x7f83f,0xc1f80000,0x7f00f,0xe0fc0000,0xfe00f,0xe0fe0000,0xfc007,0xe07e0000,0xfc007,0xe03f0000,0xfc007,0xf03f8000,0xfc007, + 0xf01f8000,0xfc007,0xf00fc000,0xfc007,0xf00fe000,0xfc003,0xf007e000,0xfc007,0xf003f000,0xfc007,0xf001f800,0xfc007,0xe001f800,0xfc007,0xe000fc00,0xfc007, + 0xe0007e00,0xfc007,0xe0007e00,0xfe00f,0xc0003f00,0x7f00f,0xc0001f80,0x7f83f,0x80001fc0,0x3ffff,0xfc0,0x1ffff,0x7e0,0xfffe,0x7f0,0x7ffc, + 0x0,0xfe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00000,0x0, + 0xfff80000,0x3,0xfffe0000,0x7,0xffff8000,0x1f,0xffffc000,0x3f,0xe0ffc000,0x3f,0x801fe000,0x7f,0xfe000,0x7f,0x7f000,0xfe, + 0x3f000,0xfe,0x3f000,0xfe,0x3f000,0xfc,0x3f000,0xfe,0x3f000,0xfe,0x3f000,0x7e,0x3f000,0x7f,0x8003f000,0x7f, + 0xc003f000,0x3f,0xf007f000,0x1f,0xf807e000,0xf,0xff0fe000,0x7,0xffcfe000,0x3,0xffffc000,0x0,0x3fffc000,0x0,0xfff8000,0x0, + 0x3ffe000,0x0,0xfff000,0x100,0x7ffc00,0xf80,0xfffe00,0x3f80,0xffff00,0x3f80,0x1fcff80,0x1f80,0x1fc3fc0,0x1f80,0x3f81fe0,0x1fc0, + 0x7f80fe0,0x1fc0,0x7f00ff0,0xfc0,0xfe007f0,0xfc0,0x1fe003f8,0xfe0,0x3fc003f8,0x7e0,0x3f8003f8,0x7f0,0x7f8003f8,0x7f0,0xff0003fc,0x3f0, + 0xfe0001fc,0x3f9,0xfc0001fc,0x1fb,0xfc0003fc,0x1ff,0xf80003fc,0xff,0xf00003f8,0xff,0xe00003f8,0xff,0xc00007f8,0x7f,0xc00007f8,0xff, + 0xe0000ff0,0x1ff,0xf0001ff0,0x3ff,0xfc007fe0,0x40fff,0xff81ffc0,0x7ffff,0xffffffc0,0x7fff1,0xffffff00,0x7ffe0,0x7ffffe00,0x7ffc0,0x1ffff800,0x7ff00, + 0x3ffc000,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc0000000,0x3f,0xe0000000,0x1f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x7,0xfc000000,0x3, + 0xfe000000,0x1,0xff000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x3fc00000,0x0,0x3fe00000,0x0,0x1fe00000,0x0, + 0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0x7f0000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0, + 0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0, + 0x7f8000,0x0,0x7f8000,0x0,0x7f0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x7f80000,0x0, + 0x7f80000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0xff000000,0x0,0xff000000,0x0,0xfe000000,0x1,0xfc000000,0x3,0xfc000000,0x3,0xf8000000,0x7,0xf0000000,0xf, + 0xe0000000,0x1f,0xe0000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7f8000,0x0,0xff0000,0x0,0x1fe0000,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7f80000,0x0, + 0xff00000,0x0,0x1ff00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0xff800000,0x0,0xff000000,0x0, + 0xff000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfc000000,0x3,0xfc000000,0x3,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xe0000000,0x1f,0xc0000000,0x1f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f, + 0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f, + 0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xfc000000,0x3, + 0xfc000000,0x3,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xff000000,0x0,0xff800000,0x0,0x7f800000,0x0,0x3fc00000,0x0, + 0x3fc00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3fc0000,0x0,0x1fe0000,0x0, + 0xff0000,0x0,0xff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0x1f000000,0x0, + 0x1f000000,0x0,0x1f000000,0x0,0x1f006000,0xc0,0x1f01f000,0x1f0,0x1f0ff000,0x1fe,0x9f3ff000,0x1ff,0xfffff800,0x3ff,0xfffff800,0x3ff, + 0xffff8000,0x3f,0xfff80000,0x3,0x3f800000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfbe00000,0x0,0xfbf00000,0x1,0xf1f80000,0x3, + 0xf0fc0000,0x3,0xe0fc0000,0x7,0xc07e0000,0xf,0xc07f0000,0x1f,0x803f8000,0x1f,0x801f0000,0x1f,0x1e0000,0xf,0x80000,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffc0000,0x0,0x1ffc0000,0x0,0x1ffc0000,0x0,0xffc0000,0x0, + 0xffe0000,0x0,0x7fe0000,0x0,0x7fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0,0x1ff0000,0x0,0x1ff0000,0x0,0xff0000,0x0, + 0xff8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0xfe000,0x0,0xfe000,0x0,0x7e000,0x0,0x7e000,0x0,0x3f000,0x0,0x3f000,0x0,0x1f000,0x0,0x1f000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff8000,0x3f,0xffff8000,0x3f, + 0xffff8000,0x3f,0xffff8000,0x3f,0xffff8000,0x3f,0xffff8000,0x3f,0xffff8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f00,0x0,0x7f80,0x0,0x3f80,0x0,0x3fc0,0x0,0x1fe0,0x0,0xfe0, + 0x0,0xff0,0x0,0x7f0,0x0,0x7f8,0x0,0x3f8,0x0,0x3fc,0x0,0x1fc,0x0,0x1fe,0x0,0xfe, + 0x0,0xff,0x80000000,0x7f,0x80000000,0x3f,0xc0000000,0x3f,0xc0000000,0x1f,0xe0000000,0x1f,0xe0000000,0xf,0xf0000000,0xf, + 0xf0000000,0x7,0xf8000000,0x7,0xf8000000,0x3,0xfc000000,0x3,0xfe000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x7f000000,0x0, + 0x7f800000,0x0,0x3f800000,0x0,0x3fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f80000,0x0, + 0x7f80000,0x0,0x3fc0000,0x0,0x1fc0000,0x0,0x1fe0000,0x0,0xfe0000,0x0,0xff0000,0x0,0x7f0000,0x0,0x7f8000,0x0, + 0x3f8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0x1fe000,0x0,0xff000,0x0,0x7f000,0x0,0x7f800,0x0,0x3f800,0x0, + 0x3fc00,0x0,0x1fc00,0x0,0x1fe00,0x0,0xfe00,0x0,0xff00,0x0,0x7f80,0x0,0x7f80,0x0,0x3fc0,0x0, + 0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x1, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0x803ff800,0x3ff,0xffc00,0x7fe,0x7fc00,0x7fc, + 0x3fe00,0xff8,0x1fe00,0xff0,0xff00,0xfe0,0xff00,0x1fe0,0x7f00,0x1fe0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x3f80,0x3f80,0x3fc0,0x3f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fe03fc0,0x7f80,0x7fe03fc0,0x7f80, + 0x7fe03fc0,0x7f80,0x7fe03fc0,0x7f80,0x7fe01fc0,0x7f80,0x7fe01fc0,0x7f80,0x7fe01fc0,0x7f80,0x7fe03fc0,0x7f80,0x7fe03fc0,0x7f80,0x7fe03fc0,0x7f80, + 0x7fe03fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3f80,0x3f80,0x3f80,0x3f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f00,0x1fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1fe00,0xff0,0x1fe00,0xff0,0x3fc00,0x7f8, + 0x7fc00,0x7fc,0xff800,0x3ff,0xc07ff800,0x1ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x3f,0xffff0000,0x1f,0xfffc0000,0x7, + 0xffe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1, + 0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x1,0xff800000,0x1,0xffc00000,0x1,0xfff00000,0x1,0xfffc0000,0x1,0xfdff0000,0x1, + 0xfdfff000,0x1,0xfcffff80,0x1,0xfc7fff80,0x1,0xfc1fff80,0x1,0xfc07ff80,0x1,0xfc01ff80,0x1,0xfc001f80,0x1,0xfc000000,0x1, + 0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1, + 0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1, + 0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1, + 0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1, + 0xfc000000,0x1,0xfc000000,0x1,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0x1f,0xffff8000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xfffff800,0x3ff,0x803ffc00,0x7ff,0xffc00,0xffc,0x3fe00,0xff8, + 0x3fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f00,0x1fe0,0x7f80,0x1fc0,0x7800,0x1fc0,0x0,0x1fc0, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0xff0,0x0,0xff0,0x0,0xff8,0x0,0x7fc,0x0,0x3fc, + 0x0,0x3fe,0x0,0x1ff,0x80000000,0xff,0xc0000000,0x7f,0xf0000000,0x3f,0xf8000000,0x1f,0xfc000000,0xf,0xfe000000,0x7, + 0xff000000,0x3,0xff800000,0x1,0xffe00000,0x0,0x3ff00000,0x0,0x1ff80000,0x0,0xffc0000,0x0,0x7fe0000,0x0,0x1ff0000,0x0, + 0xff8000,0x0,0x7fc000,0x0,0x3fe000,0x0,0x1ff000,0x0,0xff800,0x0,0x7fc00,0x0,0x3fc00,0x0,0x1fe00,0x0, + 0x1ff00,0x0,0xff00,0x0,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0x1f,0xffff8000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xfffff800,0x3ff,0x803ffc00,0x7ff,0x7fc00,0xffc,0x3fe00,0xff8, + 0x1fe00,0x1ff0,0xff00,0x1ff0,0xff00,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x6000,0x1fc0,0x0,0x1fe0, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0xff0,0x0,0xff0,0x0,0x7f8,0x0,0x7fc,0x0,0x3ff,0xe0000000,0x1ff, + 0xfff00000,0x7f,0xfff00000,0x3f,0xfff00000,0x7,0xfff00000,0x3,0xfff00000,0x3f,0xfff00000,0xff,0xfff00000,0x3ff,0x80000000,0x7ff, + 0x0,0xffe,0x0,0x1ff8,0x0,0x1ff0,0x0,0x3fe0,0x0,0x3fc0,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80, + 0x2000,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0x1ff00,0x3fe0, + 0x3ff00,0x1ff0,0xffe00,0x1ffc,0x803ffc00,0xfff,0xfffffc00,0x7ff,0xfffff800,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0x80000000,0xff,0xc0000000,0xff,0xc0000000,0xff,0xe0000000,0xff,0xf0000000,0xff,0xf8000000,0xff,0xf8000000,0xff,0xfc000000,0xff, + 0xfe000000,0xfe,0x7e000000,0xfe,0x3f000000,0xfe,0x3f800000,0xfe,0x1fc00000,0xfe,0xfc00000,0xfe,0xfe00000,0xfe,0x7f00000,0xfe, + 0x3f00000,0xfe,0x1f80000,0xfe,0x1fc0000,0xfe,0xfe0000,0xfe,0x7e0000,0xfe,0x7f0000,0xfe,0x3f8000,0xfe,0x1f8000,0xfe, + 0xfc000,0xfe,0xfe000,0xfe,0x7f000,0xfe,0x3f000,0xfe,0x1f800,0xfe,0x1fc00,0xfe,0xfc00,0xfe,0x7e00,0xfe, + 0x7f00,0xfe,0x3f80,0xfe,0x1f80,0xfe,0xfc0,0xfe,0xfe0,0xfe,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe, + 0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x0,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffc00,0xfff, + 0xfffffc00,0xfff,0xfffffc00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x1fe00,0x0,0x1fe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xffc0ff00,0x3,0xfff8ff00,0x1f,0xfffeff00,0x7f,0xffffff00,0xff, + 0xffffff00,0x1ff,0xffffff00,0x3ff,0xc03fff00,0x7ff,0x7ff00,0xffe,0x1ff00,0x1ff8,0xff00,0x1ff0,0x0,0x3fe0,0x0,0x3fe0, + 0x0,0x3fc0,0x0,0x7fc0,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80, + 0x0,0x7f80,0x0,0x7f80,0x3000,0x3fc0,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fe0,0xff80,0x1ff0,0xff80,0x1ff0, + 0x1ff00,0xffc,0x7ff00,0x7fe,0xc01ffe00,0x7ff,0xfffffc00,0x3ff,0xfffff800,0x1ff,0xfffff000,0x7f,0xffffc000,0x3f,0xffff0000,0xf, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x7, + 0xfff80000,0x1f,0xfffc0000,0x7f,0xffff0000,0xff,0xffff8000,0x1ff,0xffffc000,0x3ff,0xffe000,0x7ff,0x3fe000,0x7fc,0x1ff000,0xff8, + 0xff800,0xff0,0x7f800,0x1fe0,0x3fc00,0x1fe0,0x3fc00,0x1c0,0x1fc00,0x0,0x1fe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xff00,0x0,0x7f00,0x0,0x7f00,0x0,0xfe007f00,0x0,0xffc07f00,0xf,0xfff07f80,0x3f,0xfffc7f80,0xff,0xfffe7f80,0x1ff, + 0xffff7f80,0x3ff,0xc0ffff80,0x7ff,0x1fbf80,0xffe,0xfff80,0xff8,0x3ff80,0x1ff0,0x1ff80,0x1fe0,0x1ff80,0x3fe0,0xff80,0x3fc0, + 0xff80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f00,0x7f80,0x7f00,0x7f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xfe00,0x3f80,0x1fe00,0x3fc0,0x1fe00,0x3fc0,0x3fc00,0x3fe0,0x3fc00,0x1fe0,0x7f800,0x1ff0, + 0xff800,0xff8,0x3ff000,0xffc,0x80ffe000,0x7ff,0xffffc000,0x3ff,0xffff8000,0x1ff,0xffff0000,0xff,0xfffe0000,0x3f,0xfff80000,0x1f, + 0xffc00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x0,0x1fc0,0x0,0xfe0, + 0x0,0xff0,0x0,0x7f0,0x0,0x3f8,0x0,0x3fc,0x0,0x1fc,0x0,0xfe,0x0,0xff,0x0,0x7f, + 0x80000000,0x7f,0xc0000000,0x3f,0xc0000000,0x1f,0xe0000000,0x1f,0xe0000000,0xf,0xf0000000,0xf,0xf0000000,0x7,0xf8000000,0x7, + 0xf8000000,0x3,0xfc000000,0x3,0xfc000000,0x1,0xfe000000,0x1,0xfe000000,0x0,0xff000000,0x0,0xff000000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x3f800000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x7f80000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xffff0000,0x1f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0xffc00,0x7fe,0x3fe00,0x7fc,0x1fe00,0xff8, + 0x1ff00,0xff0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f00,0x1fe0,0x7f00,0x1fe0,0x7f00,0x1fe0,0x7f00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xfe00,0xff0,0x1fe00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xfbfff000,0x1ff, + 0xffffc000,0x7f,0xffff8000,0x1f,0xfffc0000,0x7,0xffff8000,0x3f,0xffffe000,0xff,0xc07ff800,0x3ff,0xffc00,0x7fe,0x3fe00,0xff8, + 0x1fe00,0x1ff0,0xff00,0x1fe0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff00,0x1fe0, + 0x1ff00,0x1ff0,0x3fe00,0xff8,0xffe00,0xffe,0xf1fffc00,0x7ff,0xfffff800,0x3ff,0xfffff000,0xff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x1, + 0xfffe0000,0xf,0xffff8000,0x1f,0xffffe000,0x7f,0xfffff000,0xff,0xfffff800,0xff,0xc03ffc00,0x1ff,0xffc00,0x3ff,0x3fe00,0x7fe, + 0x1fe00,0x7fc,0x1ff00,0xff8,0xff00,0xff0,0x7f80,0xff0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x3f80,0x1fc0, + 0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fe0,0xff00,0x3fe0,0x1ff00,0x7ff0,0x1ff00,0x3ff8,0x3fe00,0x3ffc,0x7fe00,0x3ffe,0x801ffc00,0x3fbf,0xfffff800,0x3f9f, + 0xfffff000,0x3f9f,0xffffe000,0x3f87,0xffffc000,0x3f83,0xffff0000,0x3fc0,0x3ff80000,0x3fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0, + 0x0,0x1fe0,0x0,0xfe0,0x0,0xfe0,0x0,0xff0,0x7c00,0x7f0,0xff00,0x7f8,0xff00,0x3fc,0x1fe00,0x3fe, + 0x3fe00,0x1ff,0x8007fc00,0x1ff,0xe01ffc00,0xff,0xfffff800,0x7f,0xfffff000,0x3f,0xffffe000,0x1f,0xffffc000,0x7,0xffff0000,0x3, + 0x7ffc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x1,0xffc00000,0x1,0xffc00000,0x1,0xffc00000,0x0, + 0xffe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x3fe00000,0x0,0x3ff00000,0x0,0x1ff00000,0x0,0x1ff00000,0x0,0xff00000,0x0, + 0xff80000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x3fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0xfe0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x1f0000,0x0,0x1f8000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc000,0x0,0xf000, + 0x0,0xfe00,0x0,0xff80,0x0,0xffe0,0x0,0xfffc,0x0,0x7fff,0xc0000000,0x1fff,0xf8000000,0x7ff,0xfe000000,0xff, + 0xffc00000,0x3f,0xfff00000,0xf,0xfffc0000,0x1,0x7fff8000,0x0,0x1fffe000,0x0,0x3fff800,0x0,0xffff00,0x0,0x3fffc0,0x0, + 0x7ffe0,0x0,0x1ffe0,0x0,0x7fe0,0x0,0xfe0,0x0,0xfe0,0x0,0x7fe0,0x0,0x1ffe0,0x0,0x7ffe0,0x0, + 0x3fffc0,0x0,0xffff00,0x0,0x3fff800,0x0,0x1fffe000,0x0,0x7fff8000,0x0,0xfffc0000,0x1,0xfff00000,0xf,0xff800000,0x3f, + 0xfe000000,0x1ff,0xf8000000,0x7ff,0xc0000000,0x1fff,0x0,0xffff,0x0,0xfffc,0x0,0xffe0,0x0,0xff80,0x0,0xfc00, + 0x0,0xf000,0x0,0xc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x1e0,0x0, + 0x7e0,0x0,0x3fe0,0x0,0xffe0,0x0,0x7ffe0,0x0,0x1fffe0,0x0,0x7fff00,0x0,0x3fffc00,0x0,0xffff000,0x0, + 0x7fff8000,0x0,0xfffe0000,0x1,0xfff00000,0x7,0xffc00000,0x3f,0xff000000,0xff,0xf8000000,0x3ff,0xe0000000,0x1fff,0x80000000,0x7fff, + 0x0,0xfffc,0x0,0xfff0,0x0,0xffc0,0x0,0xfe00,0x0,0xff00,0x0,0xffc0,0x0,0xfff0,0x0,0xfffe, + 0x80000000,0x7fff,0xe0000000,0x1fff,0xfc000000,0x3ff,0xff000000,0xff,0xffc00000,0x3f,0xfff80000,0x7,0xfffe0000,0x1,0x3fff8000,0x0, + 0xffff000,0x0,0x3fffc00,0x0,0x7fff00,0x0,0x1fffe0,0x0,0x3ffe0,0x0,0xffe0,0x0,0x3fe0,0x0,0x7e0,0x0, + 0x1e0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc0000,0x3, + 0xffff0000,0x1f,0xffffe000,0x7f,0xfffff000,0xff,0xfffff800,0x1ff,0xfffffc00,0x7ff,0x801ffe00,0x7ff,0x7ff00,0xffe,0x1ff80,0x1ff8, + 0xff80,0x1ff0,0x7fc0,0x1fe0,0x3fc0,0x3fe0,0x3fc0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0xfe0,0x3fc0, + 0x0,0x3fc0,0x0,0x3fc0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1ff0,0x0,0xff8,0x0,0x7fc,0x0,0x7fe, + 0x0,0x3ff,0x80000000,0x1ff,0xc0000000,0xff,0xf0000000,0x3f,0xf8000000,0x1f,0xfc000000,0xf,0xfe000000,0x3,0xff000000,0x1, + 0xff800000,0x0,0x7fc00000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x7,0xfff00000,0x1f,0xfffc0000,0x7f,0xfffe0000,0x1ff,0xffff8000,0x3ff,0xffc000,0x7fc, + 0x1fe000,0xff0,0xff000,0xfe0,0x3f800,0x1fc0,0x1f800,0x3f80,0xfc00,0x3f00,0xfe00,0x7e00,0x7e00,0x7e00,0x3f00,0xfc00, + 0x3f00,0xfc00,0x1f80,0xf800,0x7f001f80,0x1f800,0xffc00fc0,0x1f3e0,0xffe00fc0,0x1f3e1,0xfff007c0,0x3f3e3,0xe3f807e0,0x3e1f7,0x80fc03e0,0x3e1f7, + 0x7e03e0,0x3e1f7,0x7e03f0,0x3e1ff,0x3f03f0,0x3e1fe,0x1f01f0,0x7e0fe,0x1f81f0,0x7e0fe,0xf81f8,0x7c0fe,0xfc1f8,0x7c0fe,0xfc1f8,0x7c0fe, + 0xfc0f8,0x7c07e,0x7c0f8,0x7c07e,0x7e0f8,0x7c07e,0x7e0f8,0x7c07e,0x7e0f8,0x7c07e,0x3e0f8,0x7c03e,0x3e0fc,0x7e03e,0x3f0fc,0x3e03f, + 0x3f0fc,0x3e03f,0x3f0fc,0x3e03f,0x3f0fc,0x3e01f,0x3f0fc,0x3e01f,0x8003f0fc,0x3e01f,0x8003f0fc,0x3e01f,0x8003f0fc,0x1f01f,0xc003f0f8,0x1f01f, + 0xc003e0f8,0x1f00f,0xe003e0f8,0xf00f,0xe007e0f8,0xf80f,0xf007e0f8,0xf80f,0x7007e1f8,0x7c0f,0x780fc1f8,0x7c0f,0x3c0fc1f0,0x3e1f,0x3fbf81f0,0x3f9f, + 0x1fff83f0,0x1fff,0xfff03f0,0xffe,0x7fe03e0,0x7fc,0x1f807e0,0x1f8,0x7e0,0x0,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0, + 0x1f80,0x0,0x3f00,0x200,0x7f00,0x700,0xfe00,0xfc0,0x1fc00,0x1fe0,0x3fc00,0x7f8,0x1ff800,0x3ff,0xfffff000,0x1ff, + 0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7,0xfff80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffff80,0x0, + 0xffffff80,0x7,0xffffff80,0x3f,0xffffff80,0xff,0xffffff80,0x1ff,0xffffff80,0x7ff,0xffffff80,0x7ff,0x80007f80,0xfff,0x7f80,0x1ffc, + 0x7f80,0x1ff8,0x7f80,0x1ff0,0x7f80,0x1fe0,0x7f80,0x3fe0,0x7f80,0x3fe0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0xff0,0x7f80,0xff8,0x7f80,0x7fc,0x7f80,0x3ff,0xffffff80,0x1ff, + 0xffffff80,0xff,0xffffff80,0x1f,0xffffff80,0x7,0xffffff80,0x7f,0xffffff80,0x3ff,0xffffff80,0xfff,0x7f80,0x1ffe,0x7f80,0x3ff0, + 0x7f80,0x7fe0,0x7f80,0x7f80,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0x1fe00, + 0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0xff80,0x7f80,0xff80,0x7f80,0xffe0, + 0x7f80,0x7ff0,0x7f80,0x3ffe,0xffffff80,0x1fff,0xffffff80,0xfff,0xffffff80,0x7ff,0xffffff80,0x1ff,0xffffff80,0x7f,0xffffff80,0xf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x7, + 0xfffc0000,0x1f,0xffff0000,0x7f,0xffffc000,0x1ff,0xffffe000,0x3ff,0xfffff000,0x7ff,0x80fff800,0xfff,0x3ffc00,0xffc,0xffc00,0x1ff8, + 0x7fe00,0x3ff0,0x3fe00,0x3fe0,0x1ff00,0x7fc0,0x1ff00,0x7f80,0xff00,0xff80,0xff80,0x3f00,0xff80,0x700,0x7f80,0x0, + 0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fe0,0x0, + 0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7f80,0xc00, + 0x7f80,0x3e00,0xff80,0x1fe00,0xff00,0xff00,0x1ff00,0xff00,0x1ff00,0xff80,0x3fe00,0x7fc0,0x7fe00,0x3fc0,0x7fc00,0x3fe0, + 0x1ffc00,0x1ff8,0x3ff800,0xffc,0x83fff000,0xfff,0xffffe000,0x7ff,0xffffc000,0x3ff,0xffff8000,0xff,0xfffe0000,0x7f,0xfff80000,0x1f, + 0xffc00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff80,0x0, + 0x3fffff80,0x0,0xffffff80,0x3,0xffffff80,0xf,0xffffff80,0x3f,0xffffff80,0x7f,0xffffff80,0xff,0xfc007f80,0x1ff,0xc0007f80,0x3ff, + 0x7f80,0x7ff,0x7f80,0xffe,0x7f80,0xff8,0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x3fe0,0x7f80,0x3fc0,0x7f80,0x7fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x7fc0, + 0x7f80,0x3fc0,0x7f80,0x3fe0,0x7f80,0x1fe0,0x7f80,0x1ff0,0x7f80,0x1ff8,0x7f80,0xffc,0x7f80,0x7fe,0x7f80,0x7ff, + 0xc0007f80,0x3ff,0xf8007f80,0x1ff,0xffffff80,0xff,0xffffff80,0x7f,0xffffff80,0x3f,0xffffff80,0xf,0xffffff80,0x3,0x7fffff80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x3fff, + 0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0xfffffe00,0x1fff,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x7, + 0xfffe0000,0x1f,0xffff0000,0x7f,0xffffc000,0xff,0xffffe000,0x3ff,0xfffff000,0x7ff,0x80fff800,0x7ff,0x1ffc00,0xffc,0xffc00,0x1ff8, + 0x7fe00,0x1ff0,0x3fe00,0x3fe0,0x1ff00,0x3fc0,0x1ff00,0x7fc0,0xff80,0x7f80,0xff80,0xf80,0x7f80,0x100,0x7f80,0x0, + 0x7fc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fe0,0x0, + 0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0xf8003fe0,0x7fff,0xf8003fe0,0x7fff,0xf8003fe0,0x7fff,0xf8003fe0,0x7fff,0xf8003fe0,0x7fff, + 0xf8003fc0,0x7fff,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7f80,0x7fc0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0xff80,0x7f80,0xff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x3fe00,0x7f80,0x7fe00,0x7f80,0x7fc00,0x7f80, + 0x1ffc00,0x7fc0,0x3ff800,0x7ff8,0x83fff000,0x7fff,0xffffe000,0x3fff,0xffffc000,0xfff,0xffff8000,0x7ff,0xfffe0000,0xff,0xfff80000,0x3f, + 0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0xfff, + 0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x3ff, + 0xffe00000,0x3ff,0xffe00000,0x3ff,0xffe00000,0x3ff,0xffe00000,0x3ff,0xffe00000,0x3ff,0xffe00000,0x3ff,0x0,0x3fc,0x0,0x3fc, + 0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc, + 0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc, + 0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc, + 0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc,0x0,0x3fc, + 0x8000,0x3fc,0xfe00,0x3fc,0xff00,0x3fc,0x1ff00,0x3fc,0x1fe00,0x3fe,0x1fe00,0x1fe,0x3fe00,0x1fe,0x7fc00,0x1ff, + 0x800ffc00,0xff,0xc01ff800,0xff,0xf07ff800,0x7f,0xfffff000,0x3f,0xffffe000,0x3f,0xffffc000,0x1f,0xffff8000,0x7,0xfffe0000,0x3, + 0x7ff80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x1ff00, + 0x7f80,0xff80,0x7f80,0x7fc0,0x7f80,0x3fe0,0x7f80,0x3ff0,0x7f80,0x1ff8,0x7f80,0xffc,0x7f80,0x7fc,0x7f80,0x3fe, + 0x7f80,0x1ff,0x80007f80,0xff,0xc0007f80,0x7f,0xe0007f80,0x7f,0xe0007f80,0x3f,0xf0007f80,0x1f,0xf8007f80,0xf,0xfc007f80,0x7, + 0xfe007f80,0x3,0xff007f80,0x1,0xff807f80,0x0,0x7f807f80,0x0,0x7fc07f80,0x0,0x3fe07f80,0x0,0x1ff07f80,0x0,0xff87f80,0x0, + 0x1ffc7f80,0x0,0x1ffe7f80,0x0,0x3ffe7f80,0x0,0x7fff7f80,0x0,0xffffff80,0x0,0xffffff80,0x0,0xff9fff80,0x1,0xff0fff80,0x3, + 0xfe07ff80,0x3,0xfe03ff80,0x7,0xfc03ff80,0xf,0xf801ff80,0x1f,0xf000ff80,0x1f,0xf0007f80,0x3f,0xe0007f80,0x7f,0xc0007f80,0xff, + 0x80007f80,0xff,0x7f80,0x1ff,0x7f80,0x3ff,0x7f80,0x7fe,0x7f80,0x7fc,0x7f80,0xff8,0x7f80,0x1ff8,0x7f80,0x3ff0, + 0x7f80,0x3fe0,0x7f80,0x7fc0,0x7f80,0xffc0,0x7f80,0x1ff80,0x7f80,0x1ff00,0x7f80,0x3fe00,0x7f80,0x7fe00,0x7f80,0xffc00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0xfffff800,0x7fff,0xfffff800,0x7fff,0xfffff800,0x7fff,0xfffff800,0x7fff,0xfffff800,0x7fff,0xfffff800,0x7fff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0,0x7fe0, + 0xffc0,0x7fe0,0x1ffc0,0x7fe0,0x1ffc0,0x7ff0,0x3ffc0,0x7ff0,0x3ffc0,0x7ff0,0x3ffc0,0x7ff8,0x7ffc0,0x7ff8,0x7ffc0,0x7ffc, + 0x7ffc0,0x7ffc,0xfffc0,0x7ffc,0xfdfc0,0x7f7e,0x1fdfc0,0x7f7e,0x1fdfc0,0x7f7e,0x1f9fc0,0x7f3f,0x3f9fc0,0x7f3f,0x803f9fc0,0x7f3f, + 0x803f1fc0,0x7f1f,0x807f1fc0,0x7f1f,0xc07f1fc0,0x7f1f,0xc0fe1fc0,0x7f0f,0xc0fe1fc0,0x7f0f,0xe0fe1fc0,0x7f0f,0xe1fc1fc0,0x7f07,0xe1fc1fc0,0x7f07, + 0xf1f81fc0,0x7f03,0xf3f81fc0,0x7f03,0xf3f81fc0,0x7f03,0xfbf01fc0,0x7f01,0xfbf01fc0,0x7f01,0xfff01fc0,0x7f01,0xffe01fc0,0x7f00,0xffe01fc0,0x7f00, + 0x7fc01fc0,0x7f00,0x7fc01fc0,0x7f00,0x7fc01fc0,0x7f00,0x3f801fc0,0x7f00,0x3f801fc0,0x7f00,0x3f001fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00, + 0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00, + 0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff80,0x3fc0, + 0x1ff80,0x3fc0,0x3ff80,0x3fc0,0x3ff80,0x3fc0,0x7ff80,0x3fc0,0x7ff80,0x3fc0,0xfff80,0x3fc0,0xfff80,0x3fc0,0x1fff80,0x3fc0, + 0x1fff80,0x3fc0,0x1fff80,0x3fc0,0x3fbf80,0x3fc0,0x3fbf80,0x3fc0,0x7f3f80,0x3fc0,0x7f3f80,0x3fc0,0xfe3f80,0x3fc0,0xfe3f80,0x3fc0, + 0x1fe3f80,0x3fc0,0x1fc3f80,0x3fc0,0x3fc7f80,0x3fc0,0x3f87f80,0x3fc0,0x7f87f80,0x3fc0,0x7f07f80,0x3fc0,0x7f07f80,0x3fc0,0xfe07f80,0x3fc0, + 0xfe07f80,0x3fc0,0x1fc07f80,0x3fc0,0x1fc07f80,0x3fc0,0x3f807f80,0x3fc0,0x3f807f80,0x3fc0,0x7f807f80,0x3fc0,0x7f007f80,0x3fc0,0xff007f80,0x3fc0, + 0xfe007f80,0x3fc0,0xfe007f80,0x3fc1,0xfc007f80,0x3fc1,0xfc007f80,0x3fc3,0xf8007f80,0x3fc3,0xf8007f80,0x3fc3,0xf0007f80,0x3fc7,0xf0007f80,0x3fc7, + 0xe0007f80,0x3fcf,0xe0007f80,0x3f8f,0xe0007f80,0x3f9f,0xc0007f80,0x3f9f,0xc0007f80,0x3fbf,0x80007f80,0x3fbf,0x80007f80,0x3fff,0x7f80,0x3fff, + 0x7f80,0x3fff,0x7f80,0x3ffe,0x7f80,0x3ffe,0x7f80,0x3ffc,0x7f80,0x3ffc,0x7f80,0x3ff8,0x7f80,0x3ff8,0x7f80,0x3ff8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffff80,0x0, + 0xffffff80,0x7,0xffffff80,0x3f,0xffffff80,0xff,0xffffff80,0x3ff,0xffffff80,0x7ff,0xffffff80,0xfff,0x7f80,0x1fff,0x7f80,0x1ffc, + 0x7f80,0x3ff0,0x7f80,0x7fe0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x7fc0, + 0x7f80,0x3fe0,0x7f80,0x1ff0,0x7f80,0x1ffc,0x7f80,0xfff,0xffffff80,0x7ff,0xffffff80,0x3ff,0xffffff80,0x1ff,0xffffff80,0xff, + 0xffffff80,0x3f,0xffffff80,0x7,0x7fffff80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3fe00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0xff000000,0x0,0xff000000,0x1,0xfe000000,0x1,0xfe000000,0x3,0xfe000000,0x3,0xfc000000,0x7,0xfc000000,0xf, + 0xf8000000,0x1f,0xf8000000,0x3f,0xf0000000,0x181ff,0xe0000000,0x1ffff,0xc0000000,0x1ffff,0x80000000,0x1ffff,0x0,0x1ffff,0x0,0x1fffc, + 0x0,0x3fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff80,0x0, + 0xffffff80,0x1f,0xffffff80,0x7f,0xffffff80,0x1ff,0xffffff80,0x7ff,0xffffff80,0xfff,0xffffff80,0x1fff,0x7f80,0x1ffe,0x7f80,0x3ff8, + 0x7f80,0x7fe0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0xff80,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fe0,0x7f80,0x3ff0, + 0x7f80,0x1ffc,0x80007f80,0xfff,0xffffff80,0x7ff,0xffffff80,0x3ff,0xffffff80,0x1ff,0xffffff80,0x7f,0xffffff80,0xf,0xffffff80,0x3, + 0xfc007f80,0x3,0xfc007f80,0x7,0xf8007f80,0xf,0xf0007f80,0xf,0xf0007f80,0x1f,0xe0007f80,0x3f,0xc0007f80,0x3f,0xc0007f80,0x7f, + 0x80007f80,0xff,0x80007f80,0xff,0x7f80,0x1ff,0x7f80,0x3fe,0x7f80,0x3fe,0x7f80,0x7fc,0x7f80,0xff8,0x7f80,0xff8, + 0x7f80,0x1ff0,0x7f80,0x3fe0,0x7f80,0x3fe0,0x7f80,0x7fc0,0x7f80,0xffc0,0x7f80,0xff80,0x7f80,0x1ff00,0x7f80,0x3ff00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc0000,0x7, + 0xffff8000,0x3f,0xffffe000,0xff,0xfffff000,0x1ff,0xfffff800,0x3ff,0xfffffc00,0x7ff,0xffe00,0xfff,0x3ff00,0x1ffc,0x1ff00,0x1ff0, + 0xff00,0x3fe0,0x7f80,0x3fe0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7f80,0x1f80,0x7f80,0x80,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0xff80,0x0,0xff80,0x0,0x1ff00,0x0,0x7ff00,0x0,0x1ffe00,0x0,0x1fffe00,0x0,0x1ffffc00,0x0, + 0xfffff000,0x0,0xffffe000,0x7,0xffff8000,0x3f,0xfffe0000,0xff,0xfff00000,0x3ff,0xff000000,0x7ff,0xf0000000,0xfff,0x80000000,0x1fff, + 0x0,0x3ffc,0x0,0x7ff0,0x0,0x7fe0,0x0,0x7fc0,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x0,0xff00, + 0x0,0xff00,0xf80,0xff00,0xff0,0xff00,0x1ff0,0xff00,0x1fe0,0xff00,0x3fe0,0xff80,0x3fe0,0x7f80,0x7fc0,0x7fc0, + 0x1ffc0,0x3fe0,0x3ff80,0x3ff8,0x1fff00,0x1fff,0xfffffe00,0xfff,0xfffffc00,0x7ff,0xfffff800,0x3ff,0xffffe000,0xff,0xffff8000,0x3f, + 0xfffc0000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff0,0x1ffff, + 0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x1fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x1ff00,0xff8, + 0x3fe00,0xffc,0xffe00,0xffe,0xc07ffc00,0x7ff,0xfffff800,0x3ff,0xfffff800,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe,0xff000, + 0x3fe,0xff800,0x3fc,0x7f800,0x7fc,0x7fc00,0x7fc,0x7fc00,0x7f8,0x3fc00,0xff8,0x3fe00,0xff0,0x1fe00,0xff0,0x1fe00, + 0x1ff0,0x1ff00,0x1fe0,0xff00,0x1fe0,0xff00,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x1fe00,0xff0,0x1fe00,0xff0,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x3fc00,0x7f8,0x7f800,0x3fc,0x7f800,0x3fc,0x7f800,0x3fc,0xff000,0x1fe,0xff000,0x1fe,0xfe000,0xfe,0x1fe000,0xff, + 0x1fe000,0xff,0x3fc000,0x7f,0x803fc000,0x7f,0x803fc000,0x7f,0xc07f8000,0x3f,0xc07f8000,0x3f,0xc07f0000,0x1f,0xe0ff0000,0x1f, + 0xe0ff0000,0x1f,0xe0fe0000,0xf,0xe1fe0000,0xf,0xf1fe0000,0xf,0xf1fc0000,0x7,0xf1fc0000,0x7,0xfbf80000,0x3,0xfbf80000,0x3, + 0xfbf80000,0x3,0xfff00000,0x1,0xfff00000,0x1,0xfff00000,0x1,0xffe00000,0x0,0xffe00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe,0xff000, + 0x1fe,0xff000,0x1fe,0xff000,0x1fe,0xff000,0x1fe,0xff000,0x1fe,0xff000,0x1fe,0xff000,0x1fc,0x7f000,0x3fc,0x7f800, + 0x3fc,0x7f800,0x3fc,0x7f800,0x3fc,0x7f800,0x3fc,0x7f800,0x3f8,0x3f800,0x3f8,0x3f800,0x3f8,0x3f800,0x7f8,0x3fc00, + 0x7f8,0x3fc00,0x3f8007f8,0x3fc00,0x7fc007f8,0x3fc00,0x7fc007f0,0x1fc00,0x7fc007f0,0x1fc00,0x7fc007f0,0x1fc00,0xffe00ff0,0x1fc00,0xffe00ff0,0x1fe00, + 0xffe00ff0,0x1fe00,0xfbe00fe0,0xfe01,0xfbf00fe0,0xfe01,0xfbf00fe0,0xfe01,0xf3f00fe0,0xfe01,0xf1f80fe0,0xfe03,0xf1f81fe0,0xfe03,0xf1f81fc0,0x7f03, + 0xf1f81fc0,0x7f03,0xe0fc1fc0,0x7f07,0xe0fc1fc0,0x7f07,0xe0fc1fc0,0x7f07,0xe0fc1fc0,0x7f0f,0xc07e1fc0,0x7f0f,0xc07e3f80,0x3f0f,0xc07e3f80,0x3f0f, + 0xc07e3f80,0x3f9f,0x803f3f80,0x3f9f,0x803f3f80,0x3f9f,0x803f3f80,0x3f9f,0x3f3f00,0x1f9f,0x1fbf00,0x1fbf,0x1fbf00,0x1fbf,0x1fbf00,0x1fbf, + 0xfbf00,0x1fbe,0xfff00,0x1ffe,0xfff00,0x1ffe,0xffe00,0xffe,0x7fe00,0xffc,0x7fe00,0xffc,0x7fe00,0xffc,0x7fe00,0xff8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x1fe00, + 0x1fe0,0x1ff00,0x3fe0,0xff80,0x3fc0,0x7f80,0x7f80,0x3fc0,0xff80,0x3fe0,0xff00,0x1fe0,0x1fe00,0xff0,0x3fe00,0xff8, + 0x3fc00,0x7f8,0x7f800,0x3fc,0xff800,0x3fe,0xff000,0x1fe,0x1fe000,0xff,0x803fe000,0xff,0x803fc000,0x7f,0xc07f8000,0x3f, + 0xe0ff8000,0x3f,0xe0ff0000,0x1f,0xf1fe0000,0xf,0xf1fe0000,0xf,0xfbfc0000,0x7,0xfff80000,0x3,0xfff80000,0x3,0xfff00000,0x1, + 0xffe00000,0x0,0xffe00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff00000,0x1,0xfff80000,0x3, + 0xfbfc0000,0x7,0xfbfc0000,0x7,0xf1fe0000,0xf,0xe0ff0000,0x1f,0xe0ff0000,0x1f,0xc07f8000,0x3f,0x803fc000,0x7f,0x803fc000,0xff, + 0x1fe000,0xff,0xff000,0x1fe,0xff800,0x3fe,0x7f800,0x3fc,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0, + 0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x3fe0,0xff80,0x1fe0,0xff00,0x1ff0,0x1ff00,0xff8,0x3fe00,0x7f8,0x3fc00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc,0x7fc00, + 0x7f8,0x3fc00,0xff8,0x3fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x3fe0,0xff80,0x3fc0,0x7f80,0x7f80,0x3fc0,0xff80,0x3fe0, + 0xff00,0x1fe0,0x1ff00,0x1ff0,0x1fe00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7fc,0x7f800,0x3fc,0xff000,0x1fe,0x1ff000,0x1ff, + 0x1fe000,0xff,0x803fe000,0xff,0x803fc000,0x7f,0xc07f8000,0x3f,0xe0ff8000,0x3f,0xe0ff0000,0x1f,0xf1fe0000,0xf,0xf1fe0000,0xf, + 0xfbfc0000,0x7,0xfff80000,0x3,0xfff80000,0x3,0xfff00000,0x1,0xfff00000,0x1,0xffe00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0x0,0x3fc0,0x0,0x3fe0, + 0x0,0x1ff0,0x0,0xff8,0x0,0x7f8,0x0,0x7fc,0x0,0x3fe,0x0,0x1ff,0x0,0xff,0x80000000,0x7f, + 0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf0000000,0xf,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x1, + 0xff000000,0x0,0xff800000,0x0,0x7fc00000,0x0,0x3fe00000,0x0,0x1fe00000,0x0,0x1ff00000,0x0,0xff80000,0x0,0x7fc0000,0x0, + 0x3fc0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0,0xff8000,0x0,0x7fc000,0x0,0x3fc000,0x0,0x3fe000,0x0,0x1ff000,0x0, + 0xff800,0x0,0x7f800,0x0,0x7fc00,0x0,0x3fe00,0x0,0x1ff00,0x0,0xff80,0x0,0x7f80,0x0,0x7fc0,0x0, + 0x3fe0,0x0,0x1ff0,0x0,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff,0xfffffff0,0x1ffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffc0000,0x1ff,0xfffc0000,0x1ff,0xfffc0000,0x1ff,0xfffc0000,0x1ff,0xfffc0000,0x1ff,0xfffc0000,0x1ff, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0xfffc0000,0x1ff,0xfffc0000,0x1ff,0xfffc0000,0x1ff, + 0xfffc0000,0x1ff,0xfffc0000,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1fc0,0x0,0x3fc0,0x0,0x3f80,0x0,0x7f80,0x0,0xff00,0x0,0xfe00,0x0, + 0x1fe00,0x0,0x1fc00,0x0,0x3fc00,0x0,0x3f800,0x0,0x7f800,0x0,0x7f000,0x0,0xff000,0x0,0xfe000,0x0, + 0x1fe000,0x0,0x3fc000,0x0,0x3f8000,0x0,0x7f8000,0x0,0x7f0000,0x0,0xff0000,0x0,0xfe0000,0x0,0x1fe0000,0x0, + 0x1fc0000,0x0,0x3fc0000,0x0,0x3f80000,0x0,0x7f80000,0x0,0xff00000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x1fc00000,0x0, + 0x3fc00000,0x0,0x3f800000,0x0,0x7f800000,0x0,0x7f000000,0x0,0xff000000,0x0,0xfe000000,0x0,0xfe000000,0x1,0xfc000000,0x3, + 0xfc000000,0x3,0xf8000000,0x7,0xf0000000,0x7,0xf0000000,0xf,0xe0000000,0xf,0xe0000000,0x1f,0xc0000000,0x1f,0xc0000000,0x3f, + 0x80000000,0x3f,0x80000000,0x7f,0x0,0xff,0x0,0xff,0x0,0x1fe,0x0,0x1fc,0x0,0x3fc,0x0,0x3f8, + 0x0,0x7f8,0x0,0x7f0,0x0,0xff0,0x0,0xfe0,0x0,0x1fe0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80, + 0x0,0x7f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffff000,0x7,0xfffff000,0x7,0xfffff000,0x7,0xfffff000,0x7,0xfffff000,0x7,0xfffff000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xfffff000,0x7,0xfffff000,0x7,0xfffff000,0x7, + 0xfffff000,0x7,0xfffff000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xfff00000,0x0,0xfbf00000,0x1,0xfbf00000,0x1,0xf9f80000,0x3,0xf1f80000,0x3, + 0xf0fc0000,0x7,0xe0fc0000,0x7,0xe0fc0000,0x7,0xc07e0000,0xf,0xc07e0000,0xf,0xc03f0000,0x1f,0x803f0000,0x1f,0x803f8000,0x1f, + 0x1f8000,0x3f,0x1f8000,0x3f,0xfc000,0x7f,0xfc000,0x7e,0xfe000,0xfe,0x7e000,0xfc,0x7e000,0xfc,0x3f000,0x1fc, + 0x3f000,0x1f8,0x3f800,0x3f8,0x1f800,0x3f0,0x1fc00,0x3f0,0xfc00,0x7f0,0xfc00,0x7e0,0xfe00,0xfe0,0x7e00,0xfc0, + 0x7f00,0x1fc0,0x3f00,0x1f80,0x3f80,0x1f80,0x1f80,0x3f80,0x1f80,0x3f00,0x1fc0,0x7f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0xfffff,0xffffffff,0xfffff, + 0xffffffff,0xfffff,0xffffffff,0xfffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0xffc0000,0x0,0x1ff00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0, + 0x7f800000,0x0,0xfe000000,0x0,0xfc000000,0x1,0xf8000000,0x3,0xe0000000,0x7,0xc0000000,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xfe00ff00,0x7,0xffc0ff00,0x3f,0xfff0ff00,0x7f,0xfff8ff00,0x1ff,0xfffcff00,0x1ff,0xfffcff00,0x3ff, + 0x7eff00,0x7ff,0x1fff00,0xffc,0xfff00,0xff8,0x7ff00,0xff0,0x7ff00,0x1ff0,0x3ff00,0x1fe0,0x3ff00,0x1fe0,0x1ff00,0x3fc0, + 0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3fc0, + 0xff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0,0x7ff00,0xff0, + 0xfff00,0xff8,0x1fff00,0x7fc,0x3fff00,0x7fe,0xc1feff00,0x3ff,0xfffcff00,0x1ff,0xfff8ff00,0xff,0xfff0ff00,0x7f,0xffc0ff00,0x3f, + 0xff000000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x1,0xfffc0000,0xf,0xffff0000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x3ff800,0x7ff,0xffc00,0xffc,0x3fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0xff00,0x3fe0,0xff00,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0xc0,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0,0x3fe00,0x1ff0, + 0x3fc00,0xff8,0xffc00,0xffc,0x3ff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0, + 0x0,0x1fe0,0x0,0x1fe0,0xff80000,0x1fe0,0x7fff0000,0x1fe0,0xffffc000,0x1fe1,0xffffe000,0x1fe3,0xfffff000,0x1fe7,0xfffff800,0x1fef, + 0xc01ffc00,0x1fef,0x7fc00,0x1fff,0x3fe00,0x1ffe,0x1fe00,0x1ffc,0x1ff00,0x1ff8,0xff00,0x1ff8,0xff00,0x1ff8,0x7f80,0x1ff0, + 0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x3f80,0x1fe0,0x3f80,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0, + 0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3f80,0x1fe0,0x7f80,0x1fe0, + 0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff8,0xff00,0x1ff8,0xff00,0x1ffc,0x1ff00,0x1ffc, + 0x3fe00,0x1ffe,0x3fe00,0x1fff,0xc00ffc00,0x1fef,0xf87ffc00,0x1fef,0xfffff800,0x1fe7,0xfffff000,0x1fe3,0xffffe000,0x1fe1,0xffff8000,0x1fe0, + 0x1ffe0000,0x0,0x1c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffc0000,0xf,0xffff0000,0x1f,0xffffc000,0x7f,0xffffe000,0xff,0xfbfff000,0x1ff, + 0x3ff800,0x3ff,0xffc00,0x7fc,0x3fc00,0x7f8,0x3fe00,0xff0,0x1fe00,0xff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x1fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3f80,0x3f80,0x3fc0,0x3f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x3c0,0x1fe00,0x3fc0,0x3fe00,0x1fe0, + 0x7fc00,0x1ff0,0xffc00,0xff8,0x3ff800,0x7fe,0xe3fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f,0xfffc0000,0x1f, + 0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0x3fff,0xff000000,0x7fff,0xff800000,0x7fff,0xffe00000,0x7fff,0xffe00000,0x7fff,0xfff00000,0x7fff, + 0x7ff80000,0x6000,0xff80000,0x0,0x7fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0xffffffc0,0x3fff,0xffffffc0,0x3fff,0xffffffc0,0x3fff,0xffffffc0,0x3fff,0xffffffc0,0x3fff, + 0xffffffc0,0x3fff,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff80000,0x0,0x3fff0000,0x1fc0,0xffffc000,0x1fc0,0xffffe000,0x1fc3,0xfffff000,0x1fc7,0xfffff800,0x1fe7, + 0xc01ffc00,0x1fef,0x8007fc00,0x1fff,0x3fe00,0x1fff,0x1fe00,0x1ffe,0x1ff00,0x1ffc,0xff00,0x1ff8,0xff00,0x1ff8,0x7f80,0x1ff0, + 0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x3f80,0x1fe0, + 0x3f80,0x1fe0,0x3f80,0x1fe0,0x3f80,0x1fe0,0x3f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0, + 0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff0,0xff00,0x1ff8,0xff00,0x1ff8,0xff00,0x1ffc,0x1ff00,0x1ffc,0x3fe00,0x1fff, + 0x8007fe00,0x1fef,0xc00ffc00,0x1fef,0xfffffc00,0x1fe7,0xfffff800,0x1fe3,0xfffff000,0x1fe1,0xffffc000,0x1fe0,0x3fff8000,0x1fe0,0x7fc0000,0x1fe0, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0xfe0,0x0,0xfe0,0x3c000,0xff0,0x3fc00,0xff0, + 0x3fc00,0x7f8,0x7fc00,0x7f8,0xff800,0x3fe,0x1ff800,0x3ff,0xe1fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f, + 0xfffe0000,0xf,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xfe00ff00,0x7,0xffc0ff00,0x3f,0xffe0ff00,0xff,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x3ff, + 0xfeff00,0x7ff,0x3fff00,0x7fc,0xfff00,0xff8,0x7ff00,0xff0,0x7ff00,0xff0,0x3ff00,0x1fe0,0x1ff00,0x1fe0,0x1ff00,0x1fe0, + 0x1ff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0, + 0xfffff800,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0xf,0xfffff800,0xf,0xfffff800,0xf,0xfffff800,0xf,0xfffff800,0xf, + 0xfffff800,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf8000000,0x7,0xf8000000,0x7, + 0xfc000000,0x7,0xfe000000,0x3,0xff000000,0x3,0xffc001e0,0x1,0xffffffe0,0x0,0xffffffe0,0x0,0x7fffffe0,0x0,0x1fffffe0,0x0, + 0x7ffffe0,0x0,0x1fffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0, + 0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0, + 0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fc00,0x3fe0,0x3fc00,0x1fe0,0x3fc00,0x1ff0,0x3fc00,0xff8,0x3fc00,0x7fc, + 0x3fc00,0x3fe,0x3fc00,0x1ff,0x8003fc00,0xff,0xc003fc00,0x7f,0xe003fc00,0x3f,0xf003fc00,0x1f,0xf003fc00,0xf,0xf803fc00,0x7, + 0xfc03fc00,0x3,0xfe03fc00,0x1,0xff03fc00,0x0,0x7f83fc00,0x0,0x3fc3fc00,0x0,0x1fe3fc00,0x0,0x1ff3fc00,0x0,0x1ffbfc00,0x0, + 0x3ffffc00,0x0,0x7ffffc00,0x0,0xfffffc00,0x0,0xfffffc00,0x0,0xfe3ffc00,0x1,0xfe1ffc00,0x3,0xfc07fc00,0x7,0xf803fc00,0x7, + 0xf803fc00,0xf,0xf003fc00,0x1f,0xe003fc00,0x3f,0xc003fc00,0x3f,0xc003fc00,0x7f,0x8003fc00,0xff,0x3fc00,0x1ff,0x3fc00,0x1fe, + 0x3fc00,0x3fe,0x3fc00,0x7fc,0x3fc00,0xff8,0x3fc00,0xff0,0x3fc00,0x1ff0,0x3fc00,0x3fe0,0x3fc00,0x7fc0,0x3fc00,0x7fc0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe0000,0x3f8,0x3ff87e0,0xffe,0x3ffc7e0,0x1fff,0x87ffc7e0,0x3fff,0x8fffe7e0,0x3fff,0xcffff7e0,0x7fff, + 0xcfe0f7e0,0x7f83,0xefe077e0,0x7f81,0xffc03fe0,0xff00,0xffc03fe0,0xff00,0x7fc03fe0,0xff00,0x7f801fe0,0xfe00,0x7f801fe0,0xfe00,0x7f801fe0,0xfe00, + 0x3f801fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00, + 0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00, + 0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00, + 0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00,0x3f800fe0,0xfe00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe000000,0x7,0xff807f00,0x3f,0xffe07f00,0xff,0xfff07f00,0x1ff,0xfff87f00,0x3ff,0xfffcff00,0x7ff, + 0xfeff00,0x7ff,0x3fff00,0x7fc,0xfff00,0xff8,0x7ff00,0xff0,0x7ff00,0xff0,0x3ff00,0x1fe0,0x1ff00,0x1fe0,0x1ff00,0x1fe0, + 0x1ff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x0,0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfbfff000,0x3ff, + 0x1ff800,0x3ff,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0xff0,0x1fe00,0xff0, + 0x3fe00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xe0fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff000000,0x7,0xffc0ff00,0x3f,0xfff0ff00,0x7f,0xfff8ff00,0x1ff,0xfffcff00,0x3ff,0xfffcff00,0x3ff, + 0x7eff00,0x7ff,0x1fff00,0xffc,0xfff00,0xff8,0x7ff00,0x1ff0,0x7ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0,0x1ff00,0x3fc0, + 0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x7f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3fc0, + 0xff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0,0x7ff00,0xff0, + 0xfff00,0xff8,0x1fff00,0x7fc,0x3eff00,0x7fe,0xc1feff00,0x3ff,0xfffcff00,0x1ff,0xfff8ff00,0x1ff,0xfff0ff00,0x7f,0xffc0ff00,0x3f, + 0xff00ff00,0xf,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff80000,0x0,0x7fff0000,0x1fe0,0xffffc000,0x1fe0,0xffffe000,0x1fe3,0xfffff000,0x1fe7,0xfffff800,0x1fe7, + 0xc01ffc00,0x1fef,0x7fc00,0x1fff,0x3fe00,0x1ffe,0x1fe00,0x1ffc,0x1ff00,0x1ffc,0xff00,0x1ff8,0xff00,0x1ff8,0x7f80,0x1ff0, + 0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1fe0,0x3f80,0x1fe0,0x3f80,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0, + 0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3fc0,0x1fe0,0x3f80,0x1fe0,0x7f80,0x1fe0, + 0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x1ff0,0xff80,0x1ff8,0xff00,0x1ff8,0xff00,0x1ffc,0x1ff00,0x1ffc, + 0x3fe00,0x1ffe,0x7fe00,0x1fff,0xc00ffc00,0x1fef,0xf87ffc00,0x1fe7,0xfffff800,0x1fe7,0xfffff000,0x1fe3,0xffffe000,0x1fe1,0x7fff8000,0x1fe0, + 0x1ffe0000,0x1fe0,0x1c00000,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fe0, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x80000000,0xfff,0xf003f800,0x1fff,0xfc03f800,0x1fff,0xfe07f800,0x1fff,0xff07f000,0x1fff,0xff87f000,0x1fff, + 0xff87f000,0x1fff,0xffcff000,0x1000,0x1fcff000,0x0,0x7eff000,0x0,0x3eff000,0x0,0x1ffe000,0x0,0xffe000,0x0,0xffe000,0x0, + 0x7fe000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffc0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x1ff800,0x3fe,0x7f800,0x7f8,0x3fc00,0xff0,0x1fc00,0xfe0,0x1fc00,0xfe0,0x1fc00,0xe0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fc00,0x0,0x3fc00,0x0,0x7fc00,0x0,0x1ffc00,0x0,0xfff800,0x0,0x7fff800,0x0,0x7ffff000,0x0,0xffffe000,0x7, + 0xffff8000,0x1f,0xfffe0000,0x7f,0xfff80000,0x1ff,0xff800000,0x3ff,0xf8000000,0x7ff,0xc0000000,0xfff,0x0,0xffe,0x0,0x1ff8, + 0x0,0x1fe0,0x0,0x1fe0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x7c00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fe0, + 0xff00,0xfe0,0x1fe00,0xff0,0x7fe00,0x7fc,0xe07ffc00,0x7ff,0xfffff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0x7f,0xffff8000,0x1f, + 0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c0000,0x0, + 0x7c0000,0x0,0x7c0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0xfffffe00,0x3ff,0xfffffe00,0x3ff,0xfffffe00,0x3ff,0xfffffe00,0x3ff,0xfffffe00,0x3ff, + 0xfffffe00,0x3ff,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0x1ff0000,0x800,0xfff0000,0xfe0,0xfffe0000,0xfff,0xfffc0000,0xfff,0xfffc0000,0xfff,0xfff80000,0xfff,0xffe00000,0x3ff, + 0xff000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1ff0,0xff00,0x1ff0,0xfe00,0x1ff8,0x1fe00,0x1ff8,0x1fe00,0x1ffc, + 0x3fe00,0x1ffe,0x7fc00,0x1fdf,0xc00ffc00,0x1fcf,0xfffffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1,0x7fffc000,0x1fc0, + 0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x1fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x1fe0,0xff00,0x3fe0,0xff80, + 0x3fc0,0x7f80,0x7fc0,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff00,0x1fe0,0xff00,0x1ff0,0x1fe00,0xff0, + 0x1fe00,0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7f800,0x3fc,0x7f800,0x3fc,0xff800,0x1fe,0xff000,0x1fe, + 0xff000,0x1fe,0x1fe000,0xff,0x1fe000,0xff,0x801fe000,0x7f,0x803fc000,0x7f,0x803fc000,0x7f,0xc07f8000,0x3f,0xc07f8000,0x3f, + 0xe07f8000,0x1f,0xe0ff0000,0x1f,0xe0ff0000,0x1f,0xf0fe0000,0xf,0xf1fe0000,0xf,0xf1fe0000,0x7,0xf9fc0000,0x7,0xf9fc0000,0x3, + 0xfbf80000,0x3,0xfbf80000,0x3,0xfff80000,0x1,0xfff00000,0x1,0xfff00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0x7fe00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0x7f000,0x1fc,0x7f000,0x1fc,0x7f000,0x3fc,0x7f000,0x3fc,0x7f800, + 0x3fc,0x7f800,0x3f8,0x3f800,0x3f8,0x3f800,0x3f8,0x3f800,0x3f8,0x3f800,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc007f0,0x1fc00, + 0x7fc007f0,0x1fc00,0x7fc007f0,0x1fc00,0xffe007f0,0x1fc00,0xffe007f0,0x1fe00,0xfbe00ff0,0x1fe00,0xfbf00fe0,0xfe01,0xfbf00fe0,0xfe01,0xfbf00fe0,0xfe01, + 0xf1f80fe0,0xfe01,0xf1f80fe0,0xff03,0xf1f81fe0,0x7f03,0xe0f81fc0,0x7f03,0xe0fc1fc0,0x7f07,0xe0fc1fc0,0x7f07,0xe07c1fc0,0x7f07,0xc07e1fc0,0x7f8f, + 0xc07e1fc0,0x3f8f,0xc03e1f80,0x3f8f,0x803f3f80,0x3f8f,0x803f3f80,0x3f9f,0x803f3f80,0x3f9f,0x1fbf80,0x3f9f,0x1fbf80,0x1fbf,0x1fbf00,0x1fbf, + 0xfbf00,0x1fbe,0xfff00,0x1ffe,0xfff00,0x1ffe,0x7ff00,0xffe,0x7ff00,0xffc,0x7fe00,0xffc,0x3fe00,0xffc,0x3fe00,0xff8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x1fe0,0xff00,0x1ff0,0x1fe00,0xff0, + 0x3fc00,0x7f8,0x7fc00,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0x1fe000,0xff,0x801fe000,0x7f,0x803fc000,0x7f,0xc07f8000,0x3f, + 0xe07f0000,0x1f,0xf0ff0000,0xf,0xf1fe0000,0xf,0xfbfc0000,0x7,0xfff80000,0x3,0xfff80000,0x1,0xfff00000,0x0,0xffe00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x1,0xfff80000,0x3,0xfbfc0000,0x7,0xf1fe0000,0xf, + 0xf0ff0000,0xf,0xe0ff0000,0x1f,0xc07f8000,0x3f,0x803fc000,0x7f,0x801fe000,0x7f,0x1fe000,0xff,0xff000,0x1fe,0x7f800,0x3fe, + 0x7fc00,0x3fc,0x3fc00,0x7f8,0x1fe00,0xff0,0xff00,0x1ff0,0xff80,0x1fe0,0x7f80,0x3fc0,0x3fc0,0x7f80,0x1fe0,0xff80, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x1fe00,0xff0,0x1fe00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x7f80,0x3f80,0x7f80,0x3fc0,0x7f00,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1fe00,0xfe0, + 0x1fe00,0xff0,0x3fc00,0x7f0,0x3fc00,0x7f8,0x3f800,0x7f8,0x7f800,0x3f8,0x7f000,0x3fc,0xff000,0x1fc,0xff000,0x1fe, + 0xfe000,0xfe,0x1fe000,0xfe,0x1fc000,0xff,0x3fc000,0x7f,0x803f8000,0x7f,0x803f8000,0x3f,0x807f8000,0x3f,0xc07f0000,0x3f, + 0xc0ff0000,0x1f,0xe0fe0000,0x1f,0xe0fe0000,0xf,0xe1fc0000,0xf,0xf1fc0000,0x7,0xf3f80000,0x7,0xfbf80000,0x7,0xfbf80000,0x3, + 0xfff00000,0x3,0xfff00000,0x1,0xffe00000,0x1,0xffe00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f00000,0x0, + 0x7f80000,0x0,0x3fc0000,0x0,0x3fe0000,0x0,0x1ff8000,0x0,0xfff100,0x0,0x7fff00,0x0,0x3fff00,0x0,0x1fff00,0x0, + 0xfff00,0x0,0x3ff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0xfff,0xffffff00,0xfff,0xffffff00,0xfff,0xffffff00,0xfff,0xffffff00,0xfff, + 0xffffff00,0xfff,0x0,0x7f8,0x0,0x3fc,0x0,0x3fe,0x0,0x1ff,0x80000000,0xff,0x80000000,0x7f,0xc0000000,0x3f, + 0xe0000000,0x1f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0, + 0x7fc00000,0x0,0x3fe00000,0x0,0x1ff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x3fc0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0, + 0xff8000,0x0,0x7fc000,0x0,0x3fc000,0x0,0x1fe000,0x0,0xff000,0x0,0xff800,0x0,0x7fc00,0x0,0x3fe00,0x0, + 0x1fe00,0x0,0xff00,0x0,0x7f80,0x0,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe0000000,0x1fff,0xf8000000,0x1fff,0xfc000000,0x1fff,0xfe000000,0x1fff,0xff000000,0x1fff,0xff800000,0x1fff, + 0xff800000,0x0,0x7f800000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0, + 0x1fe00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7fc0000,0x0,0x7fe0000,0x0,0x3ffc000,0x0,0x1fffc00,0x0, + 0x7ffc00,0x0,0x1ffc00,0x0,0x1ffc00,0x0,0x7ffc00,0x0,0x1fffc00,0x0,0x3ffc000,0x0,0x7fe0000,0x0,0x7fc0000,0x0, + 0xff80000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0, + 0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0, + 0x3fc00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0xff800000,0x0,0xff800000,0x7,0xff000000,0x1fff,0xfe000000,0x1fff,0xfc000000,0x1fff, + 0xf8000000,0x1fff,0xe0000000,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffff00,0x0,0x3ffff00,0x0,0x7ffff00,0x0,0xfffff00,0x0,0x1fffff00,0x0,0x1fffff00,0x0, + 0x3fe00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xfe000000,0x1,0xfe000000,0x1,0xfc000000,0x3,0xfc000000,0xf,0xf8000000,0x3f,0xf0000000,0x7ff, + 0xc0000000,0x7ff,0x0,0x7ff,0x0,0x7ff,0xc0000000,0x7ff,0xf0000000,0x7ff,0xf8000000,0x7f,0xfc000000,0xf,0xfc000000,0x7, + 0xfe000000,0x1,0xfe000000,0x1,0xff000000,0x0,0xff000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x3fc00000,0x0,0x3fe00000,0x0,0x1ffc0000,0x0,0x1fffff00,0x0,0xfffff00,0x0,0x7ffff00,0x0, + 0x3ffff00,0x0,0xffff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c000,0x0,0xfffc00,0x0, + 0x7ffff80,0xc000,0x3fffffc0,0xe000,0xffffffe0,0xfc01,0xffffffe0,0xffff,0xfff80fe0,0xffff,0xff8001e0,0xffff,0xfc000060,0x7fff,0xe0000020,0x1fff, + 0x0,0x3ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 127 + 0x8e1c0078,0x73f7,0x9f180038,0x73e3,0x9f180038,0x73f3,0xe318fe38,0xc0c7c,0x6318ff38,0xe0c7c,0x7718ff38,0xf183c,0x7f18ff38,0xff01c,0xff18ff38,0xff00c, + 0x8018ff38,0xffc03,0x8018ff38,0xffc03,0x80187e38,0xffc03,0x80180038,0x18c03,0x801c0038,0x38c03,0xe31ffff8,0xe738c,0x631ffff8,0xe739c,0xe31ffff0,0xe738c, + 0xe3000000,0xe7f83,0xe3000000,0xe7f83,0x83180010,0x3f00f,0x83180038,0x1f01f,0x31c0030,0x3f01f,0x3e707c0,0xe7070,0x3e707c0,0xe7060,0xffbf1c70,0x7fe1, + 0xff1f3838,0x7fe3,0xff1f3838,0x7fe3,0xff00fff8,0xc0060,0xff00fff8,0xe0060,0xfe007ff8,0xc0060,0xe0183ff8,0x7c63,0xe01c3ff8,0x7c63,0x1807e000,0xc7000, + 0x1c07c000,0xe7000,0x3c07c000,0xc2000,0xe3ffc0f8,0xf,0xe3ffe1f8,0x1f,0xffe7ff38,0xc1c,0x7fe7ff38,0xc1c,0x7fe7ff38,0xc1c,0x1fff38,0xf801c, + 0x1fff38,0xf801c,0x3003fe0,0xf81ff,0x83003fc0,0xf83ff,0x83001fc0,0xf83ff,0x80ff0700,0xc1f,0x80ff0700,0xc1f,0xc07f8780,0xc3f,0xfc00c7c0,0xc60, + 0xfc00c7c0,0xc60,0x9fffc1c0,0x7f83,0x9fffc0c0,0x7f83,0x9fffc080,0x3f83,0x9f000000,0xe0f83,0x9f000000,0xe0f83,0xe01ffff0,0x38c0f,0xe01ffff8,0x18c1f, + 0xe01ffff8,0x3de0f,0x1c180038,0xe7380,0x1c180038,0xe7380,0x7c18fe38,0x1ffc,0x7c18ff38,0xffc,0xf818ff38,0x1ffc,0x8018ff38,0xfffff,0x8018ff38,0xfffff, + 0xf818ff38,0xbdefe,0x7c18ff38,0x18c7c,0x7818fe38,0x18c7c,0x180038,0xc1c,0x180038,0xc1c,0x1c0078,0x3c,0x7f1ffff8,0x1807c,0x7f1ffff8,0x1807c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe000,0x0,0x7fe000,0x0, + 0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1, + 0xffffffc0,0x1,0xffffffc0,0x1,0xffffffc0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffff,0xfffff,0xffffffff,0xfffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffff8,0x0, + 0x3fffff8,0x0,0x3fffff8,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0, + 0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3000038,0x0,0x3fffff8,0x0,0x3fffff8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0xffe00000,0x3,0xfffc0000,0x1f, + 0xffff0000,0x7f,0xffffc000,0xff,0xffffe000,0x3ff,0xfffff000,0x7ff,0x3e3ff800,0x7fe,0x3e0ffc00,0xffc,0x3e07fc00,0x1ff0,0x3e03fe00,0x1fe0, + 0x3e01fe00,0x3fe0,0x3e00ff00,0x3fc0,0x3e00ff00,0x3fc0,0x3e007f80,0x7f80,0x3e007f80,0x0,0x3e007f80,0x0,0x3e003f80,0x0,0x3e003f80,0x0, + 0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0, + 0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e007f80,0x0,0x3e007f80,0x0,0x3e007f80,0x7f80,0x3e007f80,0x7f80,0x3e00ff00,0x3fc0,0x3e01ff00,0x3fc0, + 0x3e01fe00,0x3fe0,0x3e03fe00,0x1fe0,0x3e07fc00,0x1ff8,0x3e1ffc00,0xffc,0x3e7ff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffff8000,0xff, + 0xffff0000,0x3f,0xfff80000,0xf,0xff800000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0xf, + 0xfff80000,0x7f,0xfffe0000,0xff,0xffff0000,0x3ff,0xffff8000,0x7ff,0xffffc000,0xfff,0x83ffc000,0xfff,0x7fe000,0x1ffc,0x3fe000,0x1ff0, + 0x1ff000,0x1fe0,0xff000,0x3c0,0xff000,0x40,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0xfffffff8,0xf,0xfffffff8,0xf,0xfffffff8,0xf,0xfffffff8,0xf,0xfffffff8,0xf,0xfffffff8,0xf,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x3f800,0x0,0x3f800,0x0,0x3fc00,0x0,0x3fc00,0x0,0x1fe00,0x0,0x1fe00,0x800,0xff00,0x3f800,0x7f80,0x3fc00, + 0x3fe0,0x1fe00,0x1ff0,0x1ff00,0xfffffff8,0x1ffff,0xfffffff8,0xffff,0xfffffff8,0xffff,0xfffffff8,0x7fff,0xfffffff8,0x3fff,0xfffffff8,0xfff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x800,0x0,0x3f801c00,0x300,0xfff03e00,0x783,0xfffc7f00,0xfcf,0xffffff80,0x1fff,0xffffff00,0x1fff,0xfffffe00,0xfff,0xfffffc00,0x7ff, + 0x803ff800,0x3ff,0xff800,0x3fe,0x7f800,0x7fc,0x3fc00,0x7f8,0x1fc00,0xff0,0xfe00,0xfe0,0xfe00,0xfe0,0x7e00,0x1fc0, + 0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7f00,0x1fc0,0x7e00,0x1fc0, + 0xfe00,0xfe0,0xfe00,0xfe0,0x1fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7fc,0xff800,0x3fe,0x803ff800,0x3ff,0xfffffc00,0x7ff, + 0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xfffc7f00,0x1fcf,0xfff03e00,0xf83,0x3f801c00,0x700,0x800,0x200,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f8,0x3fc00, + 0xff8,0x3fe00,0xff0,0x1fe00,0x1fe0,0xff00,0x3fe0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff00,0x1fe0, + 0xff00,0x1ff0,0x1fe00,0xff0,0x3fc00,0x7f8,0x3fc00,0x7f8,0x7f800,0x3fc,0x7f800,0x3fc,0xff000,0x1fe,0x1fe000,0xff, + 0x1fe000,0xff,0x803fc000,0x7f,0x803fc000,0x7f,0xc07f8000,0x3f,0xe07f0000,0x1f,0xe0ff0000,0x1f,0xf1fe0000,0xf,0xf1fe0000,0x7, + 0xfbfc0000,0x7,0xfff80000,0x3,0xfff80000,0x3,0xfff00000,0x1,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x3,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0xff,0xfffff000,0x1ff,0x3ff000,0x3ff, + 0x7f800,0x7f8,0x3f800,0xff0,0x1fc00,0xfe0,0x1fc00,0xfe0,0x1fc00,0x1fc0,0x1fc00,0x0,0x1fc00,0x0,0x1fc00,0x0, + 0x1fc00,0x0,0x3fc00,0x0,0x7f800,0x0,0x1ff800,0x0,0xfff000,0x0,0x7ffe000,0x0,0x7fffc000,0x0,0xffff0000,0x3, + 0xfffc0000,0x1f,0xffff0000,0x7f,0xffff8000,0x1ff,0xf87fe000,0x3ff,0xc00ff000,0x7ff,0x7f800,0xffe,0x3fc00,0xff8,0x1fc00,0x1ff0, + 0xfe00,0x1fe0,0xfe00,0x1fc0,0xfe00,0x3f80,0xfe00,0x3f80,0xfe00,0x3f80,0xfe00,0x1f80,0xfe00,0x1f80,0x1fe00,0x1fc0, + 0x3fc00,0x1fc0,0xffc00,0xfe0,0x3ff800,0x7f0,0x1fff000,0x7fe,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f,0xfffc0000,0x1f, + 0xffe00000,0x7f,0xfe000000,0x1ff,0xe0000000,0x3ff,0x0,0x7ff,0x0,0xffc,0x0,0xff0,0x0,0x1fe0,0x0,0x1fc0, + 0x0,0x1fc0,0x0,0x1fc0,0x0,0x1f80,0x3800,0x1f80,0x7f80,0x1f80,0x7f00,0x1fc0,0xff00,0x1fc0,0xff00,0xfe0, + 0x3fe00,0xff0,0x7fc00,0x7fc,0xc0fffc00,0x3ff,0xfffff800,0x1ff,0xffffe000,0xff,0xffffc000,0x3f,0xfffe0000,0xf,0x7fc00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x1,0xfffe0000,0xf,0xffff8000,0x3f,0xffffe000,0xff,0x1ff000,0x1ff,0x3f800,0x3f8, + 0xfc00,0x7e0,0x7e00,0xf80,0x1f00,0x1f00,0xf80,0x3e00,0x780,0x3c00,0x7c0,0x7c00,0x1f0003e0,0xf800,0xfff001e0,0xf001, + 0xfffc01e0,0xf003,0xfffe01f0,0x1e00f,0xffff00f0,0x1e01f,0xc07f80f8,0x1e01f,0x1f8078,0x3c03f,0xfc078,0x3c07e,0x7c078,0x3c07c,0x7e078,0x3c03c, + 0x3e03c,0x78000,0x3e03c,0x78000,0x3f03c,0x78000,0x3f03c,0x78000,0x3f03c,0x78000,0x1f03c,0x78000,0x1f03c,0x78000,0x1f03c,0x78000, + 0x1f03c,0x78000,0x1f03c,0x78000,0x1f03c,0x78000,0x3f03c,0x78000,0x3f03c,0x78000,0x3f03c,0x78000,0x3e03c,0x78000,0x3e03c,0x78000, + 0x7e07c,0x78078,0x7c078,0x3c0fc,0xfc078,0x3c07e,0x1fc078,0x3c07e,0x803f8078,0x3c03f,0xc0ff00f0,0x1e01f,0xfffe00f0,0x1e00f,0xfffc01f0,0x1f007, + 0xfff801e0,0xf003,0xffc003e0,0xf800,0x3c0,0x7800,0x7c0,0x7c00,0xf80,0x3e00,0x1f80,0x3f00,0x3f00,0x1f80,0x7e00,0xfc0, + 0x1fc00,0x7f0,0x7f800,0x3fc,0x803ff000,0x1ff,0xffffc000,0x7f,0xffff0000,0x1f,0xfffc0000,0x7,0x7fc00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff00000,0x0,0xfffe0000,0x1,0xffff8000,0x7,0xffffc000,0xf, + 0xe01fe000,0x1f,0xc007f000,0x1f,0x8003f000,0x3f,0x3f800,0x3f,0x1f800,0x3f,0x1f800,0x3f,0x0,0x3f,0x0,0x7f, + 0x0,0x7f,0xff800000,0x7f,0xfffe0000,0x7f,0xffffc000,0x7f,0xffffe000,0x7f,0xff800,0x7f,0x3f800,0x7f,0x1fc00,0x7f, + 0xfc00,0x7f,0xfe00,0x7f,0x7e00,0x7f,0x8000fe00,0x7f,0xc000fe00,0x7f,0xe000fe00,0x7f,0xf001fc00,0x7e,0x7803fc00,0x7e, + 0x7f8ffc00,0xffe,0x1ffff800,0xffc,0xffff000,0xffc,0x7ffc000,0xff8,0xff0000,0x3c0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff80000,0xff00,0x7fc0000,0x7f80,0x3fc0000,0x3fc0,0x1fe0000,0x3fe0,0xff0000,0x1ff0,0xff8000,0xff8,0x7fc000,0x7fc, + 0x3fe000,0x3fe,0x1ff000,0x1ff,0x800ff800,0xff,0xc007fc00,0x7f,0xc003fe00,0x3f,0xe001fe00,0x1f,0xf000ff00,0xf,0xf8007f80,0xf, + 0xfc007fc0,0x7,0xfc003fc0,0x3,0xfc003fc0,0x3,0xfc007fc0,0x7,0xf800ff80,0xf,0xf001ff00,0x1f,0xe003fe00,0x3f,0xc007fc00,0x7f, + 0x800ff800,0xff,0x1ff000,0x1ff,0x1fe000,0x3fe,0x3fc000,0x7fc,0x7f8000,0x7f8,0xff8000,0xff0,0x1ff0000,0x1fe0,0x3fe0000,0x3fe0, + 0x7fc0000,0x7fc0,0xff80000,0xff80,0xff00000,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0xfe00, + 0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00, + 0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00, + 0x0,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x1,0xfffe0000,0xf,0xffff8000,0x3f,0xffffe000,0xff,0x1ff000,0x1ff,0x3f800,0x3f8, + 0xfc00,0x7e0,0x7e00,0xf80,0x1f00,0x1f00,0xf80,0x3e00,0x780,0x3c00,0x7c0,0x7c00,0x3e0,0xf800,0xffffc1e0,0xf001, + 0xffffc1e0,0xf007,0xffffc1f0,0x1e01f,0xffffc0f0,0x1e03f,0xc00fc0f8,0x1e03f,0xfc078,0x3c07f,0xfc078,0x3c07e,0xfc078,0x3c0fc,0xfc078,0x3c0fc, + 0xfc03c,0x780fc,0xfc03c,0x780fc,0xfc03c,0x780fc,0xfc03c,0x7807c,0xfc03c,0x7807c,0xfc03c,0x7807e,0xfc03c,0x7803f,0xe00fc03c,0x7803f, + 0xffffc03c,0x7801f,0xffffc03c,0x7800f,0xffffc03c,0x78003,0xffffc03c,0x78000,0xf80fc03c,0x78001,0xf00fc03c,0x78001,0xf00fc03c,0x78003,0xe00fc03c,0x78007, + 0xe00fc07c,0x78007,0xc00fc078,0x3c00f,0x800fc078,0x3c00f,0x800fc078,0x3c01f,0xfc078,0x3c03f,0xfc0f0,0x1e03f,0xfc0f0,0x1e07e,0xfc1f0,0x1f0fc, + 0xfc1e0,0xf0fc,0xfc3e0,0xf9f8,0x3c0,0x7800,0x7c0,0x7c00,0xf80,0x3e00,0x1f80,0x3f00,0x3f00,0x1f80,0x7e00,0xfc0, + 0x1fc00,0x7f0,0x7f800,0x3fc,0x803ff000,0x1ff,0xffffc000,0x7f,0xffff0000,0x1f,0xfffc0000,0x7,0x7fc00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0xfffff,0xffffffff,0xfffff,0xffffffff,0xfffff,0xffffffff,0xfffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xe0fe0000,0xf,0x803f0000,0x1f,0x1f8000,0x3f,0xf8000,0x3e,0xf8000,0x3e, + 0x78000,0x3c,0x7c000,0x7c,0x7c000,0x7c,0x7c000,0x7c,0x78000,0x3c,0xf8000,0x3e,0xf8000,0x3e,0x1f8000,0x3f, + 0x803f0000,0x1f,0xc07e0000,0xf,0xfffe0000,0xf,0xfffc0000,0x7,0xfff00000,0x1,0xffe00000,0x0,0xe000000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e000000,0x0,0xffe00000,0x1,0xfff80000,0x7,0xfffc0000,0xf, + 0xfffe0000,0x1f,0xc0ff0000,0x1f,0x803f8000,0x3f,0x1f8000,0x3f,0xf8000,0x3f,0xfc000,0x7e,0xf8000,0x7e,0x0,0x7e, + 0x0,0x3e,0x0,0x3f,0x0,0x3f,0x80000000,0x1f,0xc0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7,0xf8000000,0x3, + 0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0, + 0x3f0000,0x0,0x3f8000,0x0,0x1f8000,0x0,0xfc000,0x0,0xffffc000,0x7f,0xffffc000,0x7f,0xffffc000,0x7f,0xffffc000,0x7f, + 0xffffc000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000000,0x0,0xffe00000,0x1,0xfff80000,0x7,0xfffe0000,0xf, + 0xfffe0000,0x1f,0xc07f0000,0x3f,0x803f8000,0x3f,0x1f8000,0x3f,0xf8000,0x3e,0xfc000,0x7e,0x80000,0x7e,0x0,0x3e, + 0x0,0x3f,0x0,0x3f,0x80000000,0x1f,0xe0000000,0xf,0xff800000,0x7,0xff800000,0x1,0xff800000,0x0,0xff800000,0x7, + 0xff800000,0x1f,0xc0000000,0x3f,0x0,0x3f,0x0,0x7e,0x0,0x7e,0x0,0x7c,0x0,0x7c,0x7c000,0x7c, + 0xfc000,0x7e,0xfc000,0x7e,0x1fc000,0x7e,0x803f8000,0x3f,0xe0ff8000,0x3f,0xffff0000,0x1f,0xfffe0000,0xf,0xfff80000,0x7, + 0xffe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x7,0xfe000000,0x7,0xff000000,0x1,0xff000000,0x0,0x7f800000,0x0, + 0x3fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0xfc0000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0, + 0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0, + 0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0, + 0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0,0x3f80,0x3fc0, + 0x3f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0x7f80,0x3fe0,0xff80,0x3ff0,0xff80,0x3ff8,0x1ff80,0x3ff8, + 0x3ff80,0x3fbe,0x7ff80,0x3fbf,0xc01fff80,0x3f9f,0xffffff80,0x3f9f,0xffffbf80,0x3f8f,0xffffbf80,0x3f87,0xffff3f80,0x3f83,0xfffc3f80,0x3f80, + 0x3ff03f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3fff, + 0xffff8000,0x3fff,0xffffe000,0x3fff,0xfffff800,0x3fff,0xfffffc00,0x3fff,0xfffffe00,0x3fff,0x7ffff00,0x1f8,0x7ffff00,0x1f8,0x7ffff80,0x1f8, + 0x7ffff80,0x1f8,0x7ffff80,0x1f8,0x7ffffc0,0x1f8,0x7ffffc0,0x1f8,0x7ffffc0,0x1f8,0x7ffffc0,0x1f8,0x7ffffc0,0x1f8,0x7ffffc0,0x1f8, + 0x7ffffc0,0x1f8,0x7ffffc0,0x1f8,0x7ffffc0,0x1f8,0x7ffff80,0x1f8,0x7ffff80,0x1f8,0x7ffff80,0x1f8,0x7ffff00,0x1f8,0x7ffff00,0x1f8, + 0x7fffe00,0x1f8,0x7fffc00,0x1f8,0x7fff800,0x1f8,0x7fff000,0x1f8,0x7ff8000,0x1f8,0x7f80000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8, + 0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8, + 0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8, + 0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8, + 0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8, + 0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x7e00000,0x1f8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0, + 0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7c00,0x0,0x3c00,0x0,0x3e00,0x0,0x1e00,0x0,0x1e00,0x0,0x1ff00,0x0,0x7ff00,0x0,0xfff00,0x0, + 0xfe000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xfe000,0x0,0xfffc0,0x0, + 0x7ffc0,0x0,0x3ffc0,0x0,0x7fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f800000,0x0,0x3fc00000,0x0, + 0x3fe00000,0x0,0x3ff80000,0x0,0x3fffe000,0x0,0x3f7fe000,0x0,0x3f3fe000,0x0,0x3f0fe000,0x0,0x3f01e000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0xffffe000,0xff,0xffffe000,0xff,0xffffe000,0xff,0xffffe000,0xff, + 0xffffe000,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff8000,0x3f, + 0xe0ffc000,0x7f,0x1fe000,0xff,0xfe000,0xfe,0x7f000,0x1fc,0x3f000,0x1f8,0x3f800,0x3f8,0x1f800,0x3f0,0x1f800,0x3f0, + 0x1fc00,0x7f0,0x1fc00,0x7f0,0x1fc00,0x7e0,0x1fc00,0x7e0,0x1fc00,0x7e0,0x1fc00,0x7e0,0x1fc00,0x7f0,0x1fc00,0x7f0, + 0x1fc00,0x3f0,0x1f800,0x3f0,0x1f800,0x3f0,0x3f800,0x3f8,0x3f000,0x1f8,0x7f000,0x1fc,0xfe000,0xfe,0x803fc000,0x7f, + 0xffffc000,0x7f,0xffff0000,0x1f,0xfffe0000,0xf,0xfff80000,0x3,0x7fc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfe001fe0,0x1,0xfc003fc0,0x3,0xf8007fc0,0x7,0xf000ff80,0xf,0xf001ff00,0x1f,0xe003fe00,0x3f,0xc007fc00,0x7f, + 0x800ff800,0xff,0x1ff000,0x1ff,0x1fe000,0x3fe,0x3fc000,0x7fc,0x7f8000,0x7f8,0xff8000,0xff0,0x1ff0000,0x1fe0,0x3fe0000,0x3fe0, + 0x7fc0000,0x7fc0,0x7f80000,0x7f80,0x7f80000,0x7f80,0x3fc0000,0x7fc0,0x3fe0000,0x3fe0,0x1ff0000,0x1ff0,0xff8000,0xff8,0x7fc000,0x7fc, + 0x3fe000,0x3fe,0x1ff000,0x1ff,0x800ff800,0xff,0x8007fc00,0x7f,0xc003fe00,0x3f,0xe001fe00,0x1f,0xf000ff00,0xf,0xf8007f80,0xf, + 0xfc007fc0,0x7,0xfe003fe0,0x3,0xfe001fe0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00,0xf80, + 0x3f00,0x7c0,0x3f00,0x7c0,0x3f80,0x3e0,0x3fe0,0x3e0,0x3ffc,0x1f0,0x3ffc,0x1f0,0x3efc,0xf8,0x3e7c,0xf8, + 0x3e1c,0x7c,0x3e00,0x7c,0x3e00,0x3e,0x3e00,0x1e,0x3e00,0x1f,0x3e00,0xf,0x80003e00,0xf,0x80003e00,0x7, + 0xc0003e00,0x7,0xe0003e00,0x3,0xe0003e00,0x3,0xf0003e00,0x1,0xf0003e00,0x1,0xf8003e00,0x0,0xf8003e00,0x0,0x7c003e00,0x0, + 0x7c003e00,0x7e00,0x3e003e00,0x7f00,0x3e003e00,0x7f00,0x1f07fff8,0x7f80,0x1f07fff8,0x7fc0,0xf87fff8,0x7fc0,0xf87fff8,0x7de0,0x7c7fff8,0x7df0, + 0x7c00000,0x7cf8,0x3e00000,0x7c78,0x3e00000,0x7c7c,0x1f00000,0x7c3e,0x1f00000,0x7c1e,0xf80000,0x7c0f,0x80780000,0x7c0f,0xc07c0000,0x7c07, + 0xc03e0000,0x7c03,0xe03e0000,0x7c03,0xf01f0000,0x7c01,0xf01f0000,0x7c00,0x780f8000,0x7c00,0xfc0f8000,0xfffff,0xfc07c000,0xfffff,0xfc07c000,0xfffff, + 0xfc03e000,0xfffff,0xfc03e000,0xfffff,0x1f000,0x7c00,0x1f000,0x7c00,0xf800,0x7c00,0xf800,0x7c00,0x7c00,0x7c00,0x7c00,0x7c00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00,0x7c0, + 0x3f00,0x7c0,0x3f80,0x3e0,0x3fc0,0x1e0,0x3ff0,0x1f0,0x3ffe,0xf0,0x3ffe,0xf8,0x3f7e,0x78,0x3f3e,0x7c, + 0x3f1e,0x3e,0x3f00,0x3e,0x3f00,0x1f,0x3f00,0x1f,0x80003f00,0xf,0x80003f00,0xf,0xc0003f00,0x7,0xc0003f00,0x7, + 0xe0003f00,0x3,0xe0003f00,0x3,0xf0003f00,0x1,0xf0003f00,0x1,0xf8003f00,0x0,0xf8003f00,0x0,0x7c003f00,0x0,0x7c003f00,0x0, + 0x3e003f00,0x1ff0,0x3e003f00,0x7ffc,0x1f003f00,0x1fffe,0x1f07fff8,0x1ffff,0x8f87fff8,0x3f83f,0x8787fff8,0x3f00f,0xc7c7fff8,0x7e00f,0xc3e7fff8,0x7e007, + 0xc3e00000,0x7e007,0x1f00000,0x7e000,0x1f00000,0x7e000,0xf80000,0x3e000,0xf80000,0x3f000,0x7c0000,0x3f800,0x7c0000,0x1f800,0x3e0000,0xfc00, + 0x3e0000,0x7e00,0x1f0000,0x3f80,0x1f0000,0x1fc0,0xf8000,0xfe0,0xf8000,0x7f0,0x7c000,0x1f8,0x7c000,0xfc,0x3e000,0x7e, + 0x3e000,0x3f,0x8001f000,0x1f,0xc001f000,0xf,0xc000f800,0x7,0xe000f800,0x7ffff,0xe0007c00,0x7ffff,0xe0003e00,0x7ffff,0xe0003e00,0x7ffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x1f00, + 0x3ffc0,0xf80,0xfffe0,0xf80,0xffff0,0x7c0,0x1fe7f8,0x7c0,0x1f81fc,0x3e0,0x3f00fc,0x3e0,0x3f00fc,0x1f0,0x3f007e,0x1f0, + 0x3f0000,0xf8,0x3f0000,0xf8,0x1f8000,0x7c,0x1f8000,0x7c,0xfe000,0x3e,0x7fe00,0x1e,0x1fe00,0x1f,0x3fe00,0xf, + 0x800ffe00,0xf,0x801ffe00,0x7,0xc01f8000,0x7,0xe03f0000,0x3,0xe03e0000,0x3,0xf07e0000,0x1,0xf07e0000,0x1,0xf87e007e,0x0, + 0xf87e007e,0x7e00,0x7c3f00fc,0x7f00,0x7c3f00fc,0x7f00,0x3e3fc3fc,0x7f80,0x3e1ffff8,0x7fc0,0x1f0ffff0,0x7fc0,0x1f07ffe0,0x7de0,0xf81ff80,0x7df0, + 0xf800000,0x7cf8,0x7c00000,0x7c78,0x7c00000,0x7c7c,0x3e00000,0x7c3e,0x3e00000,0x7c1e,0x1f00000,0x7c0f,0x81f00000,0x7c0f,0xc0f80000,0x7c07, + 0xc0780000,0x7c03,0xe07c0000,0x7c03,0xf03e0000,0x7c01,0xf03e0000,0x7c00,0x781f0000,0x7c00,0xfc1f0000,0xfffff,0xfc0f8000,0xfffff,0xfc0f8000,0xfffff, + 0xfc07c000,0xfffff,0xfc07c000,0xfffff,0x3e000,0x7c00,0x3e000,0x7c00,0x1f000,0x7c00,0x1f000,0x7c00,0xf800,0x7c00,0xf800,0x7c00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xff000000,0x0,0xff000000,0x0, + 0x7f800000,0x0,0x7fc00000,0x0,0x3fe00000,0x0,0x1ff00000,0x0,0xff80000,0x0,0x7fe0000,0x0,0x3ff0000,0x0,0x1ff8000,0x0, + 0xffe000,0x0,0x3ff000,0x0,0x1ff800,0x0,0xffc00,0x0,0x7fc00,0x0,0x3fe00,0x0,0x1ff00,0x0,0xff00,0x0, + 0xff00,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0x7f80, + 0x7f80,0x7f80,0xff00,0x7fc0,0x1ff00,0x3fe0,0x3ff00,0x3ff0,0x7fe00,0x1ff8,0x1ffe00,0xffe,0xfffffc00,0x7ff,0xfffff800,0x3ff, + 0xfffff000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f,0xfffc0000,0x7,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 192 + 0x3fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7f80000,0x0,0xff00000,0x0,0x1fe00000,0x0, + 0x3f800000,0x0,0x7f000000,0x0,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 193 + 0x80000000,0x7f,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x3,0xfe000000,0x1,0xff000000,0x0, + 0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 194 + 0x3f800000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xf1fe0000,0xf,0xc07f0000,0x1f, + 0x3f8000,0x3f,0xfc000,0x7e,0x3f000,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 195 + 0x0,0x0,0x7f0000,0x3e0,0x1ff8000,0x1e0,0x7ffc000,0x1f0,0x1fffe000,0x1f0,0x7fffe000,0x1f8,0xffe7f000,0xff,0xff01f000,0xff, + 0xfe01f000,0x7f,0xf800f000,0x3f,0xe000f800,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x0,0x0,0x0,0x0,0xe000000,0x0,0xffe00000,0x0,0xfff00000,0x3,0xfffc0000,0x7,0xfffc0000,0xf, + 0xf1fe0000,0xf,0x807e0000,0xf,0x803f0000,0x1f,0x3f0000,0x1f,0x3f0000,0x1f,0x803e0000,0x1f,0xc07e0000,0xf,0xfffe0000,0xf, + 0xfffc0000,0x7,0xfff80000,0x7,0xfff00000,0x1,0xffe00000,0x1,0xfff00000,0x1,0xfff00000,0x3,0xfbf80000,0x3,0xfbf80000,0x3, + 0xf3f80000,0x7,0xf1fc0000,0x7,0xf1fc0000,0x7,0xe1fc0000,0xf,0xe0fe0000,0xf,0xe0fe0000,0x1f,0xc0ff0000,0x1f,0xc07f0000,0x1f, + 0xc07f0000,0x3f,0x807f8000,0x3f,0x803f8000,0x3f,0x803fc000,0x7f,0x3fc000,0x7f,0x1fc000,0x7f,0x1fe000,0xff,0x1fe000,0xfe, + 0xfe000,0x1fe,0xff000,0x1fe,0x7f000,0x1fc,0x7f800,0x3fc,0x7f800,0x3fc,0x3f800,0x3f8,0x3fc00,0x7f8,0x3fc00,0x7f8, + 0x1fc00,0xff0,0x1fe00,0xff0,0xfffffe00,0xfff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x1fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0x7f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0xff0,0x1fe00,0xff0,0x1fe00, + 0xff0,0x3fe00,0x7f8,0x3fc00,0x7f8,0x3fc00,0x7fc,0x7fc00,0x3fc,0x7f800,0x3fc,0x7f800,0x3fe,0xff000,0x1fe,0xff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x1ffff, + 0xffe00000,0x1ffff,0xfff00000,0x1ffff,0xfff00000,0x1ffff,0xfff00000,0x1ffff,0xfff80000,0x1ffff,0xfff80000,0x1ffff,0xf0f80000,0x7,0xf0fc0000,0x7, + 0xf0fc0000,0x7,0xf0fe0000,0x7,0xf07e0000,0x7,0xf07e0000,0x7,0xf07f0000,0x7,0xf03f0000,0x7,0xf03f0000,0x7,0xf03f8000,0x7, + 0xf01f8000,0x7,0xf01f8000,0x7,0xf01fc000,0x7,0xf00fc000,0x7,0xf00fc000,0x7,0xf00fe000,0x7,0xf007e000,0x7,0xf007f000,0x7, + 0xf007f000,0x1ffff,0xf003f000,0x1ffff,0xf003f800,0x1ffff,0xf003f800,0x1ffff,0xf001f800,0x1ffff,0xf001fc00,0x1ffff,0xf001fc00,0x7,0xf000fc00,0x7, + 0xf000fe00,0x7,0xfffffe00,0x7,0xffffff00,0x7,0xffffff00,0x7,0xffffff00,0x7,0xffffff80,0x7,0xffffff80,0x7,0xf0003f80,0x7, + 0xf0001fc0,0x7,0xf0001fc0,0x7,0xf0000fc0,0x7,0xf0000fe0,0x7,0xf0000fe0,0x7,0xf00007e0,0x7,0xf00007f0,0x7,0xf00007f0,0x7, + 0xf00003f8,0x7,0xf00003f8,0x7,0xf00003f8,0x7ffff,0xf00001fc,0x7ffff,0xf00001fc,0x7ffff,0xf00001fc,0x7ffff,0xf00000fe,0x7ffff,0xf00000fe,0x7ffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x7, + 0xfffc0000,0x1f,0xffff0000,0x7f,0xffffc000,0x1ff,0xffffe000,0x3ff,0xfffff000,0x7ff,0x80fff800,0xfff,0x3ffc00,0xffc,0xffc00,0x1ff8, + 0x7fe00,0x3ff0,0x3fe00,0x3fe0,0x1ff00,0x7fc0,0x1ff00,0x7f80,0xff00,0xff80,0xff80,0x3f00,0xff80,0x700,0x7f80,0x0, + 0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fe0,0x0, + 0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7f80,0xc00, + 0x7f80,0x3e00,0xff80,0x1fe00,0xff00,0xff00,0x1ff00,0xff00,0x1ff00,0xff80,0x3fe00,0x7fc0,0x7fe00,0x3fc0,0x7fc00,0x3fe0, + 0x1ffc00,0x1ff8,0x3ff800,0xffc,0x83fff000,0xfff,0xffffe000,0x7ff,0xffffc000,0x3ff,0xffff8000,0xff,0xfffe0000,0x7f,0xfff80000,0x1f, + 0xffc00000,0x3,0x1e000000,0x0,0x1f000000,0x0,0xf000000,0x0,0xf000000,0x0,0xff800000,0x0,0xff800000,0x3,0xff800000,0x7, + 0xf0000000,0x7,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xf0000000,0x7,0xffe00000,0x7, + 0xffe00000,0x3,0xffe00000,0x1,0x3fe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 200 + 0x7f8000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0, + 0x7f000000,0x0,0xfe000000,0x0,0xfc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 201 + 0x80000000,0x7f,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x3,0xfe000000,0x1,0xff000000,0x0, + 0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 202 + 0x3f800000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xf1fe0000,0xf,0xc07f0000,0x1f, + 0x3f8000,0x3f,0xfc000,0x7e,0x3f000,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0x7f,0x7f0000,0x7f,0x7f0000,0x7f,0x7f0000,0x7f, + 0x7f0000,0x7f,0x7f0000,0x7f,0x7f0000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 204 + 0x7fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1fe0000,0x0,0x3fc0000,0x0,0x7f80000,0x0,0xff00000,0x0,0x1fc00000,0x0, + 0x3f800000,0x0,0x7f000000,0x0,0xfc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0xfff, + 0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 205 + 0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x7f,0xe0000000,0x1f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x1,0xfe000000,0x0, + 0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0xfff, + 0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 206 + 0x3f800000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xf1fe0000,0xf,0xc07f0000,0x1f, + 0x3f8000,0x3f,0xfc000,0x7e,0x3f000,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0xfff, + 0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0xfff, + 0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff80,0x0, + 0x3fffff80,0x0,0xffffff80,0x3,0xffffff80,0xf,0xffffff80,0x3f,0xffffff80,0x7f,0xffffff80,0xff,0xfc007f80,0x1ff,0xc0007f80,0x3ff, + 0x7f80,0x7ff,0x7f80,0xffe,0x7f80,0xff8,0x7f80,0x1ff0,0x7f80,0x1ff0,0x7f80,0x3fe0,0x7f80,0x3fc0,0x7f80,0x7fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0xffffffc,0xff00,0xffffffc,0xff00,0xffffffc,0xff00,0xffffffc,0xff00,0xffffffc,0xff00,0xffffffc,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x7fc0, + 0x7f80,0x3fc0,0x7f80,0x3fe0,0x7f80,0x1fe0,0x7f80,0x1ff0,0x7f80,0x1ff8,0x7f80,0xffc,0x7f80,0x7fe,0x7f80,0x7ff, + 0xc0007f80,0x3ff,0xf8007f80,0x1ff,0xffffff80,0xff,0xffffff80,0x7f,0xffffff80,0x3f,0xffffff80,0xf,0xffffff80,0x3,0x7fffff80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 209 + 0x0,0x0,0x7f0000,0x3e0,0x1ff8000,0x1e0,0x7ffc000,0x1f0,0x1fffe000,0x1f0,0x7fffe000,0x1f8,0xffe3f000,0xff,0xff01f000,0xff, + 0xfc01f000,0x7f,0xf800f000,0x3f,0xe000f800,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff80,0x3fc0, + 0x1ff80,0x3fc0,0x3ff80,0x3fc0,0x3ff80,0x3fc0,0x7ff80,0x3fc0,0x7ff80,0x3fc0,0xfff80,0x3fc0,0xfff80,0x3fc0,0x1fff80,0x3fc0, + 0x1fff80,0x3fc0,0x1fff80,0x3fc0,0x3fbf80,0x3fc0,0x3fbf80,0x3fc0,0x7f3f80,0x3fc0,0x7f3f80,0x3fc0,0xfe3f80,0x3fc0,0xfe3f80,0x3fc0, + 0x1fe3f80,0x3fc0,0x1fc3f80,0x3fc0,0x3fc7f80,0x3fc0,0x3f87f80,0x3fc0,0x7f87f80,0x3fc0,0x7f07f80,0x3fc0,0x7f07f80,0x3fc0,0xfe07f80,0x3fc0, + 0xfe07f80,0x3fc0,0x1fc07f80,0x3fc0,0x1fc07f80,0x3fc0,0x3f807f80,0x3fc0,0x3f807f80,0x3fc0,0x7f807f80,0x3fc0,0x7f007f80,0x3fc0,0xff007f80,0x3fc0, + 0xfe007f80,0x3fc0,0xfe007f80,0x3fc1,0xfc007f80,0x3fc1,0xfc007f80,0x3fc3,0xf8007f80,0x3fc3,0xf8007f80,0x3fc3,0xf0007f80,0x3fc7,0xf0007f80,0x3fc7, + 0xe0007f80,0x3fcf,0xe0007f80,0x3f8f,0xe0007f80,0x3f9f,0xc0007f80,0x3f9f,0xc0007f80,0x3fbf,0x80007f80,0x3fbf,0x80007f80,0x3fff,0x7f80,0x3fff, + 0x7f80,0x3fff,0x7f80,0x3ffe,0x7f80,0x3ffe,0x7f80,0x3ffc,0x7f80,0x3ffc,0x7f80,0x3ff8,0x7f80,0x3ff8,0x7f80,0x3ff8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 210 + 0x3fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fc0000,0x0,0x7f80000,0x0,0xff00000,0x0,0x1fc00000,0x0, + 0x3f800000,0x0,0x7f000000,0x0,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 211 + 0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x1,0xff000000,0x0, + 0x7f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 212 + 0x3f800000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xf1fe0000,0xf,0xc07f0000,0x1f, + 0x3f8000,0x3f,0xfc000,0x7e,0x3f000,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 213 + 0x0,0x0,0x7f0000,0x3e0,0x1ff8000,0x1e0,0x7ffc000,0x1f0,0x1fffe000,0x1f0,0x7fffe000,0x1f8,0xffe7f000,0xff,0xff01f000,0xff, + 0xfe01f000,0x7f,0xf800f000,0x3f,0xe000f800,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff000,0x1ff,0xc07ff800,0x3ff,0x1ffc00,0x7ff,0x7fe00,0xffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0x7f80,0x3fc0,0x7fc0,0x7fc0,0x7fc0,0x7fc0, + 0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x1fe0,0xff80, + 0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff80, + 0x1fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0, + 0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xffc00,0x7fe,0x1ffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x1f,0xfffe0000,0x7, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x800,0x0,0x1c00,0x300,0x3e00,0x780,0x7f00,0xfc0,0xff80,0x1fe0,0x1ff00,0x1ff0,0x3fe00,0xff8,0x7fc00,0x7fc, + 0xff800,0x3fe,0x1ff000,0x1ff,0x803fe000,0xff,0xc07fc000,0x7f,0xe0ff8000,0x3f,0xf1ff0000,0x1f,0xfbfe0000,0xf,0xfffc0000,0x7, + 0xfff80000,0x3,0xfff00000,0x1,0xffe00000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7, + 0xfbfe0000,0xf,0xf1ff0000,0x1f,0xe0ff8000,0x3f,0xc07fc000,0x7f,0x803fe000,0xff,0x1ff000,0x1ff,0xff800,0x3fe,0x7fc00,0x7fc, + 0x3fe00,0xff8,0x1ff00,0x1ff0,0xff80,0x3fe0,0x7f00,0x1fc0,0x3e00,0xf80,0x1c00,0x700,0x800,0x200,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6000,0xfff80000,0x1e001, + 0xfffe0000,0x3f00f,0xffff8000,0x1f83f,0xffffc000,0xfc7f,0xffffe000,0xfcff,0xfffff000,0x7fff,0xc07ff800,0x3fff,0x1ffc00,0x1fff,0x7fe00,0x1ffe, + 0x3fe00,0xff8,0x3ff00,0x1ff8,0x1ff00,0x1ff0,0xff80,0x3ff0,0xff80,0x3ff8,0x7f80,0x3ffc,0x7fc0,0x7ffe,0x7fc0,0x7ffe, + 0x3fc0,0x7fff,0x80003fc0,0x7f9f,0xc0003fc0,0x7f8f,0xc0003fe0,0xff8f,0xe0003fe0,0xff87,0xf0003fe0,0xff83,0xf8003fe0,0xff81,0xf8001fe0,0xff81, + 0xfc001fe0,0xff80,0x7e001fe0,0xff00,0x3f001fe0,0xff00,0x3f001fe0,0xff00,0x1f801fe0,0xff00,0xfc01fe0,0xff00,0x7e01fe0,0xff00,0x7e03fe0,0xff80, + 0x3f03fe0,0xff80,0x1f83fe0,0xff80,0x1fc3fe0,0xff80,0xfc3fe0,0xff80,0x7e3fe0,0x7f80,0x3f3fc0,0x7f80,0x3fbfc0,0x7f80,0x1fffc0,0x7fc0, + 0xfffc0,0x7fc0,0x7ff80,0x3fc0,0x7ff80,0x3fe0,0x3ff80,0x3fe0,0x1ff00,0x1fe0,0x1ff00,0x1ff0,0x3ff00,0xff8,0x7fe00,0xff8, + 0xfff00,0x7fe,0x1fff80,0x7ff,0xe0ffff80,0x3ff,0xffffffc0,0x1ff,0xffffe7e0,0xff,0xffffc3f0,0x7f,0xffff03f0,0x1f,0xfffe01f8,0x7, + 0xfff000e0,0x1,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 217 + 0x3fe000,0x0,0x7fe000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff00000,0x0,0x1fe00000,0x0, + 0x1fc00000,0x0,0x3f000000,0x0,0x7e000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x1fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x1ff00,0xff8, + 0x3fe00,0xffc,0xffe00,0xffe,0xc07ffc00,0x7ff,0xfffff800,0x3ff,0xfffff800,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 218 + 0x80000000,0x7f,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x1,0x7f000000,0x0, + 0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x1fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x1ff00,0xff8, + 0x3fe00,0xffc,0xffe00,0xffe,0xc07ffc00,0x7ff,0xfffff800,0x3ff,0xfffff800,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 219 + 0x3f800000,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xf1fe0000,0xf,0xc07f0000,0x1f, + 0x3f8000,0x3f,0xfc000,0x7e,0x3f000,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x1fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x1ff00,0xff8, + 0x3fe00,0xffc,0xffe00,0xffe,0xc07ffc00,0x7ff,0xfffff800,0x3ff,0xfffff800,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0,0xff80,0x1fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x1ff00,0xff8, + 0x3fe00,0xffc,0xffe00,0xffe,0xc07ffc00,0x7ff,0xfffff800,0x3ff,0xfffff800,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x1f, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 221 + 0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x7f,0xf0000000,0x1f,0xf8000000,0xf,0xf8000000,0x7,0xfc000000,0x1,0xfe000000,0x0, + 0x7f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc,0x7fc00, + 0x7f8,0x3fc00,0xff8,0x3fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x3fe0,0xff80,0x3fc0,0x7f80,0x7f80,0x3fc0,0xff80,0x3fe0, + 0xff00,0x1fe0,0x1ff00,0x1ff0,0x1fe00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7fc,0x7f800,0x3fc,0xff000,0x1fe,0x1ff000,0x1ff, + 0x1fe000,0xff,0x803fe000,0xff,0x803fc000,0x7f,0xc07f8000,0x3f,0xe0ff8000,0x3f,0xe0ff0000,0x1f,0xf1fe0000,0xf,0xf1fe0000,0xf, + 0xfbfc0000,0x7,0xfff80000,0x3,0xfff80000,0x3,0xfff00000,0x1,0xfff00000,0x1,0xffe00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x1fffff80,0x0,0xffffff80,0xf,0xffffff80,0x3f,0xffffff80,0xff,0xffffff80,0x3ff,0xffffff80,0x7ff,0xf8007f80,0xfff, + 0x7f80,0x1ffe,0x7f80,0x1ff8,0x7f80,0x3ff0,0x7f80,0x3fe0,0x7f80,0x7fc0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0xff80, + 0x7f80,0xff80,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x7fc0,0x7f80,0x3fe0,0x7f80,0x1ff0,0x7f80,0x1ff8,0x7f80,0xffe,0xc0007f80,0x7ff, + 0xffffff80,0x3ff,0xffffff80,0x1ff,0xffffff80,0xff,0xffffff80,0x3f,0xffffff80,0x7,0x7fffff80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x1,0xffff0000,0xf,0xffffc000,0x3f,0xffffe000,0xff,0xfffff000,0x1ff,0xfffff800,0x3ff, + 0x801ffc00,0x3ff,0x7fe00,0x7fe,0x3fe00,0x7f8,0x1ff00,0x7f0,0xff00,0xff0,0xff00,0xff0,0x7f80,0xfe0,0x7f80,0xff0, + 0x7f80,0xff0,0x3f80,0x7f0,0x3f80,0x7f0,0x3f80,0x7f8,0x3f80,0x3fc,0x3f80,0x3fe,0x3f80,0x1ff,0x80003f80,0xff, + 0xc0003f80,0x7f,0xe0003f80,0x3f,0xe0003f80,0x1f,0xf0003f80,0xf,0xf0003f80,0x7,0xf8003f80,0x7,0xf8003f80,0x3,0xf8003f80,0x3, + 0xf8003f80,0x7,0xf8003f80,0x7,0xf0003f80,0xf,0xf0003f80,0x1f,0xe0003f80,0x3f,0xe0003f80,0xff,0xc0003f80,0x1ff,0x80003f80,0x7ff, + 0x3f80,0xfff,0x3f80,0x1ffc,0x3f80,0x3ff8,0x3f80,0x7ff0,0x3f80,0xffc0,0x3f80,0xff80,0x3f80,0x1ff00,0x3f80,0x1fe00, + 0x3f80,0x1fc00,0x3f80,0x3fc00,0x3f80,0x3fc00,0x3f80,0x3f800,0x3f80,0x3f800,0x3f80,0x3fc00,0x3f80,0x3fc00,0x3f80,0x1fc00, + 0x3f80,0x1fe00,0x803f80,0x1fe00,0x7803f80,0xff80,0xff803f80,0xfff1,0xff803f80,0x7fff,0xff803f80,0x3fff,0xff803f80,0x1fff,0xff803f80,0xfff, + 0xfe000000,0x3ff,0x80000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0,0x7fe000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0, + 0x7f80000,0x0,0x7f00000,0x0,0xfe00000,0x0,0x1f800000,0x0,0x3f000000,0x0,0x7e000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7,0xfc000000,0x3, + 0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3e00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00000,0x0,0x7fe00000,0x0,0xfff80000,0x0,0xfffc0000,0x1,0xfffe0000,0x3, + 0xf9ff0000,0x7,0xe07f8000,0xf,0xc01fc000,0x1f,0xfe000,0x3f,0x3f000,0x7e,0xf000,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3e0000,0x1e0,0xff8000,0x1f0,0x3ffc000,0x1f0,0xfffe000,0x1f0,0x3ffff000,0xf8, + 0xfffff000,0xff,0xff81f000,0xff,0xff00f800,0x7f,0xfc00f800,0x3f,0xf000f800,0x1f,0x8000f800,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f, + 0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc00000,0x0, + 0xfff00000,0x0,0xfff80000,0x3,0xfffc0000,0x7,0xfffe0000,0x7,0xe07f0000,0xf,0xc03f0000,0xf,0x801f0000,0xf,0x801f0000,0xf, + 0x801f0000,0xf,0xc03f0000,0xf,0xe07f0000,0xf,0xfffe0000,0x7,0xfffc0000,0x7,0xfff80000,0x3,0xfff00000,0x0,0x1f800000,0x0, + 0x0,0x0,0x0,0x0,0xfff80000,0x0,0xffff0000,0x7,0xffffc000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0x800ffc00,0x1ff,0x3fe00,0x1ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0xff00,0x3fc,0xff00,0x3f8,0xf800,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0xfffc0000,0x7ff,0xffffc000,0x7ff,0xfffff000,0x7ff, + 0xfffff800,0x7ff,0xfffffc00,0x7ff,0x3ffe00,0x7f8,0x7ff00,0x7f8,0x1ff80,0x7f8,0xff80,0x7f8,0x7f80,0x7f8,0x7fc0,0x7f8, + 0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0x7fe,0x3fc0,0x7fe,0x3fc0,0x7ff,0x80007fc0,0x7ff, + 0xc0007f80,0x7ff,0xe000ff80,0xff3,0xf801ff80,0xff1,0xffdfff00,0x1ff1,0xffffff00,0x3fff0,0x7ffffe00,0x3ffe0,0x1ffffc00,0x3ffe0,0xffff000,0x3ffc0, + 0x1ffc000,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1ff000,0x3fc,0x807ffe00,0xfff,0xc0ffff00,0x1fff,0xe3ffff80,0x3fff,0xf3ffffc0,0x7fff,0xffffffe0,0xffff, + 0xfff01fe0,0xff03,0xffe00ff0,0x1fe01,0xffe007f0,0x1fc00,0x7fc007f0,0x3f800,0x7fc007f0,0x3f800,0x3fc007f8,0x3f800,0x3fc003c0,0x3f000,0x3fc00000,0x7f000, + 0x3fc00000,0x7f000,0x3fc00000,0x7f000,0x1fc00000,0x7f000,0x1fc00000,0x7f000,0x1fc00000,0x7e000,0xfffffc00,0x7ffff,0xffffff00,0x7ffff,0xffffffc0,0xfffff, + 0xffffffe0,0xfffff,0xfffffff0,0xfffff,0xffc03ff0,0xfffff,0x1fc00ff8,0x0,0x1fc007fc,0x0,0x1fc003fc,0x0,0x1fc001fc,0x0,0x1fc001fc,0x0, + 0x3fc001fc,0x0,0x3fc001fe,0x0,0x3fc001fe,0x0,0x3fc001fe,0x0,0x3fe001fe,0x0,0x3fe001fe,0x7000,0x7ff001fe,0x3f000,0x7ff001fc,0x3f000, + 0xfef801fc,0x3f800,0xfcfc03fc,0x1fc01,0xfc7e07fc,0x1fe03,0xfc7fdff8,0xffcf,0xf83ffff8,0xffff,0xf01ffff0,0x7fff,0xe00fffe0,0x3fff,0xc007ffc0,0xfff, + 0x1ff00,0x3ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x1,0xfffc0000,0xf,0xffff0000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x3ff800,0x7ff,0xffc00,0xffc,0x3fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0xff00,0x3fe0,0xff00,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0xc0,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0,0x3fe00,0x1ff0, + 0x3fc00,0xff8,0xffc00,0xffc,0x3ff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x1f000000,0x0,0xf000000,0x0,0xf800000,0x0,0x7800000,0x0,0x7f800000,0x0,0xffc00000,0x1,0xffc00000,0x3, + 0xf8000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xc0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xf0000000,0x7,0xfff00000,0x3, + 0xfff00000,0x1,0xfff00000,0x0,0x3ff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fc0000,0x0,0x7f80000,0x0, + 0xff00000,0x0,0x1fe00000,0x0,0x3f800000,0x0,0x7f000000,0x0,0xfe000000,0x0,0xf8000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffc0000,0xf,0xffff0000,0x1f,0xffffc000,0x7f,0xffffe000,0xff,0xfbfff000,0x1ff, + 0x3ff800,0x3ff,0xffc00,0x7fc,0x3fc00,0x7f8,0x3fe00,0xff0,0x1fe00,0xff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x1fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3f80,0x3f80,0x3fc0,0x3f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x3c0,0x1fe00,0x3fc0,0x3fe00,0x1fe0, + 0x7fc00,0x1ff0,0xffc00,0xff8,0x3ff800,0x7fe,0xe3fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f,0xfffc0000,0x1f, + 0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf, + 0xfc000000,0x3,0xfe000000,0x1,0xff000000,0x0,0x3f800000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffc0000,0xf,0xffff0000,0x1f,0xffffc000,0x7f,0xffffe000,0xff,0xfbfff000,0x1ff, + 0x3ff800,0x3ff,0xffc00,0x7fc,0x3fc00,0x7f8,0x3fe00,0xff0,0x1fe00,0xff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x1fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3f80,0x3f80,0x3fc0,0x3f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x3c0,0x1fe00,0x3fc0,0x3fe00,0x1fe0, + 0x7fc00,0x1ff0,0xffc00,0xff8,0x3ff800,0x7fe,0xe3fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f,0xfffc0000,0x1f, + 0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff80000,0x3,0xfffc0000,0x7, + 0xf3fe0000,0xf,0xc0ff0000,0x1f,0x807f8000,0x3f,0x1fc000,0x7e,0x7e000,0xfc,0x1e000,0x1f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffc0000,0xf,0xffff0000,0x1f,0xffffc000,0x7f,0xffffe000,0xff,0xfbfff000,0x1ff, + 0x3ff800,0x3ff,0xffc00,0x7fc,0x3fc00,0x7f8,0x3fe00,0xff0,0x1fe00,0xff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x1fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3f80,0x3f80,0x3fc0,0x3f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x3c0,0x1fe00,0x3fc0,0x3fe00,0x1fe0, + 0x7fc00,0x1ff0,0xffc00,0xff8,0x3ff800,0x7fe,0xe3fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f,0xfffc0000,0x1f, + 0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffc0000,0xf,0xffff0000,0x1f,0xffffc000,0x7f,0xffffe000,0xff,0xfbfff000,0x1ff, + 0x3ff800,0x3ff,0xffc00,0x7fc,0x3fc00,0x7f8,0x3fe00,0xff0,0x1fe00,0xff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x1fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3f80,0x3f80,0x3fc0,0x3f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x3c0,0x1fe00,0x3fc0,0x3fe00,0x1fe0, + 0x7fc00,0x1ff0,0xffc00,0xff8,0x3ff800,0x7fe,0xe3fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f,0xfffc0000,0x1f, + 0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x0,0x1ff8000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff80000,0x0, + 0x1fe00000,0x0,0x1fc00000,0x0,0x3f800000,0x0,0x7e000000,0x0,0xfc000000,0x0,0xf8000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0, + 0xfffff800,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7, + 0xfc000000,0x3,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0, + 0xfffff800,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7, + 0xf3fe0000,0x1f,0xc0ff0000,0x3f,0x807f8000,0x7f,0x1fc000,0xfe,0x7e000,0x1f8,0x3e000,0x1f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0, + 0xfffff800,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe, + 0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xfffff800,0x0, + 0xfffff800,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x80,0x7fc000,0xe0,0x1ff0000,0x1fc,0x3fe0000,0x1ff,0xcff80000,0x3ff,0xfff00000,0xff,0xffc00000,0x3f, + 0xffc00000,0xf,0xfff00000,0x1,0xfffc0000,0x3,0xffff0000,0x7,0xfbffc000,0xf,0xf0ffc000,0x1f,0xe03f8000,0x3f,0xc0078000,0x3f, + 0x80010000,0x7f,0x0,0xff,0x0,0x1ff,0x0,0x1fe,0x0,0x3fc,0x0,0x3fc,0x0,0x7f8,0x7fe00000,0x7f8, + 0xfffe0000,0xff3,0xffff8000,0xfff,0xffffe000,0xfff,0xfffff000,0x1fff,0xfffff800,0x1fff,0x1ffc00,0x1fff,0x7fe00,0x3ffc,0x3fe00,0x3ff8, + 0x1ff00,0x3ff0,0xff00,0x3fe0,0xff80,0x3fe0,0x7f80,0x7fc0,0x7f80,0x7fc0,0x3f80,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x3f80,0x3fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x1fc0,0xff00,0x1fe0,0x1ff00,0x1ff0, + 0x1fe00,0xff8,0x3fe00,0x7fc,0xffc00,0x7ff,0xe0fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffff8000,0x3f,0xffff0000,0xf, + 0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7c0000,0x3e0,0x1ff0000,0x3e0,0x7ff8000,0x3e0,0x1fffc000,0x1f0,0x7fffe000,0x1f0, + 0xffffe000,0x1ff,0xff83f000,0xff,0xfe01f000,0xff,0xf801f000,0x7f,0xe001f000,0x3f,0xf000,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe000000,0x7,0xff807f00,0x3f,0xffe07f00,0xff,0xfff07f00,0x1ff,0xfff87f00,0x3ff,0xfffcff00,0x7ff, + 0xfeff00,0x7ff,0x3fff00,0x7fc,0xfff00,0xff8,0x7ff00,0xff0,0x7ff00,0xff0,0x3ff00,0x1fe0,0x1ff00,0x1fe0,0x1ff00,0x1fe0, + 0x1ff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x0,0x1ff8000,0x0,0x3fe0000,0x0,0x3fc0000,0x0,0x7f80000,0x0, + 0xfe00000,0x0,0x1fc00000,0x0,0x3f800000,0x0,0x7f000000,0x0,0xfc000000,0x0,0xf8000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x0,0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfbfff000,0x3ff, + 0x1ff800,0x3ff,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0xff0,0x1fe00,0xff0, + 0x3fe00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xe0fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf,0xf8000000,0x7, + 0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x0,0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfbfff000,0x3ff, + 0x1ff800,0x3ff,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0xff0,0x1fe00,0xff0, + 0x3fe00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xe0fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7, + 0xf3fe0000,0xf,0xe0ff0000,0x1f,0x803f8000,0x3f,0x1fc000,0x7e,0x7e000,0xfc,0x1f000,0xf0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x0,0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfbfff000,0x3ff, + 0x1ff800,0x3ff,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0xff0,0x1fe00,0xff0, + 0x3fe00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xe0fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3e0000,0x3e0,0x1ff8000,0x1e0,0x7ffc000,0x1f0,0x1fffe000,0x1f0,0x3fffe000,0x1f8, + 0xfffff000,0xff,0xff81f000,0xff,0xfe01f000,0x7f,0xf800f000,0x7f,0xe000f800,0x1f,0xf800,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x0,0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfbfff000,0x3ff, + 0x1ff800,0x3ff,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0xff0,0x1fe00,0xff0, + 0x3fe00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xe0fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x0,0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfbfff000,0x3ff, + 0x1ff800,0x3ff,0x7fc00,0x7fc,0x3fe00,0xff8,0x1fe00,0xff0,0x1ff00,0x1ff0,0xff00,0x1fe0,0xff00,0x1fe0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0,0x7fc0,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1ff00,0xff0,0x1fe00,0xff0, + 0x3fe00,0x7f8,0x7fc00,0x7fc,0x1ff800,0x3ff,0xe0fff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff8000,0x3f,0xfffe0000,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffe00000,0x1,0xfffe0000,0x180f,0xffff8000,0x3c3f,0xffffe000,0x7eff,0xfffff000,0x3fff,0xfbfff800,0x1fff, + 0x1ffc00,0xfff,0x7fe00,0xffc,0x3fe00,0xff8,0x1ff00,0x1ff0,0xff00,0x1ff8,0xff80,0x3ffc,0x7f80,0x3ffe,0x7fc0,0x3fff, + 0x80003fc0,0x7f9f,0x80003fc0,0x7f8f,0xc0003fc0,0x7f8f,0xe0003fc0,0x7f87,0xf0001fe0,0x7f83,0xf8001fe0,0xff01,0xfc001fe0,0xff00,0x7e001fe0,0xff00, + 0x3f001fe0,0xff00,0x1f001fe0,0xff00,0x1f801fe0,0xff00,0xfc01fe0,0xff00,0x7e01fe0,0xff00,0x3f01fe0,0xff00,0x1f81fe0,0x7f00,0xfc3fc0,0x7f80, + 0x7e3fc0,0x7f80,0x3f3fc0,0x7f80,0x1f3fc0,0x7f80,0x1fff80,0x3fc0,0xfff80,0x3fc0,0x7ff80,0x3fc0,0x3ff00,0x1fe0,0x1ff00,0x1ff0, + 0x3fe00,0xff8,0x7fe00,0x7fc,0xffe00,0x7ff,0xe0ffff00,0x3ff,0xffffff80,0x1ff,0xffffefc0,0xff,0xffff8780,0x3f,0xfffe0300,0xf, + 0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc000,0x0,0xffc000,0x0,0x1ff0000,0x0,0x1fe0000,0x0,0x3fc0000,0x0, + 0x7f80000,0x0,0xfe00000,0x0,0x1fc00000,0x0,0x3f800000,0x0,0x7e000000,0x0,0x7c000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1ff0,0xff00,0x1ff0,0xfe00,0x1ff8,0x1fe00,0x1ff8,0x1fe00,0x1ffc, + 0x3fe00,0x1ffe,0x7fc00,0x1fdf,0xc00ffc00,0x1fcf,0xfffffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1,0x7fffc000,0x1fc0, + 0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc0000000,0x7f,0xe0000000,0x7f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7, + 0xfe000000,0x1,0xff000000,0x0,0x7f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1ff0,0xff00,0x1ff0,0xfe00,0x1ff8,0x1fe00,0x1ff8,0x1fe00,0x1ffc, + 0x3fe00,0x1ffe,0x7fc00,0x1fdf,0xc00ffc00,0x1fcf,0xfffffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1,0x7fffc000,0x1fc0, + 0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7, + 0xf3fe0000,0xf,0xe0ff0000,0x1f,0x803f8000,0x3f,0x1fc000,0x7e,0x7e000,0xfc,0x1f000,0xf0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1ff0,0xff00,0x1ff0,0xfe00,0x1ff8,0x1fe00,0x1ff8,0x1fe00,0x1ffc, + 0x3fe00,0x1ffe,0x7fc00,0x1fdf,0xc00ffc00,0x1fcf,0xfffffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1,0x7fffc000,0x1fc0, + 0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f, + 0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x803f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0, + 0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00,0x1ff0,0xff00,0x1ff0,0xfe00,0x1ff8,0x1fe00,0x1ff8,0x1fe00,0x1ffc, + 0x3fe00,0x1ffe,0x7fc00,0x1fdf,0xc00ffc00,0x1fcf,0xfffffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1,0x7fffc000,0x1fc0, + 0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7, + 0xfc000000,0x3,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x1fe00,0xff0,0x1fe00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x7f80,0x3f80,0x7f80,0x3fc0,0x7f00,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1fe00,0xfe0, + 0x1fe00,0xff0,0x3fc00,0x7f0,0x3fc00,0x7f8,0x3f800,0x7f8,0x7f800,0x3f8,0x7f000,0x3fc,0xff000,0x1fc,0xff000,0x1fe, + 0xfe000,0xfe,0x1fe000,0xfe,0x1fc000,0xff,0x3fc000,0x7f,0x803f8000,0x7f,0x803f8000,0x3f,0x807f8000,0x3f,0xc07f0000,0x3f, + 0xc0ff0000,0x1f,0xe0fe0000,0x1f,0xe0fe0000,0xf,0xe1fc0000,0xf,0xf1fc0000,0x7,0xf3f80000,0x7,0xfbf80000,0x7,0xfbf80000,0x3, + 0xfff00000,0x3,0xfff00000,0x1,0xffe00000,0x1,0xffe00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f00000,0x0, + 0x7f80000,0x0,0x3fc0000,0x0,0x3fe0000,0x0,0x1ff8000,0x0,0xfff100,0x0,0x7fff00,0x0,0x3fff00,0x0,0x1fff00,0x0, + 0xfff00,0x0,0x3ff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00ff00,0x7,0xffc0ff00,0x3f,0xfff0ff00,0x7f,0xfff8ff00,0x1ff,0xfffcff00,0x3ff,0xfffcff00,0x3ff, + 0x7eff00,0x7ff,0x1fff00,0xffc,0xfff00,0xff8,0x7ff00,0x1ff0,0x7ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0,0x1ff00,0x3fc0, + 0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x7f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3f80,0xff00,0x3fc0, + 0xff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x1ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0,0x7ff00,0xff0, + 0xfff00,0xff8,0x1fff00,0x7fc,0x3eff00,0x7fe,0xc1feff00,0x3ff,0xfffcff00,0x1ff,0xfff8ff00,0x1ff,0xfff0ff00,0x7f,0xffc0ff00,0x3f, + 0xff00ff00,0xf,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x3f,0x3f8000,0x3f,0x3f8000,0x3f, + 0x3f8000,0x3f,0x3f8000,0x3f,0x3f8000,0x3f,0x3f8000,0x3f,0x3f8000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x1fe00,0xff0,0x1fe00,0x1fe0,0xff00,0x1fe0,0xff00,0x1fe0,0xff00, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x7f80,0x3f80,0x7f80,0x3fc0,0x7f00,0x3fc0,0xff00,0x1fe0,0xff00,0x1fe0,0x1fe00,0xfe0, + 0x1fe00,0xff0,0x3fc00,0x7f0,0x3fc00,0x7f8,0x3f800,0x7f8,0x7f800,0x3f8,0x7f000,0x3fc,0xff000,0x1fc,0xff000,0x1fe, + 0xfe000,0xfe,0x1fe000,0xfe,0x1fc000,0xff,0x3fc000,0x7f,0x803f8000,0x7f,0x803f8000,0x3f,0x807f8000,0x3f,0xc07f0000,0x3f, + 0xc0ff0000,0x1f,0xe0fe0000,0x1f,0xe0fe0000,0xf,0xe1fc0000,0xf,0xf1fc0000,0x7,0xf3f80000,0x7,0xfbf80000,0x7,0xfbf80000,0x3, + 0xfff00000,0x3,0xfff00000,0x1,0xffe00000,0x1,0xffe00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0,0xff00000,0x0,0x7f00000,0x0, + 0x7f80000,0x0,0x3fc0000,0x0,0x3fe0000,0x0,0x1ff8000,0x0,0xfff100,0x0,0x7fff00,0x0,0x3fff00,0x0,0x1fff00,0x0, + 0xfff00,0x0,0x3ff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,54,-1,5,50,0,0,0,0,0 +const unsigned int ff16_height = 82; +const unsigned int ff16_line_height = 82; +const unsigned int ff16_width = 43; +const unsigned int ff16_stride = 2; +const unsigned char ff16_first_char = ' '; + +uint32_t ff16_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc03fc00,0x3,0xfc03fc00,0x3,0xfc03fc00,0x3,0xfc03fc00,0x3,0xfc03f800,0x3,0xfc03f800,0x3,0xfc03f800,0x1,0xfc03f800,0x1, + 0xf803f800,0x1,0xf803f800,0x1,0xf801f800,0x1,0xf801f800,0x1,0xf801f800,0x1,0xf801f800,0x1,0xf801f800,0x1,0xf801f800,0x1, + 0xf801f800,0x1,0xf801f800,0x1,0xf801f800,0x1,0xf801f800,0x1,0xf801f000,0x1,0xf801f000,0x1,0xf801f000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000,0x1e,0xf0000,0x1e,0xf0000,0x1e, + 0xf0000,0xf,0x70000,0xf,0x78000,0xf,0x78000,0xf,0x78000,0x7,0x80078000,0x7,0x80038000,0x7,0x8003c000,0x7, + 0x8003c000,0x7,0x8003c000,0x3,0xc003c000,0x3,0xfffffff0,0x1ff,0xfffffff0,0x1ff,0xfffffff0,0x1ff,0xfffffff0,0x1ff,0xe001e000,0x1, + 0xe000f000,0x1,0xe000f000,0x1,0xe000f000,0x1,0xf000f000,0x0,0xf0007000,0x0,0xf0007800,0x0,0xf0007800,0x0,0x70007800,0x0, + 0x78007800,0x0,0x78003c00,0x0,0xfffffffc,0xff,0xfffffffc,0xff,0xfffffffc,0xff,0xfffffffc,0xff,0x3c001e00,0x0,0x3c001e00,0x0, + 0x3c001e00,0x0,0x1e001e00,0x0,0x1e000e00,0x0,0x1e000f00,0x0,0x1e000f00,0x0,0xe000f00,0x0,0xf000f00,0x0,0xf000700,0x0, + 0xf000780,0x0,0xf000780,0x0,0x7800780,0x0,0x7800780,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0xffe0000,0x0,0xffffe000,0x0,0xfffffc00,0x3, + 0xfffffe00,0x7,0xffffff00,0xf,0xf1f0ff80,0x1f,0xc1f03fc0,0x3f,0x81f01fc0,0x3f,0x1f00fe0,0x7f,0x1f007e0,0x7e,0x1f007e0,0xfe, + 0x1f007e0,0xfe,0x1f007e0,0x0,0x1f007e0,0x0,0x1f00fe0,0x0,0x1f00fc0,0x0,0x1f01fc0,0x0,0x1f07f80,0x0,0x1f1ff80,0x0, + 0x1ffff00,0x0,0x7fffe00,0x0,0x7ffff800,0x0,0xffffe000,0x1,0xffff0000,0x7,0xfff80000,0x1f,0xfff00000,0x3f,0xf1f00000,0x7f, + 0x81f00000,0x7f,0x1f00000,0xff,0x1f00000,0xfe,0x1f00000,0xfc,0x1f00000,0x1fc,0x1f00000,0x1f8,0x1f001c0,0x1f8,0x1f001f8,0x1f8, + 0x1f003f8,0x1f8,0x1f003f8,0x1fc,0x1f007f0,0xfc,0x1f007f0,0xfe,0x1f01fe0,0xff,0x81f03fc0,0x7f,0xf1f1ffc0,0x3f,0xffffff80,0x1f, + 0xfffffe00,0xf,0xfffffc00,0x3,0xffffe000,0x0,0x7fe0000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0,0x1f0,0x1fff0,0xf8,0x3fff8,0x7c, + 0x7fbfc,0x7e,0x7c07c,0x3e,0xfc07e,0x1f,0x800f803e,0x1f,0x800f803e,0xf,0xc00f803e,0x7,0xe01f803e,0x7,0xe01f803e,0x3, + 0xf01f003e,0x1,0xf81f803e,0x0,0xf81f803e,0x0,0x7c0f803e,0x0,0x3e0f803e,0x0,0x3e0f803e,0x0,0x1f0fc07e,0x0,0xf87e0fc,0x0, + 0xfc7fffc,0x0,0x7c3fff8,0x0,0x3e1fff0,0x0,0x3f07fc0,0x0,0x1f00000,0x0,0xc0f80000,0x1f,0xf07c0000,0x7f,0xf87c0000,0x1ff, + 0xfc3e0000,0x3ff,0x7e1f0000,0x3f0,0x3e1f0000,0x7e0,0x3f0f8000,0x7c0,0x1f07c000,0x7c0,0x1f07c000,0x7c0,0x1f03e000,0x7c0,0x1f01f000,0x7c0, + 0x1f01f800,0x780,0x1f00f800,0x780,0x1f007c00,0x7c0,0x1f003e00,0x7c0,0x1f003e00,0x7c0,0x1f001f00,0x7c0,0x3f000f80,0x7c0,0x3e000f80,0x7e0, + 0xfe0007c0,0x3f0,0xfc0003e0,0x1ff,0xf80003e0,0x1ff,0xf00001f0,0x7f,0x80000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0x1fff8000,0x0,0x3fffe000,0x0, + 0x7ffff000,0x0,0xfe07f800,0x0,0xfc01f800,0x1,0xf800fc00,0x1,0xf0007c00,0x1,0xf0007c00,0x1,0xf0007c00,0x1,0xf0007c00,0x1, + 0xf8007c00,0x1,0xf8007c00,0x1,0xfc007c00,0x0,0x7e007c00,0x0,0x3f80fc00,0x0,0x1fe0f800,0x0,0xff9f800,0x0,0x7fff800,0x0, + 0x1fff000,0x0,0x7ff000,0x0,0xffc00,0x0,0x7fe00,0xe,0xfff80,0x3e,0xfffc0,0x3f,0x1f9fe0,0x3f,0x3f07e0,0x1f, + 0x3f03f0,0x1f,0x807e03f8,0x1f,0x80fc01f8,0x1f,0x80fc01f8,0xf,0xc1f800fc,0xf,0xc3f800fc,0xf,0xc7f000fc,0x7,0xefe000fc,0x7, + 0xefc000fc,0x3,0xffc000fc,0x3,0xff8000fc,0x1,0xff0001fc,0x1,0xfe0001f8,0x1,0xfe0003f8,0x3,0xff8007f0,0x7,0xffc00ff0,0x1f, + 0xfffcffe0,0x3ff,0xc7ffffc0,0x3ff,0x83ffff80,0x3ff,0xfffe00,0x3fe,0x1ff800,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7e00000,0x0,0x7f00000,0x0, + 0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f0000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1fc000,0x0,0x1fc000,0x0,0x1fc000,0x0,0xfc000,0x0,0xfe000,0x0, + 0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0xfc000,0x0,0xfc000,0x0,0x1fc000,0x0,0x1fc000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x3f8000,0x0,0x3f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7e0000,0x0,0xfe0000,0x0, + 0xfc0000,0x0,0x1fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0,0x1fc00000,0x0, + 0x3f800000,0x0,0x3f000000,0x0,0x7f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x1f8000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfe0000,0x0,0xfe0000,0x0, + 0x1fc0000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfc00000,0x0, + 0x1fc00000,0x0,0x1fc00000,0x0,0x1f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x7f000000,0x0, + 0x7f000000,0x0,0x7f000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0xfe000000,0x0, + 0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0xfe000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0x7e000000,0x0, + 0x7e000000,0x0,0x7e000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0,0x7e00000,0x0,0x7f00000,0x0, + 0x3f00000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0, + 0x1f8000,0x0,0x1fc000,0x0,0xfe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00000,0x0,0xf00800,0x3, + 0xc0f03c00,0x3,0xf8f1fc00,0x3,0xfef7fc00,0x7,0xfffffe00,0x7,0xfffff000,0x0,0xfff0000,0x0,0x1f80000,0x0,0x3fc0000,0x0, + 0x7fe0000,0x0,0x7be0000,0x0,0xf9f0000,0x0,0x1f0f8000,0x0,0x3f0fc000,0x0,0x3e07c000,0x0,0x7c03e000,0x0,0x7c03e000,0x0, + 0x18018000,0x0,0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1ff8000,0x0,0xff8000,0x0,0xff8000,0x0,0x7f8000,0x0,0x7fc000,0x0,0x3fc000,0x0, + 0x3fc000,0x0,0x1fc000,0x0,0x1fe000,0x0,0xfe000,0x0,0xfe000,0x0,0x7e000,0x0,0x7f000,0x0,0x7f000,0x0, + 0x3f000,0x0,0x3f000,0x0,0x1f800,0x0,0x1f800,0x0,0xf800,0x0,0xf800,0x0,0x7c00,0x0,0x7c00,0x0, + 0x3c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffff000,0x0, + 0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xfe,0x0,0x7e,0x0,0x3f,0x0,0x3f,0x80000000,0x1f,0x80000000,0x1f,0xc0000000,0xf,0xe0000000,0xf, + 0xe0000000,0x7,0xf0000000,0x7,0xf0000000,0x3,0xf8000000,0x3,0xf8000000,0x1,0xfc000000,0x0,0xfc000000,0x0,0x7e000000,0x0, + 0x7e000000,0x0,0x3f000000,0x0,0x3f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0,0x7e00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0, + 0x3f0000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1fc000,0x0,0xfc000,0x0,0x7e000,0x0,0x7e000,0x0,0x3f000,0x0, + 0x3f800,0x0,0x1f800,0x0,0x1fc00,0x0,0xfc00,0x0,0xfe00,0x0,0x7e00,0x0,0x7f00,0x0,0x3f00,0x0, + 0x1f80,0x0,0x1f80,0x0,0xfc0,0x0,0xfe0,0x0,0x7e0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x1,0xffbffc00,0x3,0xf801fe00,0x7,0xf000ff00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80003f80,0x1f,0x80001f80,0x1f, + 0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7e,0x7e0,0x7e, + 0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x3fc07e0,0x7e, + 0x3fc07e0,0x7e,0x7e0,0x7e,0xfe0,0x7e,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f, + 0x80001fc0,0x3f,0x80001f80,0x1f,0x80001f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xe0007f00,0xf,0xf801fe00,0x7,0xfe07fc00,0x3, + 0xfffffc00,0x3,0xfffff000,0x0,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc00000,0x0,0xfe00000,0x0,0xff00000,0x0, + 0xff80000,0x0,0xffc0000,0x0,0xfff0000,0x0,0xfffc000,0x0,0xffff800,0x0,0xfefffc0,0x0,0xfe7ffc0,0x0,0xfe1ffc0,0x0, + 0xfe07fc0,0x0,0xfe007c0,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1fff8000,0x0,0xffffe000,0x0,0xfffff800,0x1, + 0xfffffc00,0x3,0xfffffe00,0x7,0xf801fe00,0xf,0xe000ff00,0x1f,0xc0007f80,0x1f,0xc0003f80,0x1f,0x80001f80,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001f00,0x3f,0x80000000,0x3f,0x80000000,0x3f,0x80000000,0x1f,0xc0000000,0x1f,0xc0000000,0x1f,0xe0000000,0xf, + 0xf0000000,0xf,0xf0000000,0x7,0xf8000000,0x3,0xfc000000,0x1,0xfe000000,0x1,0xff800000,0x0,0x7fc00000,0x0,0x1fe00000,0x0, + 0xff00000,0x0,0x7f80000,0x0,0x3fc0000,0x0,0x1ff0000,0x0,0xff8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0xff000,0x0, + 0x7f800,0x0,0x3fc00,0x0,0x1fe00,0x0,0xfe00,0x0,0x7f00,0x0,0x3f80,0x0,0x3f80,0x0,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x3fff8000,0x0,0xffffe000,0x0,0xfffff800,0x1, + 0xfffffc00,0x7,0xfffffe00,0x7,0xf801ff00,0xf,0xe0007f00,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80000fc0,0x3f,0x80000e00,0x3f,0x80000000,0x3f,0x80000000,0x1f,0x80000000,0x1f,0xc0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7, + 0xfc000000,0x7,0xffc00000,0x1,0xfffe0000,0x0,0x3ffe0000,0x0,0x1ffe0000,0x0,0xfffe0000,0x0,0xfffe0000,0x3,0xfe000000,0x7, + 0xf0000000,0xf,0xe0000000,0x1f,0x80000000,0x3f,0x80000000,0x3f,0x0,0x7f,0x0,0x7f,0x0,0x7f,0xf00,0x7e, + 0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0x1fc0,0x7f,0x80003fc0,0x3f,0xc0007f80,0x3f,0xe000ff80,0x1f,0xfc07ff00,0x1f, + 0xfffffe00,0xf,0xfffffc00,0x7,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xff000000,0x1,0xff800000,0x1,0xff800000,0x1,0xffc00000,0x1,0xffe00000,0x1,0xfbf00000,0x1,0xf9f00000,0x1,0xf9f80000,0x1, + 0xf8fc0000,0x1,0xf87c0000,0x1,0xf83e0000,0x1,0xf83f0000,0x1,0xf81f8000,0x1,0xf80f8000,0x1,0xf807c000,0x1,0xf807e000,0x1, + 0xf803e000,0x1,0xf801f000,0x1,0xf801f800,0x1,0xf800fc00,0x1,0xf8007c00,0x1,0xf8003e00,0x1,0xf8003f00,0x1,0xf8001f00,0x1, + 0xf8000f80,0x1,0xf8000fc0,0x1,0xf80007e0,0x1,0xf80003e0,0x1,0xfffffff0,0xff,0xfffffff0,0xff,0xfffffff0,0xff,0xfffffff0,0xff, + 0xfffffff0,0xff,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1, + 0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0xf8000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0xf,0xffffff00,0xf,0xffffff00,0xf, + 0xffffff00,0xf,0xffffff00,0xf,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0xff81f80,0x0,0x7fff1f80,0x0, + 0xffffdf80,0x1,0xffffff80,0x3,0xffffff80,0x7,0xfe07ff80,0xf,0xf000ff80,0x1f,0xe0003f80,0x1f,0xc0001fc0,0x3f,0x80000000,0x3f, + 0x0,0x3f,0x0,0x7f,0x0,0x7f,0x0,0x7f,0x0,0x7e,0x0,0x7e,0x0,0x7f,0x0,0x7f, + 0x0,0x7f,0xfe0,0x7f,0x80000fe0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x1f,0xe0003fc0,0x1f,0xf0007f80,0xf,0xfe03ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x1,0xfffff800,0x0,0x3fffe000,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00000,0x0,0x3ffe0000,0x0,0xffff8000,0x0,0xffffc000,0x1, + 0xffffe000,0x3,0xff7ff000,0x7,0xf007f800,0xf,0xe003fc00,0x1f,0xc001fc00,0x1f,0x8000fe00,0x1f,0x80007f00,0x1f,0x7f00,0x0, + 0x3f00,0x0,0x3f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x3ff81fc0,0x0,0xffff0fc0,0x0, + 0xffff8fc0,0x3,0xffffcfc0,0x7,0xff1fefc0,0xf,0xf803efc0,0xf,0xe000ffc0,0x1f,0xc0007fc0,0x1f,0x80003fc0,0x3f,0x80003fc0,0x3f, + 0x1fc0,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7e,0x1f80,0x7e,0x1f80,0x7f,0x1f80,0x7f, + 0x1f80,0x7f,0x3f00,0x3f,0x3f00,0x3f,0x80007f00,0x3f,0xc000fe00,0x1f,0xc001fe00,0x1f,0xf003fc00,0xf,0xfc0ff800,0xf, + 0xfffff000,0x7,0xfffff000,0x3,0xffffc000,0x1,0x7fff8000,0x0,0xffc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0x0,0x3f,0x80000000,0x1f,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x3,0xf8000000,0x1,0xfc000000,0x1,0xfc000000,0x0,0x7e000000,0x0,0x7e000000,0x0,0x3f000000,0x0,0x3f800000,0x0, + 0x1f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0xfe00000,0x0,0x7e00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0x7e0000,0x0, + 0x7e0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1fff8000,0x0,0xffffe000,0x0,0xfffff800,0x1, + 0xfffffc00,0x3,0xfc03fe00,0x7,0xf000ff00,0xf,0xe0007f00,0x1f,0xc0003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001f80,0x3f,0x80001f80,0x1f,0x80003f80,0x1f,0xc0003f00,0x1f,0xe0007f00,0xf,0xf000fe00,0x7, + 0xfc03fc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x1fff8000,0x0,0xfffff000,0x0,0xfffffc00,0x3,0xfc03fe00,0x7,0xe0007f00,0xf, + 0xc0003f80,0x1f,0x80001f80,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0003f80,0x3f,0xe0007f80,0x1f,0xf801ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0xfff8000,0x0,0x3fffe000,0x0,0xfffff800,0x0, + 0xfffffc00,0x1,0xffdffe00,0x3,0xfc01ff00,0x7,0xf800ff00,0x7,0xe0007f80,0xf,0xe0003f80,0xf,0xc0001fc0,0x1f,0xc0001fc0,0x1f, + 0x80000fc0,0x1f,0x80000fc0,0x3f,0x80000fc0,0x3f,0xfc0,0x3f,0xfe0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x7f, + 0xfc0,0x7f,0x80001fc0,0x7f,0x80001fc0,0x7f,0xc0003f80,0x7f,0xe0003f80,0x7f,0xf000ff00,0x7f,0xfc01ff00,0x7f,0x7f8ffe00,0x7f, + 0x7ffffc00,0x3f,0x1ffff800,0x3f,0xffff000,0x3f,0x3ffc000,0x3f,0x380000,0x3f,0x0,0x3f,0x80000000,0x3f,0x80000000,0x1f, + 0x80000000,0x1f,0xc0000000,0x1f,0xc0001e00,0xf,0xe0001f80,0xf,0xf0003f80,0x7,0xf8007f80,0x7,0xfc007f00,0x3,0xff01ff00,0x1, + 0xfffffe00,0x0,0x7ffffc00,0x0,0x3ffff800,0x0,0xfffe000,0x0,0x3ff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fe0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0xfe0000,0x0,0xff0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x3f0000,0x0,0x3f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0xf8000,0x0,0xfc000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x3e000,0x0, + 0x3e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x0,0xf8,0x0,0xff,0xc0000000,0xff,0xf0000000,0xff, + 0xfe000000,0x3f,0xff800000,0xf,0xffe00000,0x3,0x7ffc0000,0x0,0x1fff0000,0x0,0x7ffe000,0x0,0xfff800,0x0,0x3ffe00,0x0, + 0x7ffc0,0x0,0x1ffe0,0x0,0x7fe0,0x0,0xfe0,0x0,0x3e0,0x0,0x7e0,0x0,0x1fe0,0x0,0xffe0,0x0, + 0x3ffe0,0x0,0xfff80,0x0,0x7ffc00,0x0,0x1fff000,0x0,0x7ffc000,0x0,0x3ffe0000,0x0,0xfff80000,0x0,0xffe00000,0x3, + 0xff000000,0x1f,0xfc000000,0x7f,0xe0000000,0xff,0x80000000,0xff,0x0,0xfe,0x0,0xf0,0x0,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x1e0,0x0,0xfe0,0x0,0x3fe0,0x0,0xffe0,0x0, + 0x7ffc0,0x0,0x1fff00,0x0,0xfff800,0x0,0x3ffe000,0x0,0xfff8000,0x0,0x7ffc0000,0x0,0xfff00000,0x1,0xffc00000,0x7, + 0xfe000000,0x3f,0xf8000000,0xff,0xe0000000,0xff,0x0,0xff,0x0,0xfc,0x0,0xfe,0x80000000,0xff,0xf0000000,0xff, + 0xfc000000,0x7f,0xff000000,0x1f,0xffe00000,0x7,0xfff80000,0x0,0x3ffe0000,0x0,0x7ffc000,0x0,0x1fff000,0x0,0x7ffc00,0x0, + 0xfff80,0x0,0x3ffe0,0x0,0xffe0,0x0,0x1fe0,0x0,0x7e0,0x0,0xe0,0x0,0x20,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf80000,0x0,0x1fffc000,0x0,0xfffff000,0x0,0xfffffc00,0x1, + 0xfffffe00,0x7,0xffffff00,0xf,0xf801ff80,0xf,0xe0007fc0,0x1f,0xc0001fc0,0x1f,0x80000fe0,0x3f,0x80000fe0,0x3f,0x7e0,0x3f, + 0x7f0,0x3f,0x7f0,0x3f,0x3f0,0x3f,0x0,0x3f,0x80000000,0x3f,0x80000000,0x3f,0xc0000000,0x1f,0xe0000000,0x1f, + 0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x1,0xff800000,0x0,0x7fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0, + 0x7f80000,0x0,0x3fc0000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0, + 0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x7f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e00000,0x0,0x3ffc0000,0x0,0xffff8000,0x0,0xffffc000,0x3,0xfc7ff000,0x7,0xe007f800,0xf,0x8001fc00,0x1f,0xfc00,0x1f, + 0x7e00,0x3e,0x3f00,0x7e,0x1f00,0x7c,0xf80,0xf8,0x7c0,0xf8,0x7c0,0xf0,0x3f003c0,0x1f0,0x87fc03e0,0x1f7, + 0xcffe03e0,0x1e7,0xdf3f01e0,0x1e3,0xdc0f81f0,0x3e3,0xd807c1f0,0x3e3,0xf807c0f0,0x3c3,0xf803e0f8,0x3c3,0xf003e0f8,0x3c1,0xf001f0f8,0x3c1, + 0xf001f078,0x3c1,0xf000f078,0x3c1,0xf000f878,0x3c1,0xf000f87c,0x3c0,0xf800f87c,0x3c0,0xf800f87c,0x3c0,0xf800787c,0x3c0,0xf8007c7c,0x3c0, + 0x78007c7c,0x3c0,0x78007c7c,0x3c0,0x7c007c3c,0x3e0,0x7c007c7c,0x3e0,0x7c007c7c,0x1e0,0x7c007c7c,0x1e0,0x3e007c7c,0x1e0,0x3e00787c,0x1f0, + 0x3f00787c,0xf0,0x3f00f878,0xf0,0x3b80f878,0x78,0x3bc0f878,0x78,0x79e1f0f8,0x3c,0xf8fff0f8,0x3f,0xf87fe0f0,0x1f,0xf03fc1f0,0xf, + 0xc00f01f0,0x3,0x1e0,0x0,0x3e0,0x0,0x3e0,0x0,0x7c0,0x0,0xf80,0x4,0x1f80,0xf,0x80003f00,0x1f, + 0xe0007e00,0xf,0xf801fc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x3fffe000,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffc0,0x0,0x7fffffc0,0x0,0xffffffc0,0x1, + 0xffffffc0,0x3,0xffffffc0,0xf,0xffc01fc0,0xf,0xf0001fc0,0x1f,0xe0001fc0,0x1f,0xc0001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x1f,0xc0001fc0,0x1f,0xe0001fc0,0xf,0xf0001fc0,0xf, + 0xfc001fc0,0x7,0xffffffc0,0x1,0xffffffc0,0x0,0x1fffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x7,0xfe001fc0,0x1f,0xe0001fc0,0x3f, + 0x80001fc0,0x7f,0x1fc0,0x7f,0x1fc0,0xfe,0x1fc0,0xfc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fc, + 0x1fc0,0x1fc,0x1fc0,0x1fc,0x1fc0,0x1fe,0x1fc0,0xfe,0x1fc0,0xff,0xc0001fc0,0x7f,0xf0001fc0,0x7f,0xffffffc0,0x3f, + 0xffffffc0,0x1f,0xffffffc0,0x7,0xffffffc0,0x1,0x7fffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00000,0x0,0x3fff0000,0x0,0xffffc000,0x0,0xfffff000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf807fe00,0x1f,0xe001fe00,0x1f,0xc000ff00,0x3f,0x80007f80,0x3f,0x3f80,0x7f,0x3f80,0x7f, + 0x1fc0,0x7e,0x1fc0,0xe,0x1fc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xff0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x1fc0,0x18,0x1fc0,0x7c, + 0x1fc0,0xfc,0x3f80,0xfe,0x3f80,0x7e,0x7f80,0x7f,0x8000ff00,0x3f,0xc001fe00,0x3f,0xf003fe00,0x1f,0xfc1ffc00,0xf, + 0xfffff800,0x7,0xfffff000,0x3,0xffffc000,0x1,0x7fff8000,0x0,0xffc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffc0,0x0,0x7ffffc0,0x0,0x1fffffc0,0x0, + 0x7fffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x3,0xff001fc0,0x7,0xfc001fc0,0xf,0xf0001fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7e,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0xc0001fc0,0x1f,0xe0001fc0,0x1f,0xf0001fc0,0xf,0xf8001fc0,0xf,0xfc001fc0,0x7,0xff801fc0,0x3,0xffffffc0,0x1, + 0xffffffc0,0x0,0x7fffffc0,0x0,0x1fffffc0,0x0,0x3ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f, + 0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x3f,0xffffff80,0x3f, + 0xffffff80,0x3f,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0, + 0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e00000,0x0,0x3fff0000,0x0,0xffffc000,0x0,0xfffff000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf807fe00,0xf,0xe001ff00,0x1f,0xc000ff00,0x3f,0x80007f80,0x3f,0x3f80,0x7f,0x3fc0,0x7f, + 0x1fc0,0x3e,0x1fc0,0x6,0x1fc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xffc00ff0,0x7f,0xffc00fe0,0x7f,0xffc00fe0,0x7f,0xffc00fe0,0x7f, + 0xffc00fe0,0x7f,0xfe0,0x7e,0xfe0,0x7e,0xfe0,0x7e,0xfe0,0x7e,0xfe0,0x7e,0x1fc0,0x7e,0x1fc0,0x7e, + 0x1fc0,0x7e,0x3f80,0x7e,0x3f80,0x7e,0x7f80,0x7e,0xff00,0x7e,0x1fe00,0x7f,0xc003fe00,0x7f,0xfc1ffc00,0x7f, + 0xfffff800,0x3f,0xfffff000,0xf,0xffffc000,0x3,0xffff8000,0x0,0x1ffc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffc0000,0x7,0xfffc0000,0x7,0xfffc0000,0x7, + 0xfffc0000,0x7,0xfffc0000,0x7,0xfffc0000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0001800,0x7, + 0xf0003f80,0x7,0xf0003f80,0x7,0xf0003f80,0x7,0xf0007f00,0x3,0xf8007f00,0x3,0xfc00ff00,0x3,0xfe01fe00,0x1,0xff87fe00,0x1, + 0xfffffc00,0x0,0x7ffff800,0x0,0x3ffff000,0x0,0xfffc000,0x0,0x3ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x1fe,0x1fc0,0xff,0x80001fc0,0x7f, + 0xc0001fc0,0x3f,0xe0001fc0,0x1f,0xf0001fc0,0xf,0xf0001fc0,0x7,0xf8001fc0,0x3,0xfc001fc0,0x3,0xfe001fc0,0x1,0xff001fc0,0x0, + 0x7f801fc0,0x0,0x3fc01fc0,0x0,0x1fc01fc0,0x0,0xfe01fc0,0x0,0x7f01fc0,0x0,0x3f81fc0,0x0,0x3fc1fc0,0x0,0x1fe1fc0,0x0, + 0xfe1fc0,0x0,0x7f1fc0,0x0,0xff9fc0,0x0,0x1ffdfc0,0x0,0x3ffffc0,0x0,0x3ffffc0,0x0,0x7fbffc0,0x0,0xff1ffc0,0x0, + 0x1fe0ffc0,0x0,0x1fe07fc0,0x0,0x3fc03fc0,0x0,0x7f801fc0,0x0,0xff001fc0,0x0,0xff001fc0,0x0,0xfe001fc0,0x1,0xfc001fc0,0x3, + 0xf8001fc0,0x7,0xf8001fc0,0x7,0xf0001fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x7f,0x1fc0,0xff, + 0x1fc0,0x1fe,0x1fc0,0x1fe,0x1fc0,0x3fc,0x1fc0,0x7f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfffffe00,0x7f, + 0xfffffe00,0x7f,0xfffffe00,0x7f,0xfffffe00,0x7f,0xfffffe00,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80003fe0,0x7f,0x80003fe0,0x7f,0xc0003fe0,0x7f, + 0xc0007fe0,0x7f,0xc0007fe0,0x7f,0xe0007fe0,0x7f,0xe000ffe0,0x7f,0xf000ffe0,0x7d,0xf001ffe0,0x7d,0xf001f7e0,0x7d,0xf801f7e0,0x7c, + 0xf803f7e0,0x7c,0xf803e7e0,0x7e,0x7c03e7e0,0x7e,0x7c07e7e0,0x7e,0x7e07e7e0,0x7e,0x3e0fc7e0,0x7e,0x3e0fc7e0,0x7e,0x3f0f87e0,0x7e, + 0x1f1f87e0,0x7e,0x1f1f87e0,0x7e,0xf9f07e0,0x7e,0xf9f07e0,0x7e,0xfbf07e0,0x7e,0x7be07e0,0x7e,0x7fe07e0,0x7e,0x7fc07e0,0x7e, + 0x3fc07e0,0x7e,0x3fc07e0,0x7e,0x1f807e0,0x7e,0x1f807e0,0x7e,0x1f007e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e, + 0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e, + 0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x3f,0x7fc0,0x3f,0x7fc0,0x3f, + 0xffc0,0x3f,0xffc0,0x3f,0x1ffc0,0x3f,0x1ffc0,0x3f,0x1ffc0,0x3f,0x3ffc0,0x3f,0x3ffc0,0x3f,0x7efc0,0x3f, + 0x7efc0,0x3f,0xfcfc0,0x3f,0xfcfc0,0x3f,0x1f8fc0,0x3f,0x1f8fc0,0x3f,0x3f0fc0,0x3f,0x3f0fc0,0x3f,0x7e0fc0,0x3f, + 0x7e0fc0,0x3f,0x7e0fc0,0x3f,0xfc0fc0,0x3f,0xfc0fc0,0x3f,0x1f80fc0,0x3f,0x1f80fc0,0x3f,0x3f00fc0,0x3f,0x3f00fc0,0x3f, + 0x7e00fc0,0x3f,0x7e00fc0,0x3f,0xfc00fc0,0x3f,0xfc00fc0,0x3f,0x1f800fc0,0x3f,0x1f800fc0,0x3f,0x3f800fc0,0x3f,0x3f000fc0,0x3f, + 0x3f000fc0,0x3f,0x7e000fc0,0x3f,0x7e000fc0,0x3f,0xfc000fc0,0x3f,0xfc000fc0,0x3e,0xf8000fc0,0x3f,0xf8000fc0,0x3f,0xf0000fc0,0x3f, + 0xf0000fc0,0x3f,0xe0000fc0,0x3f,0xe0000fc0,0x3f,0xe0000fc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801ff00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffffc0,0x0,0x7fffffc0,0x0,0xffffffc0,0x1, + 0xffffffc0,0x7,0xffffffc0,0xf,0xffc01fc0,0x1f,0xf0001fc0,0x3f,0xc0001fc0,0x3f,0x80001fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f, + 0x1fc0,0x7f,0x80001fc0,0x7f,0xc0001fc0,0x3f,0xe0001fc0,0x1f,0xfc001fc0,0x1f,0xffffffc0,0xf,0xffffffc0,0x7,0xffffffc0,0x1, + 0xffffffc0,0x0,0x1fffffc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801fe00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x7f00000,0x0,0xff00000,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0x1fc00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0xff800000,0x1,0xff000000,0xff,0xfe000000,0xff,0xfc000000,0xff, + 0xf0000000,0xff,0xc0000000,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffc0,0x0,0xffffffc0,0x0,0xffffffc0,0x3, + 0xffffffc0,0xf,0xffffffc0,0x1f,0xff001fc0,0x3f,0xe0001fc0,0x3f,0x80001fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f,0x1fc0,0x7f, + 0x80001fc0,0x3f,0xe0001fc0,0x3f,0xf8001fc0,0x1f,0xffffffc0,0xf,0xffffffc0,0x7,0xffffffc0,0x1,0x7fffffc0,0x0,0xfffffc0,0x0, + 0xfe01fc0,0x0,0x1fc01fc0,0x0,0x3f801fc0,0x0,0x3f801fc0,0x0,0x7f001fc0,0x0,0xfe001fc0,0x0,0xfe001fc0,0x0,0xfc001fc0,0x1, + 0xf8001fc0,0x3,0xf8001fc0,0x7,0xf0001fc0,0x7,0xf0001fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0x3f,0x80001fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0xff,0x1fc0,0x1fe,0x1fc0,0x1fc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0x3fffc000,0x0,0xfffff000,0x1,0xfffffc00,0x3, + 0xfffffe00,0x7,0xff0fff00,0xf,0xf000ff80,0x1f,0xe0003f80,0x1f,0xc0001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x7f,0xfc0,0x7f, + 0xfc0,0x7,0xfc0,0x0,0xfc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x3fc0,0x0,0xff80,0x0,0x3ff80,0x0, + 0x3fff00,0x0,0x1fffe00,0x0,0x1ffffc00,0x0,0xfffff000,0x0,0xffff8000,0x3,0xfffc0000,0x7,0xffe00000,0x1f,0xfe000000,0x3f, + 0xf0000000,0x3f,0xc0000000,0x7f,0x80000000,0x7f,0x0,0xff,0x0,0xfe,0x0,0xfe,0x0,0xfe,0x200,0xfc, + 0x3f0,0xfe,0x3f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0x7f,0x80001fe0,0x7f,0xe0007fc0,0x3f,0xf803ff80,0x1f, + 0xffffff80,0x1f,0xfffffe00,0x7,0xfffffc00,0x3,0xfffff000,0x0,0xfff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff8,0x1ff,0xfffffff8,0x1ff,0xfffffff8,0x1ff, + 0xfffffff8,0x1ff,0xfffffff8,0x1ff,0xfffffff8,0x1ff,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xfe07ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x7f0,0xfe,0x7f0,0x1fc,0x3f8, + 0x1fc,0x3f8,0x1f8,0x3f8,0x3f8,0x1fc,0x3f8,0x1fc,0x7f0,0x1fc,0x7f0,0xfe,0x7f0,0xfe,0xfe0,0x7e, + 0xfe0,0x7f,0xfc0,0x7f,0x1fc0,0x3f,0x80001fc0,0x3f,0x80001f80,0x3f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xc0003f00,0xf, + 0xe0007f00,0xf,0xe0007e00,0xf,0xe000fe00,0x7,0xf000fe00,0x7,0xf000fc00,0x7,0xf001fc00,0x3,0xf801fc00,0x3,0xf801f800,0x1, + 0xf803f800,0x1,0xfc03f800,0x1,0xfc03f000,0x0,0xfc07f000,0x0,0xfe07e000,0x0,0x7e07e000,0x0,0x7e0fe000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x3f1fc000,0x0,0x1f9f8000,0x0,0x1f9f8000,0x0,0x1fbf0000,0x0,0xfff0000,0x0,0xfff0000,0x0,0x7fe0000,0x0, + 0x7fe0000,0x0,0x7fe0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e0,0x7e,0x7e0,0x7e,0x7e0, + 0xfe,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x7f0,0xfc,0x7f0,0xfc,0x3f0,0xfc,0x3f0,0x1fc,0x3f0, + 0x1fc,0x3f0,0x1fc,0x3f8,0x1f8,0x3f8,0x1f8,0x1f8,0x1f801f8,0x1f8,0x3f801f8,0x1f8,0x3fc01f8,0x1f8,0x3fc03f8,0x1f8, + 0x7fc03f0,0x1f8,0x7fe03f0,0xfc,0x7fe03f0,0xfc,0x7be03f0,0xfc,0xfbe03f0,0xfc,0xf9f03f0,0xfc,0xf9f03f0,0xfc,0xf9f07e0,0xfc, + 0x1f1f07e0,0x7c,0x1f0f87e0,0x7e,0x1f0f87e0,0x7e,0x1f0f87e0,0x7e,0x3e0f87e0,0x7e,0x3e07c7c0,0x7e,0x3e07c7c0,0x3e,0x3e07cfc0,0x3e, + 0x7c07cfc0,0x3e,0x7c03efc0,0x3e,0x7c03efc0,0x3e,0x7803ef80,0x3f,0xf801ef80,0x3f,0xf801ff80,0x1f,0xf801ff80,0x1f,0xf001ff80,0x1f, + 0xf000ff80,0x1f,0xf000ff80,0x1f,0xf000ff00,0x1f,0xe000ff00,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f8,0x1fc,0x7f0,0xfe,0xfe0,0x7f, + 0x1fc0,0x7f,0x80001fc0,0x3f,0xc0003f80,0x1f,0xc0007f00,0x1f,0xe0007f00,0xf,0xf000fe00,0x7,0xf001fc00,0x7,0xf801fc00,0x3, + 0xfc03f800,0x1,0xfc03f000,0x1,0xfe07f000,0x0,0x7f0fe000,0x0,0x7f0fc000,0x0,0x3f9fc000,0x0,0x1fff8000,0x0,0x1fff0000,0x0, + 0xfff0000,0x0,0x7fe0000,0x0,0x7fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0, + 0x1fff8000,0x0,0x3f9f8000,0x0,0x3f9fc000,0x0,0x7f0fe000,0x0,0xfe07e000,0x0,0xfe07f000,0x0,0xfc03f800,0x1,0xf801f800,0x3, + 0xf801fc00,0x3,0xf000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80003fc0,0x3f,0x80001fc0,0x3f,0xfe0,0x7f, + 0xff0,0xfe,0x7f0,0xfe,0x3f8,0x1fc,0x3fc,0x3f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0x3f8,0x3f8,0x3fc,0x3f8,0x1fc, + 0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f00,0xf,0xe0007f00,0xf, + 0xf000fe00,0x7,0xf001fc00,0x7,0xf801fc00,0x3,0xfc03f800,0x1,0xfc03f000,0x1,0xfe07f000,0x0,0x7e0fe000,0x0,0x7f0fe000,0x0, + 0x3f9fc000,0x0,0x1f9f8000,0x0,0x1fff8000,0x0,0xfff0000,0x0,0xffe0000,0x0,0x7fe0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x80000000,0x3f,0xc0000000,0x1f,0xc0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7, + 0xf8000000,0x3,0xfc000000,0x3,0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0, + 0xfe00000,0x0,0x7f00000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0xff0000,0x0,0x7f0000,0x0, + 0x3f8000,0x0,0x1fc000,0x0,0xfe000,0x0,0xff000,0x0,0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0,0x1fe00,0x0, + 0xff00,0x0,0x7f00,0x0,0x3f80,0x0,0x1fc0,0x0,0x1fe0,0x0,0xfe0,0x0,0x7f0,0x0,0xfffffff8,0x1ff, + 0xfffffff8,0x1ff,0xfffffff8,0x1ff,0xfffffff8,0x1ff,0xfffffff8,0x1ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffff8000,0x3,0xffff8000,0x3,0xffff8000,0x3,0xffff8000,0x3,0xffff8000,0x3,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xffff8000,0x3, + 0xffff8000,0x3,0xffff8000,0x3,0xffff8000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e0,0x0,0x7e0,0x0,0xfc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x0,0x3f00,0x0,0x7f00,0x0, + 0x7e00,0x0,0xfc00,0x0,0xfc00,0x0,0x1f800,0x0,0x1f800,0x0,0x3f000,0x0,0x7f000,0x0,0x7e000,0x0, + 0xfe000,0x0,0xfc000,0x0,0x1fc000,0x0,0x1f8000,0x0,0x3f0000,0x0,0x3f0000,0x0,0x7e0000,0x0,0x7e0000,0x0, + 0xfc0000,0x0,0x1fc0000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x3f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0, + 0xfc00000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x3f000000,0x0,0x7f000000,0x0,0x7e000000,0x0,0xfe000000,0x0,0xfc000000,0x0, + 0xfc000000,0x1,0xf8000000,0x1,0xf8000000,0x3,0xf0000000,0x3,0xe0000000,0x7,0xe0000000,0x7,0xc0000000,0xf,0xc0000000,0x1f, + 0x80000000,0x1f,0x80000000,0x3f,0x0,0x3f,0x0,0x7f,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1ffffc00,0x0,0x1ffffc00,0x0,0x1ffffc00,0x0,0x1ffffc00,0x0,0x1ffffc00,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0, + 0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1f800000,0x0,0x1ffffc00,0x0, + 0x1ffffc00,0x0,0x1ffffc00,0x0,0x1ffffc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x7fe0000,0x0, + 0x7fe0000,0x0,0x7fe0000,0x0,0xf9f0000,0x0,0xf9f0000,0x0,0x1f0f8000,0x0,0x1f0f8000,0x0,0x3f0f8000,0x0,0x3e07c000,0x0, + 0x3e07c000,0x0,0x7c03e000,0x0,0x7c03e000,0x0,0xfc03f000,0x0,0xf801f000,0x0,0xf801f000,0x0,0xf000f800,0x1,0xf000f800,0x1, + 0xf000fc00,0x3,0xe0007c00,0x3,0xe0007c00,0x7,0xc0003e00,0x7,0xc0003e00,0x7,0xc0003f00,0xf,0x80001f00,0xf,0x80001f80,0x1f, + 0xf80,0x1f,0xf80,0x3f,0xfc0,0x3e,0x7c0,0x3e,0x7e0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffff,0x7ff,0xffffffff,0x7ff,0xffffffff,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f8000,0x0,0x7f8000,0x0,0xff0000,0x0,0x1fc0000,0x0,0x3f80000,0x0,0x7f00000,0x0,0xfc00000,0x0, + 0x1f800000,0x0,0x1f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x3ff01f80,0x0,0xfffc1f80,0x0, + 0xffff1f80,0x3,0xffff9f80,0x3,0xffff9f80,0x7,0xf807df80,0xf,0xe001ff80,0xf,0xc000ff80,0x1f,0xc000ff80,0x1f,0x80007f80,0x3f, + 0x80007f80,0x3f,0x80003f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x7f,0x3f80,0x7f,0x1f80,0x7f,0x1f80,0x7f, + 0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x3f80,0x7f,0x3f80,0x3f, + 0x3f80,0x3f,0x80003f80,0x3f,0x80007f80,0x3f,0x80007f80,0x1f,0xc0007f80,0x1f,0xc000ff80,0x1f,0xe001ff80,0xf,0xf007df80,0xf, + 0xff7fdf80,0x7,0xffff9f80,0x3,0xffff1f80,0x1,0xfffc1f80,0x0,0x1ff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x1fc0,0x1,0xfc0,0x0,0xfc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x1f,0xc0007f00,0x1f,0xe000ff00,0xf,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x0,0x3fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f, + 0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80ff8000,0x1f,0x83ffe000,0x1f, + 0x8ffff800,0x1f,0x9ffffc00,0x1f,0xbffffe00,0x1f,0xbe01ff00,0x1f,0xf8007f00,0x1f,0xf0007f80,0x1f,0xe0003f80,0x1f,0xe0001f80,0x1f, + 0xc0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0001fc0,0x1f,0xe0001fc0,0x1f,0xe0001f80,0x1f,0xe0003f80,0x1f,0xf0003f80,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0x9feffe00,0x1f,0x9ffffc00,0x1f,0x8ffffc00,0x1f,0x87fff000,0x1f,0x1ffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffff800,0x1,0xff9ffc00,0x3,0xf801fe00,0x7,0xf000ff00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80001f80,0x1f, + 0x80001fc0,0x3f,0x1fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfe0,0x7f,0xfe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x7,0x80003f80,0x3f,0xc0007f00,0x1f,0xe000fe00,0x1f,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc000000,0x3,0xffe00000,0x7f,0xfff80000,0x7f,0xfffc0000,0x7f,0xfffe0000,0x7f,0xffff0000,0x7f,0xff0000,0x0,0x7f8000,0x0, + 0x3f8000,0x0,0x3f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xffffffe0,0x3f,0xffffffe0,0x3f, + 0xffffffe0,0x3f,0xffffffe0,0x3f,0xffffffe0,0x3f,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0, + 0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x3f,0x83ffe000,0x1f, + 0x87fff800,0x1f,0x9ffffc00,0x1f,0x9ffffe00,0x1f,0xbe01ff00,0x1f,0xf8007f00,0x1f,0xf0007f80,0x1f,0xf0003f80,0x1f,0xe0001f80,0x1f, + 0xe0001fc0,0x1f,0xc0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f, + 0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0001fc0,0x1f, + 0xc0001fc0,0x1f,0xe0001fc0,0x1f,0xe0001f80,0x1f,0xf0003f80,0x1f,0xf0003f80,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f,0x9ffffe00,0x1f, + 0x8ffffc00,0x1f,0x87fff800,0x1f,0x83fff000,0x1f,0x807f8000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f, + 0xc0000000,0x1f,0xc0007000,0x1f,0xc0007f00,0xf,0xe0007e00,0xf,0xf000fe00,0x7,0xf803fe00,0x7,0xff1ffc00,0x3,0xfffff800,0x1, + 0xfffff000,0x0,0x7fffc000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x3ff01f80,0x0,0xfffc1f80,0x0, + 0xfffe1f80,0x3,0xffff1f80,0x7,0xffff9f80,0x7,0xf807df80,0xf,0xe003ff80,0xf,0xc000ff80,0x1f,0xc000ff80,0x1f,0xc0007f80,0x1f, + 0x80007f80,0x1f,0x80003f80,0x1f,0x80003f80,0x1f,0x80003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffffe00,0x0,0x3ffffe00,0x0, + 0x3ffffe00,0x0,0x3ffffe00,0x0,0x3ffffe00,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x1f800000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0xffc0060,0x0,0x7ffffe0,0x0,0x3ffffe0,0x0, + 0x1ffffe0,0x0,0x7fffe0,0x0,0x1fff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x0,0x7e00,0x7f,0x80007e00,0x3f, + 0xc0007e00,0x1f,0xe0007e00,0xf,0xf0007e00,0x7,0xf8007e00,0x3,0xfc007e00,0x3,0xfe007e00,0x1,0xfe007e00,0x0,0x7f007e00,0x0, + 0x3f807e00,0x0,0x1fc07e00,0x0,0xfe07e00,0x0,0x7f07e00,0x0,0x3f87e00,0x0,0x1fc7e00,0x0,0xfe7e00,0x0,0xff7e00,0x0, + 0x1ff7e00,0x0,0x3fffe00,0x0,0x7fffe00,0x0,0x7f7fe00,0x0,0xfe3fe00,0x0,0x1fc0fe00,0x0,0x3fc07e00,0x0,0x3f807e00,0x0, + 0x7f007e00,0x0,0xfe007e00,0x0,0xfe007e00,0x1,0xfc007e00,0x1,0xf8007e00,0x3,0xf0007e00,0x7,0xf0007e00,0xf,0xe0007e00,0xf, + 0xc0007e00,0x1f,0xc0007e00,0x3f,0x80007e00,0x7f,0x7e00,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x3fffc00,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe00fc1f0,0xf,0xf83ff1f0,0x1f, + 0xfc3ff1f0,0x3f,0xfc7ff9f0,0x7f,0xfe7ffdf0,0x7f,0xefe1df0,0x7f,0x7fc0df0,0x7e,0x3fc0ff0,0xfe,0x3f807f0,0xfc,0x3f807f0,0xfc, + 0x3f807f0,0xfc,0x1f807f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc, + 0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc, + 0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc, + 0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x1f803f0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff01f80,0x0,0xfffc1f80,0x1, + 0xfffe1f80,0x3,0xffff1f80,0x7,0xffff9f80,0x7,0xf807df80,0xf,0xe003ff80,0xf,0xc000ff80,0x1f,0xc000ff80,0x1f,0xc0007f80,0x1f, + 0x80007f80,0x1f,0x80003f80,0x1f,0x80003f80,0x1f,0x80003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xff9ffc00,0x7,0xf801fe00,0x7,0xe000ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x1f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf000ff00,0xf,0xf801fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff01f80,0x0,0xfffc1f80,0x0, + 0xffff1f80,0x3,0xffff9f80,0x3,0xffff9f80,0x7,0xf807df80,0xf,0xe001df80,0xf,0xc000ff80,0x1f,0xc000ff80,0x1f,0x80007f80,0x3f, + 0x80007f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x7f,0x3f80,0x7f,0x3f80,0x7f,0x1f80,0x7f, + 0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x3f80,0x7f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x80003f80,0x3f,0x80007f80,0x3f,0x80007f80,0x3f,0xc0007f80,0x1f,0xc000ff80,0x1f,0xe001ff80,0xf,0xf007df80,0xf, + 0xff7fdf80,0x7,0xffff9f80,0x3,0xffff1f80,0x1,0xfffc1f80,0x0,0x1ff01f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80ff8000,0x1f,0x83fff000,0x1f, + 0x8ffff800,0x1f,0x9ffffc00,0x1f,0xbffffe00,0x1f,0xbe01ff00,0x1f,0xf8007f00,0x1f,0xf0007f80,0x1f,0xe0003f80,0x1f,0xe0001f80,0x1f, + 0xc0001fc0,0x1f,0xc0001fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fc0,0x1f,0x80000fe0,0x1f, + 0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fe0,0x1f,0x80000fc0,0x1f,0xc0000fc0,0x1f,0xc0000fc0,0x1f, + 0xc0000fc0,0x1f,0xc0001fc0,0x1f,0xe0001fc0,0x1f,0xe0001f80,0x1f,0xf0003f80,0x1f,0xf0003f80,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0x9feffe00,0x1f,0x9ffffc00,0x1f,0x8ffffc00,0x1f,0x83fff000,0x1f,0x80ffc000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f, + 0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f, + 0x80000000,0x1f,0x80000000,0x1f,0x80000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe007e00,0x1f,0xff807e00,0x1f, + 0xffe0fe00,0x1f,0xfff0fc00,0x1f,0xfff0fc00,0x1f,0xfff8fc00,0x1f,0x1fcfc00,0x0,0x7dfc00,0x0,0x3ffc00,0x0,0x1ff800,0x0, + 0xff800,0x0,0xff800,0x0,0x7f800,0x0,0x7f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x1f800,0x0, + 0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0, + 0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0, + 0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x1f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xfffffc00,0x7,0xf001fe00,0x7,0xe0007e00,0xf,0xc0003f00,0xf,0x80003f00,0x1f,0x80003f00,0x1, + 0x3f00,0x0,0x3f00,0x0,0x7f00,0x0,0xff00,0x0,0x3fe00,0x0,0x1ffe00,0x0,0x1fffc00,0x0,0xffff800,0x0, + 0x7ffff000,0x0,0xffffc000,0x1,0xfffe0000,0x3,0xffe00000,0x7,0xfe000000,0xf,0xf0000000,0x1f,0xc0000000,0x1f,0x80000000,0x3f, + 0x80000000,0x3f,0x0,0x3f,0x0,0x3f,0xf00,0x3f,0x80001f80,0x1f,0x80001f80,0x1f,0xc0003f80,0x1f,0xf000ff00,0xf, + 0xfffffe00,0x7,0xfffffe00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78000,0x0,0x78000,0x0,0x78000,0x0, + 0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7c000,0x0,0x7e000,0x0,0xffffff80,0x7,0xffffff80,0x7, + 0xffffff80,0x7,0xffffff80,0x7,0xffffff80,0x7,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0x7e000,0x0, + 0x7e000,0x0,0x7e000,0x0,0x7e000,0x0,0xfe000,0x0,0xfe000,0x0,0xfe000,0x0,0x1fc000,0x0,0x807fc000,0xf, + 0xffffc000,0xf,0xffff8000,0xf,0xffff0000,0xf,0xfffe0000,0xf,0x7ff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0xc0001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0003f80,0x1f,0xf0007f00,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0xbffffe00,0x1f,0x9ffffe00,0x1f,0x8ffffc00,0x1f,0x3fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x1fc,0x3f8,0x1fc, + 0x7f0,0xfe,0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001f80,0x3f, + 0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xe0007f00,0xf,0xe0007e00,0x7,0xf000fe00,0x7,0xf000fe00,0x7,0xf001fc00,0x3, + 0xf801fc00,0x3,0xf801f800,0x1,0xfc03f800,0x1,0xfc03f800,0x1,0xfc03f000,0x0,0xfe07f000,0x0,0x7e07e000,0x0,0x7f0fe000,0x0, + 0x7f0fe000,0x0,0x3f0fc000,0x0,0x3f8fc000,0x0,0x1f9f8000,0x0,0x1f9f8000,0x0,0x1fdf8000,0x0,0xfff0000,0x0,0xfff0000,0x0, + 0x7fe0000,0x0,0x7fe0000,0x0,0x3fe0000,0x0,0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x7e0,0xfe,0x7e0, + 0xfc,0x7f0,0xfc,0x3f0,0xfc,0x3f0,0xfc,0x3f0,0xfc,0x3f0,0x1fc,0x3f0,0x1f8,0x3f8,0x1f8,0x1f8, + 0x1f8,0x1f8,0x3f801f8,0x1f8,0x3fc01f8,0x1f8,0x3fc01f8,0x1f8,0x7fc03f0,0x1fc,0x7fe03f0,0xfc,0x7be03f0,0xfc,0xf9e03f0,0xfc, + 0xf9f03f0,0xfc,0xf9f03f0,0xfc,0xf0f07e0,0x7e,0x1f0f87e0,0x7e,0x1f0f87e0,0x7e,0x1e0f87e0,0x7e,0x3e07c7e0,0x7e,0x3e07c7e0,0x7e, + 0x3e07c7c0,0x3e,0x7c03e7c0,0x3f,0x7c03efc0,0x3f,0x7c03efc0,0x3f,0x7801efc0,0x3f,0xf801ffc0,0x3f,0xf801ff80,0x1f,0xf000ff80,0x1f, + 0xf000ff80,0x1f,0xf000ff80,0x1f,0xe0007f80,0x1f,0xe0007f00,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f0,0x7f,0xfe0,0x7f, + 0x80001fc0,0x3f,0xc0003f80,0x1f,0xc0003f80,0xf,0xe0007f00,0xf,0xf000fe00,0x7,0xf800fc00,0x3,0xf801f800,0x1,0xfc03f800,0x1, + 0xfe07f000,0x0,0x7e07e000,0x0,0x3f0fc000,0x0,0x3f9fc000,0x0,0x1f9f8000,0x0,0xfff0000,0x0,0x7fe0000,0x0,0x7fe0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f9fc000,0x0,0x7f0fc000,0x0, + 0x7e07e000,0x0,0xfe07f000,0x0,0xfc03f800,0x1,0xf801f800,0x3,0xf800fc00,0x3,0xf000fe00,0x7,0xe0007f00,0xf,0xc0003f00,0x1f, + 0xc0003f80,0x1f,0x80001fc0,0x3f,0xfe0,0x7f,0x7e0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x1f8,0x3f8,0x1fc, + 0x3f0,0xfc,0x7f0,0xfe,0x7e0,0xfe,0xfe0,0x7e,0xfe0,0x7f,0xfc0,0x3f,0x80001fc0,0x3f,0x80001f80,0x3f, + 0x80003f80,0x1f,0xc0003f00,0x1f,0xc0007f00,0xf,0xc0007e00,0xf,0xe0007e00,0x7,0xe000fe00,0x7,0xf000fc00,0x7,0xf001fc00,0x3, + 0xf001f800,0x3,0xf801f800,0x1,0xf803f000,0x1,0xfc03f000,0x0,0xfc07f000,0x0,0xfc07e000,0x0,0x7e07e000,0x0,0x7e0fc000,0x0, + 0x3f0fc000,0x0,0x3f1f8000,0x0,0x1f1f8000,0x0,0x1f9f0000,0x0,0x1fbf0000,0x0,0xfff0000,0x0,0xffe0000,0x0,0x7fe0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0xffdc0,0x0,0x7ffc0,0x0, + 0x3ffc0,0x0,0x1ffc0,0x0,0x7fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff80,0x1f,0xffffff80,0x1f, + 0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xe0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7,0xf8000000,0x3,0xfc000000,0x1, + 0xfe000000,0x0,0x7f000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0, + 0x3fc0000,0x0,0x1fc0000,0x0,0xfe0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x1fc000,0x0,0xfe000,0x0,0xfe000,0x0, + 0x7f000,0x0,0x3f800,0x0,0x1fc00,0x0,0xfe00,0x0,0x7f00,0x0,0x7f00,0x0,0x3f80,0x0,0x1fc0,0x0, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc000000,0x3f,0xff800000,0x3f,0xffc00000,0x3f,0xffe00000,0x3f,0xfff00000,0x3f,0xff80000,0x0,0x3f80000,0x0,0x1f80000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0x7f0000,0x0,0x7f8000,0x0,0x3fe000,0x0,0x1fff00,0x0, + 0x7ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0xfff00,0x0,0x1ffc00,0x0,0x3fc000,0x0,0x7f8000,0x0,0x7f0000,0x0, + 0xfe0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1f80000,0x0,0x3f80000,0x0,0x3ff00000,0x0,0xfff00000,0x3f, + 0xffe00000,0x3f,0xffc00000,0x3f,0xff000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3ffc0,0x0,0x1fffc0,0x0,0x3fffc0,0x0,0x7fffc0,0x0,0xffffc0,0x0,0x1ff0000,0x0,0x1fc0000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x7f00000,0x0,0x7e00000,0x0,0xfe00000,0x0,0x1fc00000,0x0,0x7fc00000,0x0,0xff000000,0xf, + 0xfe000000,0xf,0xf8000000,0xf,0xfc000000,0xf,0xff000000,0xf,0xff800000,0x3,0x3fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0, + 0x3f00000,0x0,0x3f00000,0x0,0x3f00000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0x1ff8000,0x0,0xffffc0,0x0, + 0x7fffc0,0x0,0x3fffc0,0x0,0xfffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fc00,0x0,0x1fff80,0x80,0xffffe0,0xc0,0x7fffff0,0xf8,0xfffffff0,0xff,0xfffe03f0,0xff,0xfff00070,0x7f,0xff800010,0x3f, + 0xf8000000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 127 + 0x7c03fff8,0x67c,0xccf30018,0x67,0xdcf30018,0x67,0xf3331f98,0x619,0xf3331f98,0x618,0x33f31f98,0x7e0,0x33f31f98,0x7e0,0xc031f98,0x7f8, + 0xc031f98,0x7f8,0xc030018,0x198,0xc030018,0x198,0x3333fff8,0x666,0x3333fff8,0x666,0x1f300000,0x67e,0xf300000,0x67e,0x3c310000,0x3f0, + 0x3c330018,0x1e0,0x783b8018,0x3e0,0xc03ce1e0,0x661,0xc03ee3e0,0x661,0xcff3e618,0x7f,0xcff3e618,0x7f,0xc3f01ff8,0x601,0xc3f01ff8,0x601, + 0xcf0307f8,0x79,0xcf0307f8,0x79,0xc0f800,0x660,0xc0f800,0x660,0x3f3ff878,0x0,0x3f3ff878,0x0,0x37feff98,0x8,0x33fcff98,0x18, + 0x31feff98,0x0,0x3003ff98,0x780,0x7001ff98,0x780,0xfc3007e0,0x787,0xfc3007e0,0x787,0x3c0fe180,0x18,0x7c0fe180,0x18,0xc3c019e0,0x19, + 0x83c039e0,0x19,0xcfff860,0x7f,0xcfff860,0x7e,0xcf00000,0x61e,0xcf00000,0x61e,0x3f03fff8,0x198,0x3f03fff8,0x198,0xc38018,0x676, + 0xc30018,0x666,0x1c30018,0x43f,0xf3c31f98,0x1f,0xf7c31f98,0x1f,0xfc031f98,0x7ff,0xfc031f98,0x7ff,0xf3c31f98,0x199,0xf3c31f98,0x198, + 0x30030018,0x18,0x70038018,0x18,0xf3f3fff8,0x180,0xf3f3fff8,0x181,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffffe0,0x0, + 0x7ffffe0,0x0,0x7ffffe0,0x0,0x7ffffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0,0x300018,0x0, + 0x300018,0x0,0x300018,0x0,0x3ffff8,0x0,0x3ffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0, + 0x1e00000,0x0,0x1e00000,0x0,0x1f00000,0x0,0x3fff0000,0x0,0xffffc000,0x0,0xfffff000,0x3,0xfffff800,0x7,0xffeffc00,0xf, + 0xf1e1fe00,0xf,0xc1e0ff00,0x1f,0x81e07f00,0x3f,0x81e03f80,0x3f,0x1e01f80,0x3f,0x1e01fc0,0x7f,0x1e00fc0,0x0,0x1e00fc0,0x0, + 0x1e00fc0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fe0,0x0, + 0x1e00fe0,0x0,0x1e00fe0,0x0,0x1e00fc0,0x0,0x1e00fc0,0x2,0x1e01fc0,0x7f,0x1e01fc0,0x7f,0x1e03f80,0x3f,0x81e07f80,0x3f, + 0xc1e0ff00,0x1f,0xe1e1fe00,0x1f,0xfde7fe00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x0,0x3fff8000,0x0,0x7f80000,0x0, + 0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x1e00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c00000,0x0,0x7ffe0000,0x0,0xffff8000,0x1,0xffffc000,0x7, + 0xffffe000,0xf,0xfffff000,0xf,0xf80ff800,0x1f,0xe003f800,0x3f,0x8001fc00,0x3f,0x8001fc00,0x7,0xfc00,0x0,0xfc00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0x3ffffff8,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0x7e00,0x0,0x7e00,0x0, + 0x7e00,0x0,0x7f00,0x0,0x7f00,0x0,0x3f80,0x30,0x1fc0,0x3f8,0xfe0,0x1f8,0x7f8,0x1fe,0xfffffffc,0x1ff, + 0xfffffffc,0xff,0xfffffffc,0x7f,0xfffffffc,0x7f,0xfffffffc,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80600,0x6,0xfff0f00,0xf,0xbfffdf80,0x1f, + 0xffffff80,0x3f,0xffffff00,0x1f,0xfffffe00,0xf,0xfc03fc00,0x7,0xf000fe00,0x7,0xe0007e00,0xf,0xc0003f00,0xf,0x80003f00,0x1f, + 0x80001f80,0x1f,0x1f80,0x1f,0xf80,0x1f,0xf80,0x1f,0xf80,0x3f,0xf80,0x1f,0x1f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80003f00,0x1f,0xc0007f00,0xf,0xe0007e00,0xf,0xf001fe00,0x7,0xfc07fe00,0x7,0xffffff00,0xf,0xffffff80,0x1f, + 0xffffffc0,0x3f,0x3fffdf80,0x3f,0xfff0f00,0x1e,0x1f00600,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x3f8,0x3f8,0x1fc,0x7f0,0xfe, + 0x7f0,0xfe,0xfe0,0x7f,0xfc0,0x7f,0x80001fc0,0x3f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xe0007e00,0x7, + 0xf000fe00,0x7,0xf801fc00,0x3,0xf801f800,0x3,0xfc03f800,0x1,0xfc03f000,0x0,0xfe07f000,0x0,0x7e0fe000,0x0,0x7f0fc000,0x0, + 0x3f9fc000,0x0,0x1f9f8000,0x0,0x1fff8000,0x0,0xfff0000,0x0,0x7fe0000,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffffc0,0x7f,0xffffffc0,0x7f, + 0xffffffc0,0x7f,0xffffffc0,0x7f,0xffffffc0,0x7f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f80000,0x0,0x3fff8000,0x0,0xffffe000,0x0,0xfffff800,0x3,0xfffffc00,0x7,0xf001fc00,0xf,0xc000fe00,0xf,0xc0007e00,0x1f, + 0x80003f00,0x1f,0x80003f00,0x1f,0x3f00,0x0,0x3f00,0x0,0x3f00,0x0,0x7e00,0x0,0x1fe00,0x0,0x7fc00,0x0, + 0x3ff800,0x0,0x1fff000,0x0,0x1fffe000,0x0,0x7fff8000,0x0,0xffffe000,0x1,0xfffff800,0x7,0xfe01fc00,0xf,0xf000fe00,0x1f, + 0xc0003e00,0x1f,0x80003f00,0x3f,0x1f00,0x3f,0x1f00,0x3f,0x1f80,0x3f,0x1f80,0x3f,0x3f00,0x3f,0x3f00,0x3f, + 0x80007f00,0x1f,0x8001fe00,0x1f,0xe007fe00,0xf,0xfc7ffc00,0x7,0xfffff000,0x3,0xffffe000,0x0,0x7fff8000,0x0,0xfff80000,0x1, + 0xff800000,0x3,0xfc000000,0xf,0xf0000000,0xf,0xc0000000,0x1f,0x80000000,0x1f,0x0,0x3f,0x0,0x3f,0x0,0x3f, + 0xe00,0x3f,0xfc0,0x3f,0x1f80,0x1f,0x80003f80,0x1f,0xc0007f00,0xf,0xf001ff00,0xf,0xfffffe00,0x7,0xfffffc00,0x3, + 0xfffff000,0x0,0x3fffc000,0x0,0x600000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff800,0x1,0xf801fc00,0x3,0xc0003e00,0xf,0xf00,0x1f,0x780,0x1e, + 0x3c0,0x3c,0x1e0,0x78,0x1e0,0x78,0x3fc00f0,0xf0,0xfff00f0,0xe0,0x3fffc070,0x1e0,0x7fbfe078,0x1e0,0x7c03e038,0x1c0, + 0xf801f038,0x3c0,0xf000f83c,0x3c0,0x7000f83c,0x380,0x781c,0x380,0x781c,0x380,0x7c1c,0x380,0x7c1c,0x380,0x7c1c,0x380, + 0x7c1c,0x780,0x7c1c,0x780,0x7c1c,0x780,0x7c1c,0x780,0x7c1c,0x380,0x7c1c,0x380,0x7c1c,0x380,0x781c,0x380, + 0xe000f83c,0x380,0xf000f83c,0x3c1,0xf001f03c,0x3c0,0xf803f038,0x1c0,0x7e07e078,0x1c0,0x3fffc078,0x1e0,0x1fff8070,0xe0,0xffe00f0,0xf0, + 0x1f800e0,0xf0,0x1e0,0x78,0x3c0,0x3c,0x780,0x3e,0xf80,0x1f,0x80001f00,0xf,0xe0007e00,0x7,0xfc07fc00,0x3, + 0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe0000,0x0,0xfffc000,0x0,0x1ffff000,0x0,0x3fc7f800,0x0,0x7e00fc00,0x0,0x7c007c00,0x0, + 0xfc007e00,0x0,0xf8003e00,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xfffc0000,0x0,0xffffe000,0x0,0xfffff800,0x0, + 0xf807fc00,0x0,0xf8007e00,0x0,0xf8003f00,0x0,0xf8001f00,0x0,0xfc001f00,0x0,0xfc001f00,0x0,0xfe001f00,0x0,0xff001f00,0x0, + 0xff803f00,0x0,0xfbe0fe00,0x1,0xf1fffe00,0xf,0xf0fffc00,0xf,0xe03ff000,0xf,0x38000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7e0000,0xfc,0x7f0000,0xfe,0x3f8000,0x7f,0x801fc000,0x3f,0xc00fe000,0x1f, + 0xe007f000,0xf,0xf007f800,0x7,0xf803fc00,0x3,0xfc01fe00,0x1,0xfe00fe00,0x1,0xff007f00,0x0,0x7f803f80,0x0,0x3f801fc0,0x0, + 0x1fc00fe0,0x0,0xfc007e0,0x0,0x1fc00fe0,0x0,0x3fc01fc0,0x0,0x7f803f80,0x0,0xff007f00,0x0,0xfe00ff00,0x0,0xfc01fe00,0x1, + 0xf803fc00,0x3,0xf003f800,0x7,0xe007f000,0xf,0xc00fe000,0x1f,0x801fc000,0x3f,0x3f8000,0x7f,0x7f0000,0xfe,0x7e0000,0xfc, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0xfc, + 0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc, + 0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff800,0x1,0xf801fc00,0x3,0xc0003e00,0xf,0xf00,0x1f,0x780,0x1e, + 0x3c0,0x3c,0x1e0,0x78,0x1e0,0x78,0x3fff0f0,0xf0,0x1ffff0f0,0xe0,0x7ffff070,0x1e0,0x7ffff078,0x1e0,0xfc00f038,0x1c0, + 0xf800f038,0x3c1,0xf000f03c,0x3c1,0xe000f03c,0x381,0xe000f01c,0x381,0xe000f01c,0x381,0xf000f01c,0x381,0xf000f01c,0x381,0xf800f01c,0x380, + 0xfc00f01c,0x780,0x7ffff01c,0x780,0x3ffff01c,0x780,0xffff01c,0x780,0x7fff01c,0x380,0x780f01c,0x380,0xf80f01c,0x380,0x1f00f01c,0x380, + 0x1f00f03c,0x380,0x3e00f03c,0x3c0,0x7c00f03c,0x3c0,0x7c00f038,0x1c0,0xf800f078,0x1c0,0xf800f078,0x1e0,0xf000f070,0xe1,0xe000f0f0,0xf3, + 0xe0,0xf0,0x1e0,0x78,0x3c0,0x3c,0x780,0x3e,0xf80,0x1f,0x80001f00,0xf,0xe0007e00,0x7,0xfc07fc00,0x3, + 0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x7ff,0xffffffff,0x7ff,0xffffffff,0x7ff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0, + 0x3e0fc000,0x0,0x7c03e000,0x0,0x7801e000,0x0,0xf001f000,0x0,0xf000f000,0x0,0xf000f000,0x0,0xf000f000,0x0,0xf000f000,0x0, + 0xf000f000,0x0,0xf801e000,0x0,0x7801e000,0x0,0x7c07e000,0x0,0x3f1fc000,0x0,0x1fff8000,0x0,0xfff0000,0x0,0x3fc0000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xff, + 0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fffc000,0x0,0x7f1fc000,0x0,0xfc03e000,0x0, + 0xf803f000,0x0,0xf801f000,0x0,0xf801f000,0x0,0xf8000000,0x0,0xf8000000,0x0,0xf8000000,0x0,0x7c000000,0x0,0x7e000000,0x0, + 0x3e000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0xfc0000,0x0,0x7e0000,0x0,0x3f0000,0x0, + 0xf8000,0x0,0x7c000,0x0,0x3e000,0x0,0x1f000,0x0,0x1f000,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff000,0x1, + 0xfffff000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x1fff8000,0x0,0x3fffc000,0x0,0x7f1fe000,0x0,0xfc03e000,0x0, + 0xf803f000,0x0,0xf801f000,0x0,0xf801f000,0x0,0xf8000000,0x0,0xf8000000,0x0,0x7c000000,0x0,0x7e000000,0x0,0x3fc00000,0x0, + 0xff80000,0x0,0x3f80000,0x0,0x1ff80000,0x0,0x7fc00000,0x0,0xfc000000,0x0,0xf8000000,0x0,0xf0000000,0x1,0xf0000000,0x1, + 0xf0000000,0x1,0xf000f800,0x1,0xf001f000,0x1,0xf801f000,0x0,0xfc03f000,0x0,0x7fffe000,0x0,0x7fffc000,0x0,0x1fff8000,0x0, + 0x7fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x1f80000,0x0,0xfc0000,0x0,0x7e0000,0x0, + 0x1f0000,0x0,0xf8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0,0x3f,0xfc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f, + 0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfc0,0x3f, + 0x80000fc0,0x3f,0x80000fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xe0003fc0,0x3f,0xf0003fc0,0x3f,0xf8007fc0,0x3f,0x7e01ffc0,0x3f, + 0x3fffffc0,0x3f,0x1fffffc0,0x3e,0xfffefc0,0x7e,0x7ff8fc0,0x7e,0x1fe0fc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0,0xfc0,0x0, + 0xfc0,0x0,0xfc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffc000,0x3f,0xfffff800,0x3f,0xfffffc00,0x3f, + 0xffffff00,0x3f,0xe03fff00,0x3,0xe03fff80,0x3,0xe03fffc0,0x3,0xe03fffc0,0x3,0xe03fffc0,0x3,0xe03fffe0,0x3,0xe03fffe0,0x3, + 0xe03fffe0,0x3,0xe03fffe0,0x3,0xe03fffe0,0x3,0xe03fffe0,0x3,0xe03fffe0,0x3,0xe03fffe0,0x3,0xe03fffc0,0x3,0xe03fffc0,0x3, + 0xe03fff80,0x3,0xe03fff80,0x3,0xe03fff00,0x3,0xe03ffe00,0x3,0xe03ff800,0x3,0xe03fe000,0x3,0xe03c0000,0x3,0xe03c0000,0x3, + 0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3, + 0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3, + 0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3, + 0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3,0xe03c0000,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0x0,0xf00,0x0,0x700,0x0,0x780,0x0, + 0x3f80,0x0,0xff80,0x0,0xffc0,0x0,0x1f000,0x0,0x1e000,0x0,0x1e000,0x0,0x1e000,0x0,0x1f000,0x0, + 0x1fc00,0x0,0xffe0,0x0,0x7fe0,0x0,0x1fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f00000,0x0,0x1f80000,0x0,0x1fc0000,0x0,0x1ff0000,0x0,0x1ffe000,0x0, + 0x1f7f800,0x0,0x1f3f800,0x0,0x1f0f800,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0, + 0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0x1f00000,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1, + 0xfffff800,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f80000,0x0,0x1fff0000,0x0,0x7fffc000,0x0,0xfffff000,0x0,0xfc07f000,0x1,0xf001f800,0x3, + 0xe000fc00,0x3,0xe0007c00,0x7,0xc0007e00,0x7,0xc0003e00,0x7,0xc0003e00,0x7,0xc0003e00,0xf,0xc0003e00,0xf,0xc0003f00,0xf, + 0xc0003f00,0xf,0xc0003e00,0xf,0xc0003e00,0xf,0xc0003e00,0x7,0xc0003e00,0x7,0xc0007e00,0x7,0xe0007c00,0x3,0xf000fc00,0x3, + 0xf801f800,0x1,0xfe07f000,0x0,0x7fffe000,0x0,0x3fffc000,0x0,0xfff0000,0x0,0x600000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7e007f0,0x0,0xfe00ff0,0x0,0x1fc00fe0,0x0,0x3f801fc0,0x0,0x7f003f80,0x0, + 0xfe007f00,0x0,0xfc00fe00,0x1,0xfc01fc00,0x3,0xf803f800,0x7,0xf007f000,0xf,0xe00ff000,0xf,0xc01fe000,0x1f,0x801fc000,0x3f, + 0x3f8000,0x7f,0x3f0000,0x7e,0x3f8000,0x7f,0x803fc000,0x3f,0xc01fe000,0x3f,0xe00fe000,0x1f,0xf007f000,0xf,0xf003f800,0x7, + 0xf801fc00,0x3,0xfc00fe00,0x1,0xfe007f00,0x0,0x7f003f80,0x0,0x3f801fc0,0x0,0x1fc00fe0,0x0,0xfe00ff0,0x0,0x7e007f0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00,0xf,0xf80,0xf,0x80000fc0,0x7, + 0x80000ff0,0x7,0xc0000ffe,0x3,0xc0000ffe,0x3,0xe0000fbe,0x1,0xe0000f9e,0x1,0xf0000f80,0x0,0xf8000f80,0x0,0x78000f80,0x0, + 0x7c000f80,0x0,0x3c000f80,0x0,0x1e000f80,0x0,0x1e000f80,0x0,0xf000f80,0x0,0xf000f80,0x0,0x7800f80,0x0,0x7800f80,0x0, + 0x3c00f80,0x0,0x3c00f80,0x0,0x1e00f80,0x7c,0x1e00f80,0x7e,0xf0fff8,0x7f,0xf0fff8,0x7f,0x8078fff8,0x7f,0xc078fff8,0x7b, + 0xc03c0000,0x79,0xe03c0000,0x79,0xf01e0000,0x78,0x781e0000,0x78,0x780f0000,0x78,0x3c0f8000,0x78,0x1e078000,0x78,0xe07c000,0x78, + 0xf03c000,0x78,0x783e000,0x78,0x3c1e000,0x78,0xffc0f000,0x7ff,0xffc0f000,0x7ff,0xffc07800,0x7ff,0xffc07800,0x7ff,0x3c00,0x78, + 0x3c00,0x78,0x1e00,0x78,0x1e00,0x78,0xf00,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf80,0xf,0x80000fc0,0x7,0x80000fe0,0x7, + 0xc0000ff0,0x3,0xc0000ffe,0x3,0xe0000ffe,0x1,0xf0000fbe,0x1,0xf0000f8e,0x0,0xf8000f80,0x0,0x78000f80,0x0,0x3c000f80,0x0, + 0x3c000f80,0x0,0x1e000f80,0x0,0x1e000f80,0x0,0xf000f80,0x0,0xf000f80,0x0,0x7800f80,0x0,0x7800f80,0x0,0x3c00f80,0x0, + 0x3c00f80,0x0,0x1e00f80,0xf,0xe1e00f80,0x7f,0xf8f00f80,0xff,0xfcf0fffc,0x1ff,0x7c78fffc,0x3f0,0x3e78fffc,0x3e0,0x3e3cfffc,0x3e0, + 0x1e3c0000,0x3e0,0x1e0000,0x3c0,0x1f0000,0x3e0,0xf0000,0x3e0,0xf8000,0x1f0,0x78000,0x1f8,0x7c000,0xf8,0x3c000,0x7e, + 0x1e000,0x3f,0x8001e000,0x1f,0xc000f000,0xf,0xe000f000,0x3,0xf0007800,0x1,0xf8007800,0x0,0x7c003c00,0x0,0x3e003c00,0x0, + 0x1e001e00,0x0,0xff001e00,0x7ff,0xff000f00,0x7ff,0xff000f00,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x1e,0xfff0,0x1e,0x1fff8,0xf, + 0x8001f9fc,0xf,0x8003e07c,0x7,0xc003e07c,0x3,0xc003e03e,0x3,0xe003e020,0x1,0xe003e000,0x1,0xf003e000,0x0,0xf001f000,0x0, + 0x7800ff80,0x0,0x78003f80,0x0,0x3c007f80,0x0,0x3c01ff80,0x0,0x1e03f800,0x0,0x1e03e000,0x0,0xf07c000,0x0,0xf07c000,0x0, + 0x787c000,0x0,0x787c03e,0x0,0x3c7c03e,0x7c,0x3c3e07c,0x7e,0x1e3f0fc,0x7f,0x1e1fff8,0x7f,0x80f0fff0,0x7f,0xc0f87fc0,0x7b, + 0xc0780000,0x79,0xe07c0000,0x79,0xf03c0000,0x78,0x783e0000,0x78,0x781e0000,0x78,0x3c0f0000,0x78,0x1e0f0000,0x78,0xe078000,0x78, + 0xf078000,0x78,0x783c000,0x78,0x3c3c000,0x78,0xffc1e000,0x7ff,0xffc1e000,0x7ff,0xffc0f000,0x7ff,0xffc0f000,0x7ff,0x7800,0x78, + 0x7800,0x78,0x3c00,0x78,0x3c00,0x78,0x1e00,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00000,0x0,0xfe00000,0x0, + 0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7e00000,0x0,0x7f00000,0x0, + 0x3f80000,0x0,0x3fc0000,0x0,0x1fe0000,0x0,0xff0000,0x0,0x7f8000,0x0,0x3fe000,0x0,0x1ff000,0x0,0x7f800,0x0, + 0x3fc00,0x0,0x1fe00,0x0,0xff00,0x0,0x7f80,0x0,0x3f80,0x0,0x1f80,0x0,0x1fc0,0x0,0xfc0,0x0, + 0xfc0,0xfc,0xfc0,0xfe,0xfc0,0xfe,0x1fc0,0xfe,0x1fc0,0x7f,0x1fc0,0x7f,0x80003f80,0x3f,0xe0007f80,0x3f, + 0xf801ff00,0x1f,0xffffff00,0xf,0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x0,0x3fff8000,0x0,0x1f00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 192 + 0x0,0x0,0x7f800,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3f00000,0x0,0x3c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 193 + 0x0,0x0,0xfe000000,0x1,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 194 + 0x0,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f9fc000,0x0,0x7e07e000,0x0,0xf803f000,0x0, + 0xf000f800,0x1,0xc0003c00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 195 + 0x0,0x0,0x8007c000,0x7,0xc01ff000,0x3,0xc07ff800,0x3,0xe1fff800,0x3,0xfffffc00,0x3,0xfff03c00,0x1,0xffc03c00,0x1, + 0x7f003c00,0x0,0x1c001c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x3f0fc000,0x0, + 0x3c07c000,0x0,0x7c03c000,0x0,0x7c03c000,0x0,0x7c03c000,0x0,0x3e0fc000,0x0,0x3fff8000,0x0,0x1fff8000,0x0,0xfff0000,0x0, + 0x7fe0000,0x0,0xffe0000,0x0,0xfff0000,0x0,0xfbf0000,0x0,0x1f9f0000,0x0,0x1f9f8000,0x0,0x3f1f8000,0x0,0x3f0fc000,0x0, + 0x3f0fc000,0x0,0x7e0fc000,0x0,0x7e07e000,0x0,0x7e07e000,0x0,0xfc07e000,0x0,0xfc03f000,0x0,0xfc03f000,0x1,0xf803f800,0x1, + 0xf801f800,0x1,0xf801f800,0x3,0xf001fc00,0x3,0xf000fc00,0x3,0xf000fc00,0x7,0xe000fe00,0x7,0xe0007e00,0xf,0xe0007f00,0xf, + 0xc0003f00,0xf,0xc0003f00,0x1f,0xffffff80,0x1f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0xfe0,0x7f, + 0xfe0,0x7e,0x7e0,0xfe,0x7f0,0xfe,0x7f0,0xfc,0x3f0,0x1fc,0x3f8,0x1fc,0x3f8,0x1f8,0x1fc,0x3f8, + 0x1fc,0x3f8,0xfc,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfffe0000,0x1ff,0xfffe0000,0x1ff,0xfffe0000,0x1ff, + 0xffff0000,0x1ff,0xffff0000,0x1ff,0x1f9f0000,0x0,0x1f8f8000,0x0,0x1f8f8000,0x0,0x1f8f8000,0x0,0x1f87c000,0x0,0x1f87c000,0x0, + 0x1f87c000,0x0,0x1f83e000,0x0,0x1f83e000,0x0,0x1f83f000,0x0,0x1f81f000,0x0,0x1f81f000,0x0,0x1f81f800,0x0,0x1f80f800,0x0, + 0x1f80f800,0x0,0x1f80fc00,0x0,0xff807c00,0x1ff,0xff807c00,0x1ff,0xff807e00,0x1ff,0xff803e00,0x1ff,0xff803f00,0x1ff,0x1f803f00,0x0, + 0x1f801f00,0x0,0x1fffff80,0x0,0x1fffff80,0x0,0x1fffff80,0x0,0x1fffffc0,0x0,0x1fffffc0,0x0,0x1f8007c0,0x0,0x1f8007e0,0x0, + 0x1f8007e0,0x0,0x1f8003f0,0x0,0x1f8003f0,0x0,0x1f8003f0,0x0,0x1f8001f8,0x0,0x1f8001f8,0x0,0x1f8001f8,0x0,0xff8000fc,0x7ff, + 0xff8000fc,0x7ff,0xff80007c,0x7ff,0xff80007e,0x7ff,0xff80007e,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f00000,0x0,0x3fff0000,0x0,0xffffc000,0x0,0xfffff000,0x3, + 0xfffff800,0x7,0xfffffc00,0xf,0xf807fe00,0x1f,0xe001fe00,0x1f,0xc000ff00,0x3f,0x80007f80,0x3f,0x3f80,0x7f,0x3f80,0x7f, + 0x1fc0,0x7e,0x1fc0,0xe,0x1fc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xff0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0x1fc0,0x18,0x1fc0,0x7c, + 0x1fc0,0xfc,0x3f80,0xfe,0x3f80,0x7e,0x7f80,0x7f,0x8000ff00,0x3f,0xc001fe00,0x3f,0xf003fe00,0x1f,0xfc1ffc00,0xf, + 0xfffff800,0x7,0xfffff000,0x3,0xffffc000,0x1,0x7fff8000,0x0,0xffc0000,0x0,0xe00000,0x0,0xf00000,0x0,0xf00000,0x0, + 0x3f80000,0x0,0xff80000,0x0,0x1ff80000,0x0,0x3f000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x1f800000,0x0,0x1ffe0000,0x0,0x7fe0000,0x0,0x1fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 200 + 0x0,0x0,0xff000,0x0,0x1fe000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1f80000,0x0,0x3f00000,0x0, + 0x7e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 201 + 0x0,0x0,0xfe000000,0x1,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 202 + 0x0,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f9fc000,0x0,0x7e07e000,0x0,0xf803f000,0x0, + 0xf000f800,0x1,0xc0003c00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x0,0x0,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1,0xf807e000,0x1, + 0xf807e000,0x1,0xf807e000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f, + 0xffffffc0,0x3f,0xffffffc0,0x3f,0xffffffc0,0x3f,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0xffffffc0,0xf,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 204 + 0x0,0x0,0xff000,0x0,0x1fe000,0x0,0x1fc000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 205 + 0x0,0x0,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x1f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 206 + 0x0,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f9fc000,0x0,0x7e07e000,0x0,0xf803f000,0x0, + 0xf000f800,0x1,0xc0003c00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xffffff00,0x1f, + 0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0xffffff00,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffc0,0x0,0x7ffffc0,0x0,0x1fffffc0,0x0, + 0x7fffffc0,0x0,0xffffffc0,0x1,0xffffffc0,0x3,0xff001fc0,0x7,0xfc001fc0,0xf,0xf0001fc0,0xf,0xe0001fc0,0x1f,0xc0001fc0,0x1f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7e,0x1fc0,0xfe,0x1fc0,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x7ffffe,0xfe,0x7ffffe,0xfe,0x7ffffe,0xfe,0x7ffffe,0xfe,0x7ffffe,0xfe,0x7ffffe,0xfe, + 0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0x7e,0x1fc0,0x7f,0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0xc0001fc0,0x1f,0xe0001fc0,0x1f,0xf0001fc0,0xf,0xf8001fc0,0xf,0xfc001fc0,0x7,0xff801fc0,0x3,0xffffffc0,0x1, + 0xffffffc0,0x0,0x7fffffc0,0x0,0x1fffffc0,0x0,0x3ffffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 209 + 0x0,0x0,0x8007c000,0x7,0xc01ff000,0x3,0xc07ff800,0x3,0xe1fff800,0x3,0xfffefc00,0x3,0xfff03c00,0x1,0xffc03c00,0x0, + 0x7f003c00,0x0,0x1c001e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0x3f,0x7fc0,0x3f,0x7fc0,0x3f, + 0xffc0,0x3f,0xffc0,0x3f,0x1ffc0,0x3f,0x1ffc0,0x3f,0x1ffc0,0x3f,0x3ffc0,0x3f,0x3ffc0,0x3f,0x7efc0,0x3f, + 0x7efc0,0x3f,0xfcfc0,0x3f,0xfcfc0,0x3f,0x1f8fc0,0x3f,0x1f8fc0,0x3f,0x3f0fc0,0x3f,0x3f0fc0,0x3f,0x7e0fc0,0x3f, + 0x7e0fc0,0x3f,0x7e0fc0,0x3f,0xfc0fc0,0x3f,0xfc0fc0,0x3f,0x1f80fc0,0x3f,0x1f80fc0,0x3f,0x3f00fc0,0x3f,0x3f00fc0,0x3f, + 0x7e00fc0,0x3f,0x7e00fc0,0x3f,0xfc00fc0,0x3f,0xfc00fc0,0x3f,0x1f800fc0,0x3f,0x1f800fc0,0x3f,0x3f800fc0,0x3f,0x3f000fc0,0x3f, + 0x3f000fc0,0x3f,0x7e000fc0,0x3f,0x7e000fc0,0x3f,0xfc000fc0,0x3f,0xfc000fc0,0x3e,0xf8000fc0,0x3f,0xf8000fc0,0x3f,0xf0000fc0,0x3f, + 0xf0000fc0,0x3f,0xe0000fc0,0x3f,0xe0000fc0,0x3f,0xe0000fc0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 210 + 0x0,0x0,0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801ff00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 211 + 0x0,0x0,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801ff00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 212 + 0x0,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f9fc000,0x0,0x7e07e000,0x0,0xf803f000,0x0, + 0xf000f800,0x1,0xc0003c00,0x3,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801ff00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 213 + 0x0,0x0,0x8007c000,0x7,0xc01ff000,0x3,0xc07ff800,0x3,0xe1fff800,0x3,0xfffffc00,0x3,0xfff03c00,0x1,0xffc03c00,0x1, + 0x7f003c00,0x0,0x1c001c00,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801ff00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0xf00000,0x0,0x1fff8000,0x0,0x7fffe000,0x0,0xfffff000,0x0, + 0xfffff800,0x3,0xfffffc00,0x7,0xfc03fe00,0x7,0xf001ff00,0xf,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0x80001fc0,0x3f, + 0x80001fc0,0x3f,0x1fe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0xff,0xff0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe,0x7f0,0xfe, + 0x7f0,0xfe,0x7f0,0xfe,0xff0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0x1fe0,0x7f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xf801ff00,0xf,0xff0ffe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x600,0x6,0xf00,0xf,0x80001f80,0x1f, + 0xc0003f80,0x3f,0xe0007f00,0x1f,0xf000fe00,0xf,0xf801fc00,0x7,0xfc03f800,0x3,0xfe07f000,0x1,0xff0fe000,0x0,0x7f9fc000,0x0, + 0x3fff8000,0x0,0x1fff0000,0x0,0xffe0000,0x0,0x7fc0000,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0, + 0x3fbfc000,0x0,0x7f1fe000,0x0,0xfe0ff000,0x0,0xfc07f800,0x1,0xf803fc00,0x3,0xf001fe00,0x7,0xe000ff00,0xf,0xc0007f80,0x1f, + 0x80003fc0,0x3f,0x1f80,0x1f,0xf00,0xe,0x600,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf00000,0xc0,0x1fff8000,0x1e0,0x7fffe000,0x1f0,0xfffff000,0xf8, + 0xfffff800,0xfb,0xfffffc00,0x7f,0xfc03fe00,0x3f,0xf001ff00,0x1f,0xe0007f80,0x1f,0xc0007f80,0x1f,0xc0003fc0,0x3f,0xe0001fc0,0x3f, + 0xe0001fc0,0x3f,0xf0001fe0,0x7f,0xf8000fe0,0x7f,0x7c000fe0,0x7f,0x7c000fe0,0x7f,0x3e000fe0,0xff,0x1f000ff0,0xfe,0xf8007f0,0xfe, + 0xf8007f0,0xfe,0x7c007f0,0xfe,0x3e007f0,0xfe,0x1f007f0,0xfe,0x1f007f0,0xfe,0xf807f0,0xfe,0x7c07f0,0xfe,0x3e07f0,0xfe, + 0x3e07f0,0xfe,0x1f07f0,0xfe,0xf8ff0,0xfe,0x7cfe0,0xfe,0x7cfe0,0x7f,0x3efe0,0x7f,0x1ffe0,0x7f,0x1ffe0,0x7f, + 0x8000ffc0,0x3f,0x80007fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff80,0xf,0xf801ffc0,0xf,0xff0fffe0,0x7, + 0xffffffe0,0x3,0xfffff9f0,0x1,0x7ffff0f8,0x0,0x3fffc0f8,0x0,0x7fe0070,0x0,0x20,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 217 + 0x0,0x0,0x7f800,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3f00000,0x0,0x3c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xfe07ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 218 + 0x0,0x0,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0x3c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xfe07ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 219 + 0x0,0x0,0x3fc0000,0x0,0x7fe0000,0x0,0xfff0000,0x0,0x1fff8000,0x0,0x3f9fc000,0x0,0x7e07e000,0x0,0xf803f000,0x0, + 0xf000f800,0x1,0xc0003c00,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xfe07ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x7f,0xfc0,0x7f,0xfc0,0x3f,0xfc0,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0xc0001fc0,0x3f,0xc0003f80,0x1f,0xe0007f80,0x1f,0xf000ff00,0xf,0xfe07ff00,0xf, + 0xfffffe00,0x7,0xfffffc00,0x3,0xfffff800,0x1,0x7fffe000,0x0,0xfff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 221 + 0x0,0x0,0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x1f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc,0x3f8,0x3f8,0x3fc,0x3f8,0x1fc, + 0x7f0,0xfe,0xfe0,0xfe,0xfe0,0x7f,0x80001fc0,0x3f,0x80003fc0,0x3f,0xc0003f80,0x1f,0xe0007f00,0xf,0xe0007f00,0xf, + 0xf000fe00,0x7,0xf001fc00,0x7,0xf801fc00,0x3,0xfc03f800,0x1,0xfc03f000,0x1,0xfe07f000,0x0,0x7e0fe000,0x0,0x7f0fe000,0x0, + 0x3f9fc000,0x0,0x1f9f8000,0x0,0x1fff8000,0x0,0xfff0000,0x0,0xffe0000,0x0,0x7fe0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1ffffc0,0x0,0x3fffffc0,0x0,0xffffffc0,0x1, + 0xffffffc0,0x3,0xffffffc0,0xf,0xff001fc0,0xf,0xf0001fc0,0x1f,0xc0001fc0,0x3f,0x80001fc0,0x3f,0x1fc0,0x7f,0x1fc0,0x7f, + 0x1fc0,0x7f,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0xfe,0x1fc0,0x7e, + 0x1fc0,0x7f,0x1fc0,0x7f,0x80001fc0,0x7f,0xc0001fc0,0x3f,0xe0001fc0,0x3f,0xf0001fc0,0x1f,0xff801fc0,0xf,0xffffffc0,0x7, + 0xffffffc0,0x3,0xffffffc0,0x0,0x3fffffc0,0x0,0xffffc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80000,0x0,0x1fffc000,0x0,0x7ffff000,0x0,0xfffff800,0x1,0xfffffc00,0x3,0xff07fe00,0x7,0xf800ff00,0x7,0xe0007f80,0xf, + 0xc0003f80,0xf,0xc0001f80,0xf,0xc0001fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf,0xc0000fc0,0xf,0xe0000fc0,0xf,0xe0000fc0,0x7, + 0xf0000fe0,0x7,0xf8000fe0,0x3,0xfc000fe0,0x1,0xfe000fe0,0x0,0x7f000fe0,0x0,0x3f800fe0,0x0,0x1f800fe0,0x0,0x1f800fe0,0x0, + 0x1f800fe0,0x0,0x1f800fe0,0x0,0x1f800fe0,0x0,0x3f800fe0,0x0,0x7f800fe0,0x0,0xff000fe0,0x0,0xfe000fe0,0x3,0xfc000fe0,0x7, + 0xf8000fe0,0xf,0xf0000fe0,0x3f,0xc0000fe0,0x7f,0x80000fe0,0x7f,0xfe0,0xff,0xfe0,0x1fe,0xfe0,0x1fc,0xfe0,0x1f8, + 0xfe0,0x1f8,0xfe0,0x1f8,0xfe0,0x1f8,0xfe0,0x1f8,0xfe0,0x1f8,0xfe0,0x1f8,0x80fe0,0x1fc,0x780fe0,0xfe, + 0xfff80fe0,0xff,0xfff80fe0,0x7f,0xfff80fe0,0x3f,0xfff80fe0,0x1f,0xffe00000,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f800,0x0,0x7f800,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0, + 0x1f80000,0x0,0x1f00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfe000000,0x0,0xff000000,0x0,0x7f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x1f80000,0x0, + 0xfc0000,0x0,0x7e0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1fc0000,0x0,0x3fe0000,0x0,0x7ff0000,0x0,0xfff8000,0x0,0x1fdfc000,0x0,0x3f8fe000,0x0,0x7e03f000,0x0, + 0xf800f800,0x0,0xf0007c00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc00fe000,0x3,0xc03ff000,0x3,0xc0fff800,0x3,0xe3fffc00,0x3,0xfffc7c00,0x1,0xfff03c00,0x1, + 0xffc01e00,0x0,0x7f001e00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7c03f000,0x0,0x7c03f000,0x0,0x7c03f000,0x0,0x7c03f000,0x0,0x7c03f000,0x0, + 0x7c03f000,0x0,0x7c03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x7ff0000,0x0, + 0xfff8000,0x0,0x1fffc000,0x0,0x3f0fc000,0x0,0x3e03e000,0x0,0x3c03e000,0x0,0x3c03e000,0x0,0x3c03e000,0x0,0x3f07c000,0x0, + 0x1fffc000,0x0,0x1fff8000,0x0,0xfff0000,0x0,0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x7ff8000,0x0,0x3fffe000,0x0, + 0x7ffff800,0x0,0xfffffc00,0x1,0xfffffe00,0x1,0xfc00ff00,0x3,0xf8007f00,0x3,0xf0003f80,0x7,0xf0003f80,0x7,0xe0003f80,0x7, + 0xe0001000,0x7,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfff00000,0xf,0xffffe000,0xf,0xfffff800,0xf, + 0xfffffe00,0xf,0xffffff00,0xf,0xe001ff80,0xf,0xe0007f80,0xf,0xe0003fc0,0xf,0xe0001fc0,0xf,0xe0000fe0,0xf,0xe0000fe0,0xf, + 0xe0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf8000fe0,0xf,0xfc000fe0,0xf,0xde001fe0,0xf,0xcf001fc0,0xf,0xcfc03fc0,0x1f, + 0xc7ffff80,0x17f,0xc3ffff80,0x1ff,0x81ffff00,0x1ff,0x7ffe00,0x1ff,0x1ff000,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf803fe00,0x7,0xfe0fff80,0x1f, + 0xff1fffc0,0x3f,0xffbfffe0,0x7f,0xbfbffff0,0xff,0xffe07f0,0xfc,0x7fc03f0,0x1f8,0x3fc01f8,0x1f8,0x3fc01f8,0x3f0,0x1fc01f8,0x3f0, + 0x1fc0180,0x3f0,0x1f80000,0x3e0,0x1f80000,0x3e0,0x1f80000,0x7e0,0x1f80000,0x7e0,0xfff000,0x7e0,0xffffff80,0x7ff,0xffffffe0,0x7ff, + 0xfffffff0,0x7ff,0xfffffff8,0x7ff,0xfff807f8,0x7ff,0xf801fc,0x0,0xf800fc,0x0,0x1f800fc,0x0,0x1fc00fe,0x0,0x1fc007e,0x0, + 0x1fc007e,0x0,0x1fc007e,0x0,0x1fc007e,0x0,0x1fe007e,0xe0,0x3fe007e,0x3e0,0x3ff00fc,0x3f0,0x7ef80fc,0x1f8,0xfc7c1fc,0x1fc, + 0xffc7fffc,0xff,0xff83fff8,0x7f,0xff01fff0,0x7f,0xfe00ffe0,0x1f,0xf8003fc0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xfffffc00,0x7,0xf803fe00,0xf,0xe000ff00,0x1f,0xc0007f00,0x1f,0x80003f80,0x3f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x1fc0,0x1,0xfc0,0x0,0xfc0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0, + 0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x3f,0xc0003f80,0x1f,0xc0007f00,0x1f,0xe000ff00,0xf,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xffffe000,0x0,0x3fffc000,0x0,0xffe0000,0x0,0xf00000,0x0,0x700000,0x0,0x780000,0x0, + 0x3f80000,0x0,0xff80000,0x0,0xffc0000,0x0,0x1f800000,0x0,0x1f000000,0x0,0x1e000000,0x0,0x1e000000,0x0,0x1f000000,0x0, + 0x1fc00000,0x0,0xffe0000,0x0,0x7fe0000,0x0,0x1fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f000,0x0,0xff000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfe0000,0x0,0x1f80000,0x0, + 0x3f00000,0x0,0x7e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffff800,0x1,0xff9ffc00,0x3,0xf801fe00,0x7,0xf000ff00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80001f80,0x1f, + 0x80001fc0,0x3f,0x1fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfe0,0x7f,0xfe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x7,0x80003f80,0x3f,0xc0007f00,0x1f,0xe000fe00,0x1f,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x7e00000,0x0, + 0x1f00000,0x0,0xf80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffff800,0x1,0xff9ffc00,0x3,0xf801fe00,0x7,0xf000ff00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80001f80,0x1f, + 0x80001fc0,0x3f,0x1fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfe0,0x7f,0xfe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x7,0x80003f80,0x3f,0xc0007f00,0x1f,0xe000fe00,0x1f,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fbf8000,0x0,0x7f1fc000,0x0,0xfc07e000,0x0, + 0xf801f000,0x1,0xe000f800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffff800,0x1,0xff9ffc00,0x3,0xf801fe00,0x7,0xf000ff00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80001f80,0x1f, + 0x80001fc0,0x3f,0x1fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfe0,0x7f,0xfe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x7,0x80003f80,0x3f,0xc0007f00,0x1f,0xe000fe00,0x1f,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03e000,0x0,0xfc03e000,0x0,0xfc03e000,0x0,0xfc03e000,0x0,0xfc03e000,0x0, + 0xfc03e000,0x0,0xfc03e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x3fffc000,0x0, + 0xfffff000,0x0,0xfffff800,0x1,0xff9ffc00,0x3,0xf801fe00,0x7,0xf000ff00,0xf,0xe0007f00,0xf,0xc0003f80,0x1f,0x80001f80,0x1f, + 0x80001fc0,0x3f,0x1fc0,0x3f,0xfc0,0x3f,0xfc0,0x3f,0xfe0,0x7f,0xfe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f, + 0xffffffe0,0x7f,0xffffffe0,0x7f,0xffffffe0,0x7f,0xfe0,0x0,0xfe0,0x0,0xfe0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1fc0,0x0,0x1fc0,0x0,0x1f80,0x0,0x3f80,0x7,0x80003f80,0x3f,0xc0007f00,0x1f,0xe000fe00,0x1f,0xf803fe00,0xf, + 0xfffffc00,0x7,0xfffff800,0x3,0xfffff000,0x1,0x7fffc000,0x0,0xffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7e0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3e00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f80000,0x0,0x7fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fbf8000,0x0,0x7f1fc000,0x0,0xfc07e000,0x0, + 0xf001f000,0x1,0xe000f800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf00fc000,0x1,0xf00fc000,0x1,0xf00fc000,0x1,0xf00fc000,0x1,0xf00fc000,0x1, + 0xf00fc000,0x1,0xf00fc000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffe00,0x0,0x7fffe00,0x0, + 0x7fffe00,0x0,0x7fffe00,0x0,0x7fffe00,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0, + 0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0xffffffc0,0xff, + 0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0xffffffc0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800,0x1,0xe00ff000,0x3,0xf83fc000,0x3,0xfe7f0000,0x7,0xfffe0000,0x1,0x7ffc0000,0x0,0x1ffc0000,0x0,0xfff8000,0x0, + 0x1fffe000,0x0,0x3f9ff800,0x0,0x7f07f000,0x0,0xfe01f000,0x0,0xfc006000,0x1,0xfc000000,0x1,0xf8000000,0x3,0xf0000000,0x7, + 0xf0000000,0x7,0xe0000000,0xf,0xe3fe0000,0xf,0xdfffc000,0x1f,0xfffff000,0x1f,0xfffffc00,0x1f,0xfffffe00,0x3f,0xf801ff00,0x3f, + 0xe0007f00,0x3f,0xc0003f80,0x3f,0x80003f80,0x7f,0x80001fc0,0x7f,0x1fc0,0x7f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7e,0xfe0,0x7e,0xfe0,0x7e,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfc0,0x3f,0x1fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf801ff00,0xf, + 0xffdffe00,0x7,0xfffffc00,0x3,0xfffff000,0x0,0x3fffe000,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x801fe000,0x7,0x807ff000,0x7,0xc0fff800,0x7,0xe7fff800,0x3,0xfff87800,0x3,0xffe03c00,0x1, + 0xff803c00,0x1,0x7e003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff01f80,0x0,0xfffc1f80,0x1, + 0xfffe1f80,0x3,0xffff1f80,0x7,0xffff9f80,0x7,0xf807df80,0xf,0xe003ff80,0xf,0xc000ff80,0x1f,0xc000ff80,0x1f,0xc0007f80,0x1f, + 0x80007f80,0x1f,0x80003f80,0x1f,0x80003f80,0x1f,0x80003f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f8000,0x0,0x7f0000,0x0,0xfc0000,0x0,0x1f80000,0x0, + 0x3f00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xff9ffc00,0x7,0xf801fe00,0x7,0xe000ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x1f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf000ff00,0xf,0xf801fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xff9ffc00,0x7,0xf801fe00,0x7,0xe000ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x1f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf000ff00,0xf,0xf801fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f80000,0x0,0x3fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x7f0fc000,0x0,0xfc07e000,0x0, + 0xf801f000,0x1,0xe0007800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xff9ffc00,0x7,0xf801fe00,0x7,0xe000ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x1f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf000ff00,0xf,0xf801fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x800fe000,0x7,0xc03ff000,0x3,0xc0fff800,0x3,0xe3fff800,0x3,0xfffc7c00,0x1,0xfff03c00,0x1, + 0xffc03c00,0x0,0x7f003c00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xff9ffc00,0x7,0xf801fe00,0x7,0xe000ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x1f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf000ff00,0xf,0xf801fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0000,0x0,0x7fffc000,0x0, + 0xfffff000,0x1,0xfffff800,0x3,0xff9ffc00,0x7,0xf801fe00,0x7,0xe000ff00,0xf,0xc0007f00,0x1f,0xc0003f80,0x1f,0x80003f80,0x3f, + 0x80001fc0,0x3f,0x80001fc0,0x3f,0xfc0,0x3f,0xfc0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f, + 0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfe0,0x7f,0xfc0,0x3f, + 0xfc0,0x3f,0x80001fc0,0x3f,0x80001fc0,0x3f,0x80003f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf000ff00,0xf,0xf801fe00,0x7, + 0xfffffc00,0x3,0xfffff800,0x1,0xfffff000,0x0,0x3fffc000,0x0,0x7fe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0xffffffe0,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f80000,0x0,0x1f80000,0x0, + 0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff0000,0x10,0x7fffc000,0x38, + 0xfffff800,0x79,0xfffffc00,0x7f,0xff9ffe00,0x3f,0xf801ff00,0x1f,0xe0007f00,0x1f,0xc0003f80,0x1f,0xe0003f80,0x3f,0xf0001fc0,0x3f, + 0xf0001fc0,0x3f,0x78000fe0,0x7f,0x7c000fe0,0x7f,0x3e000fe0,0x7e,0x1f0007e0,0x7e,0xf8007e0,0xfe,0x7c007e0,0xfe,0x3e007f0,0xfe, + 0x1f007f0,0xfe,0xf007f0,0xfe,0xf807f0,0xfe,0x7c07f0,0xfe,0x3e07e0,0xfe,0x1f07e0,0x7e,0xf87e0,0x7e,0x7cfe0,0x7e, + 0x3efe0,0x7f,0x1ffe0,0x7f,0xffc0,0x3f,0x8000ffc0,0x3f,0x80007f80,0x1f,0xc0003f80,0x1f,0xe0007f00,0xf,0xf801ff80,0xf, + 0xffdfffc0,0x7,0xffffffe0,0x3,0xfffff1e0,0x0,0x3fffc0c0,0x0,0x7ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f800,0x0,0xff000,0x0,0xfe000,0x0,0x1fc000,0x0,0x3f0000,0x0,0x7e0000,0x0,0xfc0000,0x0, + 0x1f00000,0x0,0x3e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0xc0001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0003f80,0x1f,0xf0007f00,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0xbffffe00,0x1f,0x9ffffe00,0x1f,0x8ffffc00,0x1f,0x3fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfe000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x3f00000,0x0, + 0xf80000,0x0,0x7c0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0xc0001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0003f80,0x1f,0xf0007f00,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0xbffffe00,0x1f,0x9ffffe00,0x1f,0x8ffffc00,0x1f,0x3fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f80000,0x0,0x3fc0000,0x0,0xffe0000,0x0,0x1fff0000,0x0,0x3fff8000,0x0,0x7f0fc000,0x0,0xfc07e000,0x0, + 0xf801f000,0x1,0xe0007800,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0xc0001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0003f80,0x1f,0xf0007f00,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0xbffffe00,0x1f,0x9ffffe00,0x1f,0x8ffffc00,0x1f,0x3fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f,0x80001f80,0x1f, + 0x80001f80,0x1f,0xc0001f80,0x1f,0xc0003f80,0x1f,0xc0003f80,0x1f,0xe0003f80,0x1f,0xf0007f00,0x1f,0xf8007f00,0x1f,0xbe01ff00,0x1f, + 0xbffffe00,0x1f,0x9ffffe00,0x1f,0x8ffffc00,0x1f,0x3fff000,0x3f,0xffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0xfe00000,0x0,0x3f00000,0x0, + 0x1f80000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x1f8,0x3f8,0x1fc, + 0x3f0,0xfc,0x7f0,0xfe,0x7e0,0xfe,0xfe0,0x7e,0xfe0,0x7f,0xfc0,0x3f,0x80001fc0,0x3f,0x80001f80,0x3f, + 0x80003f80,0x1f,0xc0003f00,0x1f,0xc0007f00,0xf,0xc0007e00,0xf,0xe0007e00,0x7,0xe000fe00,0x7,0xf000fc00,0x7,0xf001fc00,0x3, + 0xf001f800,0x3,0xf801f800,0x1,0xf803f000,0x1,0xfc03f000,0x0,0xfc07f000,0x0,0xfc07e000,0x0,0x7e07e000,0x0,0x7e0fc000,0x0, + 0x3f0fc000,0x0,0x3f1f8000,0x0,0x1f1f8000,0x0,0x1f9f0000,0x0,0x1fbf0000,0x0,0xfff0000,0x0,0xffe0000,0x0,0x7fe0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0xffdc0,0x0,0x7ffc0,0x0, + 0x3ffc0,0x0,0x1ffc0,0x0,0x7fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x3ff01f80,0x0,0xfffc1f80,0x0, + 0xffff1f80,0x3,0xffff9f80,0x3,0xffff9f80,0x7,0xf807df80,0xf,0xe001df80,0xf,0xc000ff80,0x1f,0xc000ff80,0x1f,0x80007f80,0x3f, + 0x80007f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x3f,0x3f80,0x7f,0x3f80,0x7f,0x3f80,0x7f,0x1f80,0x7f, + 0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x1f80,0x7f,0x3f80,0x7f,0x3f80,0x3f,0x3f80,0x3f, + 0x3f80,0x3f,0x80003f80,0x3f,0x80007f80,0x3f,0x80007f80,0x3f,0xc0007f80,0x1f,0xc000ff80,0x1f,0xe001ff80,0xf,0xf007df80,0xf, + 0xff7fdf80,0x7,0xffff9f80,0x3,0xffff1f80,0x1,0xfffc1f80,0x0,0x1ff01f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x1f80,0x0, + 0x1f80,0x0,0x1f80,0x0,0x1f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0,0xfc03f000,0x0, + 0xfc03f000,0x0,0xfc03f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8,0x1f8,0x3f8,0x1fc, + 0x3f0,0xfc,0x7f0,0xfe,0x7e0,0xfe,0xfe0,0x7e,0xfe0,0x7f,0xfc0,0x3f,0x80001fc0,0x3f,0x80001f80,0x3f, + 0x80003f80,0x1f,0xc0003f00,0x1f,0xc0007f00,0xf,0xc0007e00,0xf,0xe0007e00,0x7,0xe000fe00,0x7,0xf000fc00,0x7,0xf001fc00,0x3, + 0xf001f800,0x3,0xf801f800,0x1,0xf803f000,0x1,0xfc03f000,0x0,0xfc07f000,0x0,0xfc07e000,0x0,0x7e07e000,0x0,0x7e0fc000,0x0, + 0x3f0fc000,0x0,0x3f1f8000,0x0,0x1f1f8000,0x0,0x1f9f0000,0x0,0x1fbf0000,0x0,0xfff0000,0x0,0xffe0000,0x0,0x7fe0000,0x0, + 0x7fc0000,0x0,0x7fc0000,0x0,0x3f80000,0x0,0x3f80000,0x0,0x1f80000,0x0,0x1f80000,0x0,0xfc0000,0x0,0xfc0000,0x0, + 0xfe0000,0x0,0x7e0000,0x0,0x7f0000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0xffdc0,0x0,0x7ffc0,0x0, + 0x3ffc0,0x0,0x1ffc0,0x0,0x7fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,66,-1,5,50,0,0,0,0,0 +const unsigned int ff17_height = 99; +const unsigned int ff17_line_height = 100; +const unsigned int ff17_width = 53; +const unsigned int ff17_stride = 2; +const unsigned char ff17_first_char = ' '; + +uint32_t ff17_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3ff000,0x1ff,0x3fe000,0x1ff,0x3fe000,0x1ff,0x3fe000,0x1ff,0x3fe000,0x1ff,0x3fe000,0x1ff, + 0x3fe000,0x1ff,0x3fe000,0x1ff,0x1fe000,0x1ff,0x1fe000,0x1ff,0x1fe000,0x1ff,0x1fe000,0x1ff,0x1fe000,0xfe,0x1fe000,0xfe, + 0x1fe000,0xfe,0x1fe000,0xfe,0x1fe000,0xfe,0x1fc000,0xfe,0x1fc000,0xfe,0x1fc000,0xfe,0x1fc000,0xfe,0x1fc000,0xfe, + 0x1fc000,0xfe,0xfc000,0xfe,0xfc000,0xfe,0xfc000,0xfe,0xfc000,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f00000,0x1f00,0xf00000,0x1f00,0xf80000,0x1f00,0xf80000,0xf00,0xf80000,0xf80,0xf80000,0xf80,0x780000,0xf80,0x7c0000,0x780, + 0x7c0000,0x780,0x7c0000,0x7c0,0x3c0000,0x7c0,0x3c0000,0x7c0,0x3e0000,0x3c0,0x3e0000,0x3e0,0x3e0000,0x3e0,0x1e0000,0x3e0, + 0x1f0000,0x3e0,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xffffffe0,0x3ffff,0xf8000,0xf0,0xf8000,0xf8, + 0xf8000,0xf8,0x78000,0xf8,0x7c000,0x78,0x7c000,0x7c,0x7c000,0x7c,0x7c000,0x7c,0x3c000,0x7c,0x3e000,0x3c, + 0x3e000,0x3e,0x3e000,0x3e,0x1e000,0x3e,0xfffffff8,0x1ffff,0xfffffff8,0x1ffff,0xfffffff8,0x1ffff,0xfffffff8,0x1ffff,0xfffffff8,0x1ffff, + 0xf800,0xf,0x8000f800,0xf,0x8000f800,0xf,0x80007800,0xf,0x80007800,0xf,0x80007c00,0x7,0xc0007c00,0x7,0xc0007c00,0x7, + 0xc0003c00,0x7,0xc0003e00,0x7,0xc0003e00,0x3,0xe0003e00,0x3,0xe0003e00,0x3,0xe0001e00,0x3,0xe0001f00,0x1,0xe0001f00,0x1, + 0xf0001f00,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0xfffc0000,0xf,0xffff8000,0x7f,0xffffe000,0x1ff,0xfffff800,0x7ff,0xfffffc00,0xfff,0xbf3ffe00,0x1fff,0x3f03ff00,0x3ff8,0x3f01ff80,0x3fe0, + 0x3f007f80,0x7fc0,0x3f007f80,0x7f80,0x3f003fc0,0xff80,0x3f003fc0,0xff00,0x3f003fc0,0xff00,0x3f003fc0,0xfe00,0x3f003fc0,0x600,0x3f003fc0,0x0, + 0x3f003fc0,0x0,0x3f003f80,0x0,0x3f007f80,0x0,0x3f00ff80,0x0,0x3f01ff00,0x0,0x3f07ff00,0x0,0x3f7ffe00,0x0,0x3ffffc00,0x0, + 0xfffff800,0x1,0xffffe000,0x1f,0xffff8000,0x7f,0xfffe0000,0x1ff,0xfff00000,0x7ff,0xff000000,0x1fff,0xff000000,0x3fff,0x3f000000,0x7ffe, + 0x3f000000,0xfff0,0x3f000000,0xffc0,0x3f000000,0x1ff00,0x3f000000,0x1fe00,0x3f000000,0x1fe00,0x3f000000,0x3fc00,0x3f000000,0x3fc00,0x3f000000,0x3fc00, + 0x3f000780,0x3fc00,0x3f0007f8,0x3fc00,0x3f0007f0,0x3fc00,0x3f000ff0,0x3fc00,0x3f000ff0,0x3fc00,0x3f001fe0,0x1fe00,0x3f003fe0,0x1fe00,0x3f007fc0,0x1ff00, + 0x3f00ffc0,0xffc0,0x3f03ff80,0x7ff0,0x3f7fff00,0x3fff,0xfffffe00,0x1fff,0xfffffc00,0xfff,0xfffff000,0x7ff,0xffffc000,0xff,0xfffe0000,0x1f, + 0x7f800000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1fe00,0x3f000, + 0xfffc0,0x1f800,0x1fffe0,0x1fc00,0x3ffff0,0xfc00,0x7ffff8,0x7e00,0x7f03fc,0x7f00,0xfe01fc,0x3f00,0xfc00fe,0x1f80,0xfc00fe,0x1fc0, + 0x1fc007e,0xfc0,0x1f8007e,0x7e0,0x1f8007e,0x3f0,0x1f8007e,0x3f8,0x1f8007e,0x1f8,0x1f8007e,0xfc,0x1f8007e,0xfe,0x1f8007e,0x7e, + 0x1f8007e,0x3f,0x81f8007e,0x3f,0x81fc007e,0x1f,0xc0fc00fe,0xf,0xe0fc00fe,0xf,0xe0fe01fc,0x7,0xf07f03fc,0x3,0xf87ffff8,0x1, + 0xfc3ffff0,0x1,0xfc1fffe0,0x0,0x7e07ffc0,0x0,0x7f01fe00,0x0,0x3f000000,0x0,0x1f800000,0x3fe0,0x1fc00000,0xfffc,0xfc00000,0x1fffe, + 0x7e00000,0x3ffff,0x87f00000,0x7ffff,0xc3f00000,0xff03f,0xc1f80000,0xfe01f,0xc0fc0000,0xfc00f,0xe0fc0000,0x1fc00f,0xe07e0000,0x1f8007,0xe03f0000,0x1f8007, + 0xe03f8000,0x1f8007,0xe01f8000,0x1f8007,0xe00fc000,0x1f8007,0xe00fe000,0x1f8007,0xe007e000,0x1f8007,0xe003f000,0x1f8007,0xe003f800,0x1f8007,0xe001f800,0x1f8007, + 0xe000fc00,0x1fc00f,0xe000fe00,0x1fc00f,0xc0007e00,0xfc00f,0xc0003f00,0xfe01f,0x80001f80,0x7f03f,0x80001f80,0x7ffff,0xfc0,0x3ffff,0x7e0,0x1fffe, + 0x7f0,0x7ff8,0x0,0x1fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0, + 0xfff80000,0x3,0xfffe0000,0xf,0xffff0000,0x1f,0xffff8000,0x3f,0xf1ffc000,0x7f,0x803fe000,0x7f,0xfe000,0xff,0x7f000,0xfe, + 0x7f000,0xfc,0x3f000,0xfc,0x3f000,0x1fc,0x3f000,0xfc,0x3f000,0xfc,0x3f000,0xfe,0x3f000,0xfe,0x3f000,0x7f, + 0x8007f000,0x7f,0xc007f000,0x3f,0xf007e000,0x1f,0xfc0fe000,0xf,0xff0fe000,0x7,0xffffc000,0x1,0xffffc000,0x0,0x3fff8000,0x0, + 0x7ffc000,0x0,0x1ffe000,0x0,0x7ff800,0x700,0xfffc00,0x3f00,0xffff00,0x3f00,0x1ffff80,0x3f00,0x1fc7f80,0x3f80,0x3f83fc0,0x3f80, + 0x7f81fe0,0x1f80,0x7f00ff0,0x1f80,0xff00ff0,0x1fc0,0x1fe007f0,0x1fc0,0x3fc007f8,0xfc0,0x3f8003f8,0xfe0,0x7f8003f8,0xfe0,0xff0003f8,0x7e0, + 0xfe0003fc,0x7f1,0xfe0003fc,0x3f3,0xfc0003fc,0x3fb,0xf80003fc,0x1ff,0xf00003f8,0x1ff,0xe00003f8,0x1ff,0xe00003f8,0xff,0xc00007f8,0xff, + 0xc00007f8,0x1ff,0xe0000ff0,0x3ff,0xf0001ff0,0x7ff,0xfc007fe0,0x1fff,0xff83ffc0,0x7ffff,0xffffff80,0x7fff3,0xffffff00,0x7ffe1,0x7ffffe00,0x7ff80, + 0x1ffff800,0x7ff00,0x3ffc000,0x3f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc0000000,0x3f,0xe0000000,0x1f,0xf0000000,0x1f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x3, + 0xfc000000,0x3,0xfe000000,0x1,0xff000000,0x0,0xff000000,0x0,0x7f800000,0x0,0x7fc00000,0x0,0x3fc00000,0x0,0x3fe00000,0x0, + 0x1fe00000,0x0,0x1ff00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1ff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0, + 0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x7f8000,0x0, + 0x7f8000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x7f80000,0x0, + 0x7f80000,0x0,0xff80000,0x0,0xff00000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x7f800000,0x0,0xff800000,0x0,0xff000000,0x0,0xfe000000,0x1,0xfe000000,0x1,0xfc000000,0x3,0xf8000000,0x7,0xf8000000,0xf, + 0xf0000000,0xf,0xe0000000,0x1f,0xc0000000,0x3f,0xc0000000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff0000,0x0,0x1ff0000,0x0,0x1fe0000,0x0,0x3fc0000,0x0,0x7f80000,0x0,0xff80000,0x0, + 0xff00000,0x0,0x1fe00000,0x0,0x3fe00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0x7f800000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xfe000000,0x1,0xfe000000,0x1,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x7,0xf8000000,0x7,0xf8000000,0x7,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xc0000000,0x3f, + 0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f, + 0xc0000000,0x3f,0x80000000,0x3f,0x80000000,0x7f,0x80000000,0x3f,0x80000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f, + 0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xc0000000,0x3f,0xe0000000,0x1f, + 0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf8000000,0x7,0xf8000000,0x7, + 0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x3,0xfe000000,0x3,0xfe000000,0x1,0xff000000,0x1,0xff000000,0x0,0xff800000,0x0, + 0x7f800000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x3fc0000,0x0, + 0x3fe0000,0x0,0x1fe0000,0x0,0xff0000,0x0,0x7f8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f002000,0x180,0x1f01e000,0x1e0,0x1f07f000,0x3fc,0x1e3ff000,0x3ff,0xfefff000,0x3ff,0xfffff800,0x7ff, + 0xffffc000,0xff,0xfffc0000,0xf,0xffc00000,0x0,0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x0,0xfbf00000,0x1,0xf3f00000,0x3, + 0xe1f80000,0x7,0xe1fc0000,0x7,0xc0fe0000,0xf,0xc07e0000,0x1f,0x807f0000,0x3f,0x803f8000,0x3f,0x1e0000,0x1f,0x1c0000,0x6, + 0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff80000,0x0,0x1ffc0000,0x0,0x1ffc0000,0x0, + 0xffc0000,0x0,0xffc0000,0x0,0xffe0000,0x0,0x7fe0000,0x0,0x7fe0000,0x0,0x3fe0000,0x0,0x3ff0000,0x0,0x1ff0000,0x0, + 0x1ff0000,0x0,0xff0000,0x0,0xff8000,0x0,0x7f8000,0x0,0x7f8000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0xfc000,0x0,0xfe000,0x0,0xfe000,0x0,0x7e000,0x0,0x7e000,0x0,0x3f000,0x0,0x3f000,0x0, + 0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffff8000,0x7f, + 0xffff8000,0x7f,0xffff8000,0x7f,0xffff8000,0x7f,0xffff8000,0x7f,0xffff8000,0x7f,0xffff8000,0x7f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff00,0x0,0x7f00,0x0,0x7f80,0x0,0x3f80,0x0,0x3fc0,0x0,0x1fc0, + 0x0,0x1fe0,0x0,0xff0,0x0,0xff0,0x0,0x7f8,0x0,0x3f8,0x0,0x3fc,0x0,0x1fc,0x0,0x1fe, + 0x0,0xfe,0x0,0xff,0x0,0x7f,0x80000000,0x7f,0xc0000000,0x3f,0xc0000000,0x3f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xf0000000,0xf,0xf0000000,0x7,0xf8000000,0x7,0xf8000000,0x3,0xfc000000,0x3,0xfc000000,0x1,0xfe000000,0x1,0xff000000,0x0, + 0xff000000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x3fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0,0xff00000,0x0, + 0x7f00000,0x0,0x7f80000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x1fe0000,0x0,0x1fe0000,0x0,0xff0000,0x0,0x7f0000,0x0, + 0x7f8000,0x0,0x3f8000,0x0,0x3fc000,0x0,0x1fc000,0x0,0x1fe000,0x0,0xff000,0x0,0xff000,0x0,0x7f800,0x0, + 0x7f800,0x0,0x3fc00,0x0,0x1fc00,0x0,0x1fe00,0x0,0xfe00,0x0,0xff00,0x0,0x7f00,0x0,0x7f80,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x1, + 0xfffe0000,0xf,0xffff0000,0x3f,0xffffc000,0x7f,0xffffe000,0x1ff,0xfffff000,0x3ff,0x807ff800,0x3ff,0x1ff800,0x7fe,0x7fc00,0xff8, + 0x3fe00,0xff0,0x1fe00,0x1ff0,0x1fe00,0x1fe0,0xff00,0x1fe0,0xff00,0x3fc0,0x7f00,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7f80, + 0x7f80,0x7f80,0x3f80,0x7f80,0x3f80,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f00,0x3fc0,0xff00,0x3fc0,0xff00,0xffc03fc0,0xff00, + 0xffc03fc0,0xff00,0xffc03fc0,0xff00,0xffc03fc0,0xff00,0xffc03fc0,0xff00,0xffc03fc0,0xff00,0xffc03fc0,0xff00,0xffc03fc0,0xff00,0xffc03fc0,0xff00, + 0xffc03fc0,0xff00,0xffc03fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0x7f00,0x3fc0,0x7f80,0x3f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x3f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fc0,0xfe00,0x1fe0,0x1fe00,0x1fe0,0x3fe00,0xff0, + 0x3fc00,0xff8,0x7fc00,0x7fc,0x1ff800,0x7fe,0xc07ff000,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffff8000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xffe00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc000000,0x3,0xfe000000,0x3,0xfe000000,0x3,0xff000000,0x3,0xffc00000,0x3,0xffe00000,0x3,0xfff80000,0x3,0xfffe0000,0x3, + 0xfdffc000,0x3,0xfcffff80,0x3,0xfc7fff80,0x3,0xfc3fff80,0x3,0xfc0fff80,0x3,0xfc03ff80,0x3,0xfc007f80,0x3,0xfc000380,0x3, + 0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3, + 0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3, + 0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3, + 0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3, + 0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0x1ff,0xffffe000,0x3ff,0xfffff000,0x7ff,0x807ff800,0xfff,0xffc00,0xffc,0x7fc00,0x1ff8, + 0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0x7f80,0x3fc0,0x0,0x3fc0, + 0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fe0,0x0,0x1fe0,0x0,0x1fe0,0x0,0xff0,0x0,0xff8,0x0,0x7f8, + 0x0,0x7fc,0x0,0x3fe,0x0,0x1ff,0x80000000,0xff,0xc0000000,0xff,0xf0000000,0x7f,0xf8000000,0x1f,0xfc000000,0xf, + 0xfe000000,0x7,0xff000000,0x3,0xff800000,0x1,0xffe00000,0x0,0x3ff00000,0x0,0x1ff80000,0x0,0xffc0000,0x0,0x7fe0000,0x0, + 0x3ff0000,0x0,0xff8000,0x0,0x7fc000,0x0,0x3fe000,0x0,0x1ff000,0x0,0xff800,0x0,0x7fc00,0x0,0x3fc00,0x0, + 0x3fe00,0x0,0x1ff00,0x0,0xff00,0x0,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0x1ff,0xfffff000,0x3ff,0xfffff800,0x7ff,0x807ff800,0xfff,0xffc00,0xffc,0x7fe00,0x1ff8, + 0x3fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x3fe0,0xff00,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f00,0x3fc0,0x0,0x3fc0, + 0x0,0x3fc0,0x0,0x1fc0,0x0,0x1fe0,0x0,0x1fe0,0x0,0xff0,0x0,0xff8,0x0,0x7fe,0x80000000,0x3ff, + 0xf8000000,0x1ff,0xffe00000,0x7f,0xffe00000,0x1f,0xffe00000,0x3,0xffe00000,0x1f,0xffe00000,0x7f,0xffe00000,0x1ff,0xf0000000,0x7ff, + 0x0,0xfff,0x0,0x1ff8,0x0,0x1ff0,0x0,0x3fe0,0x0,0x7fc0,0x0,0x7f80,0x0,0x7f80,0x0,0xff80, + 0x0,0xff00,0x3800,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0xff80,0x7fc0, + 0x1ff00,0x3fe0,0x7ff00,0x3ff0,0xffe00,0x1ffc,0x807ffc00,0x1fff,0xfffff800,0xfff,0xfffff000,0x7ff,0xffffe000,0x1ff,0xffff8000,0xff, + 0xfffe0000,0x3f,0xfff00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1ff,0x80000000,0x1ff,0xc0000000,0x1ff,0xe0000000,0x1ff,0xe0000000,0x1ff,0xf0000000,0x1ff,0xf8000000,0x1ff,0xf8000000,0x1ff, + 0xfc000000,0x1ff,0xfe000000,0x1fe,0x7f000000,0x1fe,0x3f000000,0x1fe,0x3f800000,0x1fe,0x1fc00000,0x1fe,0xfc00000,0x1fe,0xfe00000,0x1fe, + 0x7f00000,0x1fe,0x3f80000,0x1fe,0x1f80000,0x1fe,0x1fc0000,0x1fe,0xfe0000,0x1fe,0x7e0000,0x1fe,0x7f0000,0x1fe,0x3f8000,0x1fe, + 0x1fc000,0x1fe,0xfc000,0x1fe,0xfe000,0x1fe,0x7f000,0x1fe,0x3f000,0x1fe,0x1f800,0x1fe,0x1fc00,0x1fe,0xfe00,0x1fe, + 0x7e00,0x1fe,0x7f00,0x1fe,0x3f80,0x1fe,0x1f80,0x1fe,0xfc0,0x1fe,0xfe0,0x1fe,0xffffffe0,0x1ffff,0xffffffe0,0x1ffff, + 0xffffffe0,0x1ffff,0xffffffe0,0x1ffff,0xffffffe0,0x1ffff,0xffffffe0,0x1ffff,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe, + 0x0,0x1fe,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe,0x0,0x1fe, + 0x0,0x1fe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffc00,0xfff,0xfffffc00,0xfff,0xfffffc00,0xfff,0xfffffc00,0xfff,0xfffffe00,0xfff,0xfffffe00,0xfff,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xfe00,0x0, + 0xfe00,0x0,0xfe00,0x0,0xfe00,0x0,0xff00,0x0,0xff00ff00,0x1,0xfff0ff00,0xf,0xfffcff00,0x3f,0xffffff00,0xff, + 0xffffff00,0x1ff,0xffffff00,0x7ff,0xfbffff00,0x7ff,0x1fff00,0xfff,0x7ff00,0x1ffc,0x1ff00,0x1ff0,0xff00,0x3fe0,0x0,0x3fe0, + 0x0,0x7fc0,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff80,0x0,0xff00,0x0,0xff00,0x0,0xff00, + 0x0,0xff00,0x0,0x7f80,0x0,0x7f80,0x3c00,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fe0, + 0x1ff00,0x1ff0,0x3ff00,0x1ff8,0x7fe00,0xffe,0xc03ffe00,0x7ff,0xfffffc00,0x3ff,0xfffff800,0x1ff,0xfffff000,0xff,0xffffc000,0x3f, + 0xffff0000,0xf,0xfff80000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x7, + 0xfff00000,0x3f,0xfffc0000,0xff,0xfffe0000,0x1ff,0xffff0000,0x3ff,0xffff8000,0x7ff,0x1ffc000,0x7ff,0x7fe000,0xffc,0x1ff000,0x1ff0, + 0xff000,0x1fe0,0x7f800,0x1fe0,0x7f800,0x3fc0,0x3fc00,0x7c0,0x3fc00,0x0,0x1fe00,0x0,0x1fe00,0x0,0xfe00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0x7f00,0x0,0xff807f00,0x7,0xffe07f00,0x3f,0xfff87f80,0xff,0xfffc7f80,0x1ff, + 0xfffe7f80,0x3ff,0xffff7f80,0x7ff,0x7fff80,0xffe,0x1fff80,0x1ff8,0x7ff80,0x1ff0,0x3ff80,0x3fe0,0x1ff80,0x3fc0,0x1ff80,0x7fc0, + 0xff80,0x7f80,0xff80,0x7f80,0xff80,0x7f80,0xff80,0x7f80,0x7f80,0x7f00,0x7f00,0xff00,0xff00,0xff00,0xff00,0xff00, + 0xff00,0x7f00,0xff00,0x7f00,0xfe00,0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0x1fc00,0x7fc0,0x3fc00,0x3fc0,0x7fc00,0x3fe0, + 0xff800,0x1ff0,0x1ff000,0x1ff8,0x3ff000,0xffc,0xffe000,0x7ff,0xffffc000,0x7ff,0xffff8000,0x3ff,0xffff0000,0xff,0xfffe0000,0x7f, + 0xfff80000,0x1f,0xffc00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0x0,0x3fc0,0x0,0x1fc0, + 0x0,0xfe0,0x0,0xff0,0x0,0x7f0,0x0,0x3f8,0x0,0x3fc,0x0,0x1fc,0x0,0x1fe,0x0,0xff, + 0x0,0x7f,0x80000000,0x7f,0x80000000,0x3f,0xc0000000,0x3f,0xe0000000,0x1f,0xe0000000,0x1f,0xf0000000,0xf,0xf0000000,0xf, + 0xf8000000,0x7,0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x3,0xfe000000,0x1,0xfe000000,0x1,0xff000000,0x0,0xff000000,0x0, + 0x7f000000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0, + 0x1fe00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x7f80000,0x0, + 0x7f80000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0x1f,0xffff8000,0x7f,0xffffe000,0xff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x1ffc00,0x7fe,0x7fc00,0xff8,0x3fe00,0x1ff0, + 0x1fe00,0x1fe0,0xff00,0x1fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x1fc0,0xfe00,0x1fe0,0x1fe00,0x1fe0,0x3fc00,0xff0,0x7fc00,0x7f8,0xff800,0x7fc,0x807ff000,0x3ff, + 0xffffe000,0x1ff,0xffff8000,0x7f,0xfffe0000,0xf,0xfffe0000,0x1f,0xffffc000,0xff,0xfffff000,0x3ff,0x3ff800,0x7ff,0x7fc00,0xffc, + 0x3fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0xff80,0x3fc0, + 0x1ff00,0x3fe0,0x3ff00,0x1ff0,0x7fe00,0x1ff8,0x1ffe00,0xffe,0xf3fffc00,0x7ff,0xfffff800,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff, + 0xffff0000,0x1f,0xfff00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x1, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0x7f,0xffffe000,0xff,0xfffff800,0x1ff,0xc07ff800,0x3ff,0xffc00,0x3ff,0x7fe00,0x7fc, + 0x3fe00,0xff8,0x1ff00,0xff0,0xff00,0x1ff0,0xff00,0x1fe0,0x7f80,0x1fe0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x3f80,0x3f80,0x3f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0, + 0xff80,0x7fc0,0xff00,0x7fc0,0xff00,0x7fe0,0x1ff00,0x7ff0,0x3fe00,0x7ff8,0x7fe00,0x7ffc,0xffc00,0x7f7e,0xc07ff800,0x7fbf, + 0xfffff800,0x7fbf,0xfffff000,0x7f9f,0xffffc000,0x7f8f,0xffff8000,0x7f83,0xfffe0000,0x7f80,0x1ff00000,0x3f80,0x0,0x3f80,0x0,0x3fc0, + 0x0,0x3fc0,0x0,0x1fc0,0x0,0x1fe0,0x0,0x1fe0,0x0,0xfe0,0xfe00,0xff0,0xff00,0xff8,0xff00,0x7f8, + 0x1fe00,0x7fc,0x3fe00,0x3fe,0x8007fc00,0x1ff,0xe01ffc00,0xff,0xfffff800,0xff,0xfffff000,0x7f,0xffffe000,0x1f,0xffffc000,0xf, + 0xffff0000,0x3,0x7ff80000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff800000,0x3,0xffc00000,0x1,0xffc00000,0x1, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x3fe00000,0x0,0x3ff00000,0x0,0x1ff00000,0x0, + 0x1ff00000,0x0,0xff00000,0x0,0xff80000,0x0,0x7f80000,0x0,0x7f80000,0x0,0x3f80000,0x0,0x3fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0x7e0000,0x0,0x7e0000,0x0,0x3f0000,0x0,0x3f0000,0x0, + 0x1f0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8000,0x0,0xe000, + 0x0,0xf800,0x0,0xff00,0x0,0xffc0,0x0,0xfff0,0x0,0xfffe,0x80000000,0x7fff,0xf0000000,0xfff,0xfc000000,0x3ff, + 0xff000000,0xff,0xffe00000,0x1f,0xfff80000,0x7,0xfffe0000,0x1,0x3fffc000,0x0,0xffff000,0x0,0x3fffe00,0x0,0x7fff80,0x0, + 0x1fffe0,0x0,0x3ffe0,0x0,0xffe0,0x0,0x3fe0,0x0,0x7e0,0x0,0x3fe0,0x0,0xffe0,0x0,0x3ffe0,0x0, + 0x1fffe0,0x0,0x7fff80,0x0,0x1fffe00,0x0,0xffff000,0x0,0x3fffc000,0x0,0xffff0000,0x0,0xfff80000,0x7,0xffe00000,0x1f, + 0xff800000,0x7f,0xfc000000,0x3ff,0xf0000000,0xfff,0x80000000,0x3fff,0x0,0xfffe,0x0,0xfff8,0x0,0xffc0,0x0,0xff00, + 0x0,0xf800,0x0,0xe000,0x0,0x8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x1e0,0x0, + 0x7e0,0x0,0x1fe0,0x0,0xffe0,0x0,0x3ffe0,0x0,0x1fffe0,0x0,0x7fff80,0x0,0x1fffe00,0x0,0xffff000,0x0, + 0x3fffc000,0x0,0xffff0000,0x0,0xfff80000,0x7,0xffe00000,0x1f,0xff000000,0xff,0xfc000000,0x3ff,0xf0000000,0xfff,0x80000000,0x7fff, + 0x0,0xfffe,0x0,0xfff8,0x0,0xffc0,0x0,0xff00,0x0,0xfc00,0x0,0xff00,0x0,0xffc0,0x0,0xfff8, + 0x0,0xfffe,0x80000000,0x7fff,0xf0000000,0x1fff,0xfc000000,0x3ff,0xff000000,0xff,0xffe00000,0x1f,0xfff80000,0x7,0xfffe0000,0x1, + 0x3fffc000,0x0,0xffff000,0x0,0x1fffc00,0x0,0x7fff80,0x0,0x1fffe0,0x0,0x3ffe0,0x0,0xffe0,0x0,0x3fe0,0x0, + 0x7e0,0x0,0x1e0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x3, + 0xffff0000,0x1f,0xffffc000,0x7f,0xfffff000,0x1ff,0xfffff800,0x3ff,0xfffffc00,0x7ff,0xc03ffe00,0xfff,0x7ff00,0xffc,0x3ff00,0x1ff8, + 0xff80,0x1ff0,0x7fc0,0x3fe0,0x7fc0,0x3fc0,0x3fc0,0x3fc0,0x3fe0,0x3f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80, + 0x1f00,0x3f80,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x1fe0,0x0,0x1ff0,0x0,0xff8,0x0,0xffc, + 0x0,0x7fe,0x0,0x3ff,0x80000000,0x1ff,0xe0000000,0xff,0xf0000000,0x3f,0xf8000000,0x1f,0xfc000000,0xf,0xfe000000,0x3, + 0xff000000,0x1,0xff800000,0x0,0x7fc00000,0x0,0x3fc00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0xfe00000,0x0,0xff00000,0x0, + 0xff00000,0x0,0xff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0, + 0xff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x7,0xfff00000,0x3f,0xfff80000,0xff,0xfffe0000,0x1ff,0xffff0000,0x3ff,0xff8000,0x7fc, + 0x3fe000,0xff0,0xfe000,0x1fe0,0x7f000,0x3f80,0x3f800,0x3f00,0x1fc00,0x7f00,0xfc00,0x7e00,0x7e00,0xfc00,0x7f00,0xfc00, + 0x3f00,0x1f800,0x1f80,0x1f800,0x3c001f80,0x1f000,0xff800fc0,0x3f7c1,0xffc00fc0,0x3e3e3,0xfff00fc0,0x3e3e3,0xfff807e0,0x3e3e7,0x81f807e0,0x7e3e7, + 0xfc03e0,0x7c3ef,0x7e03e0,0x7c1fe,0x7e03f0,0x7c1fe,0x3f03f0,0x7c1fe,0x1f01f0,0x7c1fc,0x1f81f0,0x7c1fc,0x1f81f8,0x7c0fc,0xfc1f8,0xfc0fc, + 0xfc1f8,0xfc0fc,0xfc1f8,0xfc0fc,0x7c0f8,0xfc0fc,0x7e0f8,0x7c07e,0x7e0f8,0x7c07e,0x7e0f8,0x7c07e,0x7e0f8,0x7c07e,0x3e0fc,0x7c07e, + 0x3e0fc,0x7c03e,0x3e0fc,0x7c03e,0x3f0fc,0x7c03f,0x3f0fc,0x7c03f,0x3f0fc,0x7c03f,0x3f0fc,0x3e03f,0x8003f0fc,0x3e01f,0x8003e0f8,0x3e01f, + 0x8003e0f8,0x3e01f,0xc003e0f8,0x1f01f,0xc007e0f8,0x1f01f,0xe007e0f8,0x1f01f,0xe007e1f8,0xf81f,0xf007c1f8,0xf81f,0x780fc1f8,0x7c1f,0x7c1fc1f0,0x7e1f, + 0x3fff81f0,0x3fbe,0x1fff03f0,0x1ffe,0xfff03f0,0xffe,0x7fe03e0,0x7fc,0x1f807e0,0x1f0,0x7e0,0x0,0xfc0,0x0,0xfc0,0x0, + 0x1f80,0x0,0x1f80,0x0,0x3f00,0x600,0x7f00,0xf00,0xfe00,0x1f80,0x1fc00,0x1fe0,0x7fc00,0xff8,0x1ff800,0x7fe, + 0xf1fff000,0x3ff,0xffffc000,0xff,0xffff8000,0x3f,0xfffe0000,0xf,0xfff80000,0x1,0x1f000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7,0xffffff80,0x3f,0xffffff80,0xff,0xffffff80,0x3ff,0xffffff80,0x7ff,0xffffff80,0xfff,0xc000ff80,0x1fff,0xff80,0x1ffc, + 0xff80,0x3ff0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x1fe0,0xff80,0x1ff0,0xff80,0xff8,0xff80,0x7fe,0xc000ff80,0x3ff, + 0xffffff80,0x1ff,0xffffff80,0x7f,0xffffff80,0x1f,0xffffff80,0x3f,0xffffff80,0x1ff,0xffffff80,0x7ff,0xe000ff80,0x1fff,0xff80,0x3ff8, + 0xff80,0x7fe0,0xff80,0xff80,0xff80,0xff00,0xff80,0x1ff00,0xff80,0x1fe00,0xff80,0x1fe00,0xff80,0x3fe00,0xff80,0x3fc00, + 0xff80,0x3fc00,0xff80,0x3fc00,0xff80,0x3fe00,0xff80,0x3fe00,0xff80,0x3fe00,0xff80,0x1fe00,0xff80,0x1ff00,0xff80,0x1ff80, + 0xff80,0xffc0,0xff80,0xfff0,0xff80,0x7fff,0xffffff80,0x3fff,0xffffff80,0x1fff,0xffffff80,0xfff,0xffffff80,0x3ff,0xffffff80,0xff, + 0xffffff80,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x7, + 0xfffc0000,0x3f,0xffff0000,0x7f,0xffff8000,0x1ff,0xffffc000,0x3ff,0xfffff000,0x7ff,0xc7fff000,0xfff,0x7ff800,0x1ffc,0x1ffc00,0x3ff8, + 0xffe00,0x3fe0,0x7fe00,0x7fc0,0x3ff00,0x7fc0,0x1ff00,0xff80,0x1ff00,0xff00,0xff80,0x7f00,0xff80,0x1e00,0xff80,0x200, + 0x7f80,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7f80,0x0, + 0x7f80,0x1c00,0xff80,0x7c00,0xff80,0x3fe00,0x1ff00,0x1fe00,0x1ff00,0x1ff00,0x1ff00,0xff00,0x3fe00,0xff80,0x7fe00,0x7fc0, + 0xffc00,0x3fe0,0x1ff800,0x3ff0,0x7ff800,0x1ffc,0x83fff000,0xfff,0xffffe000,0x7ff,0xffffc000,0x3ff,0xffff0000,0x1ff,0xfffe0000,0x7f, + 0xfff80000,0x1f,0xffc00000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffff80,0x0,0xffffff80,0x3,0xffffff80,0xf,0xffffff80,0x3f,0xffffff80,0x7f,0xffffff80,0x1ff,0xfe00ff80,0x3ff,0xc000ff80,0x7ff, + 0xff80,0xfff,0xff80,0xffc,0xff80,0x1ff8,0xff80,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0, + 0xff80,0x7f80,0xff80,0xff80,0xff80,0xff80,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0x1ff00,0xff80,0x1ff00, + 0xff80,0x1ff00,0xff80,0x1ff00,0xff80,0x1fe00,0xff80,0x1fe00,0xff80,0x1fe00,0xff80,0x1fe00,0xff80,0x1ff00,0xff80,0x1ff00, + 0xff80,0x1ff00,0xff80,0x1ff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff80,0xff80,0x7f80, + 0xff80,0x7f80,0xff80,0x7fc0,0xff80,0x3fc0,0xff80,0x3fe0,0xff80,0x3ff0,0xff80,0x1ff0,0xff80,0x1ff8,0xff80,0xffc, + 0xff80,0x7ff,0xc000ff80,0x3ff,0xfc00ff80,0x3ff,0xffffff80,0x1ff,0xffffff80,0x7f,0xffffff80,0x3f,0xffffff80,0xf,0xffffff80,0x3, + 0x7fffff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe00,0x7fff,0xfffffe00,0x7fff,0xfffffe00,0x7fff,0xfffffe00,0x7fff,0xfffffe00,0x7fff,0xfffffe00,0x7fff,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff,0xfffffe00,0x3fff, + 0xfffffe00,0x3fff,0xfffffe00,0x3fff,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0,0x1fe00,0x0, + 0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x7, + 0xfffc0000,0x1f,0xffff0000,0x7f,0xffff8000,0x1ff,0xffffe000,0x3ff,0xfffff000,0x7ff,0x83fff800,0xfff,0x3ff800,0x1ffc,0x1ffc00,0x1ff8, + 0x7fe00,0x3ff0,0x3fe00,0x3fe0,0x3ff00,0x7fc0,0x1ff00,0x7f80,0x1ff00,0xff80,0xff80,0x3f00,0xff80,0x700,0x7f80,0x0, + 0x7f80,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fe0,0x0,0x3fe0,0x0,0xf8003fe0,0xffff,0xf8003fe0,0xffff,0xf8003fe0,0xffff,0xf8003fe0,0xffff,0xf8003fc0,0xffff, + 0xf8003fc0,0xffff,0xf8003fc0,0xffff,0x3fc0,0xff00,0x3fc0,0xff00,0x7fc0,0xff00,0x7fc0,0xff00,0x7fc0,0xff00,0x7f80,0xff00, + 0x7f80,0xff00,0xff80,0xff00,0xff80,0xff00,0x1ff00,0xff00,0x1ff00,0xff00,0x3ff00,0xff00,0x3fe00,0xff00,0x7fc00,0xff00, + 0xffc00,0xff00,0x1ff800,0xffc0,0x7ff800,0xfff0,0x87fff000,0xffff,0xffffe000,0x7fff,0xffffc000,0x1fff,0xffff8000,0x7ff,0xfffe0000,0x1ff, + 0xfff80000,0x3f,0xffc00000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xff80,0x3fc0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0, + 0xff80,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffe00000,0x7ff,0xffe00000,0x7ff,0xffe00000,0x7ff,0xffe00000,0x7ff,0xffe00000,0x7ff,0xffe00000,0x7ff,0x0,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8,0x0,0x7f8, + 0x0,0x7f8,0xc000,0x7f8,0xff00,0x7f8,0x1ff00,0x7fc,0x1fe00,0x3fc,0x1fe00,0x3fc,0x3fe00,0x3fc,0x3fe00,0x3fe, + 0x7fc00,0x1fe,0xffc00,0x1ff,0xc01ff800,0xff,0xf0fff800,0xff,0xfffff000,0x7f,0xffffe000,0x3f,0xffffc000,0x1f,0xffff8000,0xf, + 0xfffe0000,0x3,0x7ff00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff80,0x1ff80,0xff80,0xff80,0xff80,0x7fc0,0xff80,0x3fe0,0xff80,0x3ff0,0xff80,0x1ff8,0xff80,0xffc,0xff80,0x7fe, + 0xff80,0x3fe,0xff80,0x1ff,0x8000ff80,0xff,0xc000ff80,0x7f,0xe000ff80,0x3f,0xf000ff80,0x3f,0xf000ff80,0x1f,0xf800ff80,0xf, + 0xfc00ff80,0x7,0xfe00ff80,0x3,0xff00ff80,0x1,0xff80ff80,0x0,0x7fc0ff80,0x0,0x7fc0ff80,0x0,0x3fe0ff80,0x0,0x1ff0ff80,0x0, + 0x1ff8ff80,0x0,0x1ffcff80,0x0,0x3ffeff80,0x0,0x7fffff80,0x0,0xffffff80,0x0,0xffffff80,0x0,0xffbfff80,0x1,0xff1fff80,0x3, + 0xfe0fff80,0x7,0xfe07ff80,0x7,0xfc03ff80,0xf,0xf801ff80,0x1f,0xf000ff80,0x3f,0xf000ff80,0x3f,0xe000ff80,0x7f,0xc000ff80,0xff, + 0x8000ff80,0x1ff,0x8000ff80,0x1ff,0xff80,0x3ff,0xff80,0x7fe,0xff80,0xffc,0xff80,0xffc,0xff80,0x1ff8,0xff80,0x3ff0, + 0xff80,0x3fe0,0xff80,0x7fe0,0xff80,0xffc0,0xff80,0x1ff80,0xff80,0x1ff00,0xff80,0x3fe00,0xff80,0x7fe00,0xff80,0xffc00, + 0xff80,0xff800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0xfffff800,0xffff,0xfffff800,0xffff,0xfffff800,0xffff,0xfffff800,0xffff,0xfffff800,0xffff, + 0xfffff800,0xffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1ffc0,0xffc0,0x1ffc0,0xffe0,0x1ffc0,0xffe0,0x3ffc0,0xffe0,0x3ffc0,0xfff0,0x3ffc0,0xfff0,0x7ffc0,0xfff8,0x7ffc0,0xfff8, + 0xfffc0,0xfff8,0xfffc0,0xfefc,0xfdfc0,0xfefc,0x1fdfc0,0xfefc,0x1fdfc0,0xfe7e,0x3f9fc0,0xfe7e,0x3f9fc0,0xfe7f,0x3f9fc0,0xfe3f, + 0x7f1fc0,0xfe3f,0x807f1fc0,0xfe3f,0x807f1fc0,0xfe1f,0x80fe1fc0,0xfe1f,0xc0fe1fc0,0xfe1f,0xc0fc1fc0,0xfe0f,0xe1fc1fc0,0xfe0f,0xe1fc1fc0,0xfe0f, + 0xe1f81fc0,0xfe07,0xe3f81fc0,0xfe07,0xf3f81fc0,0xfe03,0xf3f01fc0,0xfe03,0xf7f01fc0,0xfe03,0xffe01fc0,0xfe01,0xffe01fc0,0xfe01,0xffe01fc0,0xfe01, + 0xffc01fc0,0xfe00,0xffc01fc0,0xfe00,0x7fc01fc0,0xfe00,0x7f801fc0,0xfe00,0x7f801fc0,0xfe00,0x3f001fc0,0xfe00,0x3f001fc0,0xfe00,0x1fc0,0xfe00, + 0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00, + 0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00,0x1fc0,0xfe00, + 0x1fc0,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1ff80,0x3f80,0x3ff80,0x3f80,0x3ff80,0x3f80,0x7ff80,0x3f80,0x7ff80,0x3f80,0xfff80,0x3f80,0xfff80,0x3f80,0x1fff80,0x3f80, + 0x1fff80,0x3f80,0x3fff80,0x3f80,0x3fbf80,0x3f80,0x7fbf80,0x3f80,0x7f3f80,0x3f80,0x7f3f80,0x3f80,0xfe7f80,0x3f80,0xfe7f80,0x3f80, + 0x1fc7f80,0x3f80,0x1fc7f80,0x3f80,0x3fc7f80,0x3f80,0x3f87f80,0x3f80,0x7f87f80,0x3f80,0x7f07f80,0x3f80,0xff07f80,0x3f80,0xfe07f80,0x3f80, + 0x1fe07f80,0x3f80,0x1fc07f80,0x3f80,0x3fc07f80,0x3f80,0x3f807f80,0x3f80,0x3f807f80,0x3f80,0x7f007f80,0x3f80,0x7f007f80,0x3f80,0xff007f80,0x3f80, + 0xfe007f80,0x3f80,0xfe007f80,0x3f81,0xfc007f80,0x3f81,0xfc007f80,0x3f83,0xf8007f80,0x3f83,0xf8007f80,0x3f87,0xf0007f80,0x3f87,0xf0007f80,0x3f8f, + 0xe0007f80,0x3f8f,0xe0007f80,0x3f8f,0xc0007f80,0x3f9f,0xc0007f80,0x3f9f,0xc0007f80,0x3fbf,0x80007f80,0x3fbf,0x80007f80,0x3fff,0x7f80,0x3f7f, + 0x7f80,0x3fff,0x7f80,0x3ffe,0x7f80,0x3ffe,0x7f80,0x3ffc,0x7f80,0x3ffc,0x7f80,0x3ff8,0x7f80,0x3ff8,0x7f80,0x3ff0, + 0x7f80,0x3ff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ffc00,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7,0xffffff80,0x3f,0xffffff80,0x1ff,0xffffff80,0x3ff,0xffffff80,0x7ff,0xffffff80,0xfff,0x8000ff80,0x1fff,0xff80,0x3ffc, + 0xff80,0x7ff0,0xff80,0x7fe0,0xff80,0x7fc0,0xff80,0xff80,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00, + 0xff80,0x1ff00,0xff80,0x1ff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff80,0xff80,0x7f80, + 0xff80,0x7fc0,0xff80,0x3fe0,0xff80,0x3ff0,0xff80,0x1ffc,0x8000ff80,0xfff,0xffffff80,0xfff,0xffffff80,0x3ff,0xffffff80,0x1ff, + 0xffffff80,0xff,0xffffff80,0x3f,0xffffff80,0x7,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ff800,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xffe00000,0x1,0xff000000,0x1,0xfe000000,0x1,0xfe000000,0x3,0xfe000000,0x3,0xfc000000,0x7,0xfc000000,0x7, + 0xf8000000,0xf,0xf8000000,0x1f,0xf0000000,0x7f,0xf0000000,0x1ff,0xe0000000,0x1ffff,0xc0000000,0x1ffff,0x80000000,0x1ffff,0x0,0x1ffff, + 0x0,0x1fffc,0x0,0xffe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x1f,0xffffff80,0x7f,0xffffff80,0x3ff,0xffffff80,0x7ff,0xffffff80,0xfff,0xffffff80,0x1fff,0xff80,0x3fff,0xff80,0x7ff8, + 0xff80,0x7fe0,0xff80,0xffc0,0xff80,0xff80,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0x1ff00,0xff80,0x1ff00, + 0xff80,0x1ff00,0xff80,0x1ff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff80,0xff80,0xff80,0xff80,0x7fc0,0xff80,0x7fe0, + 0xff80,0x3ff0,0xff80,0x1ffe,0xffffff80,0xfff,0xffffff80,0x7ff,0xffffff80,0x3ff,0xffffff80,0x1ff,0xffffff80,0x3f,0xffffff80,0x7, + 0xffffff80,0x3,0xfc00ff80,0x7,0xf800ff80,0xf,0xf000ff80,0xf,0xf000ff80,0x1f,0xe000ff80,0x3f,0xc000ff80,0x3f,0xc000ff80,0x7f, + 0x8000ff80,0xff,0x8000ff80,0xff,0xff80,0x1ff,0xff80,0x3fe,0xff80,0x3fe,0xff80,0x7fc,0xff80,0xff8,0xff80,0xff8, + 0xff80,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x7fc0,0xff80,0xffc0,0xff80,0xff80,0xff80,0x1ff00,0xff80,0x3ff00, + 0xff80,0x3fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff80000,0x7, + 0xffff0000,0x3f,0xffffc000,0xff,0xfffff000,0x3ff,0xfffff800,0x7ff,0xfffffc00,0xfff,0x1ffe00,0xfff,0x7fe00,0x1ff8,0x1ff00,0x3ff0, + 0xff00,0x3fe0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0x380,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0xff80,0x0,0xff80,0x0,0x1ff00,0x0,0x3ff00,0x0,0xffe00,0x0,0x7ffe00,0x0,0x7fffc00,0x0, + 0x7ffff800,0x0,0xfffff000,0x3,0xffffc000,0x1f,0xffff0000,0xff,0xfff80000,0x3ff,0xffc00000,0x7ff,0xfc000000,0x1fff,0xc0000000,0x1fff, + 0x0,0x3ffe,0x0,0x7ff8,0x0,0x7fe0,0x0,0xffc0,0x0,0xff80,0x0,0xff00,0x0,0x1ff00,0x0,0x1fe00, + 0x0,0x1fe00,0x800,0x1fe00,0xfc0,0x1fe00,0xff0,0x1fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x3fe0,0xff00,0x7fe0,0xff80, + 0xffc0,0xffc0,0x1ffc0,0x7fe0,0x7ff80,0x3ff8,0x3fff00,0x3fff,0xfffffe00,0x1fff,0xfffffc00,0xfff,0xfffff800,0x3ff,0xffffe000,0x1ff, + 0xffff8000,0x3f,0xfff80000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0, + 0x3ff00,0x1ff0,0x7fe00,0x1ff8,0xffe00,0xffe,0xe0fffc00,0x7ff,0xfffff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f, + 0xffff0000,0x1f,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fe,0xff000,0x3fc,0xff000,0x7fc,0xff800,0x7fc,0x7f800,0x7f8,0x7fc00,0xff8,0x7fc00,0xff0,0x3fc00,0xff0,0x3fe00, + 0x1ff0,0x1fe00,0x1fe0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x7fc0,0xff80,0x7f80,0x7f80,0x7f80,0x7f80, + 0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0x1ff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fc00,0xff0,0x3fc00,0xff0, + 0x3fc00,0x7f8,0x7f800,0x7f8,0x7f800,0x7f8,0x7f800,0x3fc,0xff000,0x3fc,0xff000,0x3fc,0x1fe000,0x1fe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0x3fc000,0xff,0x3fc000,0xff,0x3fc000,0x7f,0x807f8000,0x7f,0x807f8000,0x7f,0xc07f0000,0x3f,0xc0ff0000,0x3f, + 0xc0ff0000,0x3f,0xe0fe0000,0x1f,0xe1fe0000,0x1f,0xe1fe0000,0xf,0xe1fc0000,0xf,0xf3fc0000,0xf,0xf3f80000,0x7,0xf3f80000,0x7, + 0xfbf80000,0x7,0xfff00000,0x3,0xfff00000,0x3,0xfff00000,0x1,0xffe00000,0x1,0xffe00000,0x1,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fe,0x1fe000,0x1fe,0x1fe000,0x1fe,0x1fe000,0x1fe,0x1fe000,0x1fe,0xfe000,0x1fe,0xff000,0x3fc,0xff000,0x3fc,0xff000, + 0x3fc,0xff000,0x3fc,0xff000,0x3fc,0xff000,0x3fc,0x7f000,0x3f8,0x7f000,0x3f8,0x7f800,0x7f8,0x7f800,0x7f8,0x7f800, + 0x7f8,0x7f800,0x7f8007f8,0x3f800,0x7f8007f8,0x3f800,0x7f8007f0,0x3f800,0xffc007f0,0x3f800,0xffc007f0,0x3fc00,0xffc00ff0,0x3fc00,0xffc00ff0,0x3fc00, + 0xffe00ff0,0x1fc01,0xffe00fe0,0x1fc01,0xffe00fe0,0x1fc01,0xf3f00fe0,0x1fc01,0xf3f00fe0,0x1fc03,0xf3f01fe0,0x1fe03,0xf3f01fe0,0xfe03,0xf1f81fe0,0xfe07, + 0xe1f81fc0,0xfe07,0xe1f81fc0,0xfe07,0xe1f81fc0,0xfe07,0xe0fc1fc0,0xfe0f,0xc0fc1fc0,0xfe0f,0xc0fc3fc0,0x7f0f,0xc0fc3f80,0x7f0f,0xc07e3f80,0x7f1f, + 0x807e3f80,0x7f1f,0x807e3f80,0x7f1f,0x807e3f80,0x7f1f,0x3f3f80,0x3f3f,0x3f3f00,0x3f3f,0x3f3f00,0x3f3f,0x3f3f00,0x3f3f,0x1fbf00,0x3ffe, + 0x1fff00,0x3ffe,0x1fff00,0x1ffe,0xfff00,0x1ffe,0xffe00,0x1ffc,0xffe00,0x1ffc,0xffe00,0x1ffc,0x7fe00,0x1ff8,0x7fe00,0x1ff8, + 0x7fe00,0xff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1ff0,0x1fe00,0x3fe0,0x1ff00,0x7fc0,0xff80,0x7fc0,0x7f80,0xff80,0x7fc0,0xff00,0x3fe0,0x1fe00,0x1fe0,0x3fe00,0x1ff0, + 0x3fc00,0xff8,0x7f800,0x7f8,0xff800,0x7fc,0xff000,0x3fe,0x1fe000,0x1fe,0x3fe000,0x1ff,0x803fc000,0xff,0x807f8000,0x7f, + 0xc0ff8000,0x7f,0xc0ff0000,0x3f,0xe1fe0000,0x1f,0xf3fe0000,0x1f,0xf3fc0000,0xf,0xfff80000,0x7,0xfff80000,0x3,0xfff00000,0x3, + 0xffe00000,0x1,0xffe00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff00000,0x3, + 0xfff80000,0x7,0xfbfc0000,0xf,0xf3fc0000,0xf,0xe1fe0000,0x1f,0xe1ff0000,0x3f,0xc0ff0000,0x3f,0x807f8000,0x7f,0x807fc000,0xff, + 0x3fc000,0xff,0x1fe000,0x1fe,0x1ff000,0x3fe,0xff800,0x3fc,0x7f800,0x7fc,0x7fc00,0xff8,0x3fe00,0xff0,0x1fe00,0x1ff0, + 0x1ff00,0x3fe0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7fc0,0xff80,0x3fe0,0xff00,0x1fe0,0x1ff00,0x1ff0,0x3fe00,0xff8,0x3fc00, + 0xff8,0x7fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f8,0x7fc00,0xff8,0x3fc00,0x1ff0,0x3fe00,0x1fe0,0x1ff00,0x3fe0,0x1ff00,0x7fc0,0xff80,0x7fc0,0x7f80,0xff80,0x7fc0, + 0xff00,0x3fe0,0x1ff00,0x1fe0,0x3fe00,0x1ff0,0x3fc00,0xff0,0x7fc00,0xff8,0x7f800,0x7fc,0xff000,0x3fc,0x1ff000,0x3fe, + 0x1fe000,0x1fe,0x3fe000,0xff,0x803fc000,0xff,0x807f8000,0x7f,0xc0ff8000,0x3f,0xc0ff0000,0x3f,0xe1fe0000,0x1f,0xf3fe0000,0x1f, + 0xf3fc0000,0xf,0xfffc0000,0x7,0xfff80000,0x7,0xfff00000,0x3,0xfff00000,0x1,0xffe00000,0x1,0xffc00000,0x0,0x7fc00000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0xffffff80,0xffff,0x0,0x7f80,0x0,0x7fc0, + 0x0,0x3fe0,0x0,0x1ff0,0x0,0xff8,0x0,0x7f8,0x0,0x7fc,0x0,0x3fe,0x0,0x1ff,0x0,0xff, + 0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf0000000,0xf,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x3, + 0xfe000000,0x1,0xff000000,0x1,0xff800000,0x0,0x7fc00000,0x0,0x3fe00000,0x0,0x1fe00000,0x0,0x1ff00000,0x0,0xff80000,0x0, + 0x7fc0000,0x0,0x3fc0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0,0xff8000,0x0,0x7fc000,0x0,0x7fc000,0x0,0x3fe000,0x0, + 0x1ff000,0x0,0xff800,0x0,0x7f800,0x0,0x7fc00,0x0,0x3fe00,0x0,0x1ff00,0x0,0xff80,0x0,0xff80,0x0, + 0x7fc0,0x0,0x3fe0,0x0,0x1ff0,0x0,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff,0xfffffff0,0x3ffff, + 0xfffffff0,0x3ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffc0000,0x3ff,0xfffc0000,0x3ff,0xfffc0000,0x3ff,0xfffc0000,0x3ff,0xfffc0000,0x3ff,0xfffc0000,0x3ff, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0xfffc0000,0x3ff,0xfffc0000,0x3ff, + 0xfffc0000,0x3ff,0xfffc0000,0x3ff,0xfffc0000,0x3ff,0xfffc0000,0x3ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80,0x0,0x7f80,0x0,0xff00,0x0,0xfe00,0x0, + 0x1fe00,0x0,0x1fc00,0x0,0x3fc00,0x0,0x3f800,0x0,0x7f800,0x0,0xff000,0x0,0xff000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x3fc000,0x0,0x3f8000,0x0,0x7f8000,0x0,0x7f0000,0x0,0xff0000,0x0,0xfe0000,0x0,0x1fe0000,0x0, + 0x3fc0000,0x0,0x3fc0000,0x0,0x7f80000,0x0,0x7f80000,0x0,0xff00000,0x0,0xfe00000,0x0,0x1fe00000,0x0,0x1fc00000,0x0, + 0x3fc00000,0x0,0x3f800000,0x0,0x7f800000,0x0,0xff000000,0x0,0xff000000,0x0,0xfe000000,0x1,0xfe000000,0x1,0xfc000000,0x3, + 0xfc000000,0x3,0xf8000000,0x7,0xf0000000,0x7,0xf0000000,0xf,0xe0000000,0xf,0xe0000000,0x1f,0xc0000000,0x3f,0xc0000000,0x3f, + 0x80000000,0x7f,0x80000000,0x7f,0x0,0xff,0x0,0xff,0x0,0x1fe,0x0,0x1fc,0x0,0x3fc,0x0,0x3f8, + 0x0,0x7f8,0x0,0xff0,0x0,0xff0,0x0,0x1fe0,0x0,0x1fe0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80, + 0x0,0x7f00,0x0,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffff000,0xf,0xfffff000,0xf,0xfffff000,0xf,0xfffff000,0xf,0xfffff000,0xf,0xfffff000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xfffff000,0xf,0xfffff000,0xf, + 0xfffff000,0xf,0xfffff000,0xf,0xfffff000,0xf,0xfffff000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfbf00000,0x3,0xf3f00000,0x3,0xf1f80000,0x7, + 0xe1f80000,0x7,0xe1fc0000,0x7,0xe0fc0000,0xf,0xc0fe0000,0xf,0xc07e0000,0x1f,0x807e0000,0x1f,0x803f0000,0x1f,0x803f0000,0x3f, + 0x3f8000,0x3f,0x1f8000,0x7f,0x1f8000,0x7e,0xfc000,0xfe,0xfc000,0xfc,0xfe000,0xfc,0x7e000,0x1fc,0x7f000,0x1f8, + 0x3f000,0x3f8,0x3f000,0x3f0,0x3f800,0x3f0,0x1f800,0x7f0,0x1fc00,0x7e0,0xfc00,0xfe0,0xfc00,0xfc0,0xfe00,0x1fc0, + 0x7e00,0x1fc0,0x7f00,0x1f80,0x3f00,0x3f80,0x3f80,0x3f00,0x3f80,0x7f00,0x1f80,0x7f00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x1fffff, + 0xffffffff,0x1fffff,0xffffffff,0x1fffff,0xffffffff,0x1fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc0000,0x0,0xffc0000,0x0,0x1ff00000,0x0,0x3fe00000,0x0,0x7fc00000,0x0, + 0xff000000,0x0,0xfe000000,0x1,0xfc000000,0x3,0xf0000000,0x7,0xe0000000,0x7,0xc0000000,0xf,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xfc00ff00,0x7,0xff80ff00,0x3f,0xffe0ff00,0x7f,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x7ff, + 0x1feff00,0x7ff,0x3eff00,0xffc,0x1fff00,0xff8,0xfff00,0x1ff0,0x7ff00,0x1fe0,0x7ff00,0x3fe0,0x3ff00,0x3fc0,0x3ff00,0x3fc0, + 0x3ff00,0x3fc0,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80, + 0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0x3ff00,0x3fc0,0x3ff00,0x3fe0,0x7ff00,0x1fe0, + 0x7ff00,0x1fe0,0xfff00,0x1ff0,0x1fff00,0xff8,0x7eff00,0x7fe,0xc7feff00,0x7ff,0xfffcff00,0x3ff,0xfff8ff00,0x1ff,0xfff0ff00,0xff, + 0xffc0ff00,0x3f,0xff000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0xf,0xfffe0000,0x3f,0xffff8000,0xff,0xffffc000,0x1ff,0xfffff000,0x3ff, + 0xc0fff800,0x7ff,0x1ff800,0xffc,0x7fc00,0x1ff8,0x3fe00,0x1ff0,0x1fe00,0x3fe0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x7fc0, + 0x7f80,0x80,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7fc0,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0xf80,0xff00,0x7fc0,0xff00,0x3fc0,0x1ff00,0x3fc0,0x1fe00,0x3fe0, + 0x3fe00,0x1fe0,0x7fc00,0x1ff0,0xffc00,0xffc,0x3ff800,0x7ff,0xfffff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0, + 0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0, + 0x0,0x1fc0,0x0,0x1fc0,0x3e00000,0x1fc0,0x3ffe0000,0x1fc0,0xffff8000,0x1fc0,0xffffe000,0x1fc3,0xfffff000,0x1fc7,0xfffff800,0x1fcf, + 0xe03ff800,0x1fdf,0xffc00,0x1fdf,0x3fe00,0x1ffe,0x3fe00,0x1ffc,0x1fe00,0x1ff8,0x1ff00,0x1ff8,0xff00,0x1ff0,0xff00,0x1ff0, + 0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0, + 0x3f80,0x1fc0,0x3fc0,0x1fc0,0x3fc0,0x1fc0,0x3fc0,0x1fe0,0x3f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0, + 0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1ff0,0xff80,0x1ff0,0xff00,0x1ff0,0xff00,0x1ff8,0x1ff00,0x1ff8, + 0x1ff00,0x1ffc,0x3fe00,0x1ffe,0x7fe00,0x1fdf,0x800ffc00,0x1fdf,0xf8fffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1, + 0xffff8000,0x3fc0,0x3ffe0000,0x0,0x1c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0xff,0xfffff000,0x1ff, + 0x807ff000,0x3ff,0x1ff800,0x7fc,0x7fc00,0xff8,0x3fe00,0xff0,0x1fe00,0x1fe0,0x1ff00,0x1fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0x7f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0xffff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff00,0x0,0xff00,0x80,0x1ff00,0x780,0x1fe00,0x3fc0, + 0x3fe00,0x3fc0,0x7fc00,0x1fe0,0xff800,0x1ff8,0x3ff800,0xffe,0xf7fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0x1ff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000000,0x7fff,0xfe000000,0xffff,0xff800000,0xffff,0xffc00000,0xffff,0xffe00000,0xffff,0xfff00000,0xffff, + 0xfff00000,0xf000,0x1ff80000,0x0,0xff80000,0x0,0x7fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0,0x3fc0000,0x0, + 0x3fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0, + 0x1fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7e00000,0x0,0x3ffe0000,0x3fc0,0xffff8000,0x3fc0,0xffffe000,0x3fc3,0xfffff000,0x3fc7,0xfffff800,0x3fcf, + 0xe03ff800,0x3fcf,0x800ffc00,0x3fdf,0x7fe00,0x3ffe,0x3fe00,0x3ffc,0x1fe00,0x3ffc,0x1ff00,0x3ff8,0xff00,0x3ff0,0xff00,0x3ff0, + 0xff80,0x3ff0,0x7f80,0x3fe0,0x7f80,0x3fe0,0x7f80,0x3fe0,0x7f80,0x3fe0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fe0, + 0x7f80,0x3fe0,0x7f80,0x3fe0,0x7f80,0x3fe0,0xff80,0x3ff0,0xff00,0x3ff0,0xff00,0x3ff8,0x1ff00,0x3ff8,0x1fe00,0x3ffc, + 0x3fe00,0x3fde,0x7fc00,0x3fdf,0xc01ffc00,0x3fcf,0xfffff800,0x3fcf,0xfffff000,0x3fc7,0xfffff000,0x3fc3,0xffffc000,0x3fc0,0x3fff8000,0x3fc0, + 0x7f80000,0x3fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fe0,0x0,0x1fe0,0x38000,0x1fe0, + 0x3fc00,0xff0,0x7fc00,0xff0,0x7fc00,0xff8,0xff800,0x7fc,0x1ff800,0x7fe,0xc0fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff, + 0xffff8000,0x7f,0xfffe0000,0x1f,0xfff80000,0x7,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xf800ff00,0x3,0xff80ff00,0x3f,0xffc0ff00,0xff,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x7ff, + 0x81fcff00,0x7ff,0x7eff00,0xffc,0x1fff00,0xff8,0xfff00,0x1ff0,0x7ff00,0x1ff0,0x7ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0, + 0x1ff00,0x1fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff000000,0x1,0xff000000,0x1,0xff000000,0x1,0xff000000,0x1,0xff000000,0x1,0xff000000,0x1, + 0xff000000,0x1,0xff000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1, + 0xfffff800,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0xf,0xfffff800,0xf,0xfffff800,0xf,0xfffff800,0xf,0xfffff800,0xf, + 0xfffff800,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf8000000,0xf,0xf8000000,0x7,0xfc000000,0x7,0xff000000,0x3,0xffc001c0,0x3,0xffffffc0,0x1,0xffffffc0,0x0,0x7fffffc0,0x0, + 0x3fffffc0,0x0,0xfffffc0,0x0,0x3ffff00,0x0,0x3fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0, + 0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x0, + 0x3f800,0x0,0x3f800,0x0,0x3f800,0x0,0x3f800,0x7fc0,0x3f800,0x3fe0,0x3f800,0x1fe0,0x3f800,0x1ff0,0x3f800,0xff8, + 0x3f800,0x7fc,0x3f800,0x3fe,0x3f800,0x1ff,0x8003f800,0xff,0xc003f800,0x7f,0xe003f800,0x3f,0xf003f800,0x1f,0xf803f800,0xf, + 0xf803f800,0x7,0xfc03f800,0x3,0xfe03f800,0x1,0xff03f800,0x0,0x7f83f800,0x0,0x3fc3f800,0x0,0x1fe3f800,0x0,0x1ff3f800,0x0, + 0x3ffbf800,0x0,0x7ffff800,0x0,0xfffff800,0x0,0xfffff800,0x0,0xff7ff800,0x1,0xfe3ff800,0x3,0xfc1ff800,0x7,0xf807f800,0x7, + 0xf803f800,0xf,0xf003f800,0x1f,0xe003f800,0x3f,0xc003f800,0x3f,0xc003f800,0x7f,0x8003f800,0xff,0x3f800,0x1ff,0x3f800,0x1ff, + 0x3f800,0x3fe,0x3f800,0x7fc,0x3f800,0xff8,0x3f800,0xff8,0x3f800,0x1ff0,0x3f800,0x3fe0,0x3f800,0x7fc0,0x3f800,0x7fc0, + 0x3f800,0xff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0,0xfffff000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff,0xffffffc0,0xffff, + 0xffffffc0,0xffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7c0000,0x3e0,0x3ff07e0,0xffc,0x7ff87e0,0x3ffe,0x7ffc7e0,0x3fff,0x8fffe7e0,0x7fff,0x8fffe7e0,0x7fff, + 0xdff1f7e0,0xffc7,0xdfc0f7e0,0xff03,0xffc077e0,0xff01,0xffc03fe0,0xfe00,0xff803fe0,0xfe00,0xff803fe0,0x1fe00,0x7f801fe0,0x1fe00,0x7f801fe0,0x1fe00, + 0x7f801fe0,0x1fe00,0x7f801fe0,0x1fe00,0x7f801fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00, + 0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00, + 0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00, + 0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00,0x7f800fe0,0x1fc00, + 0x7f800fe0,0x1fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0x7,0xff00ff00,0x3f,0xffc0ff00,0xff,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x7ff, + 0x81fcff00,0xfff,0x7eff00,0xffc,0x1fff00,0xff8,0xfff00,0x1ff0,0x7ff00,0x1ff0,0x7ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0, + 0x1ff00,0x1fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x807ff800,0x7ff,0xff800,0x7fc,0x7fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fe0,0x1fe00,0x1fe0, + 0x3fe00,0x1ff0,0x7fc00,0xff8,0xffc00,0x7fc,0x1ff800,0x7ff,0xf1fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f, + 0xfffe0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x7,0xff80ff00,0x3f,0xffe0ff00,0x7f,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x7ff, + 0x1feff00,0xfff,0x3eff00,0xffc,0x1fff00,0x1ff8,0xfff00,0x1ff0,0x7ff00,0x1fe0,0x7ff00,0x3fe0,0x3ff00,0x3fc0,0x3ff00,0x3fc0, + 0x3ff00,0x7fc0,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80, + 0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7fc0,0x1ff00,0x3fc0,0x3ff00,0x3fc0,0x3ff00,0x3fc0,0x7ff00,0x1fe0, + 0x7ff00,0x1fe0,0xfff00,0x1ff0,0x1fff00,0xff8,0x7eff00,0xffe,0xc7feff00,0x7ff,0xfffcff00,0x3ff,0xfff8ff00,0x1ff,0xfff0ff00,0xff, + 0xffc0ff00,0x3f,0xff00ff00,0xf,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3e00000,0x0,0x7ffe0000,0x3fc0,0xffff8000,0x3fc1,0xffffe000,0x1fc3,0xfffff000,0x1fc7,0xfffff800,0x1fcf, + 0xe03ff800,0x1fcf,0xffc00,0x1fdf,0x3fc00,0x1ffe,0x3fe00,0x1ffc,0x1fe00,0x1ff8,0x1ff00,0x1ff8,0xff00,0x1ff0,0xff00,0x1ff0, + 0x7f80,0x1ff0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0, + 0x3f80,0x1fc0,0x3fc0,0x1fc0,0x3fc0,0x1fc0,0x3fc0,0x1fe0,0x3f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0, + 0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1fe0,0x7f80,0x1ff0,0xff80,0x1ff0,0xff00,0x1ff0,0xff00,0x1ff8,0x1ff00,0x1ff8, + 0x1fe00,0x1ffc,0x3fe00,0x1ffe,0x7fe00,0x1fdf,0x800ffc00,0x1fdf,0xf8fffc00,0x1fcf,0xfffff800,0x1fc7,0xfffff000,0x1fc3,0xffffe000,0x1fc1, + 0xffff8000,0x1fc0,0x3ffe0000,0x1fc0,0x3e00000,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0, + 0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0, + 0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x1fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3fe,0xe003f800,0x1fff,0xf807f800,0x1fff,0xfc07f800,0x1fff,0xfe07f000,0x1fff,0xff07f000,0x1fff, + 0xff8ff000,0x1fff,0xff8ff000,0x1e03,0x3fcff000,0x0,0x1fcfe000,0x0,0x7efe000,0x0,0x3efe000,0x0,0x1ffe000,0x0,0xffe000,0x0, + 0xffe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0,0x1fe000,0x0, + 0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7f800000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x3ff000,0x7ff,0xff800,0x7f8,0x3f800,0xff0,0x3fc00,0xfe0,0x1fc00,0x1fc0,0x1fc00,0x1fc0,0x1fc00,0x0,0x1fc00,0x0, + 0x1fc00,0x0,0x3fc00,0x0,0x3fc00,0x0,0xffc00,0x0,0x3ff800,0x0,0x3fff800,0x0,0x1ffff000,0x0,0xffffe000,0x1, + 0xffffc000,0xf,0xffff0000,0x7f,0xfffc0000,0x1ff,0xffe00000,0x3ff,0xff000000,0x7ff,0xf0000000,0xfff,0x0,0x1fff,0x0,0x1ff8, + 0x0,0x1ff0,0x0,0x3fe0,0x0,0x3fc0,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x7e00,0x3f80,0x7f00,0x3fc0, + 0xff00,0x1fc0,0xfe00,0x1fe0,0x1fe00,0x1ff0,0x7fc00,0xffc,0xf1fffc00,0x7ff,0xfffff800,0x3ff,0xfffff000,0x1ff,0xffffc000,0xff, + 0xffff0000,0x3f,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc0000,0x0, + 0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfc0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0xfe0000,0x0,0xfe0000,0x0, + 0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xfffffe00,0x3ff,0xfffffe00,0x3ff,0xfffffe00,0x3ff,0xfffffe00,0x3ff,0xfffffe00,0x3ff, + 0xfffffe00,0x3ff,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0,0xff0000,0x0, + 0xff0000,0x0,0x1ff0000,0x0,0x3fe0000,0x800,0x1ffe0000,0xff0,0xfffe0000,0xfff,0xfffc0000,0xfff,0xfff80000,0xfff,0xfff00000,0xfff, + 0xffe00000,0x7ff,0xff000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xfe00,0x3fe0,0xfe00,0x3fe0,0x1fe00,0x3ff0,0x1fe00,0x3ff0,0x1fe00,0x3ff8, + 0x1fe00,0x3ff8,0x3fe00,0x3ffc,0x7fc00,0x3fdf,0x801ffc00,0x3fdf,0xfffff800,0x3fcf,0xfffff800,0x3fc7,0xfffff000,0x3fc3,0xffffe000,0x3fc1, + 0xffff8000,0x3fc0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x3fe00,0x1ff0,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00, + 0x3fc0,0xff00,0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x3fc0,0xff00,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1fe0, + 0x1fe00,0x1ff0,0x3fe00,0xff0,0x3fc00,0xff0,0x3fc00,0xff8,0x7fc00,0x7f8,0x7f800,0x7fc,0xff800,0x3fc,0xff000,0x3fc, + 0xff000,0x1fe,0x1ff000,0x1fe,0x1fe000,0x1ff,0x1fe000,0xff,0x3fc000,0xff,0x803fc000,0x7f,0x807fc000,0x7f,0x807f8000,0x7f, + 0xc07f8000,0x3f,0xc0ff0000,0x3f,0xe0ff0000,0x1f,0xe0ff0000,0x1f,0xe1fe0000,0x1f,0xf1fe0000,0xf,0xf1fc0000,0xf,0xf3fc0000,0x7, + 0xfbfc0000,0x7,0xfbf80000,0x7,0xfbf80000,0x3,0xfff00000,0x3,0xfff00000,0x1,0xfff00000,0x1,0xffe00000,0x0,0xffe00000,0x0, + 0xffc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fe,0xfe000,0x1fc,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0xff000, + 0x3fc,0x7f000,0x3f8,0x7f000,0x3f8,0x7f000,0x3f8,0x7f800,0x7f8,0x7f800,0x7f8,0x7f800,0x7f8,0x3f800,0x7f0,0x3f800, + 0x7f8007f0,0x3f800,0xffc007f0,0x3fc00,0xffc007f0,0x3fc00,0xffc00ff0,0x3fc00,0xffe00ff0,0x1fc01,0xffe00fe0,0x1fc01,0xfbe00fe0,0x1fc01,0xf3f00fe0,0x1fe01, + 0xf3f00fe0,0x1fe03,0xf3f00fe0,0xfe03,0xe1f81fe0,0xfe03,0xe1f81fc0,0xfe07,0xe1f81fc0,0xfe07,0xe0fc1fc0,0xff07,0xc0fc1fc0,0xff0f,0xc0fc1fc0,0x7f0f, + 0xc07e1fc0,0x7f0f,0x807e3f80,0x7f1f,0x807e3f80,0x7f1f,0x803f3f80,0x7f1f,0x3f3f80,0x7f1f,0x3f3f80,0x3fbf,0x1f3f80,0x3fbf,0x1fbf00,0x3fbf, + 0x1fbf00,0x3fbe,0x1fbf00,0x3ffe,0xfbf00,0x1ffe,0xfff00,0x1ffc,0xfff00,0x1ffc,0x7fe00,0x1ffc,0x7fe00,0x1ff8,0x7fe00,0x1ff8, + 0x3fe00,0xff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0,0xff80,0x7fc0,0x7f80,0xff80,0x3fc0,0xff00,0x3fe0,0x1fe00,0x1ff0, + 0x3fe00,0xff0,0x3fc00,0x7f8,0x7f800,0x7fc,0xff000,0x3fc,0x1ff000,0x1fe,0x1fe000,0xff,0x803fc000,0x7f,0x807f8000,0x7f, + 0xc07f0000,0x3f,0xe0ff0000,0x1f,0xe1fe0000,0xf,0xf3fc0000,0xf,0xfbf80000,0x7,0xfff80000,0x3,0xfff00000,0x1,0xffe00000,0x1, + 0xffc00000,0x0,0x7fc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x1,0xfff80000,0x3,0xfff80000,0x7,0xf3fc0000,0xf, + 0xf1fe0000,0xf,0xe1ff0000,0x1f,0xc0ff0000,0x3f,0xc07f8000,0x7f,0x803fc000,0x7f,0x3fc000,0xff,0x1fe000,0x1fe,0xff000,0x3fe, + 0x7f800,0x3fc,0x7f800,0x7f8,0x3fc00,0xff8,0x1fe00,0x1ff0,0x1ff00,0x1fe0,0xff00,0x3fc0,0x7f80,0x7fc0,0x3fc0,0xff80, + 0x3fe0,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x3fc00,0xff0,0x3fc00,0x1ff0,0x1fe00,0x1fe0,0x1fe00,0x1fe0,0xff00, + 0x3fc0,0xff00,0x3fc0,0xff00,0x7f80,0x7f80,0x7f80,0x7f80,0x7f00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0x1fe00,0x1fe0, + 0x1fe00,0x1fe0,0x3fc00,0xfe0,0x3fc00,0xff0,0x3f800,0x7f0,0x7f800,0x7f8,0x7f800,0x7f8,0xff000,0x3f8,0xff000,0x3fc, + 0xfe000,0x1fc,0x1fe000,0x1fe,0x1fc000,0xfe,0x3fc000,0xfe,0x3f8000,0xff,0x3f8000,0x7f,0x807f8000,0x7f,0x807f0000,0x3f, + 0x80ff0000,0x3f,0xc0fe0000,0x3f,0xc1fe0000,0x1f,0xe1fc0000,0x1f,0xe1fc0000,0xf,0xe3fc0000,0xf,0xf3f80000,0x7,0xf3f80000,0x7, + 0xfff00000,0x7,0xfff00000,0x3,0xffe00000,0x3,0xffe00000,0x1,0xffc00000,0x1,0xffc00000,0x0,0xffc00000,0x0,0xff800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0,0x1ffe000,0x0,0xffff00,0x0,0x7fff00,0x0, + 0x3fff00,0x0,0x1fff00,0x0,0x7ff00,0x0,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0x0,0xff0,0x0,0x7f8,0x0,0x7fc,0x0,0x3fe,0x0,0x1ff,0x80000000,0xff,0x80000000,0x7f, + 0xc0000000,0x3f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x1,0xff000000,0x0, + 0xff800000,0x0,0x7fc00000,0x0,0x3fe00000,0x0,0x1ff00000,0x0,0xff00000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x3fe0000,0x0, + 0x1ff0000,0x0,0xff8000,0x0,0x7f8000,0x0,0x3fc000,0x0,0x1fe000,0x0,0x1ff000,0x0,0xff800,0x0,0x7fc00,0x0, + 0x3fe00,0x0,0x1fe00,0x0,0xff00,0x0,0xff80,0x0,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff,0xffffff80,0x3fff, + 0xffffff80,0x3fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc0000000,0x3fff,0xf0000000,0x3fff,0xfc000000,0x3fff,0xfe000000,0x3fff,0xfe000000,0x3fff,0xff000000,0x3fff, + 0xff800000,0x1,0x7f800000,0x0,0x7f800000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x1fc00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x1ff00000,0x0,0xff80000,0x0,0x7fc0000,0x0,0x7ff0000,0x0,0x3ffe000,0x0, + 0xfffc00,0x0,0x7ffc00,0x0,0xffc00,0x0,0x3ffc00,0x0,0xfffc00,0x0,0x1fffc00,0x0,0x3ff8000,0x0,0x7fe0000,0x0, + 0xff80000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x1fe00000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0,0x3fc00000,0x0, + 0x3fc00000,0x0,0x3fc00000,0x0,0x3f800000,0x0,0x7f800000,0x0,0xff800000,0x0,0xff000000,0x3,0xff000000,0x3fff,0xfe000000,0x3fff, + 0xfc000000,0x3fff,0xf8000000,0x3fff,0xe0000000,0x3fff,0x0,0x3fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffff00,0x0,0x3ffff00,0x0,0x7ffff00,0x0,0xfffff00,0x0,0x1fffff00,0x0,0x3fffff00,0x0, + 0x3fe00000,0x0,0x7fc00000,0x0,0x7f800000,0x0,0x7f000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xfe000000,0x1,0xfe000000,0x1,0xfc000000,0x3,0xfc000000,0xf,0xf8000000,0x1f,0xf0000000,0x1ff, + 0xe0000000,0xfff,0x80000000,0xfff,0x0,0xffc,0x0,0xfff,0xc0000000,0xfff,0xf0000000,0xfff,0xf8000000,0x7f,0xf8000000,0xf, + 0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x1,0xfe000000,0x1,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0,0xff000000,0x0, + 0xff000000,0x0,0x7f000000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7fc00000,0x0,0x3ff80000,0x0,0x1fffff00,0x0,0x1fffff00,0x0, + 0xfffff00,0x0,0x7ffff00,0x0,0x1ffff00,0x0,0x3fff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff800,0x0, + 0x3fffe00,0x10000,0x1fffff80,0x1c000,0x7fffffe0,0x1f000,0xffffffe0,0x1fe07,0xffffffe0,0x1ffff,0xffe007e0,0x1ffff,0xff0001e0,0xffff,0xf8000060,0x7fff, + 0x80000000,0x1fff,0x0,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0x1e3c0038,0xe7e7,0x1f380038,0xe3e7,0x3f380038,0x67e7,0xe738fe38,0x1c1cfc,0xe738fe38,0x1c1cf8,0xff38fe38,0x1e3878,0xff38fe38,0x1fe018,0xff38fe38,0x1fe01c, + 0x38fe38,0x1ff807,0x38fe38,0x1ffc07,0x38fe38,0x1ffc07,0x380038,0x39c07,0x380038,0x39c07,0xc23ffff8,0xce71c,0xe73ffff8,0x1ce318,0xe71ffff0,0x1ce71c, + 0xe7000000,0x1cff07,0xe7000000,0x1cff07,0x87000010,0x7f00f,0x7380038,0x3e01f,0x7380030,0x3e01f,0x7e607c0,0x1ce060,0x7c707c0,0x1ce0e0,0x7ef0fe0,0x18f0e0, + 0xff3f3838,0xffe3,0xff1f3838,0x7fe3,0xff01fff8,0x800e1,0xff00fff8,0x1c00e0,0xff00fff8,0x1c00e0,0xe0183ff8,0x78e3,0xe0383ff8,0xfce3,0x300fe000,0x18f000, + 0x1807c000,0x1ce000,0x1807c000,0x1c6000,0xe7ffc0f0,0x1f,0xe7ffc1f8,0x1f,0xe7ffe1f8,0x1f,0xffe7ff38,0x1c1c,0xffe7fe38,0x1c18,0x3ffe38,0x1f0018, + 0x3ffe38,0x1f0018,0x1fff30,0x1f001c,0x7003fc0,0x1f03ff,0x7003fc0,0x1f03ff,0x1fe0f00,0x100e3f,0xff0700,0x1c1f,0xff0700,0x1c1f,0xf801c7c0,0x1c60, + 0xf800c7c0,0x1ce0,0xfc01c7c0,0x3cc1,0x1fffc1c0,0x7f03,0x1fffc0c0,0x7f07,0x1f000000,0x181f07,0x1f000000,0x1c1f07,0x3f000000,0x1c1f07,0xe01ffff0,0x31c1f, + 0xe03ffff8,0x39c1f,0xf03ffff8,0x17fe0f,0x18380038,0x1ce300,0x18380038,0x1c6700,0xf838fe38,0x1ff8,0xf838fe38,0x1ff8,0xf838fe38,0x103ffd,0x38fe38,0x1fffff, + 0x38fe38,0x1fffff,0xf838fe38,0x139cfc,0xf838fe38,0x31cf8,0xf838fe38,0x31c78,0x380038,0x1c18,0x380038,0x1c18,0x7e3ffff8,0x78,0xff3ffff8,0x300f8, + 0xff1ffff0,0x300f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe000,0x0,0x7fe000,0x0, + 0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x7fe000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffffc0,0x1,0xffffffc0,0x1,0xffffffc0,0x1,0xffffffc0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffff,0x1fffff,0xffffffff,0x1fffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x7fffff8,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0, + 0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7000038,0x0,0x7fffff8,0x0, + 0x7fffff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0xff800000,0x1,0xfff80000,0x1f, + 0xfffe0000,0x7f,0xffff8000,0x1ff,0xffffc000,0x3ff,0xffffe000,0x7ff,0x3efff000,0xfff,0x3e1ff800,0xffc,0x3e0ffc00,0x1ff0,0x3e03fe00,0x3fe0, + 0x3e01fe00,0x3fc0,0x3e01ff00,0x7fc0,0x3e00ff00,0x7f80,0x3e00ff00,0x7f80,0x3e007f80,0x180,0x3e007f80,0x0,0x3e007f80,0x0,0x3e007f80,0x0, + 0x3e003f80,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e003fc0,0x0, + 0x3e003fc0,0x0,0x3e003fc0,0x0,0x3e007f80,0x0,0x3e007f80,0x0,0x3e007f80,0x0,0x3e007f80,0x7f80,0x3e00ff00,0x7f80,0x3e00ff00,0x7f80, + 0x3e01ff00,0x7fc0,0x3e03fe00,0x3fc0,0x3e07fe00,0x3fe0,0x3e0ffc00,0x1ff0,0x3e1ff800,0x1ffc,0xbefff000,0xfff,0xffffe000,0x7ff,0xffffc000,0x3ff, + 0xffff8000,0xff,0xfffe0000,0x3f,0xfff80000,0xf,0xff000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0, + 0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x3e000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff800000,0xf, + 0xfff00000,0x7f,0xfffc0000,0x1ff,0xfffe0000,0x3ff,0xffff8000,0x7ff,0xffff8000,0xfff,0xffffc000,0x1fff,0xffe000,0x1ffc,0x3fe000,0x3ff0, + 0x1ff000,0x3fe0,0xff000,0x7c0,0xff000,0xc0,0xff000,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0xfffffff8,0x1f,0xfffffff8,0x1f,0xfffffff8,0x1f,0xfffffff8,0x1f,0xfffffff8,0x1f,0xfffffff8,0x1f,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x7f800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7f800,0x0,0x3fc00,0x0,0x3fc00,0x0,0x3fe00,0x0,0x1fe00,0x3800,0xff00,0x7f800, + 0x7f80,0x3f800,0x3fe0,0x3fc00,0x1ff0,0x3ff00,0xfffffff8,0x1ffff,0xfffffff8,0x1ffff,0xfffffff8,0xffff,0xfffffff8,0xffff,0xfffffff8,0x7fff, + 0xfffffff8,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1e001800,0x600,0xffe03c00,0xf01,0xfffc7e00,0x1f8f,0xfffeff00,0x3fdf,0xffffff00,0x3fff,0xfffffe00,0x1fff,0xfffffc00,0xfff, + 0xc0fff800,0x7ff,0x1ff000,0x3fe,0xff800,0x7fc,0x3fc00,0xff0,0x3fc00,0xff0,0x1fc00,0xfe0,0xfe00,0x1fc0,0xfe00,0x1fc0, + 0xfe00,0x1fc0,0x7e00,0x3f80,0x7f00,0x3f80,0x7f00,0x3f80,0x7f00,0x3f80,0x7f00,0x3f80,0x7f00,0x3f80,0xfe00,0x1fc0, + 0xfe00,0x1fc0,0xfe00,0x1fc0,0x1fe00,0x1fe0,0x3fc00,0xff0,0x3fc00,0xff0,0xff800,0x7fc,0x1ff800,0x3fe,0xc0fff800,0x7ff, + 0xfffffc00,0xfff,0xfffffe00,0x1fff,0xffffff00,0x3fff,0xffffff80,0x3fff,0xfffc7f00,0x1f8f,0xfff03e00,0xf03,0x3f001c00,0x600,0x800,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff8,0x3fc00,0xff0,0x3fe00,0x1fe0,0x1fe00,0x3fe0,0x1ff00,0x3fc0,0xff00,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff00,0x3fc0, + 0x1ff00,0x3fe0,0x1fe00,0x1fe0,0x3fe00,0xff0,0x3fc00,0xff8,0x7f800,0x7f8,0x7f800,0x3fc,0xff000,0x3fc,0x1fe000,0x1fe, + 0x1fe000,0x1ff,0x3fc000,0xff,0x803fc000,0x7f,0x807f8000,0x7f,0xc0ff0000,0x3f,0xe0ff0000,0x3f,0xe1fe0000,0x1f,0xf1fe0000,0xf, + 0xf3fc0000,0xf,0xfbf80000,0x7,0xfff80000,0x3,0xfff00000,0x3,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x3,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0x1ff,0xffffe000,0x3ff,0x3ff000,0x7ff, + 0xff800,0xff8,0x7f800,0xff0,0x3f800,0x1fe0,0x1fc00,0x1fc0,0x1fc00,0x1fc0,0x1fc00,0x1c0,0x1fc00,0x0,0x1fc00,0x0, + 0x3fc00,0x0,0x3fc00,0x0,0x7f800,0x0,0x1ff800,0x0,0x7ff000,0x0,0x3ffe000,0x0,0x3fffc000,0x0,0xffff8000,0x3, + 0xfffe0000,0x1f,0xfffc0000,0x7f,0xffff0000,0x1ff,0xffffc000,0x3ff,0xe03fe000,0x7ff,0xff000,0xfff,0x3f800,0x1ff8,0x1fc00,0x1ff0, + 0x1fc00,0x3fc0,0xfe00,0x3fc0,0xfe00,0x3f80,0xfe00,0x3f80,0xfe00,0x3f00,0xfe00,0x3f00,0xfe00,0x3f80,0x1fe00,0x3f80, + 0x3fc00,0x1f80,0x7fc00,0x1fc0,0x1ff800,0xfe0,0x7ff800,0xff0,0x7fff000,0x7fe,0xffffc000,0x3ff,0xffff8000,0xff,0xfffe0000,0x3f, + 0xfff80000,0x3f,0xff800000,0xff,0xfc000000,0x3ff,0xc0000000,0x7ff,0x0,0xffe,0x0,0x1ff8,0x0,0x1ff0,0x0,0x3fe0, + 0x0,0x3fc0,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x3800,0x3f80,0x7f80,0x3f80,0x7f00,0x3f80,0xff00,0x1fc0, + 0x1fe00,0x1fe0,0x3fe00,0x1ff0,0xffc00,0xffc,0xc0fff800,0x7ff,0xfffff800,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f,0xfffe0000,0x1f, + 0xffe00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x1,0xfffe0000,0xf,0xffff8000,0x7f,0xffffe000,0xff,0x3ff000,0x3ff,0x3f800,0x7f8, + 0xfc00,0xfe0,0x7e00,0x1f80,0x3f00,0x3f00,0x1f80,0x3e00,0xf80,0x7c00,0x7c0,0xf800,0x3c0,0xf800,0xffe003e0,0x1f000, + 0xfff801e0,0x1e003,0xfffc01f0,0x1e00f,0xfffe00f0,0x3e01f,0xc0ff00f0,0x3c03f,0x3f80f8,0x3c03f,0x1fc078,0x7807e,0xfc078,0x7807c,0x7c078,0x780fc, + 0x7e07c,0x78008,0x7e03c,0x78000,0x3e03c,0xf0000,0x3e03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000, + 0x3f03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000,0x3f03c,0xf0000,0x3e03c,0xf0000,0x7e03c,0xf0000, + 0x7e03c,0x78018,0x7e078,0x781f8,0xfc078,0x780fc,0x1fc078,0x780fc,0x1f8078,0x7c07e,0x807f80f8,0x3c03f,0xe1ff00f0,0x3c03f,0xfffe01f0,0x3e01f, + 0xfffc01f0,0x1e00f,0xfff001e0,0x1f003,0xff8003e0,0xf000,0x7c0,0xf800,0x7c0,0x7800,0xf80,0x7c00,0x1f00,0x3e00,0x3f00,0x1f00, + 0x7e00,0x1fc0,0x1fc00,0x7e0,0x7f800,0x3fc,0xc07fe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f,0xfff80000,0x7,0x7f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff00000,0x0,0xfffe0000,0x1,0xffff8000,0x7,0xffffc000,0xf, + 0xe01fe000,0x1f,0x8007f000,0x3f,0x3f000,0x3f,0x3f800,0x7f,0x3f800,0x7f,0x1f800,0x7e,0x0,0x7e,0x0,0x7e, + 0x0,0x7e,0x0,0x7e,0xfffc0000,0x7f,0xffff8000,0x7f,0xffffe000,0x7f,0x7ff000,0x7e,0x7f800,0x7e,0x1fc00,0x7e, + 0xfc00,0x7e,0xfc00,0x7e,0xfc00,0x7f,0xfe00,0x7f,0x8000fe00,0x7f,0xc000fe00,0x7f,0xe001fc00,0x7f,0xf001fc00,0xfe, + 0x7c07fc00,0x1fe,0x7ffff800,0xffc,0x1ffff000,0xffc,0xfffe000,0xff8,0x3ff8000,0xff0,0x100000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff00000,0x1fe00,0xff80000,0xff00,0x7fc0000,0xff80,0x3fe0000,0x7fc0,0x1ff0000,0x3fe0,0xff0000,0x1ff0,0x7f8000,0xff8, + 0x7fc000,0x7fc,0x3fe000,0x3fe,0x1ff000,0x1ff,0x800ff800,0xff,0x8007fc00,0x7f,0xc003fe00,0x3f,0xe001ff00,0x3f,0xf000ff80,0x1f, + 0xf8007fc0,0xf,0xfc003fc0,0x7,0xfc003fc0,0x3,0xfc007fc0,0x7,0xf800ff80,0xf,0xf000ff00,0x1f,0xe001ff00,0x3f,0xc003fe00,0x7f, + 0x8007fc00,0xff,0xff800,0x1ff,0x1ff000,0x3fe,0x3fe000,0x3fc,0x7fc000,0x7fc,0xff8000,0xff8,0x1ff0000,0x1ff0,0x3fe0000,0x3fe0, + 0x7fc0000,0x7fc0,0x7f80000,0xff80,0xff00000,0x1ff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0xfc00, + 0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00, + 0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00,0x0,0xfc00, + 0x0,0xfc00,0x0,0xfc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x1,0xfffe0000,0xf,0xffff8000,0x7f,0xffffe000,0xff,0x3ff000,0x3ff,0x3f800,0x7f8, + 0xfc00,0xfe0,0x7e00,0x1f80,0x3f00,0x3f00,0x1f80,0x3e00,0xf80,0x7c00,0x7c0,0xf800,0x3c0,0xf800,0xffff83e0,0x1f000, + 0xffff81e0,0x1e007,0xffff81f0,0x1e01f,0xffff80f0,0x3e03f,0xe00f80f0,0x3c07f,0xf80f8,0x3c07f,0xf8078,0x780fc,0xf8078,0x780fc,0xf8078,0x780f8, + 0xf807c,0x780f8,0xf803c,0x780f8,0xf803c,0xf00f8,0xf803c,0xf00f8,0xf803c,0xf00fc,0xf803c,0xf00fc,0xf803c,0xf007e,0x800f803c,0xf007f, + 0xffff803c,0xf003f,0xffff803c,0xf001f,0xffff803c,0xf0007,0xffff803c,0xf0001,0xf80f803c,0xf0001,0xf00f803c,0xf0001,0xf00f803c,0xf0003,0xe00f803c,0xf0007, + 0xe00f803c,0x78007,0xc00f8078,0x7800f,0x800f8078,0x7801f,0x800f8078,0x7801f,0xf8078,0x7c03f,0xf80f8,0x3c03f,0xf80f0,0x3c07e,0xf81f0,0x3e0fc, + 0xf81f0,0x1e0fc,0xf81e0,0x1f1f8,0xf83e0,0xf3f8,0x7c0,0xf800,0x7c0,0x7800,0xf80,0x7c00,0x1f00,0x3e00,0x3f00,0x1f00, + 0x7e00,0x1fc0,0x1fc00,0x7e0,0x7f800,0x3fc,0xc07fe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f,0xfff80000,0x7,0x7f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x1fffff,0xffffffff,0x1fffff,0xffffffff,0x1fffff,0xffffffff,0x1fffff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0, + 0xfff00000,0x1,0xfff80000,0x7,0xfffc0000,0xf,0xe1fe0000,0x1f,0x807f0000,0x1f,0x1f0000,0x3f,0x1f8000,0x3e,0xf8000,0x7c, + 0xf8000,0x7c,0x78000,0x7c,0x78000,0x7c,0x78000,0x7c,0x78000,0x7c,0xf8000,0x7c,0xf8000,0x7c,0x1f8000,0x3e, + 0x3f0000,0x3f,0x807e0000,0x1f,0xf3fe0000,0xf,0xfffc0000,0xf,0xfff80000,0x3,0xffe00000,0x1,0x7f800000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff, + 0xffffffe0,0xffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc000000,0x0,0xffc00000,0x1,0xfff00000,0x7,0xfffc0000,0xf, + 0xfffe0000,0x1f,0xc0ff0000,0x3f,0x3f0000,0x3f,0x1f8000,0x7f,0x1f8000,0x7e,0xf8000,0x7e,0xfc000,0x7e,0x0,0x7e, + 0x0,0x7e,0x0,0x7e,0x0,0x3f,0x0,0x3f,0x80000000,0x1f,0xc0000000,0x1f,0xe0000000,0xf,0xf0000000,0x7, + 0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3fc00000,0x0,0xfe00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x1fc0000,0x0, + 0x7e0000,0x0,0x3f0000,0x0,0x1f8000,0x0,0x1f8000,0x0,0xfc000,0x0,0xffffc000,0xff,0xffffc000,0xff,0xffffc000,0xff, + 0xffffc000,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc000000,0x0,0xffe00000,0x1,0xfff80000,0x7,0xfffc0000,0x1f, + 0xfffe0000,0x1f,0xc0ff0000,0x3f,0x3f0000,0x7f,0x3f8000,0x7f,0x1f8000,0x7e,0xf8000,0x7e,0xe0000,0x7e,0x0,0x7e, + 0x0,0x7e,0x0,0x3e,0x0,0x3f,0xc0000000,0x1f,0xff800000,0xf,0xff800000,0x7,0xff800000,0x0,0xff800000,0x7, + 0xff800000,0x1f,0xe0000000,0x3f,0x0,0x7f,0x0,0x7e,0x0,0xfc,0x0,0xfc,0x0,0xfc,0x0,0xfc, + 0xfc000,0xfc,0xfc000,0xfc,0x1fc000,0xfe,0x1f8000,0x7e,0x807f8000,0x7f,0xffff0000,0x3f,0xfffe0000,0x1f,0xfffc0000,0xf, + 0xfff00000,0x3,0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x3,0xff000000,0x1,0x7f800000,0x0, + 0x3fc00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0x3f80000,0x0,0x1fc0000,0x0,0xfc0000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x7fc0,0x7f80,0x7fc0,0xff80,0x7fe0,0xff80,0x7ff0,0xff80,0x7ff0, + 0x1ff80,0x7ff8,0x3ff80,0x7ffc,0x7ff80,0x7fbf,0xc01fff80,0x7f3f,0xffffff80,0x7f1f,0xffffbf80,0x7f0f,0xffff3f80,0x7f07,0xffff3f80,0x7f03, + 0xfffc3f80,0x7f00,0x3ff07f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffff0000,0x7fff,0xffffe000,0x7fff,0xfffff000,0x7fff,0xfffffc00,0x7fff,0xfffffe00,0x7fff,0x7fffe00,0x1f0,0x7ffff00,0x1f0,0x7ffff00,0x1f0, + 0x7ffff80,0x1f0,0x7ffff80,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0, + 0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffffc0,0x1f0,0x7ffff80,0x1f0,0x7ffff80,0x1f0,0x7ffff00,0x1f0,0x7ffff00,0x1f0, + 0x7fffe00,0x1f0,0x7fffe00,0x1f0,0x7fffc00,0x1f0,0x7fff000,0x1f0,0x7ffe000,0x1f0,0x7ff0000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0, + 0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0, + 0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0, + 0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0, + 0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0, + 0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x7c00000,0x1f0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c00,0x0,0x3c00,0x0,0x3c00,0x0,0x3e00,0x0,0x1e00,0x0,0x1ff00,0x0,0x7ff00,0x0, + 0xfff00,0x0,0x1fe000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1f0000,0x0,0x1f8000,0x0,0x1f8000,0x0,0x1fc000,0x0, + 0xfffc0,0x0,0x7ffc0,0x0,0x3ffc0,0x0,0xffc0,0x0,0x780,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f800000,0x0, + 0x3fe00000,0x0,0x3ff80000,0x0,0x3fff8000,0x0,0x3fffe000,0x0,0x3f7fe000,0x0,0x3f1fe000,0x0,0x3f03e000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0, + 0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0x3f000000,0x0,0xffffe000,0xff,0xffffe000,0xff,0xffffe000,0xff, + 0xffffe000,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff0000,0x3f, + 0xffff8000,0x7f,0x3fc000,0xff,0xfe000,0x1fc,0x7f000,0x3f8,0x7f000,0x3f8,0x3f800,0x3f0,0x3f800,0x7f0,0x1f800,0x7e0, + 0x1f800,0x7e0,0x1fc00,0x7e0,0x1fc00,0x7e0,0x1fc00,0x7e0,0x1fc00,0xfe0,0x1fc00,0xfe0,0x1fc00,0x7e0,0x1fc00,0x7e0, + 0x1f800,0x7e0,0x1f800,0x7e0,0x3f800,0x7f0,0x3f800,0x7f0,0x3f000,0x3f0,0x7f000,0x3f8,0xfe000,0x1fc,0x1fe000,0xfe, + 0xc07fc000,0xff,0xffff8000,0x7f,0xffff0000,0x1f,0xfffc0000,0xf,0xfff00000,0x1,0x4000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc001fe0,0x3,0xfc003fe0,0x7,0xf8007fc0,0x7,0xf000ff80,0xf,0xf001ff00,0x1f,0xe003fe00,0x3f,0xc007fc00,0x7f, + 0x800ff800,0xff,0xff000,0x1ff,0x1ff000,0x3fe,0x3fe000,0x7fc,0x7fc000,0xff8,0xff8000,0x1ff0,0x1ff0000,0x1fe0,0x3fe0000,0x3fe0, + 0x7fc0000,0x7fc0,0x7f80000,0xff80,0x7f00000,0xff00,0x7f80000,0xff80,0x7fc0000,0x7fc0,0x3fe0000,0x3fe0,0x1ff0000,0x1ff0,0xff8000,0xff8, + 0x7fc000,0x7f8,0x3fe000,0x3fc,0x1ff000,0x3fe,0xff800,0x1ff,0x8007fc00,0xff,0xc003fe00,0x7f,0xe001ff00,0x3f,0xf000ff00,0x1f, + 0xf800ff80,0xf,0xfc007fc0,0x7,0xfc003fe0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7e00,0xf80,0x7f00,0x7c0,0x7f80,0x7c0,0x7fe0,0x3e0,0x7ffc,0x3e0,0x7ffc,0x1f0,0x7efc,0x1f0,0x7e7c,0xf8, + 0x7e3c,0xf8,0x7e04,0x7c,0x7e00,0x7c,0x7e00,0x3e,0x7e00,0x3e,0x7e00,0x1f,0x7e00,0x1f,0x80007e00,0xf, + 0x80007e00,0xf,0xc0007e00,0x7,0xc0007e00,0x7,0xe0007e00,0x3,0xe0007e00,0x3,0xf0007e00,0x1,0xf0007e00,0x1,0xf8007e00,0x0, + 0x7c007e00,0x0,0x7c007e00,0xfe00,0x3e007e00,0xfe00,0x3e007e00,0xff00,0x1f0ffff8,0xff80,0x1f0ffff8,0xff80,0xf8ffff8,0xfbc0,0xf8ffff8,0xfbe0, + 0x7c00000,0xf9f0,0x7c00000,0xf8f0,0x3e00000,0xf8f8,0x3e00000,0xf87c,0x1f00000,0xf83c,0x1f00000,0xf83e,0xf80000,0xf81f,0x80f80000,0xf80f, + 0x807c0000,0xf807,0xc07c0000,0xf807,0xe03e0000,0xf803,0xe03e0000,0xf801,0xf01f0000,0xf800,0xf81f0000,0xf800,0xfc0f8000,0x1fffff,0xfc0fc000,0x1fffff, + 0xfc07c000,0x1fffff,0xfc03e000,0x1fffff,0xfc03e000,0x1fffff,0x1f000,0xf800,0x1f000,0xf800,0xf800,0xf800,0xf800,0xf800,0x7c00,0xf800, + 0x7c00,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f00,0x7c0,0x3f00,0x7c0,0x3fc0,0x3e0,0x3fe0,0x3e0,0x3ffe,0x1f0,0x3ffe,0x1f0,0x3efe,0xf8,0x3e7e,0xf8, + 0x3e1e,0x7c,0x3e02,0x7c,0x3e00,0x3e,0x3e00,0x3e,0x3e00,0x1f,0x3e00,0xf,0x80003e00,0xf,0xc0003e00,0x7, + 0xc0003e00,0x7,0xe0003e00,0x3,0xe0003e00,0x3,0xf0003e00,0x1,0xf0003e00,0x1,0xf8003e00,0x0,0xf8003e00,0x0,0x7c003e00,0x0, + 0x7c003e00,0xf80,0x3e003e00,0x7ff8,0x3e003e00,0x1fffc,0x1f003e00,0x3fffe,0x1f07fff8,0x3ffff,0x8f87fff8,0x7f03f,0x8f87fff8,0x7e01f,0xc7c7fff8,0x7e00f, + 0xc7c00000,0xfc00f,0xc3e00000,0xfc00f,0x3e00000,0x7c000,0x1f00000,0x7c000,0x1f00000,0x7e000,0xf80000,0x7e000,0xfc0000,0x3f000,0x7c0000,0x3f800, + 0x3e0000,0x1fc00,0x3e0000,0xfe00,0x1f0000,0x7f00,0x1f0000,0x3fc0,0xf8000,0xfe0,0xf8000,0x7f0,0x7c000,0x3f8,0x7c000,0x1fc, + 0x3e000,0x7e,0x3e000,0x3f,0x8001f000,0x1f,0x8001f000,0xf,0xc000f800,0xf,0xc000f800,0xfffff,0xc0007c00,0xfffff,0xc0007c00,0xfffff, + 0xc0003e00,0xfffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00,0x0, + 0x3ffc0,0x1f00,0xfffe0,0xf00,0x1ffff0,0xf80,0x1ffff8,0x7c0,0x3f83fc,0x7c0,0x3f00fc,0x3e0,0x3f00fc,0x3e0,0x3f00fc,0x1f0, + 0x3f0060,0x1f0,0x3f0000,0xf8,0x3f0000,0xf8,0x1f8000,0x7c,0x1fc000,0x7c,0x7fe00,0x3e,0x3fe00,0x3e,0x1fe00,0x1f, + 0x7fe00,0x1f,0x801ffe00,0xf,0x803fc000,0xf,0xc03f0000,0x7,0xc07e0000,0x7,0xe07e0000,0x3,0xe07e0000,0x3,0xf07e0060,0x1, + 0xf07e007e,0x1,0xf87e007e,0xfe00,0x7c7f00fc,0xfe00,0x7c3f81fc,0xff00,0x3e3ffff8,0xff80,0x3e1ffff0,0xff80,0x1f0fffe0,0xfbc0,0x1f03ffc0,0xfbe0, + 0xf80fe00,0xf9f0,0xf800000,0xf8f0,0x7c00000,0xf8f8,0x7c00000,0xf87c,0x3e00000,0xf83c,0x3e00000,0xf83e,0x1f00000,0xf81f,0x81f00000,0xf80f, + 0x80f80000,0xf807,0xc0f80000,0xf807,0xe07c0000,0xf803,0xe07c0000,0xf801,0xf03e0000,0xf800,0xf83e0000,0xf800,0xfc1f0000,0x1fffff,0xfc1f0000,0x1fffff, + 0xfc0f8000,0x1fffff,0xfc0f8000,0x1fffff,0xfc07c000,0x1fffff,0x7e000,0xf800,0x3e000,0xf800,0x1f000,0xf800,0x1f000,0xf800,0xf800,0xf800, + 0xf800,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3, + 0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0xfc000000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3,0xfc000000,0x1,0xfc000000,0x1,0xfc000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xff000000,0x0,0xff800000,0x0,0x7fc00000,0x0,0x3fe00000,0x0,0x1ff00000,0x0,0xff80000,0x0,0x7fe0000,0x0,0x3ff0000,0x0, + 0x1ff8000,0x0,0xffe000,0x0,0x3ff000,0x0,0x1ff800,0x0,0xffc00,0x0,0x7fc00,0x0,0x3fe00,0x0,0x1ff00,0x0, + 0xff00,0x0,0xff00,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0x1fe00,0x7f80,0xff00, + 0x7f80,0xff00,0xff80,0xff80,0xff00,0x7f80,0x1ff00,0x7fc0,0x3ff00,0x3fe0,0x7fe00,0x3ff8,0x1ffc00,0x1ffe,0xfffffc00,0xfff, + 0xfffff800,0x7ff,0xfffff000,0x3ff,0xffffc000,0x1ff,0xffff8000,0x7f,0xfffc0000,0x1f,0xffc00000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x3fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fc0000,0x0,0x7f80000,0x0,0xff00000,0x0,0x1fc00000,0x0, + 0x3f800000,0x0,0x7f000000,0x0,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x7f,0xf0000000,0x1f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x1,0xfe000000,0x0, + 0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7,0xfffc0000,0xf,0xe1fe0000,0x1f,0xc0ff0000,0x3f, + 0x3f8000,0x7f,0xfc000,0xfc,0x7e000,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0x0,0x0,0xfe0000,0x3e0,0x3ff8000,0x3e0,0xfffc000,0x3e0,0x3fffe000,0x3f0,0xffffe000,0x1f8,0xffe7f000,0x1ff,0xff01f000,0xff, + 0xfc01f000,0xff,0xf001f000,0x7f,0xc000f000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x0,0x0,0x0,0x0,0x1e000000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7,0xfffc0000,0xf, + 0xf3fe0000,0x1f,0x807e0000,0x1f,0x3e0000,0x1f,0x3e0000,0x1f,0x3e0000,0x1f,0x3e0000,0x1f,0x807e0000,0x1f,0xfffe0000,0x1f, + 0xfffc0000,0xf,0xfff80000,0x7,0xfff00000,0x3,0xffe00000,0x1,0xffe00000,0x3,0xfff00000,0x3,0xfff00000,0x3,0xf3f80000,0x7, + 0xf3f80000,0x7,0xf3f80000,0x7,0xe1fc0000,0xf,0xe1fc0000,0xf,0xe1fc0000,0x1f,0xc0fe0000,0x1f,0xc0fe0000,0x1f,0xc0ff0000,0x3f, + 0x807f0000,0x3f,0x807f0000,0x3f,0x807f8000,0x7f,0x3f8000,0x7f,0x3fc000,0xff,0x3fc000,0xff,0x1fc000,0xfe,0x1fe000,0x1fe, + 0x1fe000,0x1fe,0xfe000,0x1fc,0xff000,0x3fc,0xff000,0x3fc,0x7f800,0x3f8,0x7f800,0x7f8,0x3f800,0x7f8,0x3fc00,0xff0, + 0x3fc00,0xff0,0x1fc00,0xff0,0x1fe00,0x1fe0,0xfffffe00,0x1fff,0xffffff00,0x1fff,0xffffff00,0x3fff,0xffffff00,0x3fff,0xffffff80,0x7fff, + 0xffffff80,0x7fff,0x7f80,0x7f80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xff00,0x1fe0,0x1fe00,0x1fe0,0x1fe00,0x1ff0,0x3fe00, + 0xff0,0x3fc00,0xff0,0x3fc00,0x7f8,0x7fc00,0x7f8,0x7f800,0x7fc,0x7f800,0x3fc,0xff800,0x3fc,0xff000,0x3fe,0x1ff000, + 0x1fe,0x1fe000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffe00000,0x3ffff,0xffe00000,0x3ffff,0xfff00000,0x3ffff,0xfff00000,0x3ffff,0xfff00000,0x3ffff,0xfff80000,0x3ffff,0xf1f80000,0xf,0xf1f80000,0xf, + 0xf0fc0000,0xf,0xf0fc0000,0xf,0xf0fe0000,0xf,0xf07e0000,0xf,0xf07e0000,0xf,0xf07f0000,0xf,0xf07f0000,0xf,0xf03f0000,0xf, + 0xf03f8000,0xf,0xf03f8000,0xf,0xf01f8000,0xf,0xf01fc000,0xf,0xf01fc000,0xf,0xf00fc000,0xf,0xf00fe000,0xf,0xf007e000,0xf, + 0xf007f000,0xf,0xf007f000,0x3ffff,0xf003f000,0x3ffff,0xf003f800,0x3ffff,0xf003f800,0x3ffff,0xf001f800,0x3ffff,0xf001fc00,0x3ffff,0xf001fc00,0xf, + 0xf000fc00,0xf,0xfffffe00,0xf,0xfffffe00,0xf,0xffffff00,0xf,0xffffff00,0xf,0xffffff00,0xf,0xffffff80,0xf,0xffffff80,0xf, + 0xf0003f80,0xf,0xf0001fc0,0xf,0xf0001fc0,0xf,0xf0001fc0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf0000fe0,0xf,0xf00007f0,0xf, + 0xf00007f0,0xf,0xf00007f8,0xf,0xf00003f8,0xf,0xf00003f8,0xfffff,0xf00001fc,0xfffff,0xf00001fc,0xfffff,0xf00001fc,0xfffff,0xf00000fe,0xfffff, + 0xf00000fe,0xfffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x7, + 0xfffc0000,0x3f,0xffff0000,0x7f,0xffff8000,0x1ff,0xffffc000,0x3ff,0xfffff000,0x7ff,0xc7fff000,0xfff,0x7ff800,0x1ffc,0x1ffc00,0x3ff8, + 0xffe00,0x3fe0,0x7fe00,0x7fc0,0x3ff00,0x7fc0,0x1ff00,0xff80,0x1ff00,0xff00,0xff80,0x7f00,0xff80,0x1e00,0xff80,0x200, + 0x7f80,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fe0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7fc0,0x0,0x7f80,0x0, + 0x7f80,0x1c00,0xff80,0x7c00,0xff80,0x3fe00,0x1ff00,0x1fe00,0x1ff00,0x1ff00,0x1ff00,0xff00,0x3fe00,0xff80,0x7fe00,0x7fc0, + 0xffc00,0x3fe0,0x1ff800,0x3ff0,0x7ff800,0x1ffc,0x83fff000,0xfff,0xffffe000,0x7ff,0xffffc000,0x3ff,0xffff0000,0x1ff,0xfffe0000,0x7f, + 0xfff80000,0x1f,0xffc00000,0x7,0x3e000000,0x0,0x1e000000,0x0,0x1f000000,0x0,0x1f000000,0x0,0xff000000,0x0,0xff800000,0x3, + 0xff800000,0x7,0xf0000000,0xf,0xc0000000,0xf,0x80000000,0xf,0x80000000,0xf,0x80000000,0xf,0xc0000000,0xf,0xe0000000,0xf, + 0xffe00000,0x7,0xffe00000,0x7,0xffe00000,0x3,0xffe00000,0x0,0x3c00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 200 + 0x7f8000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7f80000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x3f800000,0x0, + 0x7f000000,0x0,0xfe000000,0x0,0xfc000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x7f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7,0xfc000000,0x1,0xfe000000,0x0, + 0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7,0xfffc0000,0xf,0xe1fe0000,0x1f,0xc0ff0000,0x3f, + 0x3f8000,0x7f,0xfc000,0xfc,0x7e000,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe, + 0x7f0000,0xfe,0x7f0000,0xfe,0x7f0000,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xffffff80,0x7fff,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xffffff80,0xfff,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0x7fc000,0x0,0xffc000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff80000,0x0,0x1fe00000,0x0,0x3fc00000,0x0, + 0x7f800000,0x0,0xfe000000,0x0,0xfc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0x0,0xff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x1, + 0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7,0xfffc0000,0xf,0xe1fe0000,0x1f,0xc0ff0000,0x3f, + 0x3f8000,0x7f,0xfc000,0xfc,0x7e000,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff,0xfffffe00,0x1fff, + 0xfffffe00,0x1fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fffff80,0x0,0xffffff80,0x3,0xffffff80,0xf,0xffffff80,0x3f,0xffffff80,0x7f,0xffffff80,0x1ff,0xfe00ff80,0x3ff,0xc000ff80,0x7ff, + 0xff80,0xfff,0xff80,0xffc,0xff80,0x1ff8,0xff80,0x1ff0,0xff80,0x3fe0,0xff80,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0, + 0xff80,0x7f80,0xff80,0xff80,0xff80,0xff80,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0x1ff00,0xff80,0x1ff00, + 0xff80,0x1ff00,0xffffffc,0x1ff00,0xffffffc,0x1fe00,0xffffffc,0x1fe00,0xffffffc,0x1fe00,0xffffffc,0x1fe00,0xffffffc,0x1ff00,0xffffffc,0x1ff00, + 0xff80,0x1ff00,0xff80,0x1ff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff80,0xff80,0x7f80, + 0xff80,0x7f80,0xff80,0x7fc0,0xff80,0x3fc0,0xff80,0x3fe0,0xff80,0x3ff0,0xff80,0x1ff0,0xff80,0x1ff8,0xff80,0xffc, + 0xff80,0x7ff,0xc000ff80,0x3ff,0xfc00ff80,0x3ff,0xffffff80,0x1ff,0xffffff80,0x7f,0xffffff80,0x3f,0xffffff80,0xf,0xffffff80,0x3, + 0x7fffff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0x0,0x0,0xff0000,0x3e0,0x3ff8000,0x3e0,0xfffc000,0x3e0,0x3fffe000,0x3f0,0xffffe000,0x1f8,0xffc7f000,0x1ff,0xff01f000,0xff, + 0xfc01f000,0xff,0xf001f000,0x7f,0xc000f000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1ff80,0x3f80,0x3ff80,0x3f80,0x3ff80,0x3f80,0x7ff80,0x3f80,0x7ff80,0x3f80,0xfff80,0x3f80,0xfff80,0x3f80,0x1fff80,0x3f80, + 0x1fff80,0x3f80,0x3fff80,0x3f80,0x3fbf80,0x3f80,0x7fbf80,0x3f80,0x7f3f80,0x3f80,0x7f3f80,0x3f80,0xfe7f80,0x3f80,0xfe7f80,0x3f80, + 0x1fc7f80,0x3f80,0x1fc7f80,0x3f80,0x3fc7f80,0x3f80,0x3f87f80,0x3f80,0x7f87f80,0x3f80,0x7f07f80,0x3f80,0xff07f80,0x3f80,0xfe07f80,0x3f80, + 0x1fe07f80,0x3f80,0x1fc07f80,0x3f80,0x3fc07f80,0x3f80,0x3f807f80,0x3f80,0x3f807f80,0x3f80,0x7f007f80,0x3f80,0x7f007f80,0x3f80,0xff007f80,0x3f80, + 0xfe007f80,0x3f80,0xfe007f80,0x3f81,0xfc007f80,0x3f81,0xfc007f80,0x3f83,0xf8007f80,0x3f83,0xf8007f80,0x3f87,0xf0007f80,0x3f87,0xf0007f80,0x3f8f, + 0xe0007f80,0x3f8f,0xe0007f80,0x3f8f,0xc0007f80,0x3f9f,0xc0007f80,0x3f9f,0xc0007f80,0x3fbf,0x80007f80,0x3fbf,0x80007f80,0x3fff,0x7f80,0x3f7f, + 0x7f80,0x3fff,0x7f80,0x3ffe,0x7f80,0x3ffe,0x7f80,0x3ffc,0x7f80,0x3ffc,0x7f80,0x3ff8,0x7f80,0x3ff8,0x7f80,0x3ff0, + 0x7f80,0x3ff0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0x7fc000,0x0,0xffc000,0x0,0x1ff8000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff80000,0x0,0xfe00000,0x0,0x1fc00000,0x0, + 0x3f800000,0x0,0x7f000000,0x0,0xfc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ffc00,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0x0,0xff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x0, + 0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ffc00,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7,0xfffc0000,0xf,0xe1fe0000,0x1f,0xc0ff0000,0x3f, + 0x3f8000,0x7f,0xfc000,0xfc,0x7e000,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ffc00,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0x0,0x0,0xfe0000,0x3e0,0x3ff8000,0x3e0,0xfffc000,0x3e0,0x3fffe000,0x3f0,0xffffe000,0x1f8,0xffe7f000,0x1ff,0xff01f000,0xff, + 0xfc01f000,0xff,0xf001f000,0x7f,0xc000f000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ffc00,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff00000,0x3, + 0xfffe0000,0xf,0xffff8000,0x3f,0xffffc000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff,0xf1fff800,0x7ff,0x3ffc00,0xfff,0xffc00,0xffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3fe0,0xff80,0x7fc0,0xff80,0x7fc0,0x7f80,0x7fc0,0x7fc0,0x7f80, + 0x7fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0,0xff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00, + 0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0x1ff00,0x3fe0,0xff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0,0xff80,0x7fc0,0xff80, + 0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7fc0,0xff80,0x7fc0,0xff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xffc00,0xffc,0x3ffc00,0x7ff,0xe1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffffc000,0x7f,0xffff0000,0x3f, + 0xfffc0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1800,0x600,0x3c00,0xf00,0x7e00,0x1f80,0xff00,0x3fc0,0x1ff00,0x3fe0,0x3fe00,0x1ff0,0x7fc00,0xff8, + 0xff800,0x7fc,0x1ff000,0x3fe,0x3fe000,0x1ff,0x807fc000,0xff,0xc0ff8000,0x7f,0xe1ff0000,0x3f,0xf3fe0000,0x1f,0xfffc0000,0xf, + 0xfff80000,0x7,0xfff00000,0x3,0xffe00000,0x1,0xffc00000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7, + 0xfffc0000,0xf,0xf3fe0000,0x1f,0xe1ff0000,0x3f,0xc0ff8000,0x7f,0x807fc000,0xff,0x3fe000,0x1ff,0x1ff000,0x3fe,0xff800,0x7fc, + 0x7fc00,0xff8,0x3fe00,0x1ff0,0x1ff00,0x3fe0,0xff80,0x3fc0,0x7f00,0x1f80,0x3e00,0xf00,0x1c00,0x600,0x800,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc000,0xfff00000,0x1e001, + 0xfffe0000,0x7e00f,0xffff8000,0x3f03f,0xffffc000,0x1f8ff,0xffffe000,0x1fdff,0xfffff000,0xffff,0xe1fff800,0x7fff,0x3ffc00,0x3fff,0xffc00,0x3ffc, + 0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0x1ff00,0x3ff0,0xff80,0x7ff0,0xff80,0x7ff8,0x7f80,0x7ffc,0x7fc0,0x7ffe, + 0x7fc0,0xfffe,0x3fc0,0xffbf,0x80003fc0,0xff9f,0xc0003fc0,0xff1f,0xc0003fe0,0xff0f,0xe0003fe0,0x1ff07,0xf0003fe0,0x1ff03,0xf8003fe0,0x1ff03, + 0xf8003fe0,0x1ff01,0xfc003fe0,0x1ff00,0x7e003fe0,0x1ff00,0x7f003fe0,0x1ff00,0x3f003fe0,0x1ff00,0x1f803fe0,0x1ff00,0xfc03fe0,0x1ff00,0xfe03fe0,0x1ff00, + 0x7e03fe0,0x1ff00,0x3f03fe0,0x1ff00,0x1f83fe0,0x1ff00,0x1fc3fe0,0xff00,0xfc3fe0,0xff00,0x7e3fc0,0xff00,0x3f3fc0,0xff80,0x3fffc0,0xff80, + 0x1fffc0,0xff80,0xfffc0,0x7f80,0x7ff80,0x7fc0,0x7ff80,0x7fc0,0x3ff80,0x3fc0,0x1ff00,0x3fe0,0x1ff00,0x1ff0,0x3fe00,0x1ff0, + 0x7fe00,0xff8,0xfff00,0xffc,0x3fff80,0x7ff,0xe1ffff80,0x3ff,0xffffffc0,0x1ff,0xffffe7e0,0xff,0xffffc3f0,0x7f,0xffff03f0,0x3f, + 0xfffc01f8,0xf,0xffe000e0,0x1,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0x3fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7f80000,0x0,0xff00000,0x0,0x1fe00000,0x0, + 0x3f800000,0x0,0x7f000000,0x0,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0, + 0x3ff00,0x1ff0,0x7fe00,0x1ff8,0xffe00,0xffe,0xe0fffc00,0x7ff,0xfffff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f, + 0xffff0000,0x1f,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x1,0xff000000,0x0, + 0x7f800000,0x0,0x1fc00000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0, + 0x3ff00,0x1ff0,0x7fe00,0x1ff8,0xffe00,0xffe,0xe0fffc00,0x7ff,0xfffff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f, + 0xffff0000,0x1f,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7,0xfffc0000,0xf,0xe1fe0000,0x1f,0xc0ff0000,0x3f, + 0x3f8000,0x7f,0xfc000,0xfc,0x7e000,0x1f8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0, + 0x3ff00,0x1ff0,0x7fe00,0x1ff8,0xffe00,0xffe,0xe0fffc00,0x7ff,0xfffff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f, + 0xffff0000,0x1f,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0x1ff00,0x1fe0, + 0x3ff00,0x1ff0,0x7fe00,0x1ff8,0xffe00,0xffe,0xe0fffc00,0x7ff,0xfffff800,0x7ff,0xfffff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0x7f, + 0xffff0000,0x1f,0xfff80000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0x0,0xff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x1, + 0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f8,0x7fc00,0xff8,0x3fc00,0x1ff0,0x3fe00,0x1fe0,0x1ff00,0x3fe0,0x1ff00,0x7fc0,0xff80,0x7fc0,0x7f80,0xff80,0x7fc0, + 0xff00,0x3fe0,0x1ff00,0x1fe0,0x3fe00,0x1ff0,0x3fc00,0xff0,0x7fc00,0xff8,0x7f800,0x7fc,0xff000,0x3fc,0x1ff000,0x3fe, + 0x1fe000,0x1fe,0x3fe000,0xff,0x803fc000,0xff,0x807f8000,0x7f,0xc0ff8000,0x3f,0xc0ff0000,0x3f,0xe1fe0000,0x1f,0xf3fe0000,0x1f, + 0xf3fc0000,0xf,0xfffc0000,0x7,0xfff80000,0x7,0xfff00000,0x3,0xfff00000,0x1,0xffe00000,0x1,0xffc00000,0x0,0x7fc00000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0,0x7f800000,0x0, + 0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xffffff80,0x7,0xffffff80,0x3f,0xffffff80,0xff,0xffffff80,0x3ff,0xffffff80,0x7ff,0xffffff80,0xfff, + 0xff80,0x1fff,0xff80,0x3ff8,0xff80,0x3ff0,0xff80,0x7fe0,0xff80,0x7fc0,0xff80,0xff80,0xff80,0xff80,0xff80,0xff00, + 0xff80,0xff00,0xff80,0xff00,0xff80,0xff00,0xff80,0x1ff00,0xff80,0x1ff00,0xff80,0xff00,0xff80,0xff00,0xff80,0xff00, + 0xff80,0xff00,0xff80,0xff80,0xff80,0x7f80,0xff80,0x7fc0,0xff80,0x7fe0,0xff80,0x3ff0,0xff80,0x1ff8,0xff80,0x1ffe, + 0xf800ff80,0xfff,0xffffff80,0x7ff,0xffffff80,0x1ff,0xffffff80,0xff,0xffffff80,0x3f,0xffffff80,0x7,0x1fffff80,0x0,0xff80,0x0, + 0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0, + 0xff80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfff00000,0x1,0xfffe0000,0xf,0xffff8000,0x3f,0xffffe000,0xff,0xfffff000,0x1ff,0xfffff800,0x3ff, + 0x803ffc00,0x7ff,0x7fe00,0x7fc,0x3fe00,0xff8,0x1ff00,0xff0,0xff00,0xfe0,0xff00,0xfe0,0x7f80,0xfe0,0x7f80,0xfe0, + 0x7f80,0xfe0,0x7f80,0xfe0,0x7f80,0xff0,0x3f80,0x7f0,0x3f80,0x7f8,0x3f80,0x3fc,0x3f80,0x3fe,0x3f80,0x1ff, + 0x80003f80,0xff,0xc0003f80,0x7f,0xe0003f80,0x3f,0xe0003f80,0x1f,0xf0003f80,0xf,0xf0003f80,0x7,0xf0003f80,0x7,0xf0003f80,0x7, + 0xf0003f80,0x7,0xf0003f80,0x7,0xf0003f80,0xf,0xf0003f80,0x1f,0xe0003f80,0x3f,0xe0003f80,0x7f,0xc0003f80,0x1ff,0x80003f80,0x3ff, + 0x3f80,0xfff,0x3f80,0x1ffe,0x3f80,0x3ff8,0x3f80,0x7ff0,0x3f80,0xffe0,0x3f80,0x1ff80,0x3f80,0x1ff00,0x3f80,0x3fe00, + 0x3f80,0x3fc00,0x3f80,0x3fc00,0x3f80,0x3f800,0x3f80,0x7f800,0x3f80,0x7f800,0x3f80,0x7f800,0x3f80,0x3f800,0x3f80,0x3f800, + 0x3f80,0x3f800,0x3f80,0x3fc00,0x1803f80,0x3fe00,0xf803f80,0x1ff00,0xff803f80,0x1fff3,0xff803f80,0xffff,0xff803f80,0x7fff,0xff803f80,0x3fff, + 0xff803f80,0xfff,0xfc000000,0x3ff,0x80000000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0, + 0x7f80000,0x0,0xff00000,0x0,0x1fe00000,0x0,0x3f800000,0x0,0x7f000000,0x0,0x7e000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc0000000,0x7f,0xe0000000,0x7f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x7, + 0xfe000000,0x1,0xff000000,0x0,0x7f800000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x7e00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00000,0x0,0xffe00000,0x0,0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7, + 0xf9fe0000,0xf,0xe0ff0000,0x1f,0xc03f8000,0x3f,0xfc000,0x7f,0x7f000,0xfc,0x1f000,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3e0000,0x3e0,0xff8000,0x3e0,0x3ffc000,0x3e0,0xfffe000,0x1f0,0x3fffe000,0x1f0, + 0xfffff000,0x1ff,0xff83f000,0xff,0xfe01f000,0xff,0xfc00f000,0x7f,0xf000f800,0x3f,0x8000f800,0xf,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f, + 0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f,0x801fc000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f800000,0x0, + 0xfff00000,0x1,0xfff80000,0x3,0xfffc0000,0x7,0xfffe0000,0xf,0xe0fe0000,0xf,0x803f0000,0x1f,0x803f0000,0x1f,0x1f0000,0x1f, + 0x1f0000,0x1f,0x803f0000,0x1f,0xc07e0000,0xf,0xfffe0000,0xf,0xfffc0000,0x7,0xfff80000,0x3,0xfff00000,0x1,0x7fc00000,0x0, + 0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xfffe0000,0x7,0xffff8000,0x1f,0xffffe000,0x3f,0xfffff000,0x7f,0xfffff800,0xff, + 0xc03ffc00,0x1ff,0x7fc00,0x3ff,0x3fe00,0x3fe,0x1fe00,0x3fc,0x1fe00,0x7f8,0xff00,0x7f8,0xff00,0x7f8,0x0,0x7f8, + 0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0xffc00000,0x7ff,0xfffe0000,0x7ff,0xffffc000,0x7ff, + 0xfffff000,0x7ff,0xfffff800,0x7ff,0xfffffe00,0x7ff,0x1ffe00,0x7f0,0x3ff00,0x7f0,0x1ff80,0x7f0,0xff80,0x7f0,0x7f80,0x7f0, + 0x7fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7f8,0x3fc0,0x7fc,0x3fc0,0x7fc,0x3fc0,0xffe,0x7fc0,0xfff, + 0x80007fc0,0xfff,0xc0007f80,0xff7,0xe000ff80,0xff3,0xf803ff80,0x1ff3,0xffffff00,0x3fe1,0xfffffe00,0x3ffe0,0x7ffffe00,0x3ffe0,0x3ffffc00,0x3ffc0, + 0xffff000,0x3ff80,0x3ffc000,0x1fe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe000,0x1f8,0x7ffc00,0xfff,0x80ffff00,0x1fff,0xe3ffff80,0x7fff,0xe3ffffc0,0xffff,0xf7ffffc0,0xffff, + 0xfff83fe0,0x1ff07,0xffe01fe0,0x1fc01,0xffe00ff0,0x3fc01,0xffc007f0,0x3f800,0x7fc007f0,0x7f000,0x7fc007f8,0x7f000,0x7fc007f8,0x7f000,0x7f800000,0x7f000, + 0x3f800000,0xfe000,0x3f800000,0xfe000,0x3f800000,0xfe000,0x3f800000,0xfe000,0x3f800000,0xfe000,0x3fffe000,0xfe000,0xfffffe00,0xfffff,0xffffff80,0xfffff, + 0xffffffc0,0xfffff,0xffffffe0,0xfffff,0xfffffff0,0xfffff,0xff801ff8,0xfffff,0x3f8007f8,0x0,0x3f8003fc,0x0,0x3f8003fc,0x0,0x3f8001fc,0x0, + 0x3f8001fc,0x0,0x3fc001fc,0x0,0x3fc001fc,0x0,0x3fc001fe,0x0,0x3fc001fe,0x0,0x7fe001fe,0x2000,0x7fe001fe,0x1e000,0x7fe001fe,0x7e000, + 0xfff001fc,0x7f000,0xfdf803fc,0x3f800,0xfcfc03fc,0x3f801,0xfcfe07fc,0x3fc03,0xf87ffff8,0x1ffdf,0xf83ffff8,0xffff,0xf01ffff0,0xffff,0xe00fffe0,0x3fff, + 0xc007ffc0,0x1fff,0x1ff00,0x7ff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0xf,0xfffe0000,0x3f,0xffff8000,0xff,0xffffc000,0x1ff,0xfffff000,0x3ff, + 0xc0fff800,0x7ff,0x1ff800,0xffc,0x7fc00,0x1ff8,0x3fe00,0x1ff0,0x1fe00,0x3fe0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x7fc0, + 0x7f80,0x80,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0, + 0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7fc0,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0xf80,0xff00,0x7fc0,0xff00,0x3fc0,0x1ff00,0x3fc0,0x1fe00,0x3fe0, + 0x3fe00,0x1fe0,0x7fc00,0x1ff0,0xffc00,0xffc,0x3ff800,0x7ff,0xfffff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0xff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x1f000000,0x0,0x1f000000,0x0,0xf000000,0x0,0xf800000,0x0,0xff800000,0x0,0xff800000,0x1, + 0xffc00000,0x3,0xf8000000,0x7,0xe0000000,0x7,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xc0000000,0xf,0xe0000000,0x7, + 0xfff00000,0x7,0xfff00000,0x3,0xfff00000,0x1,0x7ff00000,0x0,0x3e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffc000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fc0000,0x0,0x7f80000,0x0, + 0xff00000,0x0,0x1fc00000,0x0,0x3f800000,0x0,0x7f000000,0x0,0xfe000000,0x0,0xf8000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0xff,0xfffff000,0x1ff, + 0x807ff000,0x3ff,0x1ff800,0x7fc,0x7fc00,0xff8,0x3fe00,0xff0,0x1fe00,0x1fe0,0x1ff00,0x1fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0x7f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0xffff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff00,0x0,0xff00,0x80,0x1ff00,0x780,0x1fe00,0x3fc0, + 0x3fe00,0x3fc0,0x7fc00,0x1fe0,0xff800,0x1ff8,0x3ff800,0xffe,0xf7fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0x1ff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf, + 0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xf800000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0xff,0xfffff000,0x1ff, + 0x807ff000,0x3ff,0x1ff800,0x7fc,0x7fc00,0xff8,0x3fe00,0xff0,0x1fe00,0x1fe0,0x1ff00,0x1fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0x7f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0xffff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff00,0x0,0xff00,0x80,0x1ff00,0x780,0x1fe00,0x3fc0, + 0x3fe00,0x3fc0,0x7fc00,0x1fe0,0xff800,0x1ff8,0x3ff800,0xffe,0xf7fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0x1ff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff800000,0x0,0xffc00000,0x1,0xffe00000,0x3,0xfff00000,0x7,0xfff80000,0xf, + 0xf7fc0000,0x1f,0xc1fe0000,0x3f,0x7f0000,0x7f,0x1f8000,0xfe,0xfc000,0x1f8,0x3e000,0x1f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0xff,0xfffff000,0x1ff, + 0x807ff000,0x3ff,0x1ff800,0x7fc,0x7fc00,0xff8,0x3fe00,0xff0,0x1fe00,0x1fe0,0x1ff00,0x1fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0x7f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0xffff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff00,0x0,0xff00,0x80,0x1ff00,0x780,0x1fe00,0x3fc0, + 0x3fe00,0x3fc0,0x7fc00,0x1fe0,0xff800,0x1ff8,0x3ff800,0xffe,0xf7fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0x1ff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff800000,0x0,0xfff80000,0x7,0xfffe0000,0x1f,0xffff8000,0x7f,0xffffc000,0xff,0xfffff000,0x1ff, + 0x807ff000,0x3ff,0x1ff800,0x7fc,0x7fc00,0xff8,0x3fe00,0xff0,0x1fe00,0x1fe0,0x1ff00,0x1fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x3fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0x7f80,0xffffffc0,0x7fff,0xffffffc0,0x7fff, + 0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0x7fff,0xffffffc0,0xffff,0x3fc0,0x0,0x3fc0,0x0,0x3fc0,0x0,0x7f80,0x0, + 0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0x7f80,0x0,0xff00,0x0,0xff00,0x80,0x1ff00,0x780,0x1fe00,0x3fc0, + 0x3fe00,0x3fc0,0x7fc00,0x1fe0,0xff800,0x1ff8,0x3ff800,0xffe,0xf7fff000,0x7ff,0xffffe000,0x3ff,0xffffc000,0x1ff,0xffff0000,0x7f, + 0xfffc0000,0x1f,0xffe00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff80000,0x0, + 0x1fe00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0xfe000000,0x0,0xfc000000,0x1,0xf8000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1, + 0xfffff800,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x7f,0xf0000000,0x1f,0xf0000000,0xf, + 0xf8000000,0x7,0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1, + 0xfffff800,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff800000,0x0,0xffc00000,0x1,0xffe00000,0x3,0xfff00000,0x7,0xfff80000,0xf, + 0xf7fc0000,0x1f,0xc1fe0000,0x3f,0x7f0000,0x7f,0x3f8000,0xfe,0xfc000,0x1f8,0x3e000,0x3f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1, + 0xfffff800,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe0000,0x1fc,0xfe0000,0x1fc,0xfe0000,0x1fc, + 0xfe0000,0x1fc,0xfe0000,0x1fc,0xfe0000,0x1fc,0xfe0000,0x1fc,0xfe0000,0x1fc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1,0xfffff800,0x1, + 0xfffff800,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1, + 0xfe000000,0x1,0xfe000000,0x1,0xfe000000,0x1,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff,0xffffff80,0x1ffff, + 0xffffff80,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7fc000,0x1e0,0x1ff0000,0x1f8,0x7fe0000,0x3fe,0xcff80000,0x7ff,0xfff00000,0x1ff,0xffc00000,0x7f, + 0xff800000,0x1f,0xffe00000,0x3,0xfff80000,0x3,0xffff0000,0x7,0xffffc000,0xf,0xf1ffc000,0x1f,0xe03f8000,0x3f,0xc00f8000,0x7f, + 0x80030000,0xff,0x0,0xff,0x0,0x1fe,0x0,0x3fe,0x0,0x3fc,0x0,0x7fc,0x0,0x7f8,0xe000000,0xff0, + 0xfff80000,0xff1,0xffff0000,0x1fff,0xffffc000,0x1fff,0xffffe000,0x1fff,0xfffff000,0x3fff,0x807ff800,0x3fff,0xffc00,0x3ffc,0x7fe00,0x3ff8, + 0x3fe00,0x7ff0,0x1ff00,0x7fe0,0xff00,0x7fc0,0xff80,0x7fc0,0x7f80,0x7f80,0x7f80,0xff80,0x7f80,0xff80,0x3fc0,0xff80, + 0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00, + 0x3fc0,0xff00,0x3fc0,0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fe0, + 0x1ff00,0x1fe0,0x3fe00,0x1ff0,0x7fe00,0xff8,0x1ffc00,0x7fe,0xf1fff800,0x3ff,0xfffff000,0x1ff,0xffffe000,0xff,0xffff8000,0x7f, + 0xfffe0000,0x1f,0xfff00000,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7c0000,0x7c0,0x1ff0000,0x3c0,0x7ff8000,0x3e0,0x1fffc000,0x3e0,0x7fffe000,0x3f0, + 0xffffe000,0x3ff,0xff83e000,0x1ff,0xfe03f000,0x1ff,0xf801f000,0xff,0xe001f000,0x7f,0x1f000,0x1f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0x7,0xff00ff00,0x3f,0xffc0ff00,0xff,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x7ff, + 0x81fcff00,0xfff,0x7eff00,0xffc,0x1fff00,0xff8,0xfff00,0x1ff0,0x7ff00,0x1ff0,0x7ff00,0x1fe0,0x3ff00,0x1fe0,0x3ff00,0x1fe0, + 0x1ff00,0x1fc0,0x1ff00,0x3fc0,0x1ff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff8000,0x0,0x1ff8000,0x0,0x3fe0000,0x0,0x7fc0000,0x0,0xff80000,0x0, + 0x1fe00000,0x0,0x3fc00000,0x0,0x7f800000,0x0,0xfe000000,0x0,0xfc000000,0x0,0xf8000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x807ff800,0x7ff,0xff800,0x7fc,0x7fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fe0,0x1fe00,0x1fe0, + 0x3fe00,0x1ff0,0x7fc00,0xff8,0xffc00,0x7fc,0x1ff800,0x7ff,0xf1fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f, + 0xfffe0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf, + 0xfc000000,0x3,0xfe000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x1f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x807ff800,0x7ff,0xff800,0x7fc,0x7fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fe0,0x1fe00,0x1fe0, + 0x3fe00,0x1ff0,0x7fc00,0xff8,0xffc00,0x7fc,0x1ff800,0x7ff,0xf1fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f, + 0xfffe0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7, + 0xf3fe0000,0xf,0xc1ff0000,0x3f,0x807f8000,0x7f,0x1fc000,0xfe,0x7e000,0x1fc,0x3e000,0x1f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x807ff800,0x7ff,0xff800,0x7fc,0x7fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fe0,0x1fe00,0x1fe0, + 0x3fe00,0x1ff0,0x7fc00,0xff8,0xffc00,0x7fc,0x1ff800,0x7ff,0xf1fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f, + 0xfffe0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3c0000,0x3e0,0x1ff0000,0x3e0,0x7ffc000,0x3e0,0x1fffc000,0x3e0,0x7fffe000,0x1f0, + 0xffffe000,0x1ff,0xff83f000,0x1ff,0xfe01f000,0xff,0xf801f000,0x7f,0xe001f000,0x3f,0x8000f000,0xf,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x807ff800,0x7ff,0xff800,0x7fc,0x7fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fe0,0x1fe00,0x1fe0, + 0x3fe00,0x1ff0,0x7fc00,0xff8,0xffc00,0x7fc,0x1ff800,0x7ff,0xf1fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f, + 0xfffe0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfff80000,0xf,0xffff0000,0x3f,0xffff8000,0xff,0xffffe000,0x1ff,0xfffff000,0x3ff, + 0x807ff800,0x7ff,0xff800,0x7fc,0x7fc00,0xff8,0x3fe00,0x1ff0,0x1fe00,0x1fe0,0x1ff00,0x3fe0,0xff00,0x3fc0,0xff00,0x3fc0, + 0x7f80,0x7fc0,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80,0x3fc0,0x7f80, + 0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0xff80,0x3fc0,0x7f80,0x7fc0,0x7f80, + 0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x7f80,0x3fc0,0xff80,0x3fc0,0xff00,0x3fc0,0xff00,0x1fe0,0x1fe00,0x1fe0, + 0x3fe00,0x1ff0,0x7fc00,0xff8,0xffc00,0x7fc,0x1ff800,0x7ff,0xf1fff000,0x3ff,0xffffe000,0x1ff,0xffffc000,0xff,0xffff0000,0x3f, + 0xfffe0000,0xf,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0xffffffe0,0xffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x3f800000,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffc00000,0x0,0xfffc0000,0x100f,0xffff0000,0x383f,0xffffc000,0x7cff,0xffffe000,0x7fff,0xfffff000,0x3fff, + 0x3ff800,0x1fff,0xffc00,0x1ffc,0x7fe00,0x1ff8,0x3ff00,0x1ff0,0x1ff00,0x3ff0,0xff00,0x3ff8,0x7f80,0x7ffc,0x7f80,0x7ffe, + 0x7fc0,0x7fbf,0x3fc0,0xff9f,0x80003fc0,0xff1f,0xc0003fc0,0xff0f,0xe0003fc0,0xff07,0xf0003fc0,0xff03,0xf8003fe0,0xff01,0xfc001fe0,0xff00, + 0x7e001fe0,0xff00,0x3f001fe0,0xff00,0x3f001fe0,0xff00,0x1f801fe0,0xff00,0xfc01fe0,0xff00,0x7e01fe0,0xff00,0x3f03fe0,0xff00,0x1f83fc0,0xff00, + 0xfc3fc0,0xff00,0x7e3fc0,0xff00,0x3e3fc0,0xff80,0x3f7fc0,0x7f80,0x1fff80,0x7f80,0xfff80,0x7fc0,0x7ff80,0x3fc0,0x3ff00,0x3fe0, + 0x1ff00,0x1fe0,0x3fe00,0x1ff0,0x7fe00,0xff8,0x1ffe00,0x7fe,0xf1ffff00,0x7ff,0xffffff80,0x1ff,0xffffcfc0,0xff,0xffff8780,0x7f, + 0xfffe0300,0x1f,0xfff00000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fc000,0x0,0xffc000,0x0,0x1ff0000,0x0,0x3fe0000,0x0,0x7fc0000,0x0, + 0xff00000,0x0,0x1fe00000,0x0,0x3fc00000,0x0,0x3f000000,0x0,0x7e000000,0x0,0xfc000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xfe00,0x3fe0,0xfe00,0x3fe0,0x1fe00,0x3ff0,0x1fe00,0x3ff0,0x1fe00,0x3ff8, + 0x1fe00,0x3ff8,0x3fe00,0x3ffc,0x7fc00,0x3fdf,0x801ffc00,0x3fdf,0xfffff800,0x3fcf,0xfffff800,0x3fc7,0xfffff000,0x3fc3,0xffffe000,0x3fc1, + 0xffff8000,0x3fc0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7, + 0xfc000000,0x3,0xfe000000,0x1,0x7f000000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x7c00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xfe00,0x3fe0,0xfe00,0x3fe0,0x1fe00,0x3ff0,0x1fe00,0x3ff0,0x1fe00,0x3ff8, + 0x1fe00,0x3ff8,0x3fe00,0x3ffc,0x7fc00,0x3fdf,0x801ffc00,0x3fdf,0xfffff800,0x3fcf,0xfffff800,0x3fc7,0xfffff000,0x3fc3,0xffffe000,0x3fc1, + 0xffff8000,0x3fc0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f800000,0x0,0xffc00000,0x0,0xffe00000,0x1,0xfff00000,0x3,0xfff80000,0x7, + 0xf3fe0000,0xf,0xc1ff0000,0x3f,0x807f8000,0x7f,0x1fc000,0xfe,0x7e000,0x1fc,0x3e000,0x1f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xfe00,0x3fe0,0xfe00,0x3fe0,0x1fe00,0x3ff0,0x1fe00,0x3ff0,0x1fe00,0x3ff8, + 0x1fe00,0x3ff8,0x3fe00,0x3ffc,0x7fc00,0x3fdf,0x801ffc00,0x3fdf,0xfffff800,0x3fcf,0xfffff800,0x3fc7,0xfffff000,0x3fc3,0xffffe000,0x3fc1, + 0xffff8000,0x3fc0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0, + 0xff00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fe0,0xfe00,0x3fe0,0xfe00,0x3fe0,0x1fe00,0x3ff0,0x1fe00,0x3ff0,0x1fe00,0x3ff8, + 0x1fe00,0x3ff8,0x3fe00,0x3ffc,0x7fc00,0x3fdf,0x801ffc00,0x3fdf,0xfffff800,0x3fcf,0xfffff800,0x3fc7,0xfffff000,0x3fc3,0xffffe000,0x3fc1, + 0xffff8000,0x3fc0,0x1ffe0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0x1ff,0xc0000000,0xff,0xc0000000,0x7f,0xe0000000,0x1f,0xf0000000,0xf, + 0xf8000000,0x7,0xfc000000,0x1,0xfe000000,0x0,0x7f000000,0x0,0x3f800000,0x0,0xfc00000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x3fc00,0xff0,0x3fc00,0x1ff0,0x1fe00,0x1fe0,0x1fe00,0x1fe0,0xff00, + 0x3fc0,0xff00,0x3fc0,0xff00,0x7f80,0x7f80,0x7f80,0x7f80,0x7f00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0x1fe00,0x1fe0, + 0x1fe00,0x1fe0,0x3fc00,0xfe0,0x3fc00,0xff0,0x3f800,0x7f0,0x7f800,0x7f8,0x7f800,0x7f8,0xff000,0x3f8,0xff000,0x3fc, + 0xfe000,0x1fc,0x1fe000,0x1fe,0x1fc000,0xfe,0x3fc000,0xfe,0x3f8000,0xff,0x3f8000,0x7f,0x807f8000,0x7f,0x807f0000,0x3f, + 0x80ff0000,0x3f,0xc0fe0000,0x3f,0xc1fe0000,0x1f,0xe1fc0000,0x1f,0xe1fc0000,0xf,0xe3fc0000,0xf,0xf3f80000,0x7,0xf3f80000,0x7, + 0xfff00000,0x7,0xfff00000,0x3,0xffe00000,0x3,0xffe00000,0x1,0xffc00000,0x1,0xffc00000,0x0,0xffc00000,0x0,0xff800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0,0x1ffe000,0x0,0xffff00,0x0,0x7fff00,0x0, + 0x3fff00,0x0,0x1fff00,0x0,0x7ff00,0x0,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xfc00ff00,0x7,0xff80ff00,0x3f,0xffe0ff00,0x7f,0xfff0ff00,0x1ff,0xfff8ff00,0x3ff,0xfffcff00,0x7ff, + 0x1feff00,0xfff,0x3eff00,0xffc,0x1fff00,0x1ff8,0xfff00,0x1ff0,0x7ff00,0x1fe0,0x7ff00,0x3fe0,0x3ff00,0x3fc0,0x3ff00,0x3fc0, + 0x3ff00,0x7fc0,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80, + 0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80,0xff00,0x7f80, + 0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7f80,0x1ff00,0x7fc0,0x1ff00,0x3fc0,0x3ff00,0x3fc0,0x3ff00,0x3fc0,0x7ff00,0x1fe0, + 0x7ff00,0x1fe0,0xfff00,0x1ff0,0x1fff00,0xff8,0x7eff00,0xffe,0xc7feff00,0x7ff,0xfffcff00,0x3ff,0xfff8ff00,0x1ff,0xfff0ff00,0xff, + 0xffc0ff00,0x3f,0xff00ff00,0xf,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0, + 0xff00,0x0,0xff00,0x0,0xff00,0x0,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f, + 0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x3f8000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff0,0x3fc00,0xff0,0x3fc00,0x1ff0,0x1fe00,0x1fe0,0x1fe00,0x1fe0,0xff00, + 0x3fc0,0xff00,0x3fc0,0xff00,0x7f80,0x7f80,0x7f80,0x7f80,0x7f00,0x3fc0,0xff00,0x3fc0,0xff00,0x3fc0,0x1fe00,0x1fe0, + 0x1fe00,0x1fe0,0x3fc00,0xfe0,0x3fc00,0xff0,0x3f800,0x7f0,0x7f800,0x7f8,0x7f800,0x7f8,0xff000,0x3f8,0xff000,0x3fc, + 0xfe000,0x1fc,0x1fe000,0x1fe,0x1fc000,0xfe,0x3fc000,0xfe,0x3f8000,0xff,0x3f8000,0x7f,0x807f8000,0x7f,0x807f0000,0x3f, + 0x80ff0000,0x3f,0xc0fe0000,0x3f,0xc1fe0000,0x1f,0xe1fc0000,0x1f,0xe1fc0000,0xf,0xe3fc0000,0xf,0xf3f80000,0x7,0xf3f80000,0x7, + 0xfff00000,0x7,0xfff00000,0x3,0xffe00000,0x3,0xffe00000,0x1,0xffc00000,0x1,0xffc00000,0x0,0xffc00000,0x0,0xff800000,0x0, + 0x7f800000,0x0,0x7f800000,0x0,0x3f800000,0x0,0x3f800000,0x0,0x1fc00000,0x0,0x1fc00000,0x0,0x1fe00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0x7f80000,0x0,0x7fc0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0,0x1ffe000,0x0,0xffff00,0x0,0x7fff00,0x0, + 0x3fff00,0x0,0x1fff00,0x0,0x7ff00,0x0,0xfe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0, +}; + +// Font: Liberation Mono,78,-1,5,50,0,0,0,0,0 +const unsigned int ff18_height = 118; +const unsigned int ff18_line_height = 118; +const unsigned int ff18_width = 62; +const unsigned int ff18_stride = 2; +const unsigned char ff18_first_char = ' '; + +uint32_t ff18_data [] = { + // 32 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 33 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f, + 0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 34 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff8000,0x1ffe0,0x3ff8000,0x1ffe0,0x3ff8000,0x1ffc0,0x3ff8000,0x1ffc0, + 0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0, + 0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff0000,0xffc0,0x1ff0000,0xffc0,0x1ff0000,0xffc0,0x1ff0000,0xff80,0x1ff0000,0x7f80, + 0x1ff0000,0x7f80,0x1ff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80, + 0xff0000,0x7f80,0xff0000,0x7f80,0xfe0000,0x7f80,0xfe0000,0x7f80,0xfe0000,0x7f80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 35 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f000000,0x1f0000,0x1f800000,0x1f8000,0x1f800000,0x1f8000,0x1f800000,0x1f8000,0xf800000,0xf8000, + 0xf800000,0xf8000,0xfc00000,0xfc000,0xfc00000,0xfc000,0x7c00000,0x7c000,0x7c00000,0x7c000,0x7e00000,0x7e000,0x7e00000,0x7e000,0x7e00000,0x7e000, + 0x3e00000,0x3e000,0x3e00000,0x3e000,0x3f00000,0x3f000,0x3f00000,0x3f000,0x3f00000,0x3f000,0x1f00000,0x1f000,0x1f80000,0x1f000,0x1f80000,0x1f800, + 0xffffffc0,0xfffffff,0xffffffc0,0xfffffff,0xffffffc0,0xfffffff,0xffffffc0,0xfffffff,0xffffffc0,0xfffffff,0xfc0000,0xfc00,0xfc0000,0x7c00,0x7c0000,0x7c00, + 0x7e0000,0x7e00,0x7e0000,0x7e00,0x7e0000,0x7e00,0x3e0000,0x3e00,0x3e0000,0x3e00,0x3f0000,0x3f00,0x3f0000,0x3f00,0x3f0000,0x3f00, + 0x1f0000,0x1f00,0x1f8000,0x1f80,0x1f8000,0x1f80,0x1f8000,0x1f80,0xf8000,0xf80,0xfffffff8,0x3ffffff,0xfffffff8,0x3ffffff,0xfffffff8,0x3ffffff, + 0xfffffff8,0x3ffffff,0xfffffff8,0x3ffffff,0xfffffff8,0x3ffffff,0x7e000,0x7e0,0x7e000,0x7e0,0x3e000,0x7e0,0x3e000,0x3e0,0x3f000,0x3f0, + 0x3f000,0x3f0,0x3f000,0x3f0,0x1f000,0x1f0,0x1f000,0x1f0,0x1f800,0x1f8,0x1f800,0x1f8,0x1f800,0x1f8,0xf800,0xf8, + 0xf800,0xf8,0xfc00,0xfc,0xfc00,0xfc,0xfc00,0xfc,0x7c00,0x7c,0x7c00,0x7c,0x7e00,0x7e,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 36 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7, + 0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xff000000,0x7f,0xfff00000,0xfff,0xfffe0000,0x7fff,0xffff8000,0x1ffff,0xffffe000,0x3ffff, + 0xfffff000,0x7ffff,0xfffff800,0xfffff,0xe0fffc00,0x1fff87,0xe01ffe00,0x3ffc07,0xe007fe00,0x7ff807,0xe003ff00,0x7fe007,0xe001ff00,0xffc007,0xe001ff00,0xffc007, + 0xe000ff80,0xff8007,0xe000ff80,0x1ff8007,0xe000ff80,0x1ff0007,0xe000ff80,0x1ff0007,0xe000ff80,0xf0007,0xe000ff80,0x7,0xe000ff80,0x7,0xe001ff00,0x7, + 0xe001ff00,0x7,0xe003ff00,0x7,0xe007ff00,0x7,0xe00ffe00,0x7,0xe03ffe00,0x7,0xe0fffc00,0x7,0xeffff800,0x7,0xfffff000,0x7, + 0xffffe000,0x7f,0xffff8000,0x7ff,0xffff0000,0x1fff,0xfff80000,0xffff,0xffe00000,0x3ffff,0xfe000000,0xfffff,0xf0000000,0x1fffff,0xe0000000,0x3fffff, + 0xe0000000,0x7fffc7,0xe0000000,0xfffc07,0xe0000000,0xfff007,0xe0000000,0x1ffc007,0xe0000000,0x1ff8007,0xe0000000,0x3ff0007,0xe0000000,0x3fe0007,0xe0000000,0x3fe0007, + 0xe0000000,0x7fc0007,0xe0000000,0x7fc0007,0xe0001000,0x7fc0007,0xe0001f80,0x7fc0007,0xe0001ff0,0x7fc0007,0xe0001ff0,0x7fc0007,0xe0003ff0,0x7fc0007,0xe0003fe0,0x7fc0007, + 0xe0007fe0,0x3fe0007,0xe0007fc0,0x3fe0007,0xe000ffc0,0x3ff0007,0xe001ff80,0x1ff8007,0xe007ff80,0x1ffc007,0xe01fff00,0xfff007,0xe07ffe00,0x7ffc07,0xfffffc00,0x7ffff7, + 0xfffff800,0x3fffff,0xfffff000,0xfffff,0xffffc000,0x7ffff,0xffff8000,0x1ffff,0xfffc0000,0x3fff,0xffe00000,0x7ff,0xe0000000,0x7,0xe0000000,0x7, + 0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 37 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1e000,0x0,0x3ffe00,0x7f80000,0xffff80,0x3f80000,0x1ffffe0,0x1fc0000,0x3fffff0,0x1fe0000,0x7fffff0,0xff0000, + 0x7fc0ff8,0x7f0000,0xff007fc,0x7f8000,0xff003fc,0x3fc000,0x1fe001fc,0x1fc000,0x1fe001fe,0xfe000,0x1fc001fe,0xff000,0x1fc000fe,0x7f000,0x1fc000fe,0x3f800, + 0x1fc000fe,0x3fc00,0x3fc000fe,0x1fc00,0x3fc000fe,0xfe00,0x3fc000fe,0xff00,0x3fc000fe,0x7f80,0x3fc000fe,0x3f80,0x1fc000fe,0x3fc0,0x1fc000fe,0x1fe0, + 0x1fc000fe,0xfe0,0x1fc001fe,0x7f0,0x1fe001fe,0x7f8,0x1fe001fc,0x3f8,0xff003fc,0x1fc,0xff807fc,0x1fe,0x7fc0ff8,0xfe,0x3fffff0,0x7f, + 0x83fffff0,0x7f,0x81ffffe0,0x3f,0xc07fff80,0x1f,0xe03ffe00,0x1f,0xf003f000,0xf,0xf0000000,0x7,0xf8000000,0x3ff807,0xfc000000,0xffff03, + 0xfc000000,0x3ffff81,0xfe000000,0x7ffffc0,0xff000000,0xfffffe0,0x7f000000,0xff83ff0,0x3f800000,0x1fe00ff0,0x3fc00000,0x1fc007f8,0x1fc00000,0x3fc007f8,0xfe00000,0x3f8003f8, + 0xff00000,0x3f8003fc,0x7f00000,0x3f8003fc,0x3f80000,0x3f8003fc,0x3fc0000,0x3f8001fc,0x1fe0000,0x3f8001fc,0xfe0000,0x3f8001fc,0x7f0000,0x3f8001fc,0x7f8000,0x3f8001fc, + 0x3f8000,0x3f8001fc,0x1fc000,0x3f8001fc,0x1fe000,0x3f8003fc,0xfe000,0x3f8003fc,0x7f000,0x3f8003fc,0x7f800,0x3f8003f8,0x3f800,0x3fc003f8,0x1fc00,0x3fc007f8, + 0x1fe00,0x1fe00ff0,0xff00,0x1ff01ff0,0x7f00,0xfffffe0,0x3f80,0x7ffffe0,0x3fc0,0x3ffffc0,0x1fc0,0x1ffff80,0xfe0,0xfffe00,0x0,0x1ff000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 38 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0x3f,0xffc00000,0x1ff,0xfff00000,0x3ff,0xfff80000,0xfff,0xfffc0000,0x1fff, + 0xfffe0000,0x1fff,0x7ff0000,0x3ff8,0x1ff8000,0x7fe0,0xff8000,0x7fc0,0x7f8000,0x7f80,0x3fc000,0xff00,0x3fc000,0xff00,0x3fc000,0xff00, + 0x1fc000,0xff00,0x1fc000,0xff00,0x1fc000,0xff00,0x1fc000,0x7f80,0x1fc000,0x7f80,0x3fc000,0x7fc0,0x3fc000,0x3fe0,0x3fc000,0x1ff0, + 0x3f8000,0x1ffc,0x7f8000,0xffe,0x807f8000,0x3ff,0xf0ff0000,0x1ff,0xfcff0000,0xff,0xffff0000,0x3f,0xfffe0000,0xf,0xfffe0000,0x7, + 0xfffe0000,0x0,0x3fff8000,0x0,0xfffe000,0x18000,0xffff000,0x1f8000,0xffff800,0x7f8000,0x1ffffc00,0x7f8000,0x1feffe00,0x3f8000,0x3fe3ff00,0x3fc000, + 0x7fc1ff80,0x3fc000,0x7fc0ffc0,0x3fc000,0xff807fc0,0x1fc000,0xff003fe0,0x1fe001,0xff001fe0,0x1fe001,0xfe001ff0,0x1fe003,0xfc000ff0,0xff007,0xfc000ff8,0xff007, + 0xf8000ff8,0xff00f,0xf0000ff8,0x7f81f,0xf00007f8,0x7f83f,0xe00007f8,0x3f87f,0xc00007f8,0x3fc7f,0x800007f8,0x3fcff,0x800007f8,0x1ffff,0x7f8,0x1ffff, + 0xff8,0xfffe,0xff8,0xfffc,0xff8,0x7ff8,0x1ff0,0x7ff0,0x1ff0,0xfff0,0x3ff0,0xfff8,0x7fe0,0x3fffc,0xffe0,0x7ffff, + 0xc003ffc0,0x181fffff,0xf81fff80,0x1fffffff,0xffffff80,0x1ffff8ff,0xffffff00,0x1ffff07f,0xfffffc00,0x1fffe03f,0xfffff800,0x1fffc00f,0xffffe000,0x1fff0003,0x7fff0000,0x7f80000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 39 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1f,0xfc000000,0x1f,0xfc000000,0x1f,0xfc000000,0x1f, + 0xfc000000,0x1f,0xfc000000,0x1f,0xfc000000,0x1f,0xfc000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f, + 0xf8000000,0x1f,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 40 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff0,0x0,0x1ff8,0x0,0xffc,0x0,0x7fe, + 0x0,0x3fe,0x0,0x3ff,0x80000000,0x1ff,0x80000000,0xff,0xc0000000,0xff,0xe0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x3f, + 0xf8000000,0x1f,0xf8000000,0xf,0xfc000000,0xf,0xfc000000,0x7,0xfe000000,0x7,0xfe000000,0x3,0xff000000,0x3,0xff000000,0x1, + 0xff800000,0x1,0xff800000,0x1,0xffc00000,0x0,0xffc00000,0x0,0x7fc00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x3fe00000,0x0, + 0x3ff00000,0x0,0x3ff00000,0x0,0x1ff00000,0x0,0x1ff00000,0x0,0x1ff80000,0x0,0x1ff80000,0x0,0x1ff80000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xff80000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0, + 0xffc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x7fc0000,0x0, + 0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xffc0000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xff80000,0x0,0x1ff80000,0x0,0x1ff80000,0x0,0x1ff80000,0x0,0x1ff00000,0x0,0x1ff00000,0x0,0x3ff00000,0x0, + 0x3ff00000,0x0,0x3fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xff800000,0x0, + 0xff800000,0x1,0xff000000,0x1,0xff000000,0x3,0xfe000000,0x3,0xfe000000,0x7,0xfc000000,0x7,0xfc000000,0xf,0xf8000000,0xf, + 0xf8000000,0x1f,0xf0000000,0x1f,0xf0000000,0x3f,0xe0000000,0x7f,0xc0000000,0x7f,0xc0000000,0xff,0x80000000,0x1ff,0x0,0x1ff, + 0x0,0x3fe,0x0,0x7fe,0x0,0xffc,0x0,0x1ff8,0x0,0x1ff0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 41 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0000,0x0,0xff80000,0x0,0x1ff80000,0x0,0x3ff00000,0x0, + 0x7fe00000,0x0,0x7fc00000,0x0,0xffc00000,0x0,0xff800000,0x1,0xff000000,0x1,0xff000000,0x3,0xfe000000,0x7,0xfc000000,0x7, + 0xfc000000,0xf,0xf8000000,0x1f,0xf8000000,0x1f,0xf0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x7f,0xc0000000,0x7f,0xc0000000,0xff, + 0xc0000000,0xff,0x80000000,0x1ff,0x80000000,0x1ff,0x0,0x1ff,0x0,0x3ff,0x0,0x3ff,0x0,0x3fe,0x0,0x7fe, + 0x0,0x7fe,0x0,0x7fc,0x0,0x7fc,0x0,0xffc,0x0,0xffc,0x0,0xff8,0x0,0xff8,0x0,0xff8, + 0x0,0x1ff8,0x0,0x1ff8,0x0,0x1ff8,0x0,0x1ff8,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0, + 0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0, + 0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff0,0x0,0x1ff8,0x0,0x1ff8, + 0x0,0x1ff8,0x0,0xff8,0x0,0xff8,0x0,0xff8,0x0,0xffc,0x0,0xffc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fe,0x0,0x7fe,0x0,0x3fe,0x0,0x3ff,0x0,0x3ff,0x0,0x1ff,0x80000000,0x1ff,0x80000000,0x1ff, + 0x80000000,0xff,0xc0000000,0xff,0xc0000000,0x7f,0xe0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x1f, + 0xfc000000,0xf,0xfc000000,0xf,0xfe000000,0x7,0xfe000000,0x3,0xff000000,0x3,0xff800000,0x1,0xff800000,0x0,0xffc00000,0x0, + 0x7fe00000,0x0,0x3ff00000,0x0,0x1ff00000,0x0,0x1ff80000,0x0,0xffc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 42 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0018000,0x8007,0xe00f8000,0x1f007, + 0xe03fc000,0x1fe07,0xe1ffc000,0x1ff87,0xe7ffc000,0x3fff7,0xffffe000,0x3ffff,0xffffe000,0x3ffff,0xffff0000,0x7fff,0xfff00000,0x7ff,0xff000000,0x7f, + 0xf8000000,0xf,0xfc000000,0x1f,0xfc000000,0x3f,0xfe000000,0x3f,0x7f000000,0x7f,0x7f800000,0xfe,0x3f800000,0x1fe,0x1fc00000,0x1fc, + 0x1fe00000,0x3f8,0xff00000,0x7f8,0x7f00000,0x7f0,0x7f80000,0xff0,0x3fc0000,0x1fe0,0x3f80000,0x1fe0,0x1f00000,0x7c0,0xc00000,0x180, + 0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 43 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff, + 0xffffffc0,0x1ffffff,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 44 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0xf,0xffc00000,0x7,0xffc00000,0x7,0xffe00000,0x3,0xffe00000,0x3,0xffe00000,0x1,0xffe00000,0x1,0xfff00000,0x0, + 0xfff00000,0x0,0x7ff00000,0x0,0x7ff00000,0x0,0x3ff80000,0x0,0x3ff80000,0x0,0x1ff80000,0x0,0x1ff80000,0x0,0x1ffc0000,0x0, + 0xffc0000,0x0,0xffc0000,0x0,0x7fc0000,0x0,0x7fe0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x1fe0000,0x0,0x1ff0000,0x0, + 0xff0000,0x0,0xff0000,0x0,0x7f0000,0x0,0x7f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x3f8000,0x0,0x1fc000,0x0, + 0x1fc000,0x0,0xfc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 45 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfffe0000,0x3fff,0xfffe0000,0x3fff,0xfffe0000,0x3fff,0xfffe0000,0x3fff,0xfffe0000,0x3fff,0xfffe0000,0x3fff,0xfffe0000,0x3fff,0xfffe0000,0x3fff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 46 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 47 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff0000,0x0,0xff8000,0x0,0xff8000,0x0,0x7fc000, + 0x0,0x7fc000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x1ff000,0x0,0xff800,0x0,0xff800,0x0,0x7fc00,0x0,0x7fc00, + 0x0,0x3fe00,0x0,0x3fe00,0x0,0x1ff00,0x0,0x1ff00,0x0,0xff80,0x0,0xff80,0x0,0x7fc0,0x0,0x7fe0, + 0x0,0x3fe0,0x0,0x1ff0,0x0,0x1ff0,0x0,0xff8,0x0,0xff8,0x0,0x7fc,0x0,0x7fc,0x0,0x3fe, + 0x0,0x3fe,0x0,0x1ff,0x80000000,0x1ff,0x80000000,0xff,0xc0000000,0x7f,0xc0000000,0x7f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xf0000000,0x1f,0xf0000000,0x1f,0xf8000000,0xf,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x7,0xfe000000,0x3,0xff000000,0x1, + 0xff000000,0x1,0xff800000,0x0,0xff800000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x3fe00000,0x0,0x3ff00000,0x0,0x1ff00000,0x0, + 0x1ff80000,0x0,0xff80000,0x0,0x7fc0000,0x0,0x7fc0000,0x0,0x3fe0000,0x0,0x3fe0000,0x0,0x1ff0000,0x0,0x1ff0000,0x0, + 0xff8000,0x0,0xffc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3ff000,0x0,0x1ff000,0x0,0xff800,0x0, + 0xff800,0x0,0x7fc00,0x0,0x7fc00,0x0,0x3fe00,0x0,0x3ff00,0x0,0x1ff00,0x0,0x1ff80,0x0,0xff80,0x0, + 0xffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 48 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x1f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff, + 0xffff8000,0x1ffff,0x3fffc000,0x3fffe,0x3ffe000,0x3ffc0,0xfff000,0x7ff00,0x3ff000,0x7fe00,0x1ff800,0xffc00,0x1ff800,0x1ff800,0xffc00,0x1ff800, + 0x7fc00,0x1ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000,0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0xff80,0xff8000,0xff80,0xff8000,0xff80,0xff8000,0xfc00ff80,0xff803f, + 0xfc00ff80,0xff803f,0xfc00ff80,0xff803f,0xfc00ff80,0xff803f,0xfc00ff80,0xff803f,0xfc00ff80,0xff803f,0xfc00ff80,0x1ff803f,0xfc00ff80,0xff803f,0xfc00ff80,0xff803f, + 0xfc00ff80,0xff803f,0xfc00ff80,0xff803f,0xfc00ff80,0xff803f,0xff80,0xff8000,0xff80,0xff8000,0xff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000, + 0x7fc00,0x3ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0x1ff800,0xff800,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x7ff000,0x7ff00,0x1ffe000,0x3ffc0, + 0xfffc000,0x1fff0,0xffff8000,0x1ffff,0xffff0000,0xffff,0xfffe0000,0x3fff,0xfffc0000,0x1fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 49 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0x80000000,0xff,0xc0000000,0xff,0xe0000000,0xff,0xf0000000,0xff, + 0xf8000000,0xff,0xfe000000,0xff,0xff000000,0xff,0xffc00000,0xff,0xfff80000,0xff,0xbfff0000,0xff,0x9ffffc00,0xff,0x8fffff00,0xff, + 0x87ffff00,0xff,0x81ffff00,0xff,0x807fff00,0xff,0x801fff00,0xff,0x8003ff00,0xff,0x80003f00,0xff,0x80000000,0xff,0x80000000,0xff, + 0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff, + 0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff, + 0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff, + 0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff, + 0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff,0x80000000,0xff, + 0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 50 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x3ff,0xfff00000,0x1fff,0xfffc0000,0x3fff,0xffff0000,0xffff,0xffff8000,0x1ffff, + 0xffffc000,0x3ffff,0x7fffe000,0x7fffe,0x3fff000,0xfffc0,0xfff000,0xfff00,0x3ff800,0x1ffe00,0x1ff800,0x1ffc00,0xffc00,0x1ff800,0xffc00,0x3ff000, + 0x7fe00,0x3ff000,0x7fe00,0x3fe000,0x7fe00,0x3fe000,0x3fe00,0x3fe000,0x3fe00,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000, + 0x0,0x3fe000,0x0,0x3ff000,0x0,0x1ff000,0x0,0x1ff800,0x0,0x1ff800,0x0,0xffc00,0x0,0xffe00,0x0,0x7fe00, + 0x0,0x3ff00,0x0,0x3ff80,0x0,0x1ffc0,0x0,0xffe0,0x0,0x7ff0,0x0,0x3ffc,0x0,0x1ffe,0x0,0xfff, + 0x80000000,0x7ff,0xc0000000,0x3ff,0xe0000000,0x1ff,0xf0000000,0xff,0xfc000000,0x7f,0xfe000000,0x1f,0xff000000,0xf,0xff800000,0x7, + 0xffc00000,0x3,0xffe00000,0x0,0x7ff80000,0x0,0x3ffc0000,0x0,0x1ffe0000,0x0,0xfff0000,0x0,0x7ff0000,0x0,0x3ff8000,0x0, + 0x1ffc000,0x0,0x7fe000,0x0,0x7ff000,0x0,0x3ff800,0x0,0x1ff800,0x0,0xffc00,0x0,0xffe00,0x0,0x7fe00,0x0, + 0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 51 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x7f,0xffc00000,0x3ff,0xfff80000,0x1fff,0xfffc0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff, + 0xffffc000,0x3ffff,0x7fffe000,0x7fffe,0x1fff000,0xfffc0,0x7ff800,0xfff00,0x3ff800,0x1ffc00,0x1ffc00,0x1ffc00,0xffc00,0x1ff800,0x7fe00,0x3ff000, + 0x7fe00,0x3ff000,0x3fe00,0x3ff000,0x3fe00,0x3fe000,0x3ff00,0x3fe000,0x3ff00,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000, + 0x0,0x3ff000,0x0,0x1ff000,0x0,0x1ff800,0x0,0xffc00,0x0,0xffc00,0x0,0x7ff00,0x0,0x3ff80,0x0,0x1fff0, + 0x0,0xffff,0xff000000,0x7fff,0xff000000,0x1fff,0xff000000,0x3ff,0xff000000,0x7f,0xff000000,0xfff,0xff000000,0x7fff,0xff000000,0xffff, + 0xff000000,0x3ffff,0x0,0x7fff0,0x0,0xfff80,0x0,0x1ffe00,0x0,0x3ff800,0x0,0x3ff000,0x0,0x7fe000,0x0,0x7fc000, + 0x0,0xffc000,0x0,0xffc000,0x0,0xff8000,0x0,0xff8000,0x1c000,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000, + 0x3ff00,0xffc000,0x3ff00,0xffc000,0x7ff00,0x7fe000,0x7fe00,0x7fe000,0xffe00,0x7ff000,0x1ffc00,0x3ff800,0x3ffc00,0x3ffc00,0xfff800,0x1fff00, + 0xffff000,0x1ffff0,0xfffff000,0xfffff,0xffffe000,0x7ffff,0xffff8000,0x3ffff,0xffff0000,0xffff,0xfffc0000,0x3fff,0xfff00000,0xfff,0xff800000,0x1ff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 52 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0,0x0,0xffe0,0x0,0xfff0,0x0,0xfff8,0x0,0xfff8, + 0x0,0xfffc,0x0,0xfffe,0x0,0xfffe,0x0,0xffff,0x80000000,0xffff,0xc0000000,0xffbf,0xc0000000,0xffbf,0xe0000000,0xff9f, + 0xf0000000,0xff8f,0xf0000000,0xff8f,0xf8000000,0xff87,0xfc000000,0xff83,0xfe000000,0xff81,0xfe000000,0xff81,0xff000000,0xff80,0x7f800000,0xff80, + 0x7f800000,0xff80,0x3fc00000,0xff80,0x1fe00000,0xff80,0xff00000,0xff80,0xff00000,0xff80,0x7f80000,0xff80,0x3fc0000,0xff80,0x3fc0000,0xff80, + 0x1fe0000,0xff80,0xff0000,0xff80,0x7f0000,0xff80,0x7f8000,0xff80,0x3fc000,0xff80,0x1fe000,0xff80,0xfe000,0xff80,0xff000,0xff80, + 0x7f800,0xff80,0x3f800,0xff80,0x3fc00,0xff80,0x1fe00,0xff80,0xff00,0xff80,0x7f00,0xff80,0x7f80,0xff80,0x3fc0,0xff80, + 0xffffffc0,0x3ffffff,0xffffffc0,0x3ffffff,0xffffffc0,0x3ffffff,0xffffffc0,0x3ffffff,0xffffffc0,0x3ffffff,0xffffffc0,0x3ffffff,0xffffffc0,0x3ffffff,0x0,0xff80, + 0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80, + 0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0xff80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 53 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0xfffff,0xfffff800,0xfffff,0xfffff800,0xfffff,0xfffff800,0xfffff,0xfffff800,0xfffff, + 0xfffff800,0xfffff,0xfffff800,0xfffff,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0,0xff800,0x0, + 0x7f800,0x0,0x7f800,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x8007fc00,0xf,0xfe07fc00,0x1ff,0xff87fc00,0xfff,0xffe7fc00,0x3fff,0xfffbfc00,0x7fff, + 0xfffffc00,0x1ffff,0xfffffe00,0x3ffff,0xfffffe00,0x7ffff,0x3fffe00,0xffff0,0x7ffe00,0x1fff80,0x1ffe00,0x1ffe00,0xffe00,0x3ffc00,0x7fe00,0x3ff800, + 0x0,0x7ff000,0x0,0x7fe000,0x0,0x7fe000,0x0,0xffc000,0x0,0xffc000,0x0,0xffc000,0x0,0xff8000,0x0,0xff8000, + 0x0,0xff8000,0x0,0xff8000,0x0,0xff8000,0x0,0xff8000,0x0,0xff8000,0x0,0xffc000,0x0,0xffc000,0x1ff80,0x7fc000, + 0x1ff80,0x7fe000,0x1ff00,0x7fe000,0x3ff00,0x7ff000,0x7ff00,0x3ff000,0x7fe00,0x3ff800,0xffe00,0x1ffc00,0x3ffc00,0x1fff00,0x7ffc00,0xfffc0, + 0x3fff800,0x7fff8,0xfffff000,0x3ffff,0xffffe000,0x1ffff,0xffffc000,0xffff,0xffff8000,0x3fff,0xfffe0000,0xfff,0xfff80000,0x3ff,0xff800000,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 54 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000000,0xff,0xfe000000,0x7ff,0xff800000,0x1fff,0xffe00000,0x7fff,0xfff00000,0xffff,0xfffc0000,0x1ffff, + 0xfffe0000,0x3ffff,0x7fff0000,0x7fff0,0xfff0000,0xfff80,0x3ff8000,0xffe00,0x1ffc000,0x1ffc00,0xffc000,0x1ff800,0x7fe000,0x1ff000,0x3fe000,0x3ff000, + 0x3ff000,0x3fe000,0x1ff000,0x1e000,0x1ff800,0x0,0xff800,0x0,0xff800,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x3fc00,0x0,0x3fe00,0x0,0x3fe00,0x0,0xe003fe00,0x1ff,0xfc03fe00,0xfff,0xff03fe00,0x3fff,0xffc3fe00,0x7fff,0xffe1fe00,0x1ffff, + 0xfff1ff00,0x3ffff,0xfff9ff00,0x7ffff,0xffdff00,0xfffe0,0x1fdff00,0xfff00,0xffff00,0x1ffe00,0x3fff00,0x3ffc00,0x1fff00,0x3ff800,0x1fff00,0x3ff000, + 0xfff00,0x7fe000,0x7ff00,0x7fe000,0x7ff00,0x7fc000,0x7ff00,0xffc000,0x3ff00,0xffc000,0x3fe00,0xff8000,0x3fe00,0xff8000,0x3fe00,0xff8000, + 0x3fe00,0xff8000,0x3fe00,0xff8000,0x3fe00,0xff8000,0x7fe00,0xff8000,0x7fc00,0xff8000,0x7fc00,0xffc000,0x7fc00,0xffc000,0xffc00,0x7fc000, + 0xff800,0x7fc000,0x1ff800,0x7fe000,0x1ff000,0x7fe000,0x3ff000,0x3ff000,0x7fe000,0x3ff800,0xffe000,0x1ffc00,0x1ffc000,0x1ffe00,0x3ffc000,0xfff00, + 0x1fff8000,0x7ffe0,0xffff0000,0x3ffff,0xfffe0000,0x1ffff,0xfffc0000,0xffff,0xfff80000,0x7fff,0xffe00000,0x1fff,0xff800000,0x7ff,0xfc000000,0x1ff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 55 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0x0,0x3fc000,0x0,0x3fe000,0x0,0x1ff000,0x0,0xff000,0x0,0xff800,0x0,0x7fc00, + 0x0,0x3fc00,0x0,0x3fe00,0x0,0x1ff00,0x0,0x1ff00,0x0,0xff80,0x0,0x7fc0,0x0,0x7fc0,0x0,0x3fe0, + 0x0,0x3fe0,0x0,0x1ff0,0x0,0xff8,0x0,0xff8,0x0,0x7fc,0x0,0x7fc,0x0,0x3fe,0x0,0x3fe, + 0x0,0x1ff,0x0,0x1ff,0x80000000,0xff,0x80000000,0xff,0xc0000000,0x7f,0xc0000000,0x7f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xf0000000,0x3f,0xf0000000,0x1f,0xf0000000,0x1f,0xf8000000,0xf,0xf8000000,0xf,0xfc000000,0xf,0xfc000000,0x7,0xfc000000,0x7, + 0xfe000000,0x7,0xfe000000,0x3,0xfe000000,0x3,0xff000000,0x3,0xff000000,0x3,0xff000000,0x1,0xff000000,0x1,0xff800000,0x1, + 0xff800000,0x0,0xff800000,0x0,0xff800000,0x0,0xffc00000,0x0,0xffc00000,0x0,0xffc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 56 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe000000,0x3f,0xffe00000,0x3ff,0xfff80000,0xfff,0xfffe0000,0x3fff,0xffff0000,0xffff,0xffffc000,0x1ffff, + 0xffffe000,0x3ffff,0x3ffe000,0x7ffe0,0x7ff000,0x7ff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0xffc00,0x1ff800,0xffc00,0x1ff000,0x7fe00,0x3ff000, + 0x7fe00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000,0x3fe00,0x3fe000,0x3fe00,0x3fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fe00,0x3ff000, + 0x7fc00,0x3ff000,0x7fc00,0x1ff000,0xff800,0x1ff800,0x1ff800,0xff800,0x3ff000,0xffc00,0x7ff000,0x7fe00,0xffe000,0x3ff80,0x7ffc000,0x1fff0, + 0xffff8000,0xffff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0x3ff,0xfffc0000,0x1fff,0xffff0000,0xffff,0xffffc000,0x1ffff,0x3ffe000,0x3ffe0, + 0x7ff000,0xfff00,0x3ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000, + 0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x7ff00,0x7fe000,0x7fe00,0x3ff000,0xffe00,0x3ff800,0x1ffc00,0x1ffc00,0x7ffc00,0x1ffe00, + 0x1fff800,0xfff80,0x3ffff000,0x7fffc,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0xffff,0xfffe0000,0x3fff,0xfff00000,0xfff,0xff800000,0x1ff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 57 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe000000,0x1f,0xffc00000,0x1ff,0xfff00000,0x7ff,0xfffc0000,0x1fff,0xffff0000,0x3fff,0xffff8000,0x7fff, + 0xffffc000,0xffff,0x1fffe000,0x1fffe,0x1fff000,0x3ffe0,0x7ff800,0x3ffc0,0x3ff800,0x7ff00,0x1ffc00,0x7fe00,0xffc00,0xffc00,0xffe00,0xffc00, + 0x7fe00,0x1ff800,0x3fe00,0x1ff000,0x3ff00,0x1ff000,0x3ff00,0x3ff000,0x3ff00,0x3fe000,0x1ff00,0x3fe000,0x1ff00,0x3fe000,0x1ff00,0x7fe000, + 0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3ff00,0x7fe000,0x3ff00,0xffe000, + 0x3fe00,0xffe000,0x7fe00,0xfff000,0x7fe00,0xfff000,0xffc00,0xfff800,0xffc00,0xfffc00,0x1ffc00,0xfffe00,0x3ff800,0xffff00,0xfff000,0xffbf80, + 0x3fff000,0xffbff0,0xffffe000,0x7fdfff,0xffffc000,0x7fcfff,0xffff8000,0x7fc7ff,0xffff0000,0x7fc3ff,0xfffc0000,0x7fc0ff,0xfff80000,0x7fc03f,0xffc00000,0x7fc00f, + 0x38000000,0x7fc000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff800, + 0x30000,0xff800,0x3fc00,0xffc00,0x7fe00,0x7fc00,0x7fc00,0x7fe00,0xffc00,0x3ff00,0x1ff800,0x3ff80,0x3ff800,0x1ffc0,0x7ff000,0xffe0, + 0x1fff000,0xfffc,0xffffe000,0x7fff,0xffffc000,0x3fff,0xffff8000,0x1fff,0xffff0000,0x7ff,0xfffe0000,0x3ff,0xfff80000,0xff,0xffc00000,0x1f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 58 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 59 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf8000000,0xff,0xf8000000,0xff,0xfc000000,0x7f,0xfc000000,0x7f,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x1f, + 0xfe000000,0x1f,0xfe000000,0xf,0xff000000,0xf,0xff000000,0x7,0xff000000,0x7,0xff000000,0x3,0xff800000,0x3,0xff800000,0x1, + 0xff800000,0x1,0xff800000,0x0,0xffc00000,0x0,0x7fc00000,0x0,0x7fc00000,0x0,0x3fc00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x1fe00000,0x0,0x1fe00000,0x0,0xff00000,0x0,0xff00000,0x0,0x7f00000,0x0,0x7f00000,0x0,0x3f80000,0x0,0x3f80000,0x0, + 0x1f80000,0x0,0x1fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 60 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1800000,0x0,0x1e00000,0x0,0x1f80000,0x0,0x1ff0000,0x0,0x1ffc000, + 0x0,0x1fff800,0x0,0x1fffe00,0x0,0x1ffff80,0x0,0x7ffff0,0x0,0x1ffffc,0x0,0x3ffff,0xe0000000,0xffff,0xf8000000,0x3fff, + 0xff000000,0x7ff,0xffc00000,0x1ff,0xfff00000,0x7f,0xfffe0000,0xf,0xffff8000,0x3,0xffffe000,0x0,0x1ffffc00,0x0,0x7ffff00,0x0, + 0x1ffffc0,0x0,0x3fffc0,0x0,0xfffc0,0x0,0x1ffc0,0x0,0x7fc0,0x0,0x3fc0,0x0,0xffc0,0x0,0x7ffc0,0x0, + 0x1fffc0,0x0,0x7fffc0,0x0,0x3ffffc0,0x0,0xffffe00,0x0,0x3ffff800,0x0,0xffffc000,0x1,0xffff0000,0x7,0xfffc0000,0x1f, + 0xffe00000,0xff,0xff800000,0x3ff,0xfe000000,0xfff,0xf0000000,0x7fff,0xc0000000,0x1ffff,0x0,0x7fffe,0x0,0x3ffff8,0x0,0xffffe0, + 0x0,0x1ffff00,0x0,0x1fffc00,0x0,0x1ffe000,0x0,0x1ff8000,0x0,0x1fe0000,0x0,0x1f00000,0x0,0x1c00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 61 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff, + 0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffc0,0x1ffffff, + 0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 62 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x3c0,0x0,0x1fc0,0x0,0x7fc0,0x0,0x1ffc0,0x0, + 0xfffc0,0x0,0x3fffc0,0x0,0x1ffffc0,0x0,0x7ffff00,0x0,0x1ffff800,0x0,0xffffe000,0x0,0xffff8000,0x3,0xfffc0000,0xf, + 0xfff00000,0x7f,0xffc00000,0x1ff,0xfe000000,0xfff,0xf8000000,0x3fff,0xe0000000,0xffff,0x0,0x7ffff,0x0,0x1ffffc,0x0,0xfffff0, + 0x0,0x1ffff80,0x0,0x1fffe00,0x0,0x1fff800,0x0,0x1ffc000,0x0,0x1ff0000,0x0,0x1fe0000,0x0,0x1ff8000,0x0,0x1ffe000, + 0x0,0x1fffc00,0x0,0x1ffff00,0x0,0x1ffffc0,0x0,0x7ffff8,0x0,0xffffe,0x80000000,0x3ffff,0xf0000000,0x7fff,0xfc000000,0x1fff, + 0xff000000,0x7ff,0xffe00000,0xff,0xfff80000,0x3f,0xfffe0000,0x7,0xffffc000,0x1,0x7ffff000,0x0,0xffffc00,0x0,0x3ffff80,0x0, + 0xffffc0,0x0,0x1fffc0,0x0,0x7ffc0,0x0,0xffc0,0x0,0x3fc0,0x0,0xfc0,0x0,0x1c0,0x0,0x40,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 63 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff000000,0x1f,0xfff00000,0x3ff,0xfffc0000,0xfff,0xffff0000,0x3fff,0xffff8000,0xffff,0xffffe000,0x1ffff, + 0xfffff000,0x3ffff,0xfffff800,0x7ffff,0xfffc00,0xfffc0,0x3ffc00,0x1fff00,0x1ffe00,0x1ffc00,0x7ff00,0x3ff800,0x3ff00,0x3ff000,0x3ff80,0x3ff000, + 0x1ff80,0x7fe000,0xff80,0x7fe000,0xffc0,0x7fe000,0xffc0,0x7fc000,0x7fc0,0x7fc000,0x7fc0,0x7fc000,0x7fe0,0x7fc000,0x0,0x7fc000, + 0x0,0x7fe000,0x0,0x3fe000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x1ff800,0x0,0x1ffc00,0x0,0xffe00,0x0,0xfff00, + 0x0,0x7ff80,0x0,0x3ffc0,0x0,0x1ffe0,0x0,0xfff8,0x0,0x3ffc,0x0,0x1ffe,0x0,0xfff,0xc0000000,0x3ff, + 0xe0000000,0x1ff,0xf0000000,0xff,0xf8000000,0x7f,0xf8000000,0x1f,0xfc000000,0xf,0xfc000000,0x7,0xfe000000,0x7,0xfe000000,0x3, + 0xff000000,0x3,0xff000000,0x1,0xff000000,0x1,0xff000000,0x1,0xff000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff800000,0x1,0xff800000,0x1,0xff800000,0x1, + 0xff800000,0x1,0xff800000,0x1,0xff800000,0x1,0xff800000,0x1,0xff800000,0x1,0xff800000,0x1,0xff800000,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 64 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0000000,0x7f,0xfc000000,0x7ff,0xff000000,0x1fff,0xffc00000,0x7fff, + 0xfff00000,0xffff,0xfff80000,0x1ffff,0x3ffc0000,0x7ffc0,0x7ff0000,0xffe00,0x1ff8000,0xff800,0xff8000,0x1ff000,0x3fc000,0x3fc000,0x1fe000,0x7f8000, + 0xff000,0x7f8000,0x7f000,0xff0000,0x3f800,0xfe0000,0x3fc00,0x1fc0000,0x1fc00,0x1fc0000,0xfe00,0x3f80000,0xfe00,0x3f80000,0x7f00,0x3f00000, + 0xe0007f00,0x7f0001f,0xf8003f80,0x7f3f07f,0xfe003f80,0x7e3f0ff,0xff001f80,0x7e3f1ff,0xff801fc0,0xfe3f1ff,0x7fc01fc0,0xfe1fbf0,0x1fe00fc0,0xfc1fbe0,0xfe00fe0,0xfc1fbc0, + 0x7f00fe0,0xfc1ff80,0x3f00fe0,0xfc1ff80,0x3f807e0,0x1fc0ff80,0x1f807f0,0x1fc0ff80,0x1fc07f0,0x1fc0ff00,0xfc07f0,0x1f80ff00,0xfe03f0,0x1f80ff00,0xfe03f0,0x1f807f00, + 0xfe03f0,0x1f807f00,0x7f03f8,0x1f807f00,0x7f03f8,0x1f807f00,0x7f03f8,0x1f807f00,0x7f03f8,0x1f803f80,0x3f81f8,0x1f803f80,0x3f81f8,0x1f803f80,0x3f81f8,0x1f803f80, + 0x3f81f8,0x1fc03f80,0x3f81f8,0xfc01f80,0x3f81f8,0xfc01f80,0x3f81f8,0xfc01fc0,0x3f81f8,0xfc01fc0,0x1f81f8,0xfc01fc0,0x1f81f8,0xfc01fc0,0x1f81f8,0xfc00fe0, + 0x3f81f8,0x7e00fe0,0x3f81f8,0x7e00fe0,0x3f81f8,0x7e00ff0,0x3f81f8,0x7e00ff0,0x3f81f8,0x3f00ff0,0x3f83f8,0x3f007f8,0x3f83f8,0x3f007f8,0x3f83f8,0x1f807fc, + 0x7f03f0,0x1f807fc,0x7f03f0,0x1fc07de,0xff03f0,0xfc07df,0x80fe07f0,0x7e0fcf,0xe3fe07f0,0x7f0fcf,0xfffc07e0,0x3fff87,0xfff80fe0,0x1fff83,0xfff00fe0,0xfff81, + 0xffe00fe0,0x7ff00,0x3fc01fc0,0x1fc00,0x1fc0,0x0,0x3fc0,0x0,0x3f80,0x0,0x7f80,0x0,0x7f00,0x0,0xff00,0x0, + 0xfe00,0x20000,0x1fe00,0x70000,0x3fc00,0xf8000,0x7f800,0x1fe000,0x1ff800,0x1ff800,0x3ff000,0xffc00,0xffe000,0x7ff80,0xfffc000,0x1fff8, + 0xffff8000,0xffff,0xfffe0000,0x3fff,0xfffc0000,0xfff,0xfff00000,0x3ff,0xffc00000,0x7f,0xfc000000,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 65 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 66 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x1f,0xfffffe00,0x3ff,0xfffffe00,0x1fff,0xfffffe00,0x7fff,0xfffffe00,0x1ffff, + 0xfffffe00,0x3ffff,0xfffffe00,0x7ffff,0xfffffe00,0xfffff,0x3fe00,0x1fffe0,0x3fe00,0x1fff00,0x3fe00,0x3ffc00,0x3fe00,0x3ff800,0x3fe00,0x3ff000, + 0x3fe00,0x7ff000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x3fe000, + 0x3fe00,0x3fe000,0x3fe00,0x3ff000,0x3fe00,0x1ff000,0x3fe00,0x1ff800,0x3fe00,0xffc00,0x3fe00,0xffe00,0x3fe00,0x7ffc0,0x3fe00,0x3fff8, + 0xfffffe00,0xffff,0xfffffe00,0x7fff,0xfffffe00,0xfff,0xfffffe00,0x3ff,0xfffffe00,0x7fff,0xfffffe00,0x1ffff,0xfffffe00,0x7ffff,0x3fe00,0x1fffff, + 0x3fe00,0x3fff00,0x3fe00,0x7ff800,0x3fe00,0xffe000,0x3fe00,0x1ffc000,0x3fe00,0x1ff8000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3fe0000, + 0x3fe00,0x7fe0000,0x3fe00,0x7fe0000,0x3fe00,0x7fe0000,0x3fe00,0x7fe0000,0x3fe00,0x7fe0000,0x3fe00,0x7fe0000,0x3fe00,0x7fe0000,0x3fe00,0x7fe0000, + 0x3fe00,0x7ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff8000,0x3fe00,0x3ffc000,0x3fe00,0x1ffe000,0x3fe00,0x1fff000,0x3fe00,0xfffe00,0x3fe00,0x7ffff0, + 0xfffffe00,0x3fffff,0xfffffe00,0x1fffff,0xfffffe00,0xfffff,0xfffffe00,0x3ffff,0xfffffe00,0xffff,0xfffffe00,0x3fff,0xfffffe00,0x3ff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 67 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0x7f,0xff800000,0x7ff,0xffe00000,0x1fff,0xfff80000,0x7fff,0xfffe0000,0xffff,0xffff0000,0x3ffff, + 0xffff8000,0x7ffff,0xffffc000,0xfffff,0xfffe000,0xfffc0,0x3fff000,0x1fff00,0xfff000,0x3ffc00,0x7ff800,0x3ff800,0x3ff800,0x7ff000,0x1ffc00,0xffe000, + 0x1ffc00,0xffc000,0xffe00,0xffc000,0xffe00,0x1ff8000,0x7fe00,0xff8000,0x7ff00,0x1f0000,0x3ff00,0x30000,0x3ff00,0x0,0x3ff00,0x0, + 0x3ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ffc0,0x0, + 0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0xffc0,0x0,0xffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0, + 0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x3ff80,0x0,0x3ff00,0x40000,0x3ff00,0x1c0000,0x3ff00,0xfe0000,0x7ff00,0x3fe0000,0x7fe00,0x3ff0000,0xffe00,0x3ff0000, + 0xffc00,0x1ff8000,0x1ffc00,0x1ff8000,0x1ffc00,0xffc000,0x3ff800,0xffe000,0x7ff000,0x7ff000,0xfff000,0x3ff800,0x3ffe000,0x3ffe00,0xfffc000,0x1fff00, + 0xffffc000,0xffff8,0xffff8000,0x7ffff,0xffff0000,0x3ffff,0xfffc0000,0x1ffff,0xfff80000,0x7fff,0xffe00000,0x3fff,0xff800000,0xfff,0xfc000000,0x1ff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 68 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x0,0xfffffe00,0x1f,0xfffffe00,0xff,0xfffffe00,0x7ff,0xfffffe00,0xfff, + 0xfffffe00,0x3fff,0xfffffe00,0x7fff,0xfffffe00,0xffff,0x8003fe00,0x3ffff,0x3fe00,0x3fff8,0x3fe00,0x7ffc0,0x3fe00,0xfff80,0x3fe00,0x1ffe00, + 0x3fe00,0x1ffc00,0x3fe00,0x3ff800,0x3fe00,0x3ff800,0x3fe00,0x7ff000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0xffc000,0x3fe00,0xffc000, + 0x3fe00,0xffc000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000, + 0x3fe00,0x1ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000,0x3fe00,0x3ff0000, + 0x3fe00,0x1ff0000,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000, + 0x3fe00,0xff8000,0x3fe00,0xffc000,0x3fe00,0xffc000,0x3fe00,0xffe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7ff000,0x3fe00,0x3ff800, + 0x3fe00,0x3ff800,0x3fe00,0x1ffc00,0x3fe00,0x1ffe00,0x3fe00,0xfff00,0x3fe00,0x7ff80,0x3fe00,0x7ffe0,0x3fe00,0x3fffc,0xf003fe00,0x1ffff, + 0xfffffe00,0xffff,0xfffffe00,0x7fff,0xfffffe00,0x1fff,0xfffffe00,0xfff,0xfffffe00,0x3ff,0xfffffe00,0x7f,0xfffffe00,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 69 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 70 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffc00,0xffffff,0xfffffc00,0xffffff,0xfffffc00,0xffffff,0xfffffc00,0xffffff,0xfffffc00,0xffffff, + 0xfffffc00,0xffffff,0xfffffc00,0xffffff,0xfffffc00,0xffffff,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0, + 0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0, + 0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0, + 0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffc00,0x3fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0, + 0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0, + 0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0, + 0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0xffc00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 71 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0x7f,0xff800000,0x7ff,0xfff00000,0x1fff,0xfff80000,0x7fff,0xfffe0000,0xffff,0xffff0000,0x1ffff, + 0xffff8000,0x3ffff,0xffffc000,0x7ffff,0xfffe000,0xfffc0,0x3fff000,0x1fff00,0xfff000,0x3ffc00,0x7ff800,0x3ff800,0x3ff800,0x7ff000,0x1ffc00,0x7fe000, + 0xffc00,0xffe000,0xffe00,0xffc000,0x7fe00,0xff8000,0x7ff00,0x3f8000,0x7ff00,0x78000,0x3ff00,0x0,0x3ff00,0x0,0x3ff80,0x0, + 0x3ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ffc0,0x0,0x1ffc0,0x0, + 0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0xffc0,0x0,0xffc0,0xffffff,0xffc0,0xffffff,0x1ffc0,0xffffff,0x1ffc0,0xffffff, + 0x1ffc0,0xffffff,0x1ffc0,0xffffff,0x1ffc0,0xffffff,0x1ff80,0xffffff,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000, + 0x1ff80,0xff8000,0x3ff80,0xff8000,0x3ff00,0xff8000,0x3ff00,0xff8000,0x7ff00,0xff8000,0x7fe00,0xff8000,0x7fe00,0xff8000,0xffe00,0xff8000, + 0xffc00,0xff8000,0x1ffc00,0xff8000,0x1ffc00,0xff8000,0x3ff800,0xff8000,0x7ff000,0xff8000,0xfff000,0xffc000,0x3ffe000,0xfff000,0xfffc000,0xfffe00, + 0xffffc000,0xfffff0,0xffff8000,0x7fffff,0xffff0000,0x3fffff,0xfffc0000,0xfffff,0xfff80000,0x3ffff,0xffe00000,0xffff,0xff800000,0x1fff,0xfe000000,0x1ff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 72 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 73 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 74 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0x7ffff,0xfe000000,0x7ffff,0xfe000000,0x7ffff,0xfe000000,0x7ffff,0xfe000000,0x7ffff, + 0xfe000000,0x7ffff,0xfe000000,0x7ffff,0xfe000000,0x7ffff,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00, + 0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00, + 0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00, + 0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00, + 0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00, + 0x0,0x7fe00,0x0,0x7fe00,0x0,0x7fe00,0x0,0x3fe00,0x60000,0x3fe00,0x7f800,0x3fe00,0x7fc00,0x3fe00,0xffc00,0x3ff00, + 0xffc00,0x3ff00,0xffc00,0x3ff00,0x1ff800,0x1ff00,0x1ff800,0x1ff80,0x3ff800,0x1ff80,0x7ff000,0xffc0,0xfff000,0xffe0,0x3ffe000,0x7ff8, + 0x1fffe000,0x7fff,0xffffc000,0x3fff,0xffff8000,0x1fff,0xffff0000,0xfff,0xfffe0000,0x7ff,0xfff80000,0x3ff,0xfff00000,0xff,0xff800000,0x1f, + 0x40000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 75 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe00,0x3ff8000,0x3fe00,0x3ffc000,0x3fe00,0x1ffe000,0x3fe00,0xfff000,0x3fe00,0x7ff000, + 0x3fe00,0x3ff800,0x3fe00,0x1ffc00,0x3fe00,0xffe00,0x3fe00,0x7ff00,0x3fe00,0x7ff80,0x3fe00,0x3ff80,0x3fe00,0x1ffc0,0x3fe00,0xffe0, + 0x3fe00,0x7ff0,0x3fe00,0x3ff8,0x3fe00,0x1ffc,0x3fe00,0xffe,0x3fe00,0x7fe,0x3fe00,0x7ff,0x8003fe00,0x3ff,0xc003fe00,0x1ff, + 0xe003fe00,0xff,0xf003fe00,0x7f,0xf803fe00,0x3f,0xf803fe00,0x1f,0xfc03fe00,0xf,0xfe03fe00,0xf,0xff03fe00,0x7,0xff83fe00,0x3, + 0xffc3fe00,0x3,0xffc3fe00,0x3,0xffe3fe00,0x7,0xfff3fe00,0xf,0xfffbfe00,0x1f,0xfffffe00,0x1f,0xfffffe00,0x3f,0xfbfffe00,0x7f, + 0xf1fffe00,0xff,0xe0fffe00,0xff,0xe07ffe00,0x1ff,0xc03ffe00,0x3ff,0x801ffe00,0x7ff,0x1ffe00,0x7ff,0xffe00,0xfff,0x7fe00,0x1ffe, + 0x3fe00,0x3ffc,0x3fe00,0x3ff8,0x3fe00,0x7ff8,0x3fe00,0xfff0,0x3fe00,0x1ffe0,0x3fe00,0x1ffc0,0x3fe00,0x3ffc0,0x3fe00,0x7ff80, + 0x3fe00,0xfff00,0x3fe00,0xffe00,0x3fe00,0x1ffc00,0x3fe00,0x3ffc00,0x3fe00,0x7ff800,0x3fe00,0x7ff000,0x3fe00,0xffe000,0x3fe00,0x1ffe000, + 0x3fe00,0x3ffc000,0x3fe00,0x3ff8000,0x3fe00,0x7ff0000,0x3fe00,0xfff0000,0x3fe00,0x1ffe0000,0x3fe00,0x1ffc0000,0x3fe00,0x3ff80000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 76 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0xffffe000,0xffffff,0xffffe000,0xffffff,0xffffe000,0xffffff,0xffffe000,0xffffff,0xffffe000,0xffffff,0xffffe000,0xffffff,0xffffe000,0xffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 77 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7ff80,0xffe000,0xfff80,0xfff000,0xfff80,0xfff000,0xfff80,0xfff000,0x1fff80,0xfff800, + 0x1fff80,0xfff800,0x3fff80,0xfffc00,0x3fff80,0xfffc00,0x3fff80,0xfffc00,0x7fff80,0xfffe00,0x7fff80,0xfffe00,0x7f7f80,0xfffe00,0xff7f80,0xff7f00, + 0xff7f80,0xff7f00,0x1fe7f80,0xff7f80,0x1fe7f80,0xff3f80,0x1fe7f80,0xff3f80,0x3fc7f80,0xff3fc0,0x3fc7f80,0xff1fc0,0x3fc7f80,0xff1fc0,0x7f87f80,0xff1fe0, + 0x7f87f80,0xff0fe0,0xff87f80,0xff0ff0,0xff07f80,0xff0ff0,0xff07f80,0xff07f0,0x1ff07f80,0xff07f8,0x1fe07f80,0xff07f8,0x1fe07f80,0xff03f8,0x3fc07f80,0xff03fc, + 0x3fc07f80,0xff01fc,0x3fc07f80,0xff01fc,0x7f807f80,0xff01fe,0x7f807f80,0xff00fe,0x7f807f80,0xff00fe,0x7f007f80,0xff00fe,0xff007f80,0xff007f,0xfe007f80,0xff007f, + 0xfe007f80,0xff003f,0xfe007f80,0xff003f,0xfc007f80,0xff003f,0xfc007f80,0xff001f,0xf8007f80,0xff001f,0xf8007f80,0xff001f,0xf8007f80,0xff000f,0xf0007f80,0xff000f, + 0xf0007f80,0xff0007,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000, + 0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000, + 0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x7f80,0xff0000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 78 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffe00,0x7fc000,0x1ffe00,0x7fc000,0x1ffe00,0x7fc000,0x3ffe00,0x7fc000,0x3ffe00,0x7fc000, + 0x7ffe00,0x7fc000,0x7ffe00,0x7fc000,0x7ffe00,0x7fc000,0xfffe00,0x7fc000,0xfffe00,0x7fc000,0x1fffe00,0x7fc000,0x1fffe00,0x7fc000,0x3fffe00,0x7fc000, + 0x3fdfe00,0x7fc000,0x7fdfe00,0x7fc000,0x7f9fe00,0x7fc000,0xff9fe00,0x7fc000,0xff9fe00,0x7fc000,0x1ff1fe00,0x7fc000,0x1ff1fe00,0x7fc000,0x3fe1fe00,0x7fc000, + 0x3fe1fe00,0x7fc000,0x3fc1fe00,0x7fc000,0x7fc1fe00,0x7fc000,0x7f81fe00,0x7fc000,0xff81fe00,0x7fc000,0xff01fe00,0x7fc000,0xff01fe00,0x7fc001,0xfe01fe00,0x7fc001, + 0xfe01fe00,0x7fc003,0xfe01fe00,0x7fc003,0xfc01fe00,0x7fc007,0xfc01fe00,0x7fc007,0xf801fe00,0x7fc00f,0xf801fe00,0x7fc00f,0xf001fe00,0x7fc00f,0xf001fe00,0x7fc01f, + 0xe001fe00,0x7fc01f,0xe001fe00,0x7fc03f,0xc001fe00,0x7fc03f,0xc001fe00,0x7fc07f,0x8001fe00,0x7fc07f,0x8001fe00,0x7fc0ff,0x8001fe00,0x7fc0ff,0x1fe00,0x7fc1ff, + 0x1fe00,0x7fc1ff,0x1fe00,0x7fc3fe,0x1fe00,0x7fc3fe,0x1fe00,0x7fc7fc,0x1fe00,0x7fc7fc,0x1fe00,0x7fc7f8,0x1fe00,0x7fcff8,0x1fe00,0x7fcff0, + 0x1fe00,0x7fdff0,0x1fe00,0x7fdfe0,0x1fe00,0x7fbfe0,0x1fe00,0x7fbfe0,0x1fe00,0x7fffc0,0x1fe00,0x7fffc0,0x1fe00,0x7fff80,0x1fe00,0x7fff80, + 0x1fe00,0x7fff00,0x1fe00,0x7fff00,0x1fe00,0x7ffe00,0x1fe00,0x7ffe00,0x1fe00,0x7ffc00,0x1fe00,0x7ffc00,0x1fe00,0x7ffc00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 79 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0xffe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 80 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7f,0xfffffe00,0x7ff,0xfffffe00,0x3fff,0xfffffe00,0xffff,0xfffffe00,0x1ffff, + 0xfffffe00,0x7ffff,0xfffffe00,0xfffff,0xfffffe00,0x1fffff,0x3fe00,0x3fffc0,0x3fe00,0x3ffe00,0x3fe00,0x7ff800,0x3fe00,0x7ff000,0x3fe00,0xffe000, + 0x3fe00,0xffc000,0x3fe00,0xffc000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff0000, + 0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0xffc000,0x3fe00,0xffc000,0x3fe00,0xffe000, + 0x3fe00,0x7fe000,0x3fe00,0x7ff000,0x3fe00,0x3ffc00,0x3fe00,0x3ffe00,0x3fe00,0x1fff80,0x3fe00,0xffff8,0xfffffe00,0x7ffff,0xfffffe00,0x3ffff, + 0xfffffe00,0x1ffff,0xfffffe00,0xffff,0xfffffe00,0x3fff,0xfffffe00,0xfff,0xfffffe00,0xff,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 81 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x3ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x1fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0xe0000000,0x7f,0xe0000000,0x7f,0xe0000000,0x7f,0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0x1ff,0x80000000,0x3ff,0x80000000,0x3ff, + 0x0,0x7ff,0x0,0x1fff,0x0,0x3ffe,0x0,0x201fffc,0x0,0x3fffffc,0x0,0x3fffff8,0x0,0x3fffff0,0x0,0x3ffffc0, + 0x0,0x3ffff80,0x0,0x3fffe00,0x0,0xfff000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 82 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0xff,0xfffffe00,0xfff,0xfffffe00,0x7fff,0xfffffe00,0x1ffff,0xfffffe00,0x7ffff, + 0xfffffe00,0xfffff,0xfffffe00,0x1fffff,0xfffffe00,0x3fffff,0x3fe00,0x3fff80,0x3fe00,0x7ffc00,0x3fe00,0xfff000,0x3fe00,0xffe000,0x3fe00,0xffc000, + 0x3fe00,0x1ffc000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000, + 0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0xffc000,0x3fe00,0xffe000,0x3fe00,0x7fe000,0x3fe00,0x7ff000, + 0x3fe00,0x3ffc00,0x3fe00,0x3fff00,0x3fe00,0x1ffffc,0xfffffe00,0xfffff,0xfffffe00,0x7ffff,0xfffffe00,0x1ffff,0xfffffe00,0xffff,0xfffffe00,0x3fff, + 0xfffffe00,0x7ff,0xfffffe00,0xff,0x8003fe00,0x1ff,0x8003fe00,0x3ff,0x3fe00,0x3ff,0x3fe00,0x7fe,0x3fe00,0xffe,0x3fe00,0xffc, + 0x3fe00,0x1ffc,0x3fe00,0x3ff8,0x3fe00,0x3ff0,0x3fe00,0x7ff0,0x3fe00,0xffe0,0x3fe00,0xffc0,0x3fe00,0x1ffc0,0x3fe00,0x3ff80, + 0x3fe00,0x3ff00,0x3fe00,0x7ff00,0x3fe00,0xffe00,0x3fe00,0xffe00,0x3fe00,0x1ffc00,0x3fe00,0x3ff800,0x3fe00,0x3ff800,0x3fe00,0x7ff000, + 0x3fe00,0xffe000,0x3fe00,0xffe000,0x3fe00,0x1ffc000,0x3fe00,0x3ff8000,0x3fe00,0x3ff8000,0x3fe00,0x7ff0000,0x3fe00,0xfff0000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 83 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfe000000,0x7f,0xffe00000,0x7ff,0xfffc0000,0x3fff,0xffff0000,0xffff,0xffffc000,0x1ffff,0xffffe000,0x3ffff, + 0xfffff000,0x7ffff,0xffff800,0xffff8,0xfff800,0x1fff80,0x3ffc00,0x1ffe00,0xffe00,0x3ff800,0x7fe00,0x3ff000,0x7fe00,0x7ff000,0x3ff00,0x7fe000, + 0x3ff00,0xffe000,0x3ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x3c000,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0, + 0x3ff00,0x0,0x7fe00,0x0,0xffe00,0x0,0x1ffe00,0x0,0x7ffc00,0x0,0x1fffc00,0x0,0x1ffff800,0x0,0xfffff000,0x1, + 0xffffe000,0xf,0xffffc000,0xff,0xffff0000,0x7ff,0xfffc0000,0x3fff,0xfff00000,0xffff,0xff800000,0x3ffff,0xfc000000,0x7ffff,0xc0000000,0xfffff, + 0x0,0x1ffffc,0x0,0x3fffe0,0x0,0x7fff00,0x0,0xfffc00,0x0,0xfff000,0x0,0x1ffe000,0x0,0x1ffc000,0x0,0x1ff8000, + 0x0,0x1ff8000,0x0,0x3ff0000,0x0,0x3ff0000,0x0,0x3ff0000,0x0,0x3ff0000,0x3e00,0x3ff0000,0x3fe0,0x3ff0000,0x7fe0,0x3ff0000, + 0x7fe0,0x1ff0000,0xffe0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ffc000,0x3ff80,0xffe000,0x7ff80,0xfff000,0x1fff00,0x7ff800,0x7ffe00,0x7ffe00, + 0x7fffe00,0x3fffe0,0xfffffc00,0x1fffff,0xfffff800,0xfffff,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0x7fff,0xfffc0000,0x1fff,0xffc00000,0x1ff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 84 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff, + 0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 85 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0xffe00,0x3ff800,0xffc00,0x1ff800,0x1ffc00,0x1ffc00,0x3ff800,0xfff00,0xfff800,0xfffc0, + 0x1ffff000,0x7fffe,0xfffff000,0x3ffff,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 86 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fe,0x3ff00000,0xffc,0x3ff00000,0xffc,0x1ff80000,0xffc,0x1ff80000,0x1ff8,0x1ff80000, + 0x1ff8,0xffc0000,0x3ff8,0xffc0000,0x3ff0,0xffe0000,0x3ff0,0x7fe0000,0x7fe0,0x7fe0000,0x7fe0,0x3ff0000,0x7fe0,0x3ff0000,0xffc0,0x3ff0000, + 0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ff80,0x1ff8000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x3fe000,0x7fe00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x1ff000,0xff800,0x1ff800,0x1ff800,0xff800,0x1ff800,0xffc00,0x1ff000,0xffc00, + 0x3ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x7fe00,0x7fe000,0x3fe00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xff8000,0x1ff80, + 0x1ff8000,0xff80,0x1ff8000,0xff80,0x1ff0000,0xffc0,0x3ff0000,0x7fc0,0x3fe0000,0x7fc0,0x3fe0000,0x3fe0,0x7fe0000,0x3fe0,0x7fc0000,0x3ff0, + 0x7fc0000,0x1ff0,0xffc0000,0x1ff0,0xff80000,0x1ff8,0xff80000,0xff8,0x1ff00000,0xff8,0x1ff00000,0x7fc,0x1ff00000,0x7fc,0x3fe00000,0x7fc, + 0x3fe00000,0x3fc,0x3fe00000,0x3fe,0x3fc00000,0x3fe,0x7fc00000,0x1fe,0x7f800000,0x1ff,0x7f800000,0xff,0xff800000,0xff,0xff000000,0xff, + 0xff000000,0x7f,0xff000000,0x7f,0xfe000000,0x7f,0xfe000000,0x3f,0xfc000000,0x3f,0xfc000000,0x1f,0xfc000000,0x1f,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 87 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe,0x3fe00000,0x3fe,0x3fe00000,0x3fe,0x3fe00000,0x7fe,0x3fe00000,0x7fe,0x3fe00000, + 0x7fe,0x3fe00000,0x7fc,0x3ff00000,0x7fc,0x3ff00000,0x7fc,0x3ff00000,0x7fc,0x1ff00000,0x7fc,0x1ff00000,0xffc,0x1ff00000,0xffc,0x1ff00000, + 0xff8,0x1ff00000,0xff8,0x1ff80000,0xff8,0xff80000,0xff8,0xff80000,0xff8,0xff80000,0x1ff8,0xff80000,0x1ff0,0xff80000,0x1ff0,0xff80000, + 0xf8001ff0,0xff8000f,0xf8001ff0,0x7fc001f,0xf8001ff0,0x7fc001f,0xfc001ff0,0x7fc001f,0xfc001ff0,0x7fc001f,0xfc003fe0,0x7fc003f,0xfc003fe0,0x7fc003f,0xfe003fe0,0x3fc003f, + 0xfe003fe0,0x3fc003f,0xfe003fe0,0x3fe007f,0x7e003fe0,0x3fe007f,0x7f003fc0,0x3fe007f,0x7f003fc0,0x3fe00fe,0x7f007fc0,0x1fe00fe,0x3f807fc0,0x1fe00fe,0x3f807fc0,0x1fe00fe, + 0x3f807fc0,0x1fe01fc,0x3f807f80,0x1ff01fc,0x3fc07f80,0x1ff01fc,0x1fc07f80,0x1ff01fc,0x1fc0ff80,0xff03fc,0x1fc0ff80,0xff03f8,0x1fe0ff80,0xff03f8,0xfe0ff80,0xff07f8, + 0xfe0ff00,0xff07f8,0xff0ff00,0xff07f0,0xff0ff00,0x7f87f0,0x7f0ff00,0x7f8ff0,0x7f0ff00,0x7f8fe0,0x7f0ff00,0x7f8fe0,0x3f9fe00,0x7f8fe0,0x3f9fe00,0x7f8fe0, + 0x3f9fe00,0x7f9fc0,0x3f9fe00,0x3f9fc0,0x1fdfe00,0x3f9fc0,0x1fdfe00,0x3f9fc0,0x1fdfe00,0x3fff80,0x1fdfc00,0x3fff80,0xfffc00,0x3fff80,0xfffc00,0x1fff80, + 0xfffc00,0x1fff00,0x7ffc00,0x1fff00,0x7ffc00,0x1fff00,0x7ff800,0x1ffe00,0x7ff800,0x1ffe00,0x3ff800,0x1ffe00,0x3ff800,0xffe00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 88 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0,0x7ff0000,0xffe0,0x3ff0000,0xffc0,0x1ff8000,0x1ff80,0x1ffc000,0x3ff80,0xffc000, + 0x3ff00,0x7fe000,0x7fe00,0x7ff000,0xffe00,0x3ff000,0xffc00,0x1ff800,0x1ff800,0x1ffc00,0x3ff800,0xffc00,0x3ff000,0x7fe00,0x7fe000,0x7ff00, + 0xffc000,0x3ff00,0xffc000,0x1ff80,0x1ff8000,0x1ff80,0x3ff0000,0xffc0,0x3ff0000,0x7fe0,0x7fe0000,0x7fe0,0x7fc0000,0x3ff0,0xffc0000,0x1ff8, + 0x1ff80000,0xff8,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x7fe00000,0x3fe,0x7fc00000,0x3ff,0xffc00000,0x1ff,0xff800000,0xff,0xff000000,0xff, + 0xff000000,0x7f,0xfe000000,0x3f,0xfc000000,0x3f,0xfc000000,0x1f,0xfc000000,0x1f,0xfe000000,0x3f,0xfe000000,0x7f,0xff000000,0x7f, + 0xff800000,0xff,0xff800000,0x1ff,0xffc00000,0x1ff,0x7fe00000,0x3ff,0x3fe00000,0x7fe,0x3ff00000,0xffc,0x1ff80000,0xffc,0xff80000,0x1ff8, + 0xffc0000,0x3ff0,0x7fe0000,0x3ff0,0x3fe0000,0x7fe0,0x3ff0000,0xffc0,0x1ff8000,0xffc0,0xffc000,0x1ff80,0xffc000,0x3ff00,0x7fe000,0x3ff00, + 0x7ff000,0x7fe00,0x3ff000,0xffc00,0x1ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff800,0x7fe00,0x3ff000,0x7ff00,0x7fe000,0x3ff00,0xffe000, + 0x1ff80,0xffc000,0x1ffc0,0x1ff8000,0xffc0,0x3ff8000,0x7fe0,0x3ff0000,0x7ff0,0x7fe0000,0x3ff0,0xffe0000,0x1ff8,0xffc0000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 89 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff8,0x1ffc0000,0x3ff8,0xffc0000,0x3ff0,0x7fe0000,0x7fe0,0x7ff0000,0x7fe0,0x3ff0000, + 0xffc0,0x3ff8000,0x1ffc0,0x1ff8000,0x1ff80,0xffc000,0x3ff00,0xffe000,0x7ff00,0x7fe000,0x7fe00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x1ff800, + 0x1ff800,0xffc00,0x3ff000,0xffc00,0x3ff000,0x7fe00,0x7fe000,0x7fe00,0x7fe000,0x3ff00,0xffc000,0x1ff80,0x1ff8000,0x1ff80,0x1ff8000,0xffc0, + 0x3ff0000,0x7fc0,0x7fe0000,0x7fe0,0x7fe0000,0x3ff0,0xffc0000,0x3ff0,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x3ff00000,0xffc,0x3ff00000,0x7fe, + 0x7fe00000,0x3fe,0x7fc00000,0x3ff,0xffc00000,0x1ff,0xff800000,0xff,0xff000000,0xff,0xff000000,0x7f,0xfe000000,0x7f,0xfe000000,0x3f, + 0xfc000000,0x1f,0xf8000000,0x1f,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 90 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffffff00,0x1ffffff,0xffffff00,0x1ffffff,0xffffff00,0x1ffffff,0xffffff00,0x1ffffff,0xffffff00,0x1ffffff, + 0xffffff00,0x1ffffff,0xffffff00,0x1ffffff,0xffffff00,0xffffff,0x0,0xffe000,0x0,0x7fe000,0x0,0x3ff000,0x0,0x1ff800,0x0,0x1ffc00, + 0x0,0xffe00,0x0,0x7fe00,0x0,0x3ff00,0x0,0x1ff80,0x0,0x1ffc0,0x0,0xffc0,0x0,0x7fe0,0x0,0x3ff0, + 0x0,0x3ff8,0x0,0x1ffc,0x0,0xffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0x3ff,0xc0000000,0x1ff,0xc0000000,0xff, + 0xe0000000,0x7f,0xf0000000,0x7f,0xf8000000,0x3f,0xf8000000,0x1f,0xfc000000,0xf,0xfe000000,0x7,0xff000000,0x7,0xff800000,0x3, + 0xff800000,0x1,0xffc00000,0x0,0xffe00000,0x0,0x7ff00000,0x0,0x3ff00000,0x0,0x1ff80000,0x0,0xffc0000,0x0,0xffe0000,0x0, + 0x7ff0000,0x0,0x3ff0000,0x0,0x1ff8000,0x0,0x1ffc000,0x0,0xffe000,0x0,0x7fe000,0x0,0x3ff000,0x0,0x3ff800,0x0, + 0x1ffc00,0x0,0xffe00,0x0,0x7fe00,0x0,0x3ff00,0x0,0x3ff80,0x0,0x1ffc0,0x0,0xffc0,0x0,0x7fe0,0x0, + 0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0xfffffff0,0x7ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 91 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x1ffff,0xffe00000,0x1ffff,0xffe00000,0x1ffff,0xffe00000,0x1ffff, + 0xffe00000,0x1ffff,0xffe00000,0x1ffff,0xffe00000,0x1ffff,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0xffe00000,0x1ffff,0xffe00000,0x1ffff, + 0xffe00000,0x1ffff,0xffe00000,0x1ffff,0xffe00000,0x1ffff,0xffe00000,0x1ffff,0xffe00000,0x1ffff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 92 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff80,0x0,0xff80,0x0,0x1ff00,0x0,0x1ff00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x7fc00,0x0,0x7fc00,0x0,0xff800,0x0,0xff800,0x0,0x1ff000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x7fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0xff8000,0x0,0x1ff0000,0x0,0x1ff0000,0x0,0x3fe0000,0x0, + 0x3fe0000,0x0,0x7fc0000,0x0,0xffc0000,0x0,0xff80000,0x0,0x1ff00000,0x0,0x1ff00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x7fc00000,0x0,0x7fc00000,0x0,0xff800000,0x0,0xff800000,0x0,0xff000000,0x1,0xff000000,0x3,0xfe000000,0x3,0xfc000000,0x7, + 0xfc000000,0x7,0xf8000000,0xf,0xf8000000,0xf,0xf0000000,0x1f,0xf0000000,0x1f,0xe0000000,0x3f,0xe0000000,0x7f,0xc0000000,0x7f, + 0xc0000000,0xff,0x80000000,0xff,0x0,0x1ff,0x0,0x1ff,0x0,0x3fe,0x0,0x3fe,0x0,0x7fc,0x0,0x7fc, + 0x0,0xff8,0x0,0x1ff8,0x0,0x1ff0,0x0,0x3ff0,0x0,0x3fe0,0x0,0x7fe0,0x0,0x7fc0,0x0,0xff80, + 0x0,0xff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3fe00,0x0,0x7fe00,0x0,0x7fc00,0x0,0xffc00,0x0,0xff800, + 0x0,0x1ff800,0x0,0x1ff000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x7fc000,0x0,0x7fc000,0x0,0xff8000,0x0,0x1ff8000, + 0x0,0x1ff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 93 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffc000,0x3ff,0xffffc000,0x3ff,0xffffc000,0x3ff,0xffffc000,0x3ff, + 0xffffc000,0x3ff,0xffffc000,0x3ff,0xffffc000,0x3ff,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe, + 0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0x0,0x3fe,0xffffc000,0x3ff,0xffffc000,0x3ff, + 0xffffc000,0x3ff,0xffffc000,0x3ff,0xffffc000,0x3ff,0xffffc000,0x3ff,0xffffc000,0x3ff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 94 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1f,0xfc000000,0x1f,0xfe000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f, + 0x7f000000,0x7f,0x7f000000,0x7f,0x7f800000,0xff,0x3f800000,0xfe,0x3fc00000,0x1fe,0x1fc00000,0x1fc,0x1fc00000,0x3fc,0x1fe00000,0x3fc, + 0xfe00000,0x3f8,0xff00000,0x7f8,0x7f00000,0x7f0,0x7f00000,0xff0,0x7f80000,0xfe0,0x3f80000,0x1fe0,0x3fc0000,0x1fe0,0x1fc0000,0x1fc0, + 0x1fe0000,0x3fc0,0x1fe0000,0x3f80,0xfe0000,0x7f80,0xff0000,0x7f80,0x7f0000,0x7f00,0x7f8000,0xff00,0x7f8000,0xfe00,0x3f8000,0x1fe00, + 0x3fc000,0x1fe00,0x1fc000,0x3fc00,0x1fe000,0x3fc00,0xfe000,0x3f800,0xff000,0x7f800,0xff000,0x7f000,0x7f000,0xff000,0x7f800,0xff000, + 0x3f800,0xfe000,0x3fc00,0x1fe000,0x3fc00,0x1fc000,0x1fc00,0x3fc000,0x1fe00,0x3fc000,0xfe00,0x7f8000,0xff00,0x7f8000,0xff00,0x7f0000, + 0x7f80,0xff0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 95 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x3fffffff,0xffffffff,0x3fffffff, + 0xffffffff,0x3fffffff,0xffffffff,0x3fffffff,0xffffffff,0x3fffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 96 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe00000,0x0,0xffe00000,0x0,0xffc00000,0x1, + 0xff800000,0x3,0xff000000,0x7,0xfc000000,0xf,0xf8000000,0x1f,0xf0000000,0x3f,0xc0000000,0x7f,0x80000000,0xff,0x0,0x1ff, + 0x0,0x3fc,0x0,0x3f8,0x0,0x3f0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 97 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 98 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x38, + 0xe007fc00,0x7ff,0xfc07fc00,0x1fff,0xfe07fc00,0x7fff,0xff87fc00,0xffff,0xffc7fc00,0x1ffff,0xffc7fc00,0x3ffff,0xffe7fc00,0x7ffff,0xff7fc00,0x7ff80, + 0x3f7fc00,0xfff00,0x1fffc00,0x1ffc00,0xfffc00,0x1ffc00,0x7ffc00,0x1ff800,0x3ffc00,0x3ff000,0x3ffc00,0x3ff000,0x1ffc00,0x3fe000,0x1ffc00,0x7fe000, + 0x1ffc00,0x7fe000,0xffc00,0x7fe000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000, + 0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000, + 0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fe000,0xffc00,0x7fe000, + 0x1ffc00,0x7fe000,0x1ffc00,0x3fe000,0x1ffc00,0x3ff000,0x3ffc00,0x3ff000,0x3ffc00,0x1ff800,0x7ffc00,0x1ff800,0xfffc00,0xffc00,0x1fffc00,0xffe00, + 0x7f7fc00,0x7ff80,0x3ff7fc00,0x7fff0,0xffe7fc00,0x3ffff,0xffc7fc00,0x1ffff,0xff87fc00,0xffff,0xff07fc00,0x3fff,0xfc07fc00,0x1fff,0xe0000000,0x3ff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 99 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffc0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x3ffff,0xffffc000,0x7ffff,0x7ffe000,0x7ffc0, + 0xfff000,0xfff00,0x7ff000,0x1ffc00,0x3ff800,0x1ff800,0x1ffc00,0x3ff800,0xffc00,0x3ff000,0x7fc00,0x7ff000,0x7fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0xe000,0x3ff00,0x0,0x3ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x7fe00,0x7fe000,0x7fc00,0x7ff000,0xffc00,0x3ff000,0x1ffc00,0x3ff800,0x3ff800,0x1ff800,0x7ff000,0x1ffe00,0xfff000,0xfff00, + 0x3ffe000,0x7ffc0,0xffffc000,0x3ffff,0xffff8000,0x1ffff,0xffff0000,0xffff,0xfffe0000,0x7fff,0xfff80000,0x1fff,0xffe00000,0x7ff,0xff000000,0xff, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 100 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000, + 0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000, + 0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000, + 0xffe00000,0x1ff003,0xfff80000,0x1ff01f,0xfffe0000,0x1ff07f,0xffff0000,0x1ff0ff,0xffff8000,0x1ff1ff,0xffffc000,0x1ff3ff,0xffffe000,0x1ff7ff,0x1fff000,0x1ff7f0, + 0x7ff000,0x1fffc0,0x3ff800,0x1fff80,0x1ff800,0x1fff00,0xffc00,0x1ffe00,0xffc00,0x1ffe00,0x7fe00,0x1ffc00,0x7fe00,0x1ffc00,0x3fe00,0x1ff800, + 0x3fe00,0x1ff800,0x3ff00,0x1ff800,0x3ff00,0x1ff000,0x3ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000, + 0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000, + 0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x1ff00,0x1ff000,0x3ff00,0x1ff000,0x3ff00,0x1ff800,0x3ff00,0x1ff800,0x3ff00,0x1ff800, + 0x3fe00,0x1ff800,0x7fe00,0x1ffc00,0x7fe00,0x1ffc00,0x7fc00,0x1ffe00,0xffc00,0x1ffe00,0x1ffc00,0x1fff00,0x1ff800,0x1fff80,0x7ff800,0x1fefc0, + 0xfff000,0x1fe7f0,0x7fff000,0x3fe7fe,0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffff8000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffc0000,0x3fe01f,0xfff00000,0x7, + 0x7f800000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 101 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x3fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x3ffe000,0x3ffc0, + 0xfff000,0x7ff00,0x3ff000,0xffe00,0x1ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x1ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000, + 0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xff8000,0xffffff80,0xffffff, + 0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x0, + 0x7fe00,0x0,0x7fe00,0x4000,0xffc00,0x7c000,0xffc00,0x7fe000,0x1ff800,0x3fe000,0x3ff800,0x3ff000,0x7ff000,0x1ff800,0xfff000,0x1ffe00, + 0x3ffe000,0xfff80,0x7fffc000,0x7fff8,0xffff8000,0x3ffff,0xffff0000,0x1ffff,0xfffc0000,0x7fff,0xfff80000,0x3fff,0xffe00000,0x7ff,0xff000000,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 102 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fff0,0x80000000,0xffffff,0xe0000000,0xffffff,0xf8000000,0xffffff, + 0xfc000000,0xffffff,0xfe000000,0xffffff,0xff000000,0xffffff,0xff800000,0xffffff,0xff800000,0xf,0xffc00000,0x3,0xffc00000,0x1,0xffc00000,0x0, + 0x7fc00000,0x0,0x7fe00000,0x0,0x7fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0, + 0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x3fe00000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 103 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x3,0xfff80000,0x3fe00f,0xfffe0000,0x3fe03f,0xffff0000,0x3fe0ff,0xffffc000,0x3fe1ff,0xffffe000,0x3fe3ff,0xffffe000,0x3fe3ff,0x1fff000,0x3fe7f8, + 0x7ff000,0x3fefe0,0x3ff800,0x3fefc0,0x1ff800,0x3fff80,0xffc00,0x3fff00,0xffc00,0x3ffe00,0x7fc00,0x3ffc00,0x7fe00,0x3ffc00,0x7fe00,0x3ff800, + 0x3fe00,0x3ff800,0x3fe00,0x3ff800,0x3ff00,0x3ff000,0x3ff00,0x3ff000,0x3ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000, + 0x1ff00,0x3ff000,0x1ff00,0x3fe000,0x1ff00,0x3fe000,0x1ff00,0x3fe000,0x1ff00,0x3fe000,0x1ff00,0x3fe000,0x1ff00,0x3ff000,0x1ff00,0x3ff000, + 0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x3ff00,0x3ff000,0x3ff00,0x3ff000,0x3ff00,0x3ff000,0x3fe00,0x3ff800,0x3fe00,0x3ff800,0x7fe00,0x3ffc00, + 0x7fe00,0x3ffc00,0x7fe00,0x3ffe00,0xffc00,0x3ffe00,0xffc00,0x3fff00,0x1ffc00,0x3fef80,0x3ff800,0x3fefc0,0x7ff800,0x3fe7f0,0x3fff000,0x3fe7fc, + 0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffffc000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffe0000,0x3fe01f,0xfff80000,0x3fe007,0x7f800000,0x3fe000,0x0,0x3fe000, + 0x0,0x3ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x1ff000,0x180000,0x1ff800,0x1ff800,0xff800, + 0x3ff000,0xff800,0x3ff000,0xffc00,0x7ff000,0x7fe00,0xffe000,0x7ff00,0x1ffe000,0x3ff80,0x7ffc000,0x3fff0,0xffff8000,0x1ffff,0xffff0000,0xffff, + 0xfffe0000,0x7fff,0xfffc0000,0x3fff,0xfff00000,0xfff,0xffc00000,0x3ff,0xfc000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 104 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0xe007fc00,0x7ff,0xf807fc00,0x1fff,0xfe07fc00,0x7fff,0xff07fc00,0xffff,0xff87fc00,0x1ffff,0xffc7fc00,0x3ffff,0xffe7fc00,0x7ffff,0x1ff7fc00,0x7ff80, + 0x3f7fc00,0xfff00,0x1fffc00,0xffc00,0xfffc00,0x1ffc00,0x7ffc00,0x1ff800,0x3ffc00,0x1ff800,0x1ffc00,0x1ff000,0x1ffc00,0x1ff000,0x1ffc00,0x3ff000, + 0xffc00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x3ff000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 105 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x3f, + 0xf0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x3f,0xf0000000,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 106 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe,0x0,0x7fe,0x0,0x7fe,0x0,0x7fe, + 0x0,0x7fe,0x0,0x7fe,0x0,0x7fe,0x0,0x7fe,0x0,0x7fe,0x0,0x7fe,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffe000,0x7ff,0xffffe000,0x7ff,0xffffe000,0x7ff,0xffffe000,0x7ff,0xffffe000,0x7ff,0xffffe000,0x7ff,0xffffe000,0x7ff, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc, + 0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fc,0x0,0x7fe,0x0,0x7fe,0x0,0x3fe,0x0,0x3ff, + 0x0,0x3ff,0x80000000,0x1ff,0xc0000000,0x1ff,0xf0000000,0xff,0xfc0003c0,0xff,0xffefffc0,0x7f,0xffffffc0,0x3f,0xffffffc0,0x1f, + 0xffffffc0,0xf,0xffffffc0,0x7,0xffffffc0,0x1,0x7fffff00,0x0,0x7ffc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 107 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0, + 0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0, + 0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0, + 0x3ff000,0x0,0x3ff000,0xffe000,0x3ff000,0x7ff000,0x3ff000,0x3ff800,0x3ff000,0x1ffc00,0x3ff000,0xffe00,0x3ff000,0x7ff00,0x3ff000,0x3ff80, + 0x3ff000,0x1ff80,0x3ff000,0xffc0,0x3ff000,0x7fe0,0x3ff000,0x3ff0,0x3ff000,0x1ff8,0x3ff000,0xffc,0x3ff000,0x7fe,0x3ff000,0x3ff, + 0x803ff000,0x1ff,0xc03ff000,0xff,0xc03ff000,0xff,0xe03ff000,0x7f,0xf03ff000,0x3f,0xf83ff000,0x1f,0xfc3ff000,0xf,0xfe3ff000,0x7, + 0xff3ff000,0x3,0xffbff000,0x7,0xfffff000,0xf,0xfffff000,0x1f,0xfffff000,0x1f,0xfffff000,0x3f,0xeffff000,0x7f,0xe7fff000,0xff, + 0xc1fff000,0xff,0x80fff000,0x1ff,0x3ff000,0x3ff,0x3ff000,0x7ff,0x3ff000,0x7fe,0x3ff000,0xffc,0x3ff000,0x1ffc,0x3ff000,0x3ff8, + 0x3ff000,0x3ff0,0x3ff000,0x7fe0,0x3ff000,0xffe0,0x3ff000,0x1ffc0,0x3ff000,0x1ff80,0x3ff000,0x3ff00,0x3ff000,0x7ff00,0x3ff000,0xffe00, + 0x3ff000,0xffc00,0x3ff000,0x1ff800,0x3ff000,0x3ff800,0x3ff000,0x7ff000,0x3ff000,0x7fe000,0x3ff000,0xffe000,0x3ff000,0x1ffc000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 108 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffc000,0x3f,0xffffc000,0x3f,0xffffc000,0x3f,0xffffc000,0x3f, + 0xffffc000,0x3f,0xffffc000,0x3f,0xffffc000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xffffff80,0x1ffffff,0xffffff80,0x1ffffff,0xffffff80,0x1ffffff,0xffffff80,0x1ffffff,0xffffff80,0x1ffffff,0xffffff80,0x1ffffff,0xffffff80,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 109 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1ff00000,0x7fc00,0x7ffc1fc0,0x1fff00,0xfffe1fc0,0x3fff80,0xffff1fc0,0x7fffc0,0xffff1fc0,0x7fffe1,0xffff9fc0,0xfffff1,0xffff9fc0,0xfffff3,0xfe07dfc0,0xffc0fb, + 0xfc03dfc0,0x1ff807b,0xfc01ffc0,0x1ff007f,0xfc01ffc0,0x1ff003f,0xf800ffc0,0x1ff003f,0xf800ffc0,0x1ff001f,0xf800ffc0,0x1fe001f,0xf8007fc0,0x1fe001f,0xf8007fc0,0x1fe001f, + 0xf8007fc0,0x1fe000f,0xf8007fc0,0x3fe000f,0xf8007fc0,0x3fe000f,0xf8007fc0,0x3fe000f,0xf8007fc0,0x3fe000f,0xf8007fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f, + 0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f, + 0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f, + 0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f, + 0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0xf8003fc0,0x3fe000f,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 110 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc0000000,0x7ff,0xf803fc00,0x3fff,0xfe03fc00,0x7fff,0xff03fc00,0x1ffff,0xff83fc00,0x3ffff,0xffc3fc00,0x3ffff,0xffe7fc00,0x7ffff,0x1ff7fc00,0xfff80, + 0x3f7fc00,0xfff00,0x1fffc00,0xffc00,0xfffc00,0x1ffc00,0x7ffc00,0x1ff800,0x3ffc00,0x1ff800,0x1ffc00,0x1ff000,0x1ffc00,0x1ff000,0x1ffc00,0x3ff000, + 0xffc00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x3ff000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 111 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x1ffe000,0x7ffc0, + 0xfff000,0xfff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000, + 0x3ff00,0x7fe000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ffc00,0x1ff800,0x1ff800,0xffc00,0x3ff000,0xffe00,0xfff000,0x7ff00, + 0x1ffe000,0x3ffc0,0xfffc000,0x3fffc,0xffff8000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 112 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18, + 0xe0000000,0x7ff,0xfc07fc00,0x1fff,0xfe07fc00,0x7fff,0xff07fc00,0xffff,0xff87fc00,0x1ffff,0xffc7fc00,0x3ffff,0xffe7fc00,0x7ffff,0xff7fc00,0xfff80, + 0x3f7fc00,0xfff00,0x1fffc00,0x1ffc00,0xfffc00,0x1ff800,0x7ffc00,0x3ff800,0x3ffc00,0x3ff000,0x3ffc00,0x3ff000,0x1ffc00,0x3fe000,0x1ffc00,0x7fe000, + 0x1ffc00,0x7fe000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000, + 0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000, + 0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fe000,0xffc00,0x7fe000, + 0x1ffc00,0x7fe000,0x1ffc00,0x3fe000,0x1ffc00,0x3ff000,0x3ffc00,0x3ff000,0x3ffc00,0x1ff800,0x7ffc00,0x1ff800,0xfffc00,0xffc00,0x1fffc00,0xffe00, + 0x7f7fc00,0x7ff80,0x3ff7fc00,0x7fff0,0xffe7fc00,0x3ffff,0xffc7fc00,0x1ffff,0xff87fc00,0xffff,0xff07fc00,0x7fff,0xfc07fc00,0x1fff,0xe007fc00,0x7ff, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 113 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffe00000,0x3fe003,0xfff80000,0x3fe01f,0xfffe0000,0x3fe07f,0xffff0000,0x3fe0ff,0xffffc000,0x3fe1ff,0xffffc000,0x3ff3ff,0xffffe000,0x3ff7ff,0x1fff000,0x3ff7f0, + 0x7ff000,0x3fffc0,0x3ff800,0x3fff80,0x1ff800,0x3fff00,0xffc00,0x3ffe00,0xffc00,0x3ffe00,0x7fe00,0x3ffc00,0x7fe00,0x3ffc00,0x3fe00,0x3ff800, + 0x3fe00,0x3ff800,0x3ff00,0x3ff800,0x3ff00,0x3ff000,0x3ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000, + 0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000, + 0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x1ff00,0x3ff000,0x3ff00,0x3ff000,0x3ff00,0x3ff800,0x3ff00,0x3ff800,0x3ff00,0x3ff800, + 0x3fe00,0x3ffc00,0x7fe00,0x3ffc00,0x7fe00,0x3ffc00,0xffc00,0x3ffe00,0xffc00,0x3ffe00,0x1ffc00,0x3fff00,0x1ff800,0x3fef80,0x7ff800,0x3fffc0, + 0xfff000,0x3ff7f0,0x7fff000,0x3ff3fe,0xffffe000,0x3ff3ff,0xffffc000,0x3ff1ff,0xffff8000,0x3ff0ff,0xffff0000,0x3ff07f,0xfffc0000,0x3ff01f,0xfff00000,0x3ff007, + 0x7f000000,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000, + 0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000, + 0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x3ff000,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 114 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3ffff0,0x3fe000,0x3ffffc,0x3fe000,0x3fffff,0x803fe000,0x3fffff,0xc03fc000,0x3fffff,0xe07fc000,0x3fffff,0xf07fc000,0x3fffff,0xf87fc000,0x3fffff, + 0xf87fc000,0x38003f,0xfc7f8000,0x7,0xfcff8000,0x3,0xfeff8000,0x0,0x7eff8000,0x0,0x3fff8000,0x0,0x1fff8000,0x0,0x1fff8000,0x0, + 0xfff8000,0x0,0x7ff8000,0x0,0x7ff8000,0x0,0x7ff8000,0x0,0x3ff8000,0x0,0x3ff8000,0x0,0x3ff8000,0x0,0x1ff8000,0x0, + 0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0, + 0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0, + 0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0, + 0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x1ff8000,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 115 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0xffffc000,0x3ffff,0x1ffe000,0x7ff80, + 0x7fe000,0x7fe00,0x1ff000,0xff800,0x1ff000,0xff800,0xff000,0x1ff000,0xff800,0x1ff000,0xff800,0xe000,0xff800,0x0,0xff800,0x0, + 0xff800,0x0,0x1ff800,0x0,0x1ff800,0x0,0x3ff000,0x0,0xfff000,0x0,0x7ffe000,0x0,0x7fffe000,0x0,0xffffc000,0x3, + 0xffff8000,0x3f,0xffff0000,0x3ff,0xfffe0000,0xfff,0xfff80000,0x3fff,0xffc00000,0xffff,0xfe000000,0x1ffff,0xf0000000,0x7ffff,0x0,0x7ffff, + 0x0,0xffff0,0x0,0x1fff80,0x0,0x1ffe00,0x0,0x3ff800,0x0,0x3ff000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fc000, + 0x0,0x3fc000,0x10000,0x3fc000,0x1f800,0x3fc000,0x3fe00,0x3fe000,0x3fe00,0x3fe000,0x7fc00,0x1ff000,0xffc00,0x1ff000,0x1ff800,0xffc00, + 0x7ff800,0xfff00,0xffff000,0x7fff0,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff8000,0xffff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0x1ff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 116 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0,0xfe00000,0x0, + 0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff00000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xfffffc00,0x3ffff,0xfffffc00,0x3ffff,0xfffffc00,0x3ffff,0xfffffc00,0x3ffff,0xfffffc00,0x3ffff,0xfffffc00,0x3ffff,0xfffffc00,0x3ffff, + 0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0, + 0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0xff80000,0x0,0x1ff80000,0x0,0x3ff80000,0x0,0x7ff80000,0xc0000, + 0xfff00000,0xffc03,0xfff00000,0xfffff,0xffe00000,0xfffff,0xffc00000,0xfffff,0xffc00000,0xfffff,0xff000000,0xfffff,0xfc000000,0x3ffff,0xf0000000,0x1fff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 117 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000, + 0x7fc00,0x3ff800,0xffc00,0x3ff800,0xffc00,0x3ffc00,0xffc00,0x3ffc00,0xff800,0x3ffe00,0x1ff800,0x3fff00,0x3ff800,0x3fff80,0x7ff800,0x3fefc0, + 0xfff000,0x3fe7f0,0xfffff000,0x3fe7ff,0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffff8000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffc0000,0x3fe01f,0xfff00000,0x3, + 0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 118 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7ff0,0x7fe0000,0x7fe0,0x7ff0000,0x7fe0,0x3ff0000,0xffc0,0x3ff0000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ff80,0x1ffc000, + 0x1ff80,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x1ff800, + 0xffc00,0x1ff800,0x1ff800,0xff800,0x1ff800,0xffc00,0x1ff000,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000,0x3fe00,0x7fe000,0x3ff00, + 0x7fc000,0x3ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0x1ff8000,0xff80,0x1ff8000,0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0, + 0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fc0000,0x1ff0,0xffc0000,0x1ff8,0xffc0000,0x1ff8,0xff80000,0xff8,0x1ff80000,0xffc,0x1ff00000,0x7fc, + 0x1ff00000,0x7fc,0x1ff00000,0x7fe,0x3fe00000,0x3fe,0x3fe00000,0x3fe,0x3fc00000,0x1fe,0x7fc00000,0x1ff,0x7fc00000,0x1ff,0x7f800000,0xff, + 0xff800000,0xff,0xff000000,0x7f,0xff000000,0x7f,0xff000000,0x3f,0xfe000000,0x3f,0xfe000000,0x3f,0xfc000000,0x1f,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 119 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc,0x3fe00000,0x7fc,0x3fe00000,0x7fc,0x1ff00000,0x7fc,0x1ff00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0x1ff00000, + 0xff8,0xff00000,0xff8,0xff80000,0xff8,0xff80000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0,0x7f80000,0x1ff0,0x7fc0000, + 0xf8001ff0,0x7fc001f,0xfc001ff0,0x7fc001f,0xfc001fe0,0x7fc003f,0xfc003fe0,0x7fc003f,0xfe003fe0,0x3fc003f,0xfe003fe0,0x3fe003f,0x7e003fe0,0x3fe007f,0x7f003fe0,0x3fe007f, + 0x7f003fc0,0x3fe007e,0x7f003fc0,0x1fe00fe,0x3f807fc0,0x1fe00fe,0x3f807fc0,0x1ff00fe,0x3f807fc0,0x1ff01fc,0x1fc07fc0,0x1ff01fc,0x1fc07f80,0x1ff01fc,0x1fc07f80,0xff01f8, + 0xfe07f80,0xff03f8,0xfe0ff80,0xff83f8,0xfe0ff80,0xff83f8,0xff0ff80,0xff87f0,0x7f0ff00,0xff87f0,0x7f0ff00,0x7f87f0,0x7f0ff00,0x7f8fe0,0x3f8ff00,0x7f8fe0, + 0x3f8ff00,0x7f8fe0,0x3f9ff00,0x7fcfc0,0x1fdfe00,0x3fdfc0,0x1fdfe00,0x3fdfc0,0x1fdfe00,0x3fdf80,0xfdfe00,0x3fdf80,0xfffe00,0x3fff80,0xfffc00,0x3fff80, + 0x7ffc00,0x1fff00,0x7ffc00,0x1fff00,0x7ffc00,0x1fff00,0x3ffc00,0x1ffe00,0x3ffc00,0x1ffe00,0x3ff800,0x1ffe00,0x1ff800,0xffc00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 120 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff80,0xffc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x7fe00,0x3ff000,0xffc00,0x1ff800,0x1ff800,0xffc00,0x1ff800,0xffc00, + 0x3ff000,0x7fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff80,0x1ff8000,0xffc0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0, + 0xffc0000,0x1ff8,0xff80000,0xff8,0x1ff00000,0x7fc,0x3ff00000,0x7fe,0x7fe00000,0x3fe,0x7fc00000,0x1ff,0xff800000,0xff,0xff000000,0x7f, + 0xff000000,0x7f,0xfe000000,0x3f,0xfc000000,0x1f,0xfc000000,0x1f,0xfe000000,0x3f,0xfe000000,0x3f,0xff000000,0x7f,0xff800000,0xff, + 0xffc00000,0x1ff,0x7fc00000,0x1ff,0x3fe00000,0x3fe,0x3ff00000,0x7fe,0x1ff80000,0xffc,0xff80000,0xff8,0x7fc0000,0x1ff0,0x7fe0000,0x3ff0, + 0x3ff0000,0x7fe0,0x1ff0000,0x7fc0,0x1ff8000,0xffc0,0xffc000,0x1ff80,0x7fe000,0x3ff00,0x3fe000,0x7fe00,0x3ff000,0x7fe00,0x1ff800,0xffc00, + 0xff800,0x1ff800,0x7fc00,0x3ff800,0x7fe00,0x3ff000,0x3ff00,0x7fe000,0x1ff00,0xffc000,0x1ff80,0x1ffc000,0xffc0,0x1ff8000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 121 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3ff0,0x7fe0000,0x3fe0,0x7fe0000,0x7fe0,0x3fe0000,0x7fc0,0x3ff0000,0xffc0,0x1ff0000,0xffc0,0x1ff8000,0xff80,0x1ff8000, + 0x1ff80,0xff8000,0x1ff00,0xffc000,0x3ff00,0x7fc000,0x3fe00,0x7fc000,0x7fe00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0xffc00,0x1ff000, + 0xff800,0x1ff000,0x1ff800,0xff800,0x1ff000,0xff800,0x1ff000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x7fe000,0x3fe00,0x7fc000,0x3fe00, + 0x7fc000,0x1ff00,0xff8000,0x1ff00,0xff8000,0x1ff00,0x1ff0000,0xff80,0x1ff0000,0xff80,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x3fe0000,0x3fc0, + 0x7fc0000,0x3fe0,0x7fc0000,0x3fe0,0xff80000,0x1ff0,0xff80000,0x1ff0,0xff00000,0xff0,0x1ff00000,0xff8,0x1fe00000,0x7f8,0x3fe00000,0x7fc, + 0x3fe00000,0x7fc,0x3fc00000,0x3fc,0x7fc00000,0x3fe,0x7f800000,0x1fe,0x7f800000,0x1fe,0xff000000,0x1ff,0xff000000,0xff,0xff000000,0xff, + 0xfe000000,0x7f,0xfe000000,0x7f,0xfc000000,0x3f,0xfc000000,0x3f,0xf8000000,0x3f,0xf8000000,0x1f,0xf0000000,0x1f,0xf0000000,0xf, + 0xf8000000,0xf,0xf8000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x3,0xff000000,0x1,0xff000000,0x1, + 0xff800000,0x0,0xffc00000,0x0,0x7fe00000,0x0,0x7ff00000,0x0,0x3ff80000,0x0,0x1fff0000,0x0,0xffffe00,0x0,0xffffe00,0x0, + 0x7fffe00,0x0,0x3fffe00,0x0,0xfffe00,0x0,0x3ffe00,0x0,0xffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 122 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xfffffc00,0x1fffff,0xfffffc00,0x1fffff,0xfffffc00,0x1fffff,0xfffffc00,0x1fffff,0xfffffc00,0x1fffff,0xfffffc00,0x1fffff,0xfffffc00,0x1fffff, + 0x0,0xffc00,0x0,0x7fe00,0x0,0x3ff00,0x0,0x1ff80,0x0,0x1ffc0,0x0,0xffc0,0x0,0x7fe0,0x0,0x3ff0, + 0x0,0x1ff8,0x0,0xffc,0x0,0xffe,0x0,0x7fe,0x0,0x3ff,0x80000000,0x1ff,0xc0000000,0xff,0xe0000000,0x7f, + 0xf0000000,0x3f,0xf8000000,0x3f,0xf8000000,0x1f,0xfc000000,0xf,0xfe000000,0x7,0xff000000,0x3,0xff800000,0x1,0xffc00000,0x1, + 0xffc00000,0x0,0x7fe00000,0x0,0x3ff00000,0x0,0x1ff80000,0x0,0xffc0000,0x0,0x7fe0000,0x0,0x7ff0000,0x0,0x3ff0000,0x0, + 0x1ff8000,0x0,0xffc000,0x0,0x7fe000,0x0,0x3ff000,0x0,0x3ff800,0x0,0x1ff800,0x0,0xffc00,0x0,0x7fe00,0x0, + 0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 123 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe0,0x0,0x3ffffc,0x0,0x3fffff,0x80000000,0x3fffff, + 0xc0000000,0x3fffff,0xe0000000,0x3fffff,0xf0000000,0x3fffff,0xf0000000,0x1ff,0xf8000000,0x3f,0xf8000000,0x1f,0xf8000000,0xf,0xfc000000,0xf, + 0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7, + 0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7, + 0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7, + 0xfc000000,0x7,0xfe000000,0x7,0xfe000000,0x3,0xff000000,0x3,0xff000000,0x1,0xff800000,0x1,0xffe00000,0x0,0xfff00000,0x0, + 0x7fff0000,0x0,0x1ffff000,0x0,0xffff000,0x0,0x3fff000,0x0,0x7ff000,0x0,0x3fff000,0x0,0xffff000,0x0,0x1ffff000,0x0, + 0x7fff8000,0x0,0xfff80000,0x0,0xffe00000,0x0,0xffc00000,0x1,0xff800000,0x1,0xff000000,0x3,0xfe000000,0x3,0xfe000000,0x7, + 0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7, + 0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7, + 0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfc000000,0x7, + 0xfc000000,0x7,0xfc000000,0xf,0xf8000000,0xf,0xf8000000,0x1f,0xf8000000,0x3f,0xf0000000,0xff,0xf0000000,0x3fffff,0xe0000000,0x3fffff, + 0xc0000000,0x3fffff,0x80000000,0x3fffff,0x0,0x3fffff,0x0,0x3ffffc,0x0,0x3fffe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 124 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 125 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fffe00,0x0,0x1ffffe00,0x0,0x7ffffe00,0x0,0xfffffe00,0x0, + 0xfffffe00,0x1,0xfffffe00,0x3,0xfffffe00,0x7,0xff800000,0x7,0xfe000000,0xf,0xf8000000,0xf,0xf8000000,0x1f,0xf0000000,0x1f, + 0xf0000000,0x1f,0xf0000000,0x1f,0xf0000000,0x1f,0xf0000000,0x1f,0xf0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x7f,0xc0000000,0xff,0xc0000000,0x1ff,0x80000000,0x3ff,0x0,0xfff, + 0x0,0x7ffe,0x0,0x7fffc,0x0,0x7fff0,0x0,0x7ffe0,0x0,0x7ff00,0x0,0x7ffe0,0x0,0x7fff0,0x0,0x7fffc, + 0x0,0xfffe,0x0,0xfff,0x80000000,0x3ff,0xc0000000,0x1ff,0xc0000000,0xff,0xe0000000,0x7f,0xe0000000,0x7f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f, + 0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xe0000000,0x1f,0xf0000000,0x1f,0xf0000000,0x1f,0xf0000000,0x1f, + 0xf0000000,0x1f,0xf0000000,0x1f,0xf8000000,0x1f,0xf8000000,0xf,0xfc000000,0xf,0xff000000,0x7,0xfffffe00,0x7,0xfffffe00,0x3, + 0xfffffe00,0x1,0xfffffe00,0x0,0x7ffffe00,0x0,0x1ffffe00,0x0,0x7fffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 126 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7ffe000,0x0, + 0x3ffffc00,0x1000000,0xffffff00,0x1800001,0xffffffc0,0x1e0000f,0xffffffc0,0x1f8007f,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xfe001fc0,0x1ffffff,0xf00003c0,0x1ffffff, + 0xc0,0x7fffff,0x40,0x3ffff8,0x0,0x7ffc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 127 + 0x1fffff0,0x38fc0fc0,0xe1c00070,0xe3f1c3,0xf1c00070,0xe3f1c7,0xf1c00070,0xe3f1e7,0xf1c7fc70,0x381c7f3c,0x71c7fc70,0x381c7e38,0xf1c7fc70,0x381c7e3c,0xf1c7fc70,0x3fe00e3f, + 0xf1c7fc70,0x3fe00e3f,0xe1c7fc70,0x3fe00e3f,0x1c7fc70,0x3ffc01e0,0x1c7fc70,0x3ffc01c0,0x1c7fc70,0x3ffc01c0,0x1c00070,0xf3c01c0,0x1c00070,0x71c01c0,0x1c00070,0x71c01c0, + 0x61fffff0,0x3df70738,0x71fffff0,0x38e38e38,0x71fffff0,0x38e38e38,0x70000000,0x38ff83f8,0x70000000,0x38ff81f8,0x70000000,0x38ff81f8,0x70000020,0xff003f0,0x71c00070,0x7e00fc0, + 0x71c00070,0x7e00fc0,0x7fe000e0,0xfe01f80,0x7e381f80,0x38e07000,0xfe381f80,0x38e07000,0xff783fc0,0x30f0f001,0xf3f8e070,0xfff1ff,0xf1f8e070,0xfff1ff,0xf1f9f0f0,0x7ff0ff, + 0xf007fff0,0x3800703f,0xf007fff0,0x3800703f,0xe007fff0,0x3000703f,0x1c0fff0,0xfc71fc,0x1c0fff0,0xfc71f8,0x1c0fff0,0xfc30fc,0x3f0000,0x38e00007,0x803f0000,0x38e00007, + 0x807f0000,0x38e00007,0xffff03f0,0xffc,0x7fff03f0,0xff8,0xffff03f0,0xffc,0xfe7ffc70,0x1c0f3f,0xfe3ffc70,0x1c0e3f,0xfe7ffc70,0x1c0e1f,0x3fffc70,0x3f000e00, + 0x1fffc70,0x3f000e00,0x1fffc70,0x3f000e00,0x6000ff80,0x3f03ffc0,0x7000ff80,0x3f03ffc0,0x7000ff80,0x3f03ffc0,0x1ff01c00,0x1c0fc0,0xff81c00,0x1c0fc0,0xff81c00,0x1c0fc0, + 0xe1f00,0x1c383f,0x71f80,0x1c703f,0x80071f80,0x1c703f,0xffff0780,0x7fc0e7,0xffff0380,0xff81c7,0xffff0380,0xff81c7,0xf8000000,0x303f81c7,0xf0000000,0x381f81c7, + 0xe0000000,0x381f81c7,0xffffe0,0x2e1e07fe,0x1fffff0,0x71c0ffc,0x1fffff0,0x71c0ffc,0x1fffff0,0x2fbe07fc,0x1c00070,0x38e38007,0x81c00070,0x38e38007,0x81c00070,0x3077c007, + 0x81c7fc70,0x1ffe3f,0x1c7fc70,0x1ffe3f,0x1c7fc70,0x3fff3f,0x1c7fc70,0x3fffffc0,0x1c7fc70,0x3fffffc0,0x1c7fc70,0x3fffffe0,0x1c7fc70,0x71c7e3f,0x81c7fc70,0x71c7e3f, + 0x1c7fc70,0x71c7e1f,0x1c00070,0x1c0e00,0x1c00070,0x1c0e00,0x1c00070,0x1c0e00,0xe1fffff0,0x7007e1f,0xf1fffff0,0x7007e3f,0xe1fffff0,0x7007e1f,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 128 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 129 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfff8000,0x0,0xfff8000,0x0, + 0xfff8000,0x0,0xfff8000,0x0,0xfff8000,0x0,0xfff8000,0x0,0xfff8000,0x0,0xfff8000,0x0,0xfff8000,0x0,0xfff8000,0x0, + 0xfff8000,0x0,0xfff8000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 130 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f,0xffffff80,0x7f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 131 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 132 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xffffffff,0x3fffffff,0xffffffff,0x3fffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 133 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 134 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 135 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 136 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 137 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 138 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 139 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 140 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 141 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 142 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 143 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 144 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 145 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 146 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 147 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 148 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 149 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 150 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 151 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 152 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 153 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 154 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 155 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 156 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 157 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 158 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 159 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0, + 0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xf0000070,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0xfffffff0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 160 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 161 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f, + 0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf, + 0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf0000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0xf8000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 162 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xfe000000,0xff,0xffc00000,0xfff,0xfff00000,0x3fff,0xfffc0000,0x7fff,0xfffe0000,0x1ffff, + 0xffff8000,0x3ffff,0xffffc000,0x7ffff,0xe7ffe000,0xfffcf,0xe1ffe000,0xffe0f,0xe07ff000,0x1ffc0f,0xe03ff800,0x3ff80f,0xe01ff800,0x3ff00f,0xe00ffc00,0x7fe00f, + 0xe00ffc00,0x7fe00f,0xe007fe00,0x7fc00f,0xe003fe00,0xffc00f,0xe003fe00,0x7c00f,0xe003ff00,0xf,0xe001ff00,0xf,0xe001ff00,0xf,0xe001ff00,0xf, + 0xe001ff00,0xf,0xe001ff80,0xf,0xe001ff80,0xf,0xe001ff80,0xf,0xe001ff80,0xf,0xe001ff80,0xf,0xe001ff80,0xf,0xe001ff80,0xf, + 0xe001ff80,0xf,0xe001ff80,0xf,0xe001ff00,0xf,0xe001ff00,0xf,0xe001ff00,0xf,0xe001ff00,0xf,0xe003ff00,0xf,0xe003ff00,0xff800f, + 0xe003fe00,0xffc00f,0xe007fe00,0xffc00f,0xe007fe00,0x7fc00f,0xe00ffc00,0x7fe00f,0xe01ffc00,0x7ff00f,0xe03ff800,0x3ff00f,0xe07ff800,0x3ff80f,0xe0fff000,0x1ffe0f, + 0xe3ffe000,0xfff8f,0xffffc000,0x7ffff,0xffff8000,0x3ffff,0xffff0000,0x1ffff,0xfffe0000,0xffff,0xfff80000,0x3fff,0xffe00000,0xfff,0xff800000,0x3ff, + 0xf0000000,0x1f,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf, + 0xe0000000,0xf,0xe0000000,0xf,0xe0000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 163 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe0000000,0x1ff,0xfe000000,0xfff,0xff800000,0x7fff,0xffe00000,0xffff,0xfff00000,0x3ffff,0xfffc0000,0x7ffff, + 0xfffc0000,0xfffff,0xfffe0000,0xfffff,0x3fff0000,0x1fff80,0xfff0000,0x3ffe00,0x3ff8000,0x3ff800,0x1ff8000,0x3ff000,0xffc000,0xfe000,0xffc000,0x1e000, + 0x7fc000,0x0,0x7fc000,0x0,0x7fe000,0x0,0x7fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0xfffffff0,0x7ff,0xfffffff0,0x7ff,0xfffffff0,0x7ff,0xfffffff0,0x7ff,0xfffffff0,0x7ff,0xfffffff0,0x7ff,0xfffffff0,0x7ff, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0, + 0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3ff000,0x0,0x1ff000,0x0, + 0x1ff000,0x0,0x1ff800,0x0,0xffc00,0x380000,0x7fe00,0xff80000,0x3ff00,0xff80000,0x1ff80,0x7fc0000,0xffe0,0x7fe0000,0xfffffff0,0x7ffffff, + 0xfffffff8,0x3ffffff,0xfffffff8,0x3ffffff,0xfffffff8,0x1ffffff,0xfffffff8,0x1ffffff,0xfffffff8,0xffffff,0xfffffff8,0x3fffff,0xfffffff8,0x1fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 164 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6000,0x20000,0xfc00f000,0x7003f, + 0xff81f800,0xf81ff,0xffe3fc00,0x1fc7ff,0xfffffe00,0x3fefff,0xfffffe00,0x3fffff,0xfffffc00,0x1fffff,0xfffff800,0xfffff,0x7ffff000,0x7fffe,0x3ffe000,0x3ffe0, + 0xffe000,0x3ff80,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x1ff000,0xff800,0xff800,0xff800,0xff800,0x1ff000,0x7f800,0x1fe000,0x7fc00,0x1fe000, + 0x3fc00,0x3fe000,0x3fc00,0x3fc000,0x3fc00,0x3fc000,0x3fc00,0x3fc000,0x3fc00,0x3fc000,0x3fc00,0x3fc000,0x3fc00,0x3fc000,0x3fc00,0x3fc000, + 0x3fc00,0x3fe000,0x3fc00,0x1fe000,0x7f800,0x1fe000,0x7f800,0x1ff000,0xff800,0xff000,0x1ff000,0xff800,0x3ff000,0xffc00,0x7ff000,0x7fe00, + 0xffe000,0x3ff00,0x3ffc000,0x3ffc0,0x1fffe000,0x7fff8,0xfffff000,0xfffff,0xfffff800,0x1fffff,0xfffffc00,0x3fffff,0xfffffe00,0x7fffff,0xfff3fe00,0x3fe7ff, + 0xffc1fc00,0x1fc3ff,0xff00f800,0xf807f,0xf0007000,0x70007,0x2000,0x20000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 165 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3ff8,0xffc0000,0x3ff0,0x7fe0000,0x7fe0,0x7fe0000,0x7fe0,0x3ff0000,0xffc0,0x1ff8000, + 0xff80,0x1ff8000,0x1ff80,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ff800,0x1ff800, + 0x1ff800,0xffc00,0x3ff000,0x7fc00,0x3fe000,0x7fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff80,0x1ff8000,0xff80,0x1ff0000,0xffc0, + 0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fc0000,0x3ff0,0xffc0000,0x1ff0,0xff80000,0x1ff8,0x1ff80000,0xffc,0x1ff00000,0x7fc,0x3fe00000,0x7fe, + 0x7fe00000,0x3fe,0x7fc00000,0x1ff,0xffc00000,0x1ff,0xff800000,0xff,0xff000000,0xff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff, + 0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff,0xffffff00,0xffffff, + 0xffffff00,0xffffff,0xffffff00,0xffffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 166 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 167 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0x3f,0xffc00000,0x3ff,0xfff00000,0x1fff,0xfffc0000,0x7fff, + 0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff0,0x1ffc000,0x7ff00,0x7fe000,0xffc00,0x3fe000,0xff800,0x1ff000,0x1ff000,0xff000,0x1ff000, + 0xff000,0x1fe000,0xff000,0xfe000,0xff000,0x0,0xff000,0x0,0xff000,0x0,0x1ff000,0x0,0x1ff000,0x0,0x3ff000,0x0, + 0xffe000,0x0,0x1ffe000,0x0,0xfffc000,0x0,0x7fff8000,0x0,0xffff0000,0x7,0xfffe0000,0x3f,0xfff80000,0x3ff,0xffe00000,0xfff, + 0xfff00000,0x3fff,0xfffc0000,0xffff,0xfffe0000,0x3ffff,0x7ff8000,0x7fffe,0xffc000,0xfffe0,0x3fe000,0xfff00,0x1fe000,0x1ffc00,0xff000,0x3ff800, + 0xff000,0x3ff000,0x7f800,0x3fe000,0x7f800,0x7fc000,0x7f800,0x7fc000,0x7f800,0x7f8000,0x7f800,0x7f8000,0x7f800,0x7f8000,0x7f800,0x3f8000, + 0xff800,0x3fc000,0x1ff800,0x3fc000,0x3ff000,0x1fe000,0x7ff000,0x1fe000,0x1ffe000,0xff800,0x7ffe000,0xffc00,0x7fffc000,0x7ff00,0xffff8000,0x3ffff, + 0xfffe0000,0xffff,0xfffc0000,0x3fff,0xfff00000,0xfff,0xff800000,0x1fff,0xfc000000,0x7fff,0xc0000000,0x1ffff,0x0,0x3fffc,0x0,0x7ffe0, + 0x0,0xfff80,0x0,0x1ffe00,0x0,0x1ff800,0x0,0x3ff000,0x0,0x3fe000,0x0,0x3fe000,0x0,0x3fc000,0x0,0x3fc000, + 0x0,0x3fc000,0x1e000,0x3fc000,0x1fe00,0x3fc000,0x3fe00,0x3fc000,0x3fe00,0x3fe000,0x7fc00,0x1fe000,0xffc00,0x1ff000,0x1ff800,0xff800, + 0x7ff800,0xffe00,0x3fff000,0x7ffc0,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff8000,0xffff,0xfffe0000,0x3fff,0xfff80000,0x7ff,0xff800000,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 168 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 169 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x3fff, + 0xffff0000,0x7fff,0x3ff8000,0x1ffe0,0x7fe000,0x3fe00,0xff000,0x7f800,0x7f800,0xfe000,0x1fc00,0x1fc000,0xfc00,0x3f8000,0x7e00,0x7f0000, + 0x3f00,0x7e0000,0x1f00,0xfc0000,0x1f80,0xf80000,0xe0000fc0,0x1f00007,0xfe0007c0,0x1f0003f,0xff8007c0,0x3e000ff,0xffe003e0,0x3e003ff,0xfff003e0,0x7c007ff, + 0xfff803f0,0x7c00fff,0x7fc01f0,0x7c01ff0,0x3fc01f0,0xf801fc0,0x1fe01f0,0xf803f80,0xff00f8,0xf803f00,0x7f00f8,0xf807f00,0x7f00f8,0xf001e00,0x3f80f8,0x1f000000, + 0x3f8078,0x1f000000,0x3f807c,0x1f000000,0x1f807c,0x1f000000,0x1f807c,0x1f000000,0x1fc07c,0x1f000000,0x1fc07c,0x1f000000,0x1fc07c,0x1e000000,0x1fc07c,0x1e000000, + 0x1fc07c,0x1e000000,0x1fc07c,0x1e000000,0x1fc07c,0x1e000000,0x1fc07c,0x1e000000,0x1fc07c,0x1f000000,0x1fc07c,0x1f000000,0x1f807c,0x1f000000,0x1f807c,0x1f000000, + 0x3f8078,0x1f000000,0x3f80f8,0x1f000000,0x3f00f8,0x1f003e00,0x7f00f8,0xf00fe00,0x7f00f8,0xf807f00,0xfe00f8,0xf807f00,0x1fe01f0,0xf803f80,0x3fc01f0,0x7803fc0, + 0xff801f0,0x7c01ff0,0xfff003f0,0x7c00fff,0xffe003e0,0x3e007ff,0xffc003e0,0x3e003ff,0xff8007c0,0x3e000ff,0xfc0007c0,0x1f0003f,0xc0000f80,0x1f80001,0x1f80,0xf80000, + 0x1f00,0xfc0000,0x3f00,0x7e0000,0x7e00,0x3f0000,0xfc00,0x3f8000,0x3f800,0x1fc000,0x7f000,0xff000,0x1fe000,0x7fc00,0x7fc000,0x3ff00, + 0xfff8000,0xfff0,0xfffe0000,0x7fff,0xfffc0000,0x1fff,0xfff00000,0x7ff,0xff000000,0xff,0xc0000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 170 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff000000,0xf, + 0xffe00000,0x7f,0xfff80000,0x1ff,0xfffe0000,0x3ff,0x8fff0000,0x7ff,0xff8000,0xff8,0x7fc000,0x1ff0,0x3fc000,0x1fe0,0x1fe000,0x1fc0, + 0x1fe000,0x3fc0,0xfe000,0x3fc0,0xf0000,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0xff000000,0x3fff, + 0xfff80000,0x3fff,0xfffe0000,0x3fff,0xffff8000,0x3fff,0x7ffc000,0x3f80,0x7fe000,0x3f80,0x1ff000,0x3f80,0xff000,0x3f80,0x7f000,0x3f80, + 0x7f800,0x3fc0,0x7f800,0x3fc0,0x3f800,0x3fe0,0x7f800,0x3fe0,0x7f800,0x3ff0,0x7f800,0x3ff8,0xff800,0x7ffc,0x1ff000,0x7fbe, + 0xc03ff000,0xff9f,0xffffe000,0xfff0f,0xffffe000,0xfff07,0xffffc000,0xffe03,0xffff0000,0xffc00,0x3ffc0000,0xff800,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 171 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff800000,0x1ff0001,0xffc00000,0x1ff8001,0xffc00000,0xffc000,0x7fe00000,0x7fe000,0x3ff00000,0x3ff000,0x1ff80000,0x3ff800,0xffc0000,0x1ffc00,0x7fe0000,0xffe00, + 0x7ff0000,0x7ff00,0x3ff8000,0x3ff80,0x1ffc000,0x1ffc0,0xffe000,0xffc0,0x7ff000,0x7fe0,0x3ff000,0x3ff0,0x1ff800,0x1ff8,0xffc00,0xffc, + 0x7fe00,0xffe,0x3ff00,0x7ff,0x8003ff80,0x3ff,0x8001ff80,0x1ff,0x8000ff80,0xff,0x8001ff80,0x1ff,0x3ff00,0x3ff,0x7fe00,0x7fe, + 0xffe00,0xffc,0x1ffc00,0x1ff8,0x3ff800,0x3ff8,0x7ff000,0x7ff0,0xffe000,0xffe0,0x1ffc000,0x1ffc0,0x1ff8000,0x3ff80,0x3ff0000,0x7ff00, + 0x7fe0000,0x7fe00,0xffc0000,0xffc00,0x1ff80000,0x1ff800,0x3ff00000,0x3ff000,0x7ff00000,0x7fe000,0xffe00000,0xffc000,0xffc00000,0x1ff8001,0xff800000,0x1ff8001, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 172 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff, + 0xffffffc0,0x1ffffff,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000, + 0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000, + 0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 173 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 174 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x3fff, + 0xffff0000,0x7fff,0x3ff8000,0x1ffe0,0x7fe000,0x3fe00,0xff000,0x7f800,0x7f800,0xfe000,0x1fc00,0x1fc000,0xfc00,0x3f8000,0x7e00,0x7f0000, + 0x3f00,0x7e0000,0x1f00,0xfc0000,0x1f80,0xf80000,0xfc0,0x1f00000,0xfffe07c0,0x1f0003f,0xfffe07c0,0x3e001ff,0xfffe03e0,0x3e007ff,0xfffe03e0,0x7c00fff, + 0xfffe03f0,0x7c01fff,0xfe01f0,0x7c03ff0,0xfe01f0,0xf803fc0,0xfe01f0,0xf807f00,0xfe00f8,0xf807f00,0xfe00f8,0xf807e00,0xfe00f8,0xf007e00,0xfe00f8,0x1f00fe00, + 0xfe0078,0x1f00fe00,0xfe007c,0x1f00fe00,0xfe007c,0x1f007e00,0xfe007c,0x1f007e00,0xfe007c,0x1f007f00,0xfe007c,0x1f007f80,0xfe007c,0x1e003fc0,0xfe007c,0x1e001fe0, + 0xfffe007c,0x1e001fff,0xfffe007c,0x1e000fff,0xfffe007c,0x1e0003ff,0xfffe007c,0x1e0000ff,0xfffe007c,0x1f00003f,0xfe007c,0x1f00007f,0xfe007c,0x1f00007e,0xfe007c,0x1f0000fe, + 0xfe0078,0x1f0001fc,0xfe00f8,0x1f0001fc,0xfe00f8,0x1f0003f8,0xfe00f8,0xf0007f0,0xfe00f8,0xf8007f0,0xfe00f8,0xf800fe0,0xfe01f0,0xf800fe0,0xfe01f0,0x7801fc0, + 0xfe01f0,0x7c03f80,0xfe03f0,0x7c03f80,0xfe03e0,0x3e07f00,0xfe03e0,0x3e0ff00,0xfe07c0,0x3e0fe00,0xfe07c0,0x1f1fc00,0xf80,0x1f80000,0x1f80,0xf80000, + 0x1f00,0xfc0000,0x3f00,0x7e0000,0x7e00,0x3f0000,0xfc00,0x3f8000,0x3f800,0x1fc000,0x7f000,0xff000,0x1fe000,0x7fc00,0x7fc000,0x3ff00, + 0xfff8000,0xfff0,0xfffe0000,0x7fff,0xfffc0000,0x1fff,0xfff00000,0x7ff,0xff000000,0xff,0xc0000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 175 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffffff,0x3fffffff,0xffffffff,0x3fffffff,0xffffffff,0x3fffffff, + 0xffffffff,0x3fffffff,0xffffffff,0x3fffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 176 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000000,0xf,0xfe000000,0x3f,0xff800000,0xff,0xffc00000,0x1ff,0xffe00000,0x3ff,0x3ff00000,0x7fc, + 0x7f80000,0xff0,0x3f80000,0xfc0,0x1fc0000,0x1f80,0xfc0000,0x1f80,0xfc0000,0x3f00,0x7e0000,0x3f00,0x7e0000,0x3e00,0x7e0000,0x3e00, + 0x7e0000,0x3e00,0x7e0000,0x3e00,0x7e0000,0x3f00,0x7e0000,0x3f00,0xfc0000,0x3f00,0xfc0000,0x1f80,0x1f80000,0x1fc0,0x3f80000,0xfe0, + 0xff00000,0xff0,0x7ff00000,0x7ff,0xffe00000,0x3ff,0xffc00000,0x1ff,0xff000000,0xff,0xfc000000,0x3f,0xe0000000,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 177 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff, + 0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7,0xf0000000,0x7, + 0xf0000000,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 178 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0000000,0x7, + 0xfc000000,0x7f,0xff800000,0x1ff,0xffc00000,0x3ff,0xffe00000,0x7ff,0xfff00000,0xfff,0xff80000,0x1ff0,0x3fc0000,0x1fe0,0x1fc0000,0x3fc0, + 0x1fc0000,0x3f80,0xfe0000,0x3f80,0xfe0000,0x3f80,0xfe0000,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x1fc0, + 0x0,0x1fc0,0x0,0x1fe0,0x0,0xff0,0x0,0x7f8,0x0,0x3fc,0x0,0x1fe,0x0,0xff,0xc0000000,0x7f, + 0xe0000000,0x3f,0xf0000000,0x1f,0xfc000000,0x7,0xfe000000,0x3,0xff000000,0x1,0x7f800000,0x0,0x3fc00000,0x0,0x1fe00000,0x0, + 0xff00000,0x0,0x3f80000,0x0,0x3fc0000,0x0,0x1fe0000,0x0,0xfe0000,0x0,0xffff0000,0x7fff,0xffff0000,0x7fff,0xffff0000,0x7fff, + 0xffff0000,0x7fff,0xffff0000,0x7fff,0xffff0000,0x7fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 179 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0000000,0x7, + 0xfe000000,0x7f,0xff800000,0x1ff,0xffc00000,0x7ff,0xfff00000,0xfff,0xfff00000,0xfff,0xff80000,0x1ff0,0x3fc0000,0x1fe0,0x1fc0000,0x3fc0, + 0x1fc0000,0x3f80,0xfe0000,0x3f80,0xfe0000,0x3f80,0x800000,0x3f80,0x0,0x3f80,0x0,0x3f80,0x0,0x1fc0,0x0,0x1fc0, + 0x0,0xfe0,0x0,0x7f8,0xf0000000,0x3ff,0xf0000000,0x1ff,0xf0000000,0x3f,0xf0000000,0xff,0xf0000000,0x7ff,0xf0000000,0xfff, + 0x0,0x1ff0,0x0,0x3fc0,0x0,0x3f80,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x0,0x7f00,0x600000,0x7f00, + 0x7f0000,0x7f00,0xff0000,0x7f00,0xfe0000,0x7f00,0x1fe0000,0x7f80,0x3fe0000,0x3fc0,0xffc0000,0x3ff0,0xfff80000,0x1fff,0xfff00000,0xfff, + 0xffe00000,0x7ff,0xffc00000,0x1ff,0xfe000000,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 180 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff,0x80000000,0x3ff,0xc0000000,0x3ff, + 0xe0000000,0xff,0xe0000000,0x7f,0xf0000000,0x3f,0xf8000000,0xf,0xfc000000,0x7,0xfe000000,0x3,0xff000000,0x0,0x7f800000,0x0, + 0x3fc00000,0x0,0x1fe00000,0x0,0x7e00000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 181 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000, + 0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000, + 0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000, + 0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000, + 0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fe000,0x1ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000, + 0x3ff00,0x7ff000,0x3ff00,0x7ff000,0x7ff00,0x7ff800,0x7ff00,0x7ffc00,0xfff00,0x7ffc00,0x1fff00,0x7fbf00,0x3fff00,0x7fbf80,0x7fff00,0x7f9fc0, + 0x1ffff00,0x7f8ff8,0xffffff00,0x7f8fff,0xffffff00,0x7f87ff,0xfffdff00,0x7f83ff,0xfff9ff00,0x7f81ff,0xfff1ff00,0x7f80ff,0xffe1ff00,0x7f803f,0xff01ff00,0xf, + 0x2001ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0, + 0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0, + 0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 182 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffe00000,0x7fffff,0xfffe0000,0x7fffff,0xffff8000,0x7fffff,0xffffc000,0x7fffff,0xfffff000,0x7fffff, + 0xfffff800,0x7fffff,0xfffff800,0x1fc00,0xfffffc00,0x1fc00,0xfffffe00,0x1fc00,0xfffffe00,0x1fc00,0xffffff00,0x1fc00,0xffffff00,0x1fc00,0xffffff00,0x1fc00, + 0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff80,0x1fc00, + 0xffffff80,0x1fc00,0xffffff80,0x1fc00,0xffffff00,0x1fc00,0xffffff00,0x1fc00,0xffffff00,0x1fc00,0xffffff00,0x1fc00,0xfffffe00,0x1fc00,0xfffffc00,0x1fc00, + 0xfffffc00,0x1fc00,0xfffff800,0x1fc00,0xfffff000,0x1fc00,0xffffe000,0x1fc00,0xffffc000,0x1fc00,0xffff0000,0x1fc00,0xfff80000,0x1fc00,0xfe000000,0x1fc00, + 0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00, + 0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00, + 0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00, + 0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00, + 0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00, + 0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00,0xfe000000,0x1fc00, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 183 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f,0xfc000000,0x3f, + 0xfc000000,0x3f,0xfc000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 184 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f000,0x0, + 0x1f000,0x0,0x1f800,0x0,0xf800,0x0,0xf800,0x0,0xfc00,0x0,0xffc00,0x0,0x3ffc00,0x0,0x7ffe00,0x0, + 0xfffe00,0x0,0xff0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fc0000,0x0,0x1fe0000,0x0, + 0xff8000,0x0,0xffff80,0x0,0x7fff80,0x0,0x3fff80,0x0,0xfff80,0x0,0x1ff80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 185 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xe0000000,0x7,0xf0000000,0x7,0xf8000000,0x7,0xfc000000,0x7,0xfe000000,0x7,0xffc00000,0x7,0xfff80000,0x7,0xefff8000,0x7, + 0xe7ff8000,0x7,0xe3ff8000,0x7,0xe0ff8000,0x7,0xe01f8000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7, + 0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7, + 0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7, + 0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xe0000000,0x7,0xffff8000,0x7fff,0xffff8000,0x7fff,0xffff8000,0x7fff, + 0xffff8000,0x7fff,0xffff8000,0x7fff,0xffff8000,0x7fff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 186 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f, + 0xff800000,0x1ff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffc0000,0x3fff,0xffe0000,0x7ff8,0x3ff0000,0xffc0,0xff8000,0xff00,0x7f8000,0x1fe00, + 0x3fc000,0x1fe00,0x1fc000,0x3fc00,0x1fe000,0x3fc00,0x1fe000,0x3f800,0xfe000,0x7f800,0xfe000,0x7f800,0xff000,0x7f000,0xff000,0x7f000, + 0xff000,0x7f000,0xff000,0x7f000,0xff000,0x7f000,0xff000,0x7f000,0xff000,0x7f000,0xff000,0x7f000,0xff000,0x7f000,0xff000,0x7f800, + 0xfe000,0x7f800,0x1fe000,0x3f800,0x1fe000,0x3fc00,0x1fc000,0x3fc00,0x3fc000,0x1fe00,0x7f8000,0x1fe00,0xff8000,0xff00,0x1ff0000,0x7fc0, + 0x7fe0000,0x7ff0,0xfffc0000,0x3fff,0xfff80000,0xfff,0xfff00000,0x7ff,0xffc00000,0x1ff,0xfe000000,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 187 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc000ffc0,0xff,0xc001ffc0,0x1ff,0x8003ff80,0x3ff,0x3ff00,0x7ff,0x7fe00,0xffe,0xffc00,0xffc,0x1ff800,0x1ff8,0x3ff000,0x3ff0, + 0x7ff000,0x7fe0,0xffe000,0xffc0,0x1ffc000,0x1ff80,0x3ff8000,0x3ff80,0x7ff0000,0x7ff00,0x7fe0000,0xffe00,0xffc0000,0x1ffc00,0x1ff80000,0x3ff800, + 0x3ff00000,0x3ff000,0x7fe00000,0x7fe000,0xffc00000,0xffc000,0xffc00000,0xff8000,0xff800000,0xff8000,0xffc00000,0xffc000,0x7fe00000,0xffe000,0x7ff00000,0x7ff000, + 0x3ff80000,0x3ff800,0x1ffc0000,0x1ffc00,0xffe0000,0xffc00,0x7ff0000,0x7fe00,0x3ff8000,0x3ff00,0x1ff8000,0x1ff80,0xffc000,0xffc0,0x7fe000,0x7fe0, + 0x3ff000,0x3ff0,0x1ff800,0x3ff8,0xffc00,0x1ffc,0xffe00,0xffe,0x7ff00,0x7ff,0x8003ff80,0x3ff,0xc001ffc0,0x1ff,0xc000ffc0,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 188 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f800,0xfc000,0x1fc00,0xfc000,0x1fe00,0x7e000,0x1ff00,0x7e000,0x1ff80,0x3f000, + 0x1fff0,0x3f000,0x1fffc,0x1f800,0x1fbfc,0x1f800,0x1fbfc,0xfc00,0x1f8fc,0x7c00,0x1f87c,0x7e00,0x1f80c,0x3e00,0x1f800,0x3f00, + 0x1f800,0x1f00,0x1f800,0x1f80,0x1f800,0xfc0,0x1f800,0xfc0,0x1f800,0x7e0,0x1f800,0x7e0,0x1f800,0x3f0,0x1f800,0x3f0, + 0x1f800,0x1f8,0x1f800,0x1f8,0x1f800,0xfc,0x1f800,0xfc,0x1f800,0x7e,0x1f800,0x7e,0x1f800,0x3f,0x1f800,0x3f, + 0x8001f800,0x1f,0x8001f800,0x1fe001f,0xc001f800,0x1ff000f,0xc001f800,0x1ff000f,0xe07ffff0,0x1ff8007,0xe07ffff0,0x1ffc007,0xf07ffff0,0x1ffe003,0xf07ffff0,0x1ffe001, + 0xf87ffff0,0x1fdf001,0xfc7ffff0,0x1fdf800,0xfc000000,0x1fcf800,0x7e000000,0x1fc7c00,0x7e000000,0x1fc7e00,0x3f000000,0x1fc3f00,0x3f000000,0x1fc1f00,0x1f800000,0x1fc0f80, + 0x1f800000,0x1fc0fc0,0xfc00000,0x1fc07c0,0xfc00000,0x1fc03e0,0x7e00000,0x1fc03f0,0x7e00000,0x1fc01f8,0x3f00000,0x1fc00f8,0x3f00000,0x1fc007c,0x1f80000,0x1fc007e, + 0x1f80000,0x1fc003f,0xfc0000,0x1fc001f,0x80fc0000,0x3fffffff,0x807e0000,0x3fffffff,0x807e0000,0x3fffffff,0x803f0000,0x3fffffff,0x803f0000,0x3fffffff,0x1f8000,0x1fc0000, + 0xf8000,0x1fc0000,0xfc000,0x1fc0000,0x7e000,0x1fc0000,0x7e000,0x1fc0000,0x3f000,0x1fc0000,0x3f000,0x1fc0000,0x1f800,0x1fc0000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 189 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1fc00,0x7e000,0x1fc00,0x7e000,0x1fe00,0x3f000,0x1ff00,0x3f000,0x1ffc0,0x1f800, + 0x1fff0,0x1f800,0x1fffe,0xfc00,0x1fffe,0xfc00,0x1fdfe,0x7e00,0x1fcfe,0x7e00,0x1fc3e,0x3f00,0x1fc0e,0x3f00,0x1fc00,0x1f80, + 0x1fc00,0x1f80,0x1fc00,0xfc0,0x1fc00,0xfc0,0x1fc00,0x7e0,0x1fc00,0x7e0,0x1fc00,0x3f0,0x1fc00,0x1f0,0x1fc00,0x1f8, + 0x1fc00,0xf8,0x1fc00,0xfc,0x1fc00,0x7c,0x1fc00,0x7e,0x1fc00,0x3f,0x1fc00,0x3f,0x8001fc00,0x1f,0x8001fc00,0x1f, + 0xc001fc00,0xfe00f,0xc001fc00,0x7ffc0f,0xe001fc00,0x1ffff07,0xe001fc00,0x3ffff87,0xf07ffff8,0x7ffffc3,0xf07ffff8,0xffc7fe3,0xf87ffff8,0xff00fe1,0xf87ffff8,0xfe007f1, + 0xfc7ffff8,0x1fc007f0,0xfc7ffff8,0x1fc003f0,0x7e000000,0x1fc003f8,0x7e000000,0x1fc00300,0x3f000000,0x1fc00000,0x3f000000,0x1fc00000,0x1f800000,0xfe00000,0x1f800000,0xfe00000, + 0xfc00000,0xff00000,0x7c00000,0x7f80000,0x7e00000,0x3f80000,0x3f00000,0x1fe0000,0x3f00000,0x1ff0000,0x1f80000,0x7f8000,0x1f80000,0x3fc000,0xfc0000,0x1fe000, + 0xfc0000,0xff800,0x7e0000,0x7fc00,0x7e0000,0x1fe00,0x3f0000,0xff00,0x3f0000,0x7f80,0x1f8000,0x3fc0,0x1f8000,0x1fe0,0xfc000,0xfe0, + 0xfc000,0x7f0,0x7e000,0x3f8,0x7e000,0x1ffffff8,0x3f000,0x1ffffff8,0x3f000,0x1ffffff8,0x1f800,0x1ffffff8,0x1f800,0x1ffffff8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 190 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xe000,0x0,0xffe00,0x1f0000,0x3fff80,0x1f8000,0x7fffe0,0xf8000,0xfffff0,0xfc000,0x1fffff0,0x7e000, + 0x1fe0ff8,0x7e000,0x3fc03f8,0x3f000,0x3f803fc,0x3f000,0x3f801fc,0x1f800,0x3f801fc,0x1f800,0x3f801f0,0xfc00,0x3f80000,0xfc00,0x3f80000,0x7e00, + 0x1fc0000,0x7e00,0x1fc0000,0x3f00,0xff0000,0x3f00,0x7ff800,0x1f80,0x1ff800,0x1f80,0x7f800,0xfc0,0x3ff800,0xfc0,0x7ff800,0x7e0, + 0x1fff800,0x7e0,0x3fe0000,0x3f0,0x3f80000,0x1f0,0x7f80000,0x1f8,0x7f00000,0xf8,0x7f00000,0xfc,0x7f00000,0x7e,0x7f000f0,0x7e, + 0x7f000fe,0x3f,0x7f001fe,0x1fe003f,0x87f801fc,0x1ff001f,0x83f803fc,0x1ff001f,0xc3fe07f8,0x1ff800f,0xc1fffff8,0x1ffc00f,0xe1fffff0,0x1ffe007,0xe0ffffe0,0x1ffe007, + 0xf03fffc0,0x1fdf003,0xf00fff00,0x1fdf803,0xf8000000,0x1fcf801,0xf8000000,0x1fc7c01,0xfc000000,0x1fc7e00,0xfc000000,0x1fc3f00,0x7e000000,0x1fc1f00,0x7e000000,0x1fc0f80, + 0x3f000000,0x1fc0fc0,0x3f000000,0x1fc07c0,0x1f800000,0x1fc03e0,0x1f800000,0x1fc03f0,0xfc00000,0x1fc01f8,0x7c00000,0x1fc00f8,0x7e00000,0x1fc007c,0x3f00000,0x1fc007e, + 0x3f00000,0x1fc003f,0x1f80000,0x1fc001f,0x81f80000,0x3fffffff,0x80fc0000,0x3fffffff,0x80fc0000,0x3fffffff,0x807e0000,0x3fffffff,0x807e0000,0x3fffffff,0x3f0000,0x1fc0000, + 0x3f0000,0x1fc0000,0x1f8000,0x1fc0000,0x1f8000,0x1fc0000,0xfc000,0x1fc0000,0xfc000,0x1fc0000,0x7e000,0x1fc0000,0x7e000,0x1fc0000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 191 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0xff, + 0xc0000000,0xff,0xc0000000,0xff,0xc0000000,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80000000,0xff,0x80000000,0x7f,0xc0000000,0x7f,0xc0000000,0x7f,0xc0000000,0x7f, + 0xe0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x3f,0xf8000000,0x1f,0xfc000000,0xf,0xfe000000,0xf,0xff000000,0x7,0xffc00000,0x3, + 0xffe00000,0x1,0xfff00000,0x0,0x7ffc0000,0x0,0x1ffe0000,0x0,0xfff0000,0x0,0x7ff8000,0x0,0x1ffc000,0x0,0xffe000,0x0, + 0x7ff000,0x0,0x3ff800,0x0,0x1ffc00,0x0,0xffc00,0x0,0x7fc00,0x0,0x7fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3ff00,0x0,0x3ff00,0x3ff0000,0x3ff00,0x3ff0000,0x3ff00,0x3ff0000,0x3ff00,0x1ff0000,0x3ff00,0x1ff8000,0x3ff00,0x1ff8000,0x3fe00,0xffc000, + 0x7fe00,0xffc000,0xffe00,0xffe000,0xffc00,0x7ff000,0x1ffc00,0x3ff800,0x7ff800,0x3ffe00,0x1fff800,0x1fff80,0x7ffff000,0xffffe,0xffffe000,0x7ffff, + 0xffffc000,0x3ffff,0xffff8000,0x1ffff,0xfffe0000,0x7fff,0xfff80000,0x1fff,0xffe00000,0x7ff,0xfe000000,0x7f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 192 + 0x0,0x0,0x7ff0000,0x0,0xfff0000,0x0,0x1ffc0000,0x0,0x3ff80000,0x0,0x3ff00000,0x0,0x7fe00000,0x0,0xff800000,0x0, + 0xff000000,0x1,0xfe000000,0x3,0xf8000000,0x7,0xf0000000,0xf,0xe0000000,0x1f,0x80000000,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 193 + 0x0,0x0,0x0,0x7fe0,0x0,0x7ff0,0x0,0x3ff8,0x0,0xffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0x1ff, + 0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 194 + 0x0,0x0,0xf8000000,0x1f,0xfc000000,0x3f,0xfe000000,0x7f,0xff000000,0xff,0xff800000,0x1ff,0xffc00000,0x3ff,0x7fe00000,0x7fe, + 0x3ff00000,0xffc,0xff80000,0x1ff0,0x3fc0000,0x3fe0,0x1fe0000,0x7f80,0x7f0000,0xfe00,0x1f8000,0xfc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 195 + 0x0,0x0,0x0,0x0,0xff80000,0x3f000,0x3ffc0000,0x3f000,0xfffe0000,0x1f000,0xffff0000,0x1f803,0xffff8000,0x1fc0f,0xffff8000,0x1ff7f, + 0xfc3f8000,0xffff,0xf00fc000,0xffff,0xc00fc000,0x7fff,0xfc000,0x3fff,0x7c000,0x1ffc,0x7c000,0x7f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 196 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xfc000000,0x3f,0xfe000000,0x3f,0xfe000000,0x7f,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 197 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1f,0xff000000,0x7f,0xff800000,0x1ff, + 0xffc00000,0x3ff,0xffe00000,0x7ff,0xffe00000,0x7ff,0xff00000,0xff0,0x7f00000,0xfe0,0x3f00000,0xfc0,0x3f00000,0xfc0,0x3f00000,0xfc0, + 0x3f00000,0xfe0,0x7f00000,0xfe0,0x1ff00000,0x7f8,0xffe00000,0x7ff,0xffe00000,0x3ff,0xffc00000,0x1ff,0xff000000,0xff,0xfe000000,0x7f, + 0xff000000,0x7f,0xff000000,0xff,0xff000000,0xff,0x7f800000,0x1ff,0x7f800000,0x1ff,0x7fc00000,0x1fe,0x3fc00000,0x3fe,0x3fc00000,0x3fe, + 0x3fe00000,0x3fc,0x3fe00000,0x7fc,0x1fe00000,0x7fc,0x1ff00000,0xff8,0x1ff00000,0xff8,0xff80000,0xff0,0xff80000,0x1ff0,0xff80000,0x1ff0, + 0x7fc0000,0x1fe0,0x7fc0000,0x3fe0,0x3fc0000,0x3fe0,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x1ff0000,0x7fc0,0x1ff0000,0xff80,0x1ff0000,0xff80, + 0xff8000,0xff80,0xff8000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x3fe00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3fe000,0x7fc00, + 0x1ff000,0x7fc00,0x1ff000,0xffc00,0x1ff800,0xff800,0xff800,0xff800,0xff800,0x1ff000,0xfffffc00,0x1fffff,0xfffffc00,0x3fffff,0xfffffc00,0x3fffff, + 0xfffffe00,0x3fffff,0xfffffe00,0x7fffff,0xffffff00,0x7fffff,0xffffff00,0x7fffff,0x1ff00,0xffc000,0x1ff80,0xff8000,0x1ff80,0x1ff8000,0xff80,0x1ff8000, + 0xffc0,0x1ff0000,0x7fc0,0x3ff0000,0x7fe0,0x3ff0000,0x7fe0,0x3fe0000,0x3fe0,0x7fe0000,0x3ff0,0x7fe0000,0x3ff0,0xffc0000,0x1ff0,0xffc0000, + 0x1ff8,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x1ff80000,0xffc,0x1ff00000,0xffc,0x3ff00000,0x7fe,0x3ff00000,0x7fe,0x3fe00000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 198 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0x7ffffff,0xfe000000,0x7ffffff,0xff000000,0x7ffffff,0xff000000,0x7ffffff,0xff000000,0x7ffffff, + 0xff800000,0x7ffffff,0xff800000,0x7ffffff,0x3f800000,0x7fffffe,0x1fc00000,0x3fe,0x1fc00000,0x3fe,0x1fe00000,0x3fe,0xfe00000,0x3fe,0xfe00000,0x3fe, + 0xff00000,0x3fe,0xff00000,0x3fe,0x7f00000,0x3fe,0x7f80000,0x3fe,0x7f80000,0x3fe,0x3f80000,0x3fe,0x3fc0000,0x3fe,0x3fc0000,0x3fe, + 0x1fe0000,0x3fe,0x1fe0000,0x3fe,0x1fe0000,0x3fe,0xff0000,0x3fe,0xff0000,0x3fe,0xff0000,0x3fe,0x7f8000,0x3fe,0x7f8000,0x3fe, + 0x7f8000,0x3fe,0x3fc000,0x7fffffe,0x3fc000,0x7fffffe,0x1fc000,0x7fffffe,0x1fe000,0x7fffffe,0x1fe000,0x7fffffe,0xff000,0x7fffffe,0xff000,0x7fffffe, + 0xff000,0x3fe,0x7f800,0x3fe,0x7f800,0x3fe,0xfffff800,0x3ff,0xfffffc00,0x3ff,0xfffffc00,0x3ff,0xfffffc00,0x3ff,0xfffffe00,0x3ff, + 0xfffffe00,0x3ff,0xffffff00,0x3ff,0xffffff00,0x3ff,0xff00,0x3fe,0xff80,0x3fe,0x7f80,0x3fe,0x7f80,0x3fe,0x7fc0,0x3fe, + 0x3fc0,0x3fe,0x3fc0,0x3fe,0x3fe0,0x3fe,0x1fe0,0x3fe,0x1fe0,0x3fe,0x1ff0,0x3fe,0xff0,0x3fe,0xff8,0x3fe, + 0x7f8,0x1ffffffe,0x7f8,0x1ffffffe,0x7fc,0x1ffffffe,0x3fc,0x1ffffffe,0x3fc,0x1ffffffe,0x3fe,0x1ffffffe,0x1fe,0x1ffffffe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 199 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xf8000000,0x7f,0xff800000,0x7ff,0xffe00000,0x1fff,0xfff80000,0x7fff,0xfffe0000,0xffff,0xffff0000,0x3ffff, + 0xffff8000,0x7ffff,0xffffc000,0xfffff,0xfffe000,0xfffc0,0x3fff000,0x1fff00,0xfff000,0x3ffc00,0x7ff800,0x3ff800,0x3ff800,0x7ff000,0x1ffc00,0xffe000, + 0x1ffc00,0xffc000,0xffe00,0xffc000,0xffe00,0x1ff8000,0x7fe00,0xff8000,0x7ff00,0x1f0000,0x3ff00,0x30000,0x3ff00,0x0,0x3ff00,0x0, + 0x3ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ffc0,0x0, + 0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0xffc0,0x0,0xffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0, + 0x1ffc0,0x0,0x1ffc0,0x0,0x1ffc0,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x3ff80,0x0,0x3ff00,0x40000,0x3ff00,0x1c0000,0x3ff00,0xfe0000,0x7ff00,0x3fe0000,0x7fe00,0x3ff0000,0xffe00,0x3ff0000, + 0xffc00,0x1ff8000,0x1ffc00,0x1ff8000,0x1ffc00,0xffc000,0x3ff800,0xffe000,0x7ff000,0x7ff000,0xfff000,0x3ff800,0x3ffe000,0x3ffe00,0xfffc000,0x1fff00, + 0xffffc000,0xffff8,0xffff8000,0x7ffff,0xffff0000,0x3ffff,0xfffc0000,0x1ffff,0xfff80000,0x7fff,0xffe00000,0x3fff,0xff800000,0xfff,0xfc000000,0x1ff, + 0xc0000000,0x7,0xe0000000,0x7,0xe0000000,0x3,0xe0000000,0x3,0xf0000000,0x1,0xf0000000,0x3f,0xf0000000,0xff,0xf8000000,0x1ff, + 0xf8000000,0x3ff,0x0,0x3fc,0x0,0x7f8,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f0,0x0,0x7f8, + 0x0,0x3fe,0xfe000000,0x3ff,0xfe000000,0x1ff,0xfe000000,0xff,0xfe000000,0x3f,0xfe000000,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 200 + 0x0,0x0,0xffe0000,0x0,0x1ffe0000,0x0,0x3ff80000,0x0,0x7ff00000,0x0,0xffe00000,0x0,0xff800000,0x1,0xff000000,0x3, + 0xfe000000,0x3,0xf8000000,0x7,0xf0000000,0xf,0xe0000000,0x1f,0xc0000000,0x3f,0x0,0x7f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 201 + 0x0,0x0,0x0,0x7fe0,0x0,0x7ff0,0x0,0x3ff8,0x0,0xffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0xff, + 0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 202 + 0x0,0x0,0xf8000000,0x1f,0xfc000000,0x3f,0xfe000000,0x7f,0xff000000,0xff,0xff800000,0x1ff,0xffc00000,0x3ff,0x7fe00000,0x7fe, + 0x3ff00000,0xffc,0xff80000,0x1ff0,0x3fc0000,0x3fe0,0x1fe0000,0x7f80,0x7f0000,0xfe00,0x1f8000,0xfc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 203 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f80000,0x7f80,0x7f80000,0x7f80,0x7f80000,0x7f80, + 0x7f80000,0x7f80,0x7f80000,0x7f80,0x7f80000,0x7f80,0x7f80000,0x7f80,0x7f80000,0x7f80,0x7f80000,0x7f80,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff, + 0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0xfffffe00,0x7fffff,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff,0xfffffe00,0xfffff, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0xfffffe00,0x1ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 204 + 0x0,0x0,0x7fe0000,0x0,0xffe0000,0x0,0x1ffc0000,0x0,0x3ff80000,0x0,0x7fe00000,0x0,0xffc00000,0x0,0xff800000,0x1, + 0xfe000000,0x3,0xfc000000,0x7,0xf8000000,0xf,0xe0000000,0x1f,0xc0000000,0x3f,0x80000000,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 205 + 0x0,0x0,0x0,0xffe0,0x0,0xfff0,0x0,0x3ff8,0x0,0x1ffc,0x0,0xffe,0x0,0x3ff,0x80000000,0x1ff, + 0x80000000,0xff,0xc0000000,0x3f,0xe0000000,0x1f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 206 + 0x0,0x0,0xf8000000,0x1f,0xfc000000,0x3f,0xfe000000,0x7f,0xff000000,0xff,0xff800000,0x1ff,0xffc00000,0x3ff,0x7fe00000,0x7fe, + 0x3ff00000,0xffc,0xff80000,0x1ff0,0x3fc0000,0x3fe0,0x1fe0000,0x7f80,0x7f0000,0xfe00,0x1f8000,0xfc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 207 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0xfffff800,0x1fffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 208 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xfffffe00,0x0,0xfffffe00,0x1f,0xfffffe00,0xff,0xfffffe00,0x7ff,0xfffffe00,0xfff, + 0xfffffe00,0x3fff,0xfffffe00,0x7fff,0xfffffe00,0xffff,0x8003fe00,0x3ffff,0x3fe00,0x3fff8,0x3fe00,0x7ffc0,0x3fe00,0xfff80,0x3fe00,0x1ffe00, + 0x3fe00,0x1ffc00,0x3fe00,0x3ff800,0x3fe00,0x3ff800,0x3fe00,0x7ff000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0xffc000,0x3fe00,0xffc000, + 0x3fe00,0xffc000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000, + 0x3fe00,0x1ff0000,0x3fe00,0x3ff0000,0xfffffffc,0x3ff0001,0xfffffffc,0x3ff0001,0xfffffffc,0x3ff0001,0xfffffffc,0x3ff0001,0xfffffffc,0x3ff0001,0xfffffffc,0x3ff0001, + 0xfffffffc,0x1ff0001,0x3fe00,0x1ff0000,0x3fe00,0x1ff0000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000, + 0x3fe00,0xff8000,0x3fe00,0xffc000,0x3fe00,0xffc000,0x3fe00,0xffe000,0x3fe00,0x7fe000,0x3fe00,0x7fe000,0x3fe00,0x7ff000,0x3fe00,0x3ff800, + 0x3fe00,0x3ff800,0x3fe00,0x1ffc00,0x3fe00,0x1ffe00,0x3fe00,0xfff00,0x3fe00,0x7ff80,0x3fe00,0x7ffe0,0x3fe00,0x3fffc,0xf003fe00,0x1ffff, + 0xfffffe00,0xffff,0xfffffe00,0x7fff,0xfffffe00,0x1fff,0xfffffe00,0xfff,0xfffffe00,0x3ff,0xfffffe00,0x7f,0xfffffe00,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 209 + 0x0,0x0,0x800000,0x3f000,0xff80000,0x3f000,0x3ffc0000,0x3f000,0xfffe0000,0x1f000,0xffff0000,0x1f803,0xffff8000,0x1fc0f,0xffff8000,0x1ffff, + 0xfc1f8000,0xffff,0xf00fc000,0xffff,0xc00fc000,0x7fff,0xfc000,0x3fff,0x7c000,0x1ffc,0x7c000,0x7f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xffe00,0x7fc000,0x1ffe00,0x7fc000,0x1ffe00,0x7fc000,0x3ffe00,0x7fc000,0x3ffe00,0x7fc000, + 0x7ffe00,0x7fc000,0x7ffe00,0x7fc000,0x7ffe00,0x7fc000,0xfffe00,0x7fc000,0xfffe00,0x7fc000,0x1fffe00,0x7fc000,0x1fffe00,0x7fc000,0x3fffe00,0x7fc000, + 0x3fdfe00,0x7fc000,0x7fdfe00,0x7fc000,0x7f9fe00,0x7fc000,0xff9fe00,0x7fc000,0xff9fe00,0x7fc000,0x1ff1fe00,0x7fc000,0x1ff1fe00,0x7fc000,0x3fe1fe00,0x7fc000, + 0x3fe1fe00,0x7fc000,0x3fc1fe00,0x7fc000,0x7fc1fe00,0x7fc000,0x7f81fe00,0x7fc000,0xff81fe00,0x7fc000,0xff01fe00,0x7fc000,0xff01fe00,0x7fc001,0xfe01fe00,0x7fc001, + 0xfe01fe00,0x7fc003,0xfe01fe00,0x7fc003,0xfc01fe00,0x7fc007,0xfc01fe00,0x7fc007,0xf801fe00,0x7fc00f,0xf801fe00,0x7fc00f,0xf001fe00,0x7fc00f,0xf001fe00,0x7fc01f, + 0xe001fe00,0x7fc01f,0xe001fe00,0x7fc03f,0xc001fe00,0x7fc03f,0xc001fe00,0x7fc07f,0x8001fe00,0x7fc07f,0x8001fe00,0x7fc0ff,0x8001fe00,0x7fc0ff,0x1fe00,0x7fc1ff, + 0x1fe00,0x7fc1ff,0x1fe00,0x7fc3fe,0x1fe00,0x7fc3fe,0x1fe00,0x7fc7fc,0x1fe00,0x7fc7fc,0x1fe00,0x7fc7f8,0x1fe00,0x7fcff8,0x1fe00,0x7fcff0, + 0x1fe00,0x7fdff0,0x1fe00,0x7fdfe0,0x1fe00,0x7fbfe0,0x1fe00,0x7fbfe0,0x1fe00,0x7fffc0,0x1fe00,0x7fffc0,0x1fe00,0x7fff80,0x1fe00,0x7fff80, + 0x1fe00,0x7fff00,0x1fe00,0x7fff00,0x1fe00,0x7ffe00,0x1fe00,0x7ffe00,0x1fe00,0x7ffc00,0x1fe00,0x7ffc00,0x1fe00,0x7ffc00,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 210 + 0x0,0x0,0x7fe0000,0x0,0xffe0000,0x0,0x1ffc0000,0x0,0x3ff80000,0x0,0x7fe00000,0x0,0xffc00000,0x0,0xff800000,0x1, + 0xff000000,0x3,0xfc000000,0x7,0xf8000000,0xf,0xf0000000,0x1f,0xc0000000,0x1f,0x80000000,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0xffe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 211 + 0x0,0x0,0x0,0x7fe0,0x0,0x7ff0,0x0,0x3ff8,0x0,0x1ffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0x1ff, + 0xc0000000,0xff,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf,0xfc000000,0x3,0xfc000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0xffe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 212 + 0x0,0x0,0xf8000000,0x1f,0xfc000000,0x3f,0xfe000000,0x7f,0xff000000,0xff,0xff800000,0x1ff,0xffc00000,0x3ff,0x7fe00000,0x7fe, + 0x3ff00000,0xffc,0xff80000,0x1ff0,0x3fc0000,0x3fe0,0x1fe0000,0x7f80,0x7f0000,0xfe00,0x1f8000,0xfc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0xffe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 213 + 0x0,0x0,0x0,0x0,0xff80000,0x3f000,0x3ffc0000,0x3f000,0xfffe0000,0x1f000,0xffff0000,0x1f803,0xffff8000,0x1fc0f,0xffff8000,0x1ff7f, + 0xfc3f8000,0xffff,0xf00fc000,0xffff,0xc00fc000,0x7fff,0xfc000,0x3fff,0x7c000,0x1ffc,0x7c000,0x7f0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0xffe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 214 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xfc000000,0x3f,0xffc00000,0x1ff,0xfff00000,0xfff,0xfffc0000,0x1fff,0xfffe0000,0x7fff,0xffff8000,0xffff, + 0xffffc000,0x1ffff,0xffffe000,0x3ffff,0x7ffe000,0x7fff0,0x1fff000,0x7ff80,0x7ff800,0xfff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff000,0x7ff00,0x7ff000,0x3ff00,0x7fe000,0x3ff00,0xffe000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0x1ffc000,0x1ff80,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x3ff8000, + 0xffc0,0x3ff8000,0xffc0,0x3ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0xffc0,0x1ff8000,0x1ffc0,0x1ff8000,0x1ffc0,0x1ff8000, + 0x1ff80,0x1ff8000,0x1ff80,0x1ffc000,0x1ff80,0xffc000,0x3ff80,0xffc000,0x3ff80,0xffc000,0x3ff00,0xffe000,0x3ff00,0x7fe000,0x7ff00,0x7fe000, + 0x7fe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ff800,0x1ffc00,0x7ff800,0xfff00,0xfff000,0x7ff80,0x3fff000,0x7ffe0, + 0x3fffe000,0x3fffc,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 215 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6000,0x20000,0xf000,0x70000, + 0x1f800,0xf8000,0x3fc00,0x1fc000,0x7fe00,0x3fe000,0xffe00,0x3ff000,0x1ffc00,0x1ff800,0x3ff800,0xffc00,0x7ff000,0x7fe00,0xffe000,0x3ff00, + 0x1ffc000,0x1ff80,0x3ff8000,0xffc0,0x7ff0000,0x7fe0,0xffe0000,0x3ff0,0x1ffc0000,0x1ff8,0x3ff80000,0xffc,0x7ff00000,0x7fe,0xffe00000,0x3ff, + 0xffc00000,0x1ff,0xff800000,0xff,0xff000000,0x7f,0xfe000000,0x3f,0xfc000000,0x1f,0xfc000000,0x3f,0xfe000000,0x7f,0xff000000,0xff, + 0xff800000,0x1ff,0xffc00000,0x3ff,0x7fe00000,0x7ff,0x3ff00000,0xffe,0x1ff80000,0x1ffc,0xffc0000,0x3ff8,0x7fe0000,0x7ff0,0x3ff0000,0xffe0, + 0x1ff8000,0x1ffc0,0xffc000,0x3ff80,0x7fe000,0x7ff00,0x3ff000,0xffe00,0x1ff800,0x1ffc00,0xffc00,0x3ff800,0x7fe00,0x7ff000,0x3fe00,0x3fe000, + 0x1fc00,0x1fc000,0xf800,0xf8000,0x7000,0x70000,0x2000,0x20000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 216 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x800000,0xfc000000,0x3c0003f,0xffc00000,0x7e001ff,0xfff00000,0xff00fff,0xfffc0000,0x7f01fff,0xfffe0000,0x3f87fff,0xffff8000,0x1fcffff, + 0xffffc000,0x1ffffff,0xffffe000,0xffffff,0x7ffe000,0x7ffff0,0x1fff000,0x3fffc0,0x7ff800,0x3fff00,0x3ff800,0x1ffe00,0x1ffc00,0x1ffc00,0x1ffc00,0x3ff800, + 0xffe00,0x3ff800,0x7fe00,0x7ff800,0x7ff00,0x7ffc00,0x3ff00,0x7ffe00,0x3ff00,0xffff00,0x3ff80,0xffff00,0x3ff80,0xffff80,0x1ff80,0xffdfc0, + 0x1ff80,0x1ffdfe0,0x1ff80,0x1ff8fe0,0x1ffc0,0x1ff87f0,0x1ffc0,0x1ff83f8,0xffc0,0x1ff83fc,0xffc0,0x1ff81fc,0xffc0,0x1ff80fe,0xffc0,0x1ff807f, + 0x8000ffc0,0x1ff807f,0x8000ffc0,0x3ff803f,0xc000ffc0,0x3ff801f,0xe000ffc0,0x3ff800f,0xf000ffc0,0x3ff800f,0xf000ffc0,0x3ff8007,0xf800ffc0,0x3ff8003,0xfc00ffc0,0x3ff8001, + 0xfe00ffc0,0x3ff8001,0xfe00ffc0,0x3ff8000,0x7f00ffc0,0x1ff8000,0x7f80ffc0,0x1ff8000,0x3fc0ffc0,0x1ff8000,0x1fc0ffc0,0x1ff8000,0xfe1ffc0,0x1ff8000,0xff1ffc0,0x1ff8000, + 0x7f9ff80,0x1ff8000,0x3f9ff80,0x1ffc000,0x1fdff80,0xffc000,0x1ffff80,0xffc000,0xffff00,0xffc000,0x7fff00,0xffe000,0x3fff00,0x7fe000,0x3fff00,0x7fe000, + 0x1ffe00,0x7ff000,0xffe00,0x3ff000,0x1ffc00,0x3ff800,0x1ffc00,0x1ffc00,0x3ffc00,0x1ffc00,0x7ffc00,0xfff00,0xfffe00,0x7ff80,0x3ffff00,0x7ffe0, + 0x3fffff00,0x3fffc,0xffffff80,0x1ffff,0xffff9fc0,0xffff,0xffff1fe0,0x7fff,0xfffc0fe0,0x3fff,0xfff807f0,0xfff,0xffe003f0,0x3ff,0xff0003e0,0x7f, + 0x80000180,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 217 + 0x0,0x0,0x7ff0000,0x0,0x7ff0000,0x0,0xffe0000,0x0,0x1ff80000,0x0,0x3ff00000,0x0,0x7fe00000,0x0,0xff800000,0x0, + 0xff000000,0x1,0xfe000000,0x3,0xfc000000,0x7,0xf0000000,0xf,0xe0000000,0x1f,0xc0000000,0x3f,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0xffe00,0x3ff800,0xffc00,0x1ff800,0x1ffc00,0x1ffc00,0x3ff800,0xfff00,0xfff800,0xfffc0, + 0x1ffff000,0x7fffe,0xfffff000,0x3ffff,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 218 + 0x0,0x0,0x0,0x7ff0,0x0,0x7ff8,0x0,0x1ffc,0x0,0xffe,0x0,0x7fe,0x0,0x3ff,0x80000000,0xff, + 0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf,0xf8000000,0x7,0xfc000000,0x3,0xfe000000,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0xffe00,0x3ff800,0xffc00,0x1ff800,0x1ffc00,0x1ffc00,0x3ff800,0xfff00,0xfff800,0xfffc0, + 0x1ffff000,0x7fffe,0xfffff000,0x3ffff,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 219 + 0x0,0x0,0xf8000000,0x1f,0xfc000000,0x3f,0xfe000000,0x7f,0xff000000,0xff,0xff800000,0x1ff,0xffc00000,0x3ff,0x7fe00000,0x7fe, + 0x3ff00000,0xffc,0xff80000,0x1ff0,0x3fc0000,0x3fe0,0x1fe0000,0x7f80,0x7f0000,0xfe00,0x1f8000,0xfc00,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0xffe00,0x3ff800,0xffc00,0x1ff800,0x1ffc00,0x1ffc00,0x3ff800,0xfff00,0xfff800,0xfffc0, + 0x1ffff000,0x7fffe,0xfffff000,0x3ffff,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 220 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff00,0xffc000,0x3ff00,0xffc000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000,0x3ff00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0xffe00,0x3ff800,0xffc00,0x1ff800,0x1ffc00,0x1ffc00,0x3ff800,0xfff00,0xfff800,0xfffc0, + 0x1ffff000,0x7fffe,0xfffff000,0x3ffff,0xffffe000,0x3ffff,0xffffc000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffc00000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 221 + 0x0,0x0,0x0,0xffe0,0x0,0x7ff0,0x0,0x3ff8,0x0,0x1ffc,0x0,0xffe,0x0,0x3ff,0x80000000,0x1ff, + 0xc0000000,0xff,0xe0000000,0x3f,0xe0000000,0x1f,0xf0000000,0xf,0xf8000000,0x3,0xfc000000,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1ff8,0x1ffc0000,0x3ff8,0xffc0000,0x3ff0,0x7fe0000,0x7fe0,0x7ff0000,0x7fe0,0x3ff0000, + 0xffc0,0x3ff8000,0x1ffc0,0x1ff8000,0x1ff80,0xffc000,0x3ff00,0xffe000,0x7ff00,0x7fe000,0x7fe00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x1ff800, + 0x1ff800,0xffc00,0x3ff000,0xffc00,0x3ff000,0x7fe00,0x7fe000,0x7fe00,0x7fe000,0x3ff00,0xffc000,0x1ff80,0x1ff8000,0x1ff80,0x1ff8000,0xffc0, + 0x3ff0000,0x7fc0,0x7fe0000,0x7fe0,0x7fe0000,0x3ff0,0xffc0000,0x3ff0,0xffc0000,0x1ff8,0x1ff80000,0xffc,0x3ff00000,0xffc,0x3ff00000,0x7fe, + 0x7fe00000,0x3fe,0x7fc00000,0x3ff,0xffc00000,0x1ff,0xff800000,0xff,0xff000000,0xff,0xff000000,0x7f,0xfe000000,0x7f,0xfe000000,0x3f, + 0xfc000000,0x1f,0xf8000000,0x1f,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 222 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0xfffffe00,0x7f, + 0xfffffe00,0x7ff,0xfffffe00,0x3fff,0xfffffe00,0xffff,0xfffffe00,0x1ffff,0xfffffe00,0x7ffff,0xfffffe00,0xfffff,0x3fe00,0x1ffff8,0x3fe00,0x1fff80, + 0x3fe00,0x3ffe00,0x3fe00,0x7ff800,0x3fe00,0x7ff000,0x3fe00,0xffe000,0x3fe00,0xffe000,0x3fe00,0xffc000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000, + 0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff0000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0x1ff8000, + 0x3fe00,0x1ff8000,0x3fe00,0x1ff8000,0x3fe00,0xff8000,0x3fe00,0xffc000,0x3fe00,0xffc000,0x3fe00,0xffe000,0x3fe00,0x7ff000,0x3fe00,0x3ff800, + 0x3fe00,0x3ffc00,0x3fe00,0x1fff00,0x3fe00,0xfffc0,0xfffffe00,0xfffff,0xfffffe00,0x7ffff,0xfffffe00,0x1ffff,0xfffffe00,0xffff,0xfffffe00,0x3fff, + 0xfffffe00,0xfff,0xfffffe00,0x1ff,0xfffffe00,0x7,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0, + 0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x3fe00,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 223 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc000000,0x1f,0xffe00000,0x1ff,0xfff80000,0xfff,0xfffe0000,0x3fff, + 0xffff0000,0x7fff,0xffffc000,0xffff,0xffffe000,0x1ffff,0xffff000,0x3fffc,0x1fff000,0x7ffc0,0x7ff800,0x7ff00,0x1ffc00,0xffe00,0xffc00,0xffc00, + 0xffc00,0xff800,0x7fe00,0xff800,0x7fe00,0xff000,0x3fe00,0xff000,0x3ff00,0xff000,0x3ff00,0xff000,0x1ff00,0xff800,0x1ff00,0xff800, + 0x1ff00,0xffc00,0x1ff00,0x7fc00,0x1ff00,0x7fe00,0x1ff00,0x3ff00,0x1ff00,0x1ff80,0x1ff00,0xffc0,0x1ff00,0xffe0,0x1ff00,0x7ff0, + 0x1ff00,0x3ff8,0x1ff00,0xffc,0x1ff00,0xffc,0x1ff00,0x7fe,0x1ff00,0x3fe,0x1ff00,0x1fe,0x1ff00,0x1fe,0x1ff00,0x1fe, + 0x1ff00,0x1fe,0x1ff00,0x3fe,0x1ff00,0x3fe,0x1ff00,0x7fe,0x1ff00,0xffe,0x1ff00,0x1ffc,0x1ff00,0x7ffc,0x1ff00,0xfff8, + 0x1ff00,0x3fff0,0x1ff00,0x7ffe0,0x1ff00,0xfffc0,0x1ff00,0x3fff00,0x1ff00,0x7ffe00,0x1ff00,0x7ffc00,0x1ff00,0xfff000,0x1ff00,0x1ffe000, + 0x1ff00,0x3ff8000,0x1ff00,0x3ff0000,0x1ff00,0x7fe0000,0x1ff00,0x7fe0000,0x1ff00,0x7fc0000,0x1ff00,0x7fc0000,0x1ff00,0xff80000,0x1ff00,0xff80000, + 0x1ff00,0xff80000,0x1ff00,0xff80000,0x1ff00,0xff80000,0x1ff00,0xff80000,0x1ff00,0x7fc0000,0x1ff00,0x7fc0000,0x801ff00,0x7fe0000,0x3801ff00,0x3ff0000, + 0xf801ff00,0x3ff8001,0xf801ff00,0x1fff87f,0xf801ff00,0x1ffffff,0xf801ff00,0xffffff,0xf801ff00,0x7fffff,0xf801ff00,0x3fffff,0xf801ff00,0xfffff,0xc0000000,0x3ffff, + 0x0,0x7ff8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 224 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ff8000,0x0,0x3ff8000,0x0,0x7ff0000,0x0, + 0xffe0000,0x0,0x1ff80000,0x0,0x3ff00000,0x0,0x7fe00000,0x0,0xff800000,0x0,0xff000000,0x1,0xfe000000,0x3,0xfc000000,0x7, + 0xf0000000,0xf,0xe0000000,0x1f,0xc0000000,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 225 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff0,0x0,0x3ff8,0x0,0x1ffc, + 0x0,0xffe,0x0,0x7ff,0x80000000,0x3ff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf,0xf8000000,0x7, + 0xfc000000,0x3,0xfe000000,0x0,0x7e000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 226 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0x7,0xfc000000,0xf,0xfe000000,0x1f, + 0xff000000,0x3f,0xffc00000,0x7f,0xffe00000,0xff,0xfff00000,0x1ff,0x1ff80000,0x3fe,0xffc0000,0x7fc,0x3fe0000,0x1ff0,0xff0000,0x3fe0, + 0x7f8000,0x7f80,0x1fc000,0xfe00,0x7c000,0xfc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 227 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f00000,0x1f000,0x1ffc0000,0x1f800, + 0x7ffe0000,0x1f800,0xffff0000,0x1f801,0xffff8000,0x1fc07,0xffff8000,0xfe1f,0xffffc000,0xffff,0xf80fc000,0xffff,0xe00fc000,0x7fff,0x8007c000,0x3fff, + 0x7e000,0x1ffe,0x7e000,0xff8,0x7e000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 228 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x1fe0000,0x1fe0, + 0x1fe0000,0x1fe0,0x1fe0000,0x1fe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 229 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf8000000,0xf,0xff000000,0x3f,0xff800000,0xff,0xffc00000,0x1ff,0xffe00000,0x3ff,0xfff00000,0x3ff,0xff00000,0x7f8, + 0x3f80000,0x7f0,0x1f80000,0x7e0,0x1f80000,0xfe0,0x1f80000,0xfe0,0x1f80000,0x7e0,0x3f80000,0x7f0,0xff00000,0x7f8,0xfff00000,0x3ff, + 0xffe00000,0x3ff,0xffc00000,0x1ff,0xff800000,0xff,0xff000000,0x7f,0xfc000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0, + 0xffc00000,0x7f,0xfff80000,0x3ff,0xfffe0000,0xfff,0xffff0000,0x1fff,0xffffc000,0x3fff,0xffffe000,0x7fff,0xffffe000,0xffff,0xfff000,0x1fff0, + 0x3ff800,0x1ffc0,0x1ff800,0x3ff80,0x1ffc00,0x3ff00,0xffc00,0x3fe00,0xffc00,0x7fe00,0x7fc00,0x7fe00,0x7f800,0x7fc00,0x0,0x7fc00, + 0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0xfe000000,0x7ffff,0xfff00000,0x7ffff, + 0xfffe0000,0x7ffff,0xffff8000,0x7ffff,0xffffe000,0x7ffff,0xfffff000,0x7ffff,0xfffff800,0x7fc0f,0x1fffc00,0x7fc00,0x3ffc00,0x7fc00,0xffe00,0x7fc00, + 0x7ff00,0x7fc00,0x7ff00,0x7fc00,0x3ff00,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fc00,0x1ff80,0x7fe00,0x1ff80,0x7fe00,0x1ff80,0x7fe00, + 0x1ff80,0x7ff00,0x1ff80,0x7ff00,0x1ff80,0x7ff80,0x1ff80,0x7ffc0,0x1ff80,0x7ffe0,0x3ff00,0xffff0,0x3ff00,0xffdf8,0x7ff00,0xff9fc, + 0x801ffe00,0x1ff8ff,0xfdfffe00,0x3ff87f,0xfffffc00,0x7fff83f,0xfffff800,0x7fff01f,0xfffff800,0x7fff00f,0xffffe000,0x7ffe007,0xffffc000,0x7ffc001,0x3fff0000,0x3fe0000, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 230 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3ffe000,0x3ff00,0xffff800,0x1fffe0,0x1ffffc00,0x3ffff0,0x3fffff00,0x7ffff8,0x7fffff80,0xfffffc,0xffffff80,0x1fffffe,0xffffffc0,0x1ffc7ff,0xff80ffc0,0x3ff00ff, + 0xfe003fe0,0x3fe007f,0xfe003fe0,0x7fc003f,0xfc001fe0,0x7f8003f,0xfc001ff0,0xff8001f,0xfc001ff0,0xff0001f,0xfc001ff0,0xff0000f,0xf8000fe0,0xff0000f,0xf8000000,0x1fe0000f, + 0xf8000000,0x1fe0000f,0xf8000000,0x1fe0000f,0xf8000000,0x1fe00007,0xf8000000,0x1fe00007,0xf8000000,0x1fe00007,0xf8000000,0x1fe00007,0xffff8000,0x3fe00007,0xfffff800,0x3fffffff, + 0xfffffe00,0x3fffffff,0xffffff80,0x3fffffff,0xffffffc0,0x3fffffff,0xffffffe0,0x3fffffff,0xf87ffff0,0x3fffffff,0xf8007ff0,0x3fffffff,0xf8003ff8,0x7,0xf8001ff8,0x7, + 0xf8000ff8,0x7,0xf80007fc,0x7,0xf80007fc,0x7,0xf80007fc,0x7,0xfc0003fc,0x7,0xfc0003fc,0x7,0xfc0003fc,0xf,0xfc0003fc,0xf, + 0xfc0003fc,0xf,0xfe0003fc,0x20000f,0xfe0003fc,0x1e0001f,0xff0003fc,0xfe0001f,0xff0007fc,0xff0001f,0xdf8007fc,0xff0003f,0xdfc007fc,0x7f8003f,0x8fe00ffc,0x7fc007f, + 0x8ff01ff8,0x7fe01ff,0x7fe7ff8,0x3ffc7ff,0x3fffff0,0x1ffffff,0x3fffff0,0x1fffffe,0x1ffffe0,0xfffffc,0xffffc0,0x3ffff8,0x3fff80,0x1ffff0,0xffe00,0x7ffc0, + 0x4000,0x1000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 231 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xfe000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffc0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x3ffff,0xffffc000,0x7ffff,0x7ffe000,0x7ffc0, + 0xfff000,0xfff00,0x7ff000,0x1ffc00,0x3ff800,0x1ff800,0x1ffc00,0x3ff800,0xffc00,0x3ff000,0x7fc00,0x7ff000,0x7fe00,0x7fe000,0x3fe00,0x7fe000, + 0x3fe00,0xe000,0x3ff00,0x0,0x3ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x7fe000, + 0x3fe00,0x7fe000,0x7fe00,0x7fe000,0x7fc00,0x7ff000,0xffc00,0x3ff000,0x1ffc00,0x3ff800,0x3ff800,0x1ff800,0x7ff000,0x1ffe00,0xfff000,0xfff00, + 0x3ffe000,0x7ffc0,0xffffc000,0x3ffff,0xffff8000,0x1ffff,0xffff0000,0xffff,0xfffe0000,0x7fff,0xfff80000,0x1fff,0xffe00000,0x7ff,0xff000000,0xff, + 0xe0000000,0x3,0xf0000000,0x3,0xf0000000,0x1,0xf0000000,0x1,0xf8000000,0x1,0xf8000000,0x1f,0xf8000000,0x7f,0xfc000000,0xff, + 0xfc000000,0x1ff,0x0,0x3fe,0x0,0x3f8,0x0,0x3f8,0x0,0x3f8,0x0,0x3f8,0x0,0x3f8,0x0,0x3fc, + 0x0,0x1ff,0xff000000,0x1ff,0xff000000,0xff,0xff000000,0x7f,0xff000000,0x1f,0xff000000,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 232 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0xffe0000,0x0,0x1ffc0000,0x0, + 0x3ff80000,0x0,0x7ff00000,0x0,0xffc00000,0x0,0xff800000,0x1,0xff000000,0x3,0xfc000000,0x7,0xf8000000,0xf,0xf0000000,0x1f, + 0xc0000000,0x1f,0x80000000,0x3f,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x3fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x3ffe000,0x3ffc0, + 0xfff000,0x7ff00,0x3ff000,0xffe00,0x1ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x1ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000, + 0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xff8000,0xffffff80,0xffffff, + 0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x0, + 0x7fe00,0x0,0x7fe00,0x4000,0xffc00,0x7c000,0xffc00,0x7fe000,0x1ff800,0x3fe000,0x3ff800,0x3ff000,0x7ff000,0x1ff800,0xfff000,0x1ffe00, + 0x3ffe000,0xfff80,0x7fffc000,0x7fff8,0xffff8000,0x3ffff,0xffff0000,0x1ffff,0xfffc0000,0x7fff,0xfff80000,0x3fff,0xffe00000,0x7ff,0xff000000,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 233 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0,0x0,0xffe0,0x0,0x7ff0, + 0x0,0x3ff8,0x0,0x1ffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0x1ff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f, + 0xf8000000,0x7,0xf8000000,0x3,0xf8000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x3fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x3ffe000,0x3ffc0, + 0xfff000,0x7ff00,0x3ff000,0xffe00,0x1ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x1ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000, + 0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xff8000,0xffffff80,0xffffff, + 0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x0, + 0x7fe00,0x0,0x7fe00,0x4000,0xffc00,0x7c000,0xffc00,0x7fe000,0x1ff800,0x3fe000,0x3ff800,0x3ff000,0x7ff000,0x1ff800,0xfff000,0x1ffe00, + 0x3ffe000,0xfff80,0x7fffc000,0x7fff8,0xffff8000,0x3ffff,0xffff0000,0x1ffff,0xfffc0000,0x7fff,0xfff80000,0x3fff,0xffe00000,0x7ff,0xff000000,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 234 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x1f,0xf8000000,0x3f,0xfc000000,0x7f, + 0xfe000000,0xff,0xff000000,0x1ff,0xff800000,0x3ff,0xffc00000,0x7ff,0x7fe00000,0xffc,0x1ff80000,0x1ff0,0x7fc0000,0x3fe0,0x3fe0000,0x7f80, + 0xff0000,0xff00,0x3f8000,0x1fc00,0x1f8000,0x1f800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x3fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x3ffe000,0x3ffc0, + 0xfff000,0x7ff00,0x3ff000,0xffe00,0x1ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x1ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000, + 0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xff8000,0xffffff80,0xffffff, + 0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x0, + 0x7fe00,0x0,0x7fe00,0x4000,0xffc00,0x7c000,0xffc00,0x7fe000,0x1ff800,0x3fe000,0x3ff800,0x3ff000,0x7ff000,0x1ff800,0xfff000,0x1ffe00, + 0x3ffe000,0xfff80,0x7fffc000,0x7fff8,0xffff8000,0x3ffff,0xffff0000,0x1ffff,0xfffc0000,0x7fff,0xfff80000,0x3fff,0xffe00000,0x7ff,0xff000000,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 235 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x3fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x3ffe000,0x3ffc0, + 0xfff000,0x7ff00,0x3ff000,0xffe00,0x1ff800,0xffc00,0x1ffc00,0x1ff800,0xffc00,0x1ff000,0x7fc00,0x3ff000,0x7fe00,0x3fe000,0x3fe00,0x3fe000, + 0x3fe00,0x7fe000,0x3ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xff8000,0xffffff80,0xffffff, + 0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0xffffff80,0xffffff,0x1ff80,0x0,0x1ff80,0x0, + 0x1ff80,0x0,0x1ff00,0x0,0x1ff00,0x0,0x1ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3ff00,0x0,0x3fe00,0x0, + 0x7fe00,0x0,0x7fe00,0x4000,0xffc00,0x7c000,0xffc00,0x7fe000,0x1ff800,0x3fe000,0x3ff800,0x3ff000,0x7ff000,0x1ff800,0xfff000,0x1ffe00, + 0x3ffe000,0xfff80,0x7fffc000,0x7fff8,0xffff8000,0x3ffff,0xffff0000,0x1ffff,0xfffc0000,0x7fff,0xfff80000,0x3fff,0xffe00000,0x7ff,0xff000000,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 236 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0000,0x0,0x1ffc0000,0x0,0x3ffc0000,0x0, + 0x3ff00000,0x0,0x7fe00000,0x0,0xffc00000,0x0,0xff000000,0x1,0xfe000000,0x3,0xfc000000,0x7,0xf0000000,0xf,0xe0000000,0x1f, + 0xc0000000,0x3f,0x80000000,0x7f,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 237 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0,0x0,0xffe0,0x0,0x7ff0, + 0x0,0x3ff8,0x0,0xffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf, + 0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 238 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0x1f,0xf8000000,0x3f,0xfc000000,0x7f, + 0xfe000000,0xff,0xff000000,0x1ff,0xff800000,0x3ff,0xffc00000,0x7fe,0x7fe00000,0xffc,0x1ff00000,0x1ff0,0x7f80000,0x3fe0,0x3fc0000,0x7f80, + 0xff0000,0xff00,0x3f8000,0x1fc00,0x1f8000,0x1f000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 239 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff00000,0xff00,0xff00000,0xff00,0xff00000,0xff00,0xff00000,0xff00,0xff00000,0xff00,0xff00000,0xff00,0xff00000,0xff00,0xff00000,0xff00, + 0xff00000,0xff00,0xff00000,0xff00,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f,0xffffe000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f,0xe0000000,0x3f, + 0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0xffffff00,0x3ffffff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 240 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff0000,0xe000,0xffe0000,0x1f800,0x3ff80000,0x1fe00,0x7fe00000,0x3ffc0, + 0xffc00000,0x3fff1,0xff000000,0x1ffff,0xfe000000,0x7fff,0xfc000000,0x1fff,0xfc000000,0x3ff,0xff000000,0xff,0xffc00000,0xff,0xfff80000,0x1ff, + 0xfffe0000,0x3ff,0x3fff0000,0x7fe,0xffe0000,0xffc,0x3fe0000,0x1ff8,0xfc0000,0x3ff0,0x1c0000,0x7fe0,0x0,0x7fe0,0x0,0xffc0, + 0x0,0x1ff80,0x0,0x1ff80,0x0,0x3ff00,0x0,0x3fe00,0x0,0x7fe00,0x0,0x7fc00,0xff000000,0xffc3f,0xffe00000,0xff9ff, + 0xfffc0000,0x1fffff,0xfffe0000,0x1fffff,0xffff8000,0x1fffff,0xffffc000,0x3fffff,0xffffe000,0x3fffff,0x1fff000,0x3fffc0,0x7ff800,0x7fff00,0x3ff800,0x7ffc00, + 0x1ffc00,0x7ff800,0xffc00,0x7ff000,0x7fe00,0xfff000,0x7fe00,0xffe000,0x3ff00,0xffe000,0x3ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0xff80,0xff8000,0xff80,0xff8000, + 0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0x7fc000,0x1ff00,0x7fc000, + 0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x3fe000,0x7fe00,0x3ff000,0xffe00,0x3ff000,0xffc00,0x1ff800,0x1ff800,0xffc00,0x7ff800,0xfff00, + 0xfff000,0x7ff80,0xfffe000,0x3fff8,0xffffc000,0x1ffff,0xffff8000,0xffff,0xffff0000,0x7fff,0xfffc0000,0x1fff,0xfff00000,0x7ff,0xff800000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 241 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe00000,0x3e000,0x3ff80000,0x3f000, + 0xfffc0000,0x3f000,0xfffe0000,0x3f003,0xffff0000,0x3f80f,0xffff0000,0x1fc3f,0xffff8000,0x1ffff,0xf01f8000,0xffff,0xc01f8000,0xffff,0xfc000,0x7fff, + 0xfc000,0x3ffc,0xfc000,0x1ff0,0xfc000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc0000000,0x7ff,0xf803fc00,0x3fff,0xfe03fc00,0x7fff,0xff03fc00,0x1ffff,0xff83fc00,0x3ffff,0xffc3fc00,0x3ffff,0xffe7fc00,0x7ffff,0x1ff7fc00,0xfff80, + 0x3f7fc00,0xfff00,0x1fffc00,0xffc00,0xfffc00,0x1ffc00,0x7ffc00,0x1ff800,0x3ffc00,0x1ff800,0x1ffc00,0x1ff000,0x1ffc00,0x1ff000,0x1ffc00,0x3ff000, + 0xffc00,0x3ff000,0xffc00,0x3ff000,0xffc00,0x3ff000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 242 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0000,0x0,0xffe0000,0x0,0x1ffc0000,0x0, + 0x3ff00000,0x0,0x7fe00000,0x0,0xffc00000,0x0,0xff800000,0x1,0xfe000000,0x3,0xfc000000,0x7,0xf8000000,0xf,0xe0000000,0x1f, + 0xc0000000,0x3f,0x80000000,0x7f,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x1ffe000,0x7ffc0, + 0xfff000,0xfff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000, + 0x3ff00,0x7fe000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ffc00,0x1ff800,0x1ff800,0xffc00,0x3ff000,0xffe00,0xfff000,0x7ff00, + 0x1ffe000,0x3ffc0,0xfffc000,0x3fffc,0xffff8000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 243 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffe0,0x0,0xfff0,0x0,0x7ff0, + 0x0,0x1ff8,0x0,0xffc,0x0,0x7fe,0x0,0x1ff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0xf, + 0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x1ffe000,0x7ffc0, + 0xfff000,0xfff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000, + 0x3ff00,0x7fe000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ffc00,0x1ff800,0x1ff800,0xffc00,0x3ff000,0xffe00,0xfff000,0x7ff00, + 0x1ffe000,0x3ffc0,0xfffc000,0x3fffc,0xffff8000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 244 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0xf,0xf8000000,0x1f,0xfe000000,0x3f, + 0xff000000,0x7f,0xff800000,0xff,0xffc00000,0x1ff,0xffe00000,0x3ff,0x3ff00000,0x7fc,0x1ff80000,0xff8,0x7fc0000,0x1fe0,0x1fe0000,0x3fc0, + 0xff0000,0x7f00,0x3f8000,0xfc00,0xf8000,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x1ffe000,0x7ffc0, + 0xfff000,0xfff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000, + 0x3ff00,0x7fe000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ffc00,0x1ff800,0x1ff800,0xffc00,0x3ff000,0xffe00,0xfff000,0x7ff00, + 0x1ffe000,0x3ffc0,0xfffc000,0x3fffc,0xffff8000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 245 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f00000,0x3f000,0x1ffc0000,0x3f000, + 0x7ffe0000,0x1f000,0xffff0000,0x1f801,0xffff0000,0x1f807,0xffff8000,0x1fc1f,0xff7f8000,0xffff,0xf81fc000,0xffff,0xe00fc000,0x7fff,0x800fc000,0x7fff, + 0x7c000,0x3ffe,0x7c000,0xff8,0x7e000,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x1ffe000,0x7ffc0, + 0xfff000,0xfff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000, + 0x3ff00,0x7fe000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ffc00,0x1ff800,0x1ff800,0xffc00,0x3ff000,0xffe00,0xfff000,0x7ff00, + 0x1ffe000,0x3ffc0,0xfffc000,0x3fffc,0xffff8000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 246 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff000000,0xff,0xffe00000,0x7ff,0xfff80000,0x1fff,0xfffe0000,0x7fff,0xffff0000,0xffff,0xffff8000,0x1ffff,0x1fffc000,0x3fff8,0x1ffe000,0x7ffc0, + 0xfff000,0xfff00,0x3ff800,0xffe00,0x1ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffc00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x3ff000,0x7fe00,0x7fe000, + 0x3ff00,0x7fe000,0x3ff00,0x7fc000,0x3ff00,0x7fc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xff8000,0x1ff80,0xffc000,0x1ff80,0xffc000, + 0x1ff80,0xffc000,0x1ff80,0xffc000,0x1ff00,0xffc000,0x1ff00,0xffc000,0x1ff00,0x7fc000,0x3ff00,0x7fc000,0x3ff00,0x7fe000,0x3fe00,0x7fe000, + 0x7fe00,0x7fe000,0x7fe00,0x3ff000,0x7fc00,0x3ff000,0xffc00,0x1ff800,0x1ffc00,0x1ff800,0x1ff800,0xffc00,0x3ff000,0xffe00,0xfff000,0x7ff00, + 0x1ffe000,0x3ffc0,0xfffc000,0x3fffc,0xffff8000,0x1ffff,0xffff0000,0x7fff,0xfffe0000,0x3fff,0xfff80000,0xfff,0xffe00000,0x3ff,0xff000000,0x7f, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 247 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff,0xffffffc0,0x1ffffff, + 0xffffffc0,0x1ffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf, + 0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0xf8000000,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 248 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff800000,0xff,0xfff00000,0x3807ff,0xfffc0000,0x783fff,0xffff0000,0xfc7fff,0xffff8000,0xffffff,0xffffc000,0x7fffff,0x1fffe000,0x3ffff8,0x1fff000,0x1fff80, + 0x7ff800,0xffe00,0x3ff800,0x1ffc00,0x1ffc00,0x1ff800,0xffe00,0x3ff800,0x7fe00,0x7ffc00,0x7fe00,0x7ffe00,0x3ff00,0x7fff00,0x3ff00,0xffff80, + 0x1ff00,0xffdfc0,0x1ff80,0xffcfe0,0x1ff80,0xff87f0,0x1ff80,0xff87f0,0xff80,0x1ff83f8,0xffc0,0x1ff81fc,0xffc0,0x1ff80fe,0xffc0,0x1ff807f, + 0x8000ffc0,0x1ff003f,0xc000ffc0,0x1ff001f,0xe000ffc0,0x1ff000f,0xe000ffc0,0x1ff000f,0xf000ffc0,0x1ff0007,0xf800ffc0,0x1ff0003,0xfc00ffc0,0x1ff8001,0xfe00ffc0,0x1ff8000, + 0x7f00ffc0,0x1ff8000,0x3f80ffc0,0x1ff8000,0x1fc0ff80,0x1ff8000,0xfe0ff80,0x1ff8000,0xfe0ff80,0xff8000,0x7f1ff80,0xff8000,0x3f9ff80,0xffc000,0x1fdff00,0xffc000, + 0xffff00,0x7fc000,0x7fff00,0x7fe000,0x3ffe00,0x7fe000,0x1ffe00,0x3ff000,0xffc00,0x3ff000,0x1ffc00,0x1ff800,0x3ff800,0x1ffc00,0x7ff800,0xfff00, + 0x1fffc00,0x7ffc0,0xffffe00,0x3fff8,0xffffff00,0x1ffff,0xffffbf80,0xffff,0xfffe1f80,0x7fff,0xfffc0f00,0x1fff,0xffe00c00,0x7ff,0xff000000,0xff, + 0x80000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 249 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3ff0000,0x0,0x7ff0000,0x0,0xffe0000,0x0, + 0x1ffc0000,0x0,0x3ff00000,0x0,0x7fe00000,0x0,0xffc00000,0x0,0xff000000,0x1,0xfe000000,0x3,0xfc000000,0x7,0xf8000000,0xf, + 0xe0000000,0x1f,0xc0000000,0x3f,0x80000000,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000, + 0x7fc00,0x3ff800,0xffc00,0x3ff800,0xffc00,0x3ffc00,0xffc00,0x3ffc00,0xff800,0x3ffe00,0x1ff800,0x3fff00,0x3ff800,0x3fff80,0x7ff800,0x3fefc0, + 0xfff000,0x3fe7f0,0xfffff000,0x3fe7ff,0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffff8000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffc0000,0x3fe01f,0xfff00000,0x3, + 0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 250 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fe0,0x0,0x7ff0,0x0,0x3ff8, + 0x0,0x1ffc,0x0,0xffe,0x0,0x3ff,0x80000000,0x1ff,0xc0000000,0xff,0xe0000000,0x3f,0xf0000000,0x1f,0xf8000000,0xf, + 0xfc000000,0x3,0xfe000000,0x1,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000, + 0x7fc00,0x3ff800,0xffc00,0x3ff800,0xffc00,0x3ffc00,0xffc00,0x3ffc00,0xff800,0x3ffe00,0x1ff800,0x3fff00,0x3ff800,0x3fff80,0x7ff800,0x3fefc0, + 0xfff000,0x3fe7f0,0xfffff000,0x3fe7ff,0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffff8000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffc0000,0x3fe01f,0xfff00000,0x3, + 0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 251 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0000000,0xf,0xf8000000,0x1f,0xfe000000,0x3f, + 0xff000000,0x7f,0xff800000,0xff,0xffc00000,0x1ff,0xffe00000,0x3ff,0x3ff00000,0x7fc,0x1ff80000,0xff8,0x7fc0000,0x1fe0,0x1fe0000,0x3fc0, + 0xff0000,0x7f00,0x3f8000,0xfc00,0xf8000,0xf800,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000, + 0x7fc00,0x3ff800,0xffc00,0x3ff800,0xffc00,0x3ffc00,0xffc00,0x3ffc00,0xff800,0x3ffe00,0x1ff800,0x3fff00,0x3ff800,0x3fff80,0x7ff800,0x3fefc0, + 0xfff000,0x3fe7f0,0xfffff000,0x3fe7ff,0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffff8000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffc0000,0x3fe01f,0xfff00000,0x3, + 0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 252 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3fe000, + 0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000,0x7fc00,0x3ff000, + 0x7fc00,0x3ff800,0xffc00,0x3ff800,0xffc00,0x3ffc00,0xffc00,0x3ffc00,0xff800,0x3ffe00,0x1ff800,0x3fff00,0x3ff800,0x3fff80,0x7ff800,0x3fefc0, + 0xfff000,0x3fe7f0,0xfffff000,0x3fe7ff,0xffffe000,0x3fe3ff,0xffffc000,0x3fe1ff,0xffff8000,0x3fe0ff,0xffff0000,0x3fe07f,0xfffc0000,0x3fe01f,0xfff00000,0x3, + 0x8000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 253 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffc0,0x0,0xffe0,0x0,0x7ff0, + 0x0,0x3ff8,0x0,0xffc,0x0,0x7fe,0x0,0x3ff,0x80000000,0xff,0xc0000000,0x7f,0xe0000000,0x3f,0xf0000000,0x1f, + 0xf8000000,0x7,0xfc000000,0x3,0xfc000000,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3ff0,0x7fe0000,0x3fe0,0x7fe0000,0x7fe0,0x3fe0000,0x7fc0,0x3ff0000,0xffc0,0x1ff0000,0xffc0,0x1ff8000,0xff80,0x1ff8000, + 0x1ff80,0xff8000,0x1ff00,0xffc000,0x3ff00,0x7fc000,0x3fe00,0x7fc000,0x7fe00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0xffc00,0x1ff000, + 0xff800,0x1ff000,0x1ff800,0xff800,0x1ff000,0xff800,0x1ff000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x7fe000,0x3fe00,0x7fc000,0x3fe00, + 0x7fc000,0x1ff00,0xff8000,0x1ff00,0xff8000,0x1ff00,0x1ff0000,0xff80,0x1ff0000,0xff80,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x3fe0000,0x3fc0, + 0x7fc0000,0x3fe0,0x7fc0000,0x3fe0,0xff80000,0x1ff0,0xff80000,0x1ff0,0xff00000,0xff0,0x1ff00000,0xff8,0x1fe00000,0x7f8,0x3fe00000,0x7fc, + 0x3fe00000,0x7fc,0x3fc00000,0x3fc,0x7fc00000,0x3fe,0x7f800000,0x1fe,0x7f800000,0x1fe,0xff000000,0x1ff,0xff000000,0xff,0xff000000,0xff, + 0xfe000000,0x7f,0xfe000000,0x7f,0xfc000000,0x3f,0xfc000000,0x3f,0xf8000000,0x3f,0xf8000000,0x1f,0xf0000000,0x1f,0xf0000000,0xf, + 0xf8000000,0xf,0xf8000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x3,0xff000000,0x1,0xff000000,0x1, + 0xff800000,0x0,0xffc00000,0x0,0x7fe00000,0x0,0x7ff00000,0x0,0x3ff80000,0x0,0x1fff0000,0x0,0xffffe00,0x0,0xffffe00,0x0, + 0x7fffe00,0x0,0x3fffe00,0x0,0xfffe00,0x0,0x3ffe00,0x0,0xffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 254 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x18, + 0xe007fc00,0x7ff,0xfc07fc00,0x1fff,0xfe07fc00,0x7fff,0xff07fc00,0xffff,0xff87fc00,0x1ffff,0xffc7fc00,0x3ffff,0xffe7fc00,0x7ffff,0xff7fc00,0xfff80, + 0x3f7fc00,0xfff00,0x1fffc00,0x1ffc00,0xfffc00,0x1ff800,0x7ffc00,0x3ff800,0x3ffc00,0x3ff000,0x3ffc00,0x3ff000,0x1ffc00,0x3fe000,0x1ffc00,0x7fe000, + 0x1ffc00,0x7fe000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000, + 0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0xffc000, + 0x7fc00,0xffc000,0x7fc00,0xffc000,0x7fc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fc000,0xffc00,0x7fe000,0xffc00,0x7fe000, + 0x1ffc00,0x7fe000,0x1ffc00,0x3fe000,0x1ffc00,0x3ff000,0x3ffc00,0x3ff000,0x3ffc00,0x1ff800,0x7ffc00,0x1ff800,0xfffc00,0xffc00,0x1fffc00,0xffe00, + 0x7f7fc00,0x7ff80,0x3ff7fc00,0x7fff0,0xffe7fc00,0x3ffff,0xffc7fc00,0x1ffff,0xff87fc00,0xffff,0xff07fc00,0x7fff,0xfc07fc00,0x1fff,0xe007fc00,0x7ff, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0, + 0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x7fc00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // 255 + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x3fc0000,0x3fc0, + 0x3fc0000,0x3fc0,0x3fc0000,0x3fc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3ff0,0x7fe0000,0x3fe0,0x7fe0000,0x7fe0,0x3fe0000,0x7fc0,0x3ff0000,0xffc0,0x1ff0000,0xffc0,0x1ff8000,0xff80,0x1ff8000, + 0x1ff80,0xff8000,0x1ff00,0xffc000,0x3ff00,0x7fc000,0x3fe00,0x7fc000,0x7fe00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x3ff000,0xffc00,0x1ff000, + 0xff800,0x1ff000,0x1ff800,0xff800,0x1ff000,0xff800,0x1ff000,0x7fc00,0x3fe000,0x7fc00,0x3fe000,0x7fc00,0x7fe000,0x3fe00,0x7fc000,0x3fe00, + 0x7fc000,0x1ff00,0xff8000,0x1ff00,0xff8000,0x1ff00,0x1ff0000,0xff80,0x1ff0000,0xff80,0x3fe0000,0x7fc0,0x3fe0000,0x7fc0,0x3fe0000,0x3fc0, + 0x7fc0000,0x3fe0,0x7fc0000,0x3fe0,0xff80000,0x1ff0,0xff80000,0x1ff0,0xff00000,0xff0,0x1ff00000,0xff8,0x1fe00000,0x7f8,0x3fe00000,0x7fc, + 0x3fe00000,0x7fc,0x3fc00000,0x3fc,0x7fc00000,0x3fe,0x7f800000,0x1fe,0x7f800000,0x1fe,0xff000000,0x1ff,0xff000000,0xff,0xff000000,0xff, + 0xfe000000,0x7f,0xfe000000,0x7f,0xfc000000,0x3f,0xfc000000,0x3f,0xf8000000,0x3f,0xf8000000,0x1f,0xf0000000,0x1f,0xf0000000,0xf, + 0xf8000000,0xf,0xf8000000,0x7,0xfc000000,0x7,0xfc000000,0x7,0xfe000000,0x3,0xfe000000,0x3,0xff000000,0x1,0xff000000,0x1, + 0xff800000,0x0,0xffc00000,0x0,0x7fe00000,0x0,0x7ff00000,0x0,0x3ff80000,0x0,0x1fff0000,0x0,0xffffe00,0x0,0xffffe00,0x0, + 0x7fffe00,0x0,0x3fffe00,0x0,0xfffe00,0x0,0x3ffe00,0x0,0xffe00,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, }; static FixedFont fonts[] = { - FixedFont (ff1_height, ff1_line_height, ff1_width, ff1_first_char, sizeof (ff1_data) / sizeof (uint32_t) / ff1_height, ff1_data), - FixedFont (ff2_height, ff2_line_height, ff2_width, ff2_first_char, sizeof (ff2_data) / sizeof (uint32_t) / ff2_height, ff2_data), - FixedFont (ff3_height, ff3_line_height, ff3_width, ff3_first_char, sizeof (ff3_data) / sizeof (uint32_t) / ff3_height, ff3_data), - FixedFont (ff4_height, ff4_line_height, ff4_width, ff4_first_char, sizeof (ff4_data) / sizeof (uint32_t) / ff4_height, ff4_data), - FixedFont (ff5_height, ff5_line_height, ff5_width, ff5_first_char, sizeof (ff5_data) / sizeof (uint32_t) / ff5_height, ff5_data), - FixedFont (ff6_height, ff6_line_height, ff6_width, ff6_first_char, sizeof (ff6_data) / sizeof (uint32_t) / ff6_height, ff6_data), - FixedFont (ff7_height, ff7_line_height, ff7_width, ff7_first_char, sizeof (ff7_data) / sizeof (uint32_t) / ff7_height, ff7_data), - FixedFont (ff8_height, ff8_line_height, ff8_width, ff8_first_char, sizeof (ff8_data) / sizeof (uint32_t) / ff8_height, ff8_data), - FixedFont (ff9_height, ff9_line_height, ff9_width, ff9_first_char, sizeof (ff9_data) / sizeof (uint32_t) / ff9_height, ff9_data), + FixedFont (ff1_height, ff1_line_height, ff1_width, ff1_first_char, sizeof (ff1_data) / sizeof (uint32_t) / (ff1_height * ff1_stride), ff1_data, ff1_stride), + FixedFont (ff2_height, ff2_line_height, ff2_width, ff2_first_char, sizeof (ff2_data) / sizeof (uint32_t) / (ff2_height * ff2_stride), ff2_data, ff2_stride), + FixedFont (ff3_height, ff3_line_height, ff3_width, ff3_first_char, sizeof (ff3_data) / sizeof (uint32_t) / (ff3_height * ff3_stride), ff3_data, ff3_stride), + FixedFont (ff4_height, ff4_line_height, ff4_width, ff4_first_char, sizeof (ff4_data) / sizeof (uint32_t) / (ff4_height * ff4_stride), ff4_data, ff4_stride), + FixedFont (ff5_height, ff5_line_height, ff5_width, ff5_first_char, sizeof (ff5_data) / sizeof (uint32_t) / (ff5_height * ff5_stride), ff5_data, ff5_stride), + FixedFont (ff6_height, ff6_line_height, ff6_width, ff6_first_char, sizeof (ff6_data) / sizeof (uint32_t) / (ff6_height * ff6_stride), ff6_data, ff6_stride), + FixedFont (ff7_height, ff7_line_height, ff7_width, ff7_first_char, sizeof (ff7_data) / sizeof (uint32_t) / (ff7_height * ff7_stride), ff7_data, ff7_stride), + FixedFont (ff8_height, ff8_line_height, ff8_width, ff8_first_char, sizeof (ff8_data) / sizeof (uint32_t) / (ff8_height * ff8_stride), ff8_data, ff8_stride), + FixedFont (ff9_height, ff9_line_height, ff9_width, ff9_first_char, sizeof (ff9_data) / sizeof (uint32_t) / (ff9_height * ff9_stride), ff9_data, ff9_stride), + FixedFont (ff10_height, ff10_line_height, ff10_width, ff10_first_char, sizeof (ff10_data) / sizeof (uint32_t) / (ff10_height * ff10_stride), ff10_data, ff10_stride), + FixedFont (ff11_height, ff11_line_height, ff11_width, ff11_first_char, sizeof (ff11_data) / sizeof (uint32_t) / (ff11_height * ff11_stride), ff11_data, ff11_stride), + FixedFont (ff12_height, ff12_line_height, ff12_width, ff12_first_char, sizeof (ff12_data) / sizeof (uint32_t) / (ff12_height * ff12_stride), ff12_data, ff12_stride), + FixedFont (ff13_height, ff13_line_height, ff13_width, ff13_first_char, sizeof (ff13_data) / sizeof (uint32_t) / (ff13_height * ff13_stride), ff13_data, ff13_stride), + FixedFont (ff14_height, ff14_line_height, ff14_width, ff14_first_char, sizeof (ff14_data) / sizeof (uint32_t) / (ff14_height * ff14_stride), ff14_data, ff14_stride), + FixedFont (ff15_height, ff15_line_height, ff15_width, ff15_first_char, sizeof (ff15_data) / sizeof (uint32_t) / (ff15_height * ff15_stride), ff15_data, ff15_stride), + FixedFont (ff16_height, ff16_line_height, ff16_width, ff16_first_char, sizeof (ff16_data) / sizeof (uint32_t) / (ff16_height * ff16_stride), ff16_data, ff16_stride), + FixedFont (ff17_height, ff17_line_height, ff17_width, ff17_first_char, sizeof (ff17_data) / sizeof (uint32_t) / (ff17_height * ff17_stride), ff17_data, ff17_stride), + FixedFont (ff18_height, ff18_line_height, ff18_width, ff18_first_char, sizeof (ff18_data) / sizeof (uint32_t) / (ff18_height * ff18_stride), ff18_data, ff18_stride), }; } // namespace lay diff --git a/src/laybasic/laybasic/layBitmap.cc b/src/laybasic/laybasic/layBitmap.cc index 76fc03098..c2a41dece 100644 --- a/src/laybasic/laybasic/layBitmap.cc +++ b/src/laybasic/laybasic/layBitmap.cc @@ -275,7 +275,7 @@ Bitmap::merge (const lay::Bitmap *from, int dx, int dy) } void -Bitmap::fill_pattern (int y, int x, const uint32_t *pp, unsigned int n) +Bitmap::fill_pattern (int y, int x, const uint32_t *pp, unsigned int stride, unsigned int n) { if (x < int (m_width)) { @@ -290,41 +290,44 @@ Bitmap::fill_pattern (int y, int x, const uint32_t *pp, unsigned int n) while (n > 0 && y >= 0) { - uint32_t p = *pp; + for (unsigned int s = 0; s < stride; ++s) { - int x1 = x; + int x1 = x + s * 32; - if (x1 < 0) { - if (x1 <= -32) { - return; - } - p >>= (unsigned int)-x1; - x1 = 0; - } + uint32_t p = *pp++; - if (p) { - - unsigned int bx = ((unsigned int) x1) & ~(32 - 1); - - uint32_t *sl = scanline (y); - sl += bx / 32; - - *sl |= (p << ((unsigned int)x1 - bx)); - - if ((unsigned int)x1 > bx) { - - bx += 32; - ++sl; - - if (bx < m_width) { - *sl |= (p >> (bx - (unsigned int)x1)); + if (x1 < 0) { + if (x1 <= -32) { + return; } - + p >>= (unsigned int)-x1; + x1 = 0; + } + + if (p) { + + unsigned int bx = ((unsigned int) x1) & ~(32 - 1); + + uint32_t *sl = scanline (y); + sl += bx / 32; + + *sl |= (p << ((unsigned int)x1 - bx)); + + if ((unsigned int)x1 > bx) { + + bx += 32; + ++sl; + + if (bx < m_width) { + *sl |= (p >> (bx - (unsigned int)x1)); + } + + } + } } - ++pp; --n; --y; @@ -851,7 +854,7 @@ Bitmap::render_text (const lay::RenderText &text) size_t cc = c; // to suppress a compiler warning .. if (c >= ff.first_char () && cc < size_t (ff.n_chars ()) + size_t (ff.first_char ()) && xx > -100.0 && xx < double (width ())) { - fill_pattern (int (y + 0.5), int (floor (xx)), ff.data () + (c - ff.first_char ()) * ff.height (), ff.height ()); + fill_pattern (int (y + 0.5), int (floor (xx)), ff.data () + (c - ff.first_char ()) * ff.height () * ff.stride (), ff.stride (), ff.height ()); } xx += double (ff.width ()); diff --git a/src/laybasic/laybasic/layBitmap.h b/src/laybasic/laybasic/layBitmap.h index 373ec48ba..a1257d0d7 100644 --- a/src/laybasic/laybasic/layBitmap.h +++ b/src/laybasic/laybasic/layBitmap.h @@ -324,8 +324,10 @@ private: * @param y The scanline * @param x1 The start coordinate * @param p The pattern to use + * @param stride The number of words per line + * @param n The height (number of lines) */ - void fill_pattern (int y, int x, const uint32_t *p, unsigned int n); + void fill_pattern (int y, int x, const uint32_t *p, unsigned int stride, unsigned int n); }; inline bool diff --git a/src/laybasic/laybasic/layFixedFont.cc b/src/laybasic/laybasic/layFixedFont.cc index fcecc0662..0e1461dc3 100644 --- a/src/laybasic/laybasic/layFixedFont.cc +++ b/src/laybasic/laybasic/layFixedFont.cc @@ -31,8 +31,8 @@ namespace lay int FixedFont::ms_default_font_size = 0; -FixedFont::FixedFont (unsigned int h, unsigned int lh, unsigned int w, unsigned char c0, unsigned char nc, uint32_t *d) - : m_height (h), m_line_height (lh), m_width (w), m_first_char (c0), m_n_chars (nc), mp_data (d) +FixedFont::FixedFont (unsigned int h, unsigned int lh, unsigned int w, unsigned char c0, unsigned char nc, uint32_t *d, unsigned int stride) + : m_height (h), m_line_height (lh), m_width (w), m_first_char (c0), m_n_chars (nc), mp_data (d), m_stride (stride) { // .. nothing yet .. } @@ -47,7 +47,7 @@ const FixedFont & FixedFont::get_font (double resolution) { int fs = ms_default_font_size; - int od = std::max (1, std::min (int (sizeof (fonts) / sizeof (fonts [0])), int (1.0 / resolution + 0.5))) - 1; + int od = std::max (1, std::min (int (sizeof (fonts) / sizeof (fonts [0])) / 3, int (1.0 / resolution + 0.5))) - 1; return fonts [od * 3 + fs]; } diff --git a/src/laybasic/laybasic/layFixedFont.h b/src/laybasic/laybasic/layFixedFont.h index 872129a22..49aa2c424 100644 --- a/src/laybasic/laybasic/layFixedFont.h +++ b/src/laybasic/laybasic/layFixedFont.h @@ -18,7 +18,7 @@ public: /** * @brief ctor */ - FixedFont (unsigned int h, unsigned int lh, unsigned int w, unsigned char c0, unsigned char nc, uint32_t *d); + FixedFont (unsigned int h, unsigned int lh, unsigned int w, unsigned char c0, unsigned char nc, uint32_t *d, unsigned int stride); /** * @brief Factory @@ -90,11 +90,20 @@ public: return mp_data; } + /** + * @brief Gets the stride (number of words per line) + */ + unsigned int stride () const + { + return m_stride; + } + private: unsigned int m_height, m_line_height, m_width; unsigned char m_first_char; unsigned char m_n_chars; uint32_t *mp_data; + unsigned int m_stride; static int ms_default_font_size; };