summaryrefslogtreecommitdiffstats
path: root/src/arkollon
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-27 16:34:45 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-27 16:34:45 +0200
commitd76ff81b7c1beffef0b84e570914c8f2d47834e6 (patch)
tree284b80ce7c5456fbb041f7979ac2c0baeead8902 /src/arkollon
downloadtork-d76ff81b7c1beffef0b84e570914c8f2d47834e6.tar.gz
tork-d76ff81b7c1beffef0b84e570914c8f2d47834e6.zip
Initial import of tork 0.33
Diffstat (limited to 'src/arkollon')
-rw-r--r--src/arkollon/Makefile.am40
-rw-r--r--src/arkollon/data.cpp44
-rw-r--r--src/arkollon/data.h3065
-rw-r--r--src/arkollon/headerlistitem.cpp126
-rw-r--r--src/arkollon/headerlistitem.h39
-rw-r--r--src/arkollon/logdialog.ui91
-rw-r--r--src/arkollon/rcparser.cpp146
-rw-r--r--src/arkollon/rcparser.h50
-rw-r--r--src/arkollon/torkarkollon.118
-rw-r--r--src/arkollon/torkarkollon.cpp74
-rw-r--r--src/arkollon/uninstallwizard.cpp322
-rw-r--r--src/arkollon/uninstallwizard.h87
-rw-r--r--src/arkollon/wizard.cpp950
-rw-r--r--src/arkollon/wizard.h183
-rw-r--r--src/arkollon/wizardbase.ui921
-rw-r--r--src/arkollon/wizardbase.ui.h58
16 files changed, 6214 insertions, 0 deletions
diff --git a/src/arkollon/Makefile.am b/src/arkollon/Makefile.am
new file mode 100644
index 0000000..81cea55
--- /dev/null
+++ b/src/arkollon/Makefile.am
@@ -0,0 +1,40 @@
+bin_PROGRAMS = torkarkollon
+torkarkollon_SOURCES = torkarkollon.cpp \
+ wizard.cpp \
+ rcparser.cpp \
+ uninstallwizard.cpp \
+ headerlistitem.cpp \
+ data.cpp \
+ logdialog.ui \
+ wizardbase.ui
+
+
+noinst_HEADERS = data.h \
+ headerlistitem.h \
+ rcparser.h \
+ uninstallwizard.h \
+ wizard.h \
+ logdialog.h \
+ wizardbase.h
+
+
+
+# set the include path found by configure
+INCLUDES= $(all_includes)
+# the library search path.
+torkarkollon_LDFLAGS = $(all_libraries)
+LIBS =
+#torkarkollon_LDFLAGS =
+#torkarkollon_LDADD = $(LIB_QT) $(LIB_KFILE)
+torkarkollon_LDADD = $(LIB_KFILE) $(LIB_QT)
+
+# let automoc handle all of the meta source files (moc)
+METASOURCES = AUTO
+
+manpagedir = $(mandir)/man1
+manpage_DATA = torkarkollon.1
+
+torkarkollon.o : wizardbase.h logdialog.h
+wizard.o : wizardbase.h logdialog.h
+uninstallwizard.o : wizardbase.h logdialog.h
+
diff --git a/src/arkollon/data.cpp b/src/arkollon/data.cpp
new file mode 100644
index 0000000..89b57d6
--- /dev/null
+++ b/src/arkollon/data.cpp
@@ -0,0 +1,44 @@
+#include "data.h"
+
+static struct EmbedImage {
+ int width, height, depth;
+ const unsigned char *data;
+ int numColors;
+ const QRgb *colorTable;
+ bool alpha;
+ const char *name;
+} embed_image_vec[] = {
+ { 16, 16, 32, (const unsigned char*)misc_data, 0, 0, TRUE, "misc" },
+ { 130, 300, 32, (const unsigned char*)splash_data, 0, 0, FALSE, "splash" },
+ { 32, 32, 32, (const unsigned char*)packageIcon_data, 0, 0, TRUE, "packageIcon" },
+ { 0, 0, 0, 0, 0, 0, 0, 0 }
+};
+
+const QImage& qembed_findImage( const QString& name )
+{
+ static QDict<QImage> dict;
+ QImage* img = dict.find( name );
+ if ( !img ) {
+ for ( int i = 0; embed_image_vec[i].data; i++ ) {
+ if ( strcmp(embed_image_vec[i].name, name.latin1()) == 0 ) {
+ img = new QImage((uchar*)embed_image_vec[i].data,
+ embed_image_vec[i].width,
+ embed_image_vec[i].height,
+ embed_image_vec[i].depth,
+ (QRgb*)embed_image_vec[i].colorTable,
+ embed_image_vec[i].numColors,
+ QImage::BigEndian );
+ if ( embed_image_vec[i].alpha )
+ img->setAlphaBuffer( TRUE );
+ dict.insert( name, img );
+ break;
+ }
+ }
+ if ( !img ) {
+ static QImage dummy;
+ return dummy;
+ }
+ }
+ return *img;
+}
+
diff --git a/src/arkollon/data.h b/src/arkollon/data.h
new file mode 100644
index 0000000..df9aa43
--- /dev/null
+++ b/src/arkollon/data.h
@@ -0,0 +1,3065 @@
+#ifndef _QEMBED_1804289383
+#define _QEMBED_1804289383
+static const unsigned int postinstall_sh_len = 952;
+static const unsigned char postinstall_sh_data[] = {
+ 0x23,0x21,0x2f,0x62,0x69,0x6e,0x2f,0x62,0x61,0x73,0x68,0x0a,0x0a,0x0a,
+ 0x70,0x72,0x69,0x6e,0x74,0x48,0x65,0x6c,0x70,0x28,0x29,0x0a,0x7b,0x0a,
+ 0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x54,0x68,0x69,0x73,0x20,0x69,0x73,
+ 0x20,0x61,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x20,0x73,0x63,0x72,0x69,
+ 0x70,0x74,0x20,0x66,0x6f,0x72,0x20,0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,
+ 0x6e,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x55,0x73,0x61,0x67,
+ 0x65,0x3a,0x20,0x70,0x6f,0x73,0x74,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,
+ 0x2e,0x73,0x68,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x20,0x20,
+ 0x20,0x2d,0x2d,0x61,0x70,0x70,0x6e,0x61,0x6d,0x65,0x20,0x41,0x50,0x50,
+ 0x4e,0x41,0x4d,0x45,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x20,
+ 0x20,0x20,0x2d,0x2d,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x56,0x45,
+ 0x52,0x53,0x49,0x4f,0x4e,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,
+ 0x20,0x20,0x20,0x2d,0x2d,0x66,0x69,0x6c,0x65,0x6c,0x69,0x73,0x74,0x20,
+ 0x46,0x49,0x4c,0x45,0x4c,0x49,0x53,0x54,0x22,0x0a,0x09,0x65,0x78,0x69,
+ 0x74,0x0a,0x7d,0x0a,0x0a,0x77,0x72,0x69,0x74,0x65,0x41,0x72,0x6b,0x6f,
+ 0x6c,0x6c,0x6f,0x6e,0x55,0x6e,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x4c,
+ 0x69,0x73,0x74,0x28,0x29,0x0a,0x7b,0x0a,0x09,0x69,0x66,0x20,0x5b,0x20,
+ 0x22,0x24,0x77,0x68,0x6f,0x61,0x6d,0x69,0x22,0x20,0x3d,0x3d,0x20,0x22,
+ 0x72,0x6f,0x6f,0x74,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x20,
+ 0x70,0x72,0x65,0x66,0x69,0x78,0x3d,0x22,0x2f,0x76,0x61,0x72,0x2f,0x61,
+ 0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x22,0x0a,0x09,0x65,0x6c,0x73,0x65,
+ 0x20,0x70,0x72,0x65,0x66,0x69,0x78,0x3d,0x22,0x24,0x48,0x4f,0x4d,0x45,
+ 0x2f,0x2e,0x61,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x22,0x0a,0x09,0x66,
+ 0x69,0x0a,0x09,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x57,0x72,0x69,
+ 0x74,0x69,0x6e,0x67,0x20,0x75,0x6e,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,
+ 0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,
+ 0x6f,0x72,0x20,0x24,0x61,0x70,0x70,0x4e,0x61,0x6d,0x65,0x20,0x69,0x6e,
+ 0x74,0x6f,0x20,0x24,0x70,0x72,0x65,0x66,0x69,0x78,0x22,0x0a,0x09,0x0a,
+ 0x09,0x6d,0x6b,0x64,0x69,0x72,0x20,0x2d,0x70,0x20,0x24,0x70,0x72,0x65,
+ 0x66,0x69,0x78,0x0a,0x09,0x69,0x66,0x20,0x5b,0x20,0x2d,0x65,0x20,0x22,
+ 0x24,0x70,0x72,0x65,0x66,0x69,0x78,0x2f,0x24,0x61,0x70,0x70,0x4e,0x61,
+ 0x6d,0x65,0x3a,0x24,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x22,0x20,0x5d,
+ 0x0a,0x09,0x74,0x68,0x65,0x6e,0x20,0x72,0x6d,0x20,0x2d,0x66,0x20,0x22,
+ 0x24,0x70,0x72,0x65,0x66,0x69,0x78,0x2f,0x24,0x61,0x70,0x70,0x4e,0x61,
+ 0x6d,0x65,0x3a,0x24,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x22,0x0a,0x09,
+ 0x66,0x69,0x0a,0x09,0x0a,0x09,0x63,0x70,0x20,0x2d,0x66,0x20,0x22,0x24,
+ 0x66,0x69,0x6c,0x65,0x4c,0x69,0x73,0x74,0x22,0x20,0x22,0x24,0x70,0x72,
+ 0x65,0x66,0x69,0x78,0x2f,0x24,0x61,0x70,0x70,0x4e,0x61,0x6d,0x65,0x3a,
+ 0x24,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x22,0x0a,0x7d,0x0a,0x0a,0x75,
+ 0x6e,0x74,0x69,0x6c,0x20,0x5b,0x20,0x2d,0x7a,0x20,0x22,0x24,0x31,0x22,
+ 0x20,0x5d,0x20,0x20,0x23,0x20,0x55,0x6e,0x74,0x69,0x6c,0x20,0x61,0x6c,
+ 0x6c,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,0x75,
+ 0x73,0x65,0x64,0x20,0x75,0x70,0x2e,0x2e,0x2e,0x0a,0x64,0x6f,0x0a,0x09,
+ 0x69,0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,0x20,0x3d,0x3d,0x20,0x22,
+ 0x2d,0x2d,0x68,0x65,0x6c,0x70,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,
+ 0x6e,0x20,0x70,0x72,0x69,0x6e,0x74,0x48,0x65,0x6c,0x70,0x0a,0x09,0x65,
+ 0x6c,0x69,0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,0x20,0x3d,0x3d,0x20,
+ 0x22,0x2d,0x2d,0x66,0x69,0x6c,0x65,0x6c,0x69,0x73,0x74,0x22,0x20,0x5d,
+ 0x0a,0x09,0x74,0x68,0x65,0x6e,0x0a,0x09,0x09,0x73,0x68,0x69,0x66,0x74,
+ 0x0a,0x09,0x09,0x66,0x69,0x6c,0x65,0x4c,0x69,0x73,0x74,0x3d,0x24,0x31,
+ 0x0a,0x09,0x65,0x6c,0x69,0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,0x20,
+ 0x3d,0x3d,0x20,0x22,0x2d,0x2d,0x61,0x70,0x70,0x6e,0x61,0x6d,0x65,0x22,
+ 0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x0a,0x09,0x09,0x73,0x68,0x69,
+ 0x66,0x74,0x0a,0x09,0x09,0x61,0x70,0x70,0x4e,0x61,0x6d,0x65,0x3d,0x24,
+ 0x31,0x0a,0x09,0x65,0x6c,0x69,0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,
+ 0x20,0x3d,0x3d,0x20,0x22,0x2d,0x2d,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,
+ 0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x0a,0x09,0x09,0x73,0x68,
+ 0x69,0x66,0x74,0x0a,0x09,0x09,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,
+ 0x24,0x31,0x0a,0x09,0x66,0x69,0x0a,0x09,0x73,0x68,0x69,0x66,0x74,0x0a,
+ 0x64,0x6f,0x6e,0x65,0x0a,0x0a,0x69,0x66,0x20,0x5b,0x20,0x2d,0x7a,0x20,
+ 0x22,0x24,0x66,0x69,0x6c,0x65,0x4c,0x69,0x73,0x74,0x22,0x20,0x2d,0x6f,
+ 0x20,0x2d,0x7a,0x20,0x22,0x24,0x61,0x70,0x70,0x4e,0x61,0x6d,0x65,0x22,
+ 0x20,0x2d,0x6f,0x20,0x2d,0x7a,0x20,0x22,0x24,0x76,0x65,0x72,0x73,0x69,
+ 0x6f,0x6e,0x22,0x20,0x5d,0x0a,0x74,0x68,0x65,0x6e,0x20,0x70,0x72,0x69,
+ 0x6e,0x74,0x48,0x65,0x6c,0x70,0x0a,0x66,0x69,0x0a,0x0a,0x0a,0x77,0x68,
+ 0x6f,0x61,0x6d,0x69,0x3d,0x60,0x77,0x68,0x6f,0x61,0x6d,0x69,0x60,0x0a,
+ 0x0a,0x77,0x72,0x69,0x74,0x65,0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,
+ 0x55,0x6e,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x4c,0x69,0x73,0x74,0x0a
+};
+
+/* Generated by qembed */
+static const unsigned int uninstaller_sh_len = 1284;
+static const unsigned char uninstaller_sh_data[] = {
+ 0x23,0x21,0x2f,0x62,0x69,0x6e,0x2f,0x62,0x61,0x73,0x68,0x0a,0x0a,0x70,
+ 0x72,0x69,0x6e,0x74,0x48,0x65,0x6c,0x70,0x28,0x29,0x0a,0x7b,0x0a,0x09,
+ 0x65,0x63,0x68,0x6f,0x20,0x22,0x54,0x68,0x69,0x73,0x20,0x69,0x73,0x20,
+ 0x61,0x20,0x68,0x65,0x6c,0x70,0x65,0x72,0x20,0x73,0x63,0x72,0x69,0x70,
+ 0x74,0x20,0x66,0x6f,0x72,0x20,0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,
+ 0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x55,0x73,0x61,0x67,0x65,
+ 0x3a,0x20,0x75,0x6e,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x72,0x2e,
+ 0x73,0x68,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x20,0x20,0x20,
+ 0x2d,0x2d,0x6c,0x69,0x73,0x74,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x4c,0x69,0x73,0x74,0x73,0x20,0x61,0x6c,0x6c,0x20,
+ 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x70,0x61,0x63,0x6b,
+ 0x61,0x67,0x65,0x73,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x20,
+ 0x20,0x20,0x2d,0x2d,0x66,0x69,0x6c,0x65,0x73,0x20,0x50,0x41,0x43,0x4b,
+ 0x41,0x47,0x45,0x20,0x20,0x20,0x4c,0x69,0x73,0x74,0x73,0x20,0x74,0x68,
+ 0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,
+ 0x20,0x70,0x61,0x63,0x6b,0x61,0x67,0x65,0x20,0x50,0x41,0x43,0x4b,0x41,
+ 0x47,0x45,0x22,0x0a,0x09,0x65,0x63,0x68,0x6f,0x20,0x22,0x20,0x20,0x20,
+ 0x2d,0x2d,0x72,0x65,0x6d,0x6f,0x76,0x65,0x20,0x50,0x41,0x43,0x4b,0x41,
+ 0x47,0x45,0x20,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x73,0x20,0x74,0x68,
+ 0x65,0x20,0x70,0x61,0x63,0x6b,0x61,0x67,0x65,0x20,0x50,0x41,0x43,0x4b,
+ 0x41,0x47,0x45,0x22,0x0a,0x7d,0x0a,0x0a,0x6c,0x69,0x73,0x74,0x41,0x72,
+ 0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x50,0x61,0x63,0x6b,0x61,0x67,0x65,0x73,
+ 0x28,0x29,0x0a,0x7b,0x0a,0x09,0x66,0x69,0x6e,0x64,0x20,0x22,0x2f,0x76,
+ 0x61,0x72,0x2f,0x61,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x22,0x20,0x2d,
+ 0x74,0x79,0x70,0x65,0x20,0x66,0x20,0x2d,0x6d,0x61,0x78,0x64,0x65,0x70,
+ 0x74,0x68,0x20,0x31,0x20,0x2d,0x72,0x65,0x67,0x65,0x78,0x20,0x22,0x2e,
+ 0x2a,0x3a,0x2e,0x2a,0x22,0x20,0x2d,0x70,0x72,0x69,0x6e,0x74,0x66,0x20,
+ 0x22,0x25,0x66,0x5c,0x6e,0x22,0x0a,0x7d,0x0a,0x0a,0x6c,0x69,0x73,0x74,
+ 0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x46,0x69,0x6c,0x65,0x73,0x28,
+ 0x29,0x0a,0x7b,0x0a,0x09,0x23,0x20,0x4c,0x69,0x73,0x74,0x73,0x20,0x74,
+ 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,
+ 0x6c,0x6c,0x65,0x64,0x20,0x69,0x6e,0x20,0x61,0x6e,0x20,0x41,0x72,0x6b,
+ 0x6f,0x6c,0x6c,0x6f,0x6e,0x20,0x70,0x61,0x63,0x6b,0x61,0x67,0x65,0x0a,
+ 0x09,0x69,0x66,0x20,0x5b,0x20,0x2d,0x7a,0x20,0x24,0x31,0x20,0x5d,0x0a,
+ 0x09,0x74,0x68,0x65,0x6e,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x0a,0x09,
+ 0x66,0x69,0x0a,0x09,0x0a,0x09,0x69,0x66,0x20,0x5b,0x20,0x2d,0x65,0x20,
+ 0x22,0x2f,0x76,0x61,0x72,0x2f,0x61,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,
+ 0x2f,0x24,0x31,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x20,0x70,
+ 0x72,0x65,0x66,0x69,0x78,0x3d,0x22,0x2f,0x76,0x61,0x72,0x2f,0x61,0x72,
+ 0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x22,0x0a,0x09,0x65,0x6c,0x73,0x65,0x20,
+ 0x72,0x65,0x74,0x75,0x72,0x6e,0x0a,0x09,0x66,0x69,0x0a,0x09,0x0a,0x09,
+ 0x63,0x61,0x74,0x20,0x22,0x24,0x70,0x72,0x65,0x66,0x69,0x78,0x2f,0x24,
+ 0x31,0x22,0x0a,0x7d,0x0a,0x0a,0x72,0x65,0x6d,0x6f,0x76,0x65,0x41,0x72,
+ 0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x50,0x61,0x63,0x6b,0x61,0x67,0x65,0x28,
+ 0x29,0x0a,0x7b,0x0a,0x09,0x23,0x20,0x52,0x65,0x6d,0x6f,0x76,0x65,0x73,
+ 0x20,0x61,0x6e,0x20,0x61,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x20,0x70,
+ 0x61,0x63,0x6b,0x61,0x67,0x65,0x0a,0x09,0x69,0x66,0x20,0x5b,0x20,0x2d,
+ 0x7a,0x20,0x24,0x31,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x20,0x72,
+ 0x65,0x74,0x75,0x72,0x6e,0x0a,0x09,0x66,0x69,0x0a,0x09,0x0a,0x09,0x70,
+ 0x72,0x65,0x66,0x69,0x78,0x3d,0x22,0x2f,0x76,0x61,0x72,0x2f,0x61,0x72,
+ 0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x22,0x0a,0x0a,0x09,0x69,0x66,0x20,0x5b,
+ 0x20,0x21,0x20,0x2d,0x65,0x20,0x22,0x24,0x70,0x72,0x65,0x66,0x69,0x78,
+ 0x2f,0x24,0x31,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x0a,0x09,
+ 0x09,0x65,0x63,0x68,0x6f,0x20,0x24,0x31,0x20,0x64,0x6f,0x65,0x73,0x20,
+ 0x6e,0x6f,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x0a,0x09,0x09,0x72,0x65,
+ 0x74,0x75,0x72,0x6e,0x0a,0x09,0x66,0x69,0x0a,0x0a,0x09,0x65,0x63,0x68,
+ 0x6f,0x20,0x52,0x65,0x6d,0x6f,0x76,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,
+ 0x20,0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x20,0x70,0x61,0x63,0x6b,
+ 0x61,0x67,0x65,0x20,0x24,0x31,0x0a,0x09,0x77,0x68,0x69,0x6c,0x65,0x20,
+ 0x72,0x65,0x61,0x64,0x20,0x6c,0x69,0x6e,0x65,0x0a,0x09,0x64,0x6f,0x0a,
+ 0x09,0x09,0x69,0x66,0x20,0x5b,0x20,0x2d,0x65,0x20,0x22,0x24,0x6c,0x69,
+ 0x6e,0x65,0x22,0x20,0x5d,0x0a,0x09,0x09,0x74,0x68,0x65,0x6e,0x20,0x72,
+ 0x6d,0x20,0x2d,0x66,0x76,0x20,0x22,0x24,0x6c,0x69,0x6e,0x65,0x22,0x0a,
+ 0x09,0x09,0x66,0x69,0x0a,0x09,0x64,0x6f,0x6e,0x65,0x20,0x3c,0x20,0x22,
+ 0x24,0x70,0x72,0x65,0x66,0x69,0x78,0x2f,0x24,0x31,0x22,0x0a,0x09,0x72,
+ 0x6d,0x20,0x2d,0x66,0x76,0x20,0x22,0x24,0x70,0x72,0x65,0x66,0x69,0x78,
+ 0x2f,0x24,0x31,0x22,0x0a,0x7d,0x0a,0x0a,0x69,0x66,0x20,0x5b,0x20,0x2d,
+ 0x7a,0x20,0x22,0x24,0x31,0x22,0x20,0x5d,0x0a,0x74,0x68,0x65,0x6e,0x20,
+ 0x70,0x72,0x69,0x6e,0x74,0x48,0x65,0x6c,0x70,0x0a,0x66,0x69,0x0a,0x0a,
+ 0x75,0x6e,0x74,0x69,0x6c,0x20,0x5b,0x20,0x2d,0x7a,0x20,0x22,0x24,0x31,
+ 0x22,0x20,0x5d,0x20,0x20,0x23,0x20,0x55,0x6e,0x74,0x69,0x6c,0x20,0x61,
+ 0x6c,0x6c,0x20,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x20,
+ 0x75,0x73,0x65,0x64,0x20,0x75,0x70,0x2e,0x2e,0x2e,0x0a,0x64,0x6f,0x0a,
+ 0x09,0x69,0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,0x20,0x3d,0x3d,0x20,
+ 0x22,0x2d,0x2d,0x68,0x65,0x6c,0x70,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,
+ 0x65,0x6e,0x20,0x70,0x72,0x69,0x6e,0x74,0x48,0x65,0x6c,0x70,0x0a,0x09,
+ 0x65,0x6c,0x69,0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,0x20,0x3d,0x3d,
+ 0x20,0x22,0x2d,0x2d,0x6c,0x69,0x73,0x74,0x22,0x20,0x5d,0x0a,0x09,0x74,
+ 0x68,0x65,0x6e,0x0a,0x09,0x09,0x73,0x68,0x69,0x66,0x74,0x0a,0x09,0x09,
+ 0x6c,0x69,0x73,0x74,0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x50,0x61,
+ 0x63,0x6b,0x61,0x67,0x65,0x73,0x20,0x24,0x31,0x0a,0x09,0x65,0x6c,0x69,
+ 0x66,0x20,0x5b,0x20,0x22,0x24,0x31,0x22,0x20,0x3d,0x3d,0x20,0x22,0x2d,
+ 0x2d,0x66,0x69,0x6c,0x65,0x73,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,
+ 0x6e,0x0a,0x09,0x09,0x73,0x68,0x69,0x66,0x74,0x0a,0x09,0x09,0x6c,0x69,
+ 0x73,0x74,0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x46,0x69,0x6c,0x65,
+ 0x73,0x20,0x24,0x31,0x0a,0x09,0x65,0x6c,0x69,0x66,0x20,0x5b,0x20,0x22,
+ 0x24,0x31,0x22,0x20,0x3d,0x3d,0x20,0x22,0x2d,0x2d,0x72,0x65,0x6d,0x6f,
+ 0x76,0x65,0x22,0x20,0x5d,0x0a,0x09,0x74,0x68,0x65,0x6e,0x0a,0x09,0x09,
+ 0x73,0x68,0x69,0x66,0x74,0x0a,0x09,0x09,0x72,0x65,0x6d,0x6f,0x76,0x65,
+ 0x41,0x72,0x6b,0x6f,0x6c,0x6c,0x6f,0x6e,0x50,0x61,0x63,0x6b,0x61,0x67,
+ 0x65,0x20,0x24,0x31,0x0a,0x09,0x66,0x69,0x0a,0x09,0x73,0x68,0x69,0x66,
+ 0x74,0x0a,0x64,0x6f,0x6e,0x65,0x0a,0x09,0x09,0x0a
+};
+
+#include <qimage.h>
+#include <qdict.h>
+static const QRgb misc_data[] = {
+ 0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,
+ 0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffefefe,0xfffcfcfc,0xfffbfbfb,0xfff9f9f9,
+ 0xfff7f7f7,0xfff6f6f6,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffefefe,0xfffbfbfb,0xfffafafa,0xfff8f8f8,
+ 0xfff7f7f7,0xfff4f4f4,0xfff3f3f3,0xfff2f2f2,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffdfdfd,0xfffafafa,
+ 0xfff9f9f9,0xfff7f7f7,0xfff5f5f5,0xfff4f4f4,0xfff2f2f2,0xfff1f1f1,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffefefe,
+ 0xfffcfcfc,0xfff9f9f9,0xfff8f8f8,0xfff6f6f6,0xfff5f5f5,0xfff3f3f3,0xfff2f2f2,0xffefefef,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xffffffff,0xffffffff,
+ 0xfffefefe,0xfffcfcfc,0xfffbfbfb,0xfff8f8f8,0xfff7f7f7,0xfff5f5f5,0xfff4f4f4,0xfff2f2f2,0xfff0f0f0,0xffe9e9e9,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,
+ 0xffffffff,0xffffffff,0xfffdfdfd,0xfffbfbfb,0xfffafafa,0xfff7f7f7,0xfff6f6f6,0xfff4f4f4,0xfff3f3f3,0xfff1f1f1,0xffebebeb,0xffe8e8e8,0xffffffff,0xff8f8f8f,
+ 0xff8f8f8f,0xffffffff,0xffffffff,0xfffefefe,0xfffbfbfb,0xfffafafa,0xfff8f8f8,0xfff7f7f7,0xfff5f5f5,0xfff3f3f3,0xfff1f1f1,0xffececec,0xffeaeaea,0xffebebeb,
+ 0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xfffdfdfd,0xfffcfcfc,0xfffbfbfb,0xfff9f9f9,0xfff6f6f6,0xfff5f5f5,0xfff2f2f2,0xffefefef,0xffededed,0xffececec,
+ 0xffededed,0xffededed,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xfff0f0f0,0xfff2f2f2,0xfff3f3f3,0xfff2f2f2,0xfff1f1f1,0xfff0f0f0,0xffeeeeee,0xffeeeeee,
+ 0xffefefef,0xffefefef,0xffefefef,0xffefefef,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xfff0f0f0,0xfff0f0f0,0xfff0f0f0,0xfff0f0f0,0xfff0f0f0,0xfff0f0f0,
+ 0xfff0f0f0,0xfff1f1f1,0xfff1f1f1,0xffececec,0xffeaeaea,0xffe9e9e9,0xffffffff,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xfff3f3f3,0xfff3f3f3,0xfff3f3f3,0xfff3f3f3,
+ 0xfff3f3f3,0xfff3f3f3,0xfff3f3f3,0xfff4f4f4,0xffebebeb,0xffa8a8a8,0xffa8a8a8,0xffa8a8a8,0xffa8a8a8,0xff8f8f8f,0xff8f8f8f,0xffffffff,0xfff5f5f5,0xfff5f5f5,
+ 0xfff5f5f5,0xfff5f5f5,0xfff5f5f5,0xfff5f5f5,0xfff5f5f5,0xfff6f6f6,0xffececec,0xffa8a8a8,0xffffffff,0xffffffff,0xff8f8f8f,0xe000000,0xff8f8f8f,0xffffffff,
+ 0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xfff8f8f8,0xffededed,0xffa8a8a8,0xffffffff,0xff8f8f8f,0x6000000,0x0,
+ 0xff8f8f8f,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffbfbfb,0xffa8a8a8,0xff8f8f8f,0x0,
+ 0x0,0x0,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,0xff8f8f8f,
+ 0x0,0x0,0x0,0x0
+};
+
+static const QRgb splash_data[] = {
+ 0xff40bdff,0xff60cbff,0xff50c5ff,0xff61ccff,0xff51c5ff,0xff62ccff,0xff62ccff,0xff63ccff,0xff63ccff,0xff43c1ff,0xff64cdff,0xff54c8ff,0xff65ceff,0xff65ceff,
+ 0xff55c8ff,0xff46c3ff,0xff67cfff,0xff47c3ff,0xff57cbff,0xff78d5ff,0xff68cfff,0xff57cbff,0xff46c3ff,0xff46c3ff,0xff66cfff,0xff45c2ff,0xff54c8ff,0xff75d3ff,
+ 0xff43c1ff,0xff44c0ff,0xff43c1ff,0xff42c0ff,0xff63ccff,0xff41c0ff,0xff41bfff,0xff61ccff,0xff60ccff,0xff60ccff,0xff5fcbff,0xff3fbcff,0xff4fc2ff,0xff5fc9ff,
+ 0xff4dc1ff,0xff5ec8ff,0xff3cbbff,0xff5dc8ff,0xff3cbaff,0xff5cc7ff,0xff6dceff,0xff4ac1ff,0xff5cc7ff,0xff3ab9ff,0xff5bc6ff,0xff49bfff,0xff5ac6ff,0xff5ac6ff,
+ 0xff37b7ff,0xff37b5ff,0xff37b5ff,0xff35b5ff,0xff36b5ff,0xff46bbff,0xff57c3ff,0xff44bbff,0xff56c2ff,0xff56c1ff,0xff55c1ff,0xff32b3ff,0xff32b2ff,0xff32b2ff,
+ 0xff32b2ff,0xff65c7ff,0xff54c0ff,0xff53c0ff,0xff40b8ff,0xff52bfff,0xff51bfff,0xff3fb7ff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff3eb5ff,0xff4fbdff,0xff4fbcff,
+ 0xff4ebdff,0xff4ebcff,0xff4dbcff,0xff4cbbff,0xff4cbbff,0xff28abff,0xff28abff,0xff4bbaff,0xff4bbaff,0xff4bb9ff,0xff4ab9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,
+ 0xff24a8ff,0xff24a7ff,0xff48b8ff,0xff24a7ff,0xff35aeff,0xff47b7ff,0xff47b7ff,0xff33adff,0xff46b5ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea2ff,0xff30aaff,0xff41b3ff,0xff41b2ff,0xff41b3ff,0xff2ea9ff,0xff55baff,0xff41b2ff,0xff1ca0ff,0xff41b3ff,0xff56bbff,
+ 0xff2fabff,0xff1ea1ff,0xff1fa1ff,0xff20a2ff,0xff4fcaff,0xff50caff,0xff51cbff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54ccff,0xff54ccff,
+ 0xff54cdff,0xff55ceff,0xff55ceff,0xff56ceff,0xff57cfff,0xff57ceff,0xff8addff,0xff7ad9ff,0xff59d0ff,0xff5ad0ff,0xff59d0ff,0xff58cfff,0xff69d4ff,0xff79d9ff,
+ 0xff79d8ff,0xff57ceff,0xff56cdff,0xff55cdff,0xff54cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53ccff,0xff52ccff,0xff52cbff,0xff51cbff,0xff51cbff,0xff50caff,
+ 0xff4fc9ff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4ac7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff48c6ff,
+ 0xff49c6ff,0xff5accff,0xff6cd1ff,0xff6cd0ff,0xff5acaff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff45c3ff,0xff44c2ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff41c2ff,
+ 0xff41c1ff,0xff41c0ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,0xff3ebeff,0xff3dbeff,0xff3cbeff,0xff3dbeff,0xff3cbdff,0xff3bbdff,0xff3abcff,
+ 0xff3abdff,0xff39bdff,0xff39bcff,0xff38bcff,0xff38bcff,0xff37bbff,0xff37bbff,0xff36bbff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,
+ 0xff32b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b6ff,0xff31b6ff,0xff30b7ff,0xff30b5ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2cb4ff,
+ 0xff2cb3ff,0xff2cb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,
+ 0xff25afff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff41c0ff,
+ 0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff43c2ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff47c3ff,0xff47c3ff,0xff48c5ff,0xff48c5ff,
+ 0xff48c5ff,0xff47c5ff,0xff47c3ff,0xff46c2ff,0xff46c2ff,0xff46c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff43c0ff,0xff41c0ff,0xff41bfff,
+ 0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3dbcff,0xff3dbcff,0xff3dbbff,0xff3cbbff,0xff3cbbff,0xff3bbaff,
+ 0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff39b7ff,0xff37b8ff,0xff38b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,
+ 0xff34b4ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29acff,0xff29abff,0xff29abff,
+ 0xff28aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a9ff,0xff25a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,
+ 0xff22a5ff,0xff23a4ff,0xff21a4ff,0xff22a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a3ff,0xff1fa3ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,
+ 0xff1ca1ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1ca1ff,0xff1da0ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff4fcaff,0xff50caff,
+ 0xff51cbff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff65d2ff,0xff54cdff,0xff54cdff,0xff56cdff,0xff55ceff,0xff56ceff,0xff57ceff,0xff57cfff,
+ 0xff89ddff,0xff7ad9ff,0xff59d0ff,0xff7bd9ff,0xff7ad9ff,0xff58d0ff,0xff69d4ff,0xff79d8ff,0xff78d8ff,0xff56ceff,0xff56cdff,0xff55cdff,0xff55cdff,0xff55cdff,
+ 0xff54cdff,0xff53ccff,0xff63d1ff,0xff52ccff,0xff52cbff,0xff51caff,0xff50caff,0xff50cbff,0xff50caff,0xff4fc9ff,0xff4fc9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff5dcdff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff46c4ff,0xff47c5ff,0xff46c4ff,
+ 0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff56c8ff,0xff42c1ff,0xff55c7ff,0xff41c1ff,0xff41c0ff,0xff41c0ff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,
+ 0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff4ec4ff,0xff3abdff,0xff3abcff,0xff39bcff,0xff39bcff,0xff38bbff,0xff37bbff,
+ 0xff37bbff,0xff36bbff,0xff35baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff46bfff,0xff46bfff,0xff31b7ff,0xff31b7ff,
+ 0xff30b6ff,0xff59c4ff,0xff44bdff,0xff2fb5ff,0xff2eb5ff,0xff2db4ff,0xff2cb5ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b3ff,0xff29b2ff,
+ 0xff28b2ff,0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff26b0ff,0xff52c0ff,0xff25afff,0xff25b0ff,0xff3bb8ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff63ccff,0xff44c0ff,0xff44c1ff,0xff44c1ff,
+ 0xff44c2ff,0xff46c2ff,0xff45c2ff,0xff46c3ff,0xff66cfff,0xff47c5ff,0xff68cfff,0xff48c5ff,0xff48c3ff,0xff67cfff,0xff47c3ff,0xff46c2ff,0xff66ceff,0xff45c2ff,
+ 0xff45c2ff,0xff55c7ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff63ccff,0xff42bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bdff,0xff3fbcff,0xff3fbcff,
+ 0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff4ac0ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff39b9ff,0xff39b8ff,
+ 0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,0xff34b5ff,0xff57c2ff,0xff33b4ff,0xff44baff,0xff33b3ff,0xff32b3ff,
+ 0xff32b2ff,0xff31b2ff,0xff31b2ff,0xff31b1ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff50bdff,0xff2daeff,0xff2cadff,
+ 0xff2cadff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28abff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a9ff,
+ 0xff26a8ff,0xff37b0ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff49b7ff,0xff48b7ff,0xff23a5ff,0xff23a4ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff21a4ff,0xff21a3ff,
+ 0xff20a3ff,0xff20a3ff,0xff1fa3ff,0xff1fa2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea1ff,0xff1da0ff,0xff41b2ff,0xff1ca0ff,0xff1c9fff,0xff1ba0ff,0xff41b1ff,0xff1ca0ff,
+ 0xff1ca1ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1ea2ff,0xff1fa2ff,0xff4fcaff,0xff74d5ff,0xff73d5ff,0xff74d6ff,0xff62d1ff,0xff75d6ff,0xff75d6ff,0xff65d2ff,
+ 0xff76d6ff,0xff65d2ff,0xff66d2ff,0xff66d2ff,0xff78d7ff,0xff78d8ff,0xff68d3ff,0xff57cfff,0xff79d9ff,0xff58cfff,0xff59d0ff,0xff5ad0ff,0xff69d5ff,0xff69d5ff,
+ 0xff58cfff,0xff57cfff,0xff78d8ff,0xff56ceff,0xff66d3ff,0xff88ddff,0xff55cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff76d6ff,0xff52ccff,0xff51cbff,0xff51caff,
+ 0xff73d6ff,0xff73d5ff,0xff73d5ff,0xff61cfff,0xff72d4ff,0xff72d4ff,0xff60ceff,0xff71d3ff,0xff4dc8ff,0xff70d2ff,0xff4bc7ff,0xff5dcdff,0xff6fd2ff,0xff4ac7ff,
+ 0xff80d7ff,0xff6ed1ff,0xff6dd1ff,0xff5acbff,0xff6cd1ff,0xff6cd1ff,0xff59caff,0xff46c4ff,0xff45c4ff,0xff45c4ff,0xff57c9ff,0xff6aceff,0xff69ceff,0xff68ceff,
+ 0xff42c1ff,0xff7ad3ff,0xff41c1ff,0xff67cdff,0xff66cdff,0xff66cdff,0xff52c6ff,0xff66ccff,0xff65ccff,0xff64cbff,0xff50c5ff,0xff64cbff,0xff63caff,0xff4fc5ff,
+ 0xff63cbff,0xff75d1ff,0xff4ec4ff,0xff4dc3ff,0xff61caff,0xff61c9ff,0xff4cc2ff,0xff73cfff,0xff5fc9ff,0xff5fc9ff,0xff5ec8ff,0xff36baff,0xff35baff,0xff5dc7ff,
+ 0xff34b8ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff31b8ff,0xff31b7ff,0xff31b6ff,0xff30b7ff,0xff5ac5ff,0xff2fb6ff,0xff58c4ff,0xff58c4ff,0xff57c4ff,0xff42bcff,
+ 0xff57c3ff,0xff57c3ff,0xff57c3ff,0xff2bb4ff,0xff6acaff,0xff55c2ff,0xff3fbaff,0xff54c1ff,0xff54c1ff,0xff53c1ff,0xff28b1ff,0xff27b1ff,0xff52c0ff,0xff26b1ff,
+ 0xff52c0ff,0xff51bfff,0xff67c8ff,0xff3cb8ff,0xff52c0ff,0xff52c1ff,0xff3db9ff,0xff54c1ff,0xff28b2ff,0xff54c1ff,0xff40bdff,0xff60cbff,0xff61cbff,0xff61ccff,
+ 0xff41bfff,0xff62ccff,0xff62ccff,0xff63ccff,0xff74d3ff,0xff64cdff,0xff43c1ff,0xff64cdff,0xff64ceff,0xff66ceff,0xff66cfff,0xff46c3ff,0xff67cfff,0xff47c5ff,
+ 0xff48c5ff,0xff49c5ff,0xff68cfff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff66cfff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,
+ 0xff63ccff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff72d0ff,0xff61cbff,0xff71d0ff,0xff3fbcff,0xff5fc9ff,0xff5fc9ff,0xff5ec8ff,0xff4dc1ff,0xff4cc1ff,0xff5dc7ff,
+ 0xff3bbbff,0xff3abaff,0xff5cc7ff,0xff3ab9ff,0xff5bc6ff,0xff3ab8ff,0xff5bc6ff,0xff5bc6ff,0xff39b8ff,0xff59c5ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,
+ 0xff58c2ff,0xff34b5ff,0xff34b4ff,0xff57c2ff,0xff33b4ff,0xff56c2ff,0xff33b3ff,0xff55c1ff,0xff32b2ff,0xff31b2ff,0xff41b9ff,0xff65c7ff,0xff53c0ff,0xff65c7ff,
+ 0xff53bfff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff51bdff,0xff2daeff,0xff4fbdff,0xff2cadff,0xff2badff,0xff4ebdff,0xff4ebcff,0xff2aacff,0xff3ab3ff,
+ 0xff4cbbff,0xff28abff,0xff28aaff,0xff4bbaff,0xff28a9ff,0xff27aaff,0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,
+ 0xff48b8ff,0xff23a7ff,0xff23a5ff,0xff46b7ff,0xff46b5ff,0xff21a4ff,0xff46b4ff,0xff20a3ff,0xff45b4ff,0xff44b3ff,0xff44b4ff,0xff57bcff,0xff42b3ff,0xff56bcff,
+ 0xff1ea1ff,0xff2faaff,0xff2fa9ff,0xff1ca0ff,0xff41b2ff,0xff1ba0ff,0xff41b2ff,0xff1ca0ff,0xff41b3ff,0xff41b3ff,0xff42b3ff,0xff31aaff,0xff30abff,0xff43b3ff,
+ 0xff50caff,0xff73d5ff,0xff73d5ff,0xff74d6ff,0xff74d6ff,0xff52ccff,0xff53ccff,0xff76d6ff,0xff76d6ff,0xff66d2ff,0xff66d2ff,0xff77d7ff,0xff56ceff,0xff57ceff,
+ 0xff67d3ff,0xff57cfff,0xff7ad9ff,0xff59d0ff,0xff59d0ff,0xff7bd9ff,0xff58cfff,0xff59d0ff,0xff58cfff,0xff57cfff,0xff79d9ff,0xff56ceff,0xff66d3ff,0xff88dcff,
+ 0xff55cdff,0xff54ccff,0xff54ccff,0xff53ccff,0xff75d6ff,0xff52ccff,0xff51cbff,0xff51cbff,0xff73d6ff,0xff50caff,0xff61cfff,0xff72d5ff,0xff4fcaff,0xff4ec9ff,
+ 0xff71d3ff,0xff4dc8ff,0xff70d2ff,0xff5ecdff,0xff4bc7ff,0xff4bc7ff,0xff6fd2ff,0xff4ac6ff,0xff6fd1ff,0xff49c6ff,0xff6dd1ff,0xff48c5ff,0xff7fd6ff,0xff5acaff,
+ 0xff47c4ff,0xff46c3ff,0xff45c4ff,0xff45c3ff,0xff6acfff,0xff44c2ff,0xff56c9ff,0xff69ceff,0xff42c2ff,0xff68cdff,0xff41c1ff,0xff66cdff,0xff40c0ff,0xff3fc0ff,
+ 0xff3fc0ff,0xff66ccff,0xff3ebfff,0xff51c5ff,0xff64ccff,0xff3dbeff,0xff3cbeff,0xff4fc5ff,0xff3bbeff,0xff62caff,0xff4ec4ff,0xff61caff,0xff39bcff,0xff39bcff,
+ 0xff60c9ff,0xff5fc9ff,0xff36bbff,0xff36bbff,0xff4ac1ff,0xff5ec8ff,0xff5ec8ff,0xff5ec7ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,
+ 0xff31b7ff,0xff45bdff,0xff45beff,0xff2fb5ff,0xff58c5ff,0xff2eb5ff,0xff2db5ff,0xff57c4ff,0xff57c3ff,0xff2db4ff,0xff57c2ff,0xff2bb4ff,0xff56c2ff,0xff55c2ff,
+ 0xff54c2ff,0xff54c1ff,0xff29b1ff,0xff3eb9ff,0xff28b1ff,0xff52c1ff,0xff27b1ff,0xff26b0ff,0xff51c0ff,0xff25b0ff,0xff67c8ff,0xff52c0ff,0xff27b1ff,0xff27b0ff,
+ 0xff52c1ff,0xff28b2ff,0xff53c1ff,0xff3fbaff,0xff40bdff,0xff50c3ff,0xff41bdff,0xff50c5ff,0xff41bfff,0xff62ccff,0xff62ccff,0xff52c6ff,0xff53c7ff,0xff43c1ff,
+ 0xff54c7ff,0xff45c2ff,0xff64cdff,0xff65ceff,0xff46c3ff,0xff47c2ff,0xff66cfff,0xff47c3ff,0xff57c9ff,0xff68cfff,0xff68cfff,0xff57c9ff,0xff47c3ff,0xff46c2ff,
+ 0xff65ceff,0xff45c2ff,0xff44c1ff,0xff54c7ff,0xff43c1ff,0xff43c0ff,0xff43c0ff,0xff42c0ff,0xff52c5ff,0xff62ccff,0xff62ccff,0xff50c5ff,0xff50c5ff,0xff60cbff,
+ 0xff50c3ff,0xff3fbdff,0xff5fc9ff,0xff5fc9ff,0xff4ec2ff,0xff3dbbff,0xff4cc1ff,0xff3cbbff,0xff3bbaff,0xff5cc7ff,0xff5cc6ff,0xff4ac1ff,0xff49c0ff,0xff3ab9ff,
+ 0xff49c0ff,0xff5bc6ff,0xff49bdff,0xff5ac5ff,0xff48bfff,0xff36b7ff,0xff36b7ff,0xff36b5ff,0xff35b5ff,0xff58c3ff,0xff45bbff,0xff45bbff,0xff44bbff,0xff55c1ff,
+ 0xff55c1ff,0xff43baff,0xff32b3ff,0xff32b2ff,0xff32b2ff,0xff41b9ff,0xff53c0ff,0xff40b8ff,0xff2fb0ff,0xff52bfff,0xff51bfff,0xff2eaeff,0xff2eaeff,0xff3fb7ff,
+ 0xff3eb5ff,0xff2dadff,0xff4fbdff,0xff4fbdff,0xff2badff,0xff3bb3ff,0xff2aabff,0xff29abff,0xff3ab3ff,0xff28aaff,0xff28aaff,0xff4bbaff,0xff28a9ff,0xff27a9ff,
+ 0xff27a9ff,0xff26a9ff,0xff25a9ff,0xff25a8ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,0xff24a5ff,0xff35adff,0xff23a7ff,0xff23a5ff,0xff33adff,0xff33adff,0xff46b5ff,
+ 0xff33acff,0xff20a3ff,0xff32acff,0xff20a3ff,0xff31abff,0xff31abff,0xff42b3ff,0xff30aaff,0xff30aaff,0xff2faaff,0xff1ca0ff,0xff1ca0ff,0xff2ea8ff,0xff41b2ff,
+ 0xff2ea9ff,0xff1ca0ff,0xff41b2ff,0xff41b3ff,0xff30aaff,0xff1ea1ff,0xff30aaff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff51cbff,0xff51caff,0xff52cbff,0xff52ccff,
+ 0xff52ccff,0xff53ccff,0xff53cdff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff57ceff,0xff57ceff,0xff57ceff,0xff7ad9ff,0xff7ad9ff,0xff59cfff,0xff5ad0ff,
+ 0xff59d0ff,0xff58cfff,0xff69d4ff,0xff7ad9ff,0xff67d4ff,0xff56ceff,0xff56ceff,0xff55cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53ccff,0xff53ccff,0xff52cbff,
+ 0xff52cbff,0xff51cbff,0xff51cbff,0xff50cbff,0xff4fcaff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc7ff,0xff4bc7ff,0xff4bc7ff,
+ 0xff4ac7ff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff6cd1ff,0xff6cd0ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,
+ 0xff43c3ff,0xff43c2ff,0xff42c1ff,0xff41c1ff,0xff42c1ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,
+ 0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abdff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37baff,0xff36bbff,0xff35baff,0xff5ec8ff,
+ 0xff5ec8ff,0xff34b9ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff30b7ff,0xff45beff,0xff30b7ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,
+ 0xff2eb5ff,0xff2db4ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff2ab2ff,0xff28b2ff,0xff28b2ff,0xff3eb9ff,0xff27b1ff,
+ 0xff26b1ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,
+ 0xff41bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff43c0ff,0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff46c3ff,0xff46c3ff,
+ 0xff47c3ff,0xff47c3ff,0xff48c3ff,0xff49c5ff,0xff47c3ff,0xff48c5ff,0xff47c3ff,0xff46c3ff,0xff46c3ff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,
+ 0xff42c1ff,0xff42c0ff,0xff41c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbcff,
+ 0xff3cbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,
+ 0xff37b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff30b1ff,
+ 0xff31b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2badff,0xff2badff,0xff2bacff,
+ 0xff29abff,0xff2aacff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a8ff,0xff26a8ff,0xff25a8ff,0xff24a8ff,0xff24a8ff,
+ 0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,
+ 0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,
+ 0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff84daff,0xff50caff,0xff85daff,0xff52cbff,0xff52ccff,0xff53ccff,0xff53ccff,0xff76d7ff,0xff54ccff,0xff55cdff,0xff55cdff,
+ 0xff55ceff,0xff78d8ff,0xff57ceff,0xff57cfff,0xff58cfff,0xff58cfff,0xff58cfff,0xff5ad0ff,0xff59d0ff,0xff58d0ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff56ceff,
+ 0xff55ceff,0xff55ceff,0xff55ceff,0xff54cdff,0xff87dbff,0xff53cdff,0xff53ccff,0xff63d0ff,0xff75d6ff,0xff52caff,0xff50cbff,0xff50caff,0xff4fcaff,0xff4fc9ff,
+ 0xff4ec9ff,0xff72d4ff,0xff4ec9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff49c5ff,0xff49c5ff,0xff47c5ff,
+ 0xff47c5ff,0xff46c4ff,0xff47c4ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff45c2ff,0xff44c2ff,0xff43c3ff,0xff43c2ff,0xff43c1ff,0xff42c1ff,0xff42c1ff,0xff40c1ff,
+ 0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff3ebfff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbeff,0xff3bbdff,0xff3abdff,0xff39bcff,
+ 0xff39bcff,0xff39bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b8ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,
+ 0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,
+ 0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff27b1ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,
+ 0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff71d0ff,0xff61ccff,0xff72d0ff,0xff41bfff,0xff62ccff,0xff62ccff,0xff42c0ff,
+ 0xff63ccff,0xff43c1ff,0xff53c8ff,0xff44c1ff,0xff55c8ff,0xff56c8ff,0xff45c3ff,0xff57c8ff,0xff66cfff,0xff57c9ff,0xff48c5ff,0xff68cfff,0xff58cbff,0xff58cbff,
+ 0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff45c2ff,0xff65cdff,0xff64cdff,0xff43c1ff,0xff43c1ff,0xff63ccff,0xff43c0ff,0xff42c0ff,0xff41c0ff,0xff61ccff,0xff41bfff,
+ 0xff41bdff,0xff40bfff,0xff40bdff,0xff3fbdff,0xff4ec2ff,0xff4ec2ff,0xff3dbcff,0xff4dc1ff,0xff5ec8ff,0xff4cc1ff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,
+ 0xff49c0ff,0xff5bc6ff,0xff49bfff,0xff49bfff,0xff49bfff,0xff59c5ff,0xff37b7ff,0xff47bdff,0xff36b5ff,0xff47bcff,0xff36b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,
+ 0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb1ff,0xff2eb0ff,0xff2eaeff,
+ 0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2bacff,0xff2aabff,0xff2aabff,0xff29abff,0xff29aaff,0xff28abff,0xff28aaff,
+ 0xff28aaff,0xff27a9ff,0xff26a9ff,0xff27a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,
+ 0xff21a4ff,0xff21a4ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca1ff,0xff1da0ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,0xff73d5ff,0xff74d5ff,
+ 0xff62d0ff,0xff53cbff,0xff52ccff,0xff76d6ff,0xff76d6ff,0xff76d7ff,0xff54cdff,0xff55cdff,0xff56cdff,0xff79d8ff,0xff57ceff,0xff89ddff,0xff58cfff,0xff7ad9ff,
+ 0xff7bd9ff,0xff5ad0ff,0xff7bd9ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff56ceff,0xff67d3ff,0xff56ceff,0xff55cdff,0xff76d8ff,0xff54ccff,0xff76d7ff,0xff53ccff,
+ 0xff53ccff,0xff52cbff,0xff75d6ff,0xff51cbff,0xff50cbff,0xff50caff,0xff50caff,0xff4fc9ff,0xff4fcaff,0xff72d3ff,0xff4ec9ff,0xff82d9ff,0xff4cc8ff,0xff70d3ff,
+ 0xff4bc7ff,0xff4bc7ff,0xff4bc6ff,0xff4ac6ff,0xff6ed1ff,0xff49c6ff,0xff6dd1ff,0xff6dd1ff,0xff5acaff,0xff47c4ff,0xff6bd0ff,0xff6bcfff,0xff45c4ff,0xff6acfff,
+ 0xff44c3ff,0xff44c2ff,0xff43c3ff,0xff43c2ff,0xff42c1ff,0xff41c2ff,0xff41c1ff,0xff40c0ff,0xff40c1ff,0xff3fc0ff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,
+ 0xff3dbfff,0xff3dbfff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bcff,0xff37baff,0xff37bbff,0xff36bbff,
+ 0xff36baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff33b7ff,0xff31b8ff,0xff32b8ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff30b6ff,
+ 0xff2eb6ff,0xff2eb6ff,0xff2eb5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,
+ 0xff28b1ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff27b0ff,0xff27b0ff,0xff27b0ff,0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,
+ 0xff3fbdff,0xff60cbff,0xff41bfff,0xff61ccff,0xff51c6ff,0xff62ccff,0xff63ccff,0xff63ccff,0xff74d2ff,0xff63cdff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff65ceff,
+ 0xff46c2ff,0xff66cfff,0xff47c3ff,0xff67cfff,0xff58cbff,0xff68cfff,0xff68cfff,0xff47c3ff,0xff47c3ff,0xff46c2ff,0xff46c3ff,0xff55c8ff,0xff65cdff,0xff65ceff,
+ 0xff63cdff,0xff43c1ff,0xff63cdff,0xff42c0ff,0xff42bfff,0xff41c0ff,0xff61ccff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3fbcff,0xff5fc9ff,
+ 0xff3dbcff,0xff5ec8ff,0xff3cbbff,0xff5dc8ff,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff3abaff,0xff5bc6ff,0xff5bc6ff,0xff49c0ff,0xff5bc6ff,0xff38b8ff,0xff37b8ff,
+ 0xff5ac5ff,0xff59c5ff,0xff36b5ff,0xff58c3ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff31b2ff,
+ 0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff30b0ff,0xff2fb1ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2cadff,
+ 0xff2bacff,0xff2aacff,0xff2aabff,0xff2aabff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,
+ 0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff21a5ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,
+ 0xff20a2ff,0xff20a2ff,0xff1ea2ff,0xff1fa1ff,0xff1ea1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,
+ 0xff1ea1ff,0xff1ea2ff,0xff1ea1ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,0xff51caff,0xff74d6ff,0xff63d0ff,0xff75d6ff,0xff75d6ff,0xff76d6ff,0xff76d7ff,0xff54cdff,
+ 0xff76d7ff,0xff55ceff,0xff78d7ff,0xff89ddff,0xff68d3ff,0xff79d9ff,0xff57cfff,0xff7ad9ff,0xff6ad5ff,0xff7bd9ff,0xff7bd9ff,0xff58cfff,0xff58cfff,0xff57ceff,
+ 0xff57ceff,0xff67d3ff,0xff78d6fe,0xff77d6fe,0xff77d6fe,0xff65d1fe,0xff87dbff,0xff76d6ff,0xff52ccff,0xff75d6ff,0xff85daff,0xff62cfff,0xff51cbff,0xff50caff,
+ 0xff4fcaff,0xff4fcaff,0xff72d4ff,0xff83d9ff,0xff5fcdff,0xff71d4ff,0xff4cc8ff,0xff70d2ff,0xff4bc8ff,0xff4bc7ff,0xff4bc7ff,0xff49c6ff,0xff6ed1ff,0xff6ed1ff,
+ 0xff5accff,0xff6dd1ff,0xff48c4ff,0xff47c5ff,0xff6bd0ff,0xff6bd0ff,0xff6acfff,0xff7dd5ff,0xff44c3ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,
+ 0xff41c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff3fbfff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3abdff,
+ 0xff3abdff,0xff39bcff,0xff39bcff,0xff39bbff,0xff38bcff,0xff38bbff,0xff37baff,0xff37baff,0xff36baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff33b8ff,0xff33b9ff,
+ 0xff32b8ff,0xff33b8ff,0xff32b7ff,0xff31b8ff,0xff31b6ff,0xff30b6ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,
+ 0xff2cb3ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff28b1ff,0xff26b0ff,0xff26b0ff,0xff26b0ff,0xff25afff,
+ 0xff25afff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff2ab2ff,0xff3fbcff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,
+ 0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff45c2ff,0xff47c3ff,0xff47c3ff,0xff47c3ff,0xff58cbff,0xff68cfff,
+ 0xff68cfff,0xff57c9ff,0xff47c2fe,0xff47c1fe,0xff47c2ff,0xff45c1fe,0xff44c1fe,0xff45c1fe,0xff44c1ff,0xff43c0fe,0xff43c0fe,0xff43c0ff,0xff43c0ff,0xff41bffe,
+ 0xff41befe,0xff41befe,0xff41befe,0xff40bcfe,0xff3fbcfe,0xff3fbbfe,0xff3ebcff,0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3dbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,
+ 0xff3abaff,0xff3ab9ff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,
+ 0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29acff,0xff29abff,0xff28aaff,
+ 0xff28aaff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a9ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff23a7ff,
+ 0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1fa2ff,0xff1da1ff,0xff1da0ff,
+ 0xff1ca0ff,0xff1ca0ff,0xff1c9fff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da1ff,0xff1da0ff,0xff1da1ff,0xff1ea2ff,0xff1ea1ff,0xff1fa2ff,0xff4fcaff,0xff50caff,
+ 0xff51caff,0xff51cbff,0xff52cbff,0xff52cbff,0xff53cbff,0xff53ccff,0xff54ccff,0xff54cdff,0xff55cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff57cfff,0xff57cfff,
+ 0xff58cfff,0xff58cfff,0xff59d0ff,0xff5ad0ff,0xff59cefe,0xff59d0ff,0xff59cfff,0xff58cefe,0xff58cffe,0xff58cefe,0xff59cefe,0xff58cdfe,0xff58cdfe,0xff57cdfe,
+ 0xff56cdfe,0xff55ccfe,0xff55ccfe,0xff53ccfe,0xff52cbfe,0xff52cbfe,0xff52cafe,0xff51cafe,0xff51cafe,0xff4fc9fe,0xff4ec9fe,0xff4ec8fe,0xff4dc7fe,0xff4dc7fe,
+ 0xff4dc8ff,0xff4cc7ff,0xff4bc8ff,0xff4bc7ff,0xff4bc7ff,0xff49c7ff,0xff4ac6ff,0xff49c5ff,0xff49c6ff,0xff48c5ff,0xff47c5ff,0xff47c4ff,0xff47c4ff,0xff46c4ff,
+ 0xff46c4ff,0xff44c3ff,0xff44c3ff,0xff44c2ff,0xff43c3ff,0xff42c2ff,0xff43c2ff,0xff41c1ff,0xff41c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,
+ 0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff3dbfff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff38bbff,
+ 0xff37baff,0xff36bbff,0xff36baff,0xff36baff,0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff33b9ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff31b7ff,0xff30b7ff,0xff30b7ff,
+ 0xff30b6ff,0xff30b5ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff2ab2ff,
+ 0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,0xff26afff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff53c7ff,0xff43c0ff,0xff44c1ff,0xff44c1ff,
+ 0xff45c2ff,0xff45c2ff,0xff45c3ff,0xff46c2ff,0xff77d4ff,0xff67cfff,0xff47c4fe,0xff68cefe,0xff68cffe,0xff49c5fe,0xff5ac9fe,0xff6bd0ff,0xff69cffe,0xff4cc5fe,
+ 0xff4dc4fe,0xff4dc3fe,0xff4cc3fe,0xff4bc3fe,0xff49c3fe,0xff49c1fe,0xff56c7fe,0xff65ccfe,0xff65ccfe,0xff54c6fe,0xff45c0fe,0xff44befe,0xff43befe,0xff43bdfe,
+ 0xff51c3fe,0xff40bcfe,0xff3fbcfe,0xff3ebbfe,0xff3dbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff49c0ff,0xff39b9ff,0xff38b8ff,
+ 0xff38b7ff,0xff37b7ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff43baff,0xff33b3ff,
+ 0xff33b2ff,0xff42b9ff,0xff31b2ff,0xff30b2ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2dadff,
+ 0xff3db5ff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29acff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a8ff,
+ 0xff25a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff48b8ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff46b5ff,0xff33adff,0xff21a4ff,0xff21a3ff,0xff20a3ff,
+ 0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff41b2ff,0xff1ca0ff,
+ 0xff1da0ff,0xff1da1ff,0xff30abff,0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff50cbff,0xff51caff,0xff52cbff,0xff52cbff,0xff52ccff,0xff53cdff,
+ 0xff76d7ff,0xff54cdff,0xff55cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff57ceff,0xff57cfff,0xff7ad8fe,0xff59d0ff,0xff7cd8fe,0xff5cd0fe,0xff5bd0fe,0xff7dd9fe,
+ 0xff5ed0fe,0xff60d0fe,0xff81dafe,0xff63d1fe,0xff64d0fe,0xff73d5fe,0xff62d0fd,0xff61cffd,0xff5fcffd,0xff5dcefe,0xff7dd7fd,0xff5acefe,0xff59ccfd,0xff59cdfe,
+ 0xff58cbfd,0xff58ccfe,0xff58ccfe,0xff56cbfe,0xff77d5fe,0xff53cafe,0xff51c9fe,0xff50c9ff,0xff4ec8fe,0xff4bc7fe,0xff4bc6fe,0xff4bc7ff,0xff4ac7ff,0xff49c7ff,
+ 0xff4ac6ff,0xff5bccff,0xff48c5ff,0xff48c5ff,0xff47c4ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,
+ 0xff42c1ff,0xff42c1ff,0xff67cdff,0xff41c0ff,0xff40c0ff,0xff53c6ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3ebeff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3bbeff,
+ 0xff3bbdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff61caff,0xff39bbff,0xff38bcff,0xff37bbff,0xff36baff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,
+ 0xff33b9ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff45bdff,0xff2fb6ff,0xff2eb6ff,0xff58c4ff,0xff2db4ff,
+ 0xff57c3ff,0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b2ff,0xff28b1ff,0xff27b0ff,0xff26b1ff,0xff26b0ff,
+ 0xff25afff,0xff25b0ff,0xff51c0ff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff52c1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff60cbff,0xff60cbff,0xff61ccff,
+ 0xff50c5ff,0xff62ccff,0xff62ccff,0xff52c6ff,0xff63cdff,0xff54c7ff,0xff54c8ff,0xff54c7ff,0xff64ceff,0xff65ceff,0xff56c7fe,0xff47c2ff,0xff67cfff,0xff49c3fe,
+ 0xff4bc3fe,0xff4ec7ff,0xff5eccfe,0xff61cdfe,0xff53c7fe,0xff57c8fe,0xff76d2fd,0xff5cc8fd,0xff6ccffe,0xff88d8fd,0xff5dc9fe,0xff5bc8fd,0xff59c7fd,0xff56c6fd,
+ 0xff72cffd,0xff6fcffd,0xff60c9fe,0xff52c4fe,0xff7dd3fe,0xff6ed0fe,0xff6dcffe,0xff5cc7fe,0xff7ad1fe,0xff67cbfe,0xff46bdfe,0xff63c9fe,0xff61c8fe,0xff5fc8fe,
+ 0xff5dc7ff,0xff5dc7ff,0xff5cc7ff,0xff4ac1ff,0xff3ab9ff,0xff6dcdff,0xff39b9ff,0xff5bc6ff,0xff5ac6ff,0xff5ac6ff,0xff48bdff,0xff59c5ff,0xff58c5ff,0xff58c5ff,
+ 0xff36b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff57c2ff,0xff56c1ff,0xff67c8ff,0xff33b2ff,0xff42baff,0xff54c1ff,0xff31b2ff,0xff66c7ff,0xff53c0ff,0xff53c0ff,
+ 0xff40b8ff,0xff51bfff,0xff51bfff,0xff40b8ff,0xff51bdff,0xff50bdff,0xff50bdff,0xff3db7ff,0xff61c5ff,0xff4fbdff,0xff2bacff,0xff4dbcff,0xff4dbbff,0xff4cbbff,
+ 0xff4cbbff,0xff4cbbff,0xff4bbbff,0xff39b2ff,0xff4bbaff,0xff27aaff,0xff4ab9ff,0xff26a8ff,0xff26a9ff,0xff25a8ff,0xff24a7ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,
+ 0xff24a7ff,0xff23a5ff,0xff47b7ff,0xff22a4ff,0xff5abfff,0xff46b5ff,0xff45b4ff,0xff32acff,0xff45b4ff,0xff44b4ff,0xff31abff,0xff43b3ff,0xff43b3ff,0xff42b3ff,
+ 0xff2fabff,0xff41b3ff,0xff41b2ff,0xff2ea9ff,0xff1ba0ff,0xff41b1ff,0xff1ba0ff,0xff2eaaff,0xff41b3ff,0xff41b2ff,0xff42b3ff,0xff42b3ff,0xff42b3ff,0xff43b3ff,
+ 0xff4fc9ff,0xff73d6ff,0xff73d6ff,0xff74d6ff,0xff51cbff,0xff76d6ff,0xff76d6ff,0xff76d7ff,0xff87dcff,0xff76d6ff,0xff54cdff,0xff77d8ff,0xff78d6fe,0xff7ad8ff,
+ 0xff7ad9ff,0xff59cffe,0xff7cd9fe,0xff5dd0fe,0xff60d1fe,0xff62d2fe,0xff85dbfe,0xff69d3fe,0xff6dd4fe,0xff70d5fe,0xff90dffe,0xff77d7fe,0xff7ad8fe,0xff7ad6fd,
+ 0xff7ad8fe,0xff77d7fe,0xff74d6fe,0xff71d4fe,0xff8bdcfe,0xff6cd3fe,0xff6bd2fe,0xff6bd1fe,0xff88dafe,0xff6ad1fe,0xff85d9fd,0xff66d0fe,0xff81d7fd,0xff5ecdfe,
+ 0xff5accfe,0xff88dafe,0xff75d4fe,0xff83d9fe,0xff71d3ff,0xff4bc7ff,0xff4bc7ff,0xff5cccff,0xff4ac6ff,0xff6dd1ff,0xff48c5ff,0xff6cd1ff,0xff47c5ff,0xff47c5ff,
+ 0xff6cd0ff,0xff6bd0ff,0xff45c3ff,0xff6acfff,0xff45c3ff,0xff43c3ff,0xff44c2ff,0xff43c2ff,0xff68cdff,0xff42c2ff,0xff67cdff,0xff40c0ff,0xff41c0ff,0xff66cdff,
+ 0xff3fbfff,0xff66cdff,0xff3ebfff,0xff51c5ff,0xff64ccff,0xff64cbff,0xff63cbff,0xff63cbff,0xff63cbff,0xff3abdff,0xff3abcff,0xff3abcff,0xff61caff,0xff38bcff,
+ 0xff38bbff,0xff60c9ff,0xff37baff,0xff5ec8ff,0xff5ec8ff,0xff36baff,0xff35b9ff,0xff49c0ff,0xff5dc7ff,0xff33b9ff,0xff5cc6ff,0xff32b7ff,0xff31b7ff,0xff32b7ff,
+ 0xff31b7ff,0xff30b7ff,0xff30b7ff,0xff2fb6ff,0xff2eb6ff,0xff43bcff,0xff43bcff,0xff2eb5ff,0xff57c4ff,0xff2cb4ff,0xff56c2ff,0xff56c2ff,0xff2ab3ff,0xff2ab2ff,
+ 0xff54c2ff,0xff54c1ff,0xff54c1ff,0xff53c1ff,0xff53c1ff,0xff52c1ff,0xff52c0ff,0xff52c0ff,0xff25b0ff,0xff51bfff,0xff25b0ff,0xff52c0ff,0xff26b1ff,0xff27b1ff,
+ 0xff53c1ff,0xff3eb9ff,0xff54c1ff,0xff69c9ff,0xff3fbdff,0xff60ccff,0xff60cbff,0xff61ccff,0xff62ccff,0xff41bfff,0xff42c0ff,0xff63ccff,0xff63cdff,0xff53c7ff,
+ 0xff53c8ff,0xff65cdff,0xff45c1fe,0xff47c3ff,0xff57c9fe,0xff4bc3fe,0xff6dd0fe,0xff51c6fe,0xff55c9fe,0xff76d3fe,0xff5fccfe,0xff64ccfe,0xff6acefe,0xff6fcffd,
+ 0xff8edbfe,0xff7bd3fe,0xff88d8fe,0xffa0e1fe,0xff7dd3fe,0xff7bd2fe,0xff77d1fd,0xff72cffd,0xff88d7fe,0xff6dcefe,0xff6ccdfe,0xff6ccdfe,0xff84d6fe,0xff6bcdfe,
+ 0xff82d6fe,0xff66c9fe,0xff7bd3fe,0xff5bc5fe,0xff62c8fe,0xff6dcdfe,0xff49bffe,0xff53c3fe,0xff60c8fe,0xff3ebafe,0xff3bbafe,0xff3bbaff,0xff3ab9ff,0xff5bc6ff,
+ 0xff3ab9ff,0xff5ac6ff,0xff39b8ff,0xff38b7ff,0xff5ac5ff,0xff59c3ff,0xff58c5ff,0xff35b5ff,0xff35b5ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff56c1ff,0xff33b3ff,
+ 0xff67c8ff,0xff33b3ff,0xff32b2ff,0xff54c1ff,0xff32b1ff,0xff53c0ff,0xff31b1ff,0xff30b1ff,0xff52bfff,0xff2eb0ff,0xff2eaeff,0xff3fb8ff,0xff51bdff,0xff2eaeff,
+ 0xff3eb7ff,0xff2cadff,0xff4fbdff,0xff2cadff,0xff3cb4ff,0xff4ebcff,0xff2aacff,0xff4cbcff,0xff4cbbff,0xff29aaff,0xff28aaff,0xff28aaff,0xff4bbaff,0xff4bbaff,
+ 0xff5dc2ff,0xff26a9ff,0xff25a8ff,0xff26a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff48b8ff,0xff23a5ff,0xff22a5ff,0xff46b7ff,0xff21a4ff,
+ 0xff46b5ff,0xff45b5ff,0xff20a3ff,0xff20a2ff,0xff44b3ff,0xff43b3ff,0xff42b3ff,0xff42b3ff,0xff41b3ff,0xff1da0ff,0xff1ca0ff,0xff2ea9ff,0xff2ea9ff,0xff2ea9ff,
+ 0xff1ca0ff,0xff41b2ff,0xff1ca0ff,0xff2fa9ff,0xff42b3ff,0xff42b3ff,0xff1ea1ff,0xff43b3ff,0xff4fcaff,0xff62cfff,0xff50cbff,0xff63d0ff,0xff51cbff,0xff75d6ff,
+ 0xff75d6ff,0xff64d1ff,0xff65d2ff,0xff55cdff,0xff66d1fe,0xff56cefe,0xff79d7fe,0xff7bd8fe,0xff5dcffe,0xff5fd0fe,0xff83dbfe,0xff67d3fe,0xff7bd7fd,0xff8fdefe,
+ 0xff93dffd,0xff8cddfe,0xff86dbfe,0xff8cddfe,0xffa9e5fe,0xff98e0fd,0xff9ce1fe,0xffa6e4fd,0xff9ce1fe,0xff99e0fe,0xff93ddfd,0xff90ddfe,0xff98e0fe,0xffa1e2fe,
+ 0xffa0e2fe,0xff94ddfe,0xff94defe,0xff87dafd,0xff92ddfe,0xff82d9fe,0xff7dd6fe,0xff91dcfd,0xff6ed1fe,0xff76d4fe,0xff7fd7fe,0xff6ad0fe,0xff65cffe,0xff50c8fe,
+ 0xff4fc7ff,0xff4bc7fe,0xff5ccdff,0xff6ed1ff,0xff6dd1ff,0xff5accff,0xff48c5ff,0xff47c4ff,0xff5acaff,0xff6bcfff,0xff6bcfff,0xff6ad0ff,0xff44c3ff,0xff44c3ff,
+ 0xff43c2ff,0xff42c2ff,0xff55c7ff,0xff68cdff,0xff54c7ff,0xff41c1ff,0xff66cdff,0xff66cdff,0xff52c5ff,0xff51c5ff,0xff3fbfff,0xff3ebfff,0xff3dbeff,0xff63cbff,
+ 0xff63cbff,0xff3bbdff,0xff4fc4ff,0xff62caff,0xff4ec4ff,0xff39bcff,0xff39bcff,0xff61caff,0xff38bbff,0xff4cc2ff,0xff5fc9ff,0xff4ac1ff,0xff4ac1ff,0xff35b9ff,
+ 0xff35b9ff,0xff34b9ff,0xff47bfff,0xff34b8ff,0xff5cc6ff,0xff33b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff30b6ff,0xff2fb6ff,0xff44bdff,0xff43bcff,
+ 0xff2eb5ff,0xff2eb4ff,0xff42bcff,0xff2cb4ff,0xff41bbff,0xff2bb4ff,0xff56c2ff,0xff55c1ff,0xff2ab2ff,0xff3fbaff,0xff29b1ff,0xff3eb9ff,0xff28b1ff,0xff52c1ff,
+ 0xff52c0ff,0xff26b0ff,0xff51bfff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff52c1ff,0xff3eb9ff,0xff3eb9ff,0xff3ebaff,0xff53c1ff,0xff54c1ff,0xff3fbdff,0xff40bfff,
+ 0xff40bfff,0xff41bfff,0xff41bfff,0xff42bfff,0xff41bfff,0xff42bffe,0xff44c0ff,0xff44c1ff,0xff46c1fe,0xff48c2ff,0xff4bc2fe,0xff4dc4fe,0xff51c5fe,0xff56c8fe,
+ 0xff78d4fe,0xff7dd4fd,0xff69cffe,0xff72d1fe,0xff7ad3fe,0xff82d5fd,0xff95dbfd,0xffa7e2fe,0xffa5e1fe,0xffa3e0fe,0xffa7e1fe,0xffa8e1fe,0xffa7e1fe,0xffa3dffd,
+ 0xff9edefe,0xff99dbfd,0xff95dbfe,0xff93dafe,0xff92d9fe,0xff92dafe,0xff92d8fd,0xff92d8fd,0xff90d8fe,0xff8ad5fd,0xff83d2fd,0xff79cffd,0xff6fccfd,0xff65c8fe,
+ 0xff5bc5fe,0xff53c1fe,0xff4cbffe,0xff46bdfe,0xff41bbff,0xff3ebafe,0xff3cbaff,0xff3bb8fe,0xff39b7fe,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff37b7ff,0xff48bdff,
+ 0xff58c5ff,0xff47bcff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff33b2ff,0xff33b2ff,0xff31b2ff,0xff32b1ff,0xff31b2ff,
+ 0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2aacff,
+ 0xff2aacff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff38b1ff,0xff4ab9ff,0xff38b1ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,
+ 0xff24a7ff,0xff24a5ff,0xff34adff,0xff23a5ff,0xff23a5ff,0xff23a4ff,0xff22a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,
+ 0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff2ea9ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,
+ 0xff1fa2ff,0xff20a2ff,0xff50caff,0xff50cbff,0xff50caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53cbfe,0xff55cdff,0xff57ceff,0xff5acfff,0xff5ccffe,
+ 0xff5fd0fe,0xff64d1fe,0xff6ad4fe,0xff6fd4fe,0xff91defd,0xff97e1fe,0xff85dcfe,0xff8edefe,0xff96dffd,0xff9fe2fd,0xffb0e7fd,0xffc0ebfd,0xffbfecfe,0xffbdebfe,
+ 0xffd3d6ac,0xfff6b41e,0xffffae00,0xffb9d3cc,0xffb3e1f5,0xffb3e6fc,0xffb1e6fd,0xffafe5fd,0xffaee5fd,0xffaee5fd,0xffafe5fd,0xffbbd9cc,0xffaeddea,0xffa5e1fb,
+ 0xff9fe0fd,0xff96defe,0xff8adafd,0xff7fd8fe,0xff73d3fd,0xff6bd1fe,0xff62cefe,0xff5acbfe,0xff55cafe,0xff50c8fe,0xff4dc7ff,0xff4bc7ff,0xff49c4fe,0xff48c4fe,
+ 0xff47c4ff,0xff47c5ff,0xff47c4ff,0xff46c4ff,0xff45c4ff,0xff44c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff42c2ff,0xff42c1ff,0xff40c1ff,
+ 0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3fbfff,0xff3ebeff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbeff,0xff3bbcff,0xff3abcff,0xff3abcff,
+ 0xff39bcff,0xff38bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36bbff,0xff36baff,0xff35baff,0xff35baff,0xff35b9ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,
+ 0xff32b7ff,0xff32b8ff,0xff31b7ff,0xff30b7ff,0xff2fb7ff,0xff2fb5ff,0xff2eb6ff,0xff2eb5ff,0xff2eb4ff,0xff2eb5ff,0xff2db4ff,0xff2cb4ff,0xff2bb4ff,0xff2cb3ff,
+ 0xff2bb3ff,0xff2ab2ff,0xff2ab3ff,0xff29b2ff,0xff3eb9ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,
+ 0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff3fbaff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff42bfff,0xff43c0ff,0xff44c0fe,
+ 0xff67ceff,0xff4ac1fe,0xff4dc4ff,0xff52c5fe,0xff58c7fe,0xff5dc8fd,0xff66ccfe,0xff6ecffe,0xff8ddafd,0xff7fd5fd,0xff94dcfd,0xffa6e1fd,0xffafe4fd,0xffb0e4fd,
+ 0xffb2e4fd,0xffbbe7fc,0xffd9ddbc,0xfff0bb3d,0xffffae00,0xffffcc2a,0xffffb80e,0xffdfaf3c,0xffadcdde,0xffbce3f7,0xffc9ecfe,0xffbbe6fc,0xffbbe7fe,0xffc7ecfe,
+ 0xffd4ce9c,0xfffba700,0xffefa91c,0xffb3c8bc,0xffb3dff6,0xff9edcfd,0xff92d8fd,0xff99dcfe,0xff76cffe,0xff6acafe,0xff5ec6fe,0xff54c1fd,0xff6acafe,0xff46bdfe,
+ 0xff41bbfe,0xff3ebafe,0xff3bb8fe,0xff3bb9ff,0xff39b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff36b7ff,0xff35b5ff,0xff35b5ff,0xff58c3ff,0xff34b4ff,0xff33b4ff,
+ 0xff33b3ff,0xff33b4ff,0xff33b3ff,0xff32b2ff,0xff33b3ff,0xff32b2ff,0xff31b1ff,0xff53c0ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2eaeff,0xff2eb0ff,
+ 0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff2bacff,0xff2cadff,0xff4ebcff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,
+ 0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff49b8ff,0xff48b8ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,
+ 0xff21a5ff,0xff21a4ff,0xff21a3ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff31abff,0xff30abff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff55baff,0xff1c9fff,0xff1ca0ff,0xff2ea9ff,0xff41b3ff,0xff1da1ff,0xff1ea1ff,0xff43b3ff,0xff1fa2ff,0xff50c9ff,0xff62cfff,0xff62d0ff,0xff62d0ff,
+ 0xff52cbff,0xff76d6ff,0xff77d6fe,0xff57cdfe,0xff7bd7fe,0xff5ecefe,0xff73d5fe,0xff69d3fe,0xff8cdbfd,0xff92defd,0xff80d8fd,0xff89dcfd,0xffa7e5fd,0xff9de2fe,
+ 0xffaee7fd,0xffafe7fd,0xffb9eafe,0xffcef0fe,0xffd0e6dd,0xffefc04d,0xffffae00,0xffffc21f,0xfffff061,0xffffff70,0xffffea50,0xffffae00,0xffbdb791,0xffc5dfea,
+ 0xffd9f0fa,0xffdaf2fd,0xffd1f0fd,0xffe6d59c,0xfffba700,0xfffbc73a,0xfff9b31c,0xffefa10c,0xffc1c5b1,0xffbee2f2,0xfface4fd,0xffb1e5fd,0xffa7e3fe,0xff90dbfd,
+ 0xff77d5fe,0xff7bd5fe,0xff72d3fe,0xff5bcbfe,0xff66cfff,0xff74d3ff,0xff5ecbfe,0xff4bc6ff,0xff6ed1ff,0xff5bcaff,0xff59caff,0xff45c4ff,0xff45c3ff,0xff45c3ff,
+ 0xff57c9ff,0xff7cd4ff,0xff69ceff,0xff43c2ff,0xff55c8ff,0xff67cdff,0xff54c7ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff65ccff,0xff65cdff,0xff50c5ff,
+ 0xff3dbeff,0xff64cbff,0xff63cbff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff3abcff,0xff61caff,0xff4dc3ff,0xff60c9ff,0xff4bc2ff,0xff5fc9ff,0xff4ac1ff,
+ 0xff4ac1ff,0xff49c0ff,0xff5ec8ff,0xff35b9ff,0xff48c0ff,0xff5cc7ff,0xff47bfff,0xff33b8ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff59c5ff,0xff2fb6ff,
+ 0xff2eb5ff,0xff58c4ff,0xff57c4ff,0xff2db4ff,0xff41bcff,0xff57c3ff,0xff40bbff,0xff2cb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,
+ 0xff28b1ff,0xff53c1ff,0xff52c0ff,0xff26b0ff,0xff26b0ff,0xff51bfff,0xff25afff,0xff26b0ff,0xff27b1ff,0xff52c1ff,0xff27b1ff,0xff28b1ff,0xff3fbaff,0xff29b2ff,
+ 0xff3fbdff,0xff60cbff,0xff60ccff,0xff61cbfe,0xff51c5fe,0xff43c0ff,0xff45c1ff,0xff69cdfe,0xff6ccefe,0xff71d1fe,0xff5dc8fe,0xff7fd6fe,0xff6ecefe,0xff79d2fe,
+ 0xff99ddfd,0xff8fd9fd,0xffabe3fd,0xffa5e0fd,0xffb0e4fd,0xffbae7fc,0xffd1eaed,0xffe7c76d,0xffffae00,0xffffb812,0xffffeb64,0xffffff7e,0xffffff76,0xffffff6f,
+ 0xfffffe69,0xffffc119,0xffe6ac2b,0xffbccdd5,0xffdbecf4,0xffdef3fd,0xffe8d59c,0xfffba700,0xfffbc73c,0xffffff97,0xfffef983,0xfff8c131,0xffeb9a0b,0xffc1b485,
+ 0xffadd8ef,0xffbde7fc,0xff99dafe,0xff9ddcfd,0xff7ad0fe,0xff6ccafd,0xff7cd1fe,0xff56c2fe,0xff7bd2fe,0xff47bdfe,0xff62c8fe,0xff60c8ff,0xff3cb9ff,0xff5bc6ff,
+ 0xff39b7ff,0xff37b5ff,0xff37b5ff,0xff36b5ff,0xff35b5ff,0xff58c3ff,0xff34b5ff,0xff34b3ff,0xff56c2ff,0xff33b3ff,0xff55c1ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,
+ 0xff31b2ff,0xff65c7ff,0xff30b1ff,0xff52bfff,0xff52bfff,0xff2fb0ff,0xff2eb0ff,0xff51bdff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff4fbdff,0xff2cadff,0xff3db5ff,
+ 0xff4ebcff,0xff4ebcff,0xff2aacff,0xff4dbbff,0xff4cbbff,0xff3ab2ff,0xff28aaff,0xff4bbaff,0xff4ab9ff,0xff28a9ff,0xff49b9ff,0xff26a8ff,0xff26a9ff,0xff26a9ff,
+ 0xff25a7ff,0xff49b8ff,0xff5bc0ff,0xff36aeff,0xff48b7ff,0xff23a5ff,0xff22a5ff,0xff46b7ff,0xff5abfff,0xff22a4ff,0xff45b5ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,
+ 0xff1fa3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff2faaff,0xff1da1ff,0xff1da1ff,0xff41b2ff,0xff1ca0ff,0xff41b2ff,0xff1ca0ff,0xff1ca0ff,0xff1ca1ff,0xff41b3ff,
+ 0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff20a2ff,0xff4fcaff,0xff73d5ff,0xff74d5ff,0xff75d6ff,0xff65d1ff,0xff77d6fe,0xff7ad8ff,0xff7ed9fe,0xff92ddfe,0xff88dcfe,
+ 0xff74d5fe,0xff98e1fe,0xffa1e3fe,0xffaae6fe,0xffa9e4fd,0xffaae5fd,0xffc3ecfd,0xffbfecfe,0xffcbeaee,0xffe8cd7b,0xfffbb00f,0xffffb813,0xffffe15d,0xffffff8d,
+ 0xffffff84,0xffffff7c,0xffffff74,0xffffff6d,0xfffffd68,0xffffeb50,0xffffae00,0xffcab682,0xffd9e3e7,0xffeed79b,0xfffaa700,0xfffbc73d,0xffffff9c,0xffffff90,
+ 0xffffff85,0xffffff7a,0xfff6be2a,0xffee9400,0xffc1b182,0xffbedeec,0xffafe3fa,0xffb5e6fd,0xff95defe,0xff86d8fd,0xff94dbfd,0xff6ed0fd,0xff84d7fe,0xff5ccbfe,
+ 0xff78d3fe,0xff61ccfe,0xff70d2ff,0xff6dd2ff,0xff47c4ff,0xff47c3ff,0xff46c4ff,0xff45c3ff,0xff44c3ff,0xff6acfff,0xff43c2ff,0xff43c2ff,0xff69ceff,0xff41c2ff,
+ 0xff67cdff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff65ccff,0xff3ebfff,0xff65cbff,0xff64cbff,0xff64cbff,0xff63caff,0xff4fc5ff,0xff3bbdff,0xff3abdff,
+ 0xff3abdff,0xff61caff,0xff39bcff,0xff39bcff,0xff60caff,0xff60c9ff,0xff37bbff,0xff5ec8ff,0xff5ec8ff,0xff36baff,0xff35baff,0xff5dc7ff,0xff71cdff,0xff5cc7ff,
+ 0xff5cc6ff,0xff32b8ff,0xff32b7ff,0xff31b8ff,0xff31b7ff,0xff30b7ff,0xff5ac5ff,0xff2fb6ff,0xff59c4ff,0xff2eb6ff,0xff2eb5ff,0xff57c4ff,0xff57c3ff,0xff2cb4ff,
+ 0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff3db9ff,0xff52c1ff,0xff52c1ff,0xff52c0ff,0xff26b0ff,0xff51c0ff,
+ 0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff52c1ff,0xff27b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff60cbff,0xff51c3ff,0xff62ccff,0xff54c6ff,0xff68ceff,
+ 0xff6ccefe,0xff71d0fe,0xff78d3fe,0xff67ccfe,0xff8bd9fe,0xff8bd9fe,0xffa1e0fd,0xfface3fd,0xffb0e5fe,0xffb4e5fd,0xffcaedfd,0xffdcd49d,0xfff8b51e,0xffffb30b,
+ 0xffffd752,0xfffffa92,0xffffff94,0xffffff8b,0xffffff83,0xffffff7b,0xffffff73,0xffffff6c,0xfffffc66,0xfffff861,0xffffc923,0xfff2ac15,0xffdbbf81,0xfffaa700,
+ 0xfffbc73f,0xffffffa1,0xffffff95,0xffffff89,0xffffff7e,0xffffff74,0xfffffe6b,0xfff7cc38,0xffeb8f00,0xffcda25a,0xffaed5ea,0xffb8e3fa,0xff9edcfe,0xffa0ddfd,
+ 0xff9eddfd,0xff7bd0fe,0xff7dd1fe,0xff58c3fe,0xff6ccbfe,0xff56c3fe,0xff61c8fe,0xff5fc8ff,0xff3bb8ff,0xff39b8ff,0xff38b7ff,0xff35b5ff,0xff36b5ff,0xff46bbff,
+ 0xff57c2ff,0xff44bbff,0xff56c2ff,0xff56c1ff,0xff56c1ff,0xff33b2ff,0xff33b2ff,0xff32b2ff,0xff31b2ff,0xff66c8ff,0xff53c0ff,0xff53c0ff,0xff40b8ff,0xff52bfff,
+ 0xff51bfff,0xff3fb8ff,0xff2eb0ff,0xff2eadff,0xff2dadff,0xff3db5ff,0xff4fbdff,0xff4ebcff,0xff4dbdff,0xff4ebcff,0xff4dbcff,0xff4cbcff,0xff4cbbff,0xff29abff,
+ 0xff28abff,0xff4bbaff,0xff4bb9ff,0xff4abaff,0xff4ab9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff25a7ff,0xff24a7ff,0xff49b8ff,0xff24a7ff,0xff35aeff,0xff47b7ff,
+ 0xff47b7ff,0xff33adff,0xff46b5ff,0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff30aaff,0xff42b3ff,
+ 0xff41b2ff,0xff41b3ff,0xff2ea9ff,0xff55bbff,0xff41b2ff,0xff1ca1ff,0xff41b2ff,0xff56bbff,0xff2faaff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff50caff,0xff51caff,
+ 0xff51cbff,0xff54ccff,0xff55ccfe,0xff5acefe,0xff61cffe,0xff68d2fe,0xff73d5fe,0xff7fd9fe,0xff8cdcfd,0xff9ae0fe,0xffa7e4fd,0xffb4e8fd,0xffc0ebfc,0xffd6ddbc,
+ 0xfff9b51e,0xffffae00,0xffffd14f,0xfffffaa2,0xffffffa4,0xffffff9b,0xffffff92,0xffffff8a,0xffffff81,0xffffff79,0xffffff72,0xffffff6b,0xfffffb65,0xfffff760,
+ 0xffffea4f,0xfffca900,0xfffaa700,0xfffbc741,0xffffffa6,0xffffff9a,0xffffff8e,0xffffff83,0xffffff78,0xffffff6e,0xfffffc66,0xfffff65f,0xfff7cb37,0xffe78900,
+ 0xffcc9a4b,0xffb2d7e8,0xffb1e3f8,0xffa6e2fd,0xff97ddfd,0xff89d9fe,0xff7bd5fe,0xff6ed0fe,0xff63cdfe,0xff6bd1ff,0xff76d3fe,0xff72d2ff,0xff5dcbff,0xff48c5ff,
+ 0xff46c4ff,0xff45c3ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,
+ 0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff39bdff,0xff39bcff,0xff39bcff,0xff38bbff,0xff38bbff,
+ 0xff37bbff,0xff37baff,0xff35baff,0xff36b9ff,0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,
+ 0xff30b6ff,0xff30b6ff,0xff2fb6ff,0xff2eb6ff,0xff2db5ff,0xff2db5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,
+ 0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff26b0ff,0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff41bdff,0xff43c0ff,0xff45c0fe,0xff49c1fe,0xff4fc5ff,0xff57c6fe,0xff62cafe,0xff6ecffe,0xff7dd3fd,0xff8ed8fd,0xff9edefd,
+ 0xffafe4fe,0xffc8dbcc,0xfff0bc3d,0xffffae00,0xffffc73d,0xfffff5a5,0xffffffb4,0xffffffab,0xffffffa2,0xffffff99,0xffffff90,0xffffff88,0xffffff80,0xffffff78,
+ 0xffffff70,0xfffffe6a,0xfffffb64,0xffffe447,0xfffdb711,0xfffaa700,0xfff9a400,0xfffbd660,0xffffff9e,0xffffff93,0xffffff87,0xffffff7c,0xffffff72,0xfffffe69,
+ 0xfffff962,0xfffff35b,0xffffed53,0xfff9cf39,0xffe58904,0xffd18d31,0xffafccd7,0xffabdcf7,0xff9fdbfd,0xff8ed6fd,0xff7ed1fe,0xff70cbfe,0xff61c6fe,0xff55c2fe,
+ 0xff4cbfff,0xff44bcff,0xff3ebaff,0xff3bb8ff,0xff39b8ff,0xff37b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff32b3ff,
+ 0xff32b3ff,0xff32b2ff,0xff31b1ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2daeff,0xff2dadff,0xff2cadff,
+ 0xff2cadff,0xff2cadff,0xff2badff,0xff2aacff,0xff2aacff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff26a9ff,
+ 0xff26a9ff,0xff25a9ff,0xff24a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff20a3ff,0xff21a3ff,
+ 0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,
+ 0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff51caff,0xff53cbff,0xff58cbfe,0xff5dceff,0xff64d0ff,0xff6dd4ff,0xff78d6fe,
+ 0xff91defe,0xff94defd,0xffa4e3fe,0xffb9e4ee,0xffe6c35c,0xffffae00,0xffffc235,0xffffeb9a,0xffffffc5,0xffffffbb,0xffffffb2,0xffffffa9,0xffffffa0,0xffffff97,
+ 0xffffff8f,0xffffff86,0xffffff7e,0xffffff76,0xffffff6f,0xffffef55,0xfffec019,0xfffca900,0xfffcb712,0xfffee144,0xfffcaf09,0xfff59f00,0xfff8c138,0xffffff8c,
+ 0xffffff81,0xffffff76,0xffffff6d,0xfffffb65,0xfffff55e,0xfffff056,0xffffea4f,0xffffe448,0xfffacd35,0xffe28304,0xffd28624,0xffb1ccd4,0xffb8e4f8,0xffa6e2fd,
+ 0xff97ddfd,0xff87d8fe,0xff78d3fe,0xff6acffe,0xff5eccfe,0xff56c9fe,0xff50c7ff,0xff4ac6ff,0xff47c3fe,0xff45c2fe,0xff45c3ff,0xff44c2ff,0xff43c2ff,0xff55c8ff,
+ 0xff43c1ff,0xff55c7ff,0xff41c1ff,0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff3fbfff,0xff3ebfff,0xff3fc0ff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,
+ 0xff3bbdff,0xff4ec4ff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,
+ 0xff34b8ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff47bfff,0xff47bfff,0xff30b7ff,0xff30b7ff,0xff30b6ff,0xff5ac5ff,0xff44bdff,0xff2eb5ff,0xff2eb4ff,0xff2db5ff,
+ 0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff29b3ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff27b1ff,0xff27b0ff,0xff27b0ff,0xff52c1ff,
+ 0xff25b0ff,0xff25afff,0xff3cb8ff,0xff26b1ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff41bdff,0xff43beff,0xff45c0fe,0xff4ac1fe,
+ 0xff51c5ff,0xff5ac8ff,0xff66cafe,0xff74d0fe,0xff99dcfd,0xff96dbfd,0xffaae2fe,0xffd7cb8b,0xffffae00,0xffffe18b,0xffffffd6,0xffffffcc,0xffffffc3,0xffffffba,
+ 0xffffffb0,0xffffffa7,0xffffff9e,0xffffff96,0xffffff8d,0xffffff84,0xffffff7d,0xfffff566,0xffffcc29,0xfffeac00,0xfffdb710,0xfffed334,0xffffe74b,0xffffec51,
+ 0xffffbb14,0xfffbb10e,0xfff29900,0xfff6be32,0xfffef873,0xffffff70,0xfffffd68,0xfffff861,0xfffff259,0xffffec52,0xffffe64b,0xffffe143,0xffffdb3c,0xfffbca2e,
+ 0xffe38909,0xffd27c18,0xffb4bcb4,0xffa8d9f5,0xff9bdafc,0xff8bd5fe,0xff79cefe,0xff68c8fe,0xff5ac4ff,0xff4dbefe,0xff45bbfe,0xff3fbaff,0xff3ab8ff,0xff38b6ff,
+ 0xff37b5ff,0xff34b5ff,0xff34b4ff,0xff57c2ff,0xff33b3ff,0xff44bbff,0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff30b2ff,0xff30b2ff,0xff2fb0ff,
+ 0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff51bdff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2aacff,0xff2aacff,0xff29acff,
+ 0xff29abff,0xff28abff,0xff28aaff,0xff28abff,0xff28a9ff,0xff28a9ff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff37b1ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff48b8ff,
+ 0xff47b8ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff21a5ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,
+ 0xff1da1ff,0xff1da1ff,0xff41b2ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff41b2ff,0xff1ca1ff,0xff1ca1ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1ea2ff,0xff1fa2ff,
+ 0xff50cafe,0xff75d5fe,0xff79d8ff,0xff7ed8ff,0xff74d4fe,0xff8cddff,0xff96dffe,0xff95dffe,0xffaee7fe,0xffb3e7fd,0xffc2ecfe,0xffcee6e7,0xfffab00e,0xffffd76e,
+ 0xffffffd4,0xffffffca,0xffffffc1,0xffffffb8,0xffffffaf,0xffffffa6,0xffffff9d,0xffffff94,0xffffff8b,0xfffffa7b,0xffffd73e,0xffffb307,0xfffeb207,0xfffec925,
+ 0xffffdf41,0xffffe448,0xffffea4f,0xffffef56,0xffffc01a,0xffffc21c,0xfffcbb19,0xffef9702,0xfff0a516,0xfffef764,0xfffffa64,0xfffff45c,0xffffef55,0xffffe94e,
+ 0xffffe346,0xffffdd3f,0xffffd838,0xffffd231,0xfffdc727,0xffe08307,0xffd4740c,0xffafb8b1,0xffc0e3f4,0xffb1e3fb,0xffa3e0fd,0xff89d9fe,0xff8adafe,0xff80d6ff,
+ 0xff68cfff,0xff4ec7ff,0xff4ac6ff,0xff47c4ff,0xff58c9ff,0xff6acfff,0xff6aceff,0xff69ceff,0xff42c2ff,0xff7ad3ff,0xff41c1ff,0xff67cdff,0xff66cdff,0xff66cdff,
+ 0xff52c5ff,0xff66ccff,0xff65ccff,0xff65ccff,0xff50c5ff,0xff64cbff,0xff63cbff,0xff50c5ff,0xff63caff,0xff76d0ff,0xff4ec4ff,0xff4ec3ff,0xff61caff,0xff60caff,
+ 0xff4cc3ff,0xff73cfff,0xff5fc9ff,0xff5ec8ff,0xff5ec8ff,0xff36baff,0xff35b9ff,0xff5ec7ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b8ff,
+ 0xff31b7ff,0xff30b6ff,0xff5ac5ff,0xff2fb5ff,0xff59c4ff,0xff58c4ff,0xff58c4ff,0xff42bcff,0xff57c3ff,0xff57c3ff,0xff57c2ff,0xff2bb3ff,0xff6acaff,0xff56c2ff,
+ 0xff3fbaff,0xff54c1ff,0xff54c1ff,0xff53c1ff,0xff28b1ff,0xff27b1ff,0xff52c1ff,0xff26b0ff,0xff51c0ff,0xff51c0ff,0xff67c8ff,0xff3cb8ff,0xff52c1ff,0xff52c1ff,
+ 0xff3db9ff,0xff53c1ff,0xff28b1ff,0xff54c1ff,0xff41bcfe,0xff64ccff,0xff69cfff,0xff6ed0fe,0xff5bc8fe,0xff82d6fe,0xff8fd9fe,0xff9ddefe,0xffb4e6fd,0xffbbe7fd,
+ 0xffbfe9fd,0xffd3ecf8,0xffddc98c,0xffffae00,0xfffff5b7,0xffffffc8,0xffffffbf,0xffffffb6,0xffffffad,0xffffffa4,0xffffff9b,0xffffff92,0xffffdc4e,0xffffb308,
+ 0xffffb003,0xffffc31c,0xffffd838,0xffffdd3e,0xffffe245,0xffffe84c,0xffffed53,0xfffff25a,0xffffc520,0xffffc722,0xffffc824,0xfffcbf1f,0xffec9203,0xffeda013,
+ 0xfffce953,0xfffff158,0xffffeb51,0xffffe549,0xffffe042,0xffffda3b,0xffffd433,0xffffcf2c,0xffffc925,0xfffdbe1c,0xffe28607,0xffcf6e0b,0xffb5a286,0xff9ad2f1,
+ 0xff9fdbfb,0xff90d8fe,0xff67c8fe,0xff74cefe,0xff4cbefe,0xff42bbfe,0xff3db7fe,0xff39b8ff,0xff59c3ff,0xff34b4ff,0xff34b4ff,0xff57c2ff,0xff33b4ff,0xff56c1ff,
+ 0xff33b3ff,0xff55c1ff,0xff32b2ff,0xff32b2ff,0xff41b9ff,0xff66c8ff,0xff53c0ff,0xff65c7ff,0xff52bfff,0xff2eb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff51bdff,
+ 0xff2dadff,0xff4fbdff,0xff2cadff,0xff2bacff,0xff4ebcff,0xff4dbcff,0xff2aabff,0xff3ab3ff,0xff4cbbff,0xff28aaff,0xff28aaff,0xff4bbaff,0xff28aaff,0xff27aaff,
+ 0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff49b8ff,0xff24a7ff,0xff48b8ff,0xff24a5ff,0xff23a5ff,0xff46b7ff,0xff46b5ff,0xff21a4ff,
+ 0xff46b4ff,0xff20a3ff,0xff45b4ff,0xff44b3ff,0xff43b3ff,0xff57bdff,0xff43b3ff,0xff56bbff,0xff1ea1ff,0xff2faaff,0xff2fa9ff,0xff1ca0ff,0xff41b2ff,0xff1ba0ff,
+ 0xff41b2ff,0xff1ca0ff,0xff41b3ff,0xff41b3ff,0xff42b3ff,0xff30aaff,0xff30aaff,0xff43b4ff,0xff52cbff,0xff78d6ff,0xff7dd8ff,0xff83daff,0xff8bdcfe,0xff7bd6fe,
+ 0xff89dbfe,0xffafe6fe,0xffbceafd,0xffc3ecfd,0xffd1f0fd,0xffe0f4fd,0xffdbebf2,0xfff7b019,0xffffcc4d,0xffffffc7,0xffffffbd,0xffffffb4,0xffffffab,0xffffffa2,
+ 0xffffe160,0xffffb812,0xffffae00,0xffffbd14,0xffffce2b,0xffffd535,0xffffdb3c,0xffffe042,0xffffe549,0xffffeb50,0xfffff057,0xfffff55e,0xffffca26,0xffffcb28,
+ 0xffffcd2a,0xffffcf2c,0xfffecc2b,0xffeb9609,0xffe78c06,0xfffad944,0xffffe84c,0xffffe245,0xffffdc3e,0xffffd736,0xfffed02e,0xfffeca27,0xfffec420,0xffffc019,
+ 0xffffba12,0xffe38504,0xffd06500,0xffa5a08f,0xffa6d7ee,0xff8ad7fc,0xffa1e0fe,0xff79d3fe,0xff5ccafe,0xff54c8ff,0xff4dc5fe,0xff48c4ff,0xff6bcfff,0xff44c2ff,
+ 0xff56c9ff,0xff69cdff,0xff42c2ff,0xff67cdff,0xff41c1ff,0xff67cdff,0xff40c1ff,0xff3fc0ff,0xff3fbfff,0xff65cdff,0xff3ebfff,0xff51c5ff,0xff64cbff,0xff3dbfff,
+ 0xff3cbeff,0xff4fc5ff,0xff3bbdff,0xff63caff,0xff4ec4ff,0xff61caff,0xff39bcff,0xff38bbfe,0xff60c8fe,0xff5fc8fe,0xff37b9fe,0xff37bafe,0xff4ac0fe,0xff5ec7fe,
+ 0xff5ec6fe,0xff5dc6fe,0xff34b8fe,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff31b7ff,0xff30b7ff,0xff45beff,0xff44bdff,0xff2fb6ff,0xff59c4ff,0xff2eb6ff,
+ 0xff2eb5ff,0xff57c3ff,0xff57c3ff,0xff2cb4ff,0xff57c2ff,0xff2bb3ff,0xff56c2ff,0xff55c1ff,0xff55c2ff,0xff54c1ff,0xff29b1ff,0xff3eb9ff,0xff27b1ff,0xff52c1ff,
+ 0xff27b1ff,0xff26b0ff,0xff52c0ff,0xff25afff,0xff67c8ff,0xff52c1ff,0xff27b1ff,0xff27b1ff,0xff52c1ff,0xff29b2ff,0xff54c1ff,0xff3fbaff,0xff44beff,0xff57c5ff,
+ 0xff4ec2ff,0xff65ccff,0xff63cbff,0xff8ad8fe,0xff9addfe,0xff9fdffe,0xffbfd9cc,0xffbbe5fa,0xffcfedfb,0xffdbf2fd,0xffe7f4fa,0xffe2d4ab,0xffffae00,0xffffeb93,
+ 0xffffffbb,0xffffffb2,0xffffeb7f,0xffffc229,0xffffae00,0xffffb70c,0xffffc621,0xffffce2b,0xffffd332,0xffffd939,0xffffde40,0xffffe347,0xffffe94d,0xffffee54,
+ 0xfffff35b,0xfffff962,0xffffce2c,0xffffd02e,0xffffd230,0xffffd332,0xffffd534,0xfffdd233,0xffe8930b,0xffe48705,0xfff6ca35,0xfffede40,0xfffed838,0xfffed231,
+ 0xfffdcb2a,0xfffdc622,0xfffdc01b,0xfffebb14,0xfffeb60c,0xffe08102,0xffc7640a,0xff8d9593,0xff91c4df,0xff99d7f8,0xff7fd0fd,0xff7dd1fe,0xff61c5fe,0xff48bdff,
+ 0xff3fbafe,0xff3bb6fe,0xff37b5fe,0xff58c1fe,0xff45bafe,0xff45bafe,0xff44bafe,0xff56c1fe,0xff55c0fe,0xff43baff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff41b8ff,
+ 0xff53c0ff,0xff41b8ff,0xff2fb1ff,0xff52bfff,0xff51bfff,0xff2eaeff,0xff2eaeff,0xff3fb5ff,0xff3eb5ff,0xff2dacfe,0xff4fbcfe,0xff4fbbfe,0xff2bacfe,0xff3bb3fd,
+ 0xff2aaafd,0xff29abfd,0xff3ab2fd,0xff29aafd,0xff28a9fd,0xff4bb9fe,0xff28a8fe,0xff28a9fe,0xff27a8fe,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff24a8ff,0xff49b8ff,
+ 0xff24a7ff,0xff24a7ff,0xff34adff,0xff24a5ff,0xff23a4ff,0xff33adff,0xff33adff,0xff46b5ff,0xff33adff,0xff20a3ff,0xff31acff,0xff20a2ff,0xff31acff,0xff31abff,
+ 0xff43b3ff,0xff31aaff,0xff30aaff,0xff2faaff,0xff1da1ff,0xff1ca0ff,0xff2ea9ff,0xff41b2ff,0xff2ea9ff,0xff1ca0ff,0xff41b2ff,0xff41b2ff,0xff30aaff,0xff1ea1ff,
+ 0xff31abff,0xff1fa2ff,0xff53cbff,0xff58ccff,0xff5dceff,0xff66d1fe,0xff72d4fe,0xff80d9fe,0xff91defe,0xffa3e3fe,0xffffae00,0xffffae00,0xffeeb839,0xffe9c467,
+ 0xffe6d6a2,0xffe3e0cd,0xfff2b535,0xffffc230,0xfffff5a3,0xffffc738,0xffffae00,0xffffb206,0xffffbe17,0xffffc722,0xffffcc29,0xffffd12f,0xffffd736,0xffffdc3d,
+ 0xffffe144,0xffffe74b,0xffffec51,0xfffff158,0xfffff65f,0xfffffc66,0xffffd332,0xffffd534,0xffffd636,0xffffd838,0xffffda3a,0xfffeda3b,0xfffedc3e,0xffeaa118,
+ 0xffdc7a00,0xfff0b425,0xfffdd334,0xfffdce2d,0xfffdc825,0xfffdc21e,0xfffdbd17,0xfffdb710,0xffdf8103,0xffc76409,0xff8f8a80,0xff8baab9,0xff97c9e0,0xff93d8f8,
+ 0xff9cdefd,0xff8dd9fd,0xff62ccfd,0xff59c9fe,0xff50c6fe,0xff4ac4fd,0xff46c2fd,0xff44c0fc,0xff43c0fd,0xff42c0fd,0xff42c0fd,0xff41bffd,0xff40bffd,0xff40befd,
+ 0xff40bffe,0xff40bffe,0xff3fbffe,0xff3ebffe,0xff3ebefe,0xff3ebefe,0xff3dbfff,0xff3cbdfe,0xff3cbdfe,0xff3cbcfe,0xff3bbcfe,0xff3abcfe,0xff3abcfd,0xff3abbfd,
+ 0xff39bbfd,0xff38bafd,0xff38bafd,0xff38bafd,0xff36b9fc,0xff36b8fc,0xff35b8fc,0xff5dc6fc,0xff5dc6fd,0xff34b8fd,0xff34b7fd,0xff33b8fd,0xff33b7fd,0xff33b7fd,
+ 0xff32b6fe,0xff31b6fe,0xff30b6fe,0xff45bdfe,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,
+ 0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b2ff,0xff3db9ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,
+ 0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff44beff,0xff47bffe,0xff4fc2ff,0xff58c7ff,0xff64cbfe,0xff73cffe,0xff86d5fe,0xff99ddfe,
+ 0xffc5c694,0xffffae00,0xffffb310,0xffffc23c,0xffffae00,0xffffae00,0xffffae00,0xffffae00,0xffffae00,0xffffaf02,0xffffb70e,0xffffbf18,0xffffc51f,0xffffca26,
+ 0xffffcf2d,0xffffd434,0xffffda3a,0xffffdf41,0xffffe448,0xffffea4f,0xffffef56,0xfffff45c,0xfffffa63,0xfffffe6b,0xffffd838,0xffffda3a,0xffffdb3c,0xffffdd3e,
+ 0xfffedd3f,0xfffedf41,0xfffde044,0xfffde146,0xffe79f1b,0xffd77300,0xffeba61a,0xfffbc828,0xfffbc321,0xfffbbd1a,0xfffbb812,0xffdd8004,0xffc56309,0xff958b7e,
+ 0xff93a7b3,0xffa1c3d6,0xffa1d4f1,0xff92d5fa,0xff7ecefc,0xff6ac8fc,0xff5bc3fd,0xff4dbdfc,0xff44bbfd,0xff3db6fd,0xff39b4fc,0xff36b3fc,0xff34b2fc,0xff32b2fc,
+ 0xff32b1fc,0xff32b1fc,0xff32b1fc,0xff32b2fd,0xff32b2fd,0xff32b1fd,0xff31b1fd,0xff31b1fd,0xff30b0fd,0xff30b0fe,0xff2faffe,0xff2faffe,0xff2faffd,0xff2eadfd,
+ 0xff2eadfd,0xff2eadfd,0xff2dacfd,0xff2cabfc,0xff2babfc,0xff2aa9fb,0xff2aa9fb,0xff2aa9fa,0xff29a9fa,0xff28a8fa,0xff27a8fa,0xff27a8fa,0xff27a7fa,0xff27a7fb,
+ 0xff27a7fb,0xff27a7fc,0xff27a7fc,0xff26a8fd,0xff26a7fd,0xff26a7fd,0xff24a6fd,0xff25a6fd,0xff24a7fe,0xff24a6fe,0xff24a4fe,0xff23a6fe,0xff23a3fe,0xff22a4fe,
+ 0xff22a3fe,0xff21a3fe,0xff20a3fe,0xff20a3fe,0xff20a2fe,0xff20a2fe,0xff1fa1fe,0xff20a1fe,0xff1fa1fe,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,
+ 0xff1ba0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff20a3ff,0xff52cbff,0xff88dafe,0xff5dceff,0xff92ddfe,
+ 0xff70d4ff,0xff7cd8fe,0xff8ddcfe,0xff9de1fe,0xffb6e1f3,0xffc2ba82,0xfff8ad0b,0xffffcc57,0xfffffacc,0xfffff0a5,0xffffdc6a,0xffffc737,0xffffae00,0xffffb40a,
+ 0xffffbd16,0xffffc21c,0xffffc823,0xffffcd2a,0xffffd231,0xffffd838,0xffffdd3e,0xffffe245,0xffffe84c,0xffffed53,0xfffff25a,0xfffff860,0xfffffd67,0xffffff74,
+ 0xffffdd3e,0xffffde40,0xffffe042,0xfffee143,0xfffee245,0xfffde348,0xfffde44a,0xfffce54c,0xfffbe64d,0xffecba32,0xffd16c00,0xffdf8b0d,0xfff9be1d,0xfff8b715,
+ 0xffda8006,0xffc56209,0xff9b8d7d,0xff9eabb1,0xffb3c9d3,0xffbadeee,0xffb1e2f8,0xff9eddf9,0xff8ad6f9,0xff79d1fb,0xff69ccfa,0xff5cc7fa,0xff74cffa,0xff4cc2fa,
+ 0xff47c0fa,0xff45bef9,0xff67c9f9,0xff41bdf9,0xff40bdf9,0xff40bdf9,0xff40bdfa,0xff40bdfa,0xff3fbdfb,0xff3fbdfb,0xff3ebdfc,0xff3ebefc,0xff64cafc,0xff3ebefd,
+ 0xff3dbdfd,0xff3cbdfd,0xff3bbbfc,0xff3abcfc,0xff3abbfc,0xff39b9fb,0xff39b8fa,0xff38b9fa,0xff38b8f9,0xff38b8f9,0xff36b6f8,0xff35b5f7,0xff35b5f7,0xff34b4f7,
+ 0xff34b4f7,0xff34b3f7,0xff33b3f7,0xff34b4f8,0xff33b4f9,0xff32b4f9,0xff32b4f9,0xff32b4fa,0xff31b4fb,0xff30b5fc,0xff2fb5fc,0xff2fb4fc,0xff30b6fd,0xff2fb5fd,
+ 0xff2fb5fd,0xff2eb5fd,0xff2eb4fd,0xff2db3fd,0xff2db4fd,0xff2cb3fd,0xff2cb2fd,0xff2cb3fd,0xff2bb2fd,0xff2bb1fd,0xff29b1fd,0xff29b2fd,0xff29b1fd,0xff28b1fe,
+ 0xff28b0fe,0xff27affe,0xff27b1ff,0xff26b0ff,0xff26afff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff29b1ff,0xff29b2ff,
+ 0xff43beff,0xff75d1ff,0xff69ceff,0xff7fd4fe,0xff5dc8fe,0xff84d7ff,0xff91dafe,0xff8cd8fe,0xffade2fc,0xffa6d6ee,0xffb4beaa,0xfff8ad0b,0xffffbd26,0xfffffab4,
+ 0xffffffb2,0xffffffa5,0xffffd142,0xffffae00,0xffffb80e,0xffffc521,0xffffcb27,0xffffd02e,0xffffd535,0xffffdb3c,0xffffe042,0xffffe549,0xffffeb50,0xfffff057,
+ 0xfffff55e,0xfffffb64,0xffffff6e,0xffffff80,0xffffe144,0xffffe346,0xfffee447,0xfffee549,0xfffde64b,0xfffde84e,0xfffbe74f,0xfffae851,0xfff9e853,0xfff8e954,
+ 0xffe6b936,0xffca6500,0xffda8208,0xffd87f07,0xffc26209,0xff9c8b7b,0xffa2aaae,0xffb9c7cf,0xffc9dfeb,0xffc8e5f5,0xffb4e0f7,0xff99d5f7,0xff99d6f7,0xff88d0f8,
+ 0xff60c1f8,0xff6ec8f8,0xff74cbf9,0xff4eb9f7,0xff39b1f7,0xff46b6f7,0xff43b6f6,0xff32aef6,0xff42b4f6,0xff53baf6,0xff41b4f7,0xff30acf7,0xff52bcf8,0xff52bcf9,
+ 0xff30aef9,0xff52bcf9,0xff63c3fa,0xff3fb4fa,0xff2eadfa,0xff2dadfa,0xff2dabfa,0xff2dabfa,0xff2dacf9,0xff2daaf9,0xff2ca8f8,0xff2ca9f7,0xff2aa7f6,0xff29a5f5,
+ 0xff29a5f5,0xff29a5f4,0xff28a4f3,0xff27a3f3,0xff27a3f3,0xff26a3f3,0xff26a4f4,0xff26a3f5,0xff26a2f5,0xff27a4f6,0xff26a4f7,0xff26a4f8,0xff25a5f9,0xff25a4f9,
+ 0xff24a4f9,0xff23a5fa,0xff23a4fa,0xff23a4fb,0xff22a2fb,0xff22a2fb,0xff21a2fb,0xff21a2fb,0xff21a1fb,0xff21a1fb,0xff20a0fb,0xff20a0fb,0xff20a0fb,0xff209ffb,
+ 0xff20a0fc,0xff20a0fc,0xff1ea0fd,0xff1ea0fd,0xff1ea0fd,0xff1d9ffd,0xff1da0fe,0xff1c9ffe,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1da1ff,
+ 0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff52cbff,0xff76d7ff,0xff7bd8ff,0xff7fd8ff,0xff76d5fe,0xff71d3fe,0xff7ed8fe,0xffa4e3fe,0xffb0e6fe,0xffbbe9fc,
+ 0xffb2def0,0xffbcc5ae,0xfff9ad0a,0xffffbd22,0xfffffa9c,0xffffff9a,0xffffff8d,0xffffe151,0xfffdac00,0xfffdb50e,0xffffce2b,0xffffd332,0xffffd939,0xffffde40,
+ 0xffffe347,0xffffe94d,0xffffee54,0xfffff35b,0xfffff962,0xfffffe69,0xffffff78,0xffffff8d,0xffffe64a,0xfffee74b,0xfffee84d,0xfffde94f,0xfffcea51,0xfffbea53,
+ 0xfff9ea54,0xfff8eb56,0xfff6ea57,0xfff4ea58,0xfff2e95a,0xffe0b639,0xffc45e00,0xffc15c00,0xffb85f11,0xffb36827,0xffb77f52,0xffbf906a,0xffc59e7f,0xffbab7ae,
+ 0xffb9b6b0,0xffadd9ee,0xff8dd2f2,0xff7bcff5,0xff87d2f5,0xff5ec4f4,0xff74cbf5,0xff4bbdf3,0xff47bcf4,0xff44bbf3,0xff64c4f2,0xff40b8f2,0xff74c8f2,0xff3fb7f2,
+ 0xff62c3f3,0xff63c4f4,0xff3db8f5,0xff3db8f5,0xff62c5f6,0xff3db9f7,0xff62c7f7,0xff3bbaf8,0xff3bb9f8,0xff3ab9f8,0xff3ab8f7,0xff39b8f7,0xff39b6f6,0xff38b6f5,
+ 0xff38b5f5,0xff38b4f4,0xff36b2f2,0xff36b1f1,0xff35b1f0,0xff34afef,0xff33afee,0xff33aded,0xff32aded,0xff32aded,0xff31adee,0xff32adef,0xff31aff1,0xff31aff1,
+ 0xff31aff3,0xff30b0f4,0xff30b1f5,0xff2fb2f6,0xff2eb1f7,0xff30b1f8,0xff2fb1f8,0xff2eb2f9,0xff2eb2f9,0xff2db2f9,0xff2db1f9,0xff2cb1f9,0xff2cb0f9,0xff2bb0f9,
+ 0xff2aaff9,0xff2aaff9,0xff29aff9,0xff29aff9,0xff28aff9,0xff28affa,0xff28affb,0xff28b0fc,0xff27b0fc,0xff27b0fd,0xff27b0fd,0xff26affe,0xff26aefe,0xff25afff,
+ 0xff26afff,0xff26b0ff,0xff26b1ff,0xff27b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff41beff,0xff62cbfe,0xff48c1ff,0xff6acfff,0xff61cafe,0xff79d3ff,
+ 0xff82d6fe,0xff8ed9fe,0xffa6e1fe,0xffa9e2fe,0xffa8e1fd,0xffb2def3,0xffb6c6bd,0xffedae22,0xffffb814,0xfffff074,0xffffff82,0xffffff77,0xfffede44,0xfffaa600,
+ 0xfffbb512,0xffffd736,0xffffdc3d,0xffffe144,0xffffe64b,0xffffec51,0xfffff158,0xfffff65f,0xfffffc66,0xffffff71,0xffffff84,0xffffff9a,0xfffeea4f,0xfffeeb51,
+ 0xfffdec53,0xfffdee55,0xfffbed57,0xfff9ed58,0xfff7ed5a,0xfff5ec5b,0xfff2eb5c,0xffead950,0xffd29322,0xffc05c00,0xffc8750c,0xffd8991b,0xffd28712,0xffd1840e,
+ 0xffc56805,0xffc56503,0xffbd5700,0xffb64900,0xffb54700,0xffa7714e,0xff8cc4e1,0xff84c8ec,0xff6cc2f1,0xff51b8f1,0xff63bff0,0xff3eaef0,0xff38acef,0xff34a8ed,
+ 0xff52b5ed,0xff30a7ed,0xff50b4ed,0xff2fa6ed,0xff4fb3ed,0xff4eb4ee,0xff50b6f0,0xff4fb6f1,0xff3daef1,0xff2fa9f2,0xff4fb7f3,0xff2da9f4,0xff2da8f4,0xff2ca8f4,
+ 0xff2ca6f3,0xff2ca8f3,0xff2ca5f2,0xff2ba4f1,0xff2aa3f0,0xff2aa1ee,0xff29a1ed,0xff299feb,0xff279eea,0xff269de9,0xff259ce8,0xff269be7,0xff259be7,0xff259ae7,
+ 0xff249be8,0xff259be9,0xff259cea,0xff249dec,0xff249ded,0xff259def,0xff249ff1,0xff249ff1,0xff239ff2,0xff229ff3,0xff22a0f4,0xff239ff5,0xff239ff5,0xff229ff5,
+ 0xff229ef5,0xff219ef5,0xff209ef5,0xff209ef5,0xff209ef5,0xff1f9ef5,0xff1f9df5,0xff1f9df6,0xff1f9cf6,0xff1e9ef8,0xff1e9ef9,0xff1d9df9,0xff1c9efa,0xff1d9ffc,
+ 0xff1c9ffd,0xff1c9ffd,0xff1c9ffd,0xff1b9ffe,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff75d5ff,
+ 0xff55cbff,0xff79d7fe,0xff6dd2fe,0xff83d9fe,0xff8adbfe,0xff94defe,0xff9ee2fe,0xff94dffe,0xffb5e8fd,0xffb2e6fc,0xffc5e5f2,0xffc5d2ce,0xffeeaf23,0xffffb308,
+ 0xffffef61,0xffffff6d,0xfffffb65,0xfffee64c,0xfff7a505,0xfff6a90b,0xfffedb3d,0xffffe448,0xffffea4f,0xffffef55,0xfffff45c,0xfffffa63,0xfffffe6b,0xffffff7c,
+ 0xffffff91,0xffffffa8,0xfffeef55,0xfffdef57,0xfffdf159,0xfffbf05a,0xfff9f05c,0xfff7f05d,0xfff5ef5f,0xffeee458,0xffd9a62f,0xffc15e00,0xffc26908,0xffd7a528,
+ 0xffe4c233,0xffe3bb2c,0xffe3b625,0xffe4b11e,0xffe5ac17,0xffd88f0b,0xffb65200,0xffaf4500,0xff9a613b,0xff7996a3,0xff85b5cb,0xff89c7e4,0xff75c6ec,0xff5abdeb,
+ 0xff6ec2ea,0xff68c0e9,0xff43b4e9,0xff62bde8,0xff71c0e7,0xff4eb4e6,0xff5eb9e6,0xff3cafe7,0xff5ebbe8,0xff4db6e9,0xff5dbbe9,0xff5ebdeb,0xff4cb8ed,0xff3ab2ed,
+ 0xff5ebeee,0xff5dbeee,0xff39b2ef,0xff38b2ef,0xff38b1ee,0xff38b1ed,0xff37b0ed,0xff37afec,0xff35adea,0xff34ace9,0xff34aae7,0xff32a9e5,0xff32a7e3,0xff31a5e1,
+ 0xff31a5e1,0xff2fa3e0,0xff2fa3e0,0xff2fa3e0,0xff2fa3e1,0xff2ea4e2,0xff2ea5e4,0xff2ea6e5,0xff2da7e8,0xff2ea8e9,0xff2da9eb,0xff2eaaed,0xff2eaaed,0xff2dabee,
+ 0xff2dabef,0xff2cabf0,0xff2cabf0,0xff2babf0,0xff2babf1,0xff2ba9f0,0xff2aa9f0,0xff29a9f0,0xff28a8f0,0xff29a9f1,0xff29a9f1,0xff29a9f1,0xff27aaf2,0xff27aaf4,
+ 0xff27aaf5,0xff27abf7,0xff26acf8,0xff26acf9,0xff26adfb,0xff26affc,0xff26affd,0xff25affd,0xff26affe,0xff26b1ff,0xff27b0ff,0xff27b0ff,0xff28b2ff,0xff28b1ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff41beff,0xff43beff,0xff46bfff,0xff4ac2ff,0xff4fc3fe,0xff57c6fe,0xff61cafe,0xff6ecefe,0xff7dd3fe,0xff8ed9fe,0xffa0defd,
+ 0xffb1e3fb,0xffbee4f6,0xffbfd1d1,0xfff1ab18,0xfffcae07,0xfffde146,0xfffff65e,0xffffef56,0xfffddb3f,0xfff49f04,0xfff4a60d,0xfffee247,0xffffed53,0xfffff25a,
+ 0xfffff860,0xfffffd67,0xffffff74,0xffffff89,0xffffff9f,0xfffae485,0xfffbe24a,0xfffdf45d,0xfffcf55e,0xfff9f35f,0xfff8f462,0xfff5f262,0xffddaa31,0xffc66a06,
+ 0xffc16605,0xffd5a72e,0xffe1cb42,0xffdfc33a,0xffddbc33,0xffdbb62b,0xffdbb024,0xffd29919,0xffb65e06,0xffa94400,0xff95552a,0xff707a7e,0xff678a9e,0xff6798b3,
+ 0xff69aacf,0xff63b4e1,0xff56b2e5,0xff4aaee6,0xff41aae5,0xff3aa5e4,0xff34a2e2,0xff31a1e1,0xff2e9fe0,0xff2d9ddf,0xff2d9ddf,0xff2d9ddf,0xff2d9de0,0xff2c9ee1,
+ 0xff2c9ee2,0xff2d9fe4,0xff2c9fe5,0xff2ca1e7,0xff2ca1e8,0xff2ca1e8,0xff2ba1e9,0xff2aa1e9,0xff2aa0e8,0xff2a9fe7,0xff299fe6,0xff289ce5,0xff289be3,0xff2799e1,
+ 0xff2697df,0xff2595dd,0xff2595db,0xff2492d9,0xff2492d8,0xff2390d7,0xff2390d7,0xff2390d7,0xff2292d9,0xff2291da,0xff2393dc,0xff2393de,0xff2294e0,0xff2396e2,
+ 0xff2296e4,0xff2197e5,0xff2298e7,0xff2299e8,0xff2199e9,0xff2199e9,0xff2097ea,0xff2097ea,0xff1f97ea,0xff1f97ea,0xff1f97ea,0xff1e96ea,0xff1d96ea,0xff1d96ea,
+ 0xff1d96eb,0xff1e97ec,0xff1d97ed,0xff1d98ef,0xff1c99f1,0xff1d99f3,0xff1d9bf5,0xff1c9cf7,0xff1b9cf9,0xff1c9dfb,0xff1b9efc,0xff1b9efd,0xff1b9efe,0xff1c9ffe,
+ 0xff1ca1ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff51caff,0xff51caff,0xff54ccff,0xff55ccfe,0xff5bcfff,0xff60d0ff,0xff68d1fe,
+ 0xff72d4fe,0xff7fd9fe,0xff8ddefe,0xff9fe2fe,0xffb0e7fd,0xffc1ebfc,0xffcdeaf7,0xffecb236,0xfffaa700,0xfff8a300,0xfffcd236,0xffffea4f,0xffffe447,0xfffcd133,
+ 0xfff2a20a,0xfff1a30f,0xfffbde47,0xfffff55e,0xfffffb64,0xffffff6e,0xffffff80,0xfffcec78,0xfff2b129,0xffec9600,0xffec9b05,0xfff5d23d,0xfffaf764,0xfff8f766,
+ 0xffe6c03f,0xffce770c,0xffc66a06,0xffd3a12d,0xffe1d24c,0xffdfd049,0xffdac640,0xfff2eac1,0xffffffff,0xffffffff,0xffffffff,0xffe2c6b2,0xff934f20,0xff796f64,
+ 0xff708893,0xff7496a6,0xff79a8be,0xff77b3ce,0xff70b9da,0xff65b8df,0xff5ab4df,0xff50b1df,0xff47addd,0xff42aadc,0xff3fa8da,0xff3ba6d9,0xffffffff,0xffffffff,
+ 0xffffffff,0xff76c0e4,0xff37a3d8,0xff36a4d9,0xff37a5da,0xff36a6dc,0xff37a6dd,0xff36a7df,0xff36a8e0,0xff37a9e1,0xff37a8e1,0xff36a8e1,0xff35a7e1,0xff35a7e0,
+ 0xff34a5df,0xff32a4dd,0xff32a2dc,0xff31a1d9,0xff309fd7,0xff2f9dd5,0xffffffff,0xffffffff,0xffffffff,0xff6eb6dd,0xff2b96cd,0xffffffff,0xffffffff,0xffffffff,
+ 0xff6db9e1,0xff2b9ad5,0xff2b9dd8,0xff2b9dda,0xff2b9fdd,0xff2b9fde,0xff2aa1e0,0xff2aa1e1,0xff2aa1e1,0xff2ba1e2,0xff29a2e3,0xff29a2e3,0xff29a1e3,0xff28a0e3,
+ 0xff28a0e3,0xff27a0e2,0xff279fe3,0xff26a0e3,0xff26a0e4,0xff27a0e5,0xff26a3e8,0xff25a3e9,0xff25a5ed,0xff26a7ef,0xff26a8f2,0xff25aaf5,0xff26abf7,0xff25acf9,
+ 0xff25adfb,0xff25aefd,0xff25aefd,0xff26affe,0xff26affe,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bfff,0xff41bdff,0xff42c0ff,
+ 0xff44bffe,0xff47c0fe,0xff4cc3fe,0xff53c5fe,0xff6acefe,0xff69ccfd,0xff79d1fd,0xff8cd7fd,0xff9fdefd,0xffb4e6fe,0xffc7ecfe,0xffebb23a,0xfffcac05,0xfff9a805,
+ 0xfff49d00,0xfffac92d,0xffffde40,0xffffd838,0xfffece2d,0xffef9b08,0xffeb9406,0xfffbe450,0xfffffe69,0xfffdf268,0xfff4be33,0xffed9700,0xffec9600,0xffec9600,
+ 0xffeb9500,0xffe99400,0xffebbc34,0xffd68413,0xffca6600,0xffd5972a,0xffe6e05e,0xffe4e15b,0xffded551,0xffd9cb49,0xffd6c650,0xfffcfcfa,0xffffffff,0xffffffff,
+ 0xffffffff,0xfffbfbfb,0xff798992,0xff718b99,0xff779baf,0xff7daac1,0xff72adce,0xff68add4,0xff5caad7,0xff50a6d7,0xff45a2d7,0xff3d9fd6,0xff379cd6,0xff3299d4,
+ 0xff2f95d1,0xff2c94d1,0xffffffff,0xffffffff,0xffffffff,0xff6cb3dd,0xff3696ce,0xff2a91d0,0xff2992d1,0xff3699d3,0xff2995d5,0xff2995d6,0xff2996d8,0xff2897d9,
+ 0xff2897d9,0xff2796d9,0xff2796d9,0xff2793d8,0xff2792d6,0xff2691d5,0xff258fd3,0xff258ed1,0xff3192ce,0xff228acc,0xffffffff,0xffffffff,0xffffffff,0xff66abd7,
+ 0xff2083c4,0xffffffff,0xffffffff,0xffffffff,0xff65acdb,0xff1f88cd,0xff2089cf,0xff1f8bd1,0xff208cd4,0xff208cd5,0xff1f8ed7,0xff1f8fd9,0xff3e9dd9,0xff1f8fda,
+ 0xff1e8edb,0xff1f8fdb,0xff1e8edb,0xff3d9ddb,0xff2c94da,0xff1c8cda,0xff1b8ddb,0xff1b8cdb,0xff1c8ddd,0xff1c8ede,0xff1b8fe1,0xff1c91e4,0xff1c93e7,0xff1c95ea,
+ 0xff1c96ee,0xff1b98f1,0xff1c9af5,0xff1b9bf7,0xff1a9cf9,0xff1b9dfb,0xff40b1fd,0xff1ca0fd,0xff1da0fe,0xff1da1ff,0xff30aaff,0xff1ea2ff,0xff1ea2ff,0xff1fa2ff,
+ 0xff50caff,0xff50caff,0xff50cbff,0xff52cbff,0xff52cbfe,0xff56cbfe,0xff5acdff,0xff5ecffe,0xff85dbfe,0xff72d5fe,0xff7fd9fe,0xff8fddfe,0xffa2e3fe,0xffb4e8fd,
+ 0xffc7eefe,0xffebb23a,0xfffbae09,0xffffbb12,0xfffaaf0d,0xfff19800,0xfff5ae15,0xffffd331,0xffffcc29,0xfffec31f,0xffec9405,0xffe88f06,0xfff3c130,0xffed9700,
+ 0xffed9700,0xffed9700,0xffec9600,0xffeb9500,0xffe78e00,0xffd87800,0xffd16b00,0xffd78b22,0xffecdf6f,0xffecec71,0xffe5e564,0xffdfdd5a,0xffd9d150,0xffd1c447,
+ 0xffd5b780,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffb6c4cb,0xff7fa2b3,0xff7caabf,0xff7caec5,0xff6cadcb,0xff61aacc,0xff58aacf,0xff50a7cf,
+ 0xff49a5cf,0xff43a2cf,0xff3ea0ce,0xff3b9ecd,0xff379bca,0xff369ac9,0xffffffff,0xffffffff,0xffffffff,0xff73b6d7,0xff509ec5,0xff3295c6,0xff3297c8,0xff419cc9,
+ 0xff3299cc,0xff329acd,0xff329ace,0xff329bcf,0xff329bd0,0xff319cd0,0xff319acf,0xff319acf,0xff2f98cd,0xff2f97cc,0xff2e95ca,0xff2d93c8,0xff4b9cc5,0xff2c90c3,
+ 0xffffffff,0xffffffff,0xffffffff,0xff6baed0,0xff2788bb,0xffffffff,0xffffffff,0xffffffff,0xff6bafd4,0xff288dc3,0xff288fc6,0xff2791c9,0xff2892ca,0xff2893cd,
+ 0xff2894ce,0xff2794d0,0xff2796d1,0xff389bd1,0xff2796d2,0xff2695d2,0xff48a1d2,0xff2595d2,0xff47a0d1,0xff2494d1,0xff2493d2,0xff2495d3,0xff2495d4,0xff2396d6,
+ 0xff2397d9,0xff249add,0xff249ce1,0xff24a0e5,0xff25a2e9,0xff24a5ee,0xff24a8f2,0xff25a9f5,0xff24abf8,0xff24acfa,0xff51befc,0xff26affd,0xff27affe,0xff27b0ff,
+ 0xff53c1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff60cbff,0xff60ccff,0xff61cbff,0xff51c5ff,0xff63ccfe,0xff66cdff,0xff5ac8fe,0xff71d1fe,0xff6ccefe,
+ 0xff79d3fe,0xff8ad8fe,0xffa5e1fd,0xffb8e8fe,0xffc3eafc,0xffe8af3a,0xfffaaf0d,0xffffc11a,0xffffc11a,0xfff9b111,0xffed9200,0xfff2a30d,0xfff8b518,0xfffebd19,
+ 0xffffba12,0xffee9704,0xffe38200,0xffe98e00,0xffed9700,0xffed9700,0xffea9200,0xffdf7f00,0xffd57000,0xffdb8f2a,0xffedd475,0xfff3f38e,0xffeeee7f,0xffe9e972,
+ 0xffe1e163,0xffdad858,0xffc29c31,0xffa55608,0xffecdccf,0xffffffff,0xffffffff,0xffded0c5,0xffffffff,0xffffffff,0xffe8edf0,0xff7aa4b9,0xff6aa0bd,0xff78a7c0,
+ 0xff569cc3,0xffffffff,0xffffffff,0xffffffff,0xff9bc8e1,0xffe1eef4,0xfffafcfd,0xffd0e4f0,0xff2b8ac3,0xff2989c1,0xffffffff,0xffffffff,0xffffffff,0xff7bb1d0,
+ 0xff4c93bc,0xffaed1e6,0xffffffff,0xffffffff,0xfffdfeff,0xff90bfda,0xff4094c5,0xff4698c8,0xff93c4e1,0xffdcecf5,0xfff7fafc,0xfff6fafc,0xffddecf5,0xff9dc7e0,
+ 0xff4694c4,0xff2f88c0,0xff4892bd,0xff3a8aba,0xffffffff,0xffffffff,0xffffffff,0xff75a9ca,0xff3583b2,0xffffffff,0xffffffff,0xffffffff,0xff75acce,0xff1c7cba,
+ 0xff378abd,0xff2483c2,0xff89bddf,0xffd6e8f4,0xfff6fafc,0xfff5f9fc,0xffd7e9f5,0xff8cc1e4,0xff278acc,0xff1c82c9,0xff3790c9,0xff1b82c9,0xffffffff,0xffffffff,
+ 0xffffffff,0xff6eafdb,0xffa8cfe9,0xffeef5fa,0xfff7fbfd,0xffc2def2,0xff48a1de,0xff3a9de0,0xff2b99e5,0xff3ca4ea,0xff3da8ef,0xff2ca1f3,0xff1a9af6,0xff3fadf9,
+ 0xff1b9dfb,0xff2ea8fd,0xff40b1fd,0xff41b2fe,0xff42b3ff,0xff42b3ff,0xff43b3ff,0xff43b3ff,0xff4fcaff,0xff73d5ff,0xff73d5ff,0xff74d6ff,0xff52cbff,0xff76d6ff,
+ 0xff77d6fe,0xff7cd8ff,0xff90dfff,0xff88dbfe,0xff77d6fe,0xff9fe3fe,0xffaee6fd,0xffbdebfd,0xffcdeffc,0xffe6ad3a,0xfff9b111,0xffffc622,0xffffc722,0xffffc722,
+ 0xfff9b619,0xffef9c0a,0xffe88a00,0xffe68700,0xffe88b02,0xffed9302,0xffe38200,0xffdf7c00,0xffe68a00,0xffe38600,0xffd97300,0xffdb8218,0xffecc576,0xfff9f9ad,
+ 0xfff5f59e,0xfff1f18f,0xffecec80,0xffe5e572,0xffd2bb4b,0xffb16610,0xffa14700,0xffb97e33,0xffffffff,0xffffffff,0xfffcfbf9,0xff915f3e,0xfffefefe,0xffffffff,
+ 0xffffffff,0xff8fb2c1,0xff639bb5,0xff6da0b8,0xff529abc,0xffffffff,0xffffffff,0xffffffff,0xfff8fbfc,0xffffffff,0xffffffff,0xffa1c9dc,0xff3391bd,0xff318eba,
+ 0xffffffff,0xffffffff,0xffffffff,0xff70adcb,0xff9dc3d6,0xffffffff,0xffffffff,0xfffeffff,0xff7eb8d4,0xff4a96bb,0xff3792c0,0xffd5e7f1,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffd8e9f2,0xff358ebc,0xff458fb5,0xff2884b3,0xffffffff,0xffffffff,0xffffffff,0xff7babc5,0xff3f86ab,0xffffffff,
+ 0xffffffff,0xffffffff,0xff7caec9,0xff2481b3,0xff4991b8,0xffd0e4ef,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffd6e9f4,0xff3e95c4,
+ 0xff328ec1,0xff2289c1,0xffffffff,0xffffffff,0xffffffff,0xffdbebf4,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffbbddf0,0xff47a6db,0xff48aae1,0xff4aafe7,
+ 0xff4cb3ed,0xff4eb5f1,0xff25a9f5,0xff4fbaf8,0xff25adfa,0xff51befd,0xff26affd,0xff27affe,0xff52c1ff,0xff3eb9ff,0xff54c1ff,0xff69c9ff,0xff3fbdff,0xff60ccff,
+ 0xff60cbff,0xff61ccff,0xff62ccff,0xff42c0ff,0xff45c0fe,0xff68cdfe,0xff6ed0ff,0xff68cdfe,0xff74d1fe,0xff8fdafd,0xff8dd8fe,0xffa4e0fe,0xffbee8fc,0xffe3aa3a,
+ 0xfff8b215,0xffffcc29,0xffffcd2a,0xffffcd2a,0xffffcd2a,0xffffcd2b,0xffffce2b,0xfff9bc21,0xfff3ae19,0xffea990f,0xffe38706,0xffdd7900,0xffdc7700,0xffd97300,
+ 0xffd67100,0xffde9133,0xffe2a852,0xffe2af57,0xffe4be63,0xffe4cb6c,0xffdbbc59,0xffc0771d,0xffad4f00,0xffb15f06,0xffc48f14,0xffe3cf97,0xffffffff,0xffffffff,
+ 0xffe3d2bc,0xff753e1b,0xffdee1e3,0xffffffff,0xffffffff,0xffb9cfdb,0xff518dae,0xff5993b2,0xff3f8bb5,0xffffffff,0xffffffff,0xffffffff,0xfff9fbfc,0xff92c0d8,
+ 0xff89bad4,0xff358bbd,0xff2683b8,0xff2680b5,0xffffffff,0xffffffff,0xffffffff,0xffa8cadf,0xfffcfdfd,0xffffffff,0xfffeffff,0xff89b6d0,0xff227cb2,0xff3b88b4,
+ 0xff97c2db,0xffffffff,0xffffffff,0xfff0f6f9,0xff7ab1d3,0xff80b4d3,0xfff2f6f9,0xffffffff,0xffffffff,0xff9bc3dc,0xff3682af,0xff1d75ad,0xffffffff,0xffffffff,
+ 0xffffffff,0xff71a3c1,0xff3179a5,0xffffffff,0xffffffff,0xffffffff,0xff72a5c5,0xff337ead,0xffa5c5d9,0xffffffff,0xffffffff,0xfff0f6f9,0xff76aed3,0xff74add3,
+ 0xfff0f6fa,0xffffffff,0xffffffff,0xffa5c9e0,0xff1978b9,0xff1978b9,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffeff6fa,0xff3897d7,0xff399bdd,0xff1a91e5,0xff1b94ea,0xff2ba0f0,0xff2ca2f4,0xff2da4f7,0xff1a9dfa,0xff40b0fc,0xff1c9ffd,0xff2fa9fe,0xff42b3ff,0xff42b3ff,
+ 0xff1ea2ff,0xff43b4ff,0xff4fcaff,0xff62cfff,0xff50caff,0xff62d0ff,0xff51cbff,0xff76d5fe,0xff78d7ff,0xff6ad3ff,0xff6fd4ff,0xff67d2fe,0xff82d9fe,0xff83dafe,
+ 0xffabe6fe,0xffbaeafd,0xffbdeafd,0xffe3a83a,0xfff7b418,0xffffd231,0xffffd331,0xffffd331,0xffffd332,0xffffd332,0xffffd332,0xffffd433,0xffffd433,0xffffd433,
+ 0xffffd534,0xfffbc92e,0xfff6ca59,0xfff0b439,0xffe99d15,0xffe79b14,0xffd9800a,0xffd67b0a,0xffc86502,0xffc05a00,0xffba5500,0xffbd6908,0xffcd9417,0xffd0a31e,
+ 0xffc79d1f,0xfff8f4ea,0xffffffff,0xffffffff,0xffc19f72,0xff723b1a,0xffadb6ba,0xffffffff,0xffffffff,0xfff2f5f7,0xff5e94ac,0xff5c93ac,0xff5994b0,0xffffffff,
+ 0xffffffff,0xffffffff,0xffb5d4e3,0xff4e97b9,0xff4d96b8,0xff4c94b6,0xff3089b4,0xff2f87b1,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffeff5f7,0xff4c8faf,0xff3886ad,0xff3886ae,0xffe5f0f5,0xffffffff,0xffffffff,0xff9bc2d5,0xff458cb1,0xff2a84b1,0xff93bfd5,0xffffffff,0xffffffff,0xffe5f0f5,
+ 0xff267eab,0xff4086a9,0xffffffff,0xffffffff,0xffffffff,0xff70a4bf,0xff2f7aa1,0xffffffff,0xffffffff,0xffffffff,0xff70a5c2,0xff227aa8,0xffe7f0f5,0xffffffff,
+ 0xffffffff,0xff87b9d3,0xff227eb0,0xff217eb1,0xff88bbd6,0xffffffff,0xffffffff,0xffe6f0f6,0xff2080b4,0xff207fb3,0xffffffff,0xffffffff,0xffffffff,0xffb9d7e8,
+ 0xff4892bc,0xffaed0e3,0xffffffff,0xffffffff,0xfffeffff,0xff349bd4,0xff2298db,0xff4aabe2,0xff4bafe9,0xff23a4ee,0xff4db7f3,0xff24a9f6,0xff25acf9,0xff26aefc,
+ 0xff51befd,0xff3db8fe,0xff3db9ff,0xff3ebaff,0xff53c1ff,0xff54c1ff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff42bfff,0xff44c1ff,0xff49c3ff,
+ 0xff4fc4ff,0xff57c7fe,0xff66cdff,0xff76d1fe,0xff8ad8fe,0xff9fdffe,0xffb4e5fd,0xffe0a53a,0xfff6b51c,0xffffd838,0xffffd939,0xffffd939,0xffffd939,0xffffd93a,
+ 0xffffda3a,0xffffda3a,0xffffda3b,0xffffda3b,0xffffda3b,0xffffdb3c,0xffffe462,0xfffedc58,0xfffdd030,0xfffccf2f,0xfff9cc2d,0xfff7ca2d,0xfff3c62b,0xffedc12a,
+ 0xffe8bc28,0xffe0b527,0xffd8ae25,0xffcfa723,0xffd6bc64,0xffffffff,0xffffffff,0xffffffff,0xffdeceb7,0xffc8b4a9,0xffd0d6d9,0xffffffff,0xffffffff,0xffffffff,
+ 0xff80acc3,0xff3b83ab,0xff3583ae,0xffffffff,0xffffffff,0xffffffff,0xff7cb4d3,0xff3488b7,0xff3f8db7,0xff3285b5,0xff257fb3,0xff257db1,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff91bbd4,0xff2075a9,0xff2076aa,0xfffafbfc,0xffffffff,0xffffffff,0xff68a4c8,0xff2076ad,0xff1f77ad,
+ 0xff69a3c8,0xffffffff,0xffffffff,0xfffafbfc,0xff1d73a9,0xff1c71a7,0xffffffff,0xffffffff,0xffffffff,0xff6199be,0xff1a6ca1,0xffffffff,0xffffffff,0xffffffff,
+ 0xff699fc1,0xff3078a6,0xfffafbfc,0xffffffff,0xffffffff,0xff649fc7,0xff1872ad,0xff1871ad,0xff64a1c9,0xffffffff,0xffffffff,0xfff9fbfc,0xff1872b0,0xff1771b0,
+ 0xffffffff,0xffffffff,0xffffffff,0xff66a2cd,0xff1774b5,0xff62a2d0,0xffffffff,0xffffffff,0xffffffff,0xff1985d1,0xff1989d9,0xff1a8ee1,0xff1a92e7,0xff1a95ed,
+ 0xff2ca0f2,0xff1a9af6,0xff1a9cf9,0xff1c9efb,0xff1c9ffd,0xff1d9ffe,0xff1ea0fe,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff50caff,0xff51cbff,
+ 0xff51cbff,0xff53cbff,0xff54ccfe,0xff58ceff,0xff5ecefe,0xff66d1ff,0xff72d6ff,0xff82daff,0xff92dffe,0xffa6e4fe,0xffb9e9fd,0xffdfa43a,0xfff5b720,0xffffde40,
+ 0xffffde40,0xffffdf41,0xffffdf41,0xffffdf41,0xffffe042,0xffffe042,0xffffe042,0xffffe043,0xffffe043,0xffffe143,0xffffe967,0xfffee15e,0xfffdd637,0xfffcd436,
+ 0xfff9d134,0xfff6ce34,0xfff2cb32,0xffedc531,0xffe7c02f,0xffe0bb2d,0xffd8b32b,0xffcfab29,0xffece1b8,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc7dbe4,0xff428aab,0xff3c8bae,0xffffffff,0xffffffff,0xffffffff,0xff75b2cf,0xff328db8,0xff328db8,0xff318cb6,
+ 0xff308ab5,0xff2f88b2,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc5dbe6,0xffffffff,0xffffffff,0xfff6f9fb,0xff408cb2,0xff297fa9,0xffe5f0f5,0xffffffff,
+ 0xffffffff,0xff8dbbd3,0xff2880ac,0xff287fac,0xff8cbbd3,0xffffffff,0xffffffff,0xffe5eff5,0xff267da9,0xff267ca8,0xffffffff,0xffffffff,0xffffffff,0xff67a1c0,
+ 0xff2276a2,0xffffffff,0xffffffff,0xffffffff,0xff67a1c1,0xff2178a6,0xffe4eef4,0xffffffff,0xffffffff,0xff88b8d2,0xff217bac,0xff217cad,0xff88b9d3,0xffffffff,
+ 0xffffffff,0xffe4eff5,0xff1f7caf,0xff1f7caf,0xffffffff,0xffffffff,0xffffffff,0xff64a6ca,0xff1f7fb5,0xff65a8ce,0xffffffff,0xffffffff,0xffffffff,0xff2191d1,
+ 0xff2297d9,0xff229be0,0xff23a0e7,0xff23a4ed,0xff23a7f2,0xff24aaf6,0xff25acf9,0xff25adfb,0xff27b0fd,0xff27affe,0xff28b0fe,0xff28b1ff,0xff3ebaff,0xff29b2ff,
+ 0xff3fbdff,0xff40bfff,0xff40bfff,0xff41bfff,0xff41bfff,0xff42bfff,0xff44c1ff,0xff47c2ff,0xff6ccfff,0xff55c5fe,0xff61cafe,0xff71d0fe,0xff83d5fe,0xff99ddfe,
+ 0xffaee3fd,0xffdda13a,0xfff4b626,0xffffe348,0xffffe448,0xffffe548,0xffffe549,0xffffe549,0xffffe549,0xffffe649,0xffffe64a,0xffffe64a,0xffffe64a,0xffffe74b,
+ 0xffffed6d,0xfffee563,0xfffddb3e,0xfffcda3d,0xfff9d63c,0xfff6d43a,0xfff2cf38,0xffedcb37,0xffe7c535,0xffe0bf33,0xffd9b931,0xffd3b73e,0xfffdfcf9,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff9fafb,0xff488eb4,0xff3183b0,0xffffffff,0xffffffff,0xffffffff,
+ 0xff6baace,0xff2886bb,0xff2886bb,0xff2783b9,0xff2683b8,0xff3e8ab5,0xffffffff,0xffffffff,0xffffffff,0xff95bdd5,0xff277aab,0xffe7f0f6,0xffffffff,0xffffffff,
+ 0xffaccbdf,0xff3881ab,0xff97bfd8,0xffffffff,0xffffffff,0xfff0f6f9,0xff77accd,0xff76accd,0xffeff5f9,0xffffffff,0xffffffff,0xff97bfd8,0xff1e75ad,0xff1d74ab,
+ 0xffffffff,0xffffffff,0xffffffff,0xff629dc3,0xff1b6fa6,0xffffffff,0xffffffff,0xffffffff,0xff619dc4,0xff1b70a9,0xff94bcd7,0xffffffff,0xffffffff,0xfff0f6f9,
+ 0xff74aace,0xff72a9cd,0xfff1f6f9,0xffffffff,0xffffffff,0xff95bedb,0xff1873b1,0xff1872b1,0xffffffff,0xffffffff,0xffffffff,0xff609fcc,0xff1774b6,0xff60a2d0,
+ 0xffffffff,0xffffffff,0xffffffff,0xff288cd2,0xff1a89d9,0xff1a8ee1,0xff1a91e7,0xff1a95ed,0xff1b98f2,0xff52b4f6,0xff1b9cf9,0xff1c9dfb,0xff2fa9fd,0xff41b1fe,
+ 0xff1ea1fe,0xff1ea1ff,0xff43b3ff,0xff1fa2ff,0xff4fcaff,0xff62cfff,0xff62cfff,0xff62d0ff,0xff51cbff,0xff76d6ff,0xff78d6ff,0xff58cdff,0xff7dd9ff,0xff63d2ff,
+ 0xff7dd9ff,0xff7bd8fe,0xffa2e3fe,0xffb1e7fe,0xffafe6fd,0xffda9e3a,0xffec9910,0xfffdd84f,0xffffe950,0xffffeb50,0xffffeb50,0xffffeb50,0xffffeb51,0xffffec51,
+ 0xffffec51,0xffffec52,0xffffec52,0xffffed52,0xfffff173,0xfffee968,0xfffde045,0xfffcdf44,0xfff9dc43,0xfff7d941,0xfff3d63f,0xffeed13e,0xffe9cc3c,0xffe1c53a,
+ 0xffdabe37,0xffe4d58b,0xffffffff,0xffffffff,0xffffffff,0xffc6b359,0xff9a6415,0xff763d1b,0xff5e7580,0xff97afba,0xffffffff,0xffffffff,0xffffffff,0xffa1c3d3,
+ 0xff4893b5,0xffffffff,0xffffffff,0xffffffff,0xff7eb7d2,0xff3594c0,0xff3494c0,0xff3492bf,0xff4095bd,0xff5b9cbb,0xffffffff,0xffffffff,0xffffffff,0xff81b1c9,
+ 0xff3a89af,0xff87b9d1,0xffffffff,0xffffffff,0xfffcfdfd,0xff69a2be,0xff4e92b4,0xffd6e6ef,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffd4e6ef,0xff3389b6,0xff438cb1,0xff3587b1,0xffffffff,0xffffffff,0xffffffff,0xff73aac7,0xff3283ad,0xffffffff,0xffffffff,0xffffffff,0xff72aac7,0xff4088af,
+ 0xff3b8ab4,0xffd1e4ef,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffd3e5ef,0xff4891b9,0xff3e8bb5,0xff2180b5,0xffffffff,0xffffffff,
+ 0xffffffff,0xff65a9ce,0xff1f83ba,0xff65abd2,0xffffffff,0xffffffff,0xffffffff,0xff2195d5,0xff2299dc,0xff49abe2,0xff4bafe9,0xff23a4ee,0xff23a7f3,0xff4eb9f6,
+ 0xff25acf9,0xff26aefc,0xff27b0fd,0xff52bffe,0xff27b1ff,0xff28b2ff,0xff3ebaff,0xff29b2ff,0xff3fbdff,0xff60ccff,0xff60cbff,0xff61ccff,0xff51c5ff,0xff42c0ff,
+ 0xff43c0ff,0xff67cdff,0xff6acfff,0xff6fcffe,0xff5cc8fe,0xff83d6fe,0xff79d3fe,0xff8dd9fe,0xffb1e5fe,0xffb5c9c2,0xffdc8d18,0xffe99511,0xfffacf49,0xffffed58,
+ 0xfffff158,0xfffff158,0xfffff158,0xfffff259,0xfffff259,0xfffff259,0xfffff25a,0xfffff25a,0xfffff678,0xfffeed6d,0xfffde64c,0xfffce54b,0xfffae24a,0xfff7df48,
+ 0xfff4dc46,0xffefd745,0xffead242,0xffe4cc41,0xffddc63e,0xfff6f2d7,0xffffffff,0xffffffff,0xfff9f7ed,0xffbda834,0xffa06a19,0xff7b3f1c,0xff5e7987,0xff6992a9,
+ 0xfff9fbfc,0xffffffff,0xffffffff,0xffdbeaf2,0xff4b95bc,0xffffffff,0xffffffff,0xffffffff,0xff6db1d7,0xff2a8dc5,0xff2a8dc5,0xff298cc5,0xff298bc4,0xff4393c1,
+ 0xffffffff,0xffffffff,0xffffffff,0xff69a8ce,0xff3d8ab6,0xff2b84b8,0xffebf3f8,0xffffffff,0xffffffff,0xffd0e2eb,0xff227fb6,0xff428eb9,0xff9bc3da,0xffd9e9f3,
+ 0xfff8fbfc,0xfff8fbfc,0xffd9e9f3,0xff8dbdda,0xff2983bc,0xff3a89b9,0xff207eb9,0xff2b82b8,0xffffffff,0xffffffff,0xffffffff,0xff75abcc,0xff3685b5,0xffffffff,
+ 0xffffffff,0xffffffff,0xff74aacc,0xff1d79b6,0xff3585b7,0xff247dba,0xff8abada,0xffd8e8f3,0xfff8fafc,0xfff8fafc,0xffdeebf3,0xff91bedc,0xff3c8abd,0xff1a7abb,
+ 0xff1a78bb,0xff3386bb,0xffffffff,0xffffffff,0xffffffff,0xff60a3d2,0xff187bc1,0xff61a5d6,0xffffffff,0xffffffff,0xffffffff,0xff1a8ad9,0xff2a94de,0xff1a91e5,
+ 0xff1a93ea,0xff3da8f0,0xff1b99f4,0xff3facf7,0xff1b9dfa,0xff1c9efc,0xff1c9ffd,0xff41b2fe,0xff1da1ff,0xff1ea2ff,0xff1ea1ff,0xff1fa2ff,0xff50caff,0xff73d5ff,
+ 0xff73d6ff,0xff74d6ff,0xff63d0ff,0xff75d6ff,0xff77d6ff,0xff79d8ff,0xff8bdcff,0xff7fdaff,0xff67d3ff,0xff8eddfe,0xff99e1fe,0xffa6e4fe,0xffa9e4fd,0xfface1f7,
+ 0xffb7cdd0,0xffd38922,0xffe28406,0xfff9cf4e,0xfffff25f,0xfffff760,0xfffff760,0xfffff860,0xfffff861,0xfffff861,0xfffff861,0xfffff962,0xfffffa7e,0xfffef173,
+ 0xfffdec53,0xfffcea52,0xfffae851,0xfff8e54f,0xfff5e24d,0xfff1de4c,0xffecd94a,0xffe7d348,0xffe1ce45,0xffdbc843,0xffd5c241,0xffcfbd3f,0xffcab63d,0xffc5ab3e,
+ 0xffa5651c,0xff80421d,0xff62808d,0xff6b98ad,0xff77a6bc,0xff589dbd,0xff65a2bf,0xff459ac1,0xff5aa1c2,0xff499ec5,0xff57a4c8,0xff56a5c9,0xff389dcc,0xff379ecd,
+ 0xff379dcd,0xff379dcd,0xff369bcb,0xff54a3c9,0xff3498c7,0xff3495c5,0xff4f9cc2,0xff3193c1,0xff4d9abf,0xff308fbe,0xff2f8ebd,0xff2f8ebd,0xff2f8ebd,0xff4c98be,
+ 0xff2f8ebe,0xff4b97be,0xff4b98bf,0xff4a99bf,0xff4b99c0,0xff3c94c0,0xff2c8ec0,0xff2c8fc1,0xff2c8fc1,0xff4a99c1,0xff2b8ec1,0xff2a8ec1,0xff4898c0,0xff4797bf,
+ 0xff298bbe,0xff4795be,0xff4694bd,0xff288abd,0xff2789bd,0xff4594be,0xff5499be,0xff4694bf,0xff4594bf,0xff258abf,0xff268ac0,0xff268bc0,0xff258ac1,0xff258bc1,
+ 0xff4495c1,0xff248ac1,0xff4395c2,0xff238ac2,0xff228ac3,0xff4395c3,0xff4395c3,0xff228ac4,0xff218bc5,0xff228ac5,0xff228cc8,0xff218eca,0xff2290ce,0xff2293d2,
+ 0xff2295d7,0xff2399dd,0xff37a4e2,0xff4bb0e8,0xff4cb3ed,0xff4eb5f1,0xff25a9f5,0xff4fbaf8,0xff24acfa,0xff26aefc,0xff27affd,0xff52bffe,0xff27b2ff,0xff29b1ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff60cbff,0xff50c3ff,0xff61ccff,0xff50c5ff,0xff62ccff,0xff63ccff,0xff64ccfe,0xff67cdff,0xff4dc3ff,0xff71d1fe,0xff6ccefe,
+ 0xff86d8ff,0xff91dbfe,0xff95dcfe,0xff9dddfc,0xffb6e2f6,0xffabc7d0,0xffd38523,0xffdf8006,0xfff6c94a,0xfffff365,0xfffffd68,0xfffffd68,0xfffffd68,0xfffffe69,
+ 0xfffffe69,0xfffffe69,0xfffffe84,0xfffef362,0xfffdf15a,0xfffdf159,0xfffbee58,0xfff9ec56,0xfff6e854,0xfff3e553,0xffefe051,0xffeadc4f,0xffe5d74d,0xffe0d14b,
+ 0xffdbcb49,0xffd6bf47,0xffc79c3a,0xffa45511,0xff943600,0xff7c5137,0xff608497,0xff73a0b8,0xff78abc6,0xff59a1c7,0xff5ca3c9,0xff3d98ca,0xff50a1cc,0xff3f9bcd,
+ 0xff4ba2d0,0xff4aa2d1,0xff2e97d3,0xff2e96d4,0xff2d99d5,0xff2d97d5,0xff2c96d3,0xff3a9bd2,0xff479ed0,0xff3796cd,0xff459acc,0xff449aca,0xff4398c9,0xff288cc8,
+ 0xff278bc7,0xff278bc7,0xff268bc7,0xff509cc7,0xff4196c7,0xff4097c8,0xff3290c8,0xff4096c8,0xff4095c9,0xff3290c9,0xff2489c9,0xff2389c9,0xff2388c9,0xff3091ca,
+ 0xff3f96ca,0xff3e95c9,0xff3d94c9,0xff3d94c9,0xff3c94c9,0xff3c93c8,0xff3c93c8,0xff1f86c8,0xff1f85c8,0xff3b92c8,0xff3b92c8,0xff3b92c9,0xff3a92c9,0xff1e84c9,
+ 0xff1e84c9,0xff1d85c9,0xff1d84c9,0xff1d84c9,0xff3a92ca,0xff1d84ca,0xff2a8acb,0xff3992cb,0xff3992cc,0xff298acc,0xff3891cc,0xff1a83cc,0xff1b83cd,0xff1a84ce,
+ 0xff1a85d0,0xff1a86d2,0xff1b87d5,0xff1a8ad9,0xff1a8cdd,0xff1a8ee1,0xff2b99e6,0xff3ca5eb,0xff3da7ef,0xff3eabf3,0xff2ca3f6,0xff53b7f9,0xff40affb,0xff1c9ffd,
+ 0xff40b2fd,0xff56bafe,0xff2faaff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff4fc9ff,0xff50caff,0xff50cbff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53ccff,0xff54ccfe,
+ 0xff56ccfe,0xff5acdfe,0xff61d0ff,0xff68d3ff,0xff72d5fe,0xff7dd9fe,0xff8cddfe,0xff9be1fe,0xffc2ebfd,0xffc1e8f7,0xffb2ccd2,0xffc38d47,0xffda7400,0xfff0b63e,
+ 0xfffff36c,0xffffff73,0xffffff74,0xffffff74,0xffffff75,0xffffff75,0xffffff8d,0xfffef861,0xfffef861,0xfffdf660,0xfffcf55f,0xfff9f15d,0xfff8f05d,0xfff5ec5b,
+ 0xfff1e858,0xffede357,0xffe9de54,0xffe5ce4f,0xffd9b043,0xffb86b1c,0xff9f3900,0xff904920,0xff726b64,0xff658492,0xff6b98ac,0xff6eabc6,0xff66afd0,0xff5aabd0,
+ 0xff4fa8d1,0xff49a8d3,0xff44a8d5,0xff4fabd6,0xff5eb2d8,0xff5cb1d9,0xff4daddb,0xff3ca9dc,0xff3caadd,0xff3ca9dc,0xff3aa7db,0xff39a6da,0xff39a6d9,0xff38a3d6,
+ 0xff37a1d5,0xff37a1d3,0xff369fd2,0xff359dd1,0xff349dd1,0xff349dd1,0xff349dd1,0xff349dd1,0xff339dd1,0xff339dd1,0xff329cd1,0xff329cd1,0xff319cd1,0xff319cd1,
+ 0xff319cd2,0xff319cd2,0xff309cd3,0xff2f9cd3,0xff2f9cd3,0xff2e9bd3,0xff2e9cd3,0xff2d99d2,0xff2d9ad2,0xff2c98d1,0xff2c98d1,0xff2b98d1,0xff2b98d1,0xff2b98d1,
+ 0xff2b98d1,0xff2a98d2,0xff2a98d2,0xff2a97d2,0xff2997d2,0xff2897d2,0xff2896d2,0xff2897d3,0xff2897d3,0xff2797d3,0xff2797d4,0xff2696d4,0xff2697d5,0xff2696d5,
+ 0xff2696d5,0xff2596d5,0xff2596d5,0xff2497d7,0xff2498d8,0xff2599da,0xff249bdd,0xff249ce0,0xff259ee3,0xff24a0e7,0xff25a3eb,0xff25a4ee,0xff24a7f2,0xff25a9f5,
+ 0xff25abf8,0xff24adfa,0xff25aefc,0xff26affd,0xff26affe,0xff28b0fe,0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff29b2ff,0xff3fbdff,0xff41bdff,0xff40bfff,0xff41bdff,
+ 0xff41c0ff,0xff41bfff,0xff41c0ff,0xff43c0ff,0xff46c1ff,0xff49c3ff,0xff4ec4ff,0xff53c5fe,0xff5dc9ff,0xff68ccfe,0xff74d1fe,0xff83d5fe,0xff92dbfe,0xffa2e0fe,
+ 0xffacdef7,0xffadd2e3,0xffc28b49,0xffd66e00,0xffefb240,0xffffe971,0xffffff82,0xffffff83,0xffffff83,0xffffff84,0xffffff98,0xfffffe6a,0xfffefd68,0xfffdfb67,
+ 0xfffdfb67,0xfffbf965,0xfff9f664,0xfff7f462,0xfff4ee5f,0xfff1dc57,0xffe9c24c,0xffca8227,0xffa93d00,0xff9e4411,0xff816555,0xff6d8694,0xff7092a5,0xff71a0b9,
+ 0xff6fabcc,0xff66afd7,0xff59acd9,0xff4da8da,0xff44a5db,0xff3ea3dc,0xff37a1dc,0xff35a1de,0xff33a1e0,0xff32a3e1,0xff31a2e2,0xff31a3e3,0xff30a4e4,0xff2fa3e3,
+ 0xff2fa1e3,0xff2fa0e2,0xff2e9fe1,0xff2d9ddf,0xff2c9bdd,0xff2c9bdd,0xff2c9adb,0xff2b99db,0xff2b99da,0xff2b98da,0xff2b97d9,0xff2a97d9,0xff2997d9,0xff2896da,
+ 0xff2896da,0xff2896da,0xff2796da,0xff2895db,0xff2895db,0xff2795db,0xff2796dc,0xff2795dc,0xff2695dc,0xff2595dc,0xff2594dc,0xff2594dc,0xff2493db,0xff2393db,
+ 0xff2393db,0xff2392db,0xff2292db,0xff2292db,0xff2292db,0xff2292db,0xff2191db,0xff2190db,0xff2090db,0xff2090db,0xff2090db,0xff1f90dc,0xff1f90dc,0xff1f90dc,
+ 0xff1f8fdd,0xff1e8fdd,0xff1e8fdd,0xff1d8fdd,0xff1d8edd,0xff1d8edd,0xff1c8fde,0xff1d8fdf,0xff1c8fe0,0xff1c90e1,0xff1c90e3,0xff1c91e5,0xff1c93e9,0xff1c95ec,
+ 0xff1c97ef,0xff1b98f1,0xff1b9af5,0xff1b9bf7,0xff1b9bf9,0xff1b9dfb,0xff1c9efd,0xff1c9ffd,0xff1c9ffe,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,
+ 0xff4fcaff,0xff50caff,0xff50cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff52ccff,0xff54ccff,0xff66d1ff,0xff58ceff,0xff5acfff,0xff5fd1ff,0xff66d2ff,0xff6dd5fe,
+ 0xff76d7fe,0xff82dbfe,0xffb0e7fe,0xffb0e8fe,0xffaae5fd,0xffc3eafa,0xffbfdce8,0xffbb9463,0xffd26800,0xffe29028,0xffffe579,0xfffffc90,0xffffff93,0xffffff94,
+ 0xffffffa4,0xffffff75,0xfffefe73,0xfffdfd72,0xfffdfd71,0xfffcfc6f,0xfffaf76b,0xfff9e45f,0xfff2c84f,0xffd38729,0xffb44804,0xffac4309,0xff8d6951,0xff788f9a,
+ 0xff7d9ca9,0xff83abbd,0xff84b8cf,0xff81c0dc,0xff78c0e1,0xff6bbce1,0xff6ebde2,0xff56b6e2,0xff50b5e4,0xff4ab4e4,0xff46b2e5,0xff42b1e4,0xff41b3e7,0xff41b2e8,
+ 0xff40b4e9,0xff40b2e9,0xff3fb3ea,0xff3fb2e9,0xff3eb2e9,0xff3eb2e9,0xff3eb1e8,0xff4eb4e6,0xff3bade5,0xff4cb3e5,0xff3aade4,0xff3aabe3,0xff3aaae2,0xff39aae2,
+ 0xff38aae2,0xff38a9e2,0xff37a9e2,0xff37a9e2,0xff36a9e2,0xff35a8e2,0xff35a8e2,0xff35a8e3,0xff35a9e3,0xff45aee3,0xff34a8e4,0xff33a8e4,0xff33a7e4,0xff32a7e4,
+ 0xff32a7e4,0xff32a7e4,0xff31a6e3,0xff31a6e3,0xff30a6e3,0xff2fa6e3,0xff2fa5e3,0xff2fa5e3,0xff2ea5e3,0xff2da5e3,0xff2da4e3,0xff2da4e3,0xff3eaae3,0xff3fa9e3,
+ 0xff2ba3e3,0xff2ba4e4,0xff2aa3e4,0xff50b0e4,0xff3da9e4,0xff29a3e5,0xff29a3e5,0xff29a3e5,0xff28a2e5,0xff28a2e5,0xff28a2e5,0xff28a1e6,0xff27a2e7,0xff26a3e9,
+ 0xff26a3e9,0xff26a5ec,0xff26a5ed,0xff26a8f0,0xff26a8f2,0xff25aaf5,0xff26aaf7,0xff50bbf9,0xff25adfb,0xff25aefc,0xff3bb7fd,0xff26b0fe,0xff26affe,0xff28b1ff,
+ 0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff64ccff,0xff45c1ff,
+ 0xff48c2ff,0xff4bc3ff,0xff50c4fe,0xff57c8ff,0xff5fcbfe,0xff6acdfe,0xff8ddbfe,0xff83d6fe,0xffa5e2fe,0xffa1e0fe,0xffade0f9,0xffb8d9e8,0xffb39b7e,0xffcf6300,
+ 0xffe08b2a,0xffffdb7a,0xfffffca0,0xffffffa4,0xffffffb0,0xffffff82,0xffffff81,0xfffefe7f,0xfffdfd7e,0xfffdec6e,0xfffcd55c,0xffe19a36,0xffbf530a,0xffb54100,
+ 0xff96664a,0xff7d8c93,0xff7e9bab,0xff85acc1,0xff8abbd6,0xff86c2e2,0xff7dc3e8,0xff72c0ea,0xff66bbea,0xff5ab6e9,0xff5cb9ea,0xff47afe9,0xff41afeb,0xff3babea,
+ 0xff3aacec,0xff36aced,0xff35abed,0xff34acee,0xff34acef,0xff34acef,0xff33acf0,0xff33aaf0,0xff32aaef,0xff32a9ef,0xff31a8ee,0xff51b4ed,0xff2fa7ec,0xff3facec,
+ 0xff2fa5eb,0xff2ea4ea,0xff2ea3ea,0xff2ea3e9,0xff2da3e9,0xff2da2e9,0xff2ca2e9,0xff2ca1e9,0xff2ba1e9,0xff2ba1e9,0xff2aa2ea,0xff2aa0ea,0xff2aa0ea,0xff49adea,
+ 0xff299feb,0xff29a0eb,0xff299feb,0xff299feb,0xff289feb,0xff279feb,0xff279dea,0xff279dea,0xff269dea,0xff269dea,0xff259cea,0xff259cea,0xff259cea,0xff249cea,
+ 0xff249bea,0xff249bea,0xff239aea,0xff32a2ea,0xff229aea,0xff219beb,0xff219aeb,0xff42aaeb,0xff42aaeb,0xff2099ec,0xff2099ec,0xff2098ec,0xff1f99ec,0xff1f98ec,
+ 0xff1e98ed,0xff1e97ed,0xff1e97ed,0xff1e98ee,0xff1e98ef,0xff1d99f1,0xff1d9af2,0xff1d9af4,0xff1d9bf6,0xff1c9df8,0xff3faff9,0xff1c9dfb,0xff1b9efc,0xff1b9ffd,
+ 0xff40b1fd,0xff1ca0fe,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff74d6ff,0xff73d5ff,0xff74d6ff,0xff62d0ff,0xff75d6ff,
+ 0xff76d6ff,0xff65d1ff,0xff76d6fe,0xff65d1fe,0xff68d3ff,0xff6ad3ff,0xff7cd9fe,0xff81dafe,0xff77d7ff,0xff6ed5fe,0xff93dffe,0xff81dafd,0xff8dddfd,0xff9be1fd,
+ 0xffb0e7fd,0xffb9e7f9,0xffb3dbeb,0xffb69d80,0xffcb5d00,0xffd47016,0xfffcd07a,0xfffff6a9,0xffffffbd,0xffffff91,0xffffff8f,0xfffeeb7b,0xfffed363,0xffecaa46,
+ 0xffc2550b,0xffb84300,0xffa35f38,0xff8b8c8b,0xff8ca3ac,0xff94b4c3,0xffa2c7d7,0xffa6d3e7,0xff98d4ee,0xff9cd7f1,0xff7bccf0,0xff8ad0f0,0xff67c5f0,0xff6ec8f0,
+ 0xff77caf0,0xff52c0f1,0xff7ecdf1,0xff6bc6f0,0xff6ac6f1,0xff55bff0,0xff67c5f2,0xff67c7f3,0xff55c1f4,0xff43bcf4,0xff42bbf4,0xff42bbf4,0xff53c0f4,0xff65c5f4,
+ 0xff64c4f3,0xff63c4f2,0xff3fb8f2,0xff73c7f1,0xff3db6f1,0xff61c2f1,0xff60c1f0,0xff60c1f0,0xff4dbaf0,0xff60c0f0,0xff5fc0f0,0xff5ebff0,0xff4bb9f0,0xff5ebff0,
+ 0xff5dbff0,0xff4bb9f0,0xff5ebff1,0xff6fc5f1,0xff4ab8f1,0xff49b9f1,0xff5cbff1,0xff5bbef1,0xff48b8f1,0xff6dc4f1,0xff5abef1,0xff59bdf1,0xff59bdf1,0xff32b0f1,
+ 0xff32aff1,0xff59bcf1,0xff31aff1,0xff31aef1,0xff30aef1,0xff30aef1,0xff2faef1,0xff2eadf1,0xff2eadf1,0xff2dadf1,0xff54baf1,0xff2dacf1,0xff54baf1,0xff54baf1,
+ 0xff53b9f1,0xff3eb2f1,0xff52b9f1,0xff52b8f1,0xff53b8f2,0xff29abf2,0xff66c0f2,0xff51b9f3,0xff3cb3f4,0xff51b9f5,0xff50baf6,0xff50bbf7,0xff26adf9,0xff26acf9,
+ 0xff51befb,0xff26aefc,0xff51befd,0xff50befd,0xff67c7fe,0xff3cb8ff,0xff52c0ff,0xff52c1ff,0xff3db9ff,0xff53c1ff,0xff29b2ff,0xff54c1ff,0xff3fbdff,0xff60cbff,
+ 0xff61ccff,0xff61ccff,0xff41bfff,0xff62ccff,0xff62ccff,0xff63ccff,0xff74d3ff,0xff63cbfe,0xff43c0fe,0xff66cfff,0xff68cfff,0xff6bcffe,0xff6fd0fe,0xff57c8fe,
+ 0xff7bd4fe,0xff68ccfd,0xff75d3fe,0xff82d6fe,0xffa3e1fe,0xff9dddfd,0xffabe1fc,0xffadd8ed,0xffb0b0a9,0xffc35c0b,0xffd16b17,0xfffbc578,0xfffff5bb,0xffffeb88,
+ 0xffffd06b,0xffeea94a,0xffcb6517,0xffba4300,0xffa95626,0xff888481,0xff8da2ad,0xff93b2c1,0xffa4c7d8,0xff92cbe9,0xff9ed6f3,0xff98d6f7,0xff8ed2f5,0xff78c9f4,
+ 0xff6fc6f4,0xff74c8f4,0xff54bdf5,0xff4bb8f4,0xff62c1f4,0xff40b4f4,0xff5cc0f5,0xff3bb3f5,0xff59bff5,0xff58bff6,0xff36b1f6,0xff57c0f7,0xff35b1f7,0xff35b2f8,
+ 0xff35b2f8,0xff35b0f8,0xff56bef8,0xff33aff7,0xff32aef7,0xff54bbf6,0xff31aef6,0xff53b9f5,0xff31acf5,0xff51b9f5,0xff30abf5,0xff30abf5,0xff3eb2f5,0xff61bff5,
+ 0xff50b8f5,0xff60bff5,0xff4fb8f5,0xff2da9f5,0xff2ca9f5,0xff2ca7f5,0xff2ca7f5,0xff4eb6f5,0xff2ba6f5,0xff4cb6f5,0xff2aa6f5,0xff29a6f5,0xff4bb5f5,0xff4ab5f5,
+ 0xff28a5f5,0xff38acf5,0xff49b4f5,0xff27a4f5,0xff26a4f5,0xff49b3f5,0xff26a3f5,0xff25a2f5,0xff25a2f5,0xff25a2f5,0xff25a2f5,0xff24a1f5,0xff24a1f5,0xff23a1f5,
+ 0xff46b1f5,0xff23a0f5,0xff45b0f5,0xff22a0f5,0xff229ff6,0xff44b1f6,0xff44aff6,0xff209ef6,0xff43aff6,0xff1f9df6,0xff42aef7,0xff42adf7,0xff41aff8,0xff55b8f9,
+ 0xff41aff9,0xff54b8fa,0xff1d9efb,0xff2ea7fc,0xff2fa8fd,0xff1c9ffd,0xff40b1fd,0xff1b9ffe,0xff41b1fe,0xff1ca0ff,0xff41b2ff,0xff41b3ff,0xff41b3ff,0xff30abff,
+ 0xff31abff,0xff43b3ff,0xff50caff,0xff73d5ff,0xff74d5ff,0xff74d6ff,0xff74d6ff,0xff52ccff,0xff53cbff,0xff76d6ff,0xff76d7ff,0xff66d1ff,0xff67d2ff,0xff77d6fe,
+ 0xff57cfff,0xff5bcfff,0xff6dd6ff,0xff61d1fe,0xff85dcfe,0xff6dd4fe,0xff76d8fe,0xff9ae1fe,0xff8cddfe,0xff98e0fe,0xffa3e3fd,0xffafe5fb,0xffbfe1ef,0xffadb3ad,
+ 0xffc0560b,0xffca5f10,0xfff3af69,0xfff7b65c,0xffd26f20,0xffbb4500,0xffb1521c,0xff8f8076,0xff859faa,0xff8eb0be,0xffa4c7d6,0xff9cd2ea,0xffa2dbf4,0xffa7e1fa,
+ 0xff88d6f9,0xff7ed3f8,0xff90d8f8,0xff6dccf7,0xff82d3f7,0xff6dccf7,0xff58c6f7,0xff54c5f8,0xff73cff9,0xff4dc3f9,0xff6fcef9,0xff49c2f9,0xff6cccf9,0xff46c0f9,
+ 0xff7bd1f9,0xff58c5f9,0xff45c0fa,0xff45c0fa,0xff44c0fa,0xff44bffa,0xff68cbfa,0xff43befa,0xff54c4fa,0xff67c9f9,0xff40bcf9,0xff66c8f9,0xff40bcf9,0xff65c8f9,
+ 0xff3fbbf9,0xff3ebbf9,0xff3ebbf9,0xff64c8f9,0xff3dbbf9,0xff4ec0f9,0xff62c6f9,0xff3bbaf9,0xff3bbaf9,0xff4dbff9,0xff3ab9f9,0xff60c5f9,0xff4cbef9,0xff60c5f9,
+ 0xff38b8f9,0xff37b8f9,0xff5ec4f9,0xff5dc4f9,0xff36b7f9,0xff35b6f9,0xff47bcf9,0xff5cc3f9,0xff5cc3f9,0xff5bc2f9,0xff33b5f9,0xff32b4f9,0xff32b4f9,0xff31b4f9,
+ 0xff31b4f9,0xff30b3f9,0xff30b3f9,0xff43baf9,0xff42b9f9,0xff2fb2f9,0xff57bff9,0xff2db1f9,0xff2db1f9,0xff56bff9,0xff55bff9,0xff2cb0f9,0xff55bef9,0xff2aaff9,
+ 0xff53bdf9,0xff53bdfa,0xff53bdfa,0xff53befb,0xff28aefb,0xff3db8fc,0xff28b0fd,0xff51befd,0xff26b0fd,0xff26affe,0xff52bffe,0xff25affe,0xff67c8ff,0xff52c0ff,
+ 0xff27b0ff,0xff27b1ff,0xff53c1ff,0xff28b2ff,0xff53c1ff,0xff3fbaff,0xff3fbdff,0xff50c3ff,0xff40bfff,0xff50c5ff,0xff41bfff,0xff62ccff,0xff63ccff,0xff52c7ff,
+ 0xff52c7ff,0xff44c1ff,0xff54c7ff,0xff44c0fe,0xff64cdfe,0xff67cfff,0xff48c2fe,0xff4cc4fe,0xff70d0fe,0xff57c9fe,0xff6dd1fe,0xff81d5fd,0xff89d8fd,0xff88d7fd,
+ 0xff8ad7fd,0xff97dbfd,0xffb3e5fc,0xffaadaf2,0xffa6afaf,0xffb75d21,0xffc35208,0xffbd4700,0xffb44d13,0xff927462,0xff839da9,0xff92b0be,0xff9cc2d4,0xff9dcfe9,
+ 0xff9ad7f4,0xff9edcfa,0xff8bd5fb,0xff77cefc,0xff85d3fb,0xff7fd2fc,0xff6ac9fb,0xff55c0fa,0xff5ec4fb,0xff4abdfb,0xff45bafa,0xff60c5fa,0xff5ec4fa,0xff4cbefb,
+ 0xff49bdfb,0xff3ab6fb,0xff48bcfb,0xff5ac4fc,0xff48bdfc,0xff59c3fc,0xff47bbfc,0xff36b5fc,0xff36b5fc,0xff36b4fd,0xff34b3fc,0xff57c1fc,0xff44b9fc,0xff43b9fc,
+ 0xff43b8fc,0xff54c0fc,0xff54befb,0xff42b6fb,0xff31affb,0xff30affb,0xff30affb,0xff40b6fb,0xff52bdfb,0xff3fb5fb,0xff2eaefb,0xff50bcfb,0xff50bcfb,0xff2dabfb,
+ 0xff2dabfb,0xff3db4fb,0xff3db4fb,0xff2babfb,0xff4eb9fb,0xff4ebafb,0xff2aaafb,0xff3bb1fb,0xff29a8fb,0xff29a9fb,0xff39b0fb,0xff27a8fb,0xff27a8fb,0xff4bb7fb,
+ 0xff27a7fb,0xff27a6fb,0xff26a6fb,0xff26a6fb,0xff25a6fb,0xff24a5fb,0xff24a4fb,0xff48b5fb,0xff23a4fb,0xff23a4fb,0xff34acfc,0xff23a3fc,0xff22a3fc,0xff32abfc,
+ 0xff32abfc,0xff45b3fc,0xff32abfc,0xff20a2fc,0xff31aafc,0xff20a1fc,0xff30aafc,0xff31aafd,0xff41b2fd,0xff30aafd,0xff30a9fd,0xff2fa9fd,0xff1c9ffe,0xff1ca0fe,
+ 0xff2ea9ff,0xff41b1ff,0xff2ea9ff,0xff1ca1ff,0xff41b2ff,0xff42b3ff,0xff2faaff,0xff1ea1ff,0xff31abff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff50caff,0xff51caff,
+ 0xff51ccff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54cdff,0xff54ccff,0xff54cdff,0xff55cdff,0xff56ccfe,0xff57ceff,0xff58cfff,0xff5bcffe,0xff7edaff,0xff82dafe,
+ 0xff65d2fe,0xff6dd5fe,0xff75d7fe,0xff7dd9fe,0xff92dffd,0xffa7e5fd,0xffa7e5fe,0xffa7e3fc,0xffa9ddf2,0xff9fc0cc,0xffae663a,0xff9d7053,0xff7d9ba8,0xff87aab9,
+ 0xff92bed0,0xff9acfe6,0xff9ddaf5,0xff96ddfb,0xff8edafc,0xff85d8fb,0xff7cd5fc,0xff74d3fd,0xff6cd0fc,0xff65cdfb,0xff5fcbfb,0xff5bcafc,0xff56c9fc,0xff53c8fc,
+ 0xff4fc6fc,0xff4ec6fc,0xff4cc5fd,0xff4ac4fc,0xff4ac5fd,0xff48c3fd,0xff47c4fd,0xff47c3fd,0xff6ccefd,0xff6bcefd,0xff45c2fd,0xff44c2fd,0xff44c2fd,0xff44c1fd,
+ 0xff43c1fd,0xff43c1fd,0xff42c0fd,0xff42c0fd,0xff41c0fd,0xff40c0fd,0xff40bffd,0xff40bffd,0xff40befd,0xff40befd,0xff3fbefd,0xff3fbefd,0xff3ebefd,0xff3dbdfd,
+ 0xff3dbdfd,0xff3dbdfd,0xff3cbdfd,0xff3cbdfd,0xff3bbcfd,0xff3bbcfd,0xff3abbfd,0xff3abbfd,0xff39bbfd,0xff38bbfd,0xff38bafd,0xff38bafd,0xff37b9fd,0xff36b9fd,
+ 0xff35b9fd,0xff5dc6fd,0xff5dc5fd,0xff34b8fd,0xff34b8fd,0xff33b7fd,0xff33b7fd,0xff32b7fd,0xff32b7fd,0xff32b6fd,0xff31b6fd,0xff45bdfd,0xff2fb5fd,0xff2fb5fd,
+ 0xff2eb5fd,0xff2eb4fd,0xff2eb4fd,0xff2db3fd,0xff2db3fd,0xff2cb3fd,0xff2bb3fd,0xff2bb2fd,0xff2ab2fd,0xff2ab1fd,0xff2ab1fd,0xff29b1fd,0xff29b0fe,0xff28b0fe,
+ 0xff3eb8fe,0xff27b0fe,0xff27b1ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,
+ 0xff40bdff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42bfff,0xff42c0ff,0xff43c1ff,0xff43c0ff,0xff43c1ff,0xff45c2ff,0xff44c1ff,0xff45c2ff,
+ 0xff47c3ff,0xff48c3ff,0xff4bc4ff,0xff4dc4fe,0xff51c5fe,0xff56c9fe,0xff5dc9fe,0xff65cdfe,0xff6ecffe,0xff78d2fe,0xff82d5fd,0xff8dd9fe,0xff95dafc,0xff98d7f6,
+ 0xff90c6e1,0xff83b4cc,0xff84b6cf,0xff8cc5e2,0xff90d2f4,0xff8dd6fb,0xff85d4fd,0xff7cd2fe,0xff73cefe,0xff6acbfe,0xff61c8fe,0xff5bc5fe,0xff53c2fd,0xff4ec0fd,
+ 0xff49bffd,0xff46bdfd,0xff42bcfd,0xff3ebafd,0xff3eb9fd,0xff3cbafe,0xff3cbafe,0xff3ab8fd,0xff3ab8fe,0xff3ab8fe,0xff3ab8fe,0xff39b7fe,0xff38b6fe,0xff38b6fe,
+ 0xff37b6fe,0xff36b6fe,0xff36b4fe,0xff36b4fe,0xff36b4fe,0xff35b4fe,0xff34b4fe,0xff34b3fe,0xff33b3fe,0xff33b3fe,0xff33b2fe,0xff32b1fe,0xff32b1fe,0xff32b1fe,
+ 0xff31b1fe,0xff31b1fe,0xff30b1fe,0xff2faffe,0xff2faffe,0xff2faffe,0xff2eaffe,0xff2eaffe,0xff2eadfe,0xff2eadfe,0xff2dacfe,0xff2cacfe,0xff2cacfe,0xff2babfe,
+ 0xff2babfe,0xff2babfe,0xff2aaafe,0xff2aabfe,0xff29aafe,0xff28aafe,0xff28a9fe,0xff28a9fe,0xff28a9fe,0xff27a8fe,0xff26a8fe,0xff26a8fe,0xff26a7fe,0xff26a7fe,
+ 0xff24a6fe,0xff24a7fe,0xff24a6fe,0xff24a6fe,0xff24a6fe,0xff24a4fe,0xff23a4fe,0xff22a4fe,0xff21a3fe,0xff21a3fe,0xff21a3fe,0xff20a2fe,0xff20a2fe,0xff20a1fe,
+ 0xff1fa1fe,0xff1fa1fe,0xff1fa0fe,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,
+ 0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa3ff,0xff4fcaff,0xff84daff,0xff51cbff,0xff86daff,0xff52ccff,0xff52ccff,0xff52ccff,0xff53ccff,0xff76d6ff,0xff54ccff,
+ 0xff54cdff,0xff55cdff,0xff56ceff,0xff78d8ff,0xff56cfff,0xff58ceff,0xff59cffe,0xff5bd0ff,0xff5ed1ff,0xff61d2ff,0xff65d2fe,0xff6bd4fe,0xff70d5fe,0xff78d8fe,
+ 0xff7ed9fd,0xff87dbfe,0xff8eddfe,0xff93defd,0xff93dbf8,0xff90d5f2,0xffaedff3,0xff90dafa,0xff8cdcfd,0xff92ddfd,0xff99e0fe,0xff77d5fd,0xff70d3fd,0xff69d0fd,
+ 0xff63cffe,0xff5fcefe,0xff5accfe,0xff79d5fe,0xff54c9fe,0xff51c9fe,0xff4fc8fe,0xff4dc8fe,0xff4cc7fe,0xff4bc6fe,0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,
+ 0xff48c5ff,0xff48c5ff,0xff47c4ff,0xff47c5ff,0xff47c4ff,0xff46c4ff,0xff45c3ff,0xff44c3ff,0xff45c3ff,0xff43c3ff,0xff43c2ff,0xff43c1ff,0xff42c2ff,0xff41c1ff,
+ 0xff42c1ff,0xff40c0ff,0xff40c1ff,0xff3fc0ff,0xff3fc0ff,0xff3ec0ff,0xff3ebfff,0xff3ebeff,0xff3dbfff,0xff3cbfff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3abcff,
+ 0xff3abdff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bcff,0xff37bbff,0xff37baff,0xff36bbff,0xff36baff,0xff35baff,0xff34baff,0xff34b9ff,0xff34b9ff,0xff34b9ff,
+ 0xff33b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff31b6ff,0xff30b6ff,0xff30b6ff,0xff30b6ff,0xff2eb6ff,0xff2eb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2cb4ff,
+ 0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,
+ 0xff25b0ff,0xff26b0ff,0xff27b0ff,0xff27b0ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbcff,0xff71d0ff,0xff60ccff,0xff72d0ff,0xff41c0ff,0xff62ccff,
+ 0xff63ccff,0xff42c0ff,0xff63ccff,0xff44c0ff,0xff54c7ff,0xff45c2ff,0xff55c8ff,0xff55c8ff,0xff45c2ff,0xff56c9ff,0xff68cfff,0xff58cbff,0xff4bc5fe,0xff6cd0fe,
+ 0xff5fccff,0xff63ccfe,0xff59c8fe,0xff5ec9fe,0xff65ccfe,0xff6bcdfd,0xff8ad8fd,0xff8dd9fd,0xff79d1fd,0xff7ad2fe,0xff8fdafd,0xff75d0fe,0xff70cffe,0xff6acdfe,
+ 0xff7ed4fe,0xff5dc5fd,0xff57c4fe,0xff52c2fe,0xff4cc0fe,0xff48bffe,0xff55c3fe,0xff52c3fe,0xff40bbfe,0xff4ec2fe,0xff5ec7fe,0xff4dc1ff,0xff3bbaff,0xff3bbaff,
+ 0xff3abaff,0xff3abaff,0xff49c0ff,0xff5bc6ff,0xff49c0ff,0xff49bfff,0xff38b8ff,0xff37b8ff,0xff48bdff,0xff47bdff,0xff58c5ff,0xff47bcff,0xff35b5ff,0xff35b5ff,
+ 0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29abff,0xff29abff,0xff29aaff,
+ 0xff28abff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff24a5ff,
+ 0xff23a4ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea2ff,0xff1ea1ff,0xff1da0ff,
+ 0xff1da0ff,0xff1ca1ff,0xff1c9fff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,
+ 0xff74d5ff,0xff74d6ff,0xff62d0ff,0xff52cbff,0xff52cbff,0xff76d6ff,0xff76d7ff,0xff76d6ff,0xff54cdff,0xff55ceff,0xff55ceff,0xff79d8ff,0xff57cfff,0xff8addff,
+ 0xff58cfff,0xff7bd9ff,0xff7cd9ff,0xff5cd1ff,0xff7fdaff,0xff5ed0fe,0xff62d2ff,0xff65d2fe,0xff69d3fd,0xff7bd7fd,0xff71d5fe,0xff74d4fd,0xff90ddfd,0xff75d5fd,
+ 0xff90ddfd,0xff72d4fe,0xff6fd4fe,0xff6ad2fe,0xff84dafe,0xff61cffe,0xff5dccfd,0xff59ccfe,0xff56cbfe,0xff54cbfe,0xff51c9fe,0xff74d5ff,0xff4ec8fe,0xff82d9ff,
+ 0xff4cc8ff,0xff6fd3ff,0xff4cc8ff,0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff6ed1ff,0xff49c6ff,0xff5accff,0xff6dd1ff,0xff48c5ff,0xff47c4ff,0xff6cd0ff,0xff6bd0ff,
+ 0xff45c4ff,0xff58c9ff,0xff45c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3fbfff,
+ 0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bcff,0xff38bcff,0xff38bbff,
+ 0xff37baff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff33b7ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,
+ 0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2db5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,
+ 0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b0ff,0xff26b1ff,0xff26b1ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b1ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,
+ 0xff28b1ff,0xff29b2ff,0xff40bdff,0xff60cbff,0xff41bfff,0xff61ccff,0xff51c5ff,0xff62ccff,0xff63ccff,0xff63ccff,0xff74d3ff,0xff63cdff,0xff44c1ff,0xff44c1ff,
+ 0xff45c2ff,0xff65ceff,0xff46c2ff,0xff66ceff,0xff47c3ff,0xff67cfff,0xff59cbff,0xff69cfff,0xff69cffe,0xff4bc4ff,0xff4dc4fe,0xff4fc5fe,0xff52c5fe,0xff63ccfe,
+ 0xff75d2fe,0xff76d3fe,0xff77d3fe,0xff5bc8fe,0xff76d2fe,0xff58c7fe,0xff54c5fe,0xff51c4fe,0xff6ccffe,0xff4bc2fe,0xff48bffe,0xff45befe,0xff43befe,0xff41bcfe,
+ 0xff40beff,0xff60c9ff,0xff3dbbfe,0xff5ec8ff,0xff3cbbff,0xff5dc8ff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff5bc6ff,0xff49c0ff,0xff5bc6ff,
+ 0xff38b7ff,0xff49bfff,0xff59c5ff,0xff37b7ff,0xff59c3ff,0xff47bcff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,
+ 0xff33b2ff,0xff32b2ff,0xff31b1ff,0xff31b2ff,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2eb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2dadff,
+ 0xff2cadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2aabff,0xff2aabff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,
+ 0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff21a3ff,
+ 0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea2ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,
+ 0xff1da0ff,0xff1da0ff,0xff1ea1ff,0xff1fa2ff,0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff73d6ff,0xff51caff,0xff74d6ff,0xff63d1ff,0xff75d6ff,0xff76d6ff,0xff76d6ff,
+ 0xff76d7ff,0xff54cdff,0xff77d7ff,0xff56cdff,0xff78d8ff,0xff89ddff,0xff68d4ff,0xff79d9ff,0xff58cfff,0xff7ad9ff,0xff6ad4ff,0xff7cd9ff,0xff7bd8fe,0xff5ad0ff,
+ 0xff5acffe,0xff5bcffe,0xff5dd0fe,0xff6ed5fe,0xff7fd9fe,0xff7fd8fd,0xff81d9fe,0xff70d5fe,0xff8edcfd,0xff7fd8fe,0xff5dcefe,0xff7bd7fe,0xff8adafe,0xff67d0fe,
+ 0xff54cafe,0xff52cafe,0xff50caff,0xff50caff,0xff72d3fe,0xff83d9ff,0xff60ceff,0xff71d3ff,0xff4cc8ff,0xff70d3ff,0xff4cc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,
+ 0xff6fd2ff,0xff6ed1ff,0xff6dd1ff,0xff47c5ff,0xff6dd1ff,0xff59cbff,0xff6cd0ff,0xff6bd0ff,0xff6ad0ff,0xff6ad0ff,0xff45c3ff,0xff44c2ff,0xff44c2ff,0xff42c2ff,
+ 0xff42c2ff,0xff42c2ff,0xff42c1ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,
+ 0xff3bbdff,0xff3abdff,0xff3abdff,0xff39bdff,0xff39bcff,0xff38bcff,0xff38bcff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35b9ff,0xff35baff,0xff34b9ff,
+ 0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,
+ 0xff2cb4ff,0xff2cb3ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff2ab2ff,0xff29b2ff,0xff29b1ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,
+ 0xff26b0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff27b2ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,
+ 0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c1ff,0xff46c2ff,0xff46c2ff,0xff46c3ff,0xff46c3ff,0xff47c5ff,
+ 0xff58c9ff,0xff68cfff,0xff67cefe,0xff59c9ff,0xff48c3ff,0xff48c3fe,0xff49c2fe,0xff49c3fe,0xff4bc3fe,0xff4ac2fe,0xff4bc3fe,0xff4ac3fe,0xff48c2fd,0xff48c0fd,
+ 0xff47c0fe,0xff45c1fe,0xff44c0fe,0xff43bffe,0xff42beff,0xff41bdff,0xff40bcfe,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbcff,0xff3cbbff,0xff3cbbff,
+ 0xff3bbaff,0xff3bbbff,0xff3abaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff49bfff,0xff5bc6ff,0xff59c5ff,0xff48bdff,0xff37b5ff,0xff36b7ff,0xff36b5ff,
+ 0xff36b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b2ff,0xff33b3ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff2fb0ff,
+ 0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2bacff,0xff2badff,0xff2aacff,0xff2aacff,0xff2aacff,
+ 0xff29abff,0xff29aaff,0xff28abff,0xff28aaff,0xff28a9ff,0xff27aaff,0xff27aaff,0xff26a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,
+ 0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff21a5ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,
+ 0xff1da1ff,0xff1ea1ff,0xff1da0ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,
+ 0xff4fc9ff,0xff50caff,0xff50cbff,0xff51caff,0xff51cbff,0xff53ccff,0xff53ccff,0xff53ccff,0xff54ccff,0xff54ccff,0xff55cdff,0xff56cdff,0xff56ceff,0xff56ceff,
+ 0xff56cfff,0xff57ceff,0xff58cfff,0xff58d0ff,0xff59d0ff,0xff59d0ff,0xff58d0ff,0xff58cfff,0xff58cefe,0xff58cfff,0xff58cfff,0xff57cefe,0xff58cefe,0xff57cdfe,
+ 0xff57cdfe,0xff57ccfe,0xff56cdfe,0xff55cdfe,0xff55ccfe,0xff54cbfe,0xff52cafe,0xff52cbff,0xff50cafe,0xff50caff,0xff4fcaff,0xff4fcaff,0xff4ecaff,0xff4ec9ff,
+ 0xff4dc9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c4ff,
+ 0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,0xff43c1ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,
+ 0xff3fc0ff,0xff3fbfff,0xff3fbfff,0xff3ebfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff3abcff,0xff39bcff,0xff38bcff,
+ 0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff31b7ff,
+ 0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff30b6ff,0xff2eb6ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2cb4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,
+ 0xff2ab2ff,0xff29b3ff,0xff29b1ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff26b0ff,0xff26b0ff,0xff26b0ff,0xff27b1ff,
+ 0xff28b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff53c7ff,0xff43c1ff,
+ 0xff43c1ff,0xff45c1ff,0xff44c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff76d4ff,0xff67cfff,0xff48c3ff,0xff68cfff,0xff68cfff,0xff47c3ff,0xff56c9ff,0xff66cfff,
+ 0xff66cdfe,0xff45c1fe,0xff46c1ff,0xff44c0fe,0xff43c0fe,0xff43c0fe,0xff43bffe,0xff43c0ff,0xff52c5fe,0xff63cbfe,0xff61ccff,0xff50c5ff,0xff40bdff,0xff40bdff,
+ 0xff40bdff,0xff3fbcff,0xff4ec3ff,0xff3ebcff,0xff3dbbff,0xff3dbbff,0xff3cbbff,0xff3bbbff,0xff3bbbff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff49bfff,
+ 0xff39b8ff,0xff39b8ff,0xff39b7ff,0xff38b7ff,0xff37b7ff,0xff37b7ff,0xff37b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff34b5ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,
+ 0xff43baff,0xff32b3ff,0xff32b2ff,0xff42b9ff,0xff31b1ff,0xff31b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,
+ 0xff2daeff,0xff2cadff,0xff3db5ff,0xff2cacff,0xff2aacff,0xff2bacff,0xff2aabff,0xff2aacff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27aaff,
+ 0xff26a9ff,0xff27a9ff,0xff26a8ff,0xff26a8ff,0xff25a8ff,0xff24a7ff,0xff49b8ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff46b7ff,0xff33adff,0xff21a4ff,
+ 0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,
+ 0xff41b2ff,0xff1ca0ff,0xff1da0ff,0xff1da0ff,0xff30aaff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff52cbff,0xff52cbff,
+ 0xff52ccff,0xff53ccff,0xff76d6ff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56cdff,0xff56ceff,0xff56ceff,0xff57cfff,0xff7ad9ff,0xff58cfff,0xff7ad9ff,0xff5ad0ff,
+ 0xff58cfff,0xff7ad9ff,0xff58cfff,0xff57cfff,0xff78d8ff,0xff56ceff,0xff56ceff,0xff66d2ff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53cdff,0xff76d6ff,0xff52ccff,
+ 0xff51ccff,0xff51cbff,0xff51cbff,0xff50caff,0xff50caff,0xff4fcaff,0xff72d5ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff4cc8ff,0xff4bc7ff,
+ 0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff5bcbff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff46c3ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,
+ 0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,0xff68cdff,0xff40c1ff,0xff41c0ff,0xff53c6ff,0xff3fc0ff,0xff3ebfff,0xff3fbfff,0xff3dbfff,0xff3dbeff,0xff3dbeff,
+ 0xff3cbeff,0xff3bbeff,0xff3bbeff,0xff3abdff,0xff3abcff,0xff39bcff,0xff61caff,0xff39bcff,0xff37bcff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35baff,
+ 0xff35baff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff32b7ff,0xff31b6ff,0xff31b6ff,0xff30b7ff,0xff44bdff,0xff2fb6ff,0xff2eb5ff,
+ 0xff57c4ff,0xff2db4ff,0xff57c3ff,0xff2cb4ff,0xff2bb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff29b3ff,0xff29b2ff,0xff29b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,
+ 0xff26b0ff,0xff26b0ff,0xff26afff,0xff25b0ff,0xff51c0ff,0xff26b0ff,0xff27b1ff,0xff27b0ff,0xff52c1ff,0xff29b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff60ccff,
+ 0xff61ccff,0xff61cbff,0xff50c5ff,0xff62ccff,0xff63ccff,0xff52c6ff,0xff63cdff,0xff53c7ff,0xff54c7ff,0xff54c7ff,0xff65cdff,0xff65ceff,0xff56c8ff,0xff46c3ff,
+ 0xff66cfff,0xff47c3ff,0xff47c3ff,0xff48c5ff,0xff58c9ff,0xff58cbff,0xff46c3ff,0xff46c3ff,0xff65ceff,0xff45c2ff,0xff55c7ff,0xff75d3ff,0xff44c1ff,0xff43c1ff,
+ 0xff42c1ff,0xff42c0ff,0xff63ccff,0xff62ccff,0xff50c6ff,0xff41bfff,0xff71d0ff,0xff60cbff,0xff60cbff,0xff4fc2ff,0xff71d0ff,0xff5fc9ff,0xff3dbcff,0xff5ec8ff,
+ 0xff5ec8ff,0xff5dc8ff,0xff5dc7ff,0xff5cc7ff,0xff5cc7ff,0xff4ac1ff,0xff3abaff,0xff6dccff,0xff39b8ff,0xff5bc6ff,0xff5ac6ff,0xff5ac5ff,0xff48bdff,0xff59c5ff,
+ 0xff58c3ff,0xff58c3ff,0xff36b5ff,0xff34b5ff,0xff35b5ff,0xff34b4ff,0xff56c1ff,0xff56c1ff,0xff67c8ff,0xff33b2ff,0xff42baff,0xff54c1ff,0xff31b2ff,0xff65c8ff,
+ 0xff53c0ff,0xff52c0ff,0xff40b8ff,0xff51bfff,0xff51bdff,0xff3fb7ff,0xff51bdff,0xff50bdff,0xff50bdff,0xff3eb5ff,0xff61c5ff,0xff4ebcff,0xff2badff,0xff4ebcff,
+ 0xff4dbbff,0xff4dbbff,0xff4cbbff,0xff4cbbff,0xff4cbaff,0xff39b2ff,0xff4abaff,0xff27a9ff,0xff4ab9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,
+ 0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff47b5ff,0xff22a5ff,0xff5abfff,0xff46b5ff,0xff46b4ff,0xff32acff,0xff44b4ff,0xff44b3ff,0xff31abff,0xff43b3ff,
+ 0xff43b3ff,0xff42b3ff,0xff2faaff,0xff41b3ff,0xff41b2ff,0xff2ea9ff,0xff1c9fff,0xff41b2ff,0xff1ba0ff,0xff2ea9ff,0xff41b2ff,0xff41b3ff,0xff42b3ff,0xff42b3ff,
+ 0xff43b3ff,0xff43b3ff,0xff50caff,0xff73d5ff,0xff74d5ff,0xff74d6ff,0xff51cbff,0xff75d6ff,0xff75d6ff,0xff76d7ff,0xff87dbff,0xff76d7ff,0xff55cdff,0xff77d7ff,
+ 0xff77d7ff,0xff78d8ff,0xff78d8ff,0xff57cfff,0xff7ad9ff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff7bd9ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff79d8ff,0xff56ceff,
+ 0xff56ceff,0xff55ceff,0xff55cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff75d6ff,0xff52cbff,0xff51ccff,0xff51cbff,0xff73d6ff,0xff50caff,0xff72d5ff,0xff4fc9ff,
+ 0xff72d5ff,0xff4ec9ff,0xff4dc8ff,0xff82d9ff,0xff70d3ff,0xff81d8ff,0xff70d3ff,0xff4bc7ff,0xff4ac7ff,0xff5ccdff,0xff49c6ff,0xff6ed1ff,0xff48c6ff,0xff6dd1ff,
+ 0xff47c5ff,0xff46c4ff,0xff6bd1ff,0xff6bd0ff,0xff45c3ff,0xff6acfff,0xff45c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,0xff69cdff,0xff41c1ff,0xff67cdff,0xff41c0ff,
+ 0xff40c0ff,0xff66cdff,0xff3fc0ff,0xff65cdff,0xff3fbfff,0xff51c5ff,0xff64ccff,0xff63cbff,0xff63cbff,0xff63cbff,0xff63caff,0xff3abdff,0xff3abcff,0xff39bcff,
+ 0xff61caff,0xff38bbff,0xff38bbff,0xff5fc9ff,0xff36bbff,0xff5ec8ff,0xff5ec8ff,0xff36baff,0xff35b9ff,0xff48c0ff,0xff5dc7ff,0xff33b8ff,0xff5bc6ff,0xff32b8ff,
+ 0xff32b7ff,0xff31b7ff,0xff31b6ff,0xff30b7ff,0xff30b6ff,0xff2fb5ff,0xff2eb6ff,0xff43bcff,0xff43bcff,0xff2db5ff,0xff57c4ff,0xff2cb4ff,0xff57c2ff,0xff56c3ff,
+ 0xff2bb3ff,0xff2ab3ff,0xff55c1ff,0xff55c1ff,0xff54c1ff,0xff53c1ff,0xff53c1ff,0xff52c1ff,0xff52c1ff,0xff52c0ff,0xff25b0ff,0xff51bfff,0xff25b0ff,0xff52c1ff,
+ 0xff27b0ff,0xff27b1ff,0xff52c1ff,0xff3fbaff,0xff54c1ff,0xff69c9ff,0xff3fbdff,0xff60cbff,0xff61ccff,0xff61ccff,0xff61ccff,0xff41c0ff,0xff42c0ff,0xff63ccff,
+ 0xff63ccff,0xff54c6ff,0xff54c7ff,0xff64cdff,0xff45c2ff,0xff45c3ff,0xff55c9ff,0xff46c3ff,0xff66cfff,0xff48c5ff,0xff48c3ff,0xff68cfff,0xff47c3ff,0xff47c5ff,
+ 0xff47c3ff,0xff46c3ff,0xff66ceff,0xff45c2ff,0xff55c8ff,0xff76d3ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff63ccff,0xff41c0ff,0xff41bfff,0xff41bfff,
+ 0xff60ccff,0xff40bfff,0xff60c9ff,0xff3fbcff,0xff5fc9ff,0xff3ebcff,0xff4ec1ff,0xff5ec9ff,0xff3dbbff,0xff4cc1ff,0xff5dc7ff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,
+ 0xff3ab9ff,0xff5bc6ff,0xff39b9ff,0xff5ac6ff,0xff38b7ff,0xff38b8ff,0xff59c6ff,0xff59c5ff,0xff58c3ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,
+ 0xff56c2ff,0xff33b3ff,0xff67c8ff,0xff33b3ff,0xff32b3ff,0xff54c1ff,0xff32b2ff,0xff54c0ff,0xff30b1ff,0xff30b1ff,0xff52bfff,0xff2fb0ff,0xff2eb0ff,0xff40b7ff,
+ 0xff51bdff,0xff2eaeff,0xff3eb5ff,0xff2dadff,0xff4fbdff,0xff2badff,0xff3cb4ff,0xff4dbcff,0xff2aacff,0xff4cbbff,0xff4cbbff,0xff28abff,0xff28aaff,0xff28aaff,
+ 0xff4bbaff,0xff4bb9ff,0xff5cc1ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff47b7ff,0xff23a5ff,0xff23a5ff,
+ 0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff46b4ff,0xff20a3ff,0xff20a3ff,0xff44b3ff,0xff43b3ff,0xff43b3ff,0xff42b3ff,0xff42b3ff,0xff1da1ff,0xff1da0ff,0xff2ea9ff,
+ 0xff2ea9ff,0xff2ea8ff,0xff1b9fff,0xff41b2ff,0xff1ca0ff,0xff2faaff,0xff41b3ff,0xff42b3ff,0xff1fa2ff,0xff43b3ff,0xff50caff,0xff62cfff,0xff51cbff,0xff63d0ff,
+ 0xff52cbff,0xff75d6ff,0xff76d6ff,0xff64d1ff,0xff65d1ff,0xff54cdff,0xff66d2ff,0xff55ceff,0xff77d8ff,0xff78d8ff,0xff57ceff,0xff57ceff,0xff7ad9ff,0xff58cfff,
+ 0xff6ad5ff,0xff7bd9ff,0xff7bd9ff,0xff69d5ff,0xff58cfff,0xff57ceff,0xff79d8ff,0xff56ceff,0xff56ceff,0xff66d2ff,0xff55cdff,0xff54ccff,0xff54ccff,0xff53ccff,
+ 0xff64d1ff,0xff75d6ff,0xff75d6ff,0xff62d0ff,0xff62cfff,0xff50cbff,0xff61cfff,0xff4fc9ff,0xff4ec9ff,0xff72d4ff,0xff4dc9ff,0xff5fcdff,0xff70d3ff,0xff5ecdff,
+ 0xff5dcdff,0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff5bccff,0xff6ed1ff,0xff6ed1ff,0xff5acbff,0xff48c5ff,0xff47c4ff,0xff59cbff,0xff6bcfff,0xff6acfff,0xff6acfff,
+ 0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,0xff55c7ff,0xff67cdff,0xff54c7ff,0xff40c0ff,0xff66cdff,0xff66cdff,0xff52c5ff,0xff52c5ff,0xff3fbfff,0xff3ebfff,
+ 0xff3dbeff,0xff64cbff,0xff63cbff,0xff3bbeff,0xff4fc4ff,0xff63caff,0xff4ec3ff,0xff39bdff,0xff39bbff,0xff60c9ff,0xff38bbff,0xff4bc2ff,0xff5fc9ff,0xff4ac2ff,
+ 0xff4ac1ff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff48c0ff,0xff34b9ff,0xff5cc7ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff30b6ff,
+ 0xff44bdff,0xff43bcff,0xff2eb5ff,0xff2db5ff,0xff42bcff,0xff2cb4ff,0xff41bcff,0xff2bb3ff,0xff56c2ff,0xff55c2ff,0xff29b2ff,0xff3fbaff,0xff28b2ff,0xff3eb9ff,
+ 0xff27b1ff,0xff53c0ff,0xff52c0ff,0xff26b0ff,0xff52c0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff52c0ff,0xff3db9ff,0xff3db9ff,0xff3ebaff,0xff54c1ff,0xff54c1ff,
+ 0xff3fbcff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff43c0ff,0xff42c0ff,0xff43c0ff,0xff44c1ff,0xff45c1ff,0xff44c2ff,0xff45c2ff,
+ 0xff46c3ff,0xff46c3ff,0xff67cfff,0xff67cfff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff56c9ff,0xff66ceff,0xff56c9ff,0xff45c2ff,0xff45c2ff,0xff44c1ff,
+ 0xff44c1ff,0xff43c0ff,0xff43c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bcff,0xff3fbdff,0xff3ebcff,0xff3ebcff,
+ 0xff3ebbff,0xff3dbcff,0xff3cbbff,0xff3cbaff,0xff3bbbff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff3ab9ff,0xff39b9ff,0xff38b8ff,0xff38b7ff,
+ 0xff37b7ff,0xff48bcff,0xff58c3ff,0xff47bcff,0xff35b5ff,0xff35b4ff,0xff35b5ff,0xff33b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff32b2ff,
+ 0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2eadff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2cadff,
+ 0xff2badff,0xff2aacff,0xff2aacff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff39b1ff,0xff4bb9ff,0xff38b1ff,0xff26a8ff,0xff26a9ff,0xff26a8ff,
+ 0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff35adff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea2ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,0xff1ca0ff,0xff2ea9ff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,
+ 0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff20a2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff51cbff,0xff52ccff,0xff53ccff,0xff53cdff,0xff53cdff,0xff54ccff,
+ 0xff54cdff,0xff55ceff,0xff56cdff,0xff56ceff,0xff57cfff,0xff57cfff,0xff7ad9ff,0xff7bd9ff,0xff59cfff,0xff5ad0ff,0xff58d0ff,0xff59d0ff,0xff69d4ff,0xff79d9ff,
+ 0xff68d3ff,0xff56ceff,0xff56ceff,0xff55ceff,0xff54cdff,0xff55cdff,0xff54cdff,0xff53ccff,0xff52cbff,0xff52cbff,0xff51cbff,0xff51cbff,0xff50cbff,0xff50caff,
+ 0xff4fc9ff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff49c6ff,0xff48c5ff,
+ 0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,
+ 0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,
+ 0xff3abdff,0xff3abcff,0xff39bcff,0xff39bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff36b9ff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff34b8ff,
+ 0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff30b7ff,0xff2fb5ff,0xff2fb6ff,0xff2fb5ff,0xff2db5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,
+ 0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff3ebaff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff26b1ff,0xff25b0ff,0xff25b0ff,
+ 0xff25afff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff3ebaff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,
+ 0xff41c0ff,0xff42c0ff,0xff63ccff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c2ff,0xff66cfff,0xff48c3ff,0xff57cbff,0xff68cfff,
+ 0xff68cfff,0xff57c9ff,0xff47c3ff,0xff46c3ff,0xff66cfff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,0xff63ccff,0xff41c0ff,
+ 0xff41bfff,0xff61ccff,0xff40bfff,0xff40bdff,0xff3fbcff,0xff3fbdff,0xff5fc9ff,0xff3ebcff,0xff3dbcff,0xff5ec8ff,0xff3cbbff,0xff3cbbff,0xff3bbaff,0xff3abaff,
+ 0xff5cc7ff,0xff3abaff,0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff38b7ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b7ff,0xff35b5ff,0xff58c2ff,
+ 0xff34b4ff,0xff33b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,0xff53c0ff,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2fb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2dadff,0xff2cacff,0xff2cadff,0xff4ebcff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff28abff,
+ 0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff24a8ff,0xff24a8ff,0xff49b8ff,0xff48b8ff,0xff23a5ff,0xff23a7ff,
+ 0xff23a5ff,0xff23a4ff,0xff22a5ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff31abff,0xff30aaff,0xff1da1ff,0xff1da1ff,
+ 0xff1ca1ff,0xff1ca0ff,0xff1ca0ff,0xff55bbff,0xff1b9fff,0xff1ca0ff,0xff2ea9ff,0xff41b2ff,0xff1da1ff,0xff1ea1ff,0xff42b3ff,0xff1fa2ff,0xff50caff,0xff62cfff,
+ 0xff62d0ff,0xff62d0ff,0xff52cbff,0xff75d6ff,0xff75d6ff,0xff53ccff,0xff76d7ff,0xff54cdff,0xff66d2ff,0xff56cdff,0xff78d8ff,0xff78d8ff,0xff57ceff,0xff57ceff,
+ 0xff7ad9ff,0xff59cfff,0xff6ad5ff,0xff5ad0ff,0xff59d0ff,0xff7ad9ff,0xff58cfff,0xff58ceff,0xff79d8ff,0xff56ceff,0xff67d3ff,0xff88dcff,0xff55cdff,0xff54cdff,
+ 0xff54ccff,0xff53ccff,0xff76d6ff,0xff75d6ff,0xff52cbff,0xff74d6ff,0xff62d0ff,0xff73d5ff,0xff61cfff,0xff61ceff,0xff83d9ff,0xff72d4ff,0xff4dc8ff,0xff71d3ff,
+ 0xff71d3ff,0xff5ecdff,0xff4cc7ff,0xff5dcdff,0xff5dcdff,0xff49c6ff,0xff5bccff,0xff6ed1ff,0xff5accff,0xff47c5ff,0xff6cd0ff,0xff5acaff,0xff5acaff,0xff46c4ff,
+ 0xff45c4ff,0xff45c3ff,0xff58c8ff,0xff7cd5ff,0xff69ceff,0xff43c2ff,0xff55c7ff,0xff67cdff,0xff55c7ff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff66ccff,
+ 0xff65ccff,0xff50c5ff,0xff3dbfff,0xff63cbff,0xff63cbff,0xff3cbdff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff39bcff,0xff61caff,0xff4cc3ff,0xff60c9ff,0xff4cc2ff,
+ 0xff5fc9ff,0xff4ac1ff,0xff4ac1ff,0xff4ac0ff,0xff5dc8ff,0xff34b9ff,0xff48c0ff,0xff5dc6ff,0xff47bfff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,
+ 0xff5ac5ff,0xff30b6ff,0xff2fb6ff,0xff58c4ff,0xff58c4ff,0xff2db4ff,0xff42bcff,0xff57c3ff,0xff41bbff,0xff2bb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff29b2ff,
+ 0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff52c1ff,0xff52c1ff,0xff26b0ff,0xff26b0ff,0xff51c0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff52c0ff,0xff28b1ff,0xff28b1ff,
+ 0xff3fb9ff,0xff2ab3ff,0xff40bdff,0xff60cbff,0xff60cbff,0xff61ccff,0xff51c6ff,0xff41c0ff,0xff42c0ff,0xff63cdff,0xff63ccff,0xff63cdff,0xff44c1ff,0xff64cdff,
+ 0xff45c2ff,0xff45c2ff,0xff66ceff,0xff46c3ff,0xff67cfff,0xff48c3ff,0xff48c5ff,0xff48c5ff,0xff68cfff,0xff47c5ff,0xff47c3ff,0xff46c2ff,0xff66cfff,0xff45c2ff,
+ 0xff44c2ff,0xff54c7ff,0xff44c1ff,0xff43c0ff,0xff43c0ff,0xff42c0ff,0xff63ccff,0xff51c6ff,0xff50c5ff,0xff61ccff,0xff61cbff,0xff40bdff,0xff60cbff,0xff3fbdff,
+ 0xff5fcbff,0xff3ebcff,0xff3dbbff,0xff6fcfff,0xff3cbbff,0xff5dc7ff,0xff3bbbff,0xff3bbaff,0xff5cc6ff,0xff3ab9ff,0xff6dcdff,0xff3ab9ff,0xff5bc6ff,0xff5bc6ff,
+ 0xff39b8ff,0xff5ac5ff,0xff38b7ff,0xff36b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff57c3ff,0xff34b4ff,0xff34b4ff,0xff56c1ff,0xff33b4ff,0xff55c1ff,0xff33b3ff,
+ 0xff33b2ff,0xff32b2ff,0xff31b2ff,0xff66c7ff,0xff30b1ff,0xff53c0ff,0xff52c0ff,0xff2fb0ff,0xff2eb0ff,0xff51bdff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff4fbdff,
+ 0xff2cadff,0xff3db5ff,0xff4ebdff,0xff4dbcff,0xff2aacff,0xff4dbbff,0xff4cbbff,0xff3ab3ff,0xff28aaff,0xff4bbaff,0xff4bb9ff,0xff28aaff,0xff4ab9ff,0xff26a9ff,
+ 0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff49b8ff,0xff5bc0ff,0xff35aeff,0xff47b7ff,0xff23a5ff,0xff23a5ff,0xff46b7ff,0xff5abfff,0xff21a4ff,0xff46b5ff,0xff20a3ff,
+ 0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea2ff,0xff30aaff,0xff1da0ff,0xff1ca0ff,0xff41b2ff,0xff1ba0ff,0xff41b1ff,0xff1ba0ff,0xff1ca0ff,
+ 0xff1ca1ff,0xff41b2ff,0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,0xff73d5ff,0xff74d6ff,0xff63d0ff,0xff75d6ff,0xff76d6ff,0xff76d7ff,
+ 0xff87dcff,0xff76d7ff,0xff55cdff,0xff77d8ff,0xff77d8ff,0xff78d8ff,0xff67d3ff,0xff57ceff,0xff79d9ff,0xff58d0ff,0xff59d0ff,0xff6ad5ff,0xff69d5ff,0xff58cfff,
+ 0xff58cfff,0xff58cfff,0xff79d9ff,0xff56ceff,0xff55ceff,0xff66d2ff,0xff55ceff,0xff54cdff,0xff54ccff,0xff53ccff,0xff76d6ff,0xff52ccff,0xff74d6ff,0xff74d6ff,
+ 0xff73d5ff,0xff50caff,0xff72d5ff,0xff4fc9ff,0xff72d4ff,0xff4ec8ff,0xff4ec8ff,0xff71d4ff,0xff4cc8ff,0xff6fd2ff,0xff4cc8ff,0xff4bc7ff,0xff6fd2ff,0xff4ac6ff,
+ 0xff6ed2ff,0xff49c6ff,0xff6dd1ff,0xff5acbff,0xff6cd1ff,0xff6cd0ff,0xff47c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff6acfff,0xff43c2ff,0xff43c2ff,
+ 0xff69ceff,0xff42c1ff,0xff67cdff,0xff40c1ff,0xff40c1ff,0xff3fc0ff,0xff3fc0ff,0xff66ccff,0xff3ebfff,0xff64ccff,0xff65cbff,0xff64cbff,0xff63cbff,0xff4fc4ff,
+ 0xff3bbdff,0xff3abdff,0xff3abdff,0xff62caff,0xff39bbff,0xff39bcff,0xff60caff,0xff60c9ff,0xff37baff,0xff5ec8ff,0xff5ec8ff,0xff36b9ff,0xff35b9ff,0xff5dc7ff,
+ 0xff71cdff,0xff5dc6ff,0xff5cc6ff,0xff32b7ff,0xff31b7ff,0xff32b7ff,0xff30b7ff,0xff30b7ff,0xff59c5ff,0xff2fb5ff,0xff59c5ff,0xff2eb5ff,0xff2eb5ff,0xff57c4ff,
+ 0xff57c3ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff29b3ff,0xff29b2ff,0xff29b1ff,0xff28b2ff,0xff3eb9ff,0xff52c0ff,0xff52c1ff,0xff52c0ff,
+ 0xff25b0ff,0xff51c0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff52c0ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff40bcff,0xff60cbff,0xff50c5ff,0xff61ccff,
+ 0xff51c5ff,0xff62ccff,0xff62ccff,0xff63ccff,0xff63ccff,0xff43c0ff,0xff64cdff,0xff54c7ff,0xff65ceff,0xff65ceff,0xff55c9ff,0xff46c3ff,0xff67cfff,0xff47c3ff,
+ 0xff58cbff,0xff78d5ff,0xff67cfff,0xff58c9ff,0xff47c3ff,0xff47c3ff,0xff66ceff,0xff45c2ff,0xff54c8ff,0xff75d3ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff42c1ff,
+ 0xff63ccff,0xff41bfff,0xff41c0ff,0xff61ccff,0xff61cbff,0xff60ccff,0xff60cbff,0xff3fbdff,0xff4fc2ff,0xff5fc9ff,0xff4dc2ff,0xff5ec8ff,0xff3dbbff,0xff5dc8ff,
+ 0xff3cbbff,0xff5cc7ff,0xff6dcdff,0xff4ac1ff,0xff5bc6ff,0xff39b8ff,0xff5bc6ff,0xff49bfff,0xff5bc6ff,0xff5ac5ff,0xff38b7ff,0xff37b7ff,0xff36b7ff,0xff36b5ff,
+ 0xff35b5ff,0xff46bcff,0xff57c2ff,0xff45baff,0xff57c2ff,0xff56c1ff,0xff55c1ff,0xff32b2ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff66c8ff,0xff53c0ff,0xff52c0ff,
+ 0xff40b8ff,0xff52bfff,0xff51bfff,0xff40b7ff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff3eb7ff,0xff4fbdff,0xff4fbdff,0xff4ebdff,0xff4ebcff,0xff4dbbff,0xff4cbbff,
+ 0xff4cbbff,0xff28abff,0xff28aaff,0xff4bbaff,0xff4bbaff,0xff4ab9ff,0xff49b9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,
+ 0xff35aeff,0xff47b7ff,0xff47b7ff,0xff33adff,0xff46b5ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff1fa2ff,0xff1ea2ff,0xff1ea2ff,
+ 0xff30abff,0xff41b3ff,0xff41b2ff,0xff41b2ff,0xff2ea9ff,0xff55baff,0xff41b2ff,0xff1ca0ff,0xff41b3ff,0xff56bbff,0xff2faaff,0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,
+ 0xff4fc9ff,0xff50caff,0xff50caff,0xff51cbff,0xff52ccff,0xff52cbff,0xff52cbff,0xff53ccff,0xff54ccff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff56ceff,
+ 0xff57ceff,0xff58cfff,0xff8addff,0xff7ad9ff,0xff59cfff,0xff5ad0ff,0xff59d0ff,0xff58cfff,0xff69d4ff,0xff79d9ff,0xff79d9ff,0xff57ceff,0xff56ceff,0xff56ceff,
+ 0xff55cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff53ccff,0xff53ccff,0xff52cbff,0xff51cbff,0xff51caff,0xff50caff,0xff50caff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,
+ 0xff4dc9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff48c6ff,0xff5acbff,0xff6cd1ff,0xff6cd0ff,
+ 0xff59caff,0xff46c4ff,0xff45c3ff,0xff44c3ff,0xff44c2ff,0xff44c3ff,0xff44c2ff,0xff43c1ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff41c0ff,0xff40c1ff,0xff40c0ff,
+ 0xff40bfff,0xff3fbfff,0xff3fbfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bbff,
+ 0xff38bcff,0xff37bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff34baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,
+ 0xff31b7ff,0xff30b7ff,0xff2fb6ff,0xff30b6ff,0xff2fb6ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2db5ff,0xff2cb4ff,0xff2bb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab2ff,
+ 0xff29b3ff,0xff2ab2ff,0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff27b0ff,0xff27b0ff,
+ 0xff27b1ff,0xff29b1ff,0xff29b2ff,0xff29b3ff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c1ff,0xff43c0ff,0xff43c0ff,
+ 0xff43c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c2ff,0xff47c3ff,0xff47c5ff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff46c3ff,0xff46c2ff,
+ 0xff46c2ff,0xff45c2ff,0xff45c2ff,0xff44c2ff,0xff43c1ff,0xff43c1ff,0xff43c0ff,0xff42c1ff,0xff42bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bfff,
+ 0xff40bcff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3dbcff,0xff3dbbff,0xff3cbbff,0xff3bbbff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3abaff,0xff3ab9ff,0xff3ab8ff,
+ 0xff39b9ff,0xff39b8ff,0xff39b8ff,0xff38b7ff,0xff38b7ff,0xff37b5ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff34b4ff,0xff35b5ff,0xff34b4ff,0xff33b3ff,0xff33b4ff,
+ 0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,
+ 0xff2dadff,0xff2dadff,0xff2cacff,0xff2bacff,0xff2bacff,0xff2aacff,0xff2aabff,0xff2aacff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff28aaff,
+ 0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a8ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a4ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,
+ 0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea2ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,
+ 0xff1ca0ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff51ccff,0xff52cbff,
+ 0xff52ccff,0xff53ccff,0xff65d2ff,0xff54cdff,0xff55cdff,0xff55ceff,0xff55cdff,0xff56ceff,0xff57cfff,0xff57ceff,0xff8addff,0xff7ad9ff,0xff59d0ff,0xff7bd9ff,
+ 0xff7ad9ff,0xff58cfff,0xff69d4ff,0xff79d8ff,0xff78d8ff,0xff57ceff,0xff56ceff,0xff55cdff,0xff55cdff,0xff55cdff,0xff54ccff,0xff53ccff,0xff63d1ff,0xff53ccff,
+ 0xff51cbff,0xff51cbff,0xff50cbff,0xff50caff,0xff50caff,0xff4fc9ff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4cc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,
+ 0xff5dccff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c4ff,0xff46c4ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,
+ 0xff43c3ff,0xff55c8ff,0xff42c1ff,0xff54c7ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff40c0ff,0xff3fc0ff,0xff3ec0ff,0xff3dbfff,0xff3dbfff,0xff3dbeff,
+ 0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff4fc4ff,0xff3abdff,0xff39bcff,0xff39bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37baff,0xff37baff,0xff36baff,0xff36baff,
+ 0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff46bfff,0xff47bfff,0xff31b7ff,0xff30b7ff,0xff2fb6ff,0xff59c5ff,0xff44bdff,0xff2fb5ff,
+ 0xff2eb5ff,0xff2db5ff,0xff2cb4ff,0xff2db4ff,0xff2bb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff27b0ff,
+ 0xff27b0ff,0xff52c0ff,0xff26b0ff,0xff25b0ff,0xff3cb8ff,0xff26b0ff,0xff26b1ff,0xff27b0ff,0xff28b1ff,0xff29b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff40bfff,
+ 0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff43c0ff,0xff63ccff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,
+ 0xff67ceff,0xff48c3ff,0xff68cfff,0xff49c5ff,0xff47c5ff,0xff67cfff,0xff47c3ff,0xff46c3ff,0xff65ceff,0xff45c2ff,0xff44c1ff,0xff54c7ff,0xff43c1ff,0xff43c1ff,
+ 0xff43c0ff,0xff42c1ff,0xff63ccff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bdff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3ebbff,0xff3dbbff,
+ 0xff3dbbff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff4bc1ff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff38b7ff,0xff37b7ff,0xff37b5ff,
+ 0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff34b5ff,0xff35b4ff,0xff56c2ff,0xff33b4ff,0xff44bbff,0xff33b3ff,0xff32b3ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff31b2ff,
+ 0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff51bdff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2badff,0xff2aacff,
+ 0xff2aacff,0xff2aabff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff27aaff,0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff26a8ff,0xff37b0ff,0xff25a7ff,0xff24a7ff,
+ 0xff24a7ff,0xff48b8ff,0xff48b7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,
+ 0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff41b3ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff41b2ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1fa2ff,
+ 0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff73d5ff,0xff74d5ff,0xff74d6ff,0xff63d0ff,0xff75d6ff,0xff75d6ff,0xff64d1ff,0xff76d6ff,0xff65d2ff,0xff66d2ff,0xff66d2ff,
+ 0xff78d8ff,0xff79d8ff,0xff68d3ff,0xff57cfff,0xff79d9ff,0xff58d0ff,0xff59d0ff,0xff59d0ff,0xff69d4ff,0xff69d4ff,0xff57cfff,0xff57cfff,0xff79d9ff,0xff57ceff,
+ 0xff67d2ff,0xff88dcff,0xff55cdff,0xff54cdff,0xff53ccff,0xff53ccff,0xff76d6ff,0xff52cbff,0xff51cbff,0xff51caff,0xff74d6ff,0xff74d5ff,0xff72d5ff,0xff61cfff,
+ 0xff72d4ff,0xff72d4ff,0xff5fceff,0xff71d3ff,0xff4dc8ff,0xff70d3ff,0xff4cc7ff,0xff5dcdff,0xff6fd2ff,0xff4ac7ff,0xff80d7ff,0xff6ed1ff,0xff6ed1ff,0xff5acbff,
+ 0xff6cd0ff,0xff6cd0ff,0xff59caff,0xff45c4ff,0xff45c3ff,0xff45c3ff,0xff57c9ff,0xff6aceff,0xff69ceff,0xff69ceff,0xff42c2ff,0xff7ad4ff,0xff41c1ff,0xff67cdff,
+ 0xff66cdff,0xff66cdff,0xff52c6ff,0xff66cdff,0xff65ccff,0xff64ccff,0xff50c5ff,0xff63cbff,0xff63cbff,0xff4fc5ff,0xff63caff,0xff75d0ff,0xff4ec3ff,0xff4dc3ff,
+ 0xff61caff,0xff61caff,0xff4cc3ff,0xff73cfff,0xff5fc8ff,0xff5ec9ff,0xff5ec8ff,0xff35baff,0xff35baff,0xff5dc7ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff33b8ff,
+ 0xff31b7ff,0xff31b7ff,0xff31b7ff,0xff31b6ff,0xff5ac5ff,0xff2fb6ff,0xff59c4ff,0xff58c4ff,0xff58c4ff,0xff42bcff,0xff57c3ff,0xff57c3ff,0xff57c3ff,0xff2bb4ff,
+ 0xff6bcaff,0xff55c2ff,0xff3fbaff,0xff54c1ff,0xff54c1ff,0xff53c1ff,0xff28b1ff,0xff27b1ff,0xff52c0ff,0xff26b1ff,0xff52c0ff,0xff51bfff,0xff67c7ff,0xff3cb8ff,
+ 0xff52c1ff,0xff52c1ff,0xff3db9ff,0xff53c1ff,0xff29b2ff,0xff54c1ff,0xff40bdff,0xff60cbff,0xff60cbff,0xff61cbff,0xff41bfff,0xff62ccff,0xff63ccff,0xff63ccff,
+ 0xff74d3ff,0xff63cdff,0xff43c2ff,0xff64cdff,0xff65cdff,0xff66ceff,0xff66ceff,0xff46c3ff,0xff67cfff,0xff47c3ff,0xff48c5ff,0xff48c5ff,0xff68cfff,0xff48c3ff,
+ 0xff47c3ff,0xff47c3ff,0xff66cfff,0xff45c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff63ccff,0xff41c0ff,0xff41bfff,0xff41bfff,
+ 0xff71d0ff,0xff60ccff,0xff71cfff,0xff3fbdff,0xff5fcbff,0xff5fc9ff,0xff5ec9ff,0xff4dc1ff,0xff4dc1ff,0xff5dc8ff,0xff3bbaff,0xff3abaff,0xff5cc7ff,0xff3ab9ff,
+ 0xff5bc6ff,0xff3ab8ff,0xff5bc6ff,0xff5ac6ff,0xff39b7ff,0xff5ac6ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff58c3ff,0xff35b5ff,0xff34b4ff,0xff57c2ff,
+ 0xff33b4ff,0xff56c1ff,0xff33b3ff,0xff55c1ff,0xff32b2ff,0xff31b2ff,0xff41b9ff,0xff66c8ff,0xff53c0ff,0xff65c7ff,0xff52bfff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,
+ 0xff2eaeff,0xff50bdff,0xff2dadff,0xff50bdff,0xff2cadff,0xff2cacff,0xff4ebdff,0xff4ebcff,0xff2aacff,0xff3ab3ff,0xff4cbbff,0xff28abff,0xff28abff,0xff4bbaff,
+ 0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff48b8ff,0xff24a7ff,0xff48b8ff,0xff23a7ff,0xff23a5ff,0xff47b7ff,
+ 0xff46b5ff,0xff22a4ff,0xff46b5ff,0xff20a3ff,0xff44b4ff,0xff44b4ff,0xff43b4ff,0xff57bcff,0xff43b3ff,0xff56bbff,0xff1ea2ff,0xff2faaff,0xff2faaff,0xff1ca0ff,
+ 0xff41b2ff,0xff1ba0ff,0xff41b2ff,0xff1ca1ff,0xff41b2ff,0xff42b3ff,0xff41b3ff,0xff30aaff,0xff30abff,0xff43b3ff,0xff50caff,0xff73d6ff,0xff74d6ff,0xff74d6ff,
+ 0xff75d6ff,0xff52cbff,0xff53ccff,0xff76d6ff,0xff76d6ff,0xff65d2ff,0xff65d2ff,0xff77d7ff,0xff56ceff,0xff56ceff,0xff68d3ff,0xff57cfff,0xff79d9ff,0xff58cfff,
+ 0xff59cfff,0xff7bd9ff,0xff59d0ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff79d9ff,0xff56ceff,0xff67d3ff,0xff89dcff,0xff54cdff,0xff54ccff,0xff53cdff,0xff53ccff,
+ 0xff75d6ff,0xff52ccff,0xff51cbff,0xff51caff,0xff74d6ff,0xff50caff,0xff62cfff,0xff72d4ff,0xff4ec9ff,0xff4ec9ff,0xff72d4ff,0xff4dc8ff,0xff71d3ff,0xff5ecdff,
+ 0xff4bc7ff,0xff4bc7ff,0xff6fd2ff,0xff4ac6ff,0xff6fd1ff,0xff49c6ff,0xff6ed1ff,0xff48c5ff,0xff7fd6ff,0xff5acaff,0xff46c5ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,
+ 0xff6acfff,0xff44c3ff,0xff56c8ff,0xff69cdff,0xff42c1ff,0xff68cdff,0xff42c1ff,0xff66cdff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff65ccff,0xff3ebfff,0xff51c5ff,
+ 0xff64cbff,0xff3dbfff,0xff3cbeff,0xff50c4ff,0xff3bbdff,0xff62caff,0xff4ec4ff,0xff62caff,0xff39bbff,0xff39bcff,0xff60c9ff,0xff60c9ff,0xff36bbff,0xff36baff,
+ 0xff4ac1ff,0xff5ec8ff,0xff5ec7ff,0xff5dc7ff,0xff34b9ff,0xff34b9ff,0xff32b8ff,0xff33b7ff,0xff32b7ff,0xff32b7ff,0xff30b7ff,0xff45beff,0xff45bdff,0xff2fb6ff,
+ 0xff59c5ff,0xff2eb5ff,0xff2eb5ff,0xff58c4ff,0xff57c3ff,0xff2cb4ff,0xff57c3ff,0xff2bb4ff,0xff56c2ff,0xff55c2ff,0xff55c2ff,0xff54c1ff,0xff28b2ff,0xff3fb9ff,
+ 0xff27b1ff,0xff52c1ff,0xff26b0ff,0xff26b0ff,0xff51c0ff,0xff25afff,0xff67c7ff,0xff52c1ff,0xff26b0ff,0xff27b1ff,0xff52c1ff,0xff28b1ff,0xff53c1ff,0xff3fbaff,
+ 0xff40bdff,0xff50c5ff,0xff41bdff,0xff50c5ff,0xff41bfff,0xff62ccff,0xff63ccff,0xff52c6ff,0xff53c6ff,0xff43c1ff,0xff53c7ff,0xff45c2ff,0xff64ceff,0xff65ceff,
+ 0xff46c3ff,0xff47c2ff,0xff67cfff,0xff47c3ff,0xff57c9ff,0xff68cfff,0xff67cfff,0xff57cbff,0xff47c3ff,0xff46c3ff,0xff66ceff,0xff45c2ff,0xff45c2ff,0xff55c8ff,
+ 0xff44c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff52c6ff,0xff62ccff,0xff62ccff,0xff50c5ff,0xff50c5ff,0xff60cbff,0xff50c3ff,0xff3fbdff,0xff5fc9ff,0xff5fc8ff,
+ 0xff4dc2ff,0xff3dbbff,0xff4cc1ff,0xff3cbbff,0xff3cbaff,0xff5cc7ff,0xff5cc7ff,0xff49c0ff,0xff49c1ff,0xff3ab9ff,0xff49bfff,0xff5bc6ff,0xff49bdff,0xff5ac6ff,
+ 0xff48bdff,0xff37b7ff,0xff36b7ff,0xff35b7ff,0xff35b5ff,0xff58c2ff,0xff45bbff,0xff45bbff,0xff44bbff,0xff56c1ff,0xff55c1ff,0xff42b9ff,0xff33b3ff,0xff31b2ff,
+ 0xff31b2ff,0xff41b8ff,0xff53c0ff,0xff41b8ff,0xff2fb1ff,0xff52bfff,0xff51bfff,0xff2eb0ff,0xff2eaeff,0xff3eb7ff,0xff3eb7ff,0xff2dadff,0xff4fbdff,0xff4fbcff,
+ 0xff2bacff,0xff3bb4ff,0xff2aabff,0xff29abff,0xff3ab3ff,0xff29abff,0xff28abff,0xff4cbaff,0xff28aaff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff26a9ff,0xff25a9ff,
+ 0xff25a7ff,0xff49b8ff,0xff24a7ff,0xff24a7ff,0xff34aeff,0xff23a5ff,0xff22a4ff,0xff33adff,0xff33adff,0xff46b5ff,0xff33adff,0xff20a3ff,0xff32abff,0xff20a3ff,
+ 0xff31acff,0xff31abff,0xff42b3ff,0xff30abff,0xff2faaff,0xff2faaff,0xff1ca1ff,0xff1ca0ff,0xff2ea9ff,0xff41b2ff,0xff2ea8ff,0xff1ca0ff,0xff41b3ff,0xff41b3ff,
+ 0xff2faaff,0xff1ea2ff,0xff31abff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff51caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff54ccff,0xff54ccff,
+ 0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff57cfff,0xff57cfff,0xff7ad9ff,0xff7ad9ff,0xff59cfff,0xff59d0ff,0xff59d0ff,0xff58cfff,0xff69d4ff,0xff79d9ff,
+ 0xff68d4ff,0xff56ceff,0xff56cdff,0xff55ceff,0xff55cdff,0xff55cdff,0xff54cdff,0xff53cdff,0xff52cbff,0xff52ccff,0xff52cbff,0xff51cbff,0xff50cbff,0xff50caff,
+ 0xff50caff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4ec9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4cc7ff,0xff4bc8ff,0xff4ac6ff,0xff4ac7ff,0xff49c6ff,0xff49c6ff,
+ 0xff48c6ff,0xff48c6ff,0xff6cd1ff,0xff6cd0ff,0xff46c5ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff43c3ff,0xff42c2ff,0xff43c2ff,0xff42c2ff,
+ 0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3fbfff,0xff3ebfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3abcff,
+ 0xff3abcff,0xff3abcff,0xff39bcff,0xff39bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37baff,0xff35baff,0xff5ec8ff,0xff5dc8ff,0xff34b9ff,0xff34b8ff,0xff33b8ff,
+ 0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b6ff,0xff45bdff,0xff30b6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2eb5ff,0xff2eb5ff,0xff2cb4ff,0xff2cb4ff,
+ 0xff2cb3ff,0xff2bb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff3db9ff,0xff27b0ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,
+ 0xff26b0ff,0xff26b1ff,0xff26b0ff,0xff27b0ff,0xff27b2ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff40bcff,0xff40bdff,0xff41bfff,0xff41bdff,0xff41c0ff,0xff41bfff,
+ 0xff41c0ff,0xff42c0ff,0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff46c2ff,0xff47c2ff,0xff67cfff,0xff67cfff,0xff47c3ff,0xff49c3ff,
+ 0xff48c5ff,0xff47c3ff,0xff57c9ff,0xff66cfff,0xff55c8ff,0xff46c2ff,0xff45c2ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff42c1ff,0xff42c1ff,0xff41c0ff,0xff41bfff,
+ 0xff41c0ff,0xff41bfff,0xff41bdff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3dbbff,0xff3cbcff,0xff3cbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,
+ 0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,
+ 0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b3ff,0xff31b2ff,0xff31b1ff,0xff31b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2aabff,0xff2aabff,0xff29abff,0xff29abff,0xff29abff,
+ 0xff28abff,0xff28aaff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff26a8ff,0xff37b0ff,0xff25a8ff,0xff25a8ff,0xff25a7ff,0xff24a7ff,0xff35adff,0xff24a5ff,0xff23a5ff,
+ 0xff23a5ff,0xff23a4ff,0xff21a5ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1da1ff,0xff1da1ff,
+ 0xff1da0ff,0xff2ea9ff,0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50caff,
+ 0xff51caff,0xff51cbff,0xff51ccff,0xff52cbff,0xff52ccff,0xff53ccff,0xff76d7ff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff57ceff,0xff57ceff,0xff57cfff,
+ 0xff7ad9ff,0xff58d0ff,0xff59d0ff,0xff6bd5ff,0xff7ad9ff,0xff58d0ff,0xff58cfff,0xff57ceff,0xff79d9ff,0xff56ceff,0xff56ceff,0xff56cdff,0xff54cdff,0xff55cdff,
+ 0xff53ccff,0xff53ccff,0xff76d6ff,0xff52cbff,0xff52cbff,0xff51cbff,0xff51cbff,0xff50caff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff6fd2ff,0xff4ac7ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff48c4ff,0xff47c4ff,0xff46c4ff,0xff45c4ff,
+ 0xff45c4ff,0xff45c4ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff69ceff,0xff42c2ff,0xff67cdff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff40c0ff,0xff3ebfff,
+ 0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3cbfff,0xff3cbdff,0xff3cbeff,0xff3cbdff,0xff63caff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff37bbff,
+ 0xff37bbff,0xff36bbff,0xff36baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff5ac5ff,0xff31b6ff,0xff30b6ff,
+ 0xff30b6ff,0xff5ac5ff,0xff59c4ff,0xff2eb6ff,0xff2eb5ff,0xff2eb4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff29b3ff,0xff29b2ff,
+ 0xff29b2ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff3db9ff,0xff3cb8ff,0xff26afff,0xff25afff,0xff52c0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff3fbcff,0xff50c5ff,0xff50c3ff,0xff50c5ff,0xff41bfff,0xff62ccff,0xff63ccff,0xff42c0ff,0xff63ccff,0xff44c1ff,0xff53c7ff,0xff44c1ff,
+ 0xff65ceff,0xff65ceff,0xff46c2ff,0xff47c3ff,0xff67cfff,0xff47c3ff,0xff48c5ff,0xff58cbff,0xff68cfff,0xff47c5ff,0xff46c3ff,0xff46c2ff,0xff66cfff,0xff46c2ff,
+ 0xff54c8ff,0xff75d3ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff42c0ff,0xff63ccff,0xff41bfff,0xff41bfff,0xff41bfff,0xff50c5ff,0xff60cbff,0xff4fc3ff,0xff3fbdff,
+ 0xff5fc9ff,0xff5fc9ff,0xff3ebcff,0xff4dc1ff,0xff3cbbff,0xff4cc1ff,0xff3cbbff,0xff4bc1ff,0xff4bc0ff,0xff3abaff,0xff49c0ff,0xff5bc6ff,0xff49bfff,0xff39b9ff,
+ 0xff5ac6ff,0xff49bfff,0xff49bdff,0xff37b7ff,0xff36b7ff,0xff36b5ff,0xff36b5ff,0xff58c3ff,0xff45bbff,0xff56c2ff,0xff34b3ff,0xff55c2ff,0xff33b3ff,0xff43b9ff,
+ 0xff42b9ff,0xff54c1ff,0xff31b2ff,0xff41b8ff,0xff53c0ff,0xff40b8ff,0xff2fb1ff,0xff51bfff,0xff51bdff,0xff2eb0ff,0xff51bdff,0xff62c6ff,0xff3eb7ff,0xff2dadff,
+ 0xff4fbdff,0xff4fbcff,0xff2bacff,0xff3bb4ff,0xff4dbbff,0xff3bb3ff,0xff3ab3ff,0xff28aaff,0xff28aaff,0xff39b2ff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff27a8ff,
+ 0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff36aeff,0xff35aeff,0xff48b8ff,0xff34adff,0xff47b7ff,0xff22a4ff,0xff33adff,0xff46b5ff,0xff32adff,0xff20a3ff,
+ 0xff45b4ff,0xff31acff,0xff1fa2ff,0xff31acff,0xff42b3ff,0xff30aaff,0xff1da1ff,0xff1da1ff,0xff41b3ff,0xff1ca0ff,0xff2ea9ff,0xff41b1ff,0xff41b2ff,0xff1ca0ff,
+ 0xff41b2ff,0xff41b3ff,0xff1ea1ff,0xff30aaff,0xff1ea1ff,0xff31abff,0xff4fcaff,0xff73d5ff,0xff74d5ff,0xff74d6ff,0xff63d1ff,0xff52cbff,0xff53ccff,0xff76d6ff,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff27b1ff,0xff53c1ff,0xff53c1ff,0xff28b2ff,0xff54c1ff,0xff40bdff,0xff60cbff,0xff60cbff,0xff61ccff,
+ 0xff51c6ff,0xff62ccff,0xff63ccff,0xff63cdff,0xff000000,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0xff41b3ff,0xff41b3ff,0xff1fa2ff,0xff43b3ff,0xff43b3ff,
+ 0xff4fcaff,0xff73d5ff,0xff62d0ff,0xff74d6ff,0xff63d1ff,0xff75d6ff,0xff76d6ff,0xff76d6ff,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff52c1ff,
+ 0xff52c1ff,0xff28b2ff,0xff54c1ff,0xff2ab2ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bdff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff43c0ff,0xff43c1ff,
+ 0xff43c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff46c2ff,0xff76d4ff,0xff67cfff,0xff48c3ff,0xff48c5ff,0xff48c3ff,0xff48c3ff,0xff57c9ff,0xff66cfff,
+ 0xff66ceff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff43c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bdff,0xff40bdff,
+ 0xff3fbdff,0xff3fbdff,0xff3ebcff,0xff3ebcff,0xff3ebbff,0xff3dbcff,0xff3cbbff,0xff3cbaff,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,
+ 0xff3ab8ff,0xff49bfff,0xff5bc5ff,0xff5ac5ff,0xff48bfff,0xff36b5ff,0xff36b7ff,0xff36b5ff,0xff35b5ff,0xff34b4ff,0xff35b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,
+ 0xff33b3ff,0xff33b2ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff30b2ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,
+ 0xff2daeff,0xff2dadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aacff,0xff2aabff,0xff3ab3ff,0xff4cbaff,0xff4cbaff,0xff39b2ff,0xff28aaff,0xff27aaff,
+ 0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff25a7ff,0xff49b8ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,
+ 0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff41b3ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,
+ 0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da0ff,0xff1da2ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,
+ 0xff53cbff,0xff53ccff,0xff53ccff,0xff54cdff,0xff54cdff,0xff56ceff,0xff56ceff,0xff56ceff,0xff56ceff,0xff58cfff,0xff58cfff,0xff58d0ff,0xff58d0ff,0xff5ad0ff,
+ 0xff59d0ff,0xff58cfff,0xff58cfff,0xff57cfff,0xff57ceff,0xff56ceff,0xff56cdff,0xff56ceff,0xff54ceff,0xff55cdff,0xff53ccff,0xff53ccff,0xff53ccff,0xff52ccff,
+ 0xff52cbff,0xff51caff,0xff51caff,0xff50caff,0xff50caff,0xff4fc9ff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4cc7ff,0xff4ac7ff,
+ 0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff49c5ff,0xff48c6ff,0xff47c6ff,0xff48c5ff,0xff47c4ff,0xff46c5ff,0xff45c4ff,0xff45c3ff,0xff45c3ff,0xff44c2ff,0xff44c3ff,
+ 0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3dbeff,
+ 0xff3cbdff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abdff,0xff39bcff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,
+ 0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff32b8ff,0xff31b8ff,0xff31b8ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb5ff,0xff2fb5ff,0xff2eb5ff,
+ 0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff29b3ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,
+ 0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26afff,0xff26b1ff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff50c3ff,
+ 0xff41bdff,0xff50c5ff,0xff41bfff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff53c7ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff55c8ff,0xff45c3ff,0xff46c2ff,
+ 0xff47c3ff,0xff47c3ff,0xff48c3ff,0xff48c5ff,0xff48c3ff,0xff47c5ff,0xff47c3ff,0xff46c2ff,0xff46c3ff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,
+ 0xff63ccff,0xff42c0ff,0xff41c0ff,0xff51c6ff,0xff51c5ff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,0xff3fbcff,0xff3fbcff,0xff4dc2ff,0xff3dbcff,0xff3dbbff,
+ 0xff3cbbff,0xff3cbbff,0xff3bbbff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3abaff,0xff5bc6ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff48bdff,0xff38b7ff,0xff48bdff,
+ 0xff36b7ff,0xff35b5ff,0xff35b5ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,
+ 0xff31b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,0xff2faeff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2bacff,
+ 0xff29abff,0xff2aabff,0xff28abff,0xff28aaff,0xff28abff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff25a9ff,0xff25a7ff,0xff24a7ff,
+ 0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff22a5ff,0xff22a5ff,0xff22a5ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa3ff,0xff20a2ff,
+ 0xff1fa1ff,0xff1ea1ff,0xff1da2ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ca0ff,0xff1ca1ff,0xff1da0ff,0xff1da0ff,0xff1da1ff,0xff1ea2ff,
+ 0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff97dfff,0xff50caff,0xff97dfff,0xff52cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff76d6ff,0xff55cdff,0xff55cdff,0xff55cdff,
+ 0xff55cdff,0xff68d3ff,0xff56cfff,0xff57ceff,0xff58cfff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff58d0ff,0xff58cfff,0xff58cfff,0xff57cfff,0xff57cfff,0xff56ceff,
+ 0xff56ceff,0xff55ceff,0xff54cdff,0xff54cdff,0xff76d6ff,0xff53ccff,0xff52ccff,0xff52cbff,0xff75d6ff,0xff51cbff,0xff50caff,0xff50cbff,0xff50caff,0xff4fcaff,
+ 0xff4fc9ff,0xff60ceff,0xff4ec8ff,0xff4dc8ff,0xff4dc8ff,0xff4cc7ff,0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff49c6ff,0xff6ed1ff,0xff49c5ff,0xff48c5ff,
+ 0xff47c5ff,0xff5acaff,0xff46c4ff,0xff6ad0ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff43c3ff,0xff44c2ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,
+ 0xff40c0ff,0xff3fc0ff,0xff40c0ff,0xff3fbfff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff39bdff,
+ 0xff39bcff,0xff38bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37baff,0xff36baff,0xff36baff,0xff34b9ff,0xff35b9ff,0xff33b9ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,
+ 0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff30b7ff,0xff30b6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,
+ 0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b1ff,0xff29b2ff,0xff27b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff26b0ff,0xff26b0ff,
+ 0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff60cbff,0xff84d7ff,0xff61ccff,0xff51c5ff,0xff62ccff,0xff63ccff,0xff53c6ff,
+ 0xff63ccff,0xff53c6ff,0xff53c8ff,0xff44c2ff,0xff54c8ff,0xff65ceff,0xff45c2ff,0xff76d4ff,0xff67cfff,0xff67cfff,0xff58cbff,0xff68cfff,0xff67cfff,0xff57cbff,
+ 0xff46c3ff,0xff46c3ff,0xff46c2ff,0xff55c8ff,0xff65ceff,0xff64ceff,0xff54c7ff,0xff43c1ff,0xff63ccff,0xff42c0ff,0xff41c0ff,0xff42bfff,0xff62ccff,0xff41bdff,
+ 0xff41bfff,0xff40bdff,0xff3fbdff,0xff3fbcff,0xff4ec2ff,0xff5fc8ff,0xff3dbbff,0xff6fcfff,0xff5dc8ff,0xff5dc8ff,0xff3cbbff,0xff3abaff,0xff3abaff,0xff3ab9ff,
+ 0xff3ab9ff,0xff5bc6ff,0xff39b9ff,0xff39b8ff,0xff49bfff,0xff59c5ff,0xff37b8ff,0xff6acbff,0xff58c5ff,0xff58c3ff,0xff46bcff,0xff58c3ff,0xff57c3ff,0xff45bbff,
+ 0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff33b2ff,0xff32b3ff,0xff32b1ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,
+ 0xff2eaeff,0xff2daeff,0xff2dadff,0xff2daeff,0xff2cadff,0xff2bacff,0xff2badff,0xff2bacff,0xff2aabff,0xff2aabff,0xff28aaff,0xff28abff,0xff28abff,0xff28aaff,
+ 0xff28aaff,0xff27a9ff,0xff27a9ff,0xff27a9ff,0xff25a9ff,0xff26a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a7ff,0xff23a5ff,0xff22a5ff,
+ 0xff22a4ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,0xff50cbff,0xff74d6ff,
+ 0xff51cbff,0xff75d6ff,0xff76d6ff,0xff76d6ff,0xff87dbff,0xff76d7ff,0xff55cdff,0xff55cdff,0xff55ceff,0xff78d8ff,0xff57ceff,0xff79d9ff,0xff58cfff,0xff7ad9ff,
+ 0xff7ad9ff,0xff5ad0ff,0xff7bd9ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff57ceff,0xff56ceff,0xff77d7ff,0xff77d8ff,0xff77d7ff,0xff55ccff,0xff76d6ff,0xff53ccff,
+ 0xff53ccff,0xff52cbff,0xff75d6ff,0xff51cbff,0xff51cbff,0xff50cbff,0xff4fcaff,0xff4fcaff,0xff4fc9ff,0xff72d4ff,0xff4dc9ff,0xff71d3ff,0xff4cc8ff,0xff70d3ff,
+ 0xff4cc7ff,0xff4bc7ff,0xff4bc6ff,0xff4ac7ff,0xff49c6ff,0xff6ed1ff,0xff48c6ff,0xff48c5ff,0xff47c5ff,0xff6bd1ff,0xff46c4ff,0xff6ad0ff,0xff46c3ff,0xff6acfff,
+ 0xff6acfff,0xff44c2ff,0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff41c1ff,0xff42c1ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,
+ 0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff3abcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff37baff,0xff37bbff,0xff36baff,
+ 0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,0xff34b8ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b6ff,0xff31b6ff,0xff2fb6ff,0xff2fb6ff,
+ 0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2db5ff,0xff2cb3ff,0xff2cb3ff,0xff2bb4ff,0xff2bb3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,
+ 0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff25b0ff,0xff26b1ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,
+ 0xff40bdff,0xff60cbff,0xff41bfff,0xff61ccff,0xff62ccff,0xff42bfff,0xff42c0ff,0xff63ccff,0xff63ccff,0xff53c7ff,0xff54c7ff,0xff44c1ff,0xff45c1ff,0xff65ceff,
+ 0xff46c3ff,0xff67cfff,0xff47c3ff,0xff68cfff,0xff47c5ff,0xff78d5ff,0xff57c9ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff45c2ff,0xff65ceff,0xff44c1ff,0xff44c1ff,
+ 0xff63cdff,0xff44c1ff,0xff63ccff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff61ccff,0xff41bfff,0xff40bfff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3fbcff,0xff5fc9ff,
+ 0xff3dbbff,0xff5ec8ff,0xff3cbbff,0xff5cc7ff,0xff3cbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff5bc6ff,0xff39b9ff,0xff39b8ff,0xff38b8ff,0xff59c5ff,
+ 0xff37b7ff,0xff6acbff,0xff36b7ff,0xff58c3ff,0xff58c3ff,0xff35b5ff,0xff34b4ff,0xff45bbff,0xff33b3ff,0xff33b4ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,
+ 0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2cacff,
+ 0xff2aacff,0xff2bacff,0xff2aabff,0xff29acff,0xff29abff,0xff29aaff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a8ff,0xff25a8ff,
+ 0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff21a4ff,0xff20a3ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ba0ff,0xff1ca1ff,0xff1da1ff,0xff1da1ff,
+ 0xff1da1ff,0xff1fa1ff,0xff1fa1ff,0xff1fa3ff,0xff4fcaff,0xff62cfff,0xff51caff,0xff62d0ff,0xff51ccff,0xff75d6ff,0xff76d6ff,0xff64d1ff,0xff397790,0xff307390,
+ 0xff3a7790,0xff307490,0xff447a90,0xff447a90,0xff3b7890,0xff3b7790,0xff327590,0xff3b7890,0xff457b90,0xff3c7890,0xff457b90,0xff3c7890,0xff439dc2,0xff57cfff,
+ 0xff57ceff,0xff56ceff,0xff77d8ff,0xff77d8ff,0xff65d2ff,0xff66d2ff,0xff76d6ff,0xff76d6ff,0xff52ccff,0xff75d6ff,0xff75d6ff,0xff62d0ff,0xff50caff,0xff50caff,
+ 0xff50caff,0xff4fc9ff,0xff72d4ff,0xff72d4ff,0xff60ceff,0xff54b6e2,0xff358cb2,0xff387a98,0xff2b7191,0xff2b7191,0xff2b7191,0xff2d789a,0xff4192b7,0xff65c1eb,
+ 0xff6ed1ff,0xff48c5ff,0xff6cd1ff,0xff6cd0ff,0xff59caff,0xff59caff,0xff6acfff,0xff58caff,0xff44c2ff,0xff6acfff,0xff69ceff,0xff43c2ff,0xff42c2ff,0xff42c1ff,
+ 0xff41c1ff,0xff41c1ff,0xff40c1ff,0xff3fc0ff,0xff3fc0ff,0xff3ec0ff,0xff3ebfff,0xff3ebeff,0xff3dbeff,0xff226c90,0xff226b90,0xff226b90,0xff216b90,0xff2c90c2,
+ 0xff3abcff,0xff3abcff,0xff39bcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff36bbff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff2fa4e2,0xff2481b2,0xff1e6e98,
+ 0xff1d6991,0xff1c6991,0xff1c6891,0xff1e6f9a,0xff2383b7,0xff2ca9eb,0xff30b6ff,0xff30b6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2cb4ff,
+ 0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff1f87c2,0xff176490,0xff176490,0xff166490,0xff166390,0xff26b0ff,0xff26b0ff,0xff25afff,
+ 0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,
+ 0xff42c0ff,0xff42c0ff,0xff256d90,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff286f90,0xffffffff,
+ 0xffffffff,0xffc6d8e1,0xff3694c2,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff42c0ff,0xff42c0ff,0xff41bfff,
+ 0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff2b83b2,0xff2e7196,0xff93b6c9,0xffdae6ec,0xfff6f9fa,0xfffeffff,
+ 0xfff4f7f9,0xffd3e1e9,0xff7ea8bf,0xff216990,0xff33a5e4,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff37b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,
+ 0xff35b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff31b1ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,0xff1b6390,
+ 0xffffffff,0xffffffff,0xffc2d5e1,0xff2384c2,0xff2daeff,0xff2dadff,0xff2cadff,0xff2badff,0xff2badff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29abff,0xff28abff,
+ 0xff1c77b2,0xff226896,0xff8db1c9,0xffd8e4ec,0xfff6f8fa,0xfffeffff,0xfff3f7f9,0xffd1dfe9,0xff77a2bf,0xff165f90,0xff2095e4,0xff24a7ff,0xff23a5ff,0xff23a5ff,
+ 0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff20a2ff,0xff177bc2,0xffc0d3e1,0xffffffff,0xffffffff,
+ 0xff105a90,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1c9fff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea2ff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50caff,
+ 0xff51caff,0xff51caff,0xff52ccff,0xff52cbff,0xff53cbff,0xff53ccff,0xff2f7390,0xffcfdee5,0xffcfdee5,0xffcfdfe5,0xfff2f6f7,0xffffffff,0xffffffff,0xffcfdfe5,
+ 0xffd4e0e5,0xffd4e0e5,0xff327590,0xffffffff,0xffffffff,0xffc8dae1,0xff4288a3,0xff487f96,0xff3d7d96,0xff337996,0xff43a1c8,0xff55ceff,0xff4fc2f1,0xff3c93b7,
+ 0xff317896,0xff317896,0xff307896,0xff307896,0xff398fb4,0xff4cbdee,0xff50caff,0xff50caff,0xff50caff,0xff4fc9ff,0xff4ec9ff,0xff43acda,0xff397a97,0xffdce8ed,
+ 0xffffffff,0xffffffff,0xffdde9ee,0xffd6e4ea,0xfffbfcfc,0xffffffff,0xffffffff,0xff92b6c6,0xff40b0e4,0xff296f90,0xff286f90,0xff286f90,0xff286f90,0xff297294,
+ 0xff287294,0xff277194,0xff318cb7,0xff287396,0xff277296,0xff277296,0xff277296,0xff2f89b4,0xff3db4ee,0xff3db5f1,0xff2e8ab7,0xff257196,0xff267196,0xff247096,
+ 0xff247096,0xff2b87b4,0xff39b1ee,0xff226b90,0xffffffff,0xffffffff,0xffc4d8e1,0xff2c90c2,0xff216a90,0xff206a90,0xff206a90,0xff206a90,0xff2f9ed7,0xff37bbff,
+ 0xff37bbff,0xff36baff,0xff36baff,0xff2d9fda,0xff2c7297,0xffdae6ed,0xffffffff,0xffffffff,0xffdbe7ee,0xffd4e2ea,0xfffafbfc,0xffffffff,0xffffffff,0xff8bb1c6,
+ 0xff3da9e4,0xff2daef5,0xff2387bd,0xff1b6c98,0xff1b6b98,0xff277098,0xff1b6b98,0xff2083ba,0xff29acf3,0xff2bb3ff,0xff2397d7,0xff1a6d9c,0xff196d9b,0xff196c9b,
+ 0xff196c9b,0xffc1d6e1,0xffffffff,0xffffffff,0xff156490,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff3bb8ff,0xff26b1ff,0xff26b1ff,0xff27b1ff,0xff27b2ff,0xff28b1ff,
+ 0xff28b1ff,0xff29b2ff,0xff3fbcff,0xff41bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff42bfff,0xff41c0ff,0xff43c0ff,0xff4997bd,0xff328fbd,0xff328fbd,0xff2a779d,
+ 0xffc5d8e1,0xffffffff,0xffffffff,0xff286e90,0xff4c99bd,0xff3591bd,0xff296f90,0xffffffff,0xffffffff,0xffcbdbe3,0xff9abbcb,0xffebf2f5,0xfff9fafb,0xffbfd4de,
+ 0xff347797,0xff3ba9de,0xff266d90,0xff72a0b7,0xffd4e2e9,0xfff8fafb,0xfff9fafb,0xffdbe5ea,0xff86aabc,0xff2d6f90,0xff3bafec,0xff40bdff,0xff3fbdff,0xff3fbdff,
+ 0xff5fc9ff,0xff287aa5,0xffa2c0d0,0xffffffff,0xffffffff,0xff719fb8,0xff226a90,0xff226b93,0xff4b85a5,0xff83abc1,0xff6a9ab5,0xff5889a4,0xff2b88bd,0xff206890,
+ 0xffffffff,0xffffffff,0xffcddde6,0xffc8dae3,0xfffafbfc,0xff98b9cc,0xff6d9cb7,0xffd3e1e9,0xfff8fafb,0xfff8fafb,0xffd6e3ea,0xff76a2bc,0xff316d90,0xff1d6590,
+ 0xff6c9ab7,0xffd6e2e9,0xfff8fafb,0xfff8fafb,0xffd6e3ea,0xff75a1bc,0xff1b6390,0xff1a6390,0xffffffff,0xffffffff,0xffc2d5e1,0xff1b6290,0xffb2cada,0xffffffff,
+ 0xffffffff,0xffa3c0d3,0xff2592d7,0xff2aacff,0xff29acff,0xff2aabff,0xff29abff,0xff1a6ea5,0xff9cbbd0,0xffffffff,0xffffffff,0xff6998b8,0xff165f90,0xff166193,
+ 0xff417da5,0xff7ca5c1,0xff6294b5,0xff3f7ba4,0xff2881bd,0xff1e6290,0xff5a8db0,0xffc9dae6,0xfff6f8fa,0xfff6f8fa,0xffd1dee6,0xff6193b5,0xff135c90,0xff1b8ddb,
+ 0xff1a6194,0xffa0bed3,0xfff1f5f8,0xfff2f6f8,0xffacc6d8,0xffd4e1ea,0xffffffff,0xffffffff,0xff105a90,0xff1ca0ff,0xff1c9fff,0xff1ba0ff,0xff41b2ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1da0ff,0xff42b3ff,0xff1fa1ff,0xff1ea2ff,0xff1fa3ff,0xff50caff,0xff62cfff,0xff62cfff,0xff62d0ff,0xff51ccff,0xff75d6ff,0xff75d6ff,0xff53ccff,
+ 0xff76d7ff,0xff54ccff,0xff66d2ff,0xff419dc2,0xffcddbe1,0xffffffff,0xffffffff,0xff317490,0xff7ad9ff,0xff58d0ff,0xff327590,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffa5c1cd,0xff5d96ae,0xff7fa9bb,0xffffffff,0xfffeffff,0xffd9e5ea,0xffdce6ea,0xfffeffff,0xffffffff,0xff84acbe,
+ 0xff4490b1,0xff73d6ff,0xff62cfff,0xff61cfff,0xff83d9ff,0xff427a93,0xffe9f1f4,0xffffffff,0xffe1eaee,0xff357490,0xff4698bd,0xffabc5d1,0xffd2dfe5,0xffcddee5,
+ 0xffcddee5,0xffd2dfe5,0xff297090,0xff337390,0xffffffff,0xffffffff,0xffffffff,0xfff0f4f6,0xffe0e9ee,0xffa2bfcc,0xffffffff,0xfffeffff,0xffd7e4ea,0xffd7e4ea,
+ 0xfffeffff,0xffffffff,0xff8badbe,0xff78a5bb,0xffffffff,0xfffeffff,0xffd7e4ea,0xffd8e4ea,0xfffeffff,0xffffffff,0xff7da8be,0xff387390,0xffffffff,0xffffffff,
+ 0xffc7d8e1,0xffa5c0cd,0xffffffff,0xffffffff,0xffacc3cf,0xff377290,0xff2f9fd7,0xff4cc2ff,0xff5fc8ff,0xff4bc1ff,0xff4ac1ff,0xff2a6f93,0xffeaf0f4,0xffffffff,
+ 0xffdee8ee,0xff1d6890,0xff358ebd,0xffa2c0d1,0xffcadce5,0xffcadce5,0xffcadce5,0xffcadbe5,0xff1b6790,0xff679ab5,0xffffffff,0xffffffff,0xffebf1f5,0xffe7eff4,
+ 0xffffffff,0xffffffff,0xff77a2ba,0xff1c72a3,0xffa5c0cf,0xffffffff,0xffffffff,0xffe7eef3,0xffebf1f5,0xffffffff,0xffffffff,0xffffffff,0xff2e6c90,0xff26b1ff,
+ 0xff26b0ff,0xff3bb8ff,0xff3cb8ff,0xff26b0ff,0xff52c1ff,0xff3db9ff,0xff52c1ff,0xff3ebaff,0xff54c1ff,0xff3fbaff,0xff40bdff,0xff60cbff,0xff61ccff,0xff61ccff,
+ 0xff51c5ff,0xff41bfff,0xff42c0ff,0xff63cdff,0xff63ccff,0xff63cdff,0xff44c1ff,0xff4d9cc2,0xffc5d8e1,0xffffffff,0xffffffff,0xff286e90,0xff67cfff,0xff47c3ff,
+ 0xff286f90,0xffffffff,0xffffffff,0xfff1f5f7,0xff4783a0,0xff598faa,0xffffffff,0xffffffff,0xffc3d6e0,0xff307393,0xffdfe9ee,0xffffffff,0xfff3f6f8,0xffccdde5,
+ 0xffd1dee5,0xfff4f7f8,0xffffffff,0xffdce7ed,0xff437a95,0xff40bdff,0xff5fcbff,0xff3fbdff,0xff5fc9ff,0xff246c93,0xfffbfcfd,0xffffffff,0xffc7d9e3,0xff3f88ae,
+ 0xff4493bd,0xffcedde5,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff216890,0xff337090,0xffffffff,0xffffffff,0xfff9fafb,0xff497f9c,0xff206993,0xffe1eaee,
+ 0xffffffff,0xfff3f6f8,0xffcbdbe5,0xffcadbe5,0xfff4f6f8,0xffffffff,0xffdfe8ed,0xffdee8ee,0xffffffff,0xfff3f6f8,0xffcadbe5,0xffd1dee5,0xfff3f6f8,0xffffffff,
+ 0xffdde7ed,0xff1b6390,0xffffffff,0xffffffff,0xfff5f8f9,0xffffffff,0xffffffff,0xffcadbe6,0xff2d6b90,0xff2694dc,0xff2badff,0xff4dbcff,0xff2aacff,0xff4dbcff,
+ 0xff4cbbff,0xff216793,0xfffbfcfd,0xffffffff,0xffc9d9e3,0xff1b73ae,0xff3689bd,0xffc9dae5,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff145e90,0xffd9e5ed,
+ 0xffffffff,0xffecf2f5,0xff336f96,0xff1e6495,0xffeef2f5,0xffffffff,0xffdfe8ee,0xff286893,0xffe9f0f5,0xffffffff,0xffe9eff4,0xff2d6a94,0xff316d96,0xffedf2f5,
+ 0xffffffff,0xffffffff,0xff105b90,0xff41b2ff,0xff1ba0ff,0xff41b2ff,0xff1ba0ff,0xff41b2ff,0xff1da1ff,0xff2faaff,0xff42b3ff,0xff30aaff,0xff1ea1ff,0xff43b3ff,
+ 0xff50caff,0xff73d5ff,0xff74d5ff,0xff74d6ff,0xff63d1ff,0xff75d6ff,0xff76d6ff,0xff76d6ff,0xff87dcff,0xff76d7ff,0xff55cdff,0xff5ba4c2,0xffcddbe1,0xffffffff,
+ 0xffffffff,0xff317590,0xff7ad9ff,0xff58cfff,0xff327590,0xffffffff,0xffffffff,0xffcbdce3,0xff367f9d,0xff317490,0xffffffff,0xffffffff,0xffc8dae1,0xff3b7a93,
+ 0xfffbfcfc,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff9fafb,0xff437c95,0xff50cbff,0xff73d5ff,0xff4fcaff,0xff72d4ff,0xff2d7493,
+ 0xffe9f0f4,0xffffffff,0xffe2eaee,0xff3f7790,0xff529cbd,0xff2a7090,0xff2a7090,0xffc6d9e1,0xffffffff,0xffffffff,0xff297090,0xff3e7690,0xffffffff,0xffffffff,
+ 0xffd9e4e9,0xff3f7a95,0xff3e7793,0xfffbfcfc,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff9fafb,0xfffbfcfc,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff9fafb,0xff387390,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffcfdfd,0xff5f8fa7,0xff2988ba,
+ 0xff38bcff,0xff60c9ff,0xff37baff,0xff5fc9ff,0xff5ec8ff,0xff1f6b93,0xffe8f0f4,0xffffffff,0xffe0e9ee,0xff1d6890,0xff5398bd,0xff1d6890,0xff1c6890,0xffc3d6e1,
+ 0xffffffff,0xffffffff,0xff1b6790,0xfffafbfc,0xffffffff,0xffcfdde5,0xff1d72a1,0xff1c72a1,0xffccdbe3,0xffffffff,0xfffafbfc,0xff327093,0xfffbfcfd,0xffffffff,
+ 0xffccdbe3,0xff357ba2,0xff347aa1,0xffccdbe3,0xffffffff,0xffffffff,0xff2e6c90,0xff3cb8ff,0xff25b0ff,0xff51bfff,0xff26afff,0xff52c0ff,0xff27b1ff,0xff27b1ff,
+ 0xff52c1ff,0xff53c1ff,0xff54c1ff,0xff69c9ff,0xff40bdff,0xff60cbff,0xff50c5ff,0xff61cbff,0xff50c5ff,0xff62ccff,0xff62ccff,0xff63ccff,0xff63cdff,0xff43c1ff,
+ 0xff64cdff,0xff4097c2,0xffcadae1,0xffffffff,0xffffffff,0xff286e90,0xff67cfff,0xff48c5ff,0xff296f90,0xffffffff,0xffffffff,0xffc8d9e1,0xff3594c1,0xff286e90,
+ 0xffffffff,0xffffffff,0xffc8d9e1,0xff437a93,0xffe1ebef,0xffffffff,0xffdee8ee,0xff2a7093,0xff387390,0xff6d99ae,0xff6391a8,0xff45809d,0xff387795,0xff40bdff,
+ 0xff5fcbff,0xff3fbcff,0xff4fc2ff,0xff3d82a5,0xffa6c1d0,0xffffffff,0xffffffff,0xff7aa1b6,0xff357090,0xff226a92,0xff4984a4,0xffe7eff3,0xffffffff,0xffffffff,
+ 0xff337090,0xff337090,0xffffffff,0xffffffff,0xffcadae2,0xff408db7,0xff337293,0xffe1eaef,0xffffffff,0xffdde7ee,0xff236a93,0xff1e6690,0xff6894ae,0xff5d8ca8,
+ 0xff51819d,0xffe0eaef,0xffffffff,0xffe1e9ee,0xff2a6c93,0xff2f6d90,0xff598eae,0xff4d85a8,0xff3e799d,0xff2e6c90,0xffffffff,0xffffffff,0xffffffff,0xff9bb8c9,
+ 0xfff8fafb,0xffffffff,0xffcfdee6,0xff2d6b90,0xff38a8ee,0xff4dbcff,0xff4cbcff,0xff4cbbff,0xff4cbbff,0xff1a6fa5,0xff9dbcd0,0xffffffff,0xffffffff,0xff739cb6,
+ 0xff2a6890,0xff166192,0xff3f7ba4,0xffe6eef3,0xffffffff,0xffffffff,0xff145e90,0xffdbe6ee,0xffffffff,0xffedf2f5,0xff1e6495,0xff1c6394,0xffeaf1f5,0xffffffff,
+ 0xffdee7ee,0xff1d6493,0xffe3ebf0,0xffffffff,0xffebf1f5,0xff2f6b95,0xff256795,0xffebf1f5,0xffffffff,0xffffffff,0xff256590,0xff2ea9ff,0xff41b1ff,0xff1ba0ff,
+ 0xff1ba0ff,0xff2ea9ff,0xff41b3ff,0xff41b2ff,0xff42b3ff,0xff42b3ff,0xff43b3ff,0xff57bcff,0xff4fcaff,0xff50caff,0xff51cbff,0xff51cbff,0xff51cbff,0xff52ccff,
+ 0xff52ccff,0xff53ccff,0xff54cdff,0xff54ccff,0xff55cdff,0xff419cc2,0xffc8dae1,0xffffffff,0xffffffff,0xff327590,0xff8addff,0xff7ad9ff,0xff327590,0xffffffff,
+ 0xffffffff,0xffc8dae1,0xff4fa1c2,0xff447a90,0xffffffff,0xffffffff,0xffc8dae1,0xff3989ab,0xff83acbd,0xffffffff,0xffffffff,0xffe9f0f3,0xffe2ebef,0xffffffff,
+ 0xffffffff,0xff8ab0c1,0xff49b9e9,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff4fc9ff,0xff43acda,0xff3c7c99,0xffe1ebef,0xffffffff,0xffffffff,0xffdee9ee,0xffd7e5ea,
+ 0xfffcfdfd,0xffffffff,0xffffffff,0xffecf2f5,0xff296f90,0xff296f90,0xffffffff,0xffffffff,0xffc6d8e1,0xff519dc2,0xff478bab,0xff8aadbd,0xffffffff,0xffffffff,
+ 0xffe8eff3,0xffe1ebef,0xffffffff,0xffffffff,0xff85adc1,0xff7da8bd,0xffffffff,0xffffffff,0xffe7eff3,0xffe0eaef,0xffffffff,0xffffffff,0xff84acc1,0xff226c90,
+ 0xffffffff,0xffffffff,0xffc8dae4,0xff216b90,0xff9ebfcf,0xffffffff,0xffffffff,0xff76a4bb,0xff2377a1,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff2e9fda,
+ 0xff2f7599,0xffdfeaef,0xffffffff,0xffffffff,0xffdfe9ee,0xffd5e3ea,0xfffcfdfd,0xffffffff,0xffffffff,0xffebf1f5,0xff1b6790,0xff6a9bb6,0xffffffff,0xffffffff,
+ 0xffe8f0f4,0xffe7eff4,0xffffffff,0xffffffff,0xff6a9bb7,0xff1d77aa,0xff8cb2c8,0xffffffff,0xffffffff,0xffe6eef3,0xffe8eff4,0xffffffff,0xffffffff,0xffffffff,
+ 0xff156390,0xff26b0ff,0xff52c0ff,0xff25afff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b2ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,
+ 0xff40bdff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42bfff,0xff42c0ff,0xff43c0ff,0xff44c1ff,0xff44c1ff,0xff3494c2,0xffc5d8e1,0xffffffff,0xffffffff,0xff286e90,
+ 0xff47c3ff,0xff47c5ff,0xff296f90,0xffffffff,0xffffffff,0xffc6d8e1,0xff3594c2,0xff286e90,0xffffffff,0xffffffff,0xffc5d8e1,0xff3494c2,0xff266d90,0xff7da8bd,
+ 0xffdde8ee,0xfffafbfc,0xfffafbfc,0xffdbe7ed,0xff7fa9be,0xff256c90,0xff3bafe9,0xff40bdff,0xff3fbdff,0xff3fbcff,0xff3fbdff,0xff3ebbfe,0xff2a7fac,0xff327498,
+ 0xff9abbcd,0xffdce7ee,0xfff8fafb,0xfffafbfc,0xffedf2f5,0xffc6d9e3,0xff7da7be,0xff296e94,0xff2475a2,0xff206890,0xffffffff,0xffffffff,0xffc3d7e1,0xff2a8ac2,
+ 0xff32aaed,0xff1e6690,0xff79a4bd,0xffdbe7ee,0xfffafbfc,0xfffafbfc,0xffdae6ed,0xff7ba5be,0xff1d6590,0xff1d6590,0xff78a3bd,0xffdbe7ee,0xfffafbfc,0xfffafbfc,
+ 0xffd9e6ed,0xff7aa4be,0xff1b6490,0xff1b6390,0xffffffff,0xffffffff,0xffc2d5e1,0xff2383c0,0xff2e709a,0xfff5f8fa,0xffffffff,0xffecf2f5,0xff2976a7,0xff2bacff,
+ 0xff2aabff,0xff29acff,0xff29abff,0xff29aafe,0xff1b73ac,0xff276b98,0xff95b7cd,0xffdae6ee,0xfff8fafb,0xfffafbfc,0xffecf2f5,0xffc3d6e3,0xff76a1be,0xff1d6594,
+ 0xff176ba2,0xff145d90,0xff5d90b2,0xffcbdbe7,0xfff7f9fb,0xfff7f9fb,0xffccdce6,0xff5f91b4,0xff135d90,0xff1d92e3,0xff175f92,0xff9fbcd1,0xfff1f5f8,0xfff4f7f9,
+ 0xffaac4d7,0xffc8d9e5,0xffffffff,0xffffffff,0xff105b90,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff4fc9ff,0xff62cfff,0xff51cbff,0xff63d0ff,0xff52cbff,0xff53cbff,0xff53ccff,0xff53cdff,0xff64d1ff,0xff54cdff,0xff55cdff,0xff419dc2,
+ 0xff307490,0xff3a7790,0xff317490,0xff327490,0xff58cfff,0xff58d0ff,0xff327590,0xff337590,0xff327590,0xff327590,0xff439dc2,0xff317490,0xff317590,0xff317490,
+ 0xff317490,0xff419cc2,0xff4fbfed,0xff3a8db0,0xff447d94,0xff307694,0xff307694,0xff397994,0xff4591b2,0xff4bbcec,0xff50caff,0xff50caff,0xff50caff,0xff4fc9ff,
+ 0xff4fc9ff,0xff60ceff,0xff4ec8ff,0xff43afde,0xff348ab0,0xff2d7596,0xff2c7393,0xff2b7393,0xff2b7393,0xff2f7da1,0xff3896c1,0xff44b7ec,0xff48c6ff,0xff286f90,
+ 0xff337390,0xff286f90,0xff286f90,0xff3595c2,0xff45c4ff,0xff40b5ed,0xff2f87b0,0xff277194,0xff277194,0xff267194,0xff267194,0xff2e87b2,0xff3cb3ec,0xff3cb3ed,
+ 0xff2d85b0,0xff256f94,0xff256f94,0xff256f94,0xff246f94,0xff2b85b2,0xff38b0ec,0xff226c90,0xff226b90,0xff216b90,0xff216b90,0xff2c90c2,0xff237199,0xff216a90,
+ 0xff206a90,0xff206a90,0xff2376a1,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35b9ff,0xff2da1de,0xff2480b0,0xff1f6c96,0xff1d6a93,0xff1d6a93,
+ 0xff1d6993,0xff2074a1,0xff258ac1,0xff2da9ec,0xff2fb6ff,0xff2daff5,0xff2285bc,0xff1b6c97,0xff1b6b97,0xff1b6b97,0xff1b6b97,0xff2083ba,0xff29abf4,0xff2bb4ff,
+ 0xff2497d7,0xff1a6e9c,0xff196c9a,0xff196c9a,0xff186b9a,0xff176490,0xff166490,0xff166490,0xff166390,0xff26b1ff,0xff26b0ff,0xff25afff,0xff26afff,0xff26b0ff,
+ 0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff85d7ff,0xff40bdff,0xff85d8ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c1ff,
+ 0xff63ccff,0xff43c1ff,0xff44c1ff,0xff45c1ff,0xff45c2ff,0xff56c8ff,0xff46c2ff,0xff46c3ff,0xff47c3ff,0xff47c5ff,0xff47c5ff,0xff49c5ff,0xff47c3ff,0xff47c3ff,
+ 0xff47c3ff,0xff46c3ff,0xff45c3ff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff63ccff,0xff42c0ff,0xff41c0ff,0xff41c0ff,0xff61ccff,0xff41bfff,
+ 0xff40bfff,0xff40bdff,0xff40bdff,0xff3fbdff,0xff3ebcff,0xff4ec2ff,0xff3ebbff,0xff3dbcff,0xff3dbbff,0xff3cbbff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,
+ 0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff39b9ff,0xff5ac6ff,0xff38b8ff,0xff37b7ff,0xff37b5ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,
+ 0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,
+ 0xff2eaeff,0xff2eadff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2aacff,0xff2aacff,0xff29acff,0xff29abff,0xff29aaff,0xff28abff,0xff28aaff,
+ 0xff28aaff,0xff27aaff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a4ff,
+ 0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff1fa2ff,0xff1ea1ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,
+ 0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,0xff96dfff,0xff74d6ff,
+ 0xff62d0ff,0xff75d6ff,0xff75d6ff,0xff64d1ff,0xff76d7ff,0xff65d2ff,0xff66d2ff,0xff55ceff,0xff66d2ff,0xff78d8ff,0xff57ceff,0xff8addff,0xff79d9ff,0xff7ad9ff,
+ 0xff6ad5ff,0xff7bd9ff,0xff7ad9ff,0xff69d4ff,0xff57cfff,0xff57cfff,0xff57ceff,0xff67d3ff,0xff78d8ff,0xff78d7ff,0xff65d2ff,0xff54ccff,0xff76d6ff,0xff53ccff,
+ 0xff53ccff,0xff52ccff,0xff74d6ff,0xff51cbff,0xff50caff,0xff50cbff,0xff4fcaff,0xff4fcaff,0xff60ceff,0xff72d4ff,0xff4ec9ff,0xff82d9ff,0xff71d3ff,0xff70d3ff,
+ 0xff4bc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff6ed1ff,0xff6dd1ff,0xff6dd1ff,0xff5acbff,0xff7ed6ff,0xff6cd1ff,0xff47c4ff,0xff6ad0ff,0xff45c3ff,0xff6acfff,
+ 0xff6acfff,0xff6acfff,0xff69cfff,0xff55c8ff,0xff68ceff,0xff68cdff,0xff67cdff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,
+ 0xff3dbfff,0xff3dbeff,0xff3cbdff,0xff3bbeff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37baff,
+ 0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,
+ 0xff2fb5ff,0xff2eb5ff,0xff2db5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2bb3ff,0xff2bb2ff,0xff29b2ff,0xff29b3ff,0xff29b2ff,0xff29b2ff,
+ 0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26afff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff27b0ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,
+ 0xff40bdff,0xff60cbff,0xff41bfff,0xff61ccff,0xff41c0ff,0xff62ccff,0xff63ccff,0xff63ccff,0xff74d2ff,0xff63ccff,0xff43c1ff,0xff44c1ff,0xff45c1ff,0xff65ceff,
+ 0xff46c2ff,0xff67cfff,0xff46c3ff,0xff67cfff,0xff68cfff,0xff48c5ff,0xff67cfff,0xff47c3ff,0xff47c3ff,0xff47c3ff,0xff45c2ff,0xff46c2ff,0xff65ceff,0xff64cdff,
+ 0xff63cdff,0xff44c1ff,0xff63ccff,0xff42c0ff,0xff42c0ff,0xff41bfff,0xff61ccff,0xff41bfff,0xff41bfff,0xff40bdff,0xff3fbdff,0xff3fbcff,0xff3ebcff,0xff5fc9ff,
+ 0xff3dbbff,0xff5ec8ff,0xff3dbbff,0xff5dc7ff,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff5cc6ff,0xff3ab9ff,0xff39b8ff,0xff39b8ff,0xff5bc6ff,0xff38b7ff,
+ 0xff37b7ff,0xff58c5ff,0xff36b7ff,0xff58c5ff,0xff58c3ff,0xff35b5ff,0xff35b4ff,0xff57c2ff,0xff67c8ff,0xff56c2ff,0xff67c8ff,0xff33b3ff,0xff32b2ff,0xff31b2ff,
+ 0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2bacff,
+ 0xff2bacff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27aaff,0xff27aaff,0xff26a9ff,0xff25a9ff,0xff25a8ff,
+ 0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff21a5ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,
+ 0xff20a2ff,0xff1fa3ff,0xff1fa1ff,0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1c9fff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,
+ 0xff1da1ff,0xff1fa2ff,0xff1ea2ff,0xff1fa2ff,0xff4fc9ff,0xff73d5ff,0xff50caff,0xff74d6ff,0xff74d6ff,0xff52cbff,0xff53ccff,0xff76d6ff,0xff76d6ff,0xff65d2ff,
+ 0xff65d2ff,0xff56cdff,0xff55cdff,0xff78d8ff,0xff56ceff,0xff79d8ff,0xff58cfff,0xff7bd9ff,0xff59d0ff,0xff8bdeff,0xff6ad4ff,0xff58cfff,0xff58cfff,0xff57cfff,
+ 0xff57ceff,0xff79d8ff,0xff55ceff,0xff56ceff,0xff76d7ff,0xff54ccff,0xff76d6ff,0xff53ccff,0xff53ccff,0xff52ccff,0xff75d6ff,0xff51cbff,0xff50caff,0xff50caff,
+ 0xff50c9ff,0xff4fcaff,0xff4ecaff,0xff72d4ff,0xff4ec9ff,0xff71d3ff,0xff4dc8ff,0xff70d3ff,0xff4bc7ff,0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff6fd1ff,0xff49c6ff,
+ 0xff5acbff,0xff47c6ff,0xff6dd1ff,0xff47c4ff,0xff5acbff,0xff6bcfff,0xff6acfff,0xff7dd5ff,0xff6acfff,0xff57c8ff,0xff43c2ff,0xff69ceff,0xff68ceff,0xff42c2ff,
+ 0xff54c7ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,0xff3fbfff,0xff3ebeff,0xff3dbeff,0xff3cbeff,0xff3dbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,
+ 0xff3abcff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,
+ 0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb4ff,0xff2db4ff,0xff2db5ff,0xff2cb4ff,
+ 0xff2cb3ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,
+ 0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff50c3ff,0xff41bdff,0xff50c5ff,0xff41bfff,0xff62ccff,
+ 0xff63ccff,0xff52c6ff,0xff52c6ff,0xff43c0ff,0xff54c7ff,0xff44c2ff,0xff65cdff,0xff66ceff,0xff55c8ff,0xff56c8ff,0xff46c3ff,0xff58cbff,0xff68cfff,0xff59cbff,
+ 0xff68cfff,0xff57c9ff,0xff46c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff65cdff,0xff64cdff,0xff54c7ff,0xff53c7ff,0xff63ccff,0xff63ccff,0xff42bfff,0xff62ccff,
+ 0xff61ccff,0xff50c5ff,0xff40bfff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff5fcbff,0xff5fc9ff,0xff4dc2ff,0xff4dc2ff,0xff3cbbff,0xff4cc1ff,0xff3bbaff,0xff3bbaff,
+ 0xff3abaff,0xff3ab9ff,0xff49c0ff,0xff5bc6ff,0xff49c0ff,0xff39b8ff,0xff38b7ff,0xff5ac5ff,0xff37b8ff,0xff47bdff,0xff36b7ff,0xff58c3ff,0xff58c3ff,0xff46bbff,
+ 0xff57c2ff,0xff34b4ff,0xff44baff,0xff56c1ff,0xff43baff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb1ff,
+ 0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29abff,0xff29abff,0xff29abff,
+ 0xff28aaff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff27a9ff,0xff27a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff24a7ff,0xff23a5ff,
+ 0xff23a4ff,0xff22a4ff,0xff22a5ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,
+ 0xff1ca1ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1c9fff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50caff,
+ 0xff51caff,0xff51cbff,0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff53ccff,0xff54cdff,0xff55cdff,0xff55ceff,0xff55cdff,0xff56ceff,0xff56ceff,0xff57cfff,
+ 0xff58cfff,0xff58cfff,0xff59d0ff,0xff7bd9ff,0xff7bd9ff,0xff58d0ff,0xff58cfff,0xff57cfff,0xff56cfff,0xff57ceff,0xff56ceff,0xff55ceff,0xff55ceff,0xff54ccff,
+ 0xff54ccff,0xff53ccff,0xff53ccff,0xff52cbff,0xff51ccff,0xff51cbff,0xff50cbff,0xff50caff,0xff4fcaff,0xff4fcaff,0xff4ecaff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff4cc7ff,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,0xff49c6ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff47c6ff,0xff48c5ff,0xff47c4ff,0xff47c4ff,0xff59caff,
+ 0xff6bcfff,0xff58c9ff,0xff57c9ff,0xff44c2ff,0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff42c2ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff40c0ff,0xff3ec0ff,
+ 0xff3ec0ff,0xff3ebfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bbff,0xff38bcff,0xff37bbff,
+ 0xff37baff,0xff37baff,0xff36baff,0xff36baff,0xff34b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,
+ 0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb6ff,0xff2eb5ff,0xff2db5ff,0xff2cb4ff,0xff2db4ff,0xff2bb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff29b3ff,0xff29b2ff,
+ 0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff27b0ff,0xff26b1ff,0xff26afff,0xff25afff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42bfff,0xff42c0ff,0xff42c0ff,0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,
+ 0xff45c1ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff67cfff,0xff67cfff,0xff48c5ff,0xff48c5ff,0xff48c3ff,0xff48c5ff,0xff56c9ff,0xff66cfff,0xff56c8ff,0xff46c2ff,
+ 0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff44c0ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,0xff3fbdff,
+ 0xff3ebcff,0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3cbbff,0xff3cbbff,0xff3bbbff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,
+ 0xff38b8ff,0xff38b7ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff35b5ff,0xff36b5ff,0xff35b5ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff2fa9f1,
+ 0xff2175a7,0xff1c6793,0xff1c6693,0xff1c6793,0xff1d6c9c,0xff2ba3eb,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2daeff,
+ 0xff2cadff,0xff2cacff,0xff2bacff,0xff2babff,0xff29acff,0xff29acff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a9ff,0xff26a8ff,
+ 0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff36aeff,0xff24a7ff,0xff23a7ff,0xff23a7ff,0xff22a5ff,0xff33adff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,
+ 0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1da2ff,0xff1da1ff,0xff1ca0ff,0xff1ca1ff,0xff1ca0ff,0xff1ba0ff,0xff2ea9ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1da0ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff50cbff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53cbff,0xff53ccff,
+ 0xff76d6ff,0xff54cdff,0xff54cdff,0xff56cdff,0xff56ceff,0xff56ceff,0xff57ceff,0xff57cfff,0xff7ad9ff,0xff59cfff,0xff6ad5ff,0xff7bd9ff,0xff7bd9ff,0xff69d5ff,
+ 0xff57cfff,0xff57ceff,0xff79d8ff,0xff56ceff,0xff55ceff,0xff55ceff,0xff54cdff,0xff54cdff,0xff53cdff,0xff53ccff,0xff75d6ff,0xff75d6ff,0xff74d6ff,0xff62d0ff,
+ 0xff50cbff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff72d4ff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc7ff,0xff4bc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,
+ 0xff49c6ff,0xff6ed1ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c4ff,0xff45c3ff,0xff44c2ff,0xff43c3ff,0xff44c2ff,0xff43c2ff,
+ 0xff42c1ff,0xff42c1ff,0xff67cdff,0xff297aa1,0xff71a0b7,0xffe9f0f3,0xfffcfdfd,0xfff2f6f8,0xff83b0c6,0xff39b0eb,0xff3dbfff,0xff3dbeff,0xff3cbdff,0xff3cbeff,
+ 0xff3bbdff,0xff3bbdff,0xff3abdff,0xff39bcff,0xff61caff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37baff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,
+ 0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff30b7ff,0xff30b7ff,0xff45bdff,0xff44bdff,0xff2eb6ff,0xff2eb5ff,0xff43bcff,0xff42bcff,
+ 0xff57c3ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,
+ 0xff25afff,0xff25b0ff,0xff52c0ff,0xff26b0ff,0xff27b1ff,0xff27b0ff,0xff53c1ff,0xff29b2ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff50c3ff,0xff50c5ff,0xff51c5ff,
+ 0xff41bfff,0xff62ccff,0xff62ccff,0xff42c0ff,0xff63ccff,0xff44c1ff,0xff53c7ff,0xff44c1ff,0xff65ceff,0xff66ceff,0xff46c3ff,0xff46c3ff,0xff66cfff,0xff47c3ff,
+ 0xff58c9ff,0xff48c5ff,0xff48c3ff,0xff67cfff,0xff47c3ff,0xff46c2ff,0xff66cfff,0xff45c2ff,0xff55c7ff,0xff75d4ff,0xff44c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,
+ 0xff63ccff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff50c5ff,0xff60cbff,0xff50c3ff,0xff4fc3ff,0xff71d0ff,0xff5fc9ff,0xff3dbcff,0xff4dc1ff,0xff5dc8ff,0xff4cc1ff,
+ 0xff4bc1ff,0xff4bc1ff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,0xff5bc6ff,0xff3ab9ff,0xff49bfff,0xff49bfff,0xff59c6ff,0xff37b7ff,0xff48bdff,0xff55bdf5,0xff358bbd,
+ 0xff206c98,0xff206b98,0xff1f6b98,0xff1f6b98,0xff3288ba,0xff51b8f3,0xff316d90,0xff1c6590,0xffedf2f5,0xffffffff,0xfff4f7f9,0xffcddde6,0xff6894ae,0xff3baaeb,
+ 0xff2fb0ff,0xff51bfff,0xff51bfff,0xff2eaeff,0xff3fb7ff,0xff50bdff,0xff3eb7ff,0xff3db5ff,0xff61c5ff,0xff4ebdff,0xff2bacff,0xff3bb4ff,0xff4dbcff,0xff3bb3ff,
+ 0xff3ab3ff,0xff3ab2ff,0xff4cbbff,0xff28aaff,0xff39b2ff,0xff27a9ff,0xff38b1ff,0xff26a9ff,0xff26a9ff,0xff26a9ff,0xff25a7ff,0xff24a7ff,0xff24a8ff,0xff24a7ff,
+ 0xff23a5ff,0xff23a5ff,0xff46b7ff,0xff22a4ff,0xff46b5ff,0xff46b5ff,0xff32acff,0xff20a3ff,0xff44b4ff,0xff44b4ff,0xff1fa2ff,0xff31abff,0xff31abff,0xff30aaff,
+ 0xff1ea1ff,0xff41b3ff,0xff41b3ff,0xff1ca0ff,0xff1ba0ff,0xff2ea8ff,0xff2ea8ff,0xff1ca0ff,0xff41b3ff,0xff2fa9ff,0xff42b3ff,0xff30aaff,0xff42b3ff,0xff31abff,
+ 0xff4fcaff,0xff73d5ff,0xff74d6ff,0xff74d6ff,0xff63d0ff,0xff52ccff,0xff53ccff,0xff76d7ff,0xff76d7ff,0xff76d7ff,0xff55cdff,0xff77d7ff,0xff56ceff,0xff56ceff,
+ 0xff78d8ff,0xff57cfff,0xff7ad9ff,0xff58cfff,0xff58cfff,0xff5ad0ff,0xff7bd9ff,0xff59d0ff,0xff58cfff,0xff58cfff,0xff79d8ff,0xff56ceff,0xff56cdff,0xff66d3ff,
+ 0xff55cdff,0xff54cdff,0xff53cdff,0xff53ccff,0xff76d6ff,0xff75d6ff,0xff62d0ff,0xff51cbff,0xff85daff,0xff50caff,0xff72d5ff,0xff4fcaff,0xff72d4ff,0xff4ec9ff,
+ 0xff4dc9ff,0xff71d4ff,0xff4cc8ff,0xff70d2ff,0xff70d3ff,0xff5dcdff,0xff4ac7ff,0xff6fd2ff,0xff49c6ff,0xff6ed1ff,0xff49c6ff,0xff6cd1ff,0xff5acbff,0xff47c5ff,
+ 0xff6bd0ff,0xff66c5f2,0xff276e90,0xff759eb0,0xffcedee6,0xfff6f9fa,0xfff6f9fa,0xffd0dfe6,0xff7ca2b5,0xff256d90,0xff457790,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xff236c90,0xff62c6f7,0xff64cbff,0xff3cbeff,0xff3cbeff,0xff63caff,0xff63caff,0xff3abdff,0xff4ec3ff,0xff3abcff,0xff61caff,0xff39bcff,
+ 0xff38bcff,0xff5fc9ff,0xff36bbff,0xff5fc8ff,0xff5ec8ff,0xff4ac0ff,0xff34baff,0xff5dc8ff,0xff5cc6ff,0xff33b9ff,0xff5cc6ff,0xff33b8ff,0xff32b7ff,0xff32b8ff,
+ 0xff31b7ff,0xff30b6ff,0xff30b7ff,0xff30b6ff,0xff2eb5ff,0xff2eb5ff,0xff58c4ff,0xff2db4ff,0xff6ccbff,0xff2cb3ff,0xff57c3ff,0xff56c2ff,0xff2ab3ff,0xff2bb3ff,
+ 0xff55c1ff,0xff54c1ff,0xff53c1ff,0xff54c1ff,0xff52c1ff,0xff27b1ff,0xff27b1ff,0xff52c0ff,0xff26afff,0xff51bfff,0xff25b0ff,0xff52c0ff,0xff27b0ff,0xff3db9ff,
+ 0xff52c1ff,0xff3eb9ff,0xff29b2ff,0xff54c1ff,0xff3fbdff,0xff60cbff,0xff60cbff,0xff61cbff,0xff50c6ff,0xff62ccff,0xff62ccff,0xff63ccff,0xff74d2ff,0xff63cdff,
+ 0xff44c1ff,0xff64cdff,0xff65cdff,0xff65ceff,0xff55c8ff,0xff47c3ff,0xff66cfff,0xff48c3ff,0xff47c3ff,0xff58c9ff,0xff58cbff,0xff48c3ff,0xff47c3ff,0xff47c3ff,
+ 0xff66cfff,0xff45c2ff,0xff45c1ff,0xff54c7ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff42c0ff,0xff63ccff,0xff42bfff,0xff41bfff,0xff41bfff,0xff60cbff,0xff40bdff,
+ 0xff60cbff,0xff3fbdff,0xff5fc9ff,0xff3ebcff,0xff3ebcff,0xff6fcfff,0xff5dc8ff,0xff5dc8ff,0xff5cc7ff,0xff3bbaff,0xff3ab9ff,0xff3abaff,0xff3ab9ff,0xff5bc6ff,
+ 0xff3ab8ff,0xff5bc6ff,0xff38b8ff,0xff38b8ff,0xff59c5ff,0xff3e89b1,0xff779fb5,0xffffffff,0xffffffff,0xffeaf1f5,0xffe8eff4,0xffffffff,0xffffffff,0xff729fba,
+ 0xff306d90,0xffcadbe5,0xffffffff,0xffffffff,0xfff1f5f7,0xffcfdde5,0xff1b6490,0xff30b1ff,0xff52c0ff,0xff52bfff,0xff51bdff,0xff40b8ff,0xff51bdff,0xff2daeff,
+ 0xff2daeff,0xff2dadff,0xff4fbdff,0xff2badff,0xff2badff,0xff4dbcff,0xff2aacff,0xff4cbbff,0xff4cbbff,0xff28abff,0xff28aaff,0xff28aaff,0xff4abaff,0xff28a9ff,
+ 0xff5dc1ff,0xff27a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff47b8ff,0xff22a5ff,0xff22a5ff,0xff46b7ff,0xff22a4ff,
+ 0xff45b4ff,0xff45b5ff,0xff20a3ff,0xff20a3ff,0xff43b4ff,0xff43b3ff,0xff43b3ff,0xff42b3ff,0xff41b3ff,0xff41b3ff,0xff41b3ff,0xff2ea9ff,0xff1ba0ff,0xff41b2ff,
+ 0xff1ca0ff,0xff41b2ff,0xff1da0ff,0xff1da0ff,0xff42b3ff,0xff42b3ff,0xff43b3ff,0xff57bcff,0xff50caff,0xff73d5ff,0xff62d0ff,0xff74d6ff,0xff62d1ff,0xff75d6ff,
+ 0xff75d6ff,0xff76d6ff,0xff76d7ff,0xff54cdff,0xff77d7ff,0xff67d2ff,0xff78d8ff,0xff78d8ff,0xff68d3ff,0xff57cfff,0xff7ad9ff,0xff58d0ff,0xff6ad4ff,0xff8bdeff,
+ 0xff7bd9ff,0xff69d4ff,0xff58cfff,0xff57ceff,0xff79d8ff,0xff56ceff,0xff66d3ff,0xff88dcff,0xff55ceff,0xff54cdff,0xff54ccff,0xff53ccff,0xff76d6ff,0xff75d6ff,
+ 0xff74d6ff,0xff62d0ff,0xff73d6ff,0xff50caff,0xff72d4ff,0xff4fc9ff,0xff60cfff,0xff72d4ff,0xff5fceff,0xff71d3ff,0xff70d3ff,0xff70d3ff,0xff70d3ff,0xff4bc7ff,
+ 0xff4ac7ff,0xff4ac7ff,0xff5cccff,0xff80d7ff,0xff6dd1ff,0xff6dd1ff,0xff47c5ff,0xff47c4ff,0xff6bd0ff,0xff3e7994,0xffdfe8ed,0xffffffff,0xffedf3f5,0xff317596,
+ 0xff307495,0xffedf3f5,0xffffffff,0xffe2eaee,0xff477a94,0xff256d90,0xffffffff,0xffffffff,0xffc7d9e1,0xff3e7e9d,0xff2e8ebd,0xff3dbfff,0xff50c5ff,0xff64cbff,
+ 0xff63cbff,0xff50c4ff,0xff63caff,0xff62caff,0xff62caff,0xff39bcff,0xff4dc3ff,0xff60c9ff,0xff4cc3ff,0xff5fc9ff,0xff5fc8ff,0xff5ec8ff,0xff5ec8ff,0xff36b9ff,
+ 0xff35b9ff,0xff35baff,0xff48bfff,0xff5cc6ff,0xff5bc6ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff30b7ff,0xff2fb6ff,0xff2fb6ff,0xff58c4ff,
+ 0xff2db4ff,0xff2db4ff,0xff57c4ff,0xff2cb4ff,0xff56c3ff,0xff40bcff,0xff56c2ff,0xff56c1ff,0xff3fbaff,0xff54c1ff,0xff3fbaff,0xff53c1ff,0xff3eb9ff,0xff52c1ff,
+ 0xff52c0ff,0xff3cb9ff,0xff51c0ff,0xff25b0ff,0xff25b0ff,0xff3cb8ff,0xff52c1ff,0xff52c1ff,0xff52c1ff,0xff53c1ff,0xff54c1ff,0xff69c9ff,0xff3fbdff,0xff40bdff,
+ 0xff41bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff43c0ff,0xff43c1ff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,
+ 0xff77d4ff,0xff67cfff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff57c9ff,0xff66cfff,0xff66cfff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c0ff,
+ 0xff42c0ff,0xff42c1ff,0xff42c0ff,0xff42c0ff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bfff,0xff3fbdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3ebbff,0xff3dbbff,
+ 0xff3cbbff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff38b8ff,0xff37b8ff,0xff38b7ff,0xff347194,
+ 0xfffafbfc,0xffffffff,0xffcadbe5,0xff2172a1,0xff2172a1,0xffc8d9e3,0xffffffff,0xfffafbfc,0xff1e6894,0xff1d6590,0xffffffff,0xffffffff,0xffc3d6e1,0xff2587c2,
+ 0xff30b1ff,0xff30b0ff,0xff2fb1ff,0xff2fb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2cadff,0xff2badff,0xff2bacff,
+ 0xff2aacff,0xff2aacff,0xff29abff,0xff28aaff,0xff28abff,0xff28aaff,0xff4abaff,0xff4bb9ff,0xff4ab9ff,0xff27a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,
+ 0xff24a7ff,0xff24a7ff,0xff48b8ff,0xff23a5ff,0xff23a4ff,0xff23a4ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff20a2ff,
+ 0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff1da0ff,0xff1ca0ff,0xff1ca0ff,0xff41b2ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51cbff,0xff51caff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54cdff,0xff54ccff,0xff55cdff,0xff55cdff,
+ 0xff56ceff,0xff56ceff,0xff57ceff,0xff57cfff,0xff58cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff58cfff,0xff58cfff,0xff57cfff,0xff57ceff,0xff56ceff,
+ 0xff56ceff,0xff55cdff,0xff55cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff52cbff,0xff52cbff,0xff51cbff,0xff51caff,0xff50cbff,0xff50caff,0xff50caff,0xff4fcaff,
+ 0xff4ecaff,0xff4ec9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff48c6ff,0xff48c5ff,0xff48c5ff,
+ 0xff48c5ff,0xff47c5ff,0xff46c4ff,0xff287294,0xffdee8ee,0xffffffff,0xffedf3f5,0xff307495,0xff2e7394,0xffeaf1f5,0xffffffff,0xffdde8ee,0xff267094,0xff246d90,
+ 0xffffffff,0xffffffff,0xffc5d8e1,0xff2f91c2,0xff3fbfff,0xff3dbeff,0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff39bcff,
+ 0xff39bcff,0xff38bcff,0xff38bbff,0xff38bbff,0xff37baff,0xff36baff,0xff36baff,0xff36b9ff,0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff34b8ff,0xff33b8ff,0xff33b7ff,
+ 0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2fb5ff,0xff2db5ff,0xff2eb4ff,0xff2cb5ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,
+ 0xff2ab3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff26afff,0xff25afff,0xff25b0ff,0xff26b1ff,
+ 0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff61cbff,0xff61ccff,0xff41bfff,0xff42bfff,0xff42c0ff,0xff63ccff,
+ 0xff53c6ff,0xff44c1ff,0xff44c1ff,0xff45c1ff,0xff45c2ff,0xff46c2ff,0xff45c2ff,0xff46c3ff,0xff47c3ff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c3ff,
+ 0xff47c3ff,0xff46c3ff,0xff65cfff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff54c7ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,
+ 0xff41bdff,0xff50c3ff,0xff3fbdff,0xff3fbdff,0xff3ebcff,0xff3ebcff,0xff4dc1ff,0xff3dbbff,0xff3dbbff,0xff5dc8ff,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff4ac1ff,
+ 0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff39b8ff,0xff49bfff,0xff38b7ff,0xff37b7ff,0xff267eaf,0xff6c9cb6,0xffffffff,0xffffffff,0xffe9f0f4,0xffe8eff4,0xffffffff,
+ 0xffffffff,0xff6c9bb7,0xff237baf,0xff1d6590,0xffffffff,0xffffffff,0xffc8d8e1,0xff2587c2,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,
+ 0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff3db5ff,0xff2badff,0xff2bacff,0xff3bb4ff,0xff4dbbff,0xff3ab3ff,0xff28abff,0xff28aaff,0xff28abff,0xff4bbaff,
+ 0xff28a9ff,0xff27a9ff,0xff26a9ff,0xff27a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff48b8ff,0xff24a7ff,0xff23a7ff,0xff23a5ff,0xff23a5ff,
+ 0xff22a4ff,0xff21a3ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff30abff,0xff1ea1ff,0xff1ea2ff,0xff1da1ff,0xff1da0ff,0xff41b2ff,
+ 0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da2ff,0xff1fa2ff,0xff1fa1ff,0xff1fa3ff,0xff50caff,0xff50caff,0xff73d5ff,0xff74d6ff,
+ 0xff52cbff,0xff53cbff,0xff75d6ff,0xff53ccff,0xff76d7ff,0xff54ccff,0xff54cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff56ceff,0xff57cfff,0xff57cfff,0xff58cfff,
+ 0xff58d0ff,0xff59d0ff,0xff59d0ff,0xff58cfff,0xff58cfff,0xff57cfff,0xff79d8ff,0xff56cfff,0xff56ceff,0xff55ceff,0xff77d7ff,0xff54cdff,0xff54ccff,0xff53ccff,
+ 0xff53ccff,0xff53cbff,0xff51ccff,0xff51cbff,0xff51caff,0xff62cfff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4ec9ff,0xff71d4ff,0xff4dc8ff,0xff4cc8ff,0xff70d3ff,
+ 0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff6ed1ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff6cd1ff,0xff47c4ff,0xff46c4ff,0xff42baf2,0xff276f90,0xff6a9bb2,
+ 0xffcfdfe7,0xfff7fafb,0xfff7fafb,0xffd0dfe6,0xff6b9cb4,0xff256e90,0xff3eb6f1,0xff246d90,0xffffffff,0xffffffff,0xffc5d8e1,0xff2f92c2,0xff3ebfff,0xff3dbfff,
+ 0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3bbdff,0xff3bbeff,0xff3abdff,0xff3abdff,0xff3abcff,0xff61caff,0xff39bcff,0xff38bbff,0xff5fc9ff,0xff37bbff,0xff5ec9ff,
+ 0xff36baff,0xff36b9ff,0xff5ec7ff,0xff34b9ff,0xff33b9ff,0xff34b8ff,0xff33b8ff,0xff33b7ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff2fb7ff,0xff5ac5ff,
+ 0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff53c1ff,0xff28b2ff,
+ 0xff27b1ff,0xff27b1ff,0xff52c0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff29b1ff,0xff29b3ff,
+ 0xff40bdff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff63ccff,0xff42c0ff,0xff74d2ff,0xff64ccff,0xff63ceff,0xff54c8ff,0xff65ceff,0xff65ceff,
+ 0xff56c8ff,0xff66cfff,0xff67cfff,0xff67cfff,0xff58cbff,0xff68cfff,0xff68cfff,0xff57cbff,0xff46c3ff,0xff66cfff,0xff46c3ff,0xff55c8ff,0xff65ceff,0xff65cdff,
+ 0xff64cdff,0xff63cdff,0xff63ccff,0xff63cdff,0xff41c0ff,0xff62ccff,0xff41bfff,0xff61ccff,0xff41bfff,0xff71d0ff,0xff40bdff,0xff4fc2ff,0xff5fcbff,0xff5fc8ff,
+ 0xff5ec9ff,0xff3dbbff,0xff5ec8ff,0xff3cbbff,0xff4cc1ff,0xff5cc7ff,0xff5cc7ff,0xff5cc7ff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff49bfff,0xff6bccff,0xff5ac5ff,
+ 0xff37b7ff,0xff59c5ff,0xff56bdf5,0xff4190bc,0xff347397,0xff347397,0xff347397,0xff296f97,0xff3f8eba,0xff31abf4,0xff55c1ff,0xff1c6590,0xff1c6590,0xff2f6d90,
+ 0xff1c6590,0xff4d97c2,0xff53c0ff,0xff53c0ff,0xff52bfff,0xff51bfff,0xff51bfff,0xff40b7ff,0xff51bdff,0xff50bdff,0xff50bdff,0xff3db5ff,0xff61c5ff,0xff4ebdff,
+ 0xff2bacff,0xff4ebcff,0xff2aacff,0xff2aabff,0xff29abff,0xff28abff,0xff4cbbff,0xff28aaff,0xff27aaff,0xff28a9ff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff26a8ff,
+ 0xff25a8ff,0xff25a7ff,0xff49b8ff,0xff24a7ff,0xff47b7ff,0xff47b7ff,0xff47b7ff,0xff33adff,0xff5abfff,0xff46b5ff,0xff45b5ff,0xff32acff,0xff45b4ff,0xff44b4ff,
+ 0xff31abff,0xff43b3ff,0xff56bbff,0xff30aaff,0xff1da1ff,0xff1da0ff,0xff41b2ff,0xff1ca0ff,0xff41b2ff,0xff41b2ff,0xff41b2ff,0xff2ea9ff,0xff41b2ff,0xff42b2ff,
+ 0xff2faaff,0xff42b3ff,0xff43b3ff,0xff43b3ff,0xff4fcaff,0xff50cbff,0xff50caff,0xff51cbff,0xff51cbff,0xff63d0ff,0xff64d0ff,0xff53ccff,0xff76d7ff,0xff54cdff,
+ 0xff76d7ff,0xff77d7ff,0xff55cdff,0xff56ceff,0xff79d8ff,0xff79d9ff,0xff79d9ff,0xff7ad9ff,0xff7bd9ff,0xff7bd9ff,0xff7bd9ff,0xff7ad9ff,0xff58cfff,0xff7ad9ff,
+ 0xff57ceff,0xff78d8ff,0xff56ceff,0xff55cdff,0xff76d7ff,0xff65d2ff,0xff76d6ff,0xff87dbff,0xff52cbff,0xff75d6ff,0xff62d1ff,0xff62cfff,0xff51caff,0xff73d5ff,
+ 0xff50caff,0xff72d5ff,0xff4ec9ff,0xff4ec9ff,0xff72d4ff,0xff4dc8ff,0xff71d3ff,0xff4cc8ff,0xff6fd2ff,0xff4bc7ff,0xff4bc6ff,0xff6fd1ff,0xff6fd2ff,0xff48c6ff,
+ 0xff6dd1ff,0xff48c5ff,0xff6cd1ff,0xff47c5ff,0xff46c4ff,0xff6bd0ff,0xff45c3ff,0xff6ad0ff,0xff6acfff,0xff44c2ff,0xff43c2ff,0xff69ceff,0xff68ceff,0xff42c2ff,
+ 0xff67cdff,0xff41c1ff,0xff53c6ff,0xff53c6ff,0xff3fbfff,0xff66cdff,0xff3ec0ff,0xff65ccff,0xff64ccff,0xff3dbeff,0xff3cbeff,0xff63cbff,0xff76d1ff,0xff63caff,
+ 0xff75d1ff,0xff3abdff,0xff61caff,0xff38bcff,0xff37bbff,0xff60c9ff,0xff37bbff,0xff37bbff,0xff36baff,0xff49c1ff,0xff49c0ff,0xff35b9ff,0xff34b9ff,0xff33b8ff,
+ 0xff33b8ff,0xff33b7ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff59c5ff,0xff2fb5ff,0xff59c5ff,0xff2fb5ff,0xff2db5ff,0xff57c4ff,0xff57c3ff,0xff2cb4ff,
+ 0xff56c3ff,0xff56c2ff,0xff55c2ff,0xff55c2ff,0xff55c1ff,0xff29b2ff,0xff54c1ff,0xff28b2ff,0xff27b1ff,0xff3db9ff,0xff3db8ff,0xff26b0ff,0xff51c0ff,0xff25b0ff,
+ 0xff26b0ff,0xff26b0ff,0xff52c0ff,0xff3db9ff,0xff28b1ff,0xff53c1ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff62ccff,
+ 0xff42c0ff,0xff42c0ff,0xff63cdff,0xff43c1ff,0xff64cdff,0xff64cdff,0xff45c2ff,0xff45c2ff,0xff66ceff,0xff67cfff,0xff66cfff,0xff67cfff,0xff67cfff,0xff49c5ff,
+ 0xff48c5ff,0xff57cbff,0xff57c9ff,0xff57c8ff,0xff45c2ff,0xff65ceff,0xff44c2ff,0xff54c7ff,0xff63cdff,0xff63cdff,0xff43c0ff,0xff63cdff,0xff41c0ff,0xff51c6ff,
+ 0xff62ccff,0xff41bfff,0xff40bfff,0xff60cbff,0xff40bdff,0xff5fc9ff,0xff3fbcff,0xff4ec2ff,0xff5ec9ff,0xff4dc1ff,0xff4dc1ff,0xff3cbbff,0xff5dc8ff,0xff3bbaff,
+ 0xff4bc1ff,0xff5cc6ff,0xff5cc6ff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff5ac6ff,0xff38b8ff,0xff48bdff,0xff59c5ff,0xff59c5ff,0xff35b5ff,0xff58c3ff,0xff35b4ff,
+ 0xff34b4ff,0xff57c2ff,0xff56c2ff,0xff33b4ff,0xff67c8ff,0xff33b3ff,0xff54c1ff,0xff31b2ff,0xff31b1ff,0xff66c8ff,0xff30b1ff,0xff53c0ff,0xff52c0ff,0xff2eb0ff,
+ 0xff2eb0ff,0xff51bfff,0xff51bfff,0xff2dadff,0xff3eb7ff,0xff2dadff,0xff4fbdff,0xff2cadff,0xff3cb4ff,0xff4dbcff,0xff2aacff,0xff4cbbff,0xff29abff,0xff4cbbff,
+ 0xff28abff,0xff28aaff,0xff28aaff,0xff38b1ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff37b0ff,0xff25a8ff,0xff36b0ff,0xff35aeff,0xff24a7ff,0xff48b8ff,0xff34adff,
+ 0xff23a5ff,0xff47b5ff,0xff46b5ff,0xff21a4ff,0xff45b4ff,0xff46b4ff,0xff20a3ff,0xff20a2ff,0xff31acff,0xff1fa3ff,0xff43b3ff,0xff30aaff,0xff1ea1ff,0xff42b3ff,
+ 0xff1da0ff,0xff1ca0ff,0xff41b2ff,0xff1ba0ff,0xff2ea9ff,0xff2ea9ff,0xff1ca0ff,0xff2faaff,0xff30aaff,0xff42b3ff,0xff1ea2ff,0xff31abff,0xff50caff,0xff50caff,
+ 0xff51caff,0xff51cbff,0xff62d0ff,0xff64d0ff,0xff53cbff,0xff53ccff,0xff65d1ff,0xff54cdff,0xff66d2ff,0xff56ceff,0xff78d8ff,0xff78d8ff,0xff57ceff,0xff68d3ff,
+ 0xff58cfff,0xff69d4ff,0xff59d0ff,0xff7bd9ff,0xff7bd9ff,0xff58cfff,0xff7ad9ff,0xff57cfff,0xff57ceff,0xff56ceff,0xff78d8ff,0xff66d2ff,0xff66d2ff,0xff65d2ff,
+ 0xff76d6ff,0xff76d6ff,0xff52ccff,0xff52ccff,0xff62d0ff,0xff51caff,0xff62d0ff,0xff73d5ff,0xff73d5ff,0xff4fc9ff,0xff72d5ff,0xff60ceff,0xff5fceff,0xff71d3ff,
+ 0xff4cc8ff,0xff4cc8ff,0xff4bc7ff,0xff6fd2ff,0xff5dccff,0xff5bccff,0xff5bccff,0xff6ed1ff,0xff5bcbff,0xff48c5ff,0xff47c5ff,0xff6cd1ff,0xff46c4ff,0xff6bd0ff,
+ 0xff6acfff,0xff6acfff,0xff57c9ff,0xff43c3ff,0xff44c2ff,0xff56c8ff,0xff56c8ff,0xff68ceff,0xff54c7ff,0xff54c6ff,0xff53c7ff,0xff3fc0ff,0xff3fc0ff,0xff65cdff,
+ 0xff65ccff,0xff51c5ff,0xff50c5ff,0xff3dbeff,0xff3cbeff,0xff4fc5ff,0xff4fc4ff,0xff63caff,0xff4ec3ff,0xff39bcff,0xff39bcff,0xff60caff,0xff38bbff,0xff4bc2ff,
+ 0xff5fc9ff,0xff4bc1ff,0xff4ac1ff,0xff49c0ff,0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff70cdff,0xff47bfff,0xff32b8ff,0xff47beff,0xff6fccff,0xff31b6ff,0xff5ac5ff,
+ 0xff2fb6ff,0xff2fb6ff,0xff59c4ff,0xff44bcff,0xff57c4ff,0xff2db4ff,0xff41bcff,0xff2cb4ff,0xff41bbff,0xff2bb4ff,0xff55c2ff,0xff56c2ff,0xff2ab2ff,0xff29b2ff,
+ 0xff3fbaff,0xff3eb9ff,0xff3eb9ff,0xff3db9ff,0xff26b0ff,0xff26b0ff,0xff3cb8ff,0xff51c0ff,0xff3bb7ff,0xff26b0ff,0xff52c0ff,0xff52c1ff,0xff28b1ff,0xff3eb9ff,
+ 0xff53c1ff,0xff3fbaff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff50c6ff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff42c1ff,0xff44c0ff,0xff44c1ff,0xff44c1ff,
+ 0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff46c3ff,0xff47c5ff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff57c9ff,0xff46c2ff,0xff46c3ff,0xff45c2ff,
+ 0xff45c2ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bdff,0xff3fbdff,0xff3fbdff,
+ 0xff3fbcff,0xff3ebcff,0xff3dbcff,0xff4abaf4,0xff3ab3f4,0xff39b2f4,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3abaff,0xff3ab9ff,0xff39b9ff,0xff39b9ff,
+ 0xff39b8ff,0xff38b7ff,0xff38b7ff,0xff47bdff,0xff58c3ff,0xff47bdff,0xff35b5ff,0xff35b4ff,0xff35b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff43baff,
+ 0xff32b2ff,0xff32b2ff,0xff32b2ff,0xff41b8ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2dadff,
+ 0xff2cadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2aacff,0xff2aabff,0xff3ab3ff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff27a9ff,
+ 0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff36aeff,0xff24a7ff,0xff24a7ff,0xff34adff,0xff24a5ff,0xff22a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff20a4ff,
+ 0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1ea2ff,0xff1fa1ff,0xff2faaff,0xff1da0ff,0xff1ca1ff,0xff1ca1ff,0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff50caff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff53ccff,
+ 0xff54ccff,0xff54cdff,0xff54cdff,0xff55cdff,0xff55cdff,0xff56ceff,0xff57ceff,0xff58cfff,0xff58cfff,0xff58d0ff,0xff4fb8e1,0xff3d8faf,0xff357b97,0xff337793,
+ 0xff327793,0xff327793,0xff3885a5,0xff46a8d0,0xff55cbfd,0xff55ceff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53ccff,0xff52ccff,0xff52cbff,0xff52ccff,0xff51cbff,
+ 0xff4dc0f1,0xff3484a7,0xff2e7493,0xff2e7493,0xff2e7493,0xff307b9c,0xff307b9d,0xff3b83a3,0xff70a4bc,0xff3a97c2,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac7ff,
+ 0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff48c4ff,0xff46c5ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff44c2ff,0xff43c2ff,
+ 0xff42c2ff,0xff41c1ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff52c5ff,0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff50c5ff,0xff50c5ff,0xff3bbdff,
+ 0xff4fc4ff,0xff3bbdff,0xff3abdff,0xff39bcff,0xff4dc2ff,0xff4cc3ff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff35b9ff,
+ 0xff33b9ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,
+ 0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff2ab3ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b1ff,
+ 0xff25afff,0xff25afff,0xff25b0ff,0xff3cb8ff,0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff3eb9ff,0xff3fbaff,0xff3fbdff,0xff40bdff,0xff40bdff,0xff41bfff,
+ 0xff61ccff,0xff62ccff,0xff62ccff,0xff42c0ff,0xff74d3ff,0xff63cdff,0xff63cdff,0xff44c1ff,0xff65ceff,0xff65ceff,0xff45c3ff,0xff67cfff,0xff67cfff,0xff52a6cc,
+ 0xff427a94,0xff97b9c8,0xffdfe9ee,0xfff8fafb,0xfffbfcfc,0xffebf1f4,0xffb6cdd8,0xff4b849f,0xff4285a6,0xff64cdff,0xff54c7ff,0xff74d3ff,0xff63ccff,0xff63ccff,
+ 0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bdff,0xff4883a1,0xff7da4b7,0xffe8eff3,0xfffcfdfd,0xfff2f6f8,0xff82aac0,0xff9cbac9,0xfff2f6f7,0xffc9d9e1,0xff4798c2,
+ 0xff5dc7ff,0xff5cc7ff,0xff5cc7ff,0xff4ac1ff,0xff6dcdff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff5ac6ff,0xff5ac5ff,0xff49bdff,0xff59c5ff,0xff58c5ff,0xff58c3ff,
+ 0xff58c3ff,0xff58c3ff,0xff57c2ff,0xff45bbff,0xff57c2ff,0xff67c8ff,0xff55c1ff,0xff42baff,0xff32b3ff,0xff31b2ff,0xff31b2ff,0xff54c1ff,0xff30b1ff,0xff2fb0ff,
+ 0xff2fb0ff,0xff52bfff,0xff51bfff,0xff2eb0ff,0xff51bdff,0xff2eadff,0xff2daeff,0xff2dadff,0xff4fbdff,0xff4fbdff,0xff2bacff,0xff2babff,0xff2aabff,0xff29abff,
+ 0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff5ec2ff,0xff4ab9ff,0xff38b1ff,0xff49b8ff,0xff49b8ff,0xff49b8ff,0xff36aeff,0xff37aeff,0xff49b8ff,0xff35aeff,
+ 0xff35aeff,0xff47b7ff,0xff47b7ff,0xff33adff,0xff46b5ff,0xff22a4ff,0xff46b5ff,0xff20a3ff,0xff44b4ff,0xff44b4ff,0xff1fa2ff,0xff43b3ff,0xff43b3ff,0xff42b3ff,
+ 0xff41b3ff,0xff41b3ff,0xff41b3ff,0xff2ea9ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff2ea9ff,0xff2fa9ff,0xff1ea1ff,0xff1da1ff,0xff1fa1ff,0xff42b3ff,0xff43b3ff,
+ 0xff4fcaff,0xff50caff,0xff50cbff,0xff51cbff,0xff75d6ff,0xff52cbff,0xff52ccff,0xff76d6ff,0xff76d7ff,0xff55cdff,0xff77d7ff,0xff77d7ff,0xff56ceff,0xff57ceff,
+ 0xff79d8ff,0xff79d8ff,0xff57cfff,0xff3e7e97,0xffc3d4db,0xffffffff,0xffffffff,0xffdfe9ee,0xffe2eaee,0xffffffff,0xffffffff,0xffebf0f3,0xff4089a7,0xff52c6f5,
+ 0xff4b9cbd,0xff468098,0xff317a98,0xff317a98,0xff317a98,0xff3c94ba,0xff4ec1f3,0xff2e7290,0xff417990,0xffedf3f5,0xffffffff,0xfff6f8f9,0xffcfdfe6,0xff6698ae,
+ 0xffffffff,0xffffffff,0xffc7d9e1,0xff357490,0xff3f7790,0xff2a7090,0xff2a7090,0xff5198ba,0xff4786a4,0xff297090,0xff296f90,0xff3e7690,0xff2f83aa,0xff3592bd,
+ 0xff3c7590,0xff3c7590,0xff286e90,0xff4c95b8,0xff488cac,0xff277194,0xff277093,0xff3d7793,0xff276f93,0xff4283a3,0xff359dd0,0xff54c5fe,0xff3a7490,0xff3a7490,
+ 0xff2f6f90,0xff2e6f90,0xff2f7294,0xff246f94,0xff236f94,0xff398db7,0xff2f7396,0xff237096,0xff2e7396,0xff2e7396,0xff2985b4,0xff35afee,0xff4dc3ff,0xff4cc2ff,
+ 0xff38bcff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,0xff5dc7ff,0xff33b8ff,0xff5cc6ff,0xff5bc6ff,0xff31b7ff,0xff32b7ff,
+ 0xff5ac5ff,0xff5ac5ff,0xff30b6ff,0xff5ac5ff,0xff59c4ff,0xff2eb5ff,0xff2eb5ff,0xff42bcff,0xff57c3ff,0xff57c3ff,0xff2cb4ff,0xff56c3ff,0xff2ab3ff,0xff2ab2ff,
+ 0xff55c1ff,0xff54c1ff,0xff29b2ff,0xff3eb9ff,0xff52c1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff51c0ff,0xff51c0ff,0xff52c0ff,0xff26b0ff,0xff52c1ff,0xff27b1ff,
+ 0xff28b1ff,0xff28b2ff,0xff3fbaff,0xff3fbaff,0xff3fbdff,0xff50c3ff,0xff61ccff,0xff61ccff,0xff61ccff,0xff41c0ff,0xff42bfff,0xff63ccff,0xff74d3ff,0xff63cdff,
+ 0xff64cdff,0xff64cdff,0xff65ceff,0xff66ceff,0xff66ceff,0xff67cfff,0xff47c3ff,0xff2a7397,0xfff8fafb,0xffffffff,0xffdee9ee,0xff2a6f91,0xff437890,0xff97b6c4,
+ 0xffeef2f5,0xffedf2f5,0xff6da4bf,0xff387490,0xff6c9ab0,0xffd4e0e6,0xfff7f9fa,0xfff6f9fa,0xffd0dfe6,0xff6d9db5,0xff256c90,0xff256b90,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffd6e2e9,0xffffffff,0xffd3e0e6,0xff2b6f93,0xff3f7591,0xffecf1f5,
+ 0xffffffff,0xffe5ecf0,0xff337090,0xff347293,0xffcedde6,0xffffffff,0xffd2e0e9,0xff387293,0xffa2bdcc,0xffe2ebef,0xfffafbfc,0xfffcfcfd,0xffeaf1f5,0xffb6cbd8,
+ 0xff32739a,0xff288cc7,0xff1c6590,0xffffffff,0xffffffff,0xffccdce6,0xffccdbe3,0xfffafbfc,0xff96b7cc,0xff6a9ab7,0xffd2e0e9,0xfff8fafb,0xfff8fafb,0xffd9e4ea,
+ 0xff74a0bc,0xff196290,0xff29a0ec,0xff2badff,0xff2bacff,0xff2aacff,0xff2aabff,0xff2aabff,0xff29abff,0xff4cbaff,0xff4bbbff,0xff39b2ff,0xff4bbaff,0xff27a9ff,
+ 0xff4ab9ff,0xff49b9ff,0xff49b9ff,0xff49b8ff,0xff37aeff,0xff5bc0ff,0xff49b8ff,0xff5bc0ff,0xff47b7ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff5abfff,0xff33adff,
+ 0xff21a4ff,0xff45b5ff,0xff45b4ff,0xff44b4ff,0xff44b3ff,0xff43b3ff,0xff30abff,0xff42b3ff,0xff41b3ff,0xff41b3ff,0xff2fa9ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,
+ 0xff1ba0ff,0xff1ca0ff,0xff41b2ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff51cbff,0xff51caff,0xff74d6ff,0xff52ccff,
+ 0xff53ccff,0xff76d6ff,0xff76d7ff,0xff54ccff,0xff55cdff,0xff77d7ff,0xff56ceff,0xff56ceff,0xff78d8ff,0xff79d8ff,0xff58cfff,0xff3e7e97,0xffc6d7dd,0xffffffff,
+ 0xffffffff,0xfff1f5f7,0xffd2dee3,0xffaac6d1,0xff85a8b6,0xff4b7f94,0xff3684a3,0xff76a2b5,0xffffffff,0xffffffff,0xffebf2f5,0xffeaf1f4,0xffffffff,0xffffffff,
+ 0xff7da7ba,0xff2e7390,0xffd3dfe5,0xffffffff,0xffffffff,0xfff3f6f7,0xffcedee5,0xffcedee5,0xffffffff,0xffffffff,0xfff2f6f7,0xffd2dfe5,0xff90b0bf,0xffffffff,
+ 0xfffcfdfd,0xff367997,0xff6d97ab,0xffffffff,0xffffffff,0xffffffff,0xff578ea8,0xff327595,0xfffbfcfc,0xffffffff,0xff82abbf,0xffa4becb,0xffffffff,0xffffffff,
+ 0xffe8eff2,0xffd4e2e9,0xfffeffff,0xffffffff,0xffbfd4de,0xff317494,0xff3a7490,0xffffffff,0xffffffff,0xffffffff,0xfff0f4f6,0xffdce8ee,0xff9bbccc,0xffffffff,
+ 0xfffeffff,0xffd6e4ea,0xffd6e3ea,0xfffeffff,0xffffffff,0xff7ca7be,0xff2882b1,0xff38bcff,0xff38bcff,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,
+ 0xff35b9ff,0xff35b9ff,0xff5dc7ff,0xff34b9ff,0xff5cc6ff,0xff5cc6ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff5ac5ff,0xff30b6ff,0xff59c5ff,0xff59c5ff,0xff2fb5ff,
+ 0xff2eb5ff,0xff42bcff,0xff57c3ff,0xff42bcff,0xff40bcff,0xff56c2ff,0xff2bb3ff,0xff2ab3ff,0xff55c1ff,0xff54c1ff,0xff29b1ff,0xff53c1ff,0xff53c1ff,0xff27b0ff,
+ 0xff27b1ff,0xff26b1ff,0xff51c0ff,0xff51c0ff,0xff52c0ff,0xff26b0ff,0xff27b1ff,0xff52c0ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,
+ 0xff40bfff,0xff41bfff,0xff62ccff,0xff62ccff,0xff63ccff,0xff42c0ff,0xff63ccff,0xff44c1ff,0xff44c1ff,0xff64ceff,0xff45c2ff,0xff45c2ff,0xff66ceff,0xff66cfff,
+ 0xff65cdfd,0xff51a3c9,0xff427a94,0xff93b6c6,0xffdee9ee,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe7eef2,0xff5588a0,0xffdfe8ed,0xffffffff,0xffeff3f5,
+ 0xff427b96,0xff417995,0xffedf3f5,0xffffffff,0xffdfe9ee,0xff266f94,0xff407590,0xffffffff,0xffffffff,0xffc7d8e1,0xff3a7c9d,0xff367290,0xffffffff,0xffffffff,
+ 0xffc9d9e1,0xff447f9d,0xff427a98,0xfff8fafb,0xffffffff,0xff739cb2,0xffabc2cf,0xffffffff,0xfffbfcfc,0xffffffff,0xff9ebdcf,0xff6093b0,0xffffffff,0xfff9fafb,
+ 0xff407898,0xff5989a5,0xff769eb5,0xff77a3bc,0xff36769c,0xff6d98b1,0xffe5edf2,0xffffffff,0xfffafbfc,0xff1d6590,0xff1c6590,0xffffffff,0xffffffff,0xfff9fafb,
+ 0xff34759c,0xff306f93,0xffdde8ee,0xffffffff,0xfff2f6f8,0xffcadbe5,0xffcadae5,0xfff2f6f8,0xffffffff,0xffdae5ed,0xff1a6595,0xff2cacff,0xff2badff,0xff2aacff,
+ 0xff29acff,0xff29abff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff5ec1ff,0xff4ab9ff,0xff38b1ff,0xff49b8ff,0xff26a8ff,0xff25a8ff,0xff24a8ff,0xff49b8ff,
+ 0xff24a7ff,0xff48b8ff,0xff35adff,0xff47b7ff,0xff47b7ff,0xff33adff,0xff46b5ff,0xff21a4ff,0xff45b5ff,0xff45b4ff,0xff20a3ff,0xff20a3ff,0xff43b4ff,0xff43b3ff,
+ 0xff43b3ff,0xff56bbff,0xff41b3ff,0xff41b3ff,0xff41b2ff,0xff2ea9ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff1ca1ff,0xff1da0ff,0xff41b3ff,0xff1ea1ff,0xff1ea2ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54ccff,0xff54cdff,0xff55cdff,0xff55ceff,
+ 0xff56ceff,0xff56ceff,0xff56ceff,0xff57cfff,0xff56cdfc,0xff4a859d,0xff7ca6b7,0xff7ca6b7,0xff578ea4,0xff407e98,0xff6598ac,0xffabc7d2,0xffffffff,0xffffffff,
+ 0xffb1cbd5,0xfffafbfc,0xffffffff,0xffcedee5,0xff3581a1,0xff3481a1,0xffcedde3,0xffffffff,0xfffafcfc,0xff397994,0xff2e7390,0xffffffff,0xffffffff,0xffc7d9e1,
+ 0xff3c9ac2,0xff2c7290,0xffffffff,0xffffffff,0xffc7d9e1,0xff3a97c1,0xff2c7696,0xffb8cfda,0xffffffff,0xffa5c2d0,0xffe7eff3,0xffffffff,0xff97b9c8,0xffffffff,
+ 0xffe9f0f4,0xff9fbfce,0xffffffff,0xffb8cfda,0xff287395,0xff548da8,0xffc2d6e0,0xfff0f5f7,0xfffbfcfc,0xffd3e2e9,0xffeaf1f5,0xffffffff,0xffffffff,0xff256c90,
+ 0xff246c90,0xffffffff,0xffffffff,0xffd4e2e9,0xff247095,0xff3a7593,0xfffbfcfc,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff9fafb,
+ 0xff216e95,0xff39bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,
+ 0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff2fb6ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,
+ 0xff2bb3ff,0xff2ab2ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff26b0ff,0xff26b0ff,
+ 0xff27b1ff,0xff27b1ff,0xff53c1ff,0xff29b1ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bfff,0xff41bdff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff42c1ff,
+ 0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff45c1ff,0xff45c2ff,0xff46c3ff,0xff46c3ff,0xff45c1fc,0xff4f89a4,0xffffffff,0xffffffff,0xffd8e5ea,0xff397a99,
+ 0xff297093,0xff4c86a3,0xffffffff,0xffffffff,0xffb8cfda,0xffdee8ee,0xffffffff,0xffedf3f5,0xff307395,0xff2d7294,0xffeaf1f5,0xffffffff,0xffdde8ee,0xff266f94,
+ 0xff256b90,0xffffffff,0xffffffff,0xffc5d7e1,0xff308fc2,0xff236a90,0xfffeffff,0xffffffff,0xffc7d9e3,0xff236d94,0xff2a85b6,0xff6194b0,0xffffffff,0xfff4f7f9,
+ 0xffffffff,0xffebf1f5,0xff256c93,0xffebf1f5,0xffffffff,0xfff4f7f9,0xffffffff,0xff6194b0,0xff2273a2,0xffe2ebf0,0xffffffff,0xffdfe9ee,0xff2c7098,0xff276e97,
+ 0xffe1ebf0,0xffffffff,0xffffffff,0xff1d6590,0xff1c6590,0xffffffff,0xffffffff,0xffc4d7e2,0xff227fb7,0xff1c6693,0xffe0e9ef,0xffffffff,0xffdce7ee,0xff1f6693,
+ 0xff1b6490,0xff578cae,0xff4b84a8,0xff34749d,0xff1a6595,0xff2cacff,0xff2badff,0xff2aacff,0xff2aabff,0xff2aacff,0xff28abff,0xff28abff,0xff28aaff,0xff28aaff,
+ 0xff28aaff,0xff27aaff,0xff27a9ff,0xff27a8ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,
+ 0xff21a4ff,0xff22a4ff,0xff21a3ff,0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff20a2ff,0xff1fa1ff,0xff1ea2ff,0xff1da1ff,0xff1ea0ff,0xff1ca0ff,0xff1ca0ff,
+ 0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff51cbff,0xff51caff,
+ 0xff51cbff,0xff52ccff,0xff53ccff,0xff53ccff,0xff54cdff,0xff54cdff,0xff55cdff,0xff55ceff,0xff78d8ff,0xff79d8ff,0xff56ceff,0xff57cfff,0xff57cdfc,0xff327590,
+ 0xffbed3dc,0xffffffff,0xffffffff,0xfff9fafb,0xffe7eff2,0xfffcfdfd,0xffffffff,0xfffafbfc,0xff6c99ab,0xff7ea6b6,0xffffffff,0xffffffff,0xffeaf1f4,0xffeaf1f4,
+ 0xffffffff,0xffffffff,0xff77a4b7,0xff388baf,0xff2d7290,0xffffffff,0xffffffff,0xffc7d9e1,0xff3b99c2,0xff2c7291,0xffecf2f5,0xffffffff,0xfffafbfc,0xffd7e4eb,
+ 0xff3181a5,0xff2c7191,0xffeaf1f4,0xffffffff,0xffffffff,0xffa7c4d1,0xff2e7ea2,0xffa5c3d0,0xffffffff,0xffffffff,0xffebf1f5,0xff2b7192,0xff2c7da2,0xffecf2f5,
+ 0xffffffff,0xfffeffff,0xffd5e3ea,0xffeef4f6,0xfffcfdfd,0xffffffff,0xffffffff,0xff286f92,0xff256d90,0xffffffff,0xffffffff,0xffc4d8e1,0xff2f91c2,0xff4488ab,
+ 0xff82a9bd,0xffffffff,0xffffffff,0xffe7eff3,0xffe0eaef,0xffffffff,0xffffffff,0xff83acc1,0xff34ace9,0xff38bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,
+ 0xff36baff,0xff35baff,0xff35b9ff,0xff5ec7ff,0xff34b8ff,0xff33b8ff,0xff47bfff,0xff32b7ff,0xff32b7ff,0xff32b7ff,0xff30b7ff,0xff30b7ff,0xff30b7ff,0xff2fb6ff,
+ 0xff2fb5ff,0xff2eb6ff,0xff43bcff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff41bcff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff54c2ff,0xff29b2ff,0xff28b1ff,0xff3ebaff,
+ 0xff28b1ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,0xff25b0ff,0xff3bb7ff,0xff25afff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff29b2ff,
+ 0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff44c2ff,0xff45c1ff,0xff64cdff,0xff65ceff,
+ 0xff46c3ff,0xff47c3ff,0xff46c3ff,0xff399bcb,0xff307494,0xff9dbac7,0xffdbe7ec,0xfff7f9fa,0xfffcfdfd,0xffeef4f6,0xffbfd4de,0xff578ea9,0xff277194,0xff387490,
+ 0xff699ab2,0xffcfdfe7,0xfff7fafb,0xfff7fafb,0xffd0dfe6,0xff6b9bb4,0xff256c90,0xff3db5f1,0xff256c90,0xffffffff,0xffffffff,0xffc5d7e1,0xff3090c2,0xff2777a2,
+ 0xff7aa4bb,0xffeff4f6,0xfffbfcfd,0xffe8f0f4,0xff3180aa,0xff2679a5,0xff97b9cb,0xffffffff,0xffffffff,0xff5a8fad,0xff319dd9,0xff548baa,0xffffffff,0xffffffff,
+ 0xff99bacc,0xff2376a4,0xff2274a2,0xff5b8fae,0xffdbe6ed,0xfffbfcfc,0xffedf2f5,0xffa9c5d6,0xff96b4c6,0xffffffff,0xffffffff,0xff4581a4,0xff1d6590,0xffffffff,
+ 0xffffffff,0xffc2d6e1,0xff2587c2,0xff4db2ed,0xff2f6c90,0xff77a2bd,0xffdbe7ee,0xfffafbfc,0xfffafbfc,0xffd9e5ed,0xff79a3be,0xff196290,0xff289ee9,0xff2cadff,
+ 0xff2bacff,0xff2aacff,0xff2aacff,0xff29abff,0xff29abff,0xff29abff,0xff4cbaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff49b9ff,0xff27a9ff,0xff26a8ff,0xff26a8ff,
+ 0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff34adff,0xff23a4ff,0xff22a4ff,0xff22a4ff,0xff46b5ff,0xff20a4ff,0xff20a3ff,0xff44b3ff,
+ 0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff42b3ff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff41b1ff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,
+ 0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff73d5ff,0xff74d6ff,0xff74d6ff,0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54ccff,0xff54ccff,
+ 0xff55cdff,0xff55ceff,0xff56ceff,0xff56ceff,0xff57ceff,0xff57cfff,0xff57cfff,0xff59cfff,0xff5dbee3,0xff619bb2,0xff498198,0xff327792,0xff4e7f92,0xff457c92,
+ 0xff4b88a0,0xff43a2c8,0xff54c9f9,0xff72d0f5,0xff3e97bc,0xff467f97,0xff327997,0xff467f97,0xff3b7c97,0xff559cba,0xff6fcdf4,0xff62d0ff,0xff2e7290,0xff4b7b90,
+ 0xff2d7290,0xff407890,0xff57a2c2,0xff6ac5ed,0xff3b809f,0xff2c7493,0xff2c7393,0xff2b7393,0xff3c85a5,0xff61b8df,0xff3f7790,0xff347390,0xff2a7090,0xff297090,
+ 0xff46c0f8,0xff3e7690,0xff3d7690,0xff3d7690,0xff327290,0xff5db4dd,0xff67c9f7,0xff4a90b1,0xff337493,0xff477a93,0xff3d7793,0xff2a7aa1,0xff457890,0xff3a7490,
+ 0xff3b7490,0xff2f7090,0xff3a7490,0xff3a7490,0xff2e6f90,0xff236c90,0xff4d9bc2,0xff3dbeff,0xff5dbded,0xff458cb0,0xff397694,0xff2e7294,0xff397594,0xff397594,
+ 0xff448db2,0xff35aeec,0xff74d0ff,0xff61c9ff,0xff4cc2ff,0xff5fc9ff,0xff5fc9ff,0xff5fc8ff,0xff36baff,0xff35baff,0xff5ec8ff,0xff34b9ff,0xff5dc7ff,0xff5dc6ff,
+ 0xff6fcdff,0xff47bfff,0xff5bc5ff,0xff5ac5ff,0xff46bdff,0xff5ac5ff,0xff30b6ff,0xff59c5ff,0xff2eb6ff,0xff43bcff,0xff58c4ff,0xff2db4ff,0xff57c4ff,0xff57c3ff,
+ 0xff6bcaff,0xff2bb3ff,0xff2ab3ff,0xff55c1ff,0xff29b3ff,0xff54c1ff,0xff54c1ff,0xff68c9ff,0xff3eb9ff,0xff52c1ff,0xff52c1ff,0xff3cb9ff,0xff51c0ff,0xff67c7ff,
+ 0xff3bb8ff,0xff3cb8ff,0xff52c1ff,0xff53c1ff,0xff3eb9ff,0xff68c9ff,0xff54c1ff,0xff54c1ff,0xff3fbdff,0xff61cbff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,
+ 0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff56c9ff,0xff67cfff,0xff67cfff,0xff48c3ff,0xff68cfff,
+ 0xff47c5ff,0xff47c3ff,0xff66cfff,0xff46c3ff,0xff66ceff,0xff45c2ff,0xff44c2ff,0xff64cdff,0xff44c1ff,0xff63cdff,0xff42c1ff,0xff63ccff,0xff62ccff,0xff41bfff,
+ 0xff62ccff,0xff41bfff,0xff40bfff,0xff60ccff,0xff3fbdff,0xff5fcbff,0xff3ebcff,0xff3ebcff,0xff5fc9ff,0xff4dc1ff,0xff5ec8ff,0xff5dc8ff,0xff5dc8ff,0xff3bbaff,
+ 0xff3bbaff,0xff3ab9ff,0xff49c0ff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff39b8ff,0xff38b7ff,0xff5ac6ff,0xff47bdff,0xff58c3ff,0xff6acbff,0xff35b5ff,0xff58c3ff,
+ 0xff34b5ff,0xff34b4ff,0xff56c2ff,0xff33b3ff,0xff55c1ff,0xff43b9ff,0xff54c1ff,0xff54c1ff,0xff41b9ff,0xff31b1ff,0xff53c0ff,0xff30b1ff,0xff52bfff,0xff2eb0ff,
+ 0xff2eb0ff,0xff51bdff,0xff51bdff,0xff2daeff,0xff50bdff,0xff2cadff,0xff4fbdff,0xff4fbcff,0xff4dbcff,0xff60c3ff,0xff4cbbff,0xff5fc3ff,0xff29abff,0xff3ab2ff,
+ 0xff3ab2ff,0xff28aaff,0xff4bbaff,0xff28aaff,0xff4ab9ff,0xff26a9ff,0xff49b8ff,0xff49b8ff,0xff49b8ff,0xff36aeff,0xff35aeff,0xff48b8ff,0xff24a5ff,0xff23a5ff,
+ 0xff46b7ff,0xff22a5ff,0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff21a3ff,0xff32acff,0xff31acff,0xff20a3ff,0xff43b3ff,0xff1ea2ff,0xff42b3ff,0xff41b3ff,0xff1da1ff,
+ 0xff1ca0ff,0xff41b2ff,0xff1ba0ff,0xff41b1ff,0xff1ca0ff,0xff41b2ff,0xff1da0ff,0xff41b2ff,0xff1ea1ff,0xff42b3ff,0xff1ea2ff,0xff43b3ff,0xff50caff,0xff73d6ff,
+ 0xff51caff,0xff62d0ff,0xff52cbff,0xff52ccff,0xff53ccff,0xff53ccff,0xff53cdff,0xff55cdff,0xff54ceff,0xff56cdff,0xff56cdff,0xff57ceff,0xff56ceff,0xff58cfff,
+ 0xff57cfff,0xff58d0ff,0xff59d0ff,0xff7bd9ff,0xff59cfff,0xff58cfff,0xff89ddff,0xff57cfff,0xff78d9ff,0xff56ceff,0xff55ceff,0xff77d8ff,0xff55cdff,0xff77d7ff,
+ 0xff54cdff,0xff87dbff,0xff52ccff,0xff86daff,0xff63d0ff,0xff51cbff,0xff50caff,0xff73d6ff,0xff50caff,0xff72d4ff,0xff4fc9ff,0xff4ec9ff,0xff72d3ff,0xff4dc9ff,
+ 0xff4dc8ff,0xff4cc7ff,0xff70d3ff,0xff4bc7ff,0xff4ac6ff,0xff5bccff,0xff4ac6ff,0xff49c5ff,0xff48c5ff,0xff6dd1ff,0xff5acbff,0xff47c4ff,0xff6cd0ff,0xff6bd0ff,
+ 0xff45c4ff,0xff6acfff,0xff45c3ff,0xff6aceff,0xff43c2ff,0xff56c8ff,0xff68ceff,0xff42c2ff,0xff67cdff,0xff40c1ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff52c5ff,
+ 0xff51c5ff,0xff3dbfff,0xff64cbff,0xff3cbeff,0xff3cbeff,0xff63caff,0xff63caff,0xff3abdff,0xff62caff,0xff39bdff,0xff61caff,0xff60c9ff,0xff60c9ff,0xff60c9ff,
+ 0xff37bbff,0xff4ac1ff,0xff36baff,0xff5ec8ff,0xff35baff,0xff35b9ff,0xff5dc7ff,0xff34b9ff,0xff70cdff,0xff5cc6ff,0xff32b7ff,0xff31b7ff,0xff5ac5ff,0xff30b6ff,
+ 0xff5ac5ff,0xff44bdff,0xff2fb6ff,0xff2eb5ff,0xff57c4ff,0xff2db4ff,0xff57c3ff,0xff2cb4ff,0xff6bcbff,0xff2bb4ff,0xff56c2ff,0xff2ab3ff,0xff29b2ff,0xff54c1ff,
+ 0xff29b2ff,0xff68c8ff,0xff52c1ff,0xff27b1ff,0xff26b0ff,0xff52c0ff,0xff25b0ff,0xff51bfff,0xff3cb8ff,0xff26b0ff,0xff67c8ff,0xff3db9ff,0xff27b1ff,0xff53c1ff,
+ 0xff29b2ff,0xff54c1ff,0xff3fbcff,0xff50c5ff,0xff61cbff,0xff50c5ff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c0ff,0xff44c1ff,0xff44c1ff,
+ 0xff45c1ff,0xff45c2ff,0xff46c2ff,0xff47c3ff,0xff47c3ff,0xff48c3ff,0xff48c5ff,0xff58cbff,0xff48c5ff,0xff48c3ff,0xff67cfff,0xff66cfff,0xff56c8ff,0xff45c2ff,
+ 0xff64ceff,0xff64cdff,0xff54c7ff,0xff53c7ff,0xff63ccff,0xff53c7ff,0xff63ccff,0xff52c6ff,0xff61ccff,0xff50c5ff,0xff50c5ff,0xff60cbff,0xff60cbff,0xff4fc2ff,
+ 0xff3fbdff,0xff3dbcff,0xff4dc1ff,0xff3dbbff,0xff3dbbff,0xff3cbaff,0xff3bbbff,0xff5cc7ff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff39b8ff,0xff5bc6ff,
+ 0xff49bfff,0xff5ac5ff,0xff38b7ff,0xff48bdff,0xff58c3ff,0xff58c3ff,0xff35b5ff,0xff35b5ff,0xff57c2ff,0xff33b4ff,0xff44bbff,0xff33b3ff,0xff43baff,0xff33b3ff,
+ 0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff54c1ff,0xff31b2ff,0xff30b1ff,0xff40b8ff,0xff2fb0ff,0xff2eaeff,0xff3fb8ff,0xff3fb7ff,0xff50bdff,0xff3eb7ff,0xff2daeff,
+ 0xff3db5ff,0xff2badff,0xff3cb4ff,0xff3cb4ff,0xff4dbcff,0xff3ab3ff,0xff3ab3ff,0xff3ab3ff,0xff28aaff,0xff28aaff,0xff39b1ff,0xff4abaff,0xff38b1ff,0xff27a9ff,
+ 0xff49b8ff,0xff49b8ff,0xff37b0ff,0xff24a7ff,0xff36aeff,0xff24a7ff,0xff24a7ff,0xff47b7ff,0xff47b7ff,0xff34adff,0xff33adff,0xff46b5ff,0xff32adff,0xff32acff,
+ 0xff31acff,0xff20a3ff,0xff1fa3ff,0xff31abff,0xff42b3ff,0xff30aaff,0xff1ea1ff,0xff41b3ff,0xff41b2ff,0xff1ca0ff,0xff1ba0ff,0xff2ea8ff,0xff2ea8ff,0xff41b2ff,
+ 0xff2faaff,0xff41b2ff,0xff2faaff,0xff30abff,0xff1ea1ff,0xff31abff,0xff4fcaff,0xff50cbff,0xff51cbff,0xff51cbff,0xff51cbff,0xff52ccff,0xff53ccff,0xff53ccff,
+ 0xff54cdff,0xff54cdff,0xff55cdff,0xff55cdff,0xff55ceff,0xff57ceff,0xff56cfff,0xff58cfff,0xff57cfff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff58cfff,0xff58d0ff,
+ 0xff69d4ff,0xff57cfff,0xff56ceff,0xff56ceff,0xff55cdff,0xff55cdff,0xff55cdff,0xff54cdff,0xff53ccff,0xff53ccff,0xff52ccff,0xff75d6ff,0xff75d6ff,0xff51cbff,
+ 0xff51caff,0xff50caff,0xff50caff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec8ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff4ac7ff,
+ 0xff4ac6ff,0xff48c6ff,0xff49c6ff,0xff5acbff,0xff47c4ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff44c2ff,0xff43c2ff,0xff43c1ff,
+ 0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff41c0ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff52c6ff,0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3cbeff,
+ 0xff3bbdff,0xff3abdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff4ac1ff,0xff35b9ff,0xff35b9ff,0xff35b9ff,
+ 0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb6ff,0xff2db5ff,0xff2db4ff,
+ 0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff40bcff,0xff2bb3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,
+ 0xff25afff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff52c0ff,0xff52c1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff50c5ff,0xff50c5ff,
+ 0xff41bfff,0xff41bfff,0xff41c0ff,0xff43c0ff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff45c3ff,0xff46c2ff,0xff46c3ff,0xff47c3ff,
+ 0xff47c3ff,0xff48c5ff,0xff48c3ff,0xff47c3ff,0xff46c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff44c1ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff42c0ff,0xff42c0ff,
+ 0xff41c0ff,0xff42bfff,0xff41bfff,0xff41bfff,0xff41bdff,0xff40bdff,0xff3fbcff,0xff3fbdff,0xff3fbcff,0xff3ebcff,0xff3ebbff,0xff3dbcff,0xff3dbbff,0xff4cc1ff,
+ 0xff3cbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,
+ 0xff35b4ff,0xff35b4ff,0xff34b4ff,0xff41b3f4,0xff31acf4,0xff31abf4,0xff33b3ff,0xff33b2ff,0xff33b2ff,0xff31b2ff,0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff30b0ff,
+ 0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2badff,0xff3cb5ff,0xff2aacff,0xff2aacff,0xff29abff,
+ 0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff26a9ff,0xff26a9ff,0xff24a1f4,0xff23a1f4,0xff22a1f4,0xff25a7ff,0xff24a8ff,0xff24a7ff,
+ 0xff24a7ff,0xff23a7ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff33acff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea1ff,
+ 0xff1da1ff,0xff1da1ff,0xff1da0ff,0xff1ca1ff,0xff1ba0ff,0xff1b9fff,0xff1c9fff,0xff1ca0ff,0xff1da0ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff31abff,
+ 0xff4fcaff,0xff50caff,0xff74d6ff,0xff74d6ff,0xff51cbff,0xff52ccff,0xff53ccff,0xff53ccff,0xff54ccff,0xff76d6ff,0xff77d7ff,0xff55ceff,0xff56ceff,0xff56ceff,
+ 0xff56cfff,0xff57cfff,0xff58cfff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff59cfff,0xff58d0ff,0xff57cfff,0xff57cfff,0xff57ceff,0xff57ceff,0xff55cdff,0xff55cdff,
+ 0xff55cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff52ccff,0xff75d6ff,0xff52ccff,0xff51caff,0xff74d6ff,0xff2e7290,0xff2d7290,0xff2d7290,0xff2d7290,0xff3b99c2,
+ 0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff70d2ff,0xff6fd2ff,0xff4bc7ff,0xff4bc6ff,0xff49c6ff,0xff49c6ff,0xff49c6ff,0xff48c6ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,
+ 0xff46c4ff,0xff45c4ff,0xff46c4ff,0xff45c3ff,0xff44c3ff,0xff3cade2,0xff357b9d,0xff4083a3,0xff6ca2bc,0xff3194c2,0xff67cdff,0xff41c0ff,0xff40c1ff,0xff3fc0ff,
+ 0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff226c90,0xff387390,0xff226b90,0xff216b90,0xff2d90c2,0xff377290,0xff206a90,0xff206a90,0xff2b6e90,
+ 0xff3994c2,0xff38bbff,0xff37bbff,0xff5fc8ff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff33b9ff,0xff5cc7ff,0xff2da3e2,0xff1f719d,0xff2c79a3,0xff649dbc,
+ 0xff258bc2,0xff1c6790,0xff1b6790,0xff1b6790,0xff1b6690,0xff238ac2,0xff2eb5ff,0xff2db4ff,0xff2db5ff,0xff2cb4ff,0xff57c3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,
+ 0xff2ab2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff26b0ff,0xff26b0ff,0xff51bfff,0xff25afff,0xff3cb8ff,0xff52c0ff,0xff52c1ff,
+ 0xff3db9ff,0xff28b2ff,0xff28b2ff,0xff54c2ff,0xff3fbdff,0xff40bdff,0xff50c3ff,0xff50c3ff,0xff41bfff,0xff41c0ff,0xff42bfff,0xff42c0ff,0xff43c1ff,0xff63cdff,
+ 0xff43c1ff,0xff44c1ff,0xff64ceff,0xff66ceff,0xff45c3ff,0xff56c9ff,0xff67cfff,0xff58c9ff,0xff57cbff,0xff58cbff,0xff67cfff,0xff47c5ff,0xff47c3ff,0xff46c3ff,
+ 0xff46c2ff,0xff55c8ff,0xff54c8ff,0xff64ceff,0xff44c1ff,0xff54c6ff,0xff63cdff,0xff52c6ff,0xff51c6ff,0xff73d0ff,0xff62ccff,0xff41bdff,0xff60cbff,0xff367390,
+ 0xffffffff,0xffffffff,0xffc9d9e1,0xff4899c2,0xff4dc2ff,0xff3dbbff,0xff4cc1ff,0xff4cc1ff,0xff5cc7ff,0xff4bc1ff,0xff5cc6ff,0xff3abaff,0xff49c0ff,0xff5bc6ff,
+ 0xff49c0ff,0xff38b8ff,0xff5bc5ff,0xff49bdff,0xff37b8ff,0xff47bdff,0xff58c3ff,0xff47bdff,0xff35b4ff,0xff1e6690,0xff9ab8c9,0xfff1f5f7,0xffc5d7e1,0xff4193c2,
+ 0xff55c1ff,0xff33b3ff,0xff54c1ff,0xff54c1ff,0xff31b2ff,0xff41b8ff,0xff30b1ff,0xff41b8ff,0xff2fb1ff,0xff246890,0xffffffff,0xffffffff,0xffc5d6e1,0xff3d90c2,
+ 0xff2e6b90,0xffffffff,0xffffffff,0xffc7d7e1,0xff2184c2,0xff3cb4ff,0xff4cbbff,0xff4cbbff,0xff29abff,0xff4cbbff,0xff4cbbff,0xff28aaff,0xff4bbaff,0xff5dc1ff,
+ 0xff206490,0xff8cb1c9,0xfff2f5f7,0xffc3d5e1,0xff2a86c2,0xff1f6290,0xffffffff,0xffffffff,0xffc3d5e1,0xff1b7ec2,0xff23a5ff,0xff33adff,0xff21a5ff,0xff33adff,
+ 0xff32adff,0xff32acff,0xff32acff,0xff44b4ff,0xff1fa3ff,0xff31acff,0xff43b3ff,0xff30aaff,0xff1ea1ff,0xff41b3ff,0xff41b3ff,0xff1ca0ff,0xff41b2ff,0xff55baff,
+ 0xff2ea9ff,0xff41b2ff,0xff1da1ff,0xff1da1ff,0xff30aaff,0xff1ea2ff,0xff31abff,0xff31abff,0xff4fcaff,0xff50caff,0xff51caff,0xff51cbff,0xff52ccff,0xff75d6ff,
+ 0xff76d6ff,0xff64d1ff,0xff76d6ff,0xff87dcff,0xff65d2ff,0xff77d7ff,0xff55ceff,0xff56ceff,0xff68d4ff,0xff89ddff,0xff58cfff,0xff7ad9ff,0xff7ad9ff,0xff6ad5ff,
+ 0xff58cfff,0xff7ad9ff,0xff69d4ff,0xff79d8ff,0xff79d8ff,0xff78d8ff,0xff67d3ff,0xff55ceff,0xff77d7ff,0xff65d2ff,0xff54ccff,0xff76d6ff,0xff52ccff,0xff75d6ff,
+ 0xff52cbff,0xff51cbff,0xff85daff,0xff2d7290,0xffffffff,0xffffffff,0xffc7d9e1,0xff3b99c2,0xff2b7290,0xff2b7290,0xff3f7790,0xff2b7190,0xff4786a3,0xff367895,
+ 0xff2c7495,0xff417a95,0xff55a2c5,0xff49c5fe,0xff6ccffc,0xff399bc9,0xff43829f,0xff3e7892,0xff3e7792,0xff3d7792,0xff297497,0xff4b93b5,0xff266e90,0xff266e90,
+ 0xffffffff,0xffffffff,0xffcbdae1,0xff256e90,0xff457790,0xff3986ac,0xff257094,0xff256f93,0xff3b7693,0xff3a7693,0xff287aa3,0xff52a6d0,0xff3dbefe,0xff226b90,
+ 0xffffffff,0xffffffff,0xffcad9e1,0xff2c90c2,0xff427690,0xffffffff,0xffffffff,0xffcad9e1,0xff2b8ec2,0xff53aedd,0xff257eac,0xff437894,0xff367393,0xff1f6b93,
+ 0xff1f6b93,0xff3b7fa3,0xff2a97d0,0xff357090,0xff1c6890,0xffffffff,0xffffffff,0xffc9d9e1,0xff1b6790,0xff3e7390,0xffcadbe5,0xffcfdde5,0xffa4bfcd,0xff248ac2,
+ 0xff2caef5,0xff4191bd,0xff1b6b98,0xff347498,0xff1a6b98,0xff337498,0xff2e88ba,0xff28abf3,0xff54c1ff,0xff3b7290,0xff176590,0xff2f6d90,0xff2f6d90,0xff1971a3,
+ 0xff176795,0xff307095,0xff166795,0xff3f94c5,0xff25affe,0xff52c0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff54c1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,
+ 0xff40bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff43c0ff,0xff63cdff,0xff43c2ff,0xff64ceff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff67cfff,
+ 0xff47c3ff,0xff67cfff,0xff68cfff,0xff49c5ff,0xff48c3ff,0xff68cfff,0xff47c3ff,0xff47c3ff,0xff46c2ff,0xff66ceff,0xff45c1ff,0xff44c1ff,0xff63cdff,0xff63cdff,
+ 0xff63cdff,0xff74d2ff,0xff42c0ff,0xff62ccff,0xff41bfff,0xff41bfff,0xff61ccff,0xff246b90,0xffffffff,0xffffffff,0xffc9d9e1,0xff4899c2,0xff2b6e90,0xffffffff,
+ 0xffffffff,0xffc5d8e2,0xff9ebbc9,0xffebf1f5,0xfff9fafb,0xffc7d8e1,0xff437b99,0xff32a0dd,0xff3e86ad,0xff4681a3,0xffc1d3dd,0xfff0f4f6,0xfffcfdfd,0xfff8fafb,
+ 0xffd9e4ea,0xff709ab2,0xff1e6690,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff367193,0xff9cbbcc,0xffe2eaef,0xfffafbfc,0xfffcfdfd,0xffeaf1f5,
+ 0xffb6cbd8,0xff41799a,0xff258ac7,0xff1a6390,0xffffffff,0xffffffff,0xffc7d8e1,0xff2284c2,0xff2d6b90,0xffffffff,0xffffffff,0xffc2d5e1,0xff2183c2,0xff326e93,
+ 0xff96b7cc,0xffe1eaef,0xfffafbfc,0xfffbfcfd,0xffeaf0f5,0xffb4cad8,0xff2c6e9a,0xff2a6890,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff296890,
+ 0xffffffff,0xffffffff,0xffc6d6e1,0xff1b7ec2,0xff135d90,0xff6794b0,0xffc9dae6,0xfff6f9fa,0xfff6f8fa,0xffd0dee6,0xff6192b5,0xff125c90,0xff3fa8ef,0xff266690,
+ 0xffffffff,0xffffffff,0xffc7d7e2,0xff97b5c9,0xffebf1f5,0xfff9fafb,0xffbdd2e1,0xff367099,0xff188bdd,0xff41b2ff,0xff1ca0ff,0xff1da1ff,0xff2faaff,0xff1ea2ff,
+ 0xff42b3ff,0xff20a2ff,0xff50caff,0xff50caff,0xff50cbff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53cdff,0xff54cdff,0xff76d7ff,0xff55cdff,0xff66d2ff,
+ 0xff78d8ff,0xff78d8ff,0xff68d3ff,0xff89ddff,0xff79d9ff,0xff7bd9ff,0xff7bd9ff,0xff7bd9ff,0xff7ad9ff,0xff69d5ff,0xff58cfff,0xff58ceff,0xff57cfff,0xff78d8ff,
+ 0xff78d8ff,0xff77d7ff,0xff66d2ff,0xff77d7ff,0xff76d7ff,0xff87dbff,0xff53ccff,0xff63d0ff,0xff74d6ff,0xff62cfff,0xff74d5ff,0xff2d7290,0xffffffff,0xffffffff,
+ 0xffc7d9e1,0xff3b99c2,0xff2b7290,0xffffffff,0xffffffff,0xfffcfdfd,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffa9c1cd,0xff55a1c5,0xff488aa8,0xffe0eaee,
+ 0xffffffff,0xfffcfdfd,0xffd8e3e9,0xfff4f7f8,0xffffffff,0xfffafbfc,0xff4c87a3,0xffd2dfe5,0xffffffff,0xffffffff,0xfff3f6f7,0xffd1dfe5,0xffa8bfcb,0xffffffff,
+ 0xffffffff,0xffe8eff2,0xffd8e3e9,0xfffeffff,0xffffffff,0xffbed4de,0xff236f94,0xff387390,0xffffffff,0xffffffff,0xffcad9e1,0xff4b9ac2,0xff427590,0xffffffff,
+ 0xffffffff,0xffc4d7e1,0xff2b8ec2,0xffa1bccb,0xffffffff,0xffffffff,0xffe6eef2,0xffd7e3e9,0xfffeffff,0xffffffff,0xffbdd3de,0xff357090,0xffd0dee5,0xffffffff,
+ 0xffffffff,0xfff2f5f7,0xffcadce5,0xff336f90,0xffffffff,0xffffffff,0xffc5d7e1,0xff3e88b1,0xff769fb5,0xffffffff,0xffffffff,0xffe9f0f5,0xffe7eff4,0xffffffff,
+ 0xffffffff,0xff7ea4ba,0xff2b80ae,0xff2f6d90,0xffffffff,0xffffffff,0xfffcfcfd,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffa1bdcd,0xff3f94c5,0xff3cb8ff,
+ 0xff52c0ff,0xff52c1ff,0xff3db9ff,0xff53c1ff,0xff28b1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,
+ 0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff45c2ff,0xff66ceff,0xff46c3ff,0xff48c3ff,0xff68cfff,0xff48c5ff,0xff47c3ff,0xff47c3ff,
+ 0xff46c3ff,0xff46c3ff,0xff46c2ff,0xff65ceff,0xff45c2ff,0xff44c2ff,0xff43c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,0xff42bfff,0xff41c0ff,0xff41bfff,0xff41bdff,
+ 0xff41bdff,0xff246b90,0xffffffff,0xffffffff,0xffc4d7e1,0xff2f8ec2,0xff236a90,0xffffffff,0xffffffff,0xfff0f5f7,0xff427fa0,0xff548caa,0xffffffff,0xffffffff,
+ 0xffc1d5e0,0xff2b8cc2,0xff2679a8,0xffe5edf2,0xffffffff,0xffe8eff4,0xff76a2bb,0xff78a3bc,0xff74a0ba,0xff4983a5,0xff407a9b,0xff1e6690,0xffffffff,0xffffffff,
+ 0xffc3d6e1,0xff1f6f9d,0xff4882a5,0xff6898b5,0xff76a2bc,0xff35759c,0xff5e91b1,0xffe5edf2,0xffffffff,0xfffafbfc,0xff1b6390,0xff1a6390,0xffffffff,0xffffffff,
+ 0xffc2d5e1,0xff2284c2,0xff196290,0xffffffff,0xffffffff,0xffc2d5e1,0xff2183c2,0xff447fa5,0xff6596b5,0xff739fbc,0xff30729c,0xff5a8fb1,0xffe4edf2,0xffffffff,
+ 0xfffafbfc,0xff165f90,0xff165f90,0xffffffff,0xffffffff,0xffc6d7e1,0xff226c9d,0xff145f90,0xffffffff,0xffffffff,0xffc0d4e1,0xff146094,0xffd9e5ed,0xffffffff,
+ 0xffedf2f5,0xff1f6596,0xff1d6495,0xffedf2f5,0xffffffff,0xffdce7ee,0xff125f94,0xff125b90,0xffffffff,0xffffffff,0xffeff4f7,0xff3372a0,0xff4781aa,0xffffffff,
+ 0xffffffff,0xffbcd1e0,0xff157ac2,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff42b3ff,0xff1fa2ff,0xff1fa2ff,0xff50c9ff,0xff50caff,0xff51cbff,0xff51caff,
+ 0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff53cdff,0xff54ccff,0xff54ceff,0xff55cdff,0xff55ceff,0xff57ceff,0xff56cfff,0xff57ceff,0xff58cfff,0xff59cfff,
+ 0xff59d0ff,0xff59d0ff,0xff58d0ff,0xff59cfff,0xff58cfff,0xff57cfff,0xff57ceff,0xff56ceff,0xff56cdff,0xff55cdff,0xff55cdff,0xff54cdff,0xff53cdff,0xff53ccff,
+ 0xff52ccff,0xff52ccff,0xff51ccff,0xff52cbff,0xff50cbff,0xff2d7290,0xffffffff,0xffffffff,0xffc7d9e1,0xff3b99c2,0xff2b7190,0xffffffff,0xffffffff,0xffc9dbe3,
+ 0xff2e7b9d,0xff2a7190,0xffffffff,0xffffffff,0xffc6d9e1,0xff3897c2,0xff2f82a8,0xff548ca7,0xffcddde5,0xfffafbfc,0xffffffff,0xffffffff,0xffffffff,0xffd4e2e9,
+ 0xff4683a0,0xff266e90,0xffffffff,0xffffffff,0xffc5d8e1,0xff2c81aa,0xff538ca8,0xffc1d6e0,0xfff0f5f7,0xfffbfcfc,0xffd2e2e9,0xffeaf1f5,0xffffffff,0xffffffff,
+ 0xff226c90,0xff226b90,0xffffffff,0xffffffff,0xffc4d7e1,0xff2d8fc2,0xff216b90,0xffffffff,0xffffffff,0xffc4d7e1,0xff257daa,0xff4e89a8,0xffc0d5e0,0xffeff5f7,
+ 0xfffafbfc,0xffd1e1e9,0xffeaf1f5,0xffffffff,0xffffffff,0xff1d6890,0xff1d6890,0xffffffff,0xffffffff,0xffc3d7e1,0xff248bc1,0xff1b6790,0xffffffff,0xffffffff,
+ 0xffc2d6e1,0xff1b6994,0xfffafbfc,0xffffffff,0xffc9dbe5,0xff1c72a1,0xff1b71a1,0xffc6d9e3,0xffffffff,0xfffafbfc,0xff186794,0xff176590,0xffffffff,0xffffffff,
+ 0xffc4d8e3,0xff196c9d,0xff156390,0xffffffff,0xffffffff,0xffc1d5e1,0xff1d86c2,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,
+ 0xff3fbdff,0xff40bdff,0xff61cbff,0xff61ccff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff52c6ff,0xff44c1ff,0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,
+ 0xff46c2ff,0xff46c2ff,0xff47c3ff,0xff47c3ff,0xff47c5ff,0xff49c5ff,0xff48c5ff,0xff67cfff,0xff47c3ff,0xff46c3ff,0xff46c3ff,0xff45c2ff,0xff45c2ff,0xff44c2ff,
+ 0xff43c1ff,0xff43c0ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff51c6ff,0xff41bfff,0xff41bdff,0xff40bfff,0xff367390,0xffffffff,0xffffffff,0xffc5d7e1,0xff3b94c2,
+ 0xff236a90,0xffffffff,0xffffffff,0xffc4d7e1,0xff2d8ec1,0xff216990,0xffffffff,0xffffffff,0xffc9d9e1,0xff4597c2,0xff337ea7,0xff6697b3,0xff74a1ba,0xff76a2bb,
+ 0xff417fa1,0xff709eb8,0xffffffff,0xffffffff,0xffb2cad8,0xff326e90,0xfffeffff,0xffffffff,0xffc8d9e3,0xff1e6894,0xffe3ebf0,0xffffffff,0xffdee8ee,0xff2b6f98,
+ 0xff2f7097,0xffe1eaf0,0xffffffff,0xffffffff,0xff1b6490,0xff2e6c90,0xffffffff,0xffffffff,0xffc5d6e1,0xff3d90c2,0xff236690,0xffffffff,0xffffffff,0xffc2d5e1,
+ 0xff1b6ea2,0xffe1eaf0,0xffffffff,0xffe0e9ee,0xff266b98,0xff216997,0xffe0eaf0,0xffffffff,0xffffffff,0xff2a6890,0xff2a6890,0xfffeffff,0xffffffff,0xffc4d6e3,
+ 0xff156294,0xff1e6390,0xffffffff,0xffffffff,0xffc1d4e1,0xff146094,0xffdbe6ee,0xffffffff,0xffecf2f5,0xff1d6495,0xff1b6294,0xffe8f0f5,0xffffffff,0xffdae6ee,
+ 0xff125e94,0xff125b90,0xffffffff,0xffffffff,0xffc0d3e1,0xff167ac1,0xff105b90,0xffffffff,0xffffffff,0xffbfd3e1,0xff3187c2,0xff1ca0ff,0xff1da0ff,0xff1da0ff,
+ 0xff2faaff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff74d5ff,0xff74d6ff,0xff52cbff,0xff52ccff,0xff53ccff,0xff53cdff,0xff76d6ff,0xff55cdff,
+ 0xff55cdff,0xff56ceff,0xff56cdff,0xff57ceff,0xff57cfff,0xff57cfff,0xff58cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff7bd9ff,0xff58cfff,0xff58cfff,0xff57cfff,
+ 0xff57cfff,0xff56ceff,0xff56ceff,0xff55ceff,0xff55cdff,0xff54cdff,0xff53ccff,0xff54ccff,0xff53ccff,0xff76d6ff,0xff51cbff,0xff51cbff,0xff50cbff,0xff417890,
+ 0xffffffff,0xffffffff,0xffc7d9e1,0xff499dc2,0xff2b7190,0xffffffff,0xffffffff,0xffc7d9e1,0xff3a97c2,0xff2a7090,0xffffffff,0xffffffff,0xffccdae1,0xff3897c2,
+ 0xff518ca7,0xffeef3f5,0xffffffff,0xffffffff,0xffdce7ed,0xffe2ecf0,0xffffffff,0xffffffff,0xff9ebac7,0xff276e91,0xffecf2f5,0xffffffff,0xfffafcfc,0xffd6e4eb,
+ 0xffedf2f5,0xffffffff,0xfffeffff,0xffd5e3ea,0xfff0f4f6,0xfffcfdfd,0xffffffff,0xffffffff,0xff3c7592,0xff226b90,0xffffffff,0xffffffff,0xffcad9e1,0xff2c90c2,
+ 0xff377290,0xffffffff,0xffffffff,0xffc4d7e1,0xff2477a2,0xffebf1f5,0xffffffff,0xfffeffff,0xffd4e2ea,0xffeef3f6,0xfffcfdfd,0xffffffff,0xffffffff,0xff377292,
+ 0xff347191,0xffebf1f5,0xffffffff,0xfffafbfc,0xffd4e3eb,0xff336f90,0xffffffff,0xffffffff,0xffc2d6e1,0xff207caf,0xff79a1b6,0xffffffff,0xffffffff,0xffe8f0f4,
+ 0xffe7eff4,0xffffffff,0xffffffff,0xff699ab7,0xff1c7baf,0xff176590,0xffffffff,0xffffffff,0xffc1d6e1,0xff1e87c2,0xff166490,0xffffffff,0xffffffff,0xffc1d5e1,
+ 0xff3e92c2,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff52c1ff,0xff28b2ff,0xff28b1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41c0ff,
+ 0xff42c0ff,0xff42c0ff,0xff63ccff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff47c2ff,0xff47c3ff,0xff48c3ff,0xff48c5ff,
+ 0xff67cfff,0xff47c3ff,0xff77d4ff,0xff66cfff,0xff66cfff,0xff65ceff,0xff65cdff,0xff64ceff,0xff54c7ff,0xff63cdff,0xff63ccff,0xff63ccff,0xff52c6ff,0xff73d0ff,
+ 0xff61ccff,0xff41bfff,0xff41bdff,0xff367390,0xffffffff,0xffffffff,0xffc7d8e1,0xff4899c2,0xff226a90,0xffffffff,0xffffffff,0xffc9d9e1,0xff2e8ec2,0xff216990,
+ 0xffffffff,0xffffffff,0xffc9d9e1,0xff2c8dc2,0xff397da1,0xff5086a4,0xffc2d4de,0xffeef3f5,0xfffcfdfd,0xfff9fafb,0xffe1e9ee,0xff91b3c6,0xff346f91,0xff2273a2,
+ 0xff77a2bb,0xffeef3f6,0xfffcfdfd,0xffe9f0f4,0xff739cb4,0xffdde7ed,0xfffafbfc,0xffedf2f5,0xffb0c8d6,0xff8bb0c6,0xffffffff,0xffffffff,0xff4b83a4,0xff2e6c90,
+ 0xffffffff,0xffffffff,0xffc7d8e1,0xff308bc2,0xff196290,0xffffffff,0xffffffff,0xffc2d5e1,0xff1b6da2,0xff578cae,0xffdae5ed,0xfffafbfc,0xffecf2f5,0xffa6c3d6,
+ 0xff88aec6,0xffffffff,0xffffffff,0xff407ca4,0xff196ba2,0xff729ebb,0xffeef3f6,0xfffbfcfd,0xffe7eff4,0xff347096,0xffffffff,0xffffffff,0xffc1d4e1,0xff1b7ec2,
+ 0xff286790,0xff5c8fb2,0xffd2dee7,0xfff7fafb,0xfff7fafb,0xffcedde6,0xff6c97b4,0xff266690,0xff2ea2f1,0xff266590,0xffffffff,0xffffffff,0xffc2d5e1,0xff3188c2,
+ 0xff256590,0xffffffff,0xffffffff,0xffc5d6e1,0xff157ac2,0xff2eaaff,0xff41b2ff,0xff41b3ff,0xff41b3ff,0xff42b3ff,0xff43b3ff,0xff43b3ff,0xff50caff,0xff50caff,
+ 0xff50caff,0xff51caff,0xff52cbff,0xff75d6ff,0xff76d6ff,0xff64d1ff,0xff76d6ff,0xff55cdff,0xff54cdff,0xff55ceff,0xff56ceff,0xff56ceff,0xff56cfff,0xff57cfff,
+ 0xff57cfff,0xff58cfff,0xff59d0ff,0xff6bd5ff,0xff6ad5ff,0xff58cfff,0xff79d9ff,0xff57cfff,0xff79d8ff,0xff78d8ff,0xff55ceff,0xff55cdff,0xff77d8ff,0xff87dcff,
+ 0xff76d7ff,0xff87dbff,0xff53ccff,0xff75d6ff,0xff52cbff,0xff51cbff,0xff51caff,0xff427890,0xff2d7290,0xff2d7290,0xff2d7290,0xff57a1c2,0xff2c7190,0xff407790,
+ 0xff2b7190,0xff3f7790,0xff3997c2,0xff357490,0xff347490,0xff297090,0xff3f7690,0xff3896c2,0xff6ccefb,0xff55a4c8,0xff2d7ca1,0xff297192,0xff3d7792,0xff287092,
+ 0xff3e7995,0xff2e85ae,0xff5fb9e4,0xff3eb5ed,0xff41809f,0xff3d7793,0xff3c7793,0xff317393,0xff4f89a5,0xff3b7693,0xff256f93,0xff256f93,0xff4081a1,0xff236c90,
+ 0xff236c90,0xff236c90,0xff226b90,0xff226b90,0xff387390,0xff2d6f90,0xff216b90,0xff3b95c2,0xff377290,0xff377290,0xff206a90,0xff206a90,0xff2b8ec2,0xff2682b1,
+ 0xff206c93,0xff206b93,0xff1f6b93,0xff2275a1,0xff1e6990,0xff1e6890,0xff1d6890,0xff1d6890,0xff2fabed,0xff20739f,0xff347293,0xff347293,0xff286e93,0xff336f90,
+ 0xff1b6790,0xff1b6790,0xff1b6690,0xff348fc2,0xff3fb5f5,0xff2185bc,0xff347397,0xff1a6b97,0xff337397,0xff337397,0xff1f83ba,0xff28abf4,0xff55c1ff,0xff306d90,
+ 0xff2f6d90,0xff2f6d90,0xff2e6d90,0xff3e92c2,0xff2e6c90,0xff2e6d90,0xff156390,0xff2e6c90,0xff1c86c2,0xff52c0ff,0xff27b0ff,0xff27b1ff,0xff53c1ff,0xff3ebaff,
+ 0xff53c1ff,0xff6ac9ff,0xff40bdff,0xff40bfff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff63cdff,0xff43c0ff,0xff44c1ff,0xff44c1ff,
+ 0xff45c1ff,0xff55c8ff,0xff46c2ff,0xff46c3ff,0xff57c9ff,0xff47c5ff,0xff48c5ff,0xff68cfff,0xff48c5ff,0xff47c3ff,0xff77d4ff,0xff46c3ff,0xff65ceff,0xff65ceff,
+ 0xff44c1ff,0xff44c1ff,0xff64cdff,0xff63ccff,0xff43c0ff,0xff52c6ff,0xff42c0ff,0xff62ccff,0xff41bfff,0xff50c5ff,0xff40bdff,0xff60cbff,0xff3fbdff,0xff3fbcff,
+ 0xff3fbcff,0xff5fc9ff,0xff3ebcff,0xff6fcfff,0xff3cbbff,0xff5dc8ff,0xff3bbaff,0xff5cc7ff,0xff3bbaff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff5bc6ff,0xff5bc6ff,
+ 0xff38b8ff,0xff38b8ff,0xff59c5ff,0xff36b7ff,0xff59c3ff,0xff47bdff,0xff58c3ff,0xff35b4ff,0xff45bbff,0xff57c2ff,0xff57c1ff,0xff33b3ff,0xff67c8ff,0xff54c1ff,
+ 0xff32b2ff,0xff31b2ff,0xff54c0ff,0xff30b2ff,0xff41b8ff,0xff2fb1ff,0xff52c0ff,0xff2eb0ff,0xff2eb0ff,0xff51bfff,0xff51bfff,0xff2eaeff,0xff50bdff,0xff4fbdff,
+ 0xff2cadff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aabff,0xff2aabff,0xff28abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a9ff,0xff27a8ff,
+ 0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff48b7ff,0xff23a5ff,0xff22a4ff,0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff46b4ff,
+ 0xff20a3ff,0xff20a3ff,0xff44b3ff,0xff43b3ff,0xff42b3ff,0xff42b3ff,0xff41b3ff,0xff1da1ff,0xff1ca1ff,0xff2ea9ff,0xff2ea9ff,0xff2ea8ff,0xff1ca0ff,0xff41b2ff,
+ 0xff1da1ff,0xff2faaff,0xff42b3ff,0xff42b3ff,0xff1ea2ff,0xff43b4ff,0xff4fcaff,0xff50caff,0xff50caff,0xff51cbff,0xff52cbff,0xff52cbff,0xff52ccff,0xff53cdff,
+ 0xff76d6ff,0xff76d6ff,0xff77d7ff,0xff56cdff,0xff67d3ff,0xff89ddff,0xff57cfff,0xff58ceff,0xff8addff,0xff69d5ff,0xff6ad5ff,0xff6bd5ff,0xff58cfff,0xff58cfff,
+ 0xff7ad9ff,0xff79d9ff,0xff68d3ff,0xff67d3ff,0xff56ceff,0xff55cdff,0xff66d2ff,0xff65d2ff,0xff76d7ff,0xff64d1ff,0xff52ccff,0xff52ccff,0xff75d6ff,0xff51cbff,
+ 0xff62d0ff,0xff73d5ff,0xff73d5ff,0xff4fc9ff,0xff72d4ff,0xff72d4ff,0xff5fceff,0xff5fcdff,0xff70d3ff,0xff5ecdff,0xff5dcdff,0xff5dcdff,0xff4ac6ff,0xff4ac6ff,
+ 0xff6fd1ff,0xff6ed1ff,0xff48c6ff,0xff47c5ff,0xff6cd1ff,0xff6cd0ff,0xff46c5ff,0xff46c4ff,0xff58caff,0xff58c9ff,0xff44c3ff,0xff69ceff,0xff56c8ff,0xff55c8ff,
+ 0xff56c8ff,0xff42c1ff,0xff54c7ff,0xff41c1ff,0xff66cdff,0xff66cdff,0xff3fc0ff,0xff3ebfff,0xff78d2ff,0xff51c5ff,0xff3dbfff,0xff63cbff,0xff63cbff,0xff3bbdff,
+ 0xff4fc5ff,0xff63caff,0xff4ec3ff,0xff4ec4ff,0xff61caff,0xff61caff,0xff4cc3ff,0xff37bbff,0xff37baff,0xff36bbff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,
+ 0xff34b8ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b6ff,0xff5ac5ff,0xff59c5ff,0xff59c5ff,0xff43bcff,0xff43bcff,0xff2eb4ff,0xff2db4ff,
+ 0xff42bcff,0xff2cb4ff,0xff41bcff,0xff2cb3ff,0xff55c2ff,0xff55c2ff,0xff2ab3ff,0xff3fbaff,0xff29b2ff,0xff3eb9ff,0xff28b1ff,0xff52c1ff,0xff52c0ff,0xff26b0ff,
+ 0xff51c0ff,0xff25afff,0xff26afff,0xff26b0ff,0xff52c0ff,0xff3db9ff,0xff3eb9ff,0xff3fbaff,0xff53c1ff,0xff54c1ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,
+ 0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff43c0ff,0xff43c0ff,0xff43c1ff,0xff45c1ff,0xff45c1ff,0xff45c2ff,0xff46c2ff,0xff46c2ff,0xff47c3ff,0xff48c5ff,
+ 0xff58c9ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff57c9ff,0xff46c3ff,0xff46c2ff,0xff46c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff42c0ff,
+ 0xff42c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3ebbff,0xff3dbbff,0xff3cbbff,0xff3cbbff,
+ 0xff4cc1ff,0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff38b8ff,0xff38b7ff,0xff38b7ff,0xff37b7ff,0xff36b7ff,0xff37b7ff,0xff36b5ff,
+ 0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,
+ 0xff2fb0ff,0xff2fb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29abff,
+ 0xff29abff,0xff29aaff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff27aaff,0xff27aaff,0xff26a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,
+ 0xff35aeff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff22a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,
+ 0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff2ea9ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff20a2ff,
+ 0xff4fcaff,0xff50cbff,0xff62cfff,0xff62d0ff,0xff52cbff,0xff52ccff,0xff53ccff,0xff64d1ff,0xff53cdff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff56ceff,
+ 0xff57ceff,0xff57ceff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff58cfff,0xff57cfff,0xff57cfff,0xff68d4ff,0xff57ceff,0xff56ceff,0xff55ceff,
+ 0xff54cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53ccff,0xff53cbff,0xff52cbff,0xff51caff,0xff50cbff,0xff50caff,0xff50caff,0xff4fc9ff,0xff4fc9ff,0xff4ec9ff,
+ 0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,0xff5ecdff,0xff4bc7ff,0xff4bc7ff,0xff4bc6ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff49c5ff,0xff47c5ff,0xff47c5ff,0xff47c5ff,
+ 0xff46c4ff,0xff46c4ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff44c2ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff41c1ff,0xff41c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,
+ 0xff53c5ff,0xff3fbfff,0xff3fbfff,0xff3ebfff,0xff3dbeff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3bbeff,0xff3bbdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff38bbff,
+ 0xff38bcff,0xff37bbff,0xff37baff,0xff37baff,0xff36baff,0xff35baff,0xff35baff,0xff48c0ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff33b8ff,0xff31b8ff,0xff31b7ff,
+ 0xff31b6ff,0xff30b6ff,0xff30b6ff,0xff44bdff,0xff2fb6ff,0xff2eb5ff,0xff2db5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,
+ 0xff29b3ff,0xff29b3ff,0xff29b2ff,0xff28b1ff,0xff28b2ff,0xff28b0ff,0xff27b0ff,0xff3cb8ff,0xff25b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,
+ 0xff27b1ff,0xff28b2ff,0xff29b1ff,0xff29b2ff,0xff3fbcff,0xff40bdff,0xff60cbff,0xff61ccff,0xff41bfff,0xff41c0ff,0xff51c6ff,0xff52c6ff,0xff63ccff,0xff43c1ff,
+ 0xff43c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff47c3ff,0xff48c3ff,0xff47c3ff,0xff48c5ff,0xff48c3ff,0xff48c3ff,0xff46c3ff,0xff46c3ff,
+ 0xff66ceff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff64cdff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff60cbff,
+ 0xff3fbdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff5fc8ff,0xff3dbbff,0xff3dbbff,0xff5dc7ff,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff5cc6ff,0xff3ab9ff,0xff3ab9ff,
+ 0xff3ab8ff,0xff39b8ff,0xff5ac6ff,0xff37b7ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,
+ 0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff42b9ff,0xff41b9ff,0xff31b1ff,0xff30b1ff,0xff30b0ff,0xff2fb1ff,0xff2fb0ff,0xff2eaeff,0xff2eaeff,0xff2eb0ff,0xff2daeff,
+ 0xff2daeff,0xff2dadff,0xff4fbdff,0xff2bacff,0xff2bacff,0xff4ebcff,0xff4dbbff,0xff4dbbff,0xff29abff,0xff29aaff,0xff3ab3ff,0xff39b2ff,0xff28aaff,0xff28a9ff,
+ 0xff27a9ff,0xff27a8ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff48b8ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff21a4ff,
+ 0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff43b3ff,0xff1fa2ff,0xff1da1ff,0xff1da1ff,0xff2eaaff,0xff2ea9ff,0xff1c9fff,0xff1ba0ff,
+ 0xff1ba0ff,0xff1ca0ff,0xff1da1ff,0xff1da0ff,0xff1ea1ff,0xff1ea2ff,0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff62cfff,0xff62d0ff,0xff51cbff,0xff53ccff,
+ 0xff75d6ff,0xff54ccff,0xff76d6ff,0xff76d6ff,0xff66d2ff,0xff55ceff,0xff78d7ff,0xff79d8ff,0xff56ceff,0xff68d3ff,0xff69d4ff,0xff69d4ff,0xff59d0ff,0xff7bd9ff,
+ 0xff7bd9ff,0xff58cfff,0xff57cfff,0xff68d4ff,0xff67d3ff,0xff56ceff,0xff78d8ff,0xff66d3ff,0xff77d7ff,0xff65d2ff,0xff76d6ff,0xff64d1ff,0xff52ccff,0xff63d1ff,
+ 0xff51cbff,0xff62d0ff,0xff50cbff,0xff73d5ff,0xff4fcaff,0xff4fcaff,0xff72d5ff,0xff60ceff,0xff71d3ff,0xff4dc8ff,0xff5ecdff,0xff5ecdff,0xff4cc7ff,0xff6fd2ff,
+ 0xff5cccff,0xff6fd1ff,0xff5bccff,0xff6ed1ff,0xff5bcbff,0xff5acbff,0xff7fd6ff,0xff6cd0ff,0xff47c4ff,0xff59caff,0xff6acfff,0xff58c9ff,0xff58c9ff,0xff57c8ff,
+ 0xff69ceff,0xff43c2ff,0xff55c8ff,0xff42c1ff,0xff54c7ff,0xff41c1ff,0xff40c1ff,0xff66cdff,0xff3fbfff,0xff52c5ff,0xff65ccff,0xff50c5ff,0xff50c5ff,0xff50c5ff,
+ 0xff63caff,0xff3bbdff,0xff4fc4ff,0xff62caff,0xff4ec4ff,0xff4ec3ff,0xff74d0ff,0xff60caff,0xff38bbff,0xff60c9ff,0xff37baff,0xff4ac1ff,0xff36baff,0xff35b9ff,
+ 0xff5ec8ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff32b7ff,0xff31b6ff,0xff31b7ff,0xff45bdff,0xff44bdff,0xff43bcff,0xff43bdff,
+ 0xff58c4ff,0xff2db4ff,0xff41bcff,0xff57c3ff,0xff41bcff,0xff2bb3ff,0xff55c2ff,0xff55c1ff,0xff29b2ff,0xff55c2ff,0xff69c8ff,0xff3eb9ff,0xff28b2ff,0xff27b1ff,
+ 0xff52c0ff,0xff26b0ff,0xff3cb8ff,0xff51c0ff,0xff3bb8ff,0xff26b1ff,0xff52c0ff,0xff52c1ff,0xff28b1ff,0xff3fb9ff,0xff54c1ff,0xff3fbaff,0xff40bdff,0xff40bdff,
+ 0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff63ccff,0xff43c0ff,0xff74d3ff,0xff43c1ff,0xff64cdff,0xff64cdff,0xff45c2ff,0xff45c2ff,0xff66ceff,0xff66cfff,
+ 0xff67cfff,0xff67cfff,0xff68cfff,0xff48c5ff,0xff48c5ff,0xff67cfff,0xff46c3ff,0xff66cfff,0xff45c3ff,0xff65ceff,0xff44c1ff,0xff54c7ff,0xff63cdff,0xff53c7ff,
+ 0xff43c0ff,0xff63ccff,0xff42bfff,0xff62ccff,0xff41c0ff,0xff61ccff,0xff41bdff,0xff60ccff,0xff3fbdff,0xff5fcbff,0xff3ebcff,0xff4ec2ff,0xff5fc9ff,0xff3dbbff,
+ 0xff5dc8ff,0xff3cbbff,0xff5dc8ff,0xff3bbaff,0xff4ac0ff,0xff5cc6ff,0xff5cc6ff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff5bc6ff,0xff38b8ff,0xff37b7ff,0xff59c5ff,
+ 0xff37b7ff,0xff58c3ff,0xff58c3ff,0xff46bcff,0xff34b4ff,0xff56c2ff,0xff57c2ff,0xff33b4ff,0xff55c1ff,0xff33b3ff,0xff32b3ff,0xff54c1ff,0xff31b2ff,0xff65c7ff,
+ 0xff30b1ff,0xff52c0ff,0xff52c0ff,0xff40b8ff,0xff2fb0ff,0xff51bfff,0xff51bdff,0xff2daeff,0xff50bdff,0xff2cadff,0xff4fbdff,0xff2bacff,0xff2bacff,0xff4dbcff,
+ 0xff2aabff,0xff2aacff,0xff28abff,0xff28aaff,0xff4cbbff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27aaff,0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff25a8ff,
+ 0xff49b8ff,0xff24a7ff,0xff48b7ff,0xff34adff,0xff23a4ff,0xff46b5ff,0xff5abfff,0xff21a4ff,0xff46b5ff,0xff45b4ff,0xff20a3ff,0xff20a3ff,0xff43b4ff,0xff1fa2ff,
+ 0xff43b3ff,0xff1ea2ff,0xff1da1ff,0xff1da0ff,0xff41b2ff,0xff1ca0ff,0xff41b1ff,0xff1ba0ff,0xff2ea8ff,0xff2eaaff,0xff2fa9ff,0xff1da1ff,0xff2faaff,0xff42b3ff,
+ 0xff1fa2ff,0xff31abff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff52cbff,0xff75d6ff,0xff52ccff,0xff53ccff,0xff76d6ff,0xff54cdff,0xff77d7ff,0xff77d8ff,
+ 0xff56ceff,0xff56ceff,0xff78d8ff,0xff79d9ff,0xff7ad9ff,0xff7ad9ff,0xff7ad9ff,0xff7bd9ff,0xff7ad9ff,0xff69d4ff,0xff57cfff,0xff79d9ff,0xff56ceff,0xff78d8ff,
+ 0xff56ceff,0xff55ceff,0xff77d7ff,0xff76d6ff,0xff76d7ff,0xff87dbff,0xff52ccff,0xff75d6ff,0xff74d6ff,0xff51cbff,0xff50cbff,0xff73d5ff,0xff4fcaff,0xff72d4ff,
+ 0xff4fcaff,0xff4ec9ff,0xff71d4ff,0xff4dc8ff,0xff71d3ff,0xff4bc7ff,0xff70d2ff,0xff4bc7ff,0xff4ac7ff,0xff6fd2ff,0xff6ed1ff,0xff48c6ff,0xff6dd1ff,0xff47c5ff,
+ 0xff6cd1ff,0xff46c5ff,0xff46c5ff,0xff6bcfff,0xff6ad0ff,0xff58c9ff,0xff6acfff,0xff44c3ff,0xff44c3ff,0xff69ceff,0xff68cdff,0xff41c1ff,0xff67cdff,0xff41c1ff,
+ 0xff66cdff,0xff40c0ff,0xff3fbfff,0xff66cdff,0xff3ebfff,0xff64cbff,0xff64ccff,0xff3cbeff,0xff3cbeff,0xff63caff,0xff76d1ff,0xff62caff,0xff62caff,0xff3abdff,
+ 0xff61caff,0xff38bbff,0xff38bbff,0xff60c8ff,0xff37baff,0xff4bc1ff,0xff36baff,0xff5ec7ff,0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff33b9ff,0xff32b8ff,0xff33b8ff,
+ 0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff31b7ff,0xff59c5ff,0xff30b5ff,0xff59c5ff,0xff2eb5ff,0xff2eb5ff,0xff58c4ff,0xff57c3ff,0xff2cb4ff,0xff56c3ff,0xff56c2ff,
+ 0xff55c2ff,0xff55c1ff,0xff3fbbff,0xff29b2ff,0xff54c1ff,0xff28b2ff,0xff27b1ff,0xff52c1ff,0xff26b1ff,0xff26b0ff,0xff51bfff,0xff25afff,0xff26afff,0xff26b0ff,
+ 0xff3cb8ff,0xff52c1ff,0xff27b1ff,0xff53c1ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bfff,0xff40bdff,0xff41bfff,0xff41bfff,0xff62ccff,0xff41c0ff,0xff42c0ff,
+ 0xff63ccff,0xff43c1ff,0xff63cdff,0xff54c7ff,0xff64ceff,0xff65ceff,0xff56c8ff,0xff66ceff,0xff57c9ff,0xff67cfff,0xff58c9ff,0xff68cfff,0xff68cfff,0xff57c9ff,
+ 0xff67cfff,0xff46c2ff,0xff45c2ff,0xff55c8ff,0xff64ceff,0xff64ceff,0xff64cdff,0xff63cdff,0xff63ccff,0xff74d2ff,0xff42c0ff,0xff41c0ff,0xff62ccff,0xff41bfff,
+ 0xff50c3ff,0xff71d0ff,0xff60cbff,0xff4fc3ff,0xff5fc9ff,0xff5fc9ff,0xff5ec9ff,0xff5ec9ff,0xff3dbbff,0xff3bbbff,0xff4bc1ff,0xff5cc7ff,0xff5cc6ff,0xff5cc6ff,
+ 0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff38b8ff,0xff49bfff,0xff5ac5ff,0xff49bdff,0xff59c5ff,0xff58c3ff,0xff46bcff,0xff58c3ff,0xff35b4ff,0xff35b4ff,0xff57c2ff,
+ 0xff56c2ff,0xff55c2ff,0xff67c8ff,0xff33b2ff,0xff55c1ff,0xff31b2ff,0xff31b2ff,0xff65c7ff,0xff53c0ff,0xff53bfff,0xff52bfff,0xff2fb1ff,0xff2eb0ff,0xff51bfff,
+ 0xff51bdff,0xff51bdff,0xff50bdff,0xff2cadff,0xff3db5ff,0xff4ebcff,0xff3cb4ff,0xff4dbcff,0xff4dbcff,0xff4cbcff,0xff29abff,0xff4cbaff,0xff28aaff,0xff28abff,
+ 0xff27aaff,0xff5dc1ff,0xff38b1ff,0xff27a8ff,0xff38b1ff,0xff5cc0ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,0xff24a7ff,0xff48b8ff,0xff47b7ff,0xff47b7ff,0xff33adff,
+ 0xff46b5ff,0xff21a4ff,0xff45b5ff,0xff32acff,0xff44b4ff,0xff44b3ff,0xff31abff,0xff1fa2ff,0xff43b3ff,0xff42b3ff,0xff1da1ff,0xff41b2ff,0xff1ca0ff,0xff1ca0ff,
+ 0xff41b2ff,0xff41b1ff,0xff41b1ff,0xff2ea9ff,0xff41b3ff,0xff41b3ff,0xff30aaff,0xff43b3ff,0xff43b3ff,0xff43b3ff,0xff50caff,0xff50caff,0xff51cbff,0xff51cbff,
+ 0xff74d6ff,0xff52cbff,0xff53ccff,0xff53ccff,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff27b0ff,0xff27b1ff,0xff29b1ff,0xff28b2ff,0xff29b3ff,
+ 0xff40bdff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff000000,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0xff1da1ff,
+ 0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff20a2ff,0xff50caff,0xff50caff,0xff51cbff,0xff51cbff,0xff63d0ff,0xff75d6ff,0xff64d0ff,0xff53ccff,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,0xff000000,
+ 0xff000000,0xff000000,0xff000000,0xff27b1ff,0xff28b2ff,0xff28b1ff,0xff54c1ff,0xff54c1ff,0xff40bcff,0xff40bdff,0xff40bfff,0xff41bdff,0xff62ccff,0xff41bfff,
+ 0xff51c6ff,0xff52c6ff,0xff63cdff,0xff43c1ff,0xff63cdff,0xff54c7ff,0xff54c7ff,0xff55c8ff,0xff56c8ff,0xff67ceff,0xff47c3ff,0xff67cfff,0xff67cfff,0xff49c5ff,
+ 0xff68cfff,0xff48c5ff,0xff67cfff,0xff46c3ff,0xff66ceff,0xff65cfff,0xff45c2ff,0xff44c1ff,0xff64cdff,0xff63cdff,0xff42c1ff,0xff42c0ff,0xff41c0ff,0xff41bfff,
+ 0xff41bfff,0xff41bfff,0xff61cbff,0xff40bdff,0xff60c9ff,0xff5fcbff,0xff3ebcff,0xff3ebcff,0xff5ec9ff,0xff5ec8ff,0xff3dbbff,0xff5cc8ff,0xff5dc8ff,0xff3bbaff,
+ 0xff3bb9ff,0xff5cc6ff,0xff5bc6ff,0xff3ab9ff,0xff39b9ff,0xff5ac6ff,0xff39b8ff,0xff38b7ff,0xff59c6ff,0xff59c5ff,0xff36b5ff,0xff58c5ff,0xff58c2ff,0xff35b4ff,
+ 0xff34b4ff,0xff56c2ff,0xff34b4ff,0xff56c1ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff53c0ff,0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff51bfff,
+ 0xff51bfff,0xff2eb0ff,0xff51bdff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff4fbdff,0xff4ebcff,0xff2aadff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29abff,0xff29abff,
+ 0xff28aaff,0xff28aaff,0xff4bb9ff,0xff28a9ff,0xff4ab9ff,0xff49b9ff,0xff26a8ff,0xff25a8ff,0xff49b8ff,0xff49b8ff,0xff24a7ff,0xff48b8ff,0xff48b8ff,0xff23a5ff,
+ 0xff23a5ff,0xff46b7ff,0xff46b7ff,0xff33adff,0xff32adff,0xff33acff,0xff32acff,0xff32acff,0xff31acff,0xff43b3ff,0xff1ea1ff,0xff42b3ff,0xff41b3ff,0xff1da1ff,
+ 0xff1ca0ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff41b3ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff42b3ff,0xff43b3ff,0xff50caff,0xff50caff,
+ 0xff50cbff,0xff51cbff,0xff75d6ff,0xff52cbff,0xff53ccff,0xff76d6ff,0xff76d7ff,0xff54cdff,0xff76d7ff,0xff77d8ff,0xff55ceff,0xff56ceff,0xff79d8ff,0xff7ad9ff,
+ 0xff58cfff,0xff58cfff,0xff7bd9ff,0xff7bd9ff,0xff59d0ff,0xff59cfff,0xff7ad9ff,0xff57cfff,0xff78d8ff,0xff78d8ff,0xff55ceff,0xff55ceff,0xff55ceff,0xff87dcff,
+ 0xff76d7ff,0xff53ccff,0xff52cbff,0xff52ccff,0xff51cbff,0xff51cbff,0xff84daff,0xff73d6ff,0xff61cfff,0xff72d5ff,0xff4fc9ff,0xff4ec9ff,0xff71d4ff,0xff71d4ff,
+ 0xff4cc8ff,0xff4cc7ff,0xff70d2ff,0xff4bc7ff,0xff4ac7ff,0xff6fd2ff,0xff80d7ff,0xff6ed1ff,0xff48c6ff,0xff6dd1ff,0xff48c4ff,0xff47c4ff,0xff6bd0ff,0xff6bcfff,
+ 0xff45c4ff,0xff6acfff,0xff6acfff,0xff44c3ff,0xff44c3ff,0xff68ceff,0xff42c2ff,0xff68ceff,0xff41c1ff,0xff54c7ff,0xff66cdff,0xff66cdff,0xff52c6ff,0xff3fbfff,
+ 0xff65ccff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3cbeff,0xff3bbeff,0xff62caff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bcff,0xff38bbff,0xff37bbff,
+ 0xff36bbff,0xff37bbff,0xff36baff,0xff35baff,0xff34b9ff,0xff34b9ff,0xff5dc6ff,0xff33b9ff,0xff5cc6ff,0xff5cc5ff,0xff31b8ff,0xff32b7ff,0xff5ac5ff,0xff5ac5ff,
+ 0xff30b6ff,0xff5ac5ff,0xff58c5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff6ccbff,0xff41bcff,0xff2cb4ff,0xff56c3ff,0xff2bb3ff,0xff2ab3ff,0xff55c2ff,0xff54c1ff,
+ 0xff29b2ff,0xff28b1ff,0xff53c1ff,0xff52c1ff,0xff3db8ff,0xff26b1ff,0xff52c0ff,0xff51bfff,0xff52c0ff,0xff26b0ff,0xff52c0ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,
+ 0xff29b2ff,0xff29b2ff,0xff40bdff,0xff50c3ff,0xff61ccff,0xff61ccff,0xff62ccff,0xff41c0ff,0xff42c0ff,0xff63ccff,0xff74d2ff,0xff63ccff,0xff54c7ff,0xff64ceff,
+ 0xff65ceff,0xff65cfff,0xff65ceff,0xff66cfff,0xff47c3ff,0xff47c3ff,0xff68cfff,0xff59cbff,0xff57c9ff,0xff47c5ff,0xff76d4ff,0xff66cfff,0xff76d4ff,0xff65ceff,
+ 0xff45c2ff,0xff64ceff,0xff64cdff,0xff63cdff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff60cbff,0xff40bdff,0xff5fcbff,0xff5fcbff,
+ 0xff3fbcff,0xff3ebbff,0xff5fc8ff,0xff5ec9ff,0xff4cc1ff,0xff6ecfff,0xff5cc7ff,0xff5cc7ff,0xff6dceff,0xff3abaff,0xff5bc6ff,0xff3ab8ff,0xff39b8ff,0xff5bc6ff,
+ 0xff5ac6ff,0xff5ac6ff,0xff38b7ff,0xff59c5ff,0xff36b7ff,0xff58c3ff,0xff58c2ff,0xff58c3ff,0xff69c9ff,0xff34b4ff,0xff33b3ff,0xff56c2ff,0xff33b3ff,0xff42baff,
+ 0xff54c1ff,0xff54c1ff,0xff41b9ff,0xff30b2ff,0xff53c0ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff51bdff,0xff2daeff,0xff2cadff,
+ 0xff2cadff,0xff2badff,0xff2bacff,0xff2aacff,0xff2aacff,0xff29abff,0xff28abff,0xff4cbaff,0xff4cbaff,0xff39b2ff,0xff4bb9ff,0xff27a9ff,0xff4ab9ff,0xff49b9ff,
+ 0xff49b8ff,0xff49b8ff,0xff25a8ff,0xff5bc0ff,0xff49b8ff,0xff5bc0ff,0xff48b8ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff46b5ff,0xff46b5ff,0xff20a4ff,0xff45b4ff,
+ 0xff44b4ff,0xff44b3ff,0xff43b3ff,0xff43b3ff,0xff31abff,0xff57bcff,0xff42b3ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff41b1ff,0xff41b2ff,0xff41b2ff,0xff1ca0ff,
+ 0xff2faaff,0xff2faaff,0xff1da1ff,0xff1fa1ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff50caff,0xff51cbff,0xff75d6ff,0xff52ccff,0xff63d1ff,0xff64d1ff,
+ 0xff76d7ff,0xff54ccff,0xff55cdff,0xff77d7ff,0xff56cdff,0xff56ceff,0xff78d9ff,0xff79d8ff,0xff58cfff,0xff7ad9ff,0xff7bd9ff,0xff5acfff,0xff69d5ff,0xff69d5ff,
+ 0xff7ad9ff,0xff57cfff,0xff79d9ff,0xff78d8ff,0xff56ceff,0xff66d2ff,0xff77d7ff,0xff76d7ff,0xff53cdff,0xff53ccff,0xff53ccff,0xff52ccff,0xff52cbff,0xff51cbff,
+ 0xff74d6ff,0xff50caff,0xff73d5ff,0xff72d5ff,0xff4fc9ff,0xff4ec9ff,0xff71d3ff,0xff71d4ff,0xff4dc8ff,0xff81d9ff,0xff6fd2ff,0xff4ac7ff,0xff5dcdff,0xff5ccdff,
+ 0xff6ed1ff,0xff49c5ff,0xff48c6ff,0xff6dd1ff,0xff48c5ff,0xff47c4ff,0xff46c4ff,0xff6bd0ff,0xff46c4ff,0xff6acfff,0xff6acfff,0xff44c2ff,0xff56c8ff,0xff56c8ff,
+ 0xff42c1ff,0xff68cdff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff3fc0ff,0xff51c5ff,0xff51c5ff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3cbdff,
+ 0xff3bbdff,0xff4fc4ff,0xff4ec3ff,0xff3abdff,0xff39bbff,0xff39bcff,0xff38bbff,0xff37bbff,0xff37baff,0xff37baff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff34b9ff,
+ 0xff5dc6ff,0xff34b8ff,0xff5cc6ff,0xff5bc6ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff5ac5ff,0xff30b6ff,0xff59c5ff,0xff58c4ff,0xff2eb5ff,0xff2eb4ff,0xff57c4ff,
+ 0xff57c3ff,0xff2cb4ff,0xff57c3ff,0xff56c2ff,0xff2bb3ff,0xff2ab2ff,0xff54c1ff,0xff54c2ff,0xff28b2ff,0xff68c8ff,0xff53c1ff,0xff27b0ff,0xff27b1ff,0xff26b0ff,
+ 0xff26b0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff52c1ff,0xff27b1ff,0xff29b2ff,0xff28b1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,
+ 0xff50c5ff,0xff62ccff,0xff52c5ff,0xff42c0ff,0xff52c7ff,0xff43c0ff,0xff43c1ff,0xff54c8ff,0xff45c1ff,0xff45c2ff,0xff56c9ff,0xff57c9ff,0xff67cfff,0xff58cbff,
+ 0xff58c9ff,0xff48c5ff,0xff48c3ff,0xff58c9ff,0xff57c9ff,0xff46c3ff,0xff56c9ff,0xff45c2ff,0xff65ceff,0xff54c7ff,0xff54c7ff,0xff63cdff,0xff63ccff,0xff63ccff,
+ 0xff42c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff61ccff,0xff60ccff,0xff3fbdff,0xff3fbdff,0xff5fc9ff,0xff5fc9ff,0xff3dbcff,0xff4dc1ff,0xff5dc8ff,0xff4cc1ff,
+ 0xff4cc1ff,0xff3bbaff,0xff3ab9ff,0xff4ac0ff,0xff5cc6ff,0xff5bc6ff,0xff5bc6ff,0xff49bfff,0xff38b7ff,0xff38b7ff,0xff37b8ff,0xff48bdff,0xff58c5ff,0xff47bcff,
+ 0xff47bcff,0xff35b5ff,0xff34b5ff,0xff45bbff,0xff33b4ff,0xff44baff,0xff33b3ff,0xff33b2ff,0xff32b3ff,0xff31b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff52c0ff,
+ 0xff30b0ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff50bdff,0xff2cadff,0xff2cadff,0xff2cacff,0xff2badff,0xff2babff,0xff2aabff,0xff29abff,
+ 0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff4bbaff,0xff4bb9ff,0xff27a9ff,0xff38b0ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff36aeff,0xff24a7ff,0xff35aeff,
+ 0xff24a7ff,0xff47b7ff,0xff47b7ff,0xff22a5ff,0xff33adff,0xff21a4ff,0xff33adff,0xff32acff,0xff20a3ff,0xff20a2ff,0xff31acff,0xff31abff,0xff43b3ff,0xff30aaff,
+ 0xff30aaff,0xff41b3ff,0xff41b2ff,0xff2eaaff,0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1da1ff,0xff1da0ff,0xff2faaff,0xff30abff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,
+ 0xff4fcaff,0xff50caff,0xff50cbff,0xff51cbff,0xff52ccff,0xff52ccff,0xff52cbff,0xff53ccff,0xff54ccff,0xff54cdff,0xff55cdff,0xff55ceff,0xff55ceff,0xff56ceff,
+ 0xff57cfff,0xff57cfff,0xff58cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff58cfff,0xff57cfff,0xff57ceff,0xff57cfff,0xff56ceff,0xff56cdff,0xff56cdff,
+ 0xff54cdff,0xff54cdff,0xff53cdff,0xff53ccff,0xff63d1ff,0xff75d6ff,0xff75d6ff,0xff62d0ff,0xff50caff,0xff50caff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec8ff,
+ 0xff4ec9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff49c5ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff47c4ff,
+ 0xff46c4ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff40c1ff,
+ 0xff3fc0ff,0xff3fbfff,0xff3ec0ff,0xff50c5ff,0xff3dbfff,0xff3cbeff,0xff3cbdff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff4ec4ff,0xff3abcff,0xff39bcff,0xff39bbff,
+ 0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff36baff,0xff34b9ff,0xff34b9ff,0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,
+ 0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2fb5ff,0xff2db5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb3ff,0xff2bb4ff,0xff2ab3ff,0xff2ab3ff,
+ 0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff28b1ff,
+ 0xff3db9ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff43c0ff,
+ 0xff44c1ff,0xff44c1ff,0xff55c8ff,0xff55c8ff,0xff46c3ff,0xff46c3ff,0xff46c3ff,0xff47c5ff,0xff48c3ff,0xff49c5ff,0xff48c5ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,
+ 0xff45c3ff,0xff45c2ff,0xff45c1ff,0xff44c2ff,0xff44c1ff,0xff43c0ff,0xff43c0ff,0xff42c1ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,
+ 0xff3fbdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbcff,0xff3dbbff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,
+ 0xff39b8ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff36b7ff,0xff35b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,
+ 0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff31b2ff,0xff30b1ff,0xff41b8ff,0xff2fb1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,
+ 0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2aacff,0xff2aabff,0xff2aacff,0xff29abff,0xff29abff,0xff28aaff,0xff3ab2ff,0xff28aaff,0xff27a9ff,
+ 0xff26a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a7ff,0xff25a7ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff22a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,
+ 0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff31abff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,
+ 0xff1b9fff,0xff1da0ff,0xff1ca1ff,0xff1da0ff,0xff1ea1ff,0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff50caff,0xff51cbff,0xff52cbff,0xff52ccff,
+ 0xff52ccff,0xff53ccff,0xff54cdff,0xff54ccff,0xff54cdff,0xff55ceff,0xff77d7ff,0xff78d8ff,0xff57ceff,0xff57cfff,0xff57cfff,0xff58cfff,0xff59d0ff,0xff6ad5ff,
+ 0xff7bd9ff,0xff69d4ff,0xff58cfff,0xff57cfff,0xff57ceff,0xff56ceff,0xff66d3ff,0xff77d7ff,0xff55cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff52ccff,0xff52cbff,
+ 0xff52cbff,0xff51cbff,0xff51caff,0xff73d5ff,0xff4fcaff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,
+ 0xff4bc7ff,0xff49c7ff,0xff4ac6ff,0xff49c5ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c4ff,0xff47c5ff,0xff46c4ff,0xff45c4ff,0xff45c4ff,0xff45c3ff,0xff6acfff,
+ 0xff43c2ff,0xff42c1ff,0xff68ceff,0xff41c1ff,0xff41c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff64cbff,0xff64cbff,0xff3dbfff,
+ 0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff35baff,
+ 0xff48c1ff,0xff48c0ff,0xff34b9ff,0xff34b9ff,0xff5cc7ff,0xff32b8ff,0xff31b7ff,0xff31b8ff,0xff31b7ff,0xff30b7ff,0xff2fb7ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,
+ 0xff58c4ff,0xff2db4ff,0xff2cb5ff,0xff2cb4ff,0xff57c3ff,0xff2cb3ff,0xff2ab3ff,0xff3fbbff,0xff3fbbff,0xff29b2ff,0xff28b1ff,0xff53c1ff,0xff28b2ff,0xff28b1ff,
+ 0xff27b0ff,0xff26b0ff,0xff26b0ff,0xff51c0ff,0xff25b0ff,0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff50c3ff,
+ 0xff61ccff,0xff50c5ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff43c0ff,0xff44c1ff,0xff44c1ff,0xff55c7ff,0xff55c8ff,0xff45c2ff,0xff47c3ff,
+ 0xff47c2ff,0xff47c5ff,0xff48c3ff,0xff68cfff,0xff48c3ff,0xff47c5ff,0xff57c9ff,0xff67cfff,0xff56c8ff,0xff46c2ff,0xff45c2ff,0xff64ceff,0xff44c1ff,0xff53c7ff,
+ 0xff42c0ff,0xff52c6ff,0xff42c0ff,0xff62ccff,0xff51c5ff,0xff50c3ff,0xff41bdff,0xff60ccff,0xff3fbdff,0xff4fc2ff,0xff4fc3ff,0xff5fc9ff,0xff3ebbff,0xff3dbbff,
+ 0xff3cbbff,0xff3cbbff,0xff3bbaff,0xff5cc7ff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff49bfff,0xff49bfff,0xff5ac6ff,0xff37b7ff,0xff48bdff,
+ 0xff59c5ff,0xff47bcff,0xff46bcff,0xff68cbff,0xff57c3ff,0xff34b4ff,0xff56c1ff,0xff56c2ff,0xff43baff,0xff42baff,0xff54c1ff,0xff54c1ff,0xff41b9ff,0xff30b1ff,
+ 0xff41b8ff,0xff41b8ff,0xff52bfff,0xff40b8ff,0xff51bdff,0xff2eb0ff,0xff3fb7ff,0xff50bdff,0xff3eb7ff,0xff2cadff,0xff4fbdff,0xff3cb4ff,0xff2bacff,0xff3cb4ff,
+ 0xff4dbbff,0xff3bb3ff,0xff29abff,0xff28abff,0xff4cbbff,0xff28aaff,0xff38b2ff,0xff4abaff,0xff4ab9ff,0xff27a8ff,0xff49b8ff,0xff49b8ff,0xff25a8ff,0xff36b0ff,
+ 0xff24a7ff,0xff35aeff,0xff24a7ff,0xff34adff,0xff33adff,0xff22a5ff,0xff33adff,0xff46b5ff,0xff46b5ff,0xff20a4ff,0xff20a3ff,0xff44b3ff,0xff1fa2ff,0xff31abff,
+ 0xff43b3ff,0xff42b3ff,0xff1ea1ff,0xff41b3ff,0xff41b2ff,0xff1ca0ff,0xff41b2ff,0xff55bbff,0xff2ea9ff,0xff1ca0ff,0xff41b2ff,0xff2faaff,0xff30abff,0xff30aaff,
+ 0xff42b3ff,0xff31abff,0xff50caff,0xff73d5ff,0xff50cbff,0xff62d0ff,0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff53cdff,0xff55cdff,0xff55cdff,0xff56cdff,
+ 0xff56cdff,0xff57ceff,0xff56ceff,0xff68d4ff,0xff79d9ff,0xff7ad9ff,0xff6ad5ff,0xff8bdeff,0xff7bd9ff,0xff58cfff,0xff8addff,0xff57cfff,0xff79d8ff,0xff56ceff,
+ 0xff56cdff,0xff77d7ff,0xff55cdff,0xff76d7ff,0xff54cdff,0xff76d7ff,0xff76d6ff,0xff52cbff,0xff75d6ff,0xff51cbff,0xff50caff,0xff73d5ff,0xff4fcaff,0xff72d5ff,
+ 0xff61ceff,0xff4ec9ff,0xff72d3ff,0xff5fceff,0xff71d3ff,0xff70d2ff,0xff6fd2ff,0xff4bc7ff,0xff4ac7ff,0xff5ccdff,0xff5bccff,0xff6ed1ff,0xff6ed1ff,0xff6dd1ff,
+ 0xff5acbff,0xff46c5ff,0xff6bd0ff,0xff59caff,0xff45c3ff,0xff6ad0ff,0xff45c3ff,0xff6aceff,0xff44c2ff,0xff43c1ff,0xff7bd4ff,0xff42c1ff,0xff67cdff,0xff40c0ff,
+ 0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff65ccff,0xff3ebfff,0xff64ccff,0xff50c5ff,0xff3cbeff,0xff63caff,0xff63caff,0xff3abcff,0xff62caff,0xff3abcff,
+ 0xff61caff,0xff60caff,0xff5fc9ff,0xff5fc9ff,0xff37baff,0xff5ec8ff,0xff36baff,0xff35baff,0xff5ec7ff,0xff34b9ff,0xff5dc7ff,0xff33b8ff,0xff6fcdff,0xff47beff,
+ 0xff32b7ff,0xff31b7ff,0xff5ac5ff,0xff5ac5ff,0xff30b7ff,0xff59c4ff,0xff2fb6ff,0xff2eb5ff,0xff58c4ff,0xff2eb4ff,0xff57c3ff,0xff2cb4ff,0xff6bcbff,0xff2bb3ff,
+ 0xff2bb3ff,0xff55c2ff,0xff29b2ff,0xff54c1ff,0xff29b1ff,0xff68c8ff,0xff52c1ff,0xff27b1ff,0xff27b1ff,0xff52c0ff,0xff25b0ff,0xff51bfff,0xff25b0ff,0xff52c0ff,
+ 0xff26b0ff,0xff52c0ff,0xff28b1ff,0xff68c9ff,0xff29b2ff,0xff54c1ff,0xff3fbdff,0xff60cbff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,
+ 0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff44c2ff,0xff45c2ff,0xff46c2ff,0xff46c2ff,0xff47c3ff,0xff47c5ff,0xff48c3ff,0xff68cfff,0xff48c5ff,0xff47c3ff,
+ 0xff67cfff,0xff46c3ff,0xff66ceff,0xff45c2ff,0xff44c1ff,0xff64cdff,0xff44c1ff,0xff63cdff,0xff42c1ff,0xff63ccff,0xff52c6ff,0xff62ccff,0xff62ccff,0xff41bfff,
+ 0xff41bfff,0xff60cbff,0xff40bcff,0xff5fcbff,0xff3fbcff,0xff3ebcff,0xff5ec8ff,0xff3dbbff,0xff3dbbff,0xff3cbbff,0xff5dc8ff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,
+ 0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff5bc6ff,0xff38b8ff,0xff38b8ff,0xff5ac5ff,0xff59c3ff,0xff58c3ff,0xff6acbff,0xff35b5ff,0xff58c3ff,0xff34b5ff,0xff34b4ff,
+ 0xff56c1ff,0xff33b4ff,0xff55c1ff,0xff43b9ff,0xff54c1ff,0xff54c1ff,0xff41b9ff,0xff30b1ff,0xff54c0ff,0xff2fb0ff,0xff52c0ff,0xff2fb0ff,0xff2eaeff,0xff51bfff,
+ 0xff51bdff,0xff2eaeff,0xff50bdff,0xff2cadff,0xff4fbdff,0xff4fbdff,0xff4ebcff,0xff60c3ff,0xff4dbcff,0xff4dbcff,0xff29abff,0xff4cbbff,0xff28abff,0xff28aaff,
+ 0xff4abaff,0xff28aaff,0xff4ab9ff,0xff38b1ff,0xff49b8ff,0xff49b8ff,0xff49b8ff,0xff24a7ff,0xff49b8ff,0xff48b8ff,0xff23a7ff,0xff23a5ff,0xff46b7ff,0xff22a5ff,
+ 0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff20a3ff,0xff45b4ff,0xff20a2ff,0xff20a3ff,0xff43b3ff,0xff1ea2ff,0xff42b3ff,0xff41b3ff,0xff1da1ff,0xff1ca0ff,0xff41b2ff,
+ 0xff1ba0ff,0xff41b1ff,0xff1ba0ff,0xff2eaaff,0xff41b3ff,0xff41b2ff,0xff1ea1ff,0xff42b3ff,0xff1ea2ff,0xff44b3ff,0xff50c9ff,0xff73d5ff,0xff74d5ff,0xff74d6ff,
+ 0xff51cbff,0xff52cbff,0xff53cbff,0xff53ccff,0xff53ccff,0xff54ccff,0xff54ceff,0xff56ceff,0xff56cdff,0xff56ceff,0xff56ceff,0xff57cfff,0xff58cfff,0xff58cfff,
+ 0xff59d0ff,0xff7bd9ff,0xff59cfff,0xff58cfff,0xff8addff,0xff7ad9ff,0xff79d9ff,0xff56ceff,0xff78d8ff,0xff88dcff,0xff66d2ff,0xff76d6ff,0xff76d6ff,0xff87dbff,
+ 0xff63d1ff,0xff75d6ff,0xff75d6ff,0xff51cbff,0xff62d0ff,0xff84daff,0xff72d5ff,0xff72d4ff,0xff4ec9ff,0xff4ec9ff,0xff71d4ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,
+ 0xff5ecdff,0xff6fd2ff,0xff6fd2ff,0xff5ccdff,0xff4ac6ff,0xff49c6ff,0xff49c5ff,0xff6cd1ff,0xff6cd1ff,0xff6bd1ff,0xff59cbff,0xff6bd0ff,0xff6ad0ff,0xff7dd5ff,
+ 0xff44c3ff,0xff57c9ff,0xff6aceff,0xff55c8ff,0xff68cdff,0xff42c1ff,0xff67cdff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff65cdff,0xff3ebfff,0xff3ebfff,
+ 0xff64ccff,0xff3dbfff,0xff3cbeff,0xff63caff,0xff63cbff,0xff62caff,0xff62caff,0xff3abcff,0xff61caff,0xff4cc2ff,0xff60c9ff,0xff60c9ff,0xff5fc9ff,0xff5fc8ff,
+ 0xff36baff,0xff5ec8ff,0xff35b9ff,0xff34b9ff,0xff5dc7ff,0xff5cc7ff,0xff70cdff,0xff47bfff,0xff5bc6ff,0xff5ac5ff,0xff5ac5ff,0xff31b6ff,0xff5ac5ff,0xff2fb6ff,
+ 0xff2fb6ff,0xff58c4ff,0xff6ccbff,0xff42bcff,0xff57c4ff,0xff57c3ff,0xff6bcaff,0xff2cb3ff,0xff56c2ff,0xff2ab3ff,0xff29b2ff,0xff54c1ff,0xff54c1ff,0xff68c8ff,
+ 0xff3eb9ff,0xff52c1ff,0xff52c0ff,0xff3cb8ff,0xff25b0ff,0xff51c0ff,0xff51c0ff,0xff3cb8ff,0xff52c0ff,0xff52c1ff,0xff27b1ff,0xff53c1ff,0xff28b2ff,0xff54c1ff,
+ 0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,
+ 0xff46c2ff,0xff46c3ff,0xff47c3ff,0xff47c3ff,0xff48c5ff,0xff48c5ff,0xff48c3ff,0xff47c3ff,0xff67cfff,0xff46c3ff,0xff46c3ff,0xff45c2ff,0xff44c2ff,0xff44c2ff,
+ 0xff44c2ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff51c6ff,0xff62ccff,0xff61ccff,0xff51c5ff,0xff40bfff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3fbdff,0xff3ebcff,
+ 0xff3dbcff,0xff3dbbff,0xff3cbaff,0xff3cbaff,0xff3cbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff5bc6ff,0xff38b8ff,0xff38b7ff,
+ 0xff38b7ff,0xff37b7ff,0xff37b7ff,0xff36b7ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,0xff33b3ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff32b2ff,
+ 0xff31b1ff,0xff54c1ff,0xff30b1ff,0xff30b0ff,0xff30b0ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,
+ 0xff2badff,0xff2aabff,0xff2aacff,0xff29acff,0xff4cbbff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,
+ 0xff25a8ff,0xff25a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff45b5ff,0xff20a3ff,0xff20a2ff,
+ 0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1c9fff,0xff2ea9ff,0xff41b2ff,0xff41b2ff,
+ 0xff30aaff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff51cbff,0xff51caff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff53cdff,0xff55cdff,
+ 0xff55cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff57ceff,0xff58ceff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff59d0ff,0xff59d0ff,0xff58d0ff,0xff58cfff,0xff57cfff,
+ 0xff57ceff,0xff56ceff,0xff55ceff,0xff55ceff,0xff54cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53cbff,0xff52ccff,0xff51cbff,0xff51caff,0xff51caff,0xff51caff,
+ 0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4ec8ff,0xff4cc8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff49c6ff,0xff49c6ff,
+ 0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,
+ 0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ec0ff,0xff3ebeff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3cbdff,0xff3bbeff,0xff3bbdff,
+ 0xff3abcff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff35baff,0xff35b9ff,0xff35b9ff,0xff34b8ff,0xff34b8ff,
+ 0xff32b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff31b6ff,0xff30b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2eb6ff,0xff2db5ff,0xff2db5ff,0xff2db5ff,0xff2cb4ff,
+ 0xff2bb4ff,0xff2cb3ff,0xff2bb3ff,0xff2ab2ff,0xff2ab2ff,0xff29b2ff,0xff29b1ff,0xff29b1ff,0xff28b1ff,0xff28b1ff,0xff27b0ff,0xff26b1ff,0xff26afff,0xff25b0ff,
+ 0xff26afff,0xff26b1ff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff60cbff,0xff61cbff,0xff41bfff,0xff41bfff,
+ 0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff53c6ff,0xff53c7ff,0xff44c2ff,0xff45c1ff,0xff45c2ff,0xff45c3ff,0xff46c3ff,0xff46c3ff,0xff47c3ff,0xff47c3ff,0xff48c5ff,
+ 0xff47c5ff,0xff47c5ff,0xff47c3ff,0xff46c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff42c0ff,0xff51c5ff,
+ 0xff41bfff,0xff41bfff,0xff50c5ff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3ebdff,0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3cbbff,0xff5dc8ff,0xff4cc1ff,0xff3bbaff,
+ 0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff38b8ff,0xff38b8ff,0xff38b8ff,0xff38b8ff,0xff36b7ff,0xff36b7ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,
+ 0xff34b4ff,0xff56c2ff,0xff33b4ff,0xff33b3ff,0xff43baff,0xff32b3ff,0xff32b3ff,0xff31b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb0ff,
+ 0xff40b8ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff3eb7ff,0xff2cadff,0xff2cadff,0xff2bacff,0xff4ebdff,0xff2bacff,0xff2aacff,0xff3bb3ff,0xff29abff,0xff28aaff,
+ 0xff28abff,0xff28aaff,0xff28aaff,0xff39b2ff,0xff26a9ff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff24a7ff,0xff25a7ff,0xff24a8ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,
+ 0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff46b5ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,
+ 0xff1da0ff,0xff1ca0ff,0xff1ba0ff,0xff2ea8ff,0xff1ca0ff,0xff1ca0ff,0xff41b2ff,0xff41b2ff,0xff1da1ff,0xff1ea1ff,0xff1fa2ff,0xff44b3ff,0xff4fcaff,0xff50caff,
+ 0xff73d6ff,0xff74d6ff,0xff52ccff,0xff52ccff,0xff52ccff,0xff53ccff,0xff54ccff,0xff76d6ff,0xff66d2ff,0xff55ceff,0xff56ceff,0xff56ceff,0xff56ceff,0xff58ceff,
+ 0xff58cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff58cfff,0xff58cfff,0xff58cfff,0xff57cfff,0xff56cfff,0xff56ceff,0xff55ceff,0xff55ceff,0xff54cdff,0xff55cdff,
+ 0xff53cdff,0xff53ccff,0xff52cbff,0xff75d6ff,0xff52cbff,0xff51cbff,0xff74d6ff,0xff50caff,0xff50c9ff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff70d3ff,0xff70d3ff,0xff4bc7ff,0xff4bc7ff,0xff49c7ff,0xff4ac6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c4ff,0xff47c4ff,0xff46c4ff,
+ 0xff45c3ff,0xff45c4ff,0xff44c3ff,0xff44c3ff,0xff69cfff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff67cdff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff3fc0ff,
+ 0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff50c4ff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff62caff,0xff3abcff,0xff39bcff,0xff61c9ff,0xff38bbff,0xff37bbff,
+ 0xff37bbff,0xff5ec8ff,0xff36baff,0xff36b9ff,0xff35baff,0xff34b9ff,0xff34b9ff,0xff5cc7ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,0xff31b6ff,
+ 0xff30b6ff,0xff2fb5ff,0xff2fb6ff,0xff2eb5ff,0xff2db4ff,0xff2db4ff,0xff2db4ff,0xff2db4ff,0xff56c2ff,0xff2cb3ff,0xff2bb3ff,0xff2bb3ff,0xff29b2ff,0xff29b2ff,
+ 0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff26afff,0xff51bfff,0xff26b0ff,0xff52c0ff,0xff27b1ff,0xff27b0ff,0xff52c1ff,0xff28b2ff,
+ 0xff29b2ff,0xff54c1ff,0xff3fbdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42bfff,0xff43c0ff,0xff63ccff,0xff74d2ff,0xff54c7ff,0xff54c8ff,
+ 0xff65ceff,0xff66ceff,0xff55c8ff,0xff76d4ff,0xff67cfff,0xff67cfff,0xff68cfff,0xff68cfff,0xff67cfff,0xff57c9ff,0xff47c3ff,0xff47c2ff,0xff46c2ff,0xff65ceff,
+ 0xff65ceff,0xff64cdff,0xff54c7ff,0xff63cdff,0xff63ccff,0xff63cdff,0xff52c5ff,0xff73d2ff,0xff62ccff,0xff41bfff,0xff71d0ff,0xff60ccff,0xff60cbff,0xff4fc3ff,
+ 0xff5fc9ff,0xff5fc9ff,0xff4dc2ff,0xff3dbbff,0xff5ec8ff,0xff3cbbff,0xff5cc8ff,0xff5cc7ff,0xff5cc7ff,0xff4ac0ff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff39b8ff,
+ 0xff6cccff,0xff59c6ff,0xff48bdff,0xff59c5ff,0xff58c5ff,0xff58c3ff,0xff36b5ff,0xff35b5ff,0xff58c2ff,0xff34b3ff,0xff57c1ff,0xff56c1ff,0xff67c8ff,0xff42baff,
+ 0xff54c1ff,0xff54c1ff,0xff42b9ff,0xff54c0ff,0xff30b1ff,0xff52c0ff,0xff2fb0ff,0xff40b8ff,0xff51bfff,0xff2eaeff,0xff51bdff,0xff50bdff,0xff62c5ff,0xff2dadff,
+ 0xff2cadff,0xff4fbdff,0xff2badff,0xff4dbcff,0xff4dbcff,0xff60c3ff,0xff3ab3ff,0xff4cbaff,0xff4cbbff,0xff39b2ff,0xff4bbaff,0xff5dc1ff,0xff38b1ff,0xff38b1ff,
+ 0xff49b9ff,0xff49b8ff,0xff37b0ff,0xff5bc0ff,0xff49b8ff,0xff48b8ff,0xff48b8ff,0xff23a5ff,0xff23a5ff,0xff46b7ff,0xff22a4ff,0xff46b5ff,0xff20a4ff,0xff45b4ff,
+ 0xff45b4ff,0xff44b4ff,0xff31abff,0xff57bcff,0xff42b3ff,0xff42b3ff,0xff2faaff,0xff41b3ff,0xff41b2ff,0xff2ea9ff,0xff41b2ff,0xff55baff,0xff2ea9ff,0xff41b2ff,
+ 0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff43b3ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff50caff,0xff51cbff,0xff52cbff,0xff75d6ff,0xff76d6ff,0xff64d1ff,
+ 0xff53cdff,0xff76d7ff,0xff55cdff,0xff77d7ff,0xff56ceff,0xff56ceff,0xff57cfff,0xff7ad9ff,0xff57cfff,0xff7ad9ff,0xff7ad9ff,0xff59d0ff,0xff59cfff,0xff7ad9ff,
+ 0xff69d4ff,0xff79d9ff,0xff78d8ff,0xff78d8ff,0xff56cdff,0xff55cdff,0xff77d7ff,0xff65d2ff,0xff76d7ff,0xff87dcff,0xff53ccff,0xff75d6ff,0xff51cbff,0xff51cbff,
+ 0xff73d6ff,0xff50caff,0xff73d5ff,0xff61ceff,0xff72d5ff,0xff72d4ff,0xff60ceff,0xff4dc8ff,0xff71d3ff,0xff4cc8ff,0xff70d2ff,0xff4bc8ff,0xff4bc7ff,0xff6fd2ff,
+ 0xff6fd1ff,0xff48c6ff,0xff6dd1ff,0xff48c5ff,0xff6cd1ff,0xff6cd0ff,0xff6bd0ff,0xff7dd6ff,0xff6bd0ff,0xff7dd5ff,0xff44c3ff,0xff56c9ff,0xff56c8ff,0xff43c2ff,
+ 0xff68ceff,0xff42c1ff,0xff67cdff,0xff41c0ff,0xff66cdff,0xff66cdff,0xff66cdff,0xff51c6ff,0xff52c5ff,0xff64ccff,0xff3dbeff,0xff3dbeff,0xff63cbff,0xff3cbdff,
+ 0xff63caff,0xff3bbdff,0xff62caff,0xff39bcff,0xff4dc3ff,0xff4cc3ff,0xff37bbff,0xff5fc9ff,0xff37baff,0xff5ec8ff,0xff5ec8ff,0xff36b9ff,0xff35baff,0xff5dc7ff,
+ 0xff34b8ff,0xff5cc6ff,0xff33b8ff,0xff5bc6ff,0xff32b8ff,0xff5ac6ff,0xff31b7ff,0xff5ac5ff,0xff2fb6ff,0xff59c5ff,0xff59c4ff,0xff2eb5ff,0xff2db5ff,0xff57c4ff,
+ 0xff2cb4ff,0xff57c3ff,0xff2bb4ff,0xff56c2ff,0xff2bb3ff,0xff2ab3ff,0xff55c2ff,0xff54c1ff,0xff28b1ff,0xff53c1ff,0xff53c1ff,0xff52c1ff,0xff52c0ff,0xff52c0ff,
+ 0xff25afff,0xff51bfff,0xff25b0ff,0xff52c0ff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff28b1ff,0xff53c1ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff40bfff,0xff41bfff,
+ 0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff42c1ff,0xff63cdff,0xff44c2ff,0xff64cdff,0xff45c2ff,0xff45c2ff,0xff56c8ff,0xff76d4ff,0xff47c3ff,0xff67cfff,
+ 0xff68cfff,0xff58cbff,0xff48c5ff,0xff67cfff,0xff47c3ff,0xff46c3ff,0xff46c2ff,0xff65ceff,0xff55c8ff,0xff44c2ff,0xff64cdff,0xff63cdff,0xff43c0ff,0xff63ccff,
+ 0xff41c0ff,0xff62ccff,0xff41bfff,0xff50c3ff,0xff60ccff,0xff40bdff,0xff5fcbff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3dbcff,0xff4dc2ff,0xff4cc1ff,0xff3cbbff,
+ 0xff5dc8ff,0xff3bbaff,0xff3abaff,0xff5cc7ff,0xff5bc6ff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff5ac6ff,0xff5ac5ff,0xff59c5ff,0xff58c3ff,0xff37b5ff,0xff46bcff,
+ 0xff35b5ff,0xff58c2ff,0xff34b4ff,0xff34b4ff,0xff57c1ff,0xff33b3ff,0xff67c8ff,0xff55c1ff,0xff32b2ff,0xff31b2ff,0xff54c1ff,0xff31b1ff,0xff53c0ff,0xff41b8ff,
+ 0xff2fb0ff,0xff2eb0ff,0xff51bfff,0xff2eaeff,0xff51bfff,0xff2eaeff,0xff62c6ff,0xff2daeff,0xff4fbdff,0xff2cacff,0xff2badff,0xff4ebcff,0xff2aacff,0xff60c3ff,
+ 0xff4cbbff,0xff28abff,0xff28aaff,0xff4bbaff,0xff28aaff,0xff4ab9ff,0xff38b1ff,0xff27a9ff,0xff5cc0ff,0xff37b0ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,0xff48b7ff,
+ 0xff48b7ff,0xff24a5ff,0xff33adff,0xff46b5ff,0xff33adff,0xff33adff,0xff21a4ff,0xff45b5ff,0xff31acff,0xff20a3ff,0xff44b3ff,0xff43b3ff,0xff1ea2ff,0xff42b3ff,
+ 0xff42b3ff,0xff1da0ff,0xff1ca0ff,0xff2ea9ff,0xff1ba0ff,0xff41b2ff,0xff2ea9ff,0xff41b2ff,0xff1da1ff,0xff1da1ff,0xff42b3ff,0xff30aaff,0xff31abff,0xff1fa2ff,
+ 0xff50caff,0xff51caff,0xff51cbff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff54cdff,0xff65d1ff,0xff54cdff,0xff55ceff,0xff77d8ff,0xff78d8ff,
+ 0xff56ceff,0xff79d9ff,0xff7ad9ff,0xff6ad5ff,0xff7bd9ff,0xff6ad5ff,0xff7ad9ff,0xff58cfff,0xff58cfff,0xff57ceff,0xff57ceff,0xff78d8ff,0xff67d3ff,0xff77d8ff,
+ 0xff55cdff,0xff65d1ff,0xff76d6ff,0xff76d6ff,0xff53ccff,0xff52cbff,0xff74d6ff,0xff51caff,0xff62cfff,0xff50caff,0xff61cfff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,
+ 0xff4dc8ff,0xff71d3ff,0xff4dc8ff,0xff4cc7ff,0xff5ecdff,0xff4bc7ff,0xff4ac7ff,0xff5cccff,0xff5bccff,0xff6dd1ff,0xff5accff,0xff47c5ff,0xff5acbff,0xff47c5ff,
+ 0xff59caff,0xff59caff,0xff6acfff,0xff58c9ff,0xff57c9ff,0xff56c9ff,0xff43c2ff,0xff42c2ff,0xff55c7ff,0xff68cdff,0xff54c7ff,0xff41c1ff,0xff67cdff,0xff66cdff,
+ 0xff52c6ff,0xff3ebfff,0xff51c5ff,0xff3dbfff,0xff3dbfff,0xff64ccff,0xff63cbff,0xff4fc5ff,0xff4fc5ff,0xff62caff,0xff4ec4ff,0xff4dc3ff,0xff4dc3ff,0xff39bcff,
+ 0xff38bbff,0xff4bc2ff,0xff5fc9ff,0xff4ac1ff,0xff36baff,0xff5ec7ff,0xff5dc7ff,0xff34b9ff,0xff33b9ff,0xff48bfff,0xff47bfff,0xff5bc6ff,0xff46beff,0xff5ac5ff,
+ 0xff46beff,0xff45bdff,0xff30b6ff,0xff44bdff,0xff2fb5ff,0xff58c4ff,0xff43bcff,0xff42bcff,0xff57c3ff,0xff2cb3ff,0xff2cb3ff,0xff56c3ff,0xff40bbff,0xff56c2ff,
+ 0xff29b2ff,0xff3fbaff,0xff28b2ff,0xff3ebaff,0xff28b1ff,0xff52c1ff,0xff52c0ff,0xff26b0ff,0xff25b0ff,0xff3bb7ff,0xff3bb8ff,0xff26b0ff,0xff52c0ff,0xff52c0ff,
+ 0xff28b1ff,0xff53c1ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c1ff,0xff43c1ff,
+ 0xff43c1ff,0xff44c2ff,0xff45c1ff,0xff45c2ff,0xff45c2ff,0xff56c9ff,0xff47c3ff,0xff48c3ff,0xff58cbff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff47c3ff,0xff47c3ff,
+ 0xff46c2ff,0xff55c8ff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff43c0ff,0xff43c0ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,
+ 0xff3fbdff,0xff3fbcff,0xff3ebdff,0xff3ebcff,0xff3ebbff,0xff4dc2ff,0xff3dbbff,0xff3cbaff,0xff3cbaff,0xff3bbaff,0xff3bb9ff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,
+ 0xff39b9ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff35b5ff,0xff46bcff,0xff35b5ff,0xff34b4ff,0xff33b4ff,0xff34b3ff,0xff33b4ff,
+ 0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff32b2ff,0xff30b2ff,0xff31b1ff,0xff30b0ff,0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,
+ 0xff2daeff,0xff3db5ff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff29aaff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,
+ 0xff27aaff,0xff26a9ff,0xff49b9ff,0xff49b8ff,0xff25a7ff,0xff24a8ff,0xff24a8ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff33adff,0xff21a4ff,
+ 0xff20a3ff,0xff32acff,0xff20a3ff,0xff20a3ff,0xff1fa3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1b9fff,
+ 0xff1ba0ff,0xff1ca0ff,0xff1ca1ff,0xff1da0ff,0xff1da1ff,0xff30abff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff62cfff,0xff62d0ff,0xff52cbff,0xff52cbff,
+ 0xff53ccff,0xff53ccff,0xff54ccff,0xff54ccff,0xff55ceff,0xff55ceff,0xff56cdff,0xff56ceff,0xff57cfff,0xff57ceff,0xff58cfff,0xff58cfff,0xff59d0ff,0xff5ad0ff,
+ 0xff59d0ff,0xff6ad5ff,0xff58cfff,0xff57ceff,0xff57ceff,0xff56ceff,0xff56cdff,0xff55cdff,0xff55ceff,0xff54cdff,0xff54ccff,0xff53ccff,0xff52cbff,0xff52cbff,
+ 0xff51cbff,0xff51cbff,0xff50caff,0xff50caff,0xff50caff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4cc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,
+ 0xff4bc7ff,0xff5ccdff,0xff4ac6ff,0xff49c6ff,0xff48c6ff,0xff48c5ff,0xff47c5ff,0xff46c5ff,0xff46c5ff,0xff46c4ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,
+ 0xff44c2ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3cbeff,
+ 0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff38bbff,0xff4bc2ff,0xff4ac1ff,0xff36baff,0xff36baff,
+ 0xff34b9ff,0xff35b9ff,0xff34b9ff,0xff47c0ff,0xff47bfff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff30b7ff,0xff30b6ff,0xff2fb5ff,0xff2fb6ff,0xff2eb5ff,
+ 0xff2eb5ff,0xff42bcff,0xff2db4ff,0xff2cb4ff,0xff2cb3ff,0xff2bb4ff,0xff2bb3ff,0xff2ab2ff,0xff2ab2ff,0xff29b2ff,0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff27b0ff,
+ 0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff3bb7ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bfff,
+ 0xff61ccff,0xff61ccff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff63ccff,0xff43c0ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff46c2ff,
+ 0xff46c3ff,0xff47c3ff,0xff47c5ff,0xff48c5ff,0xff58cbff,0xff57c9ff,0xff47c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff45c2ff,0xff44c2ff,0xff43c2ff,0xff43c1ff,
+ 0xff43c1ff,0xff42c0ff,0xff41c0ff,0xff62ccff,0xff41bfff,0xff41bfff,0xff41bdff,0xff71d0ff,0xff40bdff,0xff3fbdff,0xff3ebcff,0xff5fc9ff,0xff3dbbff,0xff5ec8ff,
+ 0xff3dbbff,0xff3cbbff,0xff3bbbff,0xff3bbaff,0xff4bc0ff,0xff49c0ff,0xff6dcdff,0xff5bc6ff,0xff49c0ff,0xff38b8ff,0xff39b8ff,0xff38b7ff,0xff38b7ff,0xff37b7ff,
+ 0xff58c3ff,0xff36b5ff,0xff47bcff,0xff58c3ff,0xff57c2ff,0xff45bbff,0xff56c1ff,0xff33b3ff,0xff55c1ff,0xff55c1ff,0xff32b2ff,0xff32b2ff,0xff54c1ff,0xff31b2ff,
+ 0xff30b1ff,0xff30b0ff,0xff41b8ff,0xff51bfff,0xff51bfff,0xff40b8ff,0xff51bdff,0xff51bdff,0xff50bdff,0xff4fbdff,0xff2cadff,0xff2badff,0xff2bacff,0xff2aacff,
+ 0xff4dbcff,0xff4cbbff,0xff29abff,0xff28abff,0xff28abff,0xff28aaff,0xff28aaff,0xff4abaff,0xff49b9ff,0xff27a9ff,0xff25a9ff,0xff25a8ff,0xff24a8ff,0xff49b8ff,
+ 0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff34adff,0xff34adff,0xff46b5ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff1fa2ff,
+ 0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff41b2ff,0xff1ca0ff,0xff1ca0ff,0xff1ea1ff,0xff41b3ff,0xff1ea2ff,
+ 0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff62d0ff,0xff62d0ff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff76d6ff,0xff54ccff,0xff55cdff,0xff55cdff,
+ 0xff56ceff,0xff56ceff,0xff56ceff,0xff58ceff,0xff58ceff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff7bd9ff,0xff58cfff,0xff68d4ff,0xff7ad9ff,0xff68d4ff,0xff68d3ff,
+ 0xff66d3ff,0xff77d8ff,0xff54cdff,0xff65d2ff,0xff76d6ff,0xff64d1ff,0xff64d1ff,0xff86daff,0xff74d6ff,0xff51cbff,0xff51cbff,0xff73d5ff,0xff4fc9ff,0xff4fc9ff,
+ 0xff61ceff,0xff60ceff,0xff4ec8ff,0xff71d3ff,0xff71d3ff,0xff5ecdff,0xff4cc8ff,0xff4bc7ff,0xff6fd2ff,0xff4ac7ff,0xff6fd1ff,0xff49c6ff,0xff6dd1ff,0xff48c6ff,
+ 0xff6cd1ff,0xff6cd1ff,0xff46c4ff,0xff6bcfff,0xff7dd6ff,0xff58c9ff,0xff6acfff,0xff44c2ff,0xff43c2ff,0xff56c8ff,0xff8edaff,0xff41c1ff,0xff67cdff,0xff66cdff,
+ 0xff40c0ff,0xff40c0ff,0xff66cdff,0xff3fbfff,0xff3fbfff,0xff3ebfff,0xff64ccff,0xff3dbeff,0xff3cbdff,0xff4fc5ff,0xff63caff,0xff3abdff,0xff4ec4ff,0xff62caff,
+ 0xff39bcff,0xff39bcff,0xff38bcff,0xff37bbff,0xff4bc1ff,0xff4ac2ff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff33b9ff,0xff47bfff,0xff47bfff,0xff33b8ff,
+ 0xff32b7ff,0xff32b7ff,0xff30b7ff,0xff5ac5ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,0xff58c4ff,0xff2db5ff,0xff57c3ff,0xff57c3ff,0xff41bbff,0xff2bb3ff,
+ 0xff56c2ff,0xff56c2ff,0xff29b2ff,0xff3fbaff,0xff3ebaff,0xff3ebaff,0xff28b1ff,0xff52c1ff,0xff52c1ff,0xff26b0ff,0xff26b0ff,0xff3bb8ff,0xff3cb8ff,0xff26b0ff,
+ 0xff52c1ff,0xff3db8ff,0xff53c1ff,0xff3ebaff,0xff54c1ff,0xff3fbaff,0xff40bcff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41c0ff,0xff62ccff,0xff63ccff,0xff52c6ff,
+ 0xff63ccff,0xff43c1ff,0xff43c2ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff46c2ff,0xff47c3ff,0xff47c3ff,0xff48c3ff,0xff48c5ff,0xff68cfff,0xff48c3ff,
+ 0xff77d4ff,0xff46c3ff,0xff65ceff,0xff65ceff,0xff54c7ff,0xff44c2ff,0xff64ceff,0xff63ccff,0xff42c0ff,0xff63ccff,0xff42c0ff,0xff62ccff,0xff41bfff,0xff41bfff,
+ 0xff41bdff,0xff60cbff,0xff3fbdff,0xff3fbcff,0xff3fbdff,0xff5fc9ff,0xff3ebbff,0xff6fcfff,0xff3dbbff,0xff5dc7ff,0xff3bbaff,0xff3bbaff,0xff5cc7ff,0xff3ab9ff,
+ 0xff5bc6ff,0xff3ab9ff,0xff5bc6ff,0xff5bc6ff,0xff38b8ff,0xff38b7ff,0xff59c5ff,0xff37b7ff,0xff58c3ff,0xff36b7ff,0xff58c3ff,0xff34b4ff,0xff57c2ff,0xff45bbff,
+ 0xff56c2ff,0xff55c1ff,0xff55c1ff,0xff55c1ff,0xff32b2ff,0xff32b2ff,0xff54c0ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff51c0ff,0xff51bfff,0xff2eaeff,
+ 0xff3fb8ff,0xff50bdff,0xff3eb7ff,0xff4fbdff,0xff2cadff,0xff2bacff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,
+ 0xff28aaff,0xff28a9ff,0xff27a9ff,0xff26a9ff,0xff49b9ff,0xff49b8ff,0xff37b0ff,0xff49b8ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff24a5ff,0xff47b7ff,0xff23a4ff,
+ 0xff5abfff,0xff21a4ff,0xff45b4ff,0xff46b5ff,0xff20a3ff,0xff20a3ff,0xff43b3ff,0xff43b4ff,0xff42b3ff,0xff42b3ff,0xff41b3ff,0xff1ea1ff,0xff1ca0ff,0xff41b2ff,
+ 0xff1ba0ff,0xff41b1ff,0xff1ca0ff,0xff41b2ff,0xff1da1ff,0xff2faaff,0xff41b3ff,0xff31aaff,0xff1ea2ff,0xff44b3ff,0xff4fcaff,0xff50caff,0xff51cbff,0xff51cbff,
+ 0xff52cbff,0xff52ccff,0xff53ccff,0xff53ccff,0xff76d6ff,0xff55cdff,0xff54cdff,0xff56cdff,0xff55ceff,0xff57ceff,0xff57cfff,0xff57cfff,0xff57cfff,0xff58cfff,
+ 0xff59d0ff,0xff7bd9ff,0xff59d0ff,0xff58cfff,0xff79d9ff,0xff57ceff,0xff79d8ff,0xff78d8ff,0xff56ceff,0xff55cdff,0xff77d7ff,0xff87dcff,0xff76d6ff,0xff76d6ff,
+ 0xff53ccff,0xff75d6ff,0xff52cbff,0xff51cbff,0xff51caff,0xff73d5ff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff72d4ff,0xff4ec8ff,0xff71d3ff,0xff4cc8ff,0xff70d2ff,
+ 0xff4cc8ff,0xff6fd2ff,0xff4ac7ff,0xff4ac7ff,0xff6ed1ff,0xff49c5ff,0xff6ed1ff,0xff6dd1ff,0xff47c5ff,0xff47c4ff,0xff6bd0ff,0xff46c4ff,0xff6bcfff,0xff45c3ff,
+ 0xff6acfff,0xff44c2ff,0xff43c2ff,0xff68ceff,0xff68ceff,0xff42c1ff,0xff8ddaff,0xff67cdff,0xff40c0ff,0xff3fc0ff,0xff66ccff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,
+ 0xff50c5ff,0xff3cbeff,0xff3cbeff,0xff63cbff,0xff50c4ff,0xff3bbdff,0xff62caff,0xff61caff,0xff39bcff,0xff38bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36bbff,
+ 0xff36baff,0xff36baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff32b7ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff5ac5ff,0xff30b6ff,0xff2fb5ff,
+ 0xff2eb6ff,0xff58c4ff,0xff2eb5ff,0xff2db4ff,0xff57c3ff,0xff2cb4ff,0xff57c3ff,0xff56c3ff,0xff2bb3ff,0xff2ab2ff,0xff55c2ff,0xff54c1ff,0xff54c1ff,0xff54c1ff,
+ 0xff53c1ff,0xff52c0ff,0xff52c0ff,0xff3cb8ff,0xff25b0ff,0xff51bfff,0xff25b0ff,0xff52c0ff,0xff27b1ff,0xff27b1ff,0xff52c1ff,0xff54c1ff,0xff54c1ff,0xff6ac9ff,
+ 0xff3fbdff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff43c0ff,0xff74d2ff,0xff63cdff,0xff64cdff,0xff44c2ff,0xff55c8ff,0xff76d4ff,
+ 0xff46c2ff,0xff46c3ff,0xff77d4ff,0xff57c9ff,0xff48c5ff,0xff68cfff,0xff47c3ff,0xff47c3ff,0xff76d4ff,0xff67ceff,0xff65ceff,0xff66ceff,0xff45c2ff,0xff44c2ff,
+ 0xff63cdff,0xff63ccff,0xff63cdff,0xff63ccff,0xff41bfff,0xff51c6ff,0xff61ccff,0xff50c3ff,0xff50c5ff,0xff71d0ff,0xff5fcbff,0xff3fbcff,0xff5fc9ff,0xff70cfff,
+ 0xff4dc2ff,0xff6fcfff,0xff5ec8ff,0xff5dc8ff,0xff3cbaff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,0xff6dcdff,0xff5bc6ff,0xff49bfff,0xff49bfff,0xff5ac6ff,0xff5ac5ff,
+ 0xff48bdff,0xff36b7ff,0xff58c5ff,0xff58c3ff,0xff46bcff,0xff58c2ff,0xff57c3ff,0xff57c2ff,0xff56c1ff,0xff33b3ff,0xff56c1ff,0xff42baff,0xff54c1ff,0xff54c1ff,
+ 0xff41b9ff,0xff31b1ff,0xff65c7ff,0xff40b8ff,0xff40b8ff,0xff51c0ff,0xff51bfff,0xff40b8ff,0xff51bdff,0xff50bdff,0xff50bdff,0xff4fbdff,0xff4fbdff,0xff4ebdff,
+ 0xff3cb5ff,0xff2babff,0xff29acff,0xff2aabff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27aaff,0xff26a9ff,0xff25a8ff,0xff25a9ff,
+ 0xff25a8ff,0xff5bc0ff,0xff49b8ff,0xff48b8ff,0xff23a5ff,0xff47b8ff,0xff23a5ff,0xff22a4ff,0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff32adff,0xff45b4ff,0xff44b3ff,
+ 0xff31acff,0xff44b3ff,0xff31abff,0xff42b3ff,0xff30aaff,0xff41b3ff,0xff41b3ff,0xff2ea9ff,0xff41b2ff,0xff1b9fff,0xff1b9fff,0xff2ea9ff,0xff41b2ff,0xff41b3ff,
+ 0xff41b3ff,0xff42b3ff,0xff42b3ff,0xff57bcff,0xff50caff,0xff50cbff,0xff50caff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff53cdff,0xff53cdff,0xff54cdff,
+ 0xff55cdff,0xff55cdff,0xff55ceff,0xff67d3ff,0xff56ceff,0xff57cfff,0xff68d4ff,0xff59cfff,0xff7bd9ff,0xff59d0ff,0xff59d0ff,0xff58d0ff,0xff7ad9ff,0xff57cfff,
+ 0xff56ceff,0xff57ceff,0xff56ceff,0xff55ceff,0xff54ceff,0xff54cdff,0xff54cdff,0xff53ccff,0xff53ccff,0xff52ccff,0xff52ccff,0xff51cbff,0xff51caff,0xff50caff,
+ 0xff50caff,0xff4fc9ff,0xff4ec9ff,0xff4ec9ff,0xff4ec8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff6fd2ff,0xff4bc7ff,0xff4bc6ff,0xff49c7ff,0xff4ac6ff,0xff49c6ff,
+ 0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff47c4ff,0xff46c3ff,0xff45c3ff,0xff44c3ff,0xff45c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,
+ 0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff51c5ff,0xff3ebfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbeff,0xff3bbeff,0xff3abdff,
+ 0xff3abcff,0xff39bcff,0xff39bcff,0xff39bbff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,0xff36b9ff,0xff36b9ff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff33b8ff,
+ 0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff31b6ff,0xff2fb6ff,0xff2fb5ff,0xff59c4ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2cb5ff,0xff2db4ff,
+ 0xff2cb3ff,0xff2bb4ff,0xff2bb3ff,0xff2ab2ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff27b0ff,0xff26b0ff,0xff52bfff,0xff25afff,
+ 0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,
+ 0xff42c0ff,0xff42c1ff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff45c3ff,0xff46c3ff,0xff46c3ff,0xff47c3ff,0xff48c5ff,0xff48c5ff,
+ 0xff48c3ff,0xff48c5ff,0xff47c3ff,0xff46c2ff,0xff46c2ff,0xff46c2ff,0xff44c1ff,0xff44c1ff,0xff44c1ff,0xff44c0ff,0xff42c1ff,0xff42c0ff,0xff41bfff,0xff41c0ff,
+ 0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bcff,0xff3fbdff,0xff3ebdff,0xff3ebcff,0xff3dbbff,0xff3dbbff,0xff3cbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,
+ 0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff38b8ff,0xff38b7ff,0xff37b7ff,0xff37b7ff,0xff36b7ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,
+ 0xff34b4ff,0xff33b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2cacff,0xff2bacff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff29abff,
+ 0xff28abff,0xff28aaff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff26a8ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff24a5ff,
+ 0xff23a5ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,
+ 0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1b9fff,0xff1ca1ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,
+ 0xff50caff,0xff51cbff,0xff52cbff,0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54cdff,0xff55cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff57cfff,0xff58ceff,
+ 0xff68d4ff,0xff69d4ff,0xff59d0ff,0xff5ad0ff,0xff58cfff,0xff58d0ff,0xff58cfff,0xff7ad8ff,0xff57ceff,0xff56ceff,0xff56ceff,0xff66d2ff,0xff55cdff,0xff65d2ff,
+ 0xff54cdff,0xff53ccff,0xff53ccff,0xff75d6ff,0xff75d6ff,0xff51cbff,0xff74d6ff,0xff73d5ff,0xff73d5ff,0xff61cfff,0xff4fcaff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff49c6ff,0xff49c6ff,0xff48c6ff,0xff47c5ff,0xff47c5ff,0xff46c5ff,0xff47c4ff,0xff46c4ff,
+ 0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3fbfff,
+ 0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3dbeff,0xff3cbdff,0xff3cbeff,0xff3bbeff,0xff3abdff,0xff3abdff,0xff39bdff,0xff39bcff,0xff38bbff,0xff38bbff,0xff38bbff,
+ 0xff37bbff,0xff37baff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,0xff33b9ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff31b7ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,
+ 0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb6ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2cb3ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,
+ 0xff29b1ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff45c2ff,
+ 0xff45c2ff,0xff45c2ff,0xff45c3ff,0xff46c3ff,0xff67cfff,0xff57c9ff,0xff48c3ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff47c3ff,0xff66cfff,0xff45c2ff,0xff45c2ff,
+ 0xff45c2ff,0xff54c8ff,0xff43c1ff,0xff63cdff,0xff43c1ff,0xff42c1ff,0xff63ccff,0xff41c0ff,0xff41c0ff,0xff61ccff,0xff40bdff,0xff60cbff,0xff40bcff,0xff3fbcff,
+ 0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3dbcff,0xff3cbaff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff39b8ff,
+ 0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff35b5ff,0xff34b5ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff32b2ff,
+ 0xff33b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2cadff,
+ 0xff2cadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff27a9ff,0xff27a9ff,
+ 0xff26a8ff,0xff26a8ff,0xff25a7ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff21a4ff,0xff22a4ff,0xff21a3ff,0xff21a4ff,
+ 0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1da1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ba0ff,0xff1ca1ff,
+ 0xff1ca0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff84daff,0xff73d6ff,0xff74d6ff,0xff51cbff,0xff86dbff,0xff76d6ff,0xff64d1ff,
+ 0xff53ccff,0xff54cdff,0xff55cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff56ceff,0xff79d9ff,0xff8addff,0xff69d5ff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff58cfff,
+ 0xff57cfff,0xff79d9ff,0xff57cfff,0xff56ceff,0xff67d3ff,0xff77d7ff,0xff55cdff,0xff87dcff,0xff76d6ff,0xff76d6ff,0xff76d6ff,0xff52cbff,0xff52ccff,0xff51cbff,
+ 0xff51caff,0xff73d6ff,0xff50caff,0xff72d4ff,0xff4fcaff,0xff4ec9ff,0xff71d4ff,0xff82d9ff,0xff70d3ff,0xff70d3ff,0xff5dcdff,0xff6fd2ff,0xff6fd1ff,0xff5bccff,
+ 0xff49c7ff,0xff49c5ff,0xff49c5ff,0xff5acbff,0xff6cd0ff,0xff6cd0ff,0xff59caff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff43c2ff,0xff42c2ff,
+ 0xff43c1ff,0xff42c2ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff3ec0ff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbdff,0xff3bbdff,
+ 0xff3bbeff,0xff3abdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,
+ 0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff31b6ff,0xff30b6ff,0xff2fb5ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,
+ 0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b1ff,0xff28b1ff,0xff28b2ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,
+ 0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff61ccff,0xff41bdff,0xff50c5ff,
+ 0xff41bfff,0xff62ccff,0xff62ccff,0xff63ccff,0xff43c0ff,0xff44c1ff,0xff44c1ff,0xff44c2ff,0xff65ceff,0xff66ceff,0xff56c9ff,0xff46c2ff,0xff67cfff,0xff47c3ff,
+ 0xff47c3ff,0xff48c5ff,0xff48c3ff,0xff47c3ff,0xff47c3ff,0xff66cfff,0xff46c2ff,0xff45c2ff,0xff45c2ff,0xff65cdff,0xff44c1ff,0xff64cdff,0xff42c0ff,0xff63ccff,
+ 0xff62ccff,0xff41c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff60ccff,0xff3fbcff,0xff5fcbff,0xff3fbdff,0xff3ebcff,0xff5fc9ff,0xff5ec9ff,0xff3cbbff,0xff5dc7ff,
+ 0xff5dc7ff,0xff5cc7ff,0xff5cc6ff,0xff5cc6ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff38b8ff,0xff5bc6ff,0xff5ac6ff,0xff5ac6ff,0xff36b7ff,0xff36b7ff,0xff36b5ff,
+ 0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff31b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,
+ 0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2aacff,0xff2aabff,0xff2aacff,
+ 0xff29abff,0xff29aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,
+ 0xff24a7ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff22a5ff,0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea2ff,
+ 0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff1b9fff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff1ea2ff,0xff1fa2ff,
+ 0xff50caff,0xff74d5ff,0xff51cbff,0xff51cbff,0xff51cbff,0xff75d6ff,0xff76d6ff,0xff76d6ff,0xff53cdff,0xff54ccff,0xff55cdff,0xff55ceff,0xff55ceff,0xff56ceff,
+ 0xff56ceff,0xff58cfff,0xff79d9ff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff59d0ff,0xff58cfff,0xff58cfff,0xff7ad9ff,0xff56ceff,0xff56ceff,0xff56ceff,0xff77d7ff,
+ 0xff55cdff,0xff87dcff,0xff53ccff,0xff76d6ff,0xff76d6ff,0xff52cbff,0xff52cbff,0xff74d5ff,0xff51cbff,0xff73d5ff,0xff50caff,0xff61ceff,0xff72d4ff,0xff72d4ff,
+ 0xff71d3ff,0xff82d9ff,0xff4cc8ff,0xff6fd3ff,0xff6fd2ff,0xff4bc7ff,0xff4ac6ff,0xff5cccff,0xff49c6ff,0xff5bccff,0xff48c5ff,0xff6cd1ff,0xff47c5ff,0xff47c4ff,
+ 0xff6bd0ff,0xff46c4ff,0xff46c3ff,0xff45c4ff,0xff44c3ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff41c1ff,0xff40c1ff,0xff40c1ff,0xff40c0ff,
+ 0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff39bcff,0xff38bbff,
+ 0xff38bbff,0xff37bbff,0xff37baff,0xff37baff,0xff36baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff32b7ff,
+ 0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2db4ff,0xff2db5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,
+ 0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b0ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,
+ 0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff50c3ff,0xff40bdff,0xff41bfff,0xff41c0ff,0xff51c5ff,0xff41c0ff,0xff52c6ff,0xff42c0ff,0xff43c1ff,
+ 0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff57c9ff,0xff48c3ff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff57c9ff,0xff66cfff,
+ 0xff65ceff,0xff45c2ff,0xff64ceff,0xff64cdff,0xff54c7ff,0xff53c7ff,0xff63ccff,0xff52c6ff,0xff41c0ff,0xff62ccff,0xff61ccff,0xff41bdff,0xff40bfff,0xff50c3ff,
+ 0xff3fbcff,0xff4fc3ff,0xff3fbdff,0xff3ebcff,0xff5ec9ff,0xff5ec8ff,0xff5ec8ff,0xff4cc1ff,0xff3bbaff,0xff5cc7ff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,0xff6dcdff,
+ 0xff49c0ff,0xff39b8ff,0xff5bc5ff,0xff5ac6ff,0xff49bdff,0xff36b7ff,0xff36b7ff,0xff36b5ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,
+ 0xff33b3ff,0xff33b2ff,0xff32b2ff,0xff31b2ff,0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2dadff,
+ 0xff2daeff,0xff2cadff,0xff2cacff,0xff2cacff,0xff2badff,0xff2aacff,0xff2aacff,0xff2aabff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27aaff,0xff28a9ff,
+ 0xff27aaff,0xff26a8ff,0xff26a8ff,0xff26a8ff,0xff24a7ff,0xff24a7ff,0xff24a8ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff22a5ff,0xff21a4ff,
+ 0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,
+ 0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff52cbff,0xff52cbff,
+ 0xff53ccff,0xff53ccff,0xff54ccff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56cdff,0xff56ceff,0xff57cfff,0xff58cfff,0xff58cfff,0xff58cfff,0xff58d0ff,0xff59d0ff,
+ 0xff58d0ff,0xff59cfff,0xff57cfff,0xff57ceff,0xff57cfff,0xff56ceff,0xff56cdff,0xff55ceff,0xff55cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53cbff,0xff52cbff,
+ 0xff52cbff,0xff51caff,0xff50cbff,0xff50cbff,0xff4fc9ff,0xff4fcaff,0xff72d4ff,0xff72d4ff,0xff4dc8ff,0xff5fcdff,0xff4dc8ff,0xff4cc7ff,0xff4bc8ff,0xff4bc7ff,
+ 0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff49c5ff,0xff49c6ff,0xff48c5ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,
+ 0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3fbfff,0xff3ec0ff,0xff3dbfff,0xff3dbfff,0xff3cbeff,
+ 0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff39bcff,0xff39bbff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37baff,0xff36baff,0xff36baff,0xff36b9ff,
+ 0xff35baff,0xff35b9ff,0xff34b9ff,0xff33b9ff,0xff32b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b6ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,
+ 0xff2eb5ff,0xff2db5ff,0xff2cb4ff,0xff2db4ff,0xff2cb4ff,0xff2bb4ff,0xff2ab3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff27b1ff,
+ 0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b0ff,0xff28b1ff,0xff28b1ff,0xff29b1ff,0xff29b2ff,0xff40bdff,0xff40bdff,
+ 0xff40bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff42c1ff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c1ff,0xff46c2ff,0xff45c2ff,0xff46c3ff,
+ 0xff46c3ff,0xff47c3ff,0xff48c5ff,0xff48c5ff,0xff48c3ff,0xff47c5ff,0xff46c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff45c1ff,0xff45c1ff,0xff43c1ff,0xff43c1ff,
+ 0xff43c0ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,0xff40bdff,0xff3fbdff,0xff3ebcff,0xff3ebcff,0xff3ebcff,0xff3dbbff,
+ 0xff3dbbff,0xff3cbbff,0xff3bbbff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff3ab8ff,0xff39b8ff,0xff38b8ff,0xff38b7ff,0xff37b7ff,0xff37b7ff,
+ 0xff36b5ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff34b5ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff31b2ff,0xff32b2ff,0xff30b1ff,
+ 0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2bacff,
+ 0xff2aacff,0xff2aabff,0xff29abff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff25a9ff,0xff25a7ff,0xff24a8ff,
+ 0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,0xff20a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,
+ 0xff1fa1ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,0xff1da0ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff50cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53cbff,0xff53cdff,0xff53ccff,0xff54cdff,0xff55cdff,0xff55cdff,
+ 0xff56ceff,0xff57ceff,0xff57cfff,0xff57ceff,0xff58cfff,0xff58cfff,0xff58d0ff,0xff59d0ff,0xff59d0ff,0xff58cfff,0xff58cfff,0xff57cfff,0xff57cfff,0xff56ceff,
+ 0xff67d2ff,0xff77d7ff,0xff54cdff,0xff54ccff,0xff76d7ff,0xff53cdff,0xff76d6ff,0xff52cbff,0xff52cbff,0xff51cbff,0xff74d6ff,0xff73d5ff,0xff73d5ff,0xff61cfff,
+ 0xff72d4ff,0xff83d9ff,0xff71d4ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,
+ 0xff47c5ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff45c3ff,0xff44c4ff,0xff44c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff41c1ff,0xff40c0ff,
+ 0xff40c1ff,0xff40c0ff,0xff3fbfff,0xff3fc0ff,0xff65cdff,0xff3dbfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abcff,
+ 0xff39bcff,0xff38bcff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,0xff33b8ff,0xff34b8ff,0xff32b8ff,0xff32b8ff,
+ 0xff32b7ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff5ac5ff,0xff2fb6ff,0xff2eb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,
+ 0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,0xff26afff,0xff25afff,0xff26b0ff,0xff26b0ff,
+ 0xff26b0ff,0xff27b1ff,0xff27b2ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff50c3ff,0xff61cbff,0xff50c3ff,0xff51c5ff,0xff51c5ff,0xff62ccff,0xff42c0ff,
+ 0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff65cdff,0xff65ceff,0xff46c2ff,0xff56c8ff,0xff67cfff,0xff57c9ff,0xff58c9ff,0xff49c5ff,0xff48c3ff,0xff57cbff,
+ 0xff47c3ff,0xff46c3ff,0xff45c2ff,0xff45c2ff,0xff45c2ff,0xff65cdff,0xff44c1ff,0xff43c0ff,0xff63cdff,0xff43c0ff,0xff63ccff,0xff51c6ff,0xff62ccff,0xff41bfff,
+ 0xff61ccff,0xff40bfff,0xff50c3ff,0xff3fbdff,0xff3fbcff,0xff5fc9ff,0xff3dbbff,0xff4dc1ff,0xff3cbbff,0xff4cc1ff,0xff4bc1ff,0xff4bc1ff,0xff5cc7ff,0xff3abaff,
+ 0xff49c0ff,0xff5bc6ff,0xff49bfff,0xff38b8ff,0xff39b8ff,0xff38b8ff,0xff38b7ff,0xff48bdff,0xff58c3ff,0xff47bcff,0xff35b5ff,0xff34b4ff,0xff34b5ff,0xff33b4ff,
+ 0xff44bbff,0xff33b3ff,0xff43baff,0xff33b3ff,0xff55c1ff,0xff54c1ff,0xff31b2ff,0xff53c0ff,0xff65c7ff,0xff41b8ff,0xff40b8ff,0xff2eb0ff,0xff2eb0ff,0xff40b7ff,
+ 0xff3fb8ff,0xff50bdff,0xff3eb7ff,0xff2dadff,0xff4fbdff,0xff4fbdff,0xff2bacff,0xff2aacff,0xff2aacff,0xff29acff,0xff29abff,0xff4cbaff,0xff4cbaff,0xff28aaff,
+ 0xff28aaff,0xff27aaff,0xff27a9ff,0xff26a9ff,0xff49b9ff,0xff49b8ff,0xff25a8ff,0xff49b8ff,0xff5bc0ff,0xff35aeff,0xff35adff,0xff23a5ff,0xff23a5ff,0xff33adff,
+ 0xff33adff,0xff46b5ff,0xff32acff,0xff20a4ff,0xff45b4ff,0xff44b4ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff41b3ff,0xff41b3ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff62cfff,0xff51caff,0xff74d6ff,
+ 0xff74d6ff,0xff63d1ff,0xff52ccff,0xff76d6ff,0xff53cdff,0xff54ccff,0xff55cdff,0xff77d8ff,0xff56ceff,0xff56ceff,0xff67d4ff,0xff89ddff,0xff58cfff,0xff7ad9ff,
+ 0xff7bd9ff,0xff59d0ff,0xff59d0ff,0xff7ad9ff,0xff58cfff,0xff57ceff,0xff57ceff,0xff56ceff,0xff56ceff,0xff78d7ff,0xff54ceff,0xff54cdff,0xff76d7ff,0xff53ccff,
+ 0xff76d6ff,0xff63d1ff,0xff52cbff,0xff74d6ff,0xff73d5ff,0xff50cbff,0xff50caff,0xff4fc9ff,0xff4fc9ff,0xff72d4ff,0xff4dc9ff,0xff71d3ff,0xff4dc8ff,0xff70d3ff,
+ 0xff6fd2ff,0xff5dcdff,0xff4bc7ff,0xff6fd2ff,0xff6fd1ff,0xff49c6ff,0xff6dd1ff,0xff48c6ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff59caff,0xff45c4ff,0xff6acfff,
+ 0xff44c3ff,0xff44c3ff,0xff44c2ff,0xff42c2ff,0xff68ceff,0xff54c8ff,0xff67cdff,0xff66cdff,0xff40c0ff,0xff3fc0ff,0xff52c6ff,0xff3fc0ff,0xff65ccff,0xff3ebfff,
+ 0xff65ccff,0xff3dbeff,0xff3dbeff,0xff63cbff,0xff76d1ff,0xff3abdff,0xff62caff,0xff62caff,0xff39bcff,0xff39bcff,0xff5fc9ff,0xff37bbff,0xff37baff,0xff37baff,
+ 0xff5ec8ff,0xff36b9ff,0xff35baff,0xff5ec7ff,0xff34b9ff,0xff33b9ff,0xff33b9ff,0xff5bc6ff,0xff32b7ff,0xff31b7ff,0xff46beff,0xff30b6ff,0xff5ac5ff,0xff2fb5ff,
+ 0xff59c4ff,0xff2eb5ff,0xff2eb5ff,0xff57c4ff,0xff6ccbff,0xff2cb4ff,0xff57c3ff,0xff56c2ff,0xff2bb3ff,0xff2ab3ff,0xff55c1ff,0xff29b2ff,0xff29b1ff,0xff28b2ff,
+ 0xff52c1ff,0xff27b1ff,0xff26b0ff,0xff52c0ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff27b1ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,
+ 0xff40bdff,0xff60cbff,0xff60ccff,0xff72d0ff,0xff62ccff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff64ceff,0xff45c2ff,0xff45c2ff,
+ 0xff46c3ff,0xff67ceff,0xff47c3ff,0xff48c3ff,0xff67cfff,0xff48c5ff,0xff48c5ff,0xff67cfff,0xff46c3ff,0xff46c2ff,0xff46c3ff,0xff45c2ff,0xff45c2ff,0xff65cdff,
+ 0xff43c1ff,0xff43c1ff,0xff63cdff,0xff43c0ff,0xff63ccff,0xff41bfff,0xff41bfff,0xff61ccff,0xff61cbff,0xff40bdff,0xff4fc3ff,0xff3fbcff,0xff3ebcff,0xff5fc9ff,
+ 0xff3dbcff,0xff5ec8ff,0xff3dbbff,0xff6eceff,0xff5cc8ff,0xff3bbaff,0xff3abaff,0xff5cc7ff,0xff6dcdff,0xff5bc6ff,0xff5bc6ff,0xff39b8ff,0xff38b8ff,0xff38b7ff,
+ 0xff38b7ff,0xff58c3ff,0xff58c5ff,0xff69cbff,0xff35b5ff,0xff34b5ff,0xff34b4ff,0xff34b4ff,0xff57c2ff,0xff55c1ff,0xff55c1ff,0xff55c1ff,0xff32b2ff,0xff32b2ff,
+ 0xff31b2ff,0xff30b2ff,0xff53c0ff,0xff30b1ff,0xff52bfff,0xff2eb0ff,0xff40b8ff,0xff51bfff,0xff51bdff,0xff2daeff,0xff50bdff,0xff4fbdff,0xff4fbcff,0xff4ebdff,
+ 0xff3cb4ff,0xff2bacff,0xff2aabff,0xff2aabff,0xff4cbbff,0xff28abff,0xff28abff,0xff4bbaff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff49b9ff,0xff26a9ff,0xff25a8ff,
+ 0xff25a8ff,0xff24a7ff,0xff48b8ff,0xff24a7ff,0xff48b7ff,0xff23a5ff,0xff34adff,0xff46b7ff,0xff46b5ff,0xff21a4ff,0xff46b4ff,0xff45b4ff,0xff44b4ff,0xff44b4ff,
+ 0xff31abff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff42b3ff,0xff1da1ff,0xff1ca1ff,0xff41b2ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,
+ 0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff73d5ff,0xff74d5ff,0xff85daff,0xff75d6ff,0xff52cbff,0xff52ccff,0xff53ccff,0xff54ccff,0xff54cdff,
+ 0xff55cdff,0xff67d3ff,0xff78d8ff,0xff78d8ff,0xff67d3ff,0xff79d8ff,0xff58cfff,0xff58d0ff,0xff6ad4ff,0xff7bd9ff,0xff7bd9ff,0xff7ad9ff,0xff58cfff,0xff57ceff,
+ 0xff56cfff,0xff57ceff,0xff78d7ff,0xff88dcff,0xff65d2ff,0xff65d2ff,0xff87dcff,0xff76d6ff,0xff75d6ff,0xff75d6ff,0xff75d6ff,0xff62d0ff,0xff73d5ff,0xff73d6ff,
+ 0xff72d5ff,0xff4fcaff,0xff4ecaff,0xff72d3ff,0xff4dc9ff,0xff5fcdff,0xff70d3ff,0xff70d2ff,0xff70d2ff,0xff6fd2ff,0xff6fd2ff,0xff5bccff,0xff6ed1ff,0xff6ed1ff,
+ 0xff6dd1ff,0xff47c5ff,0xff5acbff,0xff7ed6ff,0xff47c4ff,0xff6bd0ff,0xff6ad0ff,0xff7dd5ff,0xff45c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff55c7ff,0xff68cdff,
+ 0xff67cdff,0xff54c7ff,0xff66cdff,0xff66cdff,0xff52c6ff,0xff3ebfff,0xff65ccff,0xff64ccff,0xff3ebeff,0xff63cbff,0xff50c5ff,0xff63cbff,0xff76d2ff,0xff62caff,
+ 0xff62caff,0xff4dc3ff,0xff61caff,0xff60c9ff,0xff4cc2ff,0xff37bbff,0xff73cfff,0xff4ac2ff,0xff4ac1ff,0xff5ec7ff,0xff5ec8ff,0xff48c0ff,0xff34b8ff,0xff33b8ff,
+ 0xff33b8ff,0xff47bfff,0xff5ac5ff,0xff5ac5ff,0xff46beff,0xff30b6ff,0xff5ac5ff,0xff59c5ff,0xff2fb6ff,0xff59c4ff,0xff42bcff,0xff57c4ff,0xff6bcbff,0xff57c2ff,
+ 0xff56c3ff,0xff40bcff,0xff56c2ff,0xff55c1ff,0xff3fbaff,0xff29b2ff,0xff69c9ff,0xff3ebaff,0xff3db9ff,0xff52c1ff,0xff52c0ff,0xff3cb8ff,0xff26afff,0xff25b0ff,
+ 0xff26afff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff40bfff,0xff41bfff,0xff41bfff,0xff41c0ff,
+ 0xff42c0ff,0xff42c0ff,0xff42c1ff,0xff43c0ff,0xff44c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff46c2ff,0xff47c3ff,0xff46c3ff,0xff48c5ff,0xff47c5ff,0xff48c5ff,
+ 0xff47c5ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff45c3ff,0xff45c2ff,0xff44c2ff,0xff44c2ff,0xff43c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,0xff42bfff,0xff41bfff,
+ 0xff41c0ff,0xff41bdff,0xff40bfff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,0xff3dbcff,0xff5ec9ff,0xff5dc8ff,0xff5dc8ff,0xff5dc8ff,0xff3bbaff,
+ 0xff3bb9ff,0xff3abaff,0xff3abaff,0xff39b8ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff49bfff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b7ff,0xff35b5ff,0xff34b5ff,
+ 0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b3ff,0xff31b2ff,0xff32b1ff,0xff30b2ff,0xff30b1ff,0xff30b1ff,0xff40b8ff,0xff51bfff,
+ 0xff51bfff,0xff40b8ff,0xff51bdff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2badff,0xff2badff,0xff2bacff,0xff3bb4ff,0xff29abff,0xff29abff,0xff28abff,
+ 0xff28abff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a5ff,0xff35adff,0xff47b7ff,
+ 0xff46b7ff,0xff33adff,0xff46b5ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff30abff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,
+ 0xff1ca1ff,0xff1ca0ff,0xff1c9fff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1ea2ff,0xff1ea2ff,0xff1ea1ff,0xff1fa2ff,0xff50caff,0xff50caff,
+ 0xff51cbff,0xff51cbff,0xff52ccff,0xff52cbff,0xff53ccff,0xff53ccff,0xff53cdff,0xff54cdff,0xff54cdff,0xff55cdff,0xff56ceff,0xff56cfff,0xff56ceff,0xff58cfff,
+ 0xff57cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff58d0ff,0xff58cfff,0xff57cfff,0xff57ceff,0xff56ceff,0xff56ceff,0xff55cdff,0xff55ceff,0xff54ccff,
+ 0xff54ccff,0xff53ccff,0xff53ccff,0xff52cbff,0xff52cbff,0xff51caff,0xff51cbff,0xff50caff,0xff50caff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4ec8ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c4ff,0xff47c4ff,0xff46c4ff,0xff46c3ff,
+ 0xff45c3ff,0xff45c3ff,0xff44c2ff,0xff44c2ff,0xff43c3ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff3fc0ff,
+ 0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abcff,0xff39bcff,0xff38bbff,0xff38bcff,0xff37bbff,
+ 0xff37baff,0xff37baff,0xff36baff,0xff36b9ff,0xff35baff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff30b7ff,0xff30b7ff,
+ 0xff30b6ff,0xff30b6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2db5ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff2ab2ff,0xff29b2ff,
+ 0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff27b1ff,0xff26b1ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff40bfff,0xff61ccff,0xff51c5ff,0xff41bfff,0xff41bfff,0xff42c1ff,0xff42c1ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,
+ 0xff45c2ff,0xff45c2ff,0xff45c3ff,0xff46c2ff,0xff47c3ff,0xff47c5ff,0xff47c5ff,0xff48c5ff,0xff48c5ff,0xff68cfff,0xff46c3ff,0xff46c2ff,0xff56c8ff,0xff45c2ff,
+ 0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff51c5ff,0xff41bfff,0xff41bfff,0xff41bdff,0xff50c3ff,0xff3fbdff,
+ 0xff3fbcff,0xff3ebcff,0xff5fc9ff,0xff3dbcff,0xff3cbbff,0xff4cc1ff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3abaff,0xff3ab9ff,0xff49c0ff,0xff3ab8ff,0xff39b8ff,
+ 0xff38b7ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff37b5ff,0xff36b5ff,0xff36b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff55c1ff,0xff32b3ff,
+ 0xff32b3ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2eb1ff,0xff2eaeff,0xff2eaeff,0xff2eb0ff,0xff3fb5ff,0xff2daeff,0xff2dadff,
+ 0xff4fbdff,0xff4fbdff,0xff2bacff,0xff2aacff,0xff2aacff,0xff4dbbff,0xff29abff,0xff28aaff,0xff28abff,0xff28aaff,0xff27aaff,0xff28aaff,0xff26aaff,0xff26a8ff,
+ 0xff26a9ff,0xff26a8ff,0xff49b8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,
+ 0xff32acff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff42b3ff,0xff1ea1ff,0xff1da1ff,0xff2eaaff,0xff1ca0ff,0xff1ca0ff,0xff41b1ff,0xff1b9fff,0xff1ca0ff,
+ 0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff51caff,0xff74d5ff,0xff75d6ff,0xff52ccff,0xff53ccff,0xff53ccff,
+ 0xff53ccff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff56ceff,0xff57cfff,0xff57ceff,0xff57cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff7bd9ff,0xff59cfff,
+ 0xff57cfff,0xff57cfff,0xff79d9ff,0xff56ceff,0xff55ceff,0xff55cdff,0xff54ceff,0xff55ccff,0xff53cdff,0xff53ccff,0xff53ccff,0xff52cbff,0xff63d0ff,0xff51cbff,
+ 0xff50cbff,0xff50caff,0xff73d5ff,0xff4fc9ff,0xff4fc9ff,0xff72d4ff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,0xff6fd3ff,0xff4cc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,
+ 0xff4ac6ff,0xff6ed1ff,0xff48c6ff,0xff48c5ff,0xff47c4ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c2ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,
+ 0xff43c2ff,0xff42c2ff,0xff68cdff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff40c0ff,0xff3ec0ff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3bbdff,
+ 0xff3bbdff,0xff62caff,0xff3abcff,0xff62caff,0xff39bbff,0xff39bcff,0xff60c9ff,0xff38bbff,0xff37bbff,0xff5fc8ff,0xff36baff,0xff35baff,0xff35b9ff,0xff35b9ff,
+ 0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff5bc5ff,0xff31b7ff,0xff30b6ff,0xff2fb7ff,0xff2fb6ff,0xff2fb5ff,0xff2fb6ff,0xff2db5ff,0xff2db4ff,
+ 0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2bb3ff,0xff56c2ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff53c1ff,0xff28b1ff,0xff28b1ff,0xff3db9ff,0xff27b0ff,
+ 0xff26b0ff,0xff51c0ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff61cbff,0xff41bfff,
+ 0xff62ccff,0xff62ccff,0xff62ccff,0xff52c6ff,0xff63ccff,0xff63ccff,0xff64ceff,0xff44c2ff,0xff76d4ff,0xff65ceff,0xff56c8ff,0xff66ceff,0xff67cfff,0xff67cfff,
+ 0xff47c3ff,0xff48c5ff,0xff67cfff,0xff47c3ff,0xff66cfff,0xff66cfff,0xff76d4ff,0xff55c8ff,0xff65ceff,0xff65ceff,0xff54c7ff,0xff63ccff,0xff42c0ff,0xff63ccff,
+ 0xff42bfff,0xff51c6ff,0xff62ccff,0xff41bdff,0xff60cbff,0xff60cbff,0xff71d0ff,0xff3fbcff,0xff3ebcff,0xff5fc9ff,0xff3ebbff,0xff5ec8ff,0xff5dc8ff,0xff6ecfff,
+ 0xff4bc1ff,0xff5cc7ff,0xff5cc6ff,0xff4ac1ff,0xff5bc6ff,0xff6dccff,0xff49bfff,0xff49bfff,0xff5bc6ff,0xff5ac5ff,0xff48bdff,0xff6accff,0xff59c5ff,0xff58c3ff,
+ 0xff58c2ff,0xff35b4ff,0xff34b4ff,0xff56c2ff,0xff33b4ff,0xff56c1ff,0xff33b3ff,0xff54c1ff,0xff55c1ff,0xff54c1ff,0xff41b9ff,0xff66c7ff,0xff53c0ff,0xff53c0ff,
+ 0xff40b8ff,0xff52bfff,0xff51bdff,0xff40b8ff,0xff51bdff,0xff62c6ff,0xff3eb5ff,0xff4fbdff,0xff2cadff,0xff2cacff,0xff2bacff,0xff2bacff,0xff4cbcff,0xff29abff,
+ 0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27aaff,0xff26a9ff,0xff26a8ff,0xff49b8ff,0xff25a8ff,0xff5cc0ff,0xff49b8ff,0xff48b8ff,
+ 0xff48b7ff,0xff47b7ff,0xff46b7ff,0xff34adff,0xff46b5ff,0xff46b5ff,0xff45b5ff,0xff32acff,0xff59bdff,0xff45b4ff,0xff20a2ff,0xff1fa2ff,0xff43b3ff,0xff1ea1ff,
+ 0xff1da1ff,0xff2faaff,0xff41b3ff,0xff1ca0ff,0xff1c9fff,0xff41b2ff,0xff1ba0ff,0xff41b2ff,0xff41b3ff,0xff41b3ff,0xff30aaff,0xff42b3ff,0xff43b3ff,0xff43b3ff,
+ 0xff50caff,0xff51caff,0xff73d5ff,0xff51cbff,0xff74d6ff,0xff52ccff,0xff53ccff,0xff76d7ff,0xff76d7ff,0xff55cdff,0xff77d7ff,0xff56cdff,0xff78d8ff,0xff79d8ff,
+ 0xff79d8ff,0xff89ddff,0xff79d9ff,0xff8addff,0xff59cfff,0xff6ad5ff,0xff6ad5ff,0xff58cfff,0xff79d9ff,0xff57cfff,0xff78d9ff,0xff56ceff,0xff77d8ff,0xff77d7ff,
+ 0xff77d8ff,0xff65d2ff,0xff64d1ff,0xff76d7ff,0xff53ccff,0xff52cbff,0xff75d6ff,0xff51cbff,0xff74d6ff,0xff50cbff,0xff73d5ff,0xff4fc9ff,0xff61ceff,0xff60ceff,
+ 0xff4dc9ff,0xff71d4ff,0xff4dc8ff,0xff70d2ff,0xff6fd2ff,0xff4bc7ff,0xff4ac7ff,0xff6fd1ff,0xff49c6ff,0xff6ed1ff,0xff49c6ff,0xff6cd1ff,0xff47c5ff,0xff6bd0ff,
+ 0xff47c4ff,0xff6bd0ff,0xff46c4ff,0xff6ad0ff,0xff6acfff,0xff43c3ff,0xff43c3ff,0xff69ceff,0xff42c2ff,0xff68cdff,0xff41c1ff,0xff67cdff,0xff40c0ff,0xff3fc0ff,
+ 0xff66cdff,0xff65cdff,0xff3ebfff,0xff64cbff,0xff64ccff,0xff63cbff,0xff63cbff,0xff63cbff,0xff3bbdff,0xff63caff,0xff3abdff,0xff61caff,0xff39bcff,0xff38bcff,
+ 0xff38bcff,0xff38baff,0xff5fc8ff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,0xff35b9ff,0xff34b9ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,0xff46beff,0xff46beff,
+ 0xff30b7ff,0xff5ac5ff,0xff30b6ff,0xff5ac5ff,0xff58c5ff,0xff2eb6ff,0xff2eb5ff,0xff57c4ff,0xff6ccbff,0xff57c3ff,0xff6bcaff,0xff2bb4ff,0xff56c2ff,0xff2bb2ff,
+ 0xff2ab2ff,0xff2ab2ff,0xff53c1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff52c0ff,0xff26b0ff,0xff26b0ff,0xff51c0ff,0xff25b0ff,0xff52c0ff,0xff27b1ff,0xff27b1ff,
+ 0xff3eb9ff,0xff3eb9ff,0xff53c1ff,0xff69c9ff,0xff3fbdff,0xff50c5ff,0xff50c3ff,0xff41bfff,0xff62ccff,0xff42bfff,0xff41c0ff,0xff63ccff,0xff63cdff,0xff43c1ff,
+ 0xff64cdff,0xff44c1ff,0xff65ceff,0xff65ceff,0xff66ceff,0xff66cfff,0xff47c3ff,0xff57cbff,0xff48c3ff,0xff68cfff,0xff48c5ff,0xff47c3ff,0xff67cfff,0xff46c3ff,
+ 0xff76d4ff,0xff65ceff,0xff44c2ff,0xff44c2ff,0xff63cdff,0xff43c1ff,0xff63ccff,0xff52c6ff,0xff41c0ff,0xff41c0ff,0xff62ccff,0xff41bfff,0xff61ccff,0xff40bdff,
+ 0xff71d0ff,0xff3fbdff,0xff5fc9ff,0xff3ebcff,0xff3dbcff,0xff5ec8ff,0xff3cbbff,0xff6ecfff,0xff5cc8ff,0xff3bbaff,0xff3abaff,0xff5cc6ff,0xff3ab9ff,0xff5bc6ff,
+ 0xff49bfff,0xff39b8ff,0xff6cccff,0xff48bdff,0xff37b7ff,0xff59c5ff,0xff36b5ff,0xff58c3ff,0xff58c3ff,0xff35b5ff,0xff45bbff,0xff57c2ff,0xff45baff,0xff44bbff,
+ 0xff33b3ff,0xff55c1ff,0xff42baff,0xff31b2ff,0xff54c1ff,0xff54c0ff,0xff31b1ff,0xff52c0ff,0xff52bfff,0xff2eb0ff,0xff2fb0ff,0xff40b7ff,0xff2eaeff,0xff50bdff,
+ 0xff3eb5ff,0xff50bdff,0xff2cadff,0xff2cacff,0xff4ebcff,0xff3cb4ff,0xff3ab4ff,0xff2aabff,0xff29abff,0xff28aaff,0xff3ab2ff,0xff28aaff,0xff28aaff,0xff38b1ff,
+ 0xff27a9ff,0xff26a8ff,0xff49b8ff,0xff25a8ff,0xff25a8ff,0xff5bc0ff,0xff24a7ff,0xff48b8ff,0xff48b7ff,0xff23a5ff,0xff23a5ff,0xff46b5ff,0xff46b7ff,0xff21a4ff,
+ 0xff32adff,0xff20a3ff,0xff45b4ff,0xff20a2ff,0xff31acff,0xff31abff,0xff31abff,0xff1ea1ff,0xff1ea1ff,0xff1da0ff,0xff41b2ff,0xff1ca0ff,0xff1ba0ff,0xff41b2ff,
+ 0xff1c9fff,0xff41b2ff,0xff1da1ff,0xff1da0ff,0xff1ea1ff,0xff42b3ff,0xff1fa2ff,0xff43b3ff,0xff4fcaff,0xff73d5ff,0xff50caff,0xff51cbff,0xff63d0ff,0xff52ccff,
+ 0xff53ccff,0xff64d1ff,0xff64d1ff,0xff76d7ff,0xff66d2ff,0xff55ceff,0xff66d3ff,0xff57ceff,0xff68d4ff,0xff68d4ff,0xff7ad9ff,0xff69d4ff,0xff6ad4ff,0xff6ad5ff,
+ 0xff59cfff,0xff58cfff,0xff69d4ff,0xff79d9ff,0xff68d4ff,0xff57ceff,0xff77d8ff,0xff77d8ff,0xff65d2ff,0xff54cdff,0xff64d2ff,0xff53ccff,0xff53ccff,0xff75d6ff,
+ 0xff74d6ff,0xff62d0ff,0xff62cfff,0xff73d5ff,0xff62cfff,0xff61ceff,0xff60ceff,0xff4ec9ff,0xff4ec9ff,0xff5fceff,0xff71d3ff,0xff5ecdff,0xff4bc7ff,0xff6fd2ff,
+ 0xff6fd1ff,0xff4ac6ff,0xff49c6ff,0xff5acbff,0xff5acbff,0xff6dd1ff,0xff5acbff,0xff6cd1ff,0xff5acaff,0xff59caff,0xff45c4ff,0xff58caff,0xff44c3ff,0xff6acfff,
+ 0xff56c8ff,0xff56c8ff,0xff68ceff,0xff42c1ff,0xff41c1ff,0xff66cdff,0xff53c6ff,0xff66cdff,0xff3fc0ff,0xff52c5ff,0xff3ebfff,0xff51c5ff,0xff3ebfff,0xff64cbff,
+ 0xff63cbff,0xff3bbeff,0xff3bbdff,0xff4fc4ff,0xff4ec4ff,0xff39bcff,0xff61caff,0xff61c9ff,0xff38bcff,0xff5fc9ff,0xff37bbff,0xff37baff,0xff36baff,0xff4ac0ff,
+ 0xff72ceff,0xff35b9ff,0xff34b9ff,0xff70ceff,0xff47bfff,0xff47beff,0xff47beff,0xff31b7ff,0xff31b7ff,0xff5ac5ff,0xff5ac5ff,0xff44bcff,0xff43bcff,0xff2eb5ff,
+ 0xff2db5ff,0xff43bcff,0xff42bcff,0xff57c3ff,0xff41bbff,0xff2cb3ff,0xff2bb3ff,0xff55c2ff,0xff2ab2ff,0xff54c1ff,0xff28b1ff,0xff28b2ff,0xff27b1ff,0xff52c1ff,
+ 0xff52c0ff,0xff3cb9ff,0xff3bb8ff,0xff51c0ff,0xff52c0ff,0xff3cb8ff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff3eb9ff,0xff54c1ff,0xff54c1ff,0xff3fbdff,0xff50c3ff,
+ 0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff43c0ff,0xff43c1ff,0xff43c1ff,0xff45c1ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,
+ 0xff47c3ff,0xff48c3ff,0xff57cbff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c3ff,0xff46c2ff,0xff46c2ff,0xff45c2ff,0xff45c1ff,0xff45c2ff,0xff43c1ff,0xff43c1ff,
+ 0xff43c0ff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,0xff4fc2ff,0xff3ebcff,0xff3ebcff,0xff3ebbff,0xff3dbcff,
+ 0xff3cbbff,0xff3cbaff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff5bc6ff,0xff5ac5ff,0xff37b7ff,0xff37b7ff,
+ 0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff33b4ff,0xff44bbff,0xff33b3ff,0xff33b3ff,0xff43baff,0xff33b2ff,0xff32b2ff,0xff31b1ff,0xff31b2ff,
+ 0xff30b1ff,0xff2fb1ff,0xff30b1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eadff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2bacff,0xff2badff,0xff3cb4ff,
+ 0xff2aacff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27aaff,0xff27aaff,0xff27aaff,0xff38b1ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff36b0ff,
+ 0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff31abff,
+ 0xff1ea2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca1ff,0xff1ca0ff,0xff1ea0ff,0xff1da2ff,0xff1ea1ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff51caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff54cdff,0xff55cdff,0xff54cdff,0xff55cdff,
+ 0xff56cdff,0xff56ceff,0xff57ceff,0xff57ceff,0xff7ad9ff,0xff7ad9ff,0xff59d0ff,0xff59d0ff,0xff59d0ff,0xff59d0ff,0xff69d4ff,0xff79d9ff,0xff67d3ff,0xff56ceff,
+ 0xff56ceff,0xff55cdff,0xff55cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff53ccff,0xff52ccff,0xff51ccff,0xff51cbff,0xff51caff,0xff50caff,0xff50caff,0xff4fc9ff,
+ 0xff4fc9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff4ac7ff,0xff49c6ff,0xff48c5ff,0xff47c5ff,
+ 0xff48c4ff,0xff47c5ff,0xff47c4ff,0xff45c4ff,0xff46c4ff,0xff45c3ff,0xff44c3ff,0xff44c2ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff40c1ff,
+ 0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3abcff,0xff3abcff,0xff3abcff,
+ 0xff39bcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,0xff35baff,0xff35b9ff,0xff35baff,0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff32b8ff,0xff33b7ff,
+ 0xff47bfff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff30b6ff,0xff44bdff,0xff2eb5ff,0xff2fb5ff,0xff2db5ff,0xff2eb5ff,0xff2db4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb4ff,
+ 0xff2ab3ff,0xff2bb2ff,0xff2ab2ff,0xff29b2ff,0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff26b0ff,0xff3cb8ff,0xff26b0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,
+ 0xff27b1ff,0xff28b0ff,0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c0ff,
+ 0xff63ccff,0xff43c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff47c3ff,0xff67cfff,0xff47c3ff,0xff58cbff,0xff68cfff,0xff67cfff,0xff57cbff,
+ 0xff47c3ff,0xff46c2ff,0xff66cfff,0xff45c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff42c1ff,0xff63ccff,0xff41c0ff,0xff41c0ff,0xff41bfff,
+ 0xff41bfff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbcff,0xff3dbbff,0xff3dbbff,0xff3cbaff,0xff3cbbff,0xff3bbbff,0xff5cc6ff,0xff3ab9ff,
+ 0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b9ff,0xff38b8ff,0xff38b8ff,0xff37b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff34b5ff,0xff57c2ff,
+ 0xff33b3ff,0xff55c2ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,
+ 0xff2eaeff,0xff50bdff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2bacff,0xff2badff,0xff2bacff,0xff2aabff,0xff2aabff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,
+ 0xff28aaff,0xff28aaff,0xff27a9ff,0xff26a9ff,0xff26a9ff,0xff49b8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff49b7ff,0xff48b8ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,
+ 0xff22a4ff,0xff21a4ff,0xff20a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa3ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da0ff,0xff2fa9ff,0xff2ea9ff,
+ 0xff1ca0ff,0xff1ba0ff,0xff41b2ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff50c9ff,0xff62cfff,0xff62d0ff,0xff62d0ff,
+ 0xff52cbff,0xff75d6ff,0xff75d6ff,0xff54ccff,0xff76d7ff,0xff54cdff,0xff65d2ff,0xff55ceff,0xff78d8ff,0xff78d8ff,0xff57ceff,0xff57cfff,0xff7ad9ff,0xff58cfff,
+ 0xff69d5ff,0xff59d0ff,0xff58d0ff,0xff7ad9ff,0xff58cfff,0xff57ceff,0xff78d8ff,0xff56ceff,0xff67d3ff,0xff89dcff,0xff54cdff,0xff54ccff,0xff53cdff,0xff53ccff,
+ 0xff75d6ff,0xff52cbff,0xff52cbff,0xff51cbff,0xff62cfff,0xff73d5ff,0xff61cfff,0xff4fcaff,0xff72d4ff,0xff72d4ff,0xff4dc9ff,0xff5fcdff,0xff4dc8ff,0xff5ecdff,
+ 0xff4bc7ff,0xff5dcdff,0xff5cccff,0xff4ac7ff,0xff5bccff,0xff6ed1ff,0xff5accff,0xff48c5ff,0xff6dd1ff,0xff5acaff,0xff59caff,0xff45c4ff,0xff46c4ff,0xff45c3ff,
+ 0xff44c3ff,0xff6acfff,0xff56c9ff,0xff68ceff,0xff43c1ff,0xff68ceff,0xff41c0ff,0xff54c7ff,0xff53c7ff,0xff66cdff,0xff3fbfff,0xff52c6ff,0xff66ccff,0xff51c5ff,
+ 0xff3dbeff,0xff64cbff,0xff63cbff,0xff3cbeff,0xff63cbff,0xff76d0ff,0xff4ec3ff,0xff39bcff,0xff61caff,0xff60c9ff,0xff38bbff,0xff4cc2ff,0xff5fc9ff,0xff4ac1ff,
+ 0xff4ac1ff,0xff35baff,0xff35b9ff,0xff49c0ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff45bdff,0xff44bdff,
+ 0xff59c5ff,0xff44bcff,0xff58c4ff,0xff2db4ff,0xff42bcff,0xff57c3ff,0xff41bbff,0xff2bb3ff,0xff56c2ff,0xff3fbbff,0xff2ab2ff,0xff3fbaff,0xff54c1ff,0xff3eb9ff,
+ 0xff28b1ff,0xff27b0ff,0xff52c1ff,0xff26b0ff,0xff3bb8ff,0xff51c0ff,0xff52c0ff,0xff26b0ff,0xff52c1ff,0xff52c0ff,0xff27b2ff,0xff3eb9ff,0xff28b1ff,0xff3fbaff,
+ 0xff40bdff,0xff60cbff,0xff61ccff,0xff61ccff,0xff51c5ff,0xff41bfff,0xff41c0ff,0xff63ccff,0xff63cdff,0xff63cdff,0xff43c1ff,0xff64ceff,0xff45c2ff,0xff45c2ff,
+ 0xff65cfff,0xff46c3ff,0xff67cfff,0xff47c3ff,0xff48c3ff,0xff48c5ff,0xff67cfff,0xff47c3ff,0xff46c3ff,0xff46c3ff,0xff66ceff,0xff45c2ff,0xff44c1ff,0xff54c7ff,
+ 0xff43c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff63ccff,0xff41bfff,0xff41bfff,0xff41bfff,0xff61ccff,0xff40bdff,0xff60cbff,0xff4fc2ff,0xff3ebcff,0xff3ebcff,
+ 0xff5ec9ff,0xff5ec8ff,0xff3cbbff,0xff5dc8ff,0xff3bbbff,0xff3bbaff,0xff5cc7ff,0xff3abaff,0xff6dcdff,0xff39b9ff,0xff5bc6ff,0xff5ac6ff,0xff39b8ff,0xff59c5ff,
+ 0xff37b7ff,0xff37b5ff,0xff36b5ff,0xff36b7ff,0xff58c3ff,0xff35b5ff,0xff45bbff,0xff57c2ff,0xff33b4ff,0xff56c1ff,0xff33b3ff,0xff55c1ff,0xff42b9ff,0xff32b2ff,
+ 0xff54c0ff,0xff53c0ff,0xff30b1ff,0xff53c0ff,0xff52bfff,0xff2fb0ff,0xff2eb0ff,0xff3fb8ff,0xff2eaeff,0xff50bdff,0xff2dadff,0xff50bdff,0xff2cadff,0xff2cadff,
+ 0xff4ebcff,0xff60c3ff,0xff2aacff,0xff4cbbff,0xff4cbbff,0xff28abff,0xff28aaff,0xff4bbaff,0xff28aaff,0xff27aaff,0xff26a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,
+ 0xff25a8ff,0xff25a7ff,0xff48b8ff,0xff24a7ff,0xff48b7ff,0xff35aeff,0xff22a5ff,0xff46b5ff,0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff20a4ff,0xff44b4ff,0xff45b4ff,
+ 0xff44b3ff,0xff43b4ff,0xff1fa1ff,0xff42b3ff,0xff1da1ff,0xff1da1ff,0xff41b3ff,0xff1ca0ff,0xff41b2ff,0xff1b9fff,0xff55bbff,0xff2ea9ff,0xff1da0ff,0xff1da1ff,
+ 0xff42b3ff,0xff43b3ff,0xff1fa2ff,0xff43b3ff,0xff50caff,0xff73d5ff,0xff74d6ff,0xff74d6ff,0xff63d0ff,0xff75d6ff,0xff76d6ff,0xff76d7ff,0xff87dbff,0xff76d7ff,
+ 0xff54cdff,0xff77d8ff,0xff77d8ff,0xff78d8ff,0xff68d3ff,0xff57cfff,0xff7ad9ff,0xff59cfff,0xff59cfff,0xff6bd5ff,0xff69d4ff,0xff58cfff,0xff58cfff,0xff58cfff,
+ 0xff79d8ff,0xff56ceff,0xff56cdff,0xff66d2ff,0xff55cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff75d6ff,0xff52cbff,0xff52ccff,0xff51cbff,0xff84daff,0xff73d5ff,
+ 0xff72d5ff,0xff61cfff,0xff72d5ff,0xff72d4ff,0xff71d4ff,0xff4dc9ff,0xff71d3ff,0xff70d2ff,0xff4bc7ff,0xff4bc7ff,0xff6fd2ff,0xff4ac7ff,0xff6ed1ff,0xff49c5ff,
+ 0xff6ed1ff,0xff5accff,0xff6dd1ff,0xff6cd1ff,0xff46c4ff,0xff46c3ff,0xff45c3ff,0xff45c3ff,0xff6acfff,0xff44c2ff,0xff43c2ff,0xff69ceff,0xff42c2ff,0xff68cdff,
+ 0xff41c1ff,0xff67cdff,0xff40c0ff,0xff3fc0ff,0xff3fc0ff,0xff78d3ff,0xff65ccff,0xff64cbff,0xff65ccff,0xff3cbeff,0xff3cbdff,0xff3cbeff,0xff3bbdff,0xff63caff,
+ 0xff3abcff,0xff61caff,0xff39bcff,0xff38bbff,0xff60c9ff,0xff5fc9ff,0xff37baff,0xff36baff,0xff5ec8ff,0xff36b9ff,0xff49c1ff,0xff5ec7ff,0xff34b8ff,0xff33b8ff,
+ 0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b7ff,0xff5ac5ff,0xff2fb6ff,0xff59c4ff,0xff2eb5ff,0xff2eb5ff,0xff57c4ff,0xff57c3ff,0xff2db4ff,
+ 0xff56c3ff,0xff2bb4ff,0xff55c2ff,0xff55c2ff,0xff55c1ff,0xff69c9ff,0xff54c1ff,0xff53c1ff,0xff28b1ff,0xff52c1ff,0xff27b1ff,0xff26b0ff,0xff51c0ff,0xff25afff,
+ 0xff51c0ff,0xff3cb8ff,0xff52c0ff,0xff52c1ff,0xff53c1ff,0xff28b1ff,0xff54c1ff,0xff54c1ff,0xff40bdff,0xff60cbff,0xff50c3ff,0xff61ccff,0xff51c5ff,0xff62ccff,
+ 0xff63ccff,0xff63ccff,0xff63cdff,0xff43c1ff,0xff64ceff,0xff55c7ff,0xff65ceff,0xff65ceff,0xff56c9ff,0xff46c3ff,0xff67cfff,0xff47c3ff,0xff58c9ff,0xff78d5ff,
+ 0xff67cfff,0xff57c9ff,0xff47c3ff,0xff46c2ff,0xff66ceff,0xff45c2ff,0xff54c7ff,0xff75d3ff,0xff44c1ff,0xff43c0ff,0xff43c1ff,0xff42c0ff,0xff62ccff,0xff62ccff,
+ 0xff62ccff,0xff50c3ff,0xff60cbff,0xff60cbff,0xff5fcbff,0xff4fc3ff,0xff5fc9ff,0xff5fc9ff,0xff5fc9ff,0xff3dbcff,0xff5dc8ff,0xff3cbaff,0xff3bbaff,0xff5cc7ff,
+ 0xff6eceff,0xff4ac0ff,0xff5bc6ff,0xff3ab8ff,0xff5bc6ff,0xff49bfff,0xff5ac6ff,0xff5ac6ff,0xff37b7ff,0xff36b7ff,0xff37b5ff,0xff36b5ff,0xff46bcff,0xff58c2ff,
+ 0xff58c2ff,0xff57c2ff,0xff45bbff,0xff67c9ff,0xff55c1ff,0xff55c1ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff54c1ff,0xff53c0ff,0xff53c0ff,0xff40b8ff,0xff52bfff,
+ 0xff51bfff,0xff40b8ff,0xff2eaeff,0xff51bdff,0xff50bdff,0xff3eb5ff,0xff4fbdff,0xff4fbdff,0xff3cb4ff,0xff4ebcff,0xff29acff,0xff29abff,0xff29abff,0xff4cbaff,
+ 0xff3ab2ff,0xff4bbaff,0xff28aaff,0xff28a9ff,0xff27a9ff,0xff26a8ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff49b8ff,0xff24a8ff,0xff24a5ff,0xff48b7ff,0xff23a5ff,
+ 0xff22a5ff,0xff46b5ff,0xff46b5ff,0xff46b5ff,0xff46b5ff,0xff21a3ff,0xff44b4ff,0xff31abff,0xff44b3ff,0xff43b3ff,0xff43b3ff,0xff42b3ff,0xff1ea1ff,0xff41b2ff,
+ 0xff1da0ff,0xff1ca1ff,0xff41b2ff,0xff41b2ff,0xff55baff,0xff2eaaff,0xff41b2ff,0xff41b3ff,0xff42b3ff,0xff1ea2ff,0xff43b3ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,
+ 0xff51cbff,0xff52caff,0xff52cbff,0xff53cbff,0xff53ccff,0xff53ccff,0xff54cdff,0xff54cdff,0xff55cdff,0xff55ceff,0xff55ceff,0xff56ceff,0xff56ceff,0xff57cfff,
+ 0xff8addff,0xff7ad9ff,0xff59d0ff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff68d4ff,0xff79d9ff,0xff79d9ff,0xff56ceff,0xff56ceff,0xff55cdff,0xff54cdff,0xff55cdff,
+ 0xff54ccff,0xff53ccff,0xff52ccff,0xff52cbff,0xff51cbff,0xff51cbff,0xff50cbff,0xff50caff,0xff50c9ff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,
+ 0xff4dc8ff,0xff4cc8ff,0xff4cc7ff,0xff4bc7ff,0xff4ac6ff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff48c6ff,0xff5accff,0xff6cd1ff,0xff6bd0ff,0xff59caff,0xff46c4ff,
+ 0xff45c4ff,0xff45c3ff,0xff44c2ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,
+ 0xff3ebfff,0xff3dbfff,0xff3ebfff,0xff3cbeff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff39bdff,0xff39bcff,0xff38bbff,0xff38bbff,0xff38baff,
+ 0xff37bbff,0xff36bbff,0xff4ac1ff,0xff5ec8ff,0xff5ec7ff,0xff48c0ff,0xff34b8ff,0xff33b9ff,0xff32b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff5ac5ff,
+ 0xff30b6ff,0xff30b6ff,0xff2fb5ff,0xff2eb6ff,0xff2db4ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff2bb3ff,0xff29b2ff,0xff29b2ff,
+ 0xff29b2ff,0xff28b1ff,0xff53c1ff,0xff27b0ff,0xff26b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,
+ 0xff28b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bdff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff43c1ff,0xff44c2ff,
+ 0xff45c2ff,0xff46c2ff,0xff46c2ff,0xff47c3ff,0xff47c3ff,0xff47c5ff,0xff48c3ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff47c3ff,0xff46c2ff,0xff46c2ff,0xff46c2ff,
+ 0xff44c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff41c0ff,0xff41bfff,0xff40bfff,0xff40bdff,0xff40bdff,0xff3fbcff,
+ 0xff3fbdff,0xff3ebcff,0xff3dbbff,0xff3cbcff,0xff3cbbff,0xff3bbbff,0xff3cbbff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,
+ 0xff38b8ff,0xff38b8ff,0xff38b7ff,0xff37b7ff,0xff36b5ff,0xff36b7ff,0xff35b5ff,0xff34b5ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,
+ 0xff33b2ff,0xff32b2ff,0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff2fb1ff,0xff30b0ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2dadff,
+ 0xff2cadff,0xff2bacff,0xff2badff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,
+ 0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,
+ 0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca1ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff50caff,0xff62cfff,0xff50cbff,0xff62d0ff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,
+ 0xff65d2ff,0xff54ccff,0xff54cdff,0xff55ceff,0xff55cdff,0xff68d3ff,0xff56ceff,0xff57ceff,0xff58cfff,0xff58cfff,0xff59d0ff,0xff59d0ff,0xff58d0ff,0xff59cfff,
+ 0xff58cfff,0xff57cfff,0xff57ceff,0xff56ceff,0xff55ceff,0xff55cdff,0xff55cdff,0xff54cdff,0xff76d6ff,0xff53ccff,0xff52cbff,0xff63d0ff,0xff62d0ff,0xff51cbff,
+ 0xff50cbff,0xff50caff,0xff4fcaff,0xff4fcaff,0xff4fc9ff,0xff60ceff,0xff4dc8ff,0xff4dc9ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff4bc7ff,0xff4bc7ff,0xff4ac6ff,
+ 0xff49c6ff,0xff49c6ff,0xff5bccff,0xff48c5ff,0xff47c5ff,0xff59cbff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff43c2ff,0xff44c2ff,0xff43c2ff,
+ 0xff43c2ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff53c7ff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,0xff3fbfff,0xff3ebeff,0xff3dbfff,0xff3cbeff,0xff3cbdff,0xff3cbdff,
+ 0xff3bbdff,0xff3bbdff,0xff3abcff,0xff39bcff,0xff38bcff,0xff39bcff,0xff38bbff,0xff37bbff,0xff37baff,0xff36baff,0xff36baff,0xff36b9ff,0xff35b9ff,0xff35b9ff,
+ 0xff34b9ff,0xff33b9ff,0xff32b8ff,0xff33b7ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2db4ff,
+ 0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff27b0ff,0xff26b1ff,
+ 0xff26b0ff,0xff25b0ff,0xff26afff,0xff26b1ff,0xff26b1ff,0xff27b0ff,0xff27b1ff,0xff28b2ff,0xff29b1ff,0xff29b2ff,0xff40bdff,0xff84d7ff,0xff41bfff,0xff85d8ff,
+ 0xff41bfff,0xff41c0ff,0xff41c0ff,0xff42c0ff,0xff63ccff,0xff44c1ff,0xff44c1ff,0xff44c2ff,0xff44c2ff,0xff56c8ff,0xff46c2ff,0xff46c3ff,0xff47c3ff,0xff48c3ff,
+ 0xff48c5ff,0xff48c5ff,0xff48c3ff,0xff47c3ff,0xff47c3ff,0xff46c2ff,0xff45c2ff,0xff45c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff63ccff,0xff42c1ff,
+ 0xff42c0ff,0xff41bfff,0xff61ccff,0xff41bfff,0xff40bdff,0xff40bfff,0xff40bdff,0xff3fbdff,0xff3ebcff,0xff4ec2ff,0xff3dbbff,0xff3dbbff,0xff3dbbff,0xff3cbbff,
+ 0xff3cbbff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff5bc6ff,0xff39b8ff,0xff39b8ff,0xff49bfff,0xff37b7ff,0xff37b5ff,0xff37b7ff,0xff36b7ff,
+ 0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff33b2ff,0xff54c1ff,0xff31b2ff,0xff31b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,
+ 0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2caeff,0xff2cadff,0xff2badff,0xff2badff,0xff2bacff,0xff2aabff,0xff29abff,
+ 0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a8ff,0xff26a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a8ff,0xff24a7ff,
+ 0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,
+ 0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,
+ 0xff4fcaff,0xff73d5ff,0xff97dfff,0xff74d6ff,0xff63d0ff,0xff75d6ff,0xff75d6ff,0xff64d1ff,0xff76d7ff,0xff65d2ff,0xff66d2ff,0xff55ceff,0xff67d3ff,0xff78d8ff,
+ 0xff56ceff,0xff89ddff,0xff79d9ff,0xff7ad9ff,0xff6ad5ff,0xff7bd9ff,0xff7bd9ff,0xff6ad4ff,0xff58cfff,0xff57ceff,0xff57cfff,0xff67d3ff,0xff78d8ff,0xff77d7ff,
+ 0xff66d2ff,0xff54cdff,0xff76d7ff,0xff53ccff,0xff52ccff,0xff52cbff,0xff75d6ff,0xff51cbff,0xff51cbff,0xff50caff,0xff50caff,0xff4fc9ff,0xff61ceff,0xff72d4ff,
+ 0xff4dc9ff,0xff82d9ff,0xff71d3ff,0xff70d3ff,0xff4cc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff6ed1ff,0xff6ed1ff,0xff80d6ff,0xff48c5ff,0xff5acaff,0xff6cd0ff,
+ 0xff47c4ff,0xff7dd6ff,0xff6ad0ff,0xff6acfff,0xff57c9ff,0xff69ceff,0xff69ceff,0xff56c8ff,0xff7bd3ff,0xff68cdff,0xff67cdff,0xff54c7ff,0xff79d3ff,0xff66cdff,
+ 0xff3fbfff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3bbcff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bcff,
+ 0xff38bbff,0xff38bbff,0xff37baff,0xff36bbff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,
+ 0xff30b6ff,0xff30b7ff,0xff30b7ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2cb4ff,0xff2db4ff,0xff2cb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,
+ 0xff2ab3ff,0xff29b2ff,0xff29b1ff,0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25b0ff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff27b0ff,0xff27b0ff,
+ 0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff29b2ff,0xff3fbdff,0xff60ccff,0xff40bfff,0xff62ccff,0xff41bfff,0xff62ccff,0xff63ccff,0xff63ccff,0xff74d2ff,0xff63cdff,
+ 0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff65ceff,0xff46c3ff,0xff66ceff,0xff47c2ff,0xff67cfff,0xff68cfff,0xff49c5ff,0xff67cfff,0xff47c3ff,0xff46c3ff,0xff46c3ff,
+ 0xff46c2ff,0xff45c2ff,0xff65ceff,0xff65cdff,0xff63cdff,0xff43c1ff,0xff63ccff,0xff42c0ff,0xff41c0ff,0xff41c0ff,0xff62ccff,0xff41bdff,0xff40bfff,0xff40bdff,
+ 0xff3fbdff,0xff3fbdff,0xff3ebdff,0xff5fc9ff,0xff3dbcff,0xff5ec8ff,0xff3cbbff,0xff5dc8ff,0xff3cbbff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff5bc6ff,0xff3ab9ff,
+ 0xff5bc6ff,0xff39b8ff,0xff38b8ff,0xff5ac5ff,0xff37b7ff,0xff59c5ff,0xff36b5ff,0xff47bcff,0xff58c3ff,0xff58c3ff,0xff57c3ff,0xff56c2ff,0xff57c2ff,0xff33b3ff,
+ 0xff56c1ff,0xff32b3ff,0xff54c1ff,0xff31b2ff,0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,
+ 0xff2daeff,0xff2cadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2aacff,0xff2aabff,0xff2aabff,0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28a9ff,0xff27aaff,
+ 0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff24a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff22a5ff,0xff23a4ff,0xff22a5ff,0xff22a4ff,
+ 0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff20a2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1ca0ff,0xff1ba0ff,
+ 0xff1b9fff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff4fcaff,0xff73d6ff,0xff51cbff,0xff74d5ff,0xff75d6ff,0xff52cbff,
+ 0xff52ccff,0xff76d6ff,0xff76d6ff,0xff65d2ff,0xff65d2ff,0xff55cdff,0xff56cdff,0xff78d8ff,0xff57ceff,0xff79d9ff,0xff58cfff,0xff7ad9ff,0xff59d0ff,0xff8bdeff,
+ 0xff6ad4ff,0xff58d0ff,0xff57cfff,0xff57cfff,0xff57cfff,0xff78d8ff,0xff55ceff,0xff56cdff,0xff76d8ff,0xff55cdff,0xff76d6ff,0xff54ccff,0xff53ccff,0xff52cbff,
+ 0xff74d6ff,0xff51cbff,0xff51caff,0xff50caff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff72d4ff,0xff4dc9ff,0xff71d3ff,0xff4dc8ff,0xff70d3ff,0xff4cc8ff,0xff4bc7ff,
+ 0xff4bc7ff,0xff4ac6ff,0xff6fd1ff,0xff49c6ff,0xff7fd7ff,0xff48c5ff,0xff47c5ff,0xff6cd0ff,0xff46c4ff,0xff6bd0ff,0xff45c3ff,0xff45c3ff,0xff6acfff,0xff43c3ff,
+ 0xff44c3ff,0xff56c8ff,0xff68ceff,0xff41c2ff,0xff67cdff,0xff41c0ff,0xff66cdff,0xff40c0ff,0xff52c6ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff3dbeff,
+ 0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbcff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37baff,0xff36baff,0xff35baff,
+ 0xff34b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,0xff2fb6ff,0xff2fb6ff,0xff2eb6ff,0xff2eb5ff,
+ 0xff2eb5ff,0xff2db4ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab2ff,0xff2ab2ff,0xff2ab2ff,0xff28b2ff,0xff28b2ff,0xff27b1ff,0xff27b1ff,
+ 0xff27b0ff,0xff26b0ff,0xff26afff,0xff25afff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b1ff,0xff2ab2ff,0xff3fbdff,0xff50c3ff,
+ 0xff40bdff,0xff50c5ff,0xff41bfff,0xff62ccff,0xff62ccff,0xff53c6ff,0xff52c6ff,0xff43c1ff,0xff54c7ff,0xff44c1ff,0xff64ceff,0xff65ceff,0xff56c8ff,0xff57c9ff,
+ 0xff46c3ff,0xff57cbff,0xff68cfff,0xff58cbff,0xff68cfff,0xff58c9ff,0xff46c3ff,0xff46c2ff,0xff46c3ff,0xff45c2ff,0xff65ceff,0xff64cdff,0xff54c7ff,0xff54c6ff,
+ 0xff63ccff,0xff63ccff,0xff42c0ff,0xff62ccff,0xff62ccff,0xff50c3ff,0xff41bdff,0xff40bdff,0xff3fbdff,0xff3fbcff,0xff5fc9ff,0xff5fc9ff,0xff4ec1ff,0xff4dc1ff,
+ 0xff3cbbff,0xff4cc1ff,0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff49c0ff,0xff5bc6ff,0xff49c0ff,0xff39b8ff,0xff5bc6ff,0xff5ac6ff,0xff48bdff,0xff48bcff,
+ 0xff37b7ff,0xff36b5ff,0xff35b5ff,0xff57c2ff,0xff58c2ff,0xff33b4ff,0xff44bbff,0xff33b4ff,0xff43baff,0xff33b3ff,0xff33b2ff,0xff54c1ff,0xff31b1ff,0xff31b2ff,
+ 0xff30b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2badff,0xff2cacff,0xff2bacff,0xff2aacff,
+ 0xff2aacff,0xff2aacff,0xff29abff,0xff28abff,0xff28abff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff27a9ff,0xff26a8ff,0xff26a8ff,0xff26a9ff,0xff25a8ff,0xff24a7ff,
+ 0xff24a8ff,0xff24a5ff,0xff24a5ff,0xff24a5ff,0xff23a4ff,0xff22a4ff,0xff21a4ff,0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff1fa2ff,
+ 0xff1ea2ff,0xff1fa1ff,0xff1ea1ff,0xff1da1ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff53ccff,0xff53ccff,0xff53cdff,0xff54ccff,0xff55cdff,0xff55cdff,
+ 0xff56ceff,0xff57ceff,0xff57ceff,0xff58cfff,0xff57cfff,0xff58d0ff,0xff58cfff,0xff7bd9ff,0xff7bd9ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff57ceff,0xff56ceff,
+ 0xff56ceff,0xff55cdff,0xff55cdff,0xff54ccff,0xff54cdff,0xff53ccff,0xff53cbff,0xff52ccff,0xff52cbff,0xff51cbff,0xff51cbff,0xff50caff,0xff50caff,0xff4fc9ff,
+ 0xff4ecaff,0xff4ec9ff,0xff4dc8ff,0xff4dc9ff,0xff4dc8ff,0xff4cc7ff,0xff4bc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff48c6ff,0xff48c5ff,
+ 0xff47c5ff,0xff46c5ff,0xff46c4ff,0xff46c3ff,0xff46c3ff,0xff45c3ff,0xff45c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff41c2ff,0xff41c1ff,0xff41c0ff,
+ 0xff40c1ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abcff,
+ 0xff39bcff,0xff39bbff,0xff38bbff,0xff38bbff,0xff36bbff,0xff37bbff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff33b9ff,0xff33b8ff,
+ 0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff30b6ff,0xff2fb5ff,0xff2eb6ff,0xff2eb5ff,0xff2db4ff,0xff2db5ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,
+ 0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff25b0ff,0xff26b0ff,
+ 0xff27b0ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff28b2ff,0xff29b2ff,0xff3fbcff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff41c0ff,0xff42c0ff,
+ 0xff42c1ff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff67cfff,0xff68cfff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,
+ 0xff56c9ff,0xff67ceff,0xff56c8ff,0xff45c2ff,0xff45c2ff,0xff44c1ff,0xff44c2ff,0xff43c1ff,0xff43c0ff,0xff43c0ff,0xff41c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,
+ 0xff40bdff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3ebcff,0xff3ebcff,0xff3dbcff,0xff3dbcff,0xff3cbbff,0xff3cbbff,0xff3cbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,
+ 0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b9ff,0xff39b7ff,0xff38b8ff,0xff37b7ff,0xff37b5ff,0xff36b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,0xff33b4ff,
+ 0xff34b4ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb1ff,0xff2eb0ff,0xff2eaeff,
+ 0xff2eaeff,0xff2daeff,0xff2daeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29acff,0xff29abff,0xff28aaff,0xff28aaff,0xff28aaff,
+ 0xff28a9ff,0xff27a9ff,0xff26aaff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff36aeff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff33adff,
+ 0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a4ff,0xff20a3ff,0xff20a2ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca1ff,
+ 0xff1ca0ff,0xff1ba0ff,0xff2ea9ff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff50cbff,0xff51cbff,
+ 0xff52cbff,0xff52cbff,0xff53ccff,0xff54ccff,0xff76d7ff,0xff54cdff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff57ceff,0xff57cfff,0xff79d9ff,0xff58d0ff,
+ 0xff69d5ff,0xff7bd9ff,0xff7bd9ff,0xff69d4ff,0xff58cfff,0xff58ceff,0xff79d9ff,0xff56ceff,0xff56ceff,0xff55cdff,0xff55cdff,0xff54cdff,0xff53cdff,0xff53ccff,
+ 0xff75d6ff,0xff75d6ff,0xff74d6ff,0xff63d0ff,0xff51cbff,0xff50caff,0xff50caff,0xff4fcaff,0xff72d5ff,0xff4ec9ff,0xff4dc9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,
+ 0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,0xff4ac6ff,0xff6ed1ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff45c3ff,
+ 0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,0xff67cdff,0xff41c1ff,0xff41c0ff,0xff66cdff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,0xff3dbfff,
+ 0xff3dbfff,0xff3cbeff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff3abcff,0xff61c9ff,0xff39bbff,0xff38bcff,0xff37bbff,0xff37baff,0xff36baff,
+ 0xff36baff,0xff35b9ff,0xff35b9ff,0xff35b9ff,0xff34b8ff,0xff33b9ff,0xff33b8ff,0xff33b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff30b6ff,0xff45beff,0xff44bdff,
+ 0xff2eb5ff,0xff2eb5ff,0xff42bcff,0xff42bcff,0xff57c3ff,0xff2db4ff,0xff2cb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,0xff2ab2ff,0xff29b2ff,0xff29b1ff,0xff28b2ff,
+ 0xff27b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff25b0ff,0xff25afff,0xff51bfff,0xff26b0ff,0xff27b1ff,0xff28b1ff,0xff53c1ff,0xff28b2ff,0xff29b1ff,0xff29b2ff,
+ 0xff40bdff,0xff50c5ff,0xff50c5ff,0xff50c5ff,0xff41c0ff,0xff62ccff,0xff62ccff,0xff42c0ff,0xff63cdff,0xff43c1ff,0xff53c7ff,0xff44c2ff,0xff64cdff,0xff65ceff,
+ 0xff45c3ff,0xff46c2ff,0xff66cfff,0xff47c3ff,0xff57cbff,0xff48c5ff,0xff47c5ff,0xff67cfff,0xff46c3ff,0xff46c3ff,0xff66cfff,0xff45c2ff,0xff55c7ff,0xff75d3ff,
+ 0xff43c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,0xff63ccff,0xff41bfff,0xff41bfff,0xff41bfff,0xff50c5ff,0xff60cbff,0xff50c3ff,0xff4fc3ff,0xff71d0ff,0xff5fc9ff,
+ 0xff3dbcff,0xff4dc1ff,0xff5ec8ff,0xff4cc1ff,0xff4bc1ff,0xff4bc1ff,0xff5cc6ff,0xff3ab9ff,0xff3ab9ff,0xff5bc6ff,0xff39b9ff,0xff49c0ff,0xff49bfff,0xff5ac6ff,
+ 0xff37b7ff,0xff48bdff,0xff59c3ff,0xff46bcff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff44bbff,0xff56c2ff,0xff55c1ff,0xff33b3ff,0xff42b9ff,0xff42b9ff,
+ 0xff31b2ff,0xff41b8ff,0xff53c0ff,0xff40b8ff,0xff2fb1ff,0xff52bfff,0xff52bfff,0xff2eaeff,0xff3fb7ff,0xff50bdff,0xff3eb7ff,0xff3db5ff,0xff61c5ff,0xff4ebcff,
+ 0xff2badff,0xff3cb4ff,0xff4dbcff,0xff3ab3ff,0xff3ab3ff,0xff3ab2ff,0xff4cbaff,0xff28aaff,0xff39b1ff,0xff27aaff,0xff38b1ff,0xff27a9ff,0xff26a8ff,0xff25a8ff,
+ 0xff24a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff24a7ff,0xff47b7ff,0xff23a5ff,0xff46b5ff,0xff46b5ff,0xff32acff,0xff20a3ff,0xff44b4ff,0xff44b4ff,
+ 0xff20a2ff,0xff31acff,0xff31abff,0xff30abff,0xff1ea1ff,0xff41b3ff,0xff41b2ff,0xff1ca0ff,0xff1ba0ff,0xff2ea8ff,0xff2ea9ff,0xff1ca0ff,0xff41b2ff,0xff2faaff,
+ 0xff42b3ff,0xff30aaff,0xff43b3ff,0xff31abff,0xff50caff,0xff73d5ff,0xff74d5ff,0xff74d6ff,0xff62d0ff,0xff52ccff,0xff53cbff,0xff76d6ff,0xff76d7ff,0xff76d7ff,
+ 0xff54ceff,0xff78d8ff,0xff56cdff,0xff56ceff,0xff79d8ff,0xff57ceff,0xff79d9ff,0xff59cfff,0xff59cfff,0xff59d0ff,0xff7bd9ff,0xff58d0ff,0xff58cfff,0xff57cfff,
+ 0xff79d8ff,0xff56ceff,0xff56ceff,0xff66d3ff,0xff55cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff75d6ff,0xff75d6ff,0xff63d0ff,0xff51cbff,0xff84daff,0xff50caff,
+ 0xff73d5ff,0xff4fc9ff,0xff72d4ff,0xff4ec9ff,0xff4ec9ff,0xff71d3ff,0xff4cc8ff,0xff70d2ff,0xff6fd2ff,0xff5dcdff,0xff4bc6ff,0xff6fd1ff,0xff49c6ff,0xff6ed1ff,
+ 0xff48c6ff,0xff6dd1ff,0xff5acaff,0xff47c4ff,0xff6bd0ff,0xff6bd0ff,0xff46c3ff,0xff6ad0ff,0xff44c3ff,0xff44c2ff,0xff43c2ff,0xff43c2ff,0xff68cdff,0xff41c1ff,
+ 0xff7ad3ff,0xff41c1ff,0xff41c0ff,0xff66cdff,0xff3fc0ff,0xff78d3ff,0xff3ebfff,0xff64ccff,0xff65cbff,0xff3dbeff,0xff3cbeff,0xff63cbff,0xff63caff,0xff3bbdff,
+ 0xff4ec4ff,0xff39bcff,0xff61caff,0xff39bcff,0xff38bbff,0xff60c9ff,0xff37bbff,0xff5fc9ff,0xff5ec8ff,0xff4ac1ff,0xff34baff,0xff5dc7ff,0xff5cc7ff,0xff33b9ff,
+ 0xff5cc7ff,0xff32b8ff,0xff31b8ff,0xff31b7ff,0xff31b6ff,0xff31b7ff,0xff2fb6ff,0xff2fb5ff,0xff2fb6ff,0xff2eb5ff,0xff57c4ff,0xff2db5ff,0xff6ccbff,0xff2cb4ff,
+ 0xff56c2ff,0xff56c2ff,0xff2ab3ff,0xff2ab2ff,0xff55c1ff,0xff55c1ff,0xff54c1ff,0xff53c1ff,0xff53c1ff,0xff27b0ff,0xff27b0ff,0xff52c0ff,0xff26b0ff,0xff51bfff,
+ 0xff26b0ff,0xff52c1ff,0xff26b0ff,0xff3db9ff,0xff52c1ff,0xff3eb9ff,0xff28b2ff,0xff54c1ff,0xff3fbdff,0xff60cbff,0xff61ccff,0xff62ccff,0xff50c5ff,0xff62ccff,
+ 0xff63ccff,0xff63cdff,0xff74d3ff,0xff63ccff,0xff44c1ff,0xff64cdff,0xff64ceff,0xff65cfff,0xff55c9ff,0xff46c3ff,0xff67cfff,0xff47c3ff,0xff48c3ff,0xff58cbff,
+ 0xff58c9ff,0xff47c5ff,0xff47c3ff,0xff46c3ff,0xff65cfff,0xff46c2ff,0xff45c2ff,0xff55c7ff,0xff44c1ff,0xff43c0ff,0xff43c0ff,0xff42c0ff,0xff62ccff,0xff42c0ff,
+ 0xff41c0ff,0xff41bfff,0xff60ccff,0xff40bdff,0xff5fcbff,0xff3fbcff,0xff5fc9ff,0xff3ebbff,0xff3ebbff,0xff6fcfff,0xff5ec8ff,0xff5dc8ff,0xff5dc8ff,0xff3bbaff,
+ 0xff3abaff,0xff3abaff,0xff3abaff,0xff5bc6ff,0xff39b8ff,0xff5ac6ff,0xff38b8ff,0xff37b7ff,0xff59c5ff,0xff58c3ff,0xff58c5ff,0xff47bcff,0xff36b5ff,0xff35b5ff,
+ 0xff35b4ff,0xff34b4ff,0xff57c2ff,0xff33b3ff,0xff55c1ff,0xff33b2ff,0xff32b3ff,0xff54c1ff,0xff31b2ff,0xff53c0ff,0xff30b1ff,0xff30b1ff,0xff52c0ff,0xff52bfff,
+ 0xff51bfff,0xff40b7ff,0xff51bfff,0xff2dadff,0xff2daeff,0xff2cadff,0xff4fbdff,0xff2cadff,0xff2bacff,0xff4ebcff,0xff29abff,0xff4cbbff,0xff4cbbff,0xff28abff,
+ 0xff28abff,0xff28aaff,0xff4bbaff,0xff27aaff,0xff5dc1ff,0xff27a9ff,0xff25a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff47b7ff,
+ 0xff22a4ff,0xff22a4ff,0xff46b5ff,0xff22a4ff,0xff46b5ff,0xff45b5ff,0xff20a3ff,0xff20a3ff,0xff44b3ff,0xff43b3ff,0xff43b3ff,0xff42b3ff,0xff42b3ff,0xff41b3ff,
+ 0xff41b3ff,0xff2ea9ff,0xff1b9fff,0xff41b2ff,0xff1ba0ff,0xff41b2ff,0xff1da1ff,0xff1da1ff,0xff42b3ff,0xff42b3ff,0xff43b3ff,0xff57bcff,0xff4fcaff,0xff73d6ff,
+ 0xff62d0ff,0xff75d6ff,0xff63d0ff,0xff75d6ff,0xff76d6ff,0xff76d6ff,0xff76d7ff,0xff54ccff,0xff76d7ff,0xff66d2ff,0xff77d8ff,0xff78d8ff,0xff68d4ff,0xff58cfff,
+ 0xff79d9ff,0xff58cfff,0xff6ad5ff,0xff8bdeff,0xff7ad9ff,0xff69d4ff,0xff58cfff,0xff57cfff,0xff78d9ff,0xff56ceff,0xff67d3ff,0xff88dcff,0xff54cdff,0xff54cdff,
+ 0xff53cdff,0xff53ccff,0xff75d6ff,0xff75d6ff,0xff74d6ff,0xff62d0ff,0xff73d5ff,0xff50caff,0xff73d5ff,0xff4fcaff,0xff61ceff,0xff72d4ff,0xff5fceff,0xff71d3ff,
+ 0xff70d3ff,0xff70d3ff,0xff6fd3ff,0xff4ac8ff,0xff4ac7ff,0xff49c6ff,0xff5bccff,0xff80d7ff,0xff6dd1ff,0xff6dd1ff,0xff48c5ff,0xff46c4ff,0xff6bd0ff,0xff6bd0ff,
+ 0xff6bcfff,0xff58c9ff,0xff44c3ff,0xff44c2ff,0xff43c2ff,0xff43c2ff,0xff68cdff,0xff68ceff,0xff7ad3ff,0xff41c1ff,0xff67cdff,0xff79d3ff,0xff52c6ff,0xff65cdff,
+ 0xff3ebfff,0xff3dbfff,0xff50c5ff,0xff64cbff,0xff63cbff,0xff4fc4ff,0xff63caff,0xff63caff,0xff62caff,0xff3abcff,0xff4dc3ff,0xff61caff,0xff4cc2ff,0xff5fc9ff,
+ 0xff5fc9ff,0xff5fc8ff,0xff5ec8ff,0xff36baff,0xff35b9ff,0xff35b9ff,0xff48c0ff,0xff5cc6ff,0xff5cc6ff,0xff32b8ff,0xff31b7ff,0xff32b7ff,0xff31b7ff,0xff31b7ff,
+ 0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff58c4ff,0xff2eb5ff,0xff2db5ff,0xff57c3ff,0xff2db4ff,0xff56c2ff,0xff41bbff,0xff56c2ff,0xff55c2ff,0xff3fbaff,0xff54c1ff,
+ 0xff3fbaff,0xff54c1ff,0xff3db9ff,0xff52c0ff,0xff52c1ff,0xff3cb8ff,0xff51c0ff,0xff25afff,0xff26afff,0xff3cb8ff,0xff52c0ff,0xff52c1ff,0xff53c1ff,0xff53c1ff,
+ 0xff54c1ff,0xff69c9ff,0xff3fbdff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,
+ 0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff77d4ff,0xff67cfff,0xff48c5ff,0xff48c5ff,0xff48c3ff,0xff47c5ff,0xff57c9ff,0xff66cfff,0xff65ceff,0xff45c2ff,
+ 0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,0xff42bfff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bfff,0xff40bdff,0xff3fbcff,
+ 0xff3fbcff,0xff3ebcff,0xff3dbbff,0xff3dbcff,0xff3dbbff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff39b8ff,
+ 0xff39b8ff,0xff38b7ff,0xff37b7ff,0xff59c5ff,0xff58c5ff,0xff58c3ff,0xff35b5ff,0xff35b5ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,
+ 0xff32b2ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2cadff,
+ 0xff2cadff,0xff2badff,0xff2badff,0xff2aacff,0xff2aabff,0xff2aabff,0xff29abff,0xff29aaff,0xff28aaff,0xff28aaff,0xff4abaff,0xff4abaff,0xff4ab9ff,0xff26a9ff,
+ 0xff26a9ff,0xff25a9ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff47b8ff,0xff23a7ff,0xff22a5ff,0xff22a5ff,0xff22a4ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,
+ 0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff1ea1ff,0xff1da0ff,0xff1ca1ff,0xff1ca0ff,0xff41b2ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,
+ 0xff1ca0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1ea1ff,0xff20a2ff,0xff50caff,0xff50caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52cbff,0xff53ccff,0xff53ccff,
+ 0xff54cdff,0xff54cdff,0xff55cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff57cfff,0xff58ceff,0xff57cfff,0xff58cfff,0xff58d0ff,0xff59d0ff,0xff59d0ff,0xff58cfff,
+ 0xff58cfff,0xff57cfff,0xff57cfff,0xff57ceff,0xff56cdff,0xff56cdff,0xff54cdff,0xff54cdff,0xff53ccff,0xff53ccff,0xff53ccff,0xff52ccff,0xff51cbff,0xff51cbff,
+ 0xff50caff,0xff50cbff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac7ff,
+ 0xff4ac7ff,0xff49c6ff,0xff48c6ff,0xff48c5ff,0xff48c5ff,0xff46c5ff,0xff47c5ff,0xff46c3ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff43c2ff,
+ 0xff42c2ff,0xff42c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff3fbfff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbdff,
+ 0xff3bbdff,0xff3abdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff38bcff,0xff38bcff,0xff37bbff,0xff37baff,0xff37baff,0xff36baff,0xff36baff,0xff34baff,0xff34b9ff,
+ 0xff34b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff32b7ff,0xff31b8ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,
+ 0xff2cb5ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b3ff,0xff29b1ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b0ff,0xff26b1ff,
+ 0xff26b0ff,0xff25afff,0xff25afff,0xff26b0ff,0xff27b1ff,0xff27b1ff,0xff27b2ff,0xff28b1ff,0xff28b1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff61cbff,0xff61ccff,
+ 0xff41bfff,0xff41c0ff,0xff41c0ff,0xff63ccff,0xff52c7ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff44c2ff,0xff45c2ff,0xff46c3ff,0xff46c3ff,0xff47c3ff,0xff47c5ff,
+ 0xff48c3ff,0xff48c5ff,0xff48c5ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff65ceff,0xff45c2ff,0xff45c1ff,0xff44c2ff,0xff53c7ff,0xff43c1ff,0xff42c1ff,0xff42c0ff,
+ 0xff42c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41bfff,0xff50c3ff,0xff40bdff,0xff3fbdff,0xff3fbcff,0xff3ebcff,0xff4dc2ff,0xff3dbbff,0xff3dbbff,0xff5dc8ff,
+ 0xff3bbaff,0xff3bbaff,0xff3abaff,0xff4ac0ff,0xff3ab9ff,0xff39b8ff,0xff39b9ff,0xff39b8ff,0xff49bfff,0xff38b7ff,0xff38b7ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,
+ 0xff35b5ff,0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff33b3ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff54c1ff,0xff30b1ff,0xff30b1ff,0xff30b1ff,
+ 0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff2daeff,0xff2caeff,0xff3db5ff,0xff2cacff,0xff2bacff,0xff3cb4ff,0xff4dbcff,0xff3ab3ff,
+ 0xff29abff,0xff28abff,0xff28aaff,0xff4bbaff,0xff28aaff,0xff28a9ff,0xff26a9ff,0xff26a9ff,0xff26a9ff,0xff26a9ff,0xff25a7ff,0xff24a7ff,0xff24a7ff,0xff49b8ff,
+ 0xff23a5ff,0xff23a7ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff31abff,0xff1ea2ff,
+ 0xff1da1ff,0xff1da0ff,0xff1da0ff,0xff41b2ff,0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,
+ 0xff50caff,0xff50caff,0xff74d6ff,0xff74d6ff,0xff52cbff,0xff53cbff,0xff76d6ff,0xff53ccff,0xff76d6ff,0xff55ccff,0xff55ceff,0xff55ceff,0xff55ceff,0xff56ceff,
+ 0xff57ceff,0xff57cfff,0xff58cfff,0xff59cfff,0xff59cfff,0xff59d0ff,0xff59cfff,0xff58d0ff,0xff58cfff,0xff57cfff,0xff79d8ff,0xff57ceff,0xff55ceff,0xff55cdff,
+ 0xff76d7ff,0xff54cdff,0xff53cdff,0xff53cdff,0xff52ccff,0xff52cbff,0xff52cbff,0xff51cbff,0xff51cbff,0xff62cfff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,
+ 0xff71d3ff,0xff4dc8ff,0xff4cc8ff,0xff70d2ff,0xff4bc7ff,0xff4bc7ff,0xff4bc7ff,0xff6fd1ff,0xff49c6ff,0xff49c6ff,0xff48c6ff,0xff48c6ff,0xff6dd0ff,0xff47c5ff,
+ 0xff46c4ff,0xff46c3ff,0xff46c3ff,0xff44c3ff,0xff45c3ff,0xff43c3ff,0xff44c2ff,0xff43c2ff,0xff42c2ff,0xff42c2ff,0xff42c1ff,0xff40c1ff,0xff40c1ff,0xff66cdff,
+ 0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbfff,0xff3cbeff,0xff3dbeff,0xff3cbeff,0xff3bbeff,0xff3abdff,0xff3abcff,0xff39bcff,0xff61caff,0xff39bbff,
+ 0xff38bbff,0xff60c9ff,0xff37bbff,0xff5fc8ff,0xff36baff,0xff36baff,0xff5ec7ff,0xff35b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff31b8ff,0xff32b7ff,
+ 0xff31b6ff,0xff30b7ff,0xff2fb6ff,0xff59c5ff,0xff2eb5ff,0xff2fb5ff,0xff2eb4ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2bb2ff,
+ 0xff2ab3ff,0xff29b2ff,0xff53c1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff52c1ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff26b0ff,0xff26b0ff,0xff27b1ff,0xff27b1ff,
+ 0xff27b2ff,0xff28b1ff,0xff29b1ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff63ccff,0xff42c0ff,0xff74d3ff,0xff63cdff,
+ 0xff64cdff,0xff55c7ff,0xff64ceff,0xff66ceff,0xff56c8ff,0xff67cfff,0xff66cfff,0xff67cfff,0xff58cbff,0xff68cfff,0xff68cfff,0xff57cbff,0xff47c3ff,0xff66cfff,
+ 0xff45c3ff,0xff56c8ff,0xff65cdff,0xff64cdff,0xff64cdff,0xff63cdff,0xff63ccff,0xff63ccff,0xff42c0ff,0xff63ccff,0xff41c0ff,0xff61ccff,0xff40bdff,0xff71d0ff,
+ 0xff3fbdff,0xff4fc3ff,0xff5fcbff,0xff5fc9ff,0xff5fc9ff,0xff3dbcff,0xff5dc8ff,0xff3cbbff,0xff4bc1ff,0xff5cc7ff,0xff5cc7ff,0xff5cc7ff,0xff5bc6ff,0xff5bc6ff,
+ 0xff5bc6ff,0xff49bfff,0xff6cccff,0xff5ac6ff,0xff38b7ff,0xff59c5ff,0xff59c5ff,0xff58c3ff,0xff58c3ff,0xff58c3ff,0xff57c2ff,0xff45bbff,0xff56c1ff,0xff33b3ff,
+ 0xff55c1ff,0xff33b3ff,0xff32b3ff,0xff54c1ff,0xff31b2ff,0xff65c7ff,0xff53c0ff,0xff52bfff,0xff52bfff,0xff52bfff,0xff51bfff,0xff40b7ff,0xff51bfff,0xff51bdff,
+ 0xff50bdff,0xff3eb5ff,0xff61c5ff,0xff4fbcff,0xff2bacff,0xff4dbcff,0xff2aacff,0xff29abff,0xff29abff,0xff29aaff,0xff4cbbff,0xff28aaff,0xff28aaff,0xff27a9ff,
+ 0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff48b8ff,0xff24a7ff,0xff48b8ff,0xff47b7ff,0xff47b7ff,0xff33adff,0xff59bfff,0xff46b5ff,
+ 0xff45b5ff,0xff32acff,0xff45b4ff,0xff44b3ff,0xff31abff,0xff43b3ff,0xff56bcff,0xff30aaff,0xff1da2ff,0xff1da1ff,0xff41b2ff,0xff1ca0ff,0xff41b2ff,0xff41b1ff,
+ 0xff41b2ff,0xff2ea9ff,0xff41b2ff,0xff41b3ff,0xff2faaff,0xff42b3ff,0xff42b3ff,0xff43b3ff,0xff4fcaff,0xff50cbff,0xff51caff,0xff51caff,0xff52cbff,0xff63d1ff,
+ 0xff63d1ff,0xff53ccff,0xff76d6ff,0xff54cdff,0xff76d7ff,0xff77d8ff,0xff55ceff,0xff57ceff,0xff79d9ff,0xff79d8ff,0xff79d9ff,0xff7ad9ff,0xff7ad9ff,0xff7bd9ff,
+ 0xff7ad9ff,0xff7ad9ff,0xff58cfff,0xff7ad8ff,0xff57ceff,0xff78d8ff,0xff55cdff,0xff55ceff,0xff76d7ff,0xff65d2ff,0xff76d6ff,0xff87dbff,0xff53cbff,0xff75d6ff,
+ 0xff63d0ff,0xff62d0ff,0xff51cbff,0xff73d5ff,0xff50caff,0xff72d5ff,0xff4fcaff,0xff4ec9ff,0xff71d4ff,0xff4dc9ff,0xff71d3ff,0xff4cc8ff,0xff6fd2ff,0xff4bc7ff,
+ 0xff4bc7ff,0xff6fd1ff,0xff6fd1ff,0xff48c6ff,0xff6ed1ff,0xff48c5ff,0xff6cd1ff,0xff47c5ff,0xff47c4ff,0xff6bd0ff,0xff45c4ff,0xff6ad0ff,0xff6acfff,0xff43c3ff,
+ 0xff43c2ff,0xff69ceff,0xff69ceff,0xff42c2ff,0xff67cdff,0xff40c0ff,0xff53c7ff,0xff53c6ff,0xff40c0ff,0xff65ccff,0xff3ebfff,0xff64ccff,0xff64ccff,0xff3dbeff,
+ 0xff3cbdff,0xff63cbff,0xff76d1ff,0xff63caff,0xff75d1ff,0xff3abcff,0xff61c9ff,0xff39bbff,0xff38bbff,0xff5fc9ff,0xff37baff,0xff36baff,0xff35baff,0xff49c0ff,
+ 0xff49c1ff,0xff34b9ff,0xff33b9ff,0xff34b9ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff5ac5ff,0xff2fb6ff,0xff58c5ff,0xff2eb5ff,
+ 0xff2eb5ff,0xff57c4ff,0xff57c3ff,0xff2cb4ff,0xff57c2ff,0xff56c2ff,0xff55c2ff,0xff55c1ff,0xff55c1ff,0xff2ab2ff,0xff53c1ff,0xff28b2ff,0xff28b1ff,0xff3db8ff,
+ 0xff3db9ff,0xff26b1ff,0xff52c0ff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff52c1ff,0xff3db9ff,0xff28b1ff,0xff53c1ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,
+ 0xff40bfff,0xff41bfff,0xff41bfff,0xff62ccff,0xff41c0ff,0xff42c0ff,0xff63cdff,0xff43c0ff,0xff63cdff,0xff65cdff,0xff44c2ff,0xff45c2ff,0xff66ceff,0xff67cfff,
+ 0xff67cfff,0xff67cfff,0xff68cfff,0xff48c5ff,0xff47c3ff,0xff58c9ff,0xff57c9ff,0xff56c9ff,0xff45c2ff,0xff65ceff,0xff44c2ff,0xff54c8ff,0xff64cdff,0xff63cdff,
+ 0xff43c0ff,0xff63ccff,0xff42c0ff,0xff51c5ff,0xff61ccff,0xff41bfff,0xff40bdff,0xff60ccff,0xff40bdff,0xff5fc9ff,0xff3ebdff,0xff4ec2ff,0xff5fc9ff,0xff4dc1ff,
+ 0xff4cc1ff,0xff3cbbff,0xff5cc7ff,0xff3bbaff,0xff4ac0ff,0xff5cc6ff,0xff5bc6ff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff5ac6ff,0xff38b7ff,0xff48bdff,0xff59c5ff,
+ 0xff58c3ff,0xff36b5ff,0xff58c3ff,0xff35b5ff,0xff35b4ff,0xff57c2ff,0xff56c2ff,0xff33b3ff,0xff67c8ff,0xff33b3ff,0xff54c1ff,0xff32b2ff,0xff31b2ff,0xff66c7ff,
+ 0xff30b1ff,0xff52c0ff,0xff52bfff,0xff2fb1ff,0xff2eb0ff,0xff51bdff,0xff51bdff,0xff2daeff,0xff3eb7ff,0xff2dadff,0xff4fbdff,0xff2bacff,0xff3cb4ff,0xff4ebcff,
+ 0xff2aacff,0xff4cbcff,0xff29abff,0xff4cbbff,0xff28abff,0xff28aaff,0xff28aaff,0xff38b1ff,0xff27a9ff,0xff26a8ff,0xff26a8ff,0xff37b0ff,0xff25a8ff,0xff36aeff,
+ 0xff36aeff,0xff24a7ff,0xff47b7ff,0xff34adff,0xff23a5ff,0xff46b7ff,0xff46b5ff,0xff21a4ff,0xff46b4ff,0xff45b4ff,0xff20a3ff,0xff20a3ff,0xff31acff,0xff1fa2ff,
+ 0xff43b3ff,0xff30abff,0xff1da1ff,0xff41b3ff,0xff1da0ff,0xff1ca0ff,0xff41b2ff,0xff1b9fff,0xff2ea8ff,0xff2eaaff,0xff1da1ff,0xff2fa9ff,0xff30aaff,0xff42b3ff,
+ 0xff1fa2ff,0xff31abff,0xff50caff,0xff50cbff,0xff51cbff,0xff51cbff,0xff63d0ff,0xff63d0ff,0xff53ccff,0xff54ccff,0xff65d1ff,0xff55cdff,0xff66d2ff,0xff55cdff,
+ 0xff78d7ff,0xff78d8ff,0xff57ceff,0xff69d4ff,0xff58cfff,0xff6ad4ff,0xff59d0ff,0xff7bd9ff,0xff7bd9ff,0xff58cfff,0xff79d9ff,0xff58cfff,0xff57ceff,0xff56ceff,
+ 0xff78d8ff,0xff67d3ff,0xff66d2ff,0xff65d2ff,0xff76d7ff,0xff76d7ff,0xff52ccff,0xff52cbff,0xff63d0ff,0xff51cbff,0xff62d0ff,0xff73d5ff,0xff72d5ff,0xff4fc9ff,
+ 0xff72d4ff,0xff60ceff,0xff5fceff,0xff71d3ff,0xff4dc8ff,0xff4cc8ff,0xff4bc8ff,0xff6fd2ff,0xff5cccff,0xff5cccff,0xff5bccff,0xff6dd1ff,0xff5acbff,0xff48c6ff,
+ 0xff48c5ff,0xff6bd1ff,0xff47c4ff,0xff6bd0ff,0xff6acfff,0xff6acfff,0xff57c9ff,0xff44c3ff,0xff43c2ff,0xff56c8ff,0xff55c7ff,0xff68cdff,0xff54c7ff,0xff53c7ff,
+ 0xff53c6ff,0xff40c0ff,0xff40bfff,0xff66ccff,0xff65ccff,0xff51c5ff,0xff50c5ff,0xff3cbeff,0xff3cbeff,0xff50c5ff,0xff4fc4ff,0xff62caff,0xff4ec4ff,0xff3abdff,
+ 0xff39bbff,0xff60caff,0xff38bbff,0xff4bc2ff,0xff5fc8ff,0xff4bc1ff,0xff4ac1ff,0xff49c1ff,0xff35b9ff,0xff35b9ff,0xff34b8ff,0xff70cdff,0xff47bfff,0xff32b7ff,
+ 0xff47beff,0xff6fccff,0xff31b7ff,0xff5ac5ff,0xff30b7ff,0xff2fb6ff,0xff58c4ff,0xff43bcff,0xff58c4ff,0xff2db5ff,0xff41bcff,0xff2db4ff,0xff41bbff,0xff2bb3ff,
+ 0xff56c2ff,0xff55c2ff,0xff29b2ff,0xff29b2ff,0xff3eb9ff,0xff3eb9ff,0xff3ebaff,0xff3db9ff,0xff26b1ff,0xff26b0ff,0xff3bb8ff,0xff51c0ff,0xff3cb8ff,0xff26b0ff,
+ 0xff52c1ff,0xff53c0ff,0xff28b1ff,0xff3eb9ff,0xff54c1ff,0xff3fbaff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff50c5ff,0xff41c0ff,0xff42c0ff,0xff42c0ff,
+ 0xff42c1ff,0xff43c1ff,0xff43c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff46c3ff,0xff46c2ff,0xff47c3ff,0xff48c5ff,0xff48c3ff,0xff48c5ff,0xff48c3ff,0xff47c3ff,
+ 0xff56c8ff,0xff46c3ff,0xff46c3ff,0xff45c3ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff41bfff,0xff41bfff,0xff41bfff,
+ 0xff41bfff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3fbcff,0xff3ebcff,0xff3ebbff,0xff4dc1ff,0xff3cbbff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,
+ 0xff3abaff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff38b7ff,0xff37b7ff,0xff37b7ff,0xff48bdff,0xff59c3ff,0xff47bdff,0xff35b5ff,0xff34b4ff,0xff35b4ff,0xff34b3ff,
+ 0xff33b3ff,0xff33b3ff,0xff33b2ff,0xff43baff,0xff33b2ff,0xff32b2ff,0xff31b1ff,0xff41b8ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,
+ 0xff2eaeff,0xff2dadff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aacff,0xff29abff,0xff3ab3ff,0xff28abff,0xff28abff,0xff28aaff,
+ 0xff28aaff,0xff27aaff,0xff27a9ff,0xff26a9ff,0xff26a8ff,0xff25a8ff,0xff24a8ff,0xff37aeff,0xff24a7ff,0xff24a7ff,0xff34aeff,0xff23a5ff,0xff22a5ff,0xff22a5ff,
+ 0xff21a4ff,0xff21a4ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff20a2ff,0xff1fa2ff,0xff1ea1ff,0xff30aaff,0xff1da0ff,0xff1ca0ff,0xff1ca1ff,
+ 0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ca0ff,0xff1ca1ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff51cbff,0xff51caff,0xff51caff,
+ 0xff51cbff,0xff52ccff,0xff52cbff,0xff53ccff,0xff54ccff,0xff54cdff,0xff55cdff,0xff56cdff,0xff56ceff,0xff56ceff,0xff57ceff,0xff57cfff,0xff58cfff,0xff58cfff,
+ 0xff59d0ff,0xff59d0ff,0xff58cfff,0xff58cfff,0xff58cfff,0xff58cfff,0xff57ceff,0xff56ceff,0xff56ceff,0xff55cdff,0xff54cdff,0xff54cdff,0xff54ccff,0xff53ccff,
+ 0xff52ccff,0xff52cbff,0xff51cbff,0xff51cbff,0xff50caff,0xff50caff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc7ff,
+ 0xff4bc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff47c5ff,0xff46c5ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff45c3ff,
+ 0xff45c3ff,0xff44c2ff,0xff44c2ff,0xff42c2ff,0xff42c2ff,0xff42c1ff,0xff42c1ff,0xff41c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff52c6ff,0xff3ebfff,0xff3ebfff,
+ 0xff3dbfff,0xff50c5ff,0xff50c5ff,0xff3bbdff,0xff4fc4ff,0xff3bbdff,0xff3abdff,0xff39bcff,0xff4dc3ff,0xff4dc3ff,0xff38bbff,0xff37bbff,0xff37bbff,0xff37bbff,
+ 0xff36baff,0xff36baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff31b8ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff30b6ff,
+ 0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2eb5ff,0xff2cb5ff,0xff2db4ff,0xff2cb4ff,0xff2bb4ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff29b2ff,0xff29b1ff,0xff28b1ff,
+ 0xff28b1ff,0xff27b1ff,0xff26b0ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff25b0ff,0xff3cb8ff,0xff27b0ff,0xff27b1ff,0xff28b2ff,0xff28b1ff,0xff3fbaff,0xff3fbaff,
+ 0xff3fbdff,0xff40bdff,0xff40bdff,0xff41bdff,0xff61ccff,0xff62ccff,0xff62ccff,0xff42c0ff,0xff74d2ff,0xff63ccff,0xff64cdff,0xff44c1ff,0xff65ceff,0xff65cfff,
+ 0xff46c2ff,0xff66cfff,0xff66cfff,0xff67cfff,0xff67cfff,0xff48c5ff,0xff57cbff,0xff58c9ff,0xff56c9ff,0xff66cfff,0xff56c9ff,0xff55c8ff,0xff65cdff,0xff64cdff,
+ 0xff53c7ff,0xff74d2ff,0xff63cdff,0xff63ccff,0xff41c0ff,0xff41c0ff,0xff41c0ff,0xff41bfff,0xff72d0ff,0xff60ccff,0xff50c3ff,0xff5fc9ff,0xff3ebcff,0xff3ebcff,
+ 0xff5ec8ff,0xff5ec8ff,0xff5dc8ff,0xff5dc8ff,0xff5dc7ff,0xff5cc7ff,0xff5cc7ff,0xff4ac0ff,0xff6dceff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,0xff59c5ff,
+ 0xff49bfff,0xff58c5ff,0xff59c3ff,0xff58c3ff,0xff58c3ff,0xff58c3ff,0xff57c2ff,0xff44bbff,0xff57c2ff,0xff67c8ff,0xff55c1ff,0xff42b9ff,0xff32b2ff,0xff32b2ff,
+ 0xff31b2ff,0xff53c1ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff51bfff,0xff51bfff,0xff2eaeff,0xff51bdff,0xff2dadff,0xff2daeff,0xff2cadff,0xff4fbcff,0xff4ebcff,
+ 0xff2badff,0xff2aacff,0xff2aacff,0xff29acff,0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff5ec2ff,0xff4bb9ff,0xff38b1ff,0xff4ab8ff,0xff49b8ff,0xff49b8ff,
+ 0xff37b0ff,0xff36b0ff,0xff49b8ff,0xff35aeff,0xff35aeff,0xff47b7ff,0xff47b7ff,0xff34adff,0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff21a3ff,0xff45b4ff,0xff44b3ff,
+ 0xff20a2ff,0xff43b3ff,0xff43b3ff,0xff42b3ff,0xff42b3ff,0xff41b3ff,0xff41b3ff,0xff2ea9ff,0xff1ca0ff,0xff1b9fff,0xff1ca0ff,0xff2eaaff,0xff2eaaff,0xff1da1ff,
+ 0xff1da1ff,0xff1fa1ff,0xff43b3ff,0xff43b3ff,0xff50caff,0xff50caff,0xff51cbff,0xff51cbff,0xff74d6ff,0xff52cbff,0xff53ccff,0xff76d6ff,0xff76d6ff,0xff55cdff,
+ 0xff76d7ff,0xff77d8ff,0xff55ceff,0xff56ceff,0xff78d8ff,0xff7ad8ff,0xff58cfff,0xff69d4ff,0xff7bd9ff,0xff6ad5ff,0xff6ad5ff,0xff58cfff,0xff7ad9ff,0xff57cfff,
+ 0xff78d9ff,0xff79d8ff,0xff56ceff,0xff56cdff,0xff66d2ff,0xff76d7ff,0xff54cdff,0xff53ccff,0xff53ccff,0xff52cbff,0xff52cbff,0xff51cbff,0xff74d5ff,0xff50cbff,
+ 0xff73d5ff,0xff72d5ff,0xff4fcaff,0xff4ec9ff,0xff72d4ff,0xff71d3ff,0xff4dc8ff,0xff5ecdff,0xff6fd3ff,0xff4bc7ff,0xff4bc7ff,0xff6fd2ff,0xff6ed1ff,0xff49c6ff,
+ 0xff49c5ff,0xff6dd1ff,0xff47c5ff,0xff47c5ff,0xff6bd0ff,0xff6bd0ff,0xff45c4ff,0xff6acfff,0xff6acfff,0xff44c3ff,0xff43c2ff,0xff69ceff,0xff42c2ff,0xff68cdff,
+ 0xff41c1ff,0xff54c7ff,0xff66cdff,0xff66cdff,0xff52c6ff,0xff52c5ff,0xff51c5ff,0xff3ebeff,0xff3dbfff,0xff50c5ff,0xff50c5ff,0xff3cbdff,0xff4fc4ff,0xff4ec4ff,
+ 0xff3abdff,0xff39bcff,0xff4dc3ff,0xff4cc3ff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff5dc7ff,0xff33b8ff,
+ 0xff5cc6ff,0xff5bc6ff,0xff32b7ff,0xff32b7ff,0xff5ac5ff,0xff5ac5ff,0xff30b6ff,0xff59c4ff,0xff59c5ff,0xff2fb6ff,0xff2eb5ff,0xff43bcff,0xff57c3ff,0xff57c3ff,
+ 0xff2cb4ff,0xff56c3ff,0xff2bb3ff,0xff2bb2ff,0xff55c2ff,0xff54c1ff,0xff29b1ff,0xff3ebaff,0xff53c1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff51c0ff,0xff51c0ff,
+ 0xff52c0ff,0xff26b0ff,0xff52c0ff,0xff27b1ff,0xff27b1ff,0xff28b2ff,0xff3ebaff,0xff3fbaff,0xff3fbcff,0xff50c3ff,0xff61ccff,0xff61cbff,0xff62ccff,0xff41bfff,
+ 0xff42bfff,0xff63ccff,0xff74d3ff,0xff63cdff,0xff64cdff,0xff65ceff,0xff65ceff,0xff65ceff,0xff65ceff,0xff67cfff,0xff46c3ff,0xff47c3ff,0xff68cfff,0xff68cfff,
+ 0xff47c5ff,0xff47c3ff,0xff77d4ff,0xff66ceff,0xff76d4ff,0xff65ceff,0xff45c2ff,0xff64cdff,0xff53c7ff,0xff74d2ff,0xff63ccff,0xff42c0ff,0xff42bfff,0xff41bfff,
+ 0xff41c0ff,0xff41bdff,0xff72d0ff,0xff60cbff,0xff4fc3ff,0xff5fcbff,0xff3fbdff,0xff3ebcff,0xff5ec8ff,0xff5ec8ff,0xff4dc1ff,0xff5dc7ff,0xff5dc7ff,0xff5cc7ff,
+ 0xff5cc7ff,0xff49c0ff,0xff6dcdff,0xff5bc6ff,0xff39b9ff,0xff5bc6ff,0xff5ac6ff,0xff59c6ff,0xff48bdff,0xff59c5ff,0xff36b5ff,0xff58c3ff,0xff58c3ff,0xff58c3ff,
+ 0xff57c2ff,0xff44bbff,0xff33b3ff,0xff56c2ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff53c0ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,
+ 0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff51bdff,0xff2daeff,0xff2daeff,0xff2cacff,0xff2badff,0xff2badff,0xff2bacff,0xff2aabff,0xff29abff,0xff29abff,0xff4cbaff,
+ 0xff4cbbff,0xff39b2ff,0xff4bbaff,0xff27aaff,0xff4ab9ff,0xff4ab9ff,0xff49b9ff,0xff49b9ff,0xff36b0ff,0xff5bc0ff,0xff49b8ff,0xff5bc0ff,0xff47b8ff,0xff23a5ff,
+ 0xff23a5ff,0xff23a5ff,0xff5abfff,0xff33adff,0xff20a4ff,0xff45b5ff,0xff44b4ff,0xff44b4ff,0xff44b3ff,0xff43b3ff,0xff30abff,0xff42b3ff,0xff41b3ff,0xff41b3ff,
+ 0xff2eaaff,0xff1ca1ff,0xff1ba0ff,0xff1ba0ff,0xff1ba0ff,0xff1ca1ff,0xff41b2ff,0xff1da1ff,0xff1ea2ff,0xff1ea1ff,0xff1fa1ff,0xff1fa2ff,0xff50caff,0xff50caff,
+ 0xff50caff,0xff51cbff,0xff75d6ff,0xff53ccff,0xff52ccff,0xff76d6ff,0xff76d6ff,0xff55cdff,0xff54cdff,0xff77d7ff,0xff56ceff,0xff56ceff,0xff78d9ff,0xff79d9ff,
+ 0xff57cfff,0xff69d5ff,0xff7bd9ff,0xff5ad0ff,0xff7bd9ff,0xff59cfff,0xff79d9ff,0xff57cfff,0xff78d9ff,0xff78d8ff,0xff55ceff,0xff55ceff,0xff76d7ff,0xff76d6ff,
+ 0xff54ccff,0xff53ccff,0xff53ccff,0xff52cbff,0xff52cbff,0xff52cbff,0xff74d5ff,0xff50caff,0xff73d4ff,0xff72d5ff,0xff4ec9ff,0xff4ec9ff,0xff71d4ff,0xff71d3ff,
+ 0xff4cc8ff,0xff70d3ff,0xff70d3ff,0xff4bc7ff,0xff6fd1ff,0xff4ac6ff,0xff6ed1ff,0xff49c5ff,0xff48c5ff,0xff6dd1ff,0xff47c5ff,0xff47c5ff,0xff46c4ff,0xff6ad0ff,
+ 0xff45c4ff,0xff6acfff,0xff6acfff,0xff44c2ff,0xff69ceff,0xff42c2ff,0xff42c1ff,0xff68cdff,0xff41c1ff,0xff54c7ff,0xff66cdff,0xff66cdff,0xff52c6ff,0xff3fbfff,
+ 0xff65ccff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff63caff,0xff3abdff,0xff39bcff,0xff39bcff,0xff39bbff,0xff37bbff,0xff38bbff,
+ 0xff36bbff,0xff37baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff5dc7ff,0xff33b8ff,0xff5cc6ff,0xff5bc6ff,0xff31b7ff,0xff31b7ff,0xff31b7ff,0xff5ac5ff,
+ 0xff30b6ff,0xff59c5ff,0xff59c4ff,0xff2eb6ff,0xff2eb5ff,0xff42bcff,0xff57c3ff,0xff41bcff,0xff41bcff,0xff56c2ff,0xff2ab3ff,0xff2ab2ff,0xff55c2ff,0xff55c1ff,
+ 0xff29b2ff,0xff53c1ff,0xff52c1ff,0xff27b1ff,0xff27b1ff,0xff26b1ff,0xff52c0ff,0xff51c0ff,0xff51c0ff,0xff26b0ff,0xff27b1ff,0xff52c1ff,0xff28b1ff,0xff28b2ff,
+ 0xff28b1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff62ccff,0xff62ccff,0xff62ccff,0xff43c0ff,0xff63ccff,0xff43c0ff,0xff43c1ff,0xff64ceff,
+ 0xff45c2ff,0xff45c2ff,0xff66cfff,0xff66cfff,0xff67cfff,0xff67cfff,0xff67cfff,0xff48c5ff,0xff48c5ff,0xff67cfff,0xff67cfff,0xff46c3ff,0xff65cfff,0xff55c8ff,
+ 0xff65cdff,0xff64ceff,0xff64cdff,0xff74d2ff,0xff63cdff,0xff63ccff,0xff41c0ff,0xff42c0ff,0xff41bfff,0xff41bfff,0xff71d0ff,0xff60cbff,0xff50c3ff,0xff4fc2ff,
+ 0xff5fc9ff,0xff5fc8ff,0xff4ec1ff,0xff5ec9ff,0xff5ec8ff,0xff6ecfff,0xff5cc8ff,0xff3bbaff,0xff3abaff,0xff5cc6ff,0xff6dcdff,0xff5bc6ff,0xff5bc6ff,0xff5bc6ff,
+ 0xff39b7ff,0xff38b7ff,0xff37b7ff,0xff59c5ff,0xff58c3ff,0xff58c5ff,0xff58c3ff,0xff35b5ff,0xff35b4ff,0xff57c2ff,0xff33b4ff,0xff55c1ff,0xff33b3ff,0xff33b2ff,
+ 0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff52c0ff,0xff30b1ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2eaeff,0xff50bdff,0xff2daeff,
+ 0xff2cadff,0xff2cadff,0xff2bacff,0xff2aacff,0xff2aacff,0xff2aabff,0xff29abff,0xff28aaff,0xff28abff,0xff28aaff,0xff5ec1ff,0xff4ab9ff,0xff38b2ff,0xff4ab9ff,
+ 0xff26a9ff,0xff25a8ff,0xff24a7ff,0xff49b8ff,0xff24a7ff,0xff48b8ff,0xff35aeff,0xff48b8ff,0xff47b7ff,0xff33adff,0xff46b5ff,0xff21a4ff,0xff46b5ff,0xff45b4ff,
+ 0xff20a3ff,0xff20a2ff,0xff43b3ff,0xff43b3ff,0xff43b3ff,0xff56bcff,0xff41b3ff,0xff41b3ff,0xff41b3ff,0xff2ea9ff,0xff1ba0ff,0xff1ba0ff,0xff1ca0ff,0xff1ca0ff,
+ 0xff1da0ff,0xff41b3ff,0xff1ea1ff,0xff1ea2ff,0xff1fa2ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff52cbff,0xff52ccff,0xff52ccff,0xff53ccff,
+ 0xff54cdff,0xff54cdff,0xff55cdff,0xff55ceff,0xff56ceff,0xff56ceff,0xff57ceff,0xff58cfff,0xff57cfff,0xff59cfff,0xff59d0ff,0xff59d0ff,0xff59cfff,0xff58d0ff,
+ 0xff58cfff,0xff57ceff,0xff56ceff,0xff56ceff,0xff55ceff,0xff55cdff,0xff55cdff,0xff55cdff,0xff53cdff,0xff53ccff,0xff64d1ff,0xff75d6ff,0xff75d6ff,0xff62d0ff,
+ 0xff50cbff,0xff50caff,0xff4fc9ff,0xff4fc9ff,0xff4fc9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc7ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,
+ 0xff4ac6ff,0xff49c5ff,0xff48c6ff,0xff48c5ff,0xff48c5ff,0xff47c4ff,0xff47c4ff,0xff46c3ff,0xff45c4ff,0xff44c4ff,0xff44c3ff,0xff43c3ff,0xff43c2ff,0xff42c2ff,
+ 0xff42c2ff,0xff42c2ff,0xff41c1ff,0xff41c1ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3ec0ff,0xff64cbff,0xff3dbfff,0xff3cbeff,0xff3cbdff,0xff3cbdff,
+ 0xff3bbdff,0xff3abdff,0xff62caff,0xff3abdff,0xff39bcff,0xff39bcff,0xff38bbff,0xff37baff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,
+ 0xff33b9ff,0xff34b8ff,0xff33b8ff,0xff32b8ff,0xff32b8ff,0xff32b7ff,0xff31b7ff,0xff31b6ff,0xff30b6ff,0xff2fb5ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2eb5ff,
+ 0xff2cb4ff,0xff2cb4ff,0xff2bb4ff,0xff2bb3ff,0xff2ab3ff,0xff2ab3ff,0xff2ab3ff,0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b1ff,
+ 0xff25b0ff,0xff25afff,0xff25b0ff,0xff26b1ff,0xff27b0ff,0xff27b1ff,0xff52c1ff,0xff29b1ff,0xff28b1ff,0xff29b2ff,0xff40bcff,0xff40bdff,0xff41bfff,0xff41bdff,
+ 0xff41bfff,0xff41bfff,0xff42c0ff,0xff42c1ff,0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff45c1ff,0xff45c2ff,0xff46c3ff,0xff45c3ff,0xff46c2ff,0xff47c3ff,0xff47c5ff,
+ 0xff48c3ff,0xff49c5ff,0xff48c3ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,
+ 0xff41bfff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3cbbff,0xff3cbbff,
+ 0xff3bbaff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3abaff,0xff3ab8ff,0xff3ab9ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff37b8ff,0xff37b7ff,0xff36b7ff,0xff35b5ff,
+ 0xff35b5ff,0xff35b5ff,0xff34b5ff,0xff34b4ff,0xff33b4ff,0xff33b4ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,
+ 0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2daeff,0xff2daeff,0xff2cadff,0xff2cadff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29abff,
+ 0xff29abff,0xff28abff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27a9ff,0xff27a9ff,0xff26a8ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,
+ 0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff22a5ff,0xff22a5ff,0xff21a4ff,0xff21a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff1fa3ff,0xff1fa2ff,0xff1ea1ff,0xff1ea2ff,
+ 0xff1ea1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1c9fff,0xff1b9fff,0xff1ca0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,0xff1da1ff,0xff1ea1ff,0xff1ea1ff,0xff1fa2ff,
+ 0xff4fcaff,0xff50caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff63d0ff,0xff64d1ff,0xff53ccff,0xff64d2ff,0xff77d7ff,0xff66d3ff,0xff55ceff,0xff56ceff,0xff56ceff,
+ 0xff57ceff,0xff57ceff,0xff58cfff,0xff58cfff,0xff58cfff,0xff5ad0ff,0xff59d0ff,0xff59cfff,0xff69d4ff,0xff7ad8ff,0xff68d4ff,0xff56ceff,0xff55ceff,0xff55ceff,
+ 0xff55cdff,0xff54cdff,0xff53cdff,0xff53cdff,0xff52cbff,0xff63d1ff,0xff52cbff,0xff51cbff,0xff50cbff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff4fc9ff,0xff4ec9ff,
+ 0xff4ec9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4cc7ff,0xff6fd2ff,0xff6fd1ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff47c5ff,0xff48c4ff,0xff47c4ff,
+ 0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff42c2ff,0xff43c2ff,0xff42c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff3fc0ff,
+ 0xff3fbfff,0xff3ec0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff64ccff,0xff63cbff,0xff3cbdff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abcff,0xff39bcff,0xff60c9ff,
+ 0xff38bbff,0xff37bbff,0xff37baff,0xff36baff,0xff36baff,0xff49c0ff,0xff49c0ff,0xff34b9ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,
+ 0xff30b7ff,0xff30b6ff,0xff44bdff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db5ff,0xff2cb5ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,
+ 0xff2ab2ff,0xff29b3ff,0xff28b1ff,0xff28b2ff,0xff27b1ff,0xff27b0ff,0xff26b1ff,0xff26b0ff,0xff25afff,0xff25afff,0xff25b0ff,0xff26b1ff,0xff3db8ff,0xff28b1ff,
+ 0xff27b1ff,0xff3eb9ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff42c0ff,0xff62ccff,0xff42c0ff,0xff63cdff,0xff43c1ff,
+ 0xff64cdff,0xff44c2ff,0xff45c1ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff47c3ff,0xff48c3ff,0xff48c5ff,0xff48c3ff,0xff47c5ff,0xff47c3ff,0xff66cfff,0xff46c2ff,
+ 0xff66ceff,0xff46c2ff,0xff45c2ff,0xff44c1ff,0xff44c1ff,0xff43c1ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff62ccff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,
+ 0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbbff,0xff3dbbff,0xff3dbbff,0xff3cbbff,0xff5dc7ff,0xff3abaff,0xff3ab9ff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,
+ 0xff39b8ff,0xff38b8ff,0xff38b7ff,0xff38b7ff,0xff37b8ff,0xff37b5ff,0xff37b5ff,0xff36b5ff,0xff36b5ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,
+ 0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b2ff,0xff31b1ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff51bfff,0xff51bfff,0xff2eaeff,0xff2eaeff,0xff2eaeff,
+ 0xff2daeff,0xff2dadff,0xff4fbdff,0xff2cadff,0xff3cb4ff,0xff2aacff,0xff2aacff,0xff2aacff,0xff29abff,0xff29aaff,0xff4bbaff,0xff28aaff,0xff28aaff,0xff27aaff,
+ 0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff25a7ff,0xff35aeff,0xff24a7ff,0xff24a7ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff21a4ff,
+ 0xff21a3ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,0xff1ca1ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,
+ 0xff1ca0ff,0xff1ca0ff,0xff41b3ff,0xff1da1ff,0xff1ea1ff,0xff42b3ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50cbff,0xff51cbff,0xff51cbff,0xff51cbff,0xff52ccff,
+ 0xff75d6ff,0xff53ccff,0xff76d6ff,0xff54cdff,0xff77d7ff,0xff77d7ff,0xff78d8ff,0xff78d8ff,0xff67d3ff,0xff7ad9ff,0xff7ad9ff,0xff7ad9ff,0xff7bd9ff,0xff7bd9ff,
+ 0xff7bd9ff,0xff69d4ff,0xff79d9ff,0xff68d4ff,0xff56cfff,0xff78d8ff,0xff55ceff,0xff55cdff,0xff77d7ff,0xff76d7ff,0xff76d6ff,0xff76d6ff,0xff63d0ff,0xff86dbff,
+ 0xff74d6ff,0xff51cbff,0xff73d5ff,0xff73d5ff,0xff73d4ff,0xff4fcaff,0xff83d9ff,0xff72d4ff,0xff5fcdff,0xff4dc9ff,0xff4dc8ff,0xff4bc8ff,0xff6fd2ff,0xff4bc7ff,
+ 0xff4ac6ff,0xff4ac6ff,0xff4ac6ff,0xff49c6ff,0xff48c6ff,0xff48c5ff,0xff47c5ff,0xff47c5ff,0xff47c4ff,0xff6bd0ff,0xff46c4ff,0xff6ad0ff,0xff44c3ff,0xff43c3ff,
+ 0xff43c2ff,0xff43c2ff,0xff68ceff,0xff68cdff,0xff67cdff,0xff40c0ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff3dbeff,
+ 0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff4dc3ff,0xff74d0ff,0xff61caff,0xff38bbff,0xff73cfff,0xff5fc9ff,0xff5fc9ff,0xff36baff,0xff35baff,
+ 0xff5ec7ff,0xff35b9ff,0xff5cc6ff,0xff34b8ff,0xff5cc6ff,0xff47bfff,0xff5bc5ff,0xff5ac6ff,0xff46beff,0xff30b6ff,0xff6eccff,0xff2fb6ff,0xff59c5ff,0xff58c4ff,
+ 0xff58c4ff,0xff42bcff,0xff2cb4ff,0xff2cb4ff,0xff2cb3ff,0xff40bbff,0xff56c2ff,0xff55c2ff,0xff3fbbff,0xff29b2ff,0xff29b1ff,0xff28b1ff,0xff53c1ff,0xff52c1ff,
+ 0xff52c1ff,0xff3cb8ff,0xff51c0ff,0xff51bfff,0xff51bfff,0xff3cb8ff,0xff67c8ff,0xff52c1ff,0xff28b1ff,0xff69c8ff,0xff53c1ff,0xff54c1ff,0xff3fbdff,0xff50c5ff,
+ 0xff61cbff,0xff61ccff,0xff41bfff,0xff41bfff,0xff62ccff,0xff43c0ff,0xff63ccff,0xff44c1ff,0xff64cdff,0xff64cdff,0xff44c2ff,0xff45c2ff,0xff66ceff,0xff76d4ff,
+ 0xff67cfff,0xff77d4ff,0xff68cfff,0xff49c5ff,0xff48c5ff,0xff68cfff,0xff47c3ff,0xff56c9ff,0xff66cfff,0xff65ceff,0xff44c2ff,0xff44c1ff,0xff64cdff,0xff53c6ff,
+ 0xff63ccff,0xff42c0ff,0xff42bfff,0xff62ccff,0xff41bfff,0xff41bfff,0xff71d0ff,0xff60cbff,0xff71d0ff,0xff3fbdff,0xff5fc9ff,0xff5fc9ff,0xff5fc8ff,0xff3dbbff,
+ 0xff3cbbff,0xff3cbbff,0xff5dc7ff,0xff3bbaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff39b8ff,0xff5ac5ff,0xff5ac6ff,0xff48bfff,0xff48bcff,
+ 0xff58c3ff,0xff46bcff,0xff36b4ff,0xff35b4ff,0xff34b5ff,0xff33b4ff,0xff56c2ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff32b2ff,0xff30b1ff,
+ 0xff30b1ff,0xff2fb1ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff3fb7ff,0xff51bdff,0xff50bdff,0xff2cadff,0xff4fbcff,0xff2bacff,0xff2bacff,0xff4dbcff,
+ 0xff2aabff,0xff4cbbff,0xff29abff,0xff28aaff,0xff4cbbff,0xff28aaff,0xff4bb9ff,0xff27a9ff,0xff49baff,0xff49b9ff,0xff25a8ff,0xff49b8ff,0xff24a8ff,0xff24a8ff,
+ 0xff49b8ff,0xff24a5ff,0xff47b7ff,0xff23a5ff,0xff23a5ff,0xff46b5ff,0xff33adff,0xff46b5ff,0xff46b5ff,0xff45b4ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff31abff,
+ 0xff43b3ff,0xff42b3ff,0xff41b3ff,0xff1da0ff,0xff1ca1ff,0xff41b2ff,0xff2ea9ff,0xff41b1ff,0xff55bbff,0xff1ca0ff,0xff41b3ff,0xff1da1ff,0xff1da1ff,0xff42b3ff,
+ 0xff1fa2ff,0xff43b3ff,0xff4fcaff,0xff50caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff76d6ff,0xff53cdff,0xff76d6ff,0xff54cdff,0xff77d7ff,0xff77d7ff,
+ 0xff66d3ff,0xff56ceff,0xff79d8ff,0xff79d9ff,0xff58cfff,0xff6ad4ff,0xff7bd9ff,0xff59d0ff,0xff59cfff,0xff7bd9ff,0xff7ad9ff,0xff58cfff,0xff79d9ff,0xff67d3ff,
+ 0xff78d7ff,0xff77d8ff,0xff76d7ff,0xff65d2ff,0xff54cdff,0xff76d6ff,0xff52ccff,0xff75d6ff,0xff52cbff,0xff62d0ff,0xff74d6ff,0xff50caff,0xff62cfff,0xff4fc9ff,
+ 0xff72d4ff,0xff72d4ff,0xff72d4ff,0xff4dc9ff,0xff5fcdff,0xff4cc7ff,0xff6fd2ff,0xff4bc7ff,0xff4ac7ff,0xff6fd1ff,0xff49c6ff,0xff49c6ff,0xff49c5ff,0xff48c5ff,
+ 0xff47c5ff,0xff46c4ff,0xff47c4ff,0xff6bd0ff,0xff45c4ff,0xff6acfff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff43c2ff,0xff69cdff,0xff41c1ff,0xff54c7ff,0xff41c1ff,
+ 0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3abcff,0xff3abcff,
+ 0xff61caff,0xff39bcff,0xff38bbff,0xff73cfff,0xff37bbff,0xff5fc8ff,0xff36baff,0xff36baff,0xff5ec8ff,0xff34b9ff,0xff5dc7ff,0xff34b9ff,0xff70cdff,0xff32b8ff,
+ 0xff6fccff,0xff46beff,0xff31b7ff,0xff30b7ff,0xff59c5ff,0xff2fb6ff,0xff59c5ff,0xff2eb5ff,0xff2eb5ff,0xff57c4ff,0xff2db4ff,0xff2cb4ff,0xff2cb4ff,0xff56c2ff,
+ 0xff2ab3ff,0xff2ab3ff,0xff3fbaff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff53c1ff,0xff3db9ff,0xff27b0ff,0xff52c1ff,0xff52c0ff,0xff25b0ff,0xff52c0ff,0xff26b0ff,
+ 0xff52c0ff,0xff27b1ff,0xff3eb9ff,0xff54c1ff,0xff29b2ff,0xff54c1ff,0xff40bdff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff62ccff,0xff62ccff,0xff52c6ff,
+ 0xff52c7ff,0xff63ccff,0xff54c7ff,0xff64ceff,0xff55c8ff,0xff66ceff,0xff46c2ff,0xff56c9ff,0xff66cfff,0xff57c9ff,0xff57cbff,0xff48c5ff,0xff48c3ff,0xff57c9ff,
+ 0xff57c9ff,0xff67ceff,0xff56c8ff,0xff55c8ff,0xff45c2ff,0xff44c1ff,0xff63cdff,0xff53c7ff,0xff63ccff,0xff52c7ff,0xff41bfff,0xff42c0ff,0xff61ccff,0xff41bfff,
+ 0xff50c3ff,0xff60cbff,0xff4fc3ff,0xff3fbcff,0xff4fc2ff,0xff3ebcff,0xff4dc1ff,0xff3dbbff,0xff6ecfff,0xff4cc1ff,0xff3cbaff,0xff5cc7ff,0xff5cc7ff,0xff3ab9ff,
+ 0xff3ab9ff,0xff3ab9ff,0xff39b9ff,0xff39b8ff,0xff38b7ff,0xff38b7ff,0xff38b8ff,0xff47bdff,0xff37b5ff,0xff46bcff,0xff35b4ff,0xff35b4ff,0xff34b4ff,0xff34b3ff,
+ 0xff44bbff,0xff55c1ff,0xff43baff,0xff33b3ff,0xff32b3ff,0xff32b2ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eb0ff,
+ 0xff2eb0ff,0xff2daeff,0xff2dadff,0xff2daeff,0xff3db5ff,0xff2badff,0xff2bacff,0xff4ebcff,0xff4dbcff,0xff3ab3ff,0xff29abff,0xff4cbbff,0xff4cbaff,0xff39b2ff,
+ 0xff39b2ff,0xff4ab9ff,0xff38b1ff,0xff4ab9ff,0xff38b0ff,0xff49b8ff,0xff37b0ff,0xff37b0ff,0xff49b8ff,0xff48b8ff,0xff35aeff,0xff23a5ff,0xff22a5ff,0xff33adff,
+ 0xff22a4ff,0xff21a4ff,0xff21a3ff,0xff20a3ff,0xff45b4ff,0xff45b4ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1ea1ff,0xff41b3ff,0xff2faaff,0xff41b2ff,0xff1ca0ff,
+ 0xff2ea9ff,0xff41b2ff,0xff41b2ff,0xff1ca0ff,0xff1da1ff,0xff41b3ff,0xff1ea1ff,0xff30aaff,0xff1ea2ff,0xff31abff,0xff50caff,0xff50caff,0xff50caff,0xff51cbff,
+ 0xff51cbff,0xff53ccff,0xff53ccff,0xff53ccff,0xff54cdff,0xff54cdff,0xff55cdff,0xff66d3ff,0xff55ceff,0xff57ceff,0xff56ceff,0xff57cfff,0xff58cfff,0xff58cfff,
+ 0xff58cfff,0xff5ad0ff,0xff59d0ff,0xff58cfff,0xff57cfff,0xff57cfff,0xff57cfff,0xff56ceff,0xff78d7ff,0xff77d8ff,0xff55cdff,0xff54cdff,0xff54ccff,0xff53cdff,
+ 0xff52ccff,0xff52ccff,0xff51cbff,0xff51cbff,0xff51caff,0xff50cbff,0xff50c9ff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4dc9ff,0xff4dc9ff,0xff4dc8ff,0xff4cc7ff,
+ 0xff4bc8ff,0xff4bc7ff,0xff4bc6ff,0xff4ac6ff,0xff49c6ff,0xff49c5ff,0xff48c6ff,0xff47c6ff,0xff48c5ff,0xff47c5ff,0xff46c4ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,
+ 0xff45c3ff,0xff44c3ff,0xff44c3ff,0xff43c2ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff41c1ff,0xff41c0ff,0xff40c0ff,0xff3fbfff,0xff3fc0ff,0xff3ebfff,0xff3dbfff,
+ 0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff3abcff,0xff39bcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff4cc2ff,0xff37baff,0xff36baff,
+ 0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b8ff,0xff34b9ff,0xff32b8ff,0xff33b8ff,0xff5bc6ff,0xff5ac5ff,0xff31b7ff,0xff30b6ff,0xff30b6ff,0xff2fb5ff,
+ 0xff2eb6ff,0xff2eb6ff,0xff2db5ff,0xff2db5ff,0xff2db4ff,0xff2cb4ff,0xff2cb3ff,0xff2bb3ff,0xff2ab3ff,0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b2ff,0xff28b1ff,
+ 0xff3db9ff,0xff28b1ff,0xff26b0ff,0xff26b0ff,0xff26afff,0xff25b0ff,0xff26b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff28b1ff,0xff29b2ff,
+ 0xff40bdff,0xff40bdff,0xff50c5ff,0xff50c3ff,0xff41c0ff,0xff41bfff,0xff42c0ff,0xff42c0ff,0xff42c0ff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,
+ 0xff46c2ff,0xff46c2ff,0xff47c3ff,0xff47c3ff,0xff47c5ff,0xff48c5ff,0xff47c5ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff45c1ff,0xff44c2ff,
+ 0xff44c1ff,0xff43c0ff,0xff43c0ff,0xff42c0ff,0xff41bfff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bfff,0xff40bfff,0xff40bdff,0xff3fbcff,0xff3fbcff,0xff3ebcff,
+ 0xff3ebbff,0xff3dbbff,0xff3dbbff,0xff3cbaff,0xff3cbbff,0xff3bbaff,0xff3bbaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff3ab8ff,0xff39b9ff,0xff38b7ff,0xff38b7ff,
+ 0xff38b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff35b4ff,0xff35b4ff,0xff34b4ff,0xff34b4ff,0xff34b3ff,0xff33b3ff,0xff43baff,0xff32b3ff,0xff32b3ff,0xff31b2ff,
+ 0xff31b1ff,0xff31b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eb0ff,0xff2eaeff,0xff2dadff,0xff2cadff,0xff2cadff,0xff2cacff,
+ 0xff3cb5ff,0xff2bacff,0xff2aacff,0xff29acff,0xff29aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,
+ 0xff25a8ff,0xff25a8ff,0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff23a5ff,0xff22a5ff,0xff33adff,0xff22a5ff,0xff21a4ff,0xff21a3ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,
+ 0xff20a2ff,0xff1fa2ff,0xff1ea2ff,0xff1ea1ff,0xff1ea2ff,0xff1da0ff,0xff1da0ff,0xff1ca0ff,0xff1ba0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da1ff,0xff1da1ff,
+ 0xff1da1ff,0xff1ea2ff,0xff1fa2ff,0xff31acff,0xff4fcaff,0xff50caff,0xff73d6ff,0xff74d6ff,0xff52cbff,0xff52cbff,0xff53cbff,0xff54ccff,0xff54ccff,0xff76d6ff,
+ 0xff76d7ff,0xff55cdff,0xff56ceff,0xff56ceff,0xff57cfff,0xff57cfff,0xff8addff,0xff59cfff,0xff58d0ff,0xff59d0ff,0xff59cfff,0xff58cfff,0xff57cfff,0xff57cfff,
+ 0xff57ceff,0xff56ceff,0xff55ceff,0xff77d7ff,0xff54cdff,0xff54cdff,0xff54ccff,0xff53ccff,0xff52ccff,0xff52ccff,0xff51ccff,0xff51cbff,0xff50caff,0xff50caff,
+ 0xff50caff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4dc8ff,0xff4dc8ff,0xff4cc8ff,0xff4cc7ff,0xff4bc8ff,0xff4bc7ff,0xff4ac6ff,0xff4ac7ff,0xff49c7ff,0xff49c5ff,
+ 0xff48c6ff,0xff48c5ff,0xff6dd0ff,0xff47c4ff,0xff47c4ff,0xff6bd0ff,0xff45c3ff,0xff45c3ff,0xff44c3ff,0xff44c2ff,0xff43c2ff,0xff43c2ff,0xff42c2ff,0xff41c2ff,
+ 0xff67cdff,0xff67cdff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3ebfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3bbdff,
+ 0xff3abdff,0xff3abdff,0xff39bcff,0xff4cc2ff,0xff4cc2ff,0xff37bbff,0xff36baff,0xff5fc8ff,0xff36baff,0xff36b9ff,0xff35baff,0xff34b9ff,0xff34b9ff,0xff33b8ff,
+ 0xff33b9ff,0xff32b8ff,0xff32b7ff,0xff5ac5ff,0xff30b7ff,0xff30b7ff,0xff2fb6ff,0xff59c5ff,0xff2eb6ff,0xff2fb6ff,0xff43bcff,0xff42bcff,0xff2cb5ff,0xff2cb4ff,
+ 0xff56c3ff,0xff2cb3ff,0xff2ab3ff,0xff2ab2ff,0xff2ab3ff,0xff29b2ff,0xff53c1ff,0xff28b1ff,0xff28b1ff,0xff28b1ff,0xff27b0ff,0xff26b0ff,0xff25afff,0xff25afff,
+ 0xff25b0ff,0xff26b1ff,0xff27b1ff,0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff55c1ff,0xff40bdff,0xff40bfff,0xff50c5ff,0xff50c5ff,0xff41bfff,0xff41bfff,
+ 0xff42c0ff,0xff42c0ff,0xff42c1ff,0xff63cdff,0xff44c1ff,0xff54c7ff,0xff55c7ff,0xff65ceff,0xff46c3ff,0xff46c3ff,0xff67cfff,0xff47c3ff,0xff57cbff,0xff48c5ff,
+ 0xff48c3ff,0xff57c9ff,0xff57c9ff,0xff66cfff,0xff55c8ff,0xff45c2ff,0xff55c8ff,0xff55c8ff,0xff44c1ff,0xff53c7ff,0xff63ccff,0xff52c6ff,0xff41bfff,0xff41bfff,
+ 0xff41bfff,0xff41bfff,0xff50c5ff,0xff60cbff,0xff50c3ff,0xff3fbdff,0xff5fc9ff,0xff5fc9ff,0xff3ebbff,0xff3dbcff,0xff3cbbff,0xff3cbaff,0xff4bc1ff,0xff4bc1ff,
+ 0xff5cc6ff,0xff3ab9ff,0xff49c0ff,0xff5bc6ff,0xff49c0ff,0xff49bfff,0xff6bccff,0xff5ac6ff,0xff37b7ff,0xff59c3ff,0xff58c3ff,0xff47bcff,0xff46bcff,0xff58c3ff,
+ 0xff57c2ff,0xff45bbff,0xff33b4ff,0xff43baff,0xff43baff,0xff55c1ff,0xff43baff,0xff54c1ff,0xff32b2ff,0xff41b8ff,0xff53c0ff,0xff41b8ff,0xff2fb1ff,0xff52bfff,
+ 0xff40b8ff,0xff2eb0ff,0xff3fb7ff,0xff51bdff,0xff3eb5ff,0xff2dadff,0xff2cadff,0xff4fbdff,0xff2bacff,0xff3bb4ff,0xff4dbbff,0xff4cbbff,0xff29abff,0xff4cbbff,
+ 0xff4cbbff,0xff28aaff,0xff39b1ff,0xff28aaff,0xff38b1ff,0xff27a9ff,0xff38b0ff,0xff37b0ff,0xff25a8ff,0xff36aeff,0xff49b8ff,0xff48b7ff,0xff24a7ff,0xff23a7ff,
+ 0xff47b7ff,0xff22a5ff,0xff33adff,0xff46b5ff,0xff45b4ff,0xff21a3ff,0xff45b4ff,0xff44b4ff,0xff20a3ff,0xff43b3ff,0xff57bcff,0xff30aaff,0xff1ea1ff,0xff41b2ff,
+ 0xff2eaaff,0xff2eaaff,0xff2ea9ff,0xff41b2ff,0xff2ea9ff,0xff2ea9ff,0xff1ca0ff,0xff1da1ff,0xff2faaff,0xff1ea1ff,0xff31abff,0xff31abff,0xff4fcaff,0xff50caff,
+ 0xff50caff,0xff51cbff,0xff52cbff,0xff75d6ff,0xff76d6ff,0xff64d1ff,0xff76d7ff,0xff87dcff,0xff66d2ff,0xff78d7ff,0xff67d3ff,0xff56ceff,0xff79d9ff,0xff57ceff,
+ 0xff79d9ff,0xff59cfff,0xff7ad9ff,0xff59d0ff,0xff58d0ff,0xff7bd9ff,0xff79d9ff,0xff57cfff,0xff78d8ff,0xff57ceff,0xff55ceff,0xff77d8ff,0xff54cdff,0xff88dcff,
+ 0xff53ccff,0xff76d6ff,0xff52cbff,0xff75d6ff,0xff74d6ff,0xff62cfff,0xff74d5ff,0xff50caff,0xff62cfff,0xff61cfff,0xff60ceff,0xff4ec9ff,0xff5fceff,0xff5fceff,
+ 0xff70d3ff,0xff70d3ff,0xff70d2ff,0xff5dcdff,0xff4bc7ff,0xff6fd1ff,0xff5bccff,0xff49c5ff,0xff6ed1ff,0xff47c6ff,0xff6cd1ff,0xff46c5ff,0xff46c4ff,0xff7dd6ff,
+ 0xff45c3ff,0xff6acfff,0xff45c3ff,0xff44c2ff,0xff43c3ff,0xff43c2ff,0xff42c2ff,0xff68ceff,0xff41c1ff,0xff66cdff,0xff53c7ff,0xff40c0ff,0xff66cdff,0xff66cdff,
+ 0xff3ebfff,0xff65cbff,0xff3ebfff,0xff63cbff,0xff63cbff,0xff63caff,0xff63caff,0xff3abcff,0xff62caff,0xff3abcff,0xff39bcff,0xff61c9ff,0xff38bbff,0xff60c9ff,
+ 0xff37bbff,0xff73cfff,0xff4ac1ff,0xff35baff,0xff35baff,0xff5dc7ff,0xff5dc6ff,0xff33b8ff,0xff5cc6ff,0xff33b7ff,0xff31b7ff,0xff5ac5ff,0xff31b7ff,0xff5ac5ff,
+ 0xff30b6ff,0xff6dccff,0xff2fb5ff,0xff2eb5ff,0xff57c4ff,0xff2db5ff,0xff57c3ff,0xff2db3ff,0xff6bcbff,0xff56c2ff,0xff2bb3ff,0xff2ab3ff,0xff54c1ff,0xff29b2ff,
+ 0xff53c1ff,0xff28b1ff,0xff52c1ff,0xff27b0ff,0xff52c0ff,0xff26b1ff,0xff67c8ff,0xff25afff,0xff51bfff,0xff52c1ff,0xff27b0ff,0xff27b1ff,0xff53c1ff,0xff28b1ff,
+ 0xff53c1ff,0xff29b2ff,0xff40bdff,0xff40bfff,0xff41bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff43c1ff,0xff63ccff,0xff43c1ff,0xff64cdff,
+ 0xff44c2ff,0xff45c2ff,0xff66ceff,0xff47c3ff,0xff66cfff,0xff48c5ff,0xff67cfff,0xff49c5ff,0xff48c5ff,0xff68cfff,0xff67cfff,0xff67cfff,0xff56c8ff,0xff45c2ff,
+ 0xff44c1ff,0xff64cdff,0xff43c1ff,0xff63cdff,0xff43c1ff,0xff63ccff,0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff60cbff,0xff40bdff,0xff40bdff,0xff3fbcff,
+ 0xff4fc2ff,0xff5fc9ff,0xff3ebbff,0xff3dbbff,0xff3cbbff,0xff3cbbff,0xff5dc7ff,0xff3bbaff,0xff3abaff,0xff5cc7ff,0xff5bc6ff,0xff5bc6ff,0xff6dccff,0xff39b8ff,
+ 0xff5ac6ff,0xff38b7ff,0xff37b8ff,0xff59c5ff,0xff37b5ff,0xff58c5ff,0xff47bcff,0xff58c2ff,0xff57c3ff,0xff45bbff,0xff33b3ff,0xff56c1ff,0xff33b3ff,0xff54c1ff,
+ 0xff33b2ff,0xff31b2ff,0xff54c0ff,0xff54c1ff,0xff30b1ff,0xff53c0ff,0xff2fb0ff,0xff52bfff,0xff51bfff,0xff51bdff,0xff63c6ff,0xff50bdff,0xff50bdff,0xff2cadff,
+ 0xff4fbdff,0xff2cadff,0xff2bacff,0xff4ebcff,0xff2aabff,0xff4dbbff,0xff3ab3ff,0xff4cbaff,0xff4bbbff,0xff4cbaff,0xff28aaff,0xff4bbaff,0xff4ab9ff,0xff27a9ff,
+ 0xff25a9ff,0xff49b8ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,0xff48b8ff,0xff24a5ff,0xff48b8ff,0xff23a5ff,0xff22a4ff,0xff46b5ff,0xff21a4ff,0xff45b5ff,0xff45b5ff,
+ 0xff20a3ff,0xff20a3ff,0xff44b3ff,0xff1fa2ff,0xff42b3ff,0xff1ea1ff,0xff30aaff,0xff41b3ff,0xff41b2ff,0xff1ca0ff,0xff41b2ff,0xff1b9fff,0xff41b2ff,0xff41b3ff,
+ 0xff1da0ff,0xff1da1ff,0xff42b3ff,0xff1ea2ff,0xff43b3ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff50cbff,0xff51cbff,0xff51cbff,0xff52ccff,0xff53ccff,0xff53cdff,
+ 0xff54cdff,0xff76d6ff,0xff54cdff,0xff78d7ff,0xff78d8ff,0xff78d8ff,0xff68d4ff,0xff68d4ff,0xff8addff,0xff7bd9ff,0xff6ad5ff,0xff7bd9ff,0xff7bd9ff,0xff7bd9ff,
+ 0xff79d9ff,0xff79d9ff,0xff68d4ff,0xff57cfff,0xff78d8ff,0xff88dcff,0xff65d2ff,0xff76d7ff,0xff54ccff,0xff76d6ff,0xff53cbff,0xff52ccff,0xff52cbff,0xff51cbff,
+ 0xff73d6ff,0xff73d5ff,0xff73d5ff,0xff61ceff,0xff72d5ff,0xff71d4ff,0xff5fceff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff6fd3ff,0xff6fd2ff,0xff6fd1ff,0xff5bccff,
+ 0xff6ed1ff,0xff6ed1ff,0xff7fd6ff,0xff48c5ff,0xff5acbff,0xff6bd1ff,0xff59caff,0xff6bd0ff,0xff45c4ff,0xff6acfff,0xff44c3ff,0xff43c2ff,0xff44c3ff,0xff43c2ff,
+ 0xff68ceff,0xff41c1ff,0xff42c1ff,0xff66cdff,0xff40c0ff,0xff40c0ff,0xff66ccff,0xff65cdff,0xff65ccff,0xff65ccff,0xff3dbeff,0xff64cbff,0xff50c4ff,0xff63cbff,
+ 0xff63caff,0xff63caff,0xff62caff,0xff3abcff,0xff61caff,0xff39bcff,0xff37bbff,0xff5fc9ff,0xff5fc9ff,0xff72cfff,0xff4ac1ff,0xff5ec7ff,0xff5ec8ff,0xff5dc8ff,
+ 0xff34b9ff,0xff5dc7ff,0xff33b8ff,0xff32b7ff,0xff5bc5ff,0xff6fcdff,0xff46bdff,0xff5ac5ff,0xff59c5ff,0xff6dccff,0xff2fb6ff,0xff58c5ff,0xff2db5ff,0xff2db5ff,
+ 0xff57c3ff,0xff57c3ff,0xff6bcbff,0xff40bcff,0xff56c2ff,0xff55c2ff,0xff3fbbff,0xff29b2ff,0xff54c1ff,0xff54c1ff,0xff3ebaff,0xff53c1ff,0xff52c1ff,0xff26b0ff,
+ 0xff51c0ff,0xff25b0ff,0xff51c0ff,0xff3cb9ff,0xff52c1ff,0xff52c1ff,0xff53c1ff,0xff53c1ff,0xff28b1ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff40bdff,0xff41bfff,
+ 0xff41bfff,0xff41c0ff,0xff42bfff,0xff42c0ff,0xff43c0ff,0xff43c0ff,0xff44c1ff,0xff64cdff,0xff45c2ff,0xff45c2ff,0xff46c2ff,0xff46c3ff,0xff46c3ff,0xff47c3ff,
+ 0xff47c5ff,0xff49c5ff,0xff48c5ff,0xff47c5ff,0xff66cfff,0xff66cfff,0xff66cfff,0xff45c2ff,0xff44c2ff,0xff44c1ff,0xff43c1ff,0xff43c0ff,0xff43c0ff,0xff42c1ff,
+ 0xff42c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff41bdff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3ebcff,0xff3dbcff,0xff3cbbff,0xff3cbbff,
+ 0xff5cc7ff,0xff3abaff,0xff3abaff,0xff3abaff,0xff3ab9ff,0xff3ab9ff,0xff3ab9ff,0xff39b8ff,0xff38b7ff,0xff38b7ff,0xff37b8ff,0xff37b7ff,0xff36b7ff,0xff35b7ff,
+ 0xff35b5ff,0xff35b4ff,0xff34b4ff,0xff33b4ff,0xff56c1ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff32b3ff,0xff31b2ff,0xff31b1ff,0xff30b2ff,0xff30b1ff,0xff2fb1ff,
+ 0xff2fb0ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff2eb0ff,0xff2daeff,0xff2dadff,0xff4fbdff,0xff2badff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aabff,0xff29abff,
+ 0xff29abff,0xff29abff,0xff28aaff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,
+ 0xff48b7ff,0xff23a5ff,0xff23a5ff,0xff22a4ff,0xff22a4ff,0xff22a4ff,0xff20a3ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff1fa3ff,0xff20a2ff,0xff1fa1ff,0xff1ea1ff,
+ 0xff30aaff,0xff41b2ff,0xff41b2ff,0xff2ea9ff,0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da1ff,0xff1da0ff,0xff1da2ff,0xff42b3ff,0xff1ea2ff,0xff1fa2ff,
+ 0xff50caff,0xff50caff,0xff51caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,0xff54cdff,0xff54ccff,0xff54cdff,0xff55ceff,0xff56cdff,0xff57ceff,
+ 0xff57ceff,0xff57cfff,0xff58cfff,0xff58cfff,0xff59d0ff,0xff59cfff,0xff59d0ff,0xff59cfff,0xff58cfff,0xff58ceff,0xff57ceff,0xff56ceff,0xff56ceff,0xff55cdff,
+ 0xff54cdff,0xff54cdff,0xff53cdff,0xff54ccff,0xff53ccff,0xff52ccff,0xff51cbff,0xff51caff,0xff51cbff,0xff50caff,0xff4fcaff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,
+ 0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4bc8ff,0xff4bc7ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,0xff49c6ff,0xff48c5ff,0xff48c5ff,0xff48c5ff,0xff47c4ff,
+ 0xff46c4ff,0xff45c4ff,0xff46c4ff,0xff44c3ff,0xff45c3ff,0xff43c2ff,0xff43c2ff,0xff43c2ff,0xff42c1ff,0xff42c1ff,0xff41c1ff,0xff41c0ff,0xff40c1ff,0xff40c0ff,
+ 0xff3fc0ff,0xff3fbfff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3cbeff,0xff3cbeff,0xff3bbeff,0xff3bbdff,0xff3bbdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff38bcff,
+ 0xff38bbff,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,0xff35b9ff,0xff34b9ff,0xff34b9ff,0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff32b7ff,0xff31b7ff,
+ 0xff31b6ff,0xff30b6ff,0xff2fb6ff,0xff30b6ff,0xff2fb5ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,0xff2cb5ff,0xff2cb4ff,0xff2cb4ff,0xff2bb3ff,0xff2bb3ff,0xff2ab2ff,
+ 0xff2ab2ff,0xff29b2ff,0xff29b2ff,0xff28b1ff,0xff28b1ff,0xff27b1ff,0xff27b1ff,0xff26b0ff,0xff25afff,0xff25b0ff,0xff25b0ff,0xff26b0ff,0xff26b1ff,0xff27b1ff,
+ 0xff27b1ff,0xff28b1ff,0xff28b2ff,0xff29b2ff,0xff3fbdff,0xff40bfff,0xff61ccff,0xff61cbff,0xff41bfff,0xff41c0ff,0xff42bfff,0xff42c0ff,0xff52c6ff,0xff43c1ff,
+ 0xff44c1ff,0xff44c1ff,0xff45c2ff,0xff45c2ff,0xff66ceff,0xff56c9ff,0xff47c3ff,0xff47c5ff,0xff47c5ff,0xff48c5ff,0xff48c3ff,0xff48c5ff,0xff47c3ff,0xff46c2ff,
+ 0xff46c3ff,0xff46c2ff,0xff45c2ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff43c1ff,0xff63ccff,0xff42c0ff,0xff41bfff,0xff41bfff,0xff50c5ff,0xff40bdff,0xff40bdff,
+ 0xff40bdff,0xff3fbdff,0xff3fbdff,0xff3ebcff,0xff3dbcff,0xff3dbcff,0xff4cc1ff,0xff3cbaff,0xff3bbaff,0xff3bbaff,0xff3bbaff,0xff4ac1ff,0xff3ab9ff,0xff3ab9ff,
+ 0xff5bc6ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff48bfff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff35b5ff,0xff46bbff,0xff34b4ff,0xff34b4ff,0xff33b4ff,0xff33b3ff,
+ 0xff33b2ff,0xff33b3ff,0xff32b2ff,0xff32b2ff,0xff31b1ff,0xff31b1ff,0xff30b1ff,0xff2fb0ff,0xff2fb1ff,0xff2eb0ff,0xff2eb0ff,0xff51bdff,0xff2eaeff,0xff2daeff,
+ 0xff2daeff,0xff2cadff,0xff2cadff,0xff2badff,0xff2badff,0xff2bacff,0xff2aacff,0xff29acff,0xff28abff,0xff3ab3ff,0xff28abff,0xff28aaff,0xff39b2ff,0xff4bb9ff,
+ 0xff38b1ff,0xff26a8ff,0xff26a8ff,0xff25a8ff,0xff49b8ff,0xff24a7ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff24a5ff,0xff23a5ff,0xff22a4ff,0xff22a5ff,0xff21a4ff,
+ 0xff45b4ff,0xff20a3ff,0xff20a3ff,0xff20a2ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1ea1ff,0xff1da1ff,0xff1da1ff,0xff1ca0ff,0xff1ca1ff,0xff1ca0ff,0xff2ea9ff,
+ 0xff1ca0ff,0xff1ca0ff,0xff2fa9ff,0xff2faaff,0xff1ea1ff,0xff1ea2ff,0xff31abff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff74d5ff,0xff74d6ff,0xff51ccff,0xff52ccff,
+ 0xff53ccff,0xff53ccff,0xff76d7ff,0xff54ccff,0xff54cdff,0xff55cdff,0xff55ceff,0xff78d8ff,0xff56ceff,0xff7ad9ff,0xff58cfff,0xff59cfff,0xff59cfff,0xff59d0ff,
+ 0xff58cfff,0xff58cfff,0xff58cfff,0xff58cfff,0xff57ceff,0xff56ceff,0xff56ceff,0xff55ceff,0xff55cdff,0xff54cdff,0xff54ccff,0xff76d6ff,0xff52ccff,0xff52cbff,
+ 0xff51cbff,0xff74d6ff,0xff50cbff,0xff50caff,0xff4fcaff,0xff4fc9ff,0xff4ecaff,0xff4ec9ff,0xff4ec8ff,0xff4dc8ff,0xff5ecdff,0xff4cc7ff,0xff4cc7ff,0xff4bc7ff,
+ 0xff4ac7ff,0xff6fd1ff,0xff49c6ff,0xff49c6ff,0xff6dd1ff,0xff48c5ff,0xff47c5ff,0xff46c4ff,0xff6bd0ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff6acfff,
+ 0xff43c2ff,0xff42c2ff,0xff42c1ff,0xff42c1ff,0xff41c1ff,0xff41c1ff,0xff40c1ff,0xff40c0ff,0xff40c0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3cbeff,
+ 0xff63cbff,0xff3cbdff,0xff3bbdff,0xff3abdff,0xff3abdff,0xff39bcff,0xff39bcff,0xff38bbff,0xff38bbff,0xff37bbff,0xff37bbff,0xff36baff,0xff36baff,0xff5ec7ff,
+ 0xff35b9ff,0xff34baff,0xff5dc6ff,0xff33b9ff,0xff5cc6ff,0xff32b8ff,0xff32b8ff,0xff5ac5ff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2eb5ff,
+ 0xff2eb4ff,0xff2db5ff,0xff2cb4ff,0xff2cb4ff,0xff57c2ff,0xff2bb3ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff2ab2ff,0xff29b2ff,0xff28b1ff,0xff27b1ff,0xff28b1ff,
+ 0xff27b0ff,0xff26b0ff,0xff26afff,0xff51c0ff,0xff26b0ff,0xff26b1ff,0xff27b0ff,0xff52c1ff,0xff27b1ff,0xff28b2ff,0xff3ebaff,0xff29b2ff,0xff3fbcff,0xff40bdff,
+ 0xff41bdff,0xff41bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff63cdff,0xff43c0ff,0xff43c1ff,0xff44c2ff,0xff44c2ff,0xff65ceff,0xff45c2ff,0xff76d4ff,
+ 0xff66cfff,0xff67cfff,0xff57c9ff,0xff68cfff,0xff68cfff,0xff58cbff,0xff67cfff,0xff66cfff,0xff66ceff,0xff56c8ff,0xff64ceff,0xff64ceff,0xff53c7ff,0xff43c1ff,
+ 0xff63cdff,0xff42c0ff,0xff52c6ff,0xff62ccff,0xff62ccff,0xff61ccff,0xff60cbff,0xff60ccff,0xff60cbff,0xff3fbdff,0xff5fc9ff,0xff3ebcff,0xff5ec8ff,0xff3dbbff,
+ 0xff6ecfff,0xff3cbbff,0xff4cc1ff,0xff5cc7ff,0xff5cc7ff,0xff5cc7ff,0xff3ab9ff,0xff5bc6ff,0xff3ab9ff,0xff49bfff,0xff5ac6ff,0xff59c5ff,0xff59c5ff,0xff58c5ff,
+ 0xff58c3ff,0xff58c3ff,0xff46bcff,0xff69c9ff,0xff58c2ff,0xff33b4ff,0xff56c1ff,0xff56c1ff,0xff56c1ff,0xff55c1ff,0xff54c1ff,0xff54c1ff,0xff41b8ff,0xff54c1ff,
+ 0xff30b1ff,0xff52c0ff,0xff2fb0ff,0xff2eb0ff,0xff51bdff,0xff2eaeff,0xff63c6ff,0xff51bdff,0xff50bdff,0xff4fbdff,0xff4fbdff,0xff4fbdff,0xff3cb4ff,0xff4dbcff,
+ 0xff4dbcff,0xff4cbbff,0xff3ab3ff,0xff5fc2ff,0xff4cbaff,0xff28aaff,0xff4bbaff,0xff27a9ff,0xff27a9ff,0xff26a9ff,0xff25a8ff,0xff49b8ff,0xff25a7ff,0xff24a7ff,
+ 0xff24a7ff,0xff24a7ff,0xff23a7ff,0xff24a5ff,0xff22a5ff,0xff22a5ff,0xff22a4ff,0xff46b5ff,0xff21a3ff,0xff45b4ff,0xff45b4ff,0xff44b4ff,0xff31acff,0xff57bcff,
+ 0xff42b3ff,0xff43b3ff,0xff30aaff,0xff41b3ff,0xff41b3ff,0xff2ea9ff,0xff41b2ff,0xff55baff,0xff2ea9ff,0xff1ca0ff,0xff1da0ff,0xff41b3ff,0xff1ea1ff,0xff1ea1ff,
+ 0xff56bcff,0xff20a2ff,0xff50caff,0xff50cbff,0xff51cbff,0xff51caff,0xff52cbff,0xff75d6ff,0xff76d6ff,0xff64d1ff,0xff76d6ff,0xff54cdff,0xff55ceff,0xff55ceff,
+ 0xff67d2ff,0xff68d3ff,0xff57ceff,0xff79d8ff,0xff58cfff,0xff7bd9ff,0xff7bd9ff,0xff59d0ff,0xff59cfff,0xff7ad9ff,0xff7ad9ff,0xff79d9ff,0xff79d9ff,0xff78d8ff,
+ 0xff78d7ff,0xff78d7ff,0xff77d7ff,0xff54cdff,0xff76d7ff,0xff53ccff,0xff75d6ff,0xff52ccff,0xff52cbff,0xff74d6ff,0xff62d0ff,0xff73d5ff,0xff84daff,0xff4fc9ff,
+ 0xff72d4ff,0xff60ceff,0xff60ceff,0xff4dc8ff,0xff71d3ff,0xff4cc8ff,0xff6fd2ff,0xff4bc7ff,0xff4bc7ff,0xff6fd2ff,0xff49c6ff,0xff6ed1ff,0xff48c5ff,0xff6dd1ff,
+ 0xff47c5ff,0xff47c5ff,0xff6bd0ff,0xff6bcfff,0xff45c3ff,0xff6ad0ff,0xff44c3ff,0xff6aceff,0xff43c2ff,0xff42c2ff,0xff68ceff,0xff41c1ff,0xff67cdff,0xff67cdff,
+ 0xff40c0ff,0xff40c0ff,0xff66ccff,0xff66ccff,0xff3ebfff,0xff65cbff,0xff3dbfff,0xff50c5ff,0xff50c4ff,0xff3bbeff,0xff63caff,0xff3abdff,0xff62caff,0xff61caff,
+ 0xff39bcff,0xff38bcff,0xff60c9ff,0xff73cfff,0xff5fc8ff,0xff72cfff,0xff36baff,0xff5ec7ff,0xff35baff,0xff34baff,0xff5dc6ff,0xff34b8ff,0xff33b8ff,0xff33b8ff,
+ 0xff47bfff,0xff46beff,0xff31b7ff,0xff31b7ff,0xff2fb7ff,0xff30b6ff,0xff2fb5ff,0xff2fb5ff,0xff2eb5ff,0xff2db5ff,0xff2db4ff,0xff57c3ff,0xff2cb4ff,0xff56c2ff,
+ 0xff2ab3ff,0xff2ab3ff,0xff55c2ff,0xff54c1ff,0xff29b2ff,0xff53c1ff,0xff53c1ff,0xff52c1ff,0xff52c1ff,0xff52c0ff,0xff26b0ff,0xff51c0ff,0xff26b0ff,0xff26b0ff,
+ 0xff26b1ff,0xff52c1ff,0xff27b1ff,0xff29b2ff,0xff54c1ff,0xff29b3ff,0xff40bdff,0xff40bdff,0xff41bdff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42bfff,0xff42c0ff,
+ 0xff63cdff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff64ceff,0xff46c2ff,0xff46c2ff,0xff66ceff,0xff46c3ff,0xff67cfff,0xff68cfff,0xff48c5ff,0xff48c3ff,0xff67cfff,
+ 0xff67cfff,0xff67cfff,0xff65ceff,0xff65ceff,0xff45c2ff,0xff44c1ff,0xff54c7ff,0xff53c7ff,0xff53c7ff,0xff43c0ff,0xff63ccff,0xff41bfff,0xff51c5ff,0xff61ccff,
+ 0xff60cbff,0xff40bdff,0xff60cbff,0xff3fbdff,0xff4ec2ff,0xff5fc9ff,0xff3dbcff,0xff3dbcff,0xff5dc8ff,0xff3cbaff,0xff5cc7ff,0xff3bbaff,0xff4ac1ff,0xff5cc6ff,
+ 0xff4ac1ff,0xff49c0ff,0xff3ab9ff,0xff5bc6ff,0xff38b8ff,0xff49bfff,0xff59c5ff,0xff59c5ff,0xff36b7ff,0xff58c5ff,0xff35b5ff,0xff58c3ff,0xff34b5ff,0xff45bbff,
+ 0xff56c1ff,0xff56c2ff,0xff33b2ff,0xff55c1ff,0xff32b2ff,0xff31b2ff,0xff54c1ff,0xff53c0ff,0xff30b1ff,0xff65c7ff,0xff30b1ff,0xff51bfff,0xff2eb0ff,0xff2eaeff,
+ 0xff63c6ff,0xff2dadff,0xff50bdff,0xff4fbdff,0xff2cadff,0xff2badff,0xff4ebcff,0xff4ebcff,0xff2aacff,0xff3ab3ff,0xff29abff,0xff4cbbff,0xff28abff,0xff39b2ff,
+ 0xff4bbaff,0xff28a9ff,0xff4ab9ff,0xff26a9ff,0xff49b9ff,0xff25a8ff,0xff25a8ff,0xff24a8ff,0xff36aeff,0xff24a7ff,0xff23a7ff,0xff23a5ff,0xff33adff,0xff22a4ff,
+ 0xff33adff,0xff33adff,0xff21a4ff,0xff45b4ff,0xff31acff,0xff20a2ff,0xff44b4ff,0xff43b3ff,0xff1ea1ff,0xff42b3ff,0xff42b3ff,0xff1da1ff,0xff1da0ff,0xff2ea9ff,
+ 0xff1ca0ff,0xff41b2ff,0xff2ea9ff,0xff1ca0ff,0xff1da1ff,0xff41b2ff,0xff1ea1ff,0xff1ea1ff,0xff43b3ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff51cbff,0xff51cbff,
+ 0xff52ccff,0xff52cbff,0xff53cbff,0xff53ccff,0xff76d7ff,0xff76d7ff,0xff76d7ff,0xff66d2ff,0xff66d3ff,0xff56ceff,0xff56ceff,0xff68d4ff,0xff58cfff,0xff69d4ff,
+ 0xff59d0ff,0xff7bd9ff,0xff7bd9ff,0xff58cfff,0xff68d4ff,0xff57cfff,0xff68d3ff,0xff56ceff,0xff77d7ff,0xff77d7ff,0xff55cdff,0xff76d6ff,0xff54cdff,0xff53ccff,
+ 0xff52ccff,0xff75d6ff,0xff63d0ff,0xff62d0ff,0xff62cfff,0xff73d5ff,0xff72d5ff,0xff4fcaff,0xff4ec9ff,0xff60ceff,0xff4ec8ff,0xff5fcdff,0xff71d3ff,0xff70d2ff,
+ 0xff4cc7ff,0xff6fd2ff,0xff5ccdff,0xff5ccdff,0xff6ed1ff,0xff48c5ff,0xff49c6ff,0xff48c5ff,0xff6cd1ff,0xff5acbff,0xff5acaff,0xff59caff,0xff6ad0ff,0xff58c9ff,
+ 0xff44c3ff,0xff44c3ff,0xff69ceff,0xff43c2ff,0xff68cdff,0xff68cdff,0xff67cdff,0xff54c6ff,0xff40c0ff,0xff40c0ff,0xff52c5ff,0xff52c6ff,0xff65ccff,0xff50c5ff,
+ 0xff50c5ff,0xff50c5ff,0xff3dbeff,0xff3bbeff,0xff63caff,0xff63caff,0xff4ec4ff,0xff4ec3ff,0xff39bcff,0xff39bcff,0xff4cc2ff,0xff4bc2ff,0xff5fc9ff,0xff4ac1ff,
+ 0xff36baff,0xff36b9ff,0xff5ec8ff,0xff35b9ff,0xff47bfff,0xff5cc6ff,0xff47bfff,0xff47bfff,0xff47beff,0xff31b7ff,0xff31b7ff,0xff30b6ff,0xff6eccff,0xff44bdff,
+ 0xff2fb6ff,0xff43bcff,0xff6ccbff,0xff2db5ff,0xff57c4ff,0xff2cb4ff,0xff2cb4ff,0xff56c2ff,0xff3fbbff,0xff55c2ff,0xff2ab3ff,0xff3fbaff,0xff29b2ff,0xff3eb9ff,
+ 0xff27b1ff,0xff52c1ff,0xff52c0ff,0xff26b0ff,0xff25b0ff,0xff3bb8ff,0xff3bb7ff,0xff26b0ff,0xff52c1ff,0xff53c1ff,0xff3eb9ff,0xff3eb9ff,0xff54c1ff,0xff54c1ff,
+ 0xff40bdff,0xff40bfff,0xff40bfff,0xff41bfff,0xff41bfff,0xff41c0ff,0xff42c0ff,0xff42c1ff,0xff43c0ff,0xff43c1ff,0xff44c1ff,0xff54c8ff,0xff44c2ff,0xff45c2ff,
+ 0xff45c2ff,0xff46c2ff,0xff47c3ff,0xff47c3ff,0xff48c3ff,0xff48c5ff,0xff47c5ff,0xff48c3ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff45c2ff,0xff45c2ff,0xff45c1ff,
+ 0xff43c1ff,0xff53c7ff,0xff42c0ff,0xff42c0ff,0xff41c0ff,0xff41c0ff,0xff41bfff,0xff41bfff,0xff40bdff,0xff40bdff,0xff40bdff,0xff3fbdff,0xff3ebcff,0xff3ebcff,
+ 0xff3ebcff,0xff3dbbff,0xff3dbbff,0xff3cbaff,0xff3cbaff,0xff3abaff,0xff3abaff,0xff3abaff,0xff49c0ff,0xff3ab9ff,0xff39b8ff,0xff39b8ff,0xff38b8ff,0xff38b7ff,
+ 0xff38b7ff,0xff37b7ff,0xff36b7ff,0xff35b7ff,0xff35b5ff,0xff35b4ff,0xff35b4ff,0xff34b4ff,0xff44baff,0xff56c1ff,0xff43baff,0xff32b2ff,0xff32b2ff,0xff32b2ff,
+ 0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff2fb0ff,0xff40b8ff,0xff2fb0ff,0xff2eb0ff,0xff2eaeff,0xff3fb7ff,0xff2daeff,0xff2dadff,0xff2caeff,0xff2cadff,0xff2badff,
+ 0xff2bacff,0xff2bacff,0xff2aabff,0xff29acff,0xff29abff,0xff28abff,0xff28abff,0xff28aaff,0xff27aaff,0xff27a9ff,0xff26aaff,0xff38b1ff,0xff26a9ff,0xff25a8ff,
+ 0xff25a7ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a5ff,0xff23a5ff,0xff33adff,0xff21a4ff,0xff20a4ff,0xff32adff,0xff20a3ff,0xff20a2ff,
+ 0xff1fa2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea2ff,0xff1ea1ff,0xff1da0ff,0xff1ca0ff,0xff1ca0ff,0xff1ca0ff,0xff1b9fff,0xff1ba0ff,0xff1ca0ff,0xff1da0ff,0xff1da1ff,
+ 0xff1ea2ff,0xff1fa1ff,0xff1fa2ff,0xff1fa2ff,0xff4fcaff,0xff50caff,0xff62cfff,0xff62d0ff,0xff52cbff,0xff52ccff,0xff52cbff,0xff53ccff,0xff54ccff,0xff54cdff,
+ 0xff55cdff,0xff55cdff,0xff56ceff,0xff56ceff,0xff67d4ff,0xff58cfff,0xff57cfff,0xff58cfff,0xff59cfff,0xff59d0ff,0xff58d0ff,0xff58cfff,0xff57cfff,0xff58cfff,
+ 0xff57ceff,0xff57ceff,0xff56ceff,0xff55cdff,0xff54cdff,0xff54cdff,0xff54ccff,0xff64d1ff,0xff52ccff,0xff52cbff,0xff52cbff,0xff51caff,0xff50cbff,0xff50caff,
+ 0xff50caff,0xff4fcaff,0xff4ec9ff,0xff4ec9ff,0xff4ec8ff,0xff4dc9ff,0xff4dc8ff,0xff4cc8ff,0xff4cc8ff,0xff4bc7ff,0xff4ac7ff,0xff4ac6ff,0xff49c6ff,0xff49c6ff,
+ 0xff5accff,0xff48c5ff,0xff47c5ff,0xff47c4ff,0xff46c5ff,0xff46c4ff,0xff45c4ff,0xff45c3ff,0xff44c3ff,0xff43c2ff,0xff43c3ff,0xff42c2ff,0xff42c2ff,0xff41c1ff,
+ 0xff41c1ff,0xff40c1ff,0xff40c1ff,0xff3fc0ff,0xff3fc0ff,0xff3ebfff,0xff3ebfff,0xff3dbfff,0xff3dbeff,0xff3cbeff,0xff3cbeff,0xff50c4ff,0xff3bbdff,0xff3abdff,
+ 0xff3abcff,0xff39bcff,0xff39bcff,0xff39bcff,0xff38bcff,0xff38bbff,0xff37bbff,0xff36baff,0xff36baff,0xff35baff,0xff35baff,0xff34b9ff,0xff34b9ff,0xff33b8ff,
+ 0xff33b8ff,0xff33b8ff,0xff32b7ff,0xff31b7ff,0xff45beff,0xff31b6ff,0xff30b6ff,0xff2fb6ff,0xff2fb5ff,0xff2fb5ff,0xff2db5ff,0xff2eb4ff,0xff2db4ff,0xff2db4ff,
+ 0xff41bcff,0xff2bb4ff,0xff2ab3ff,0xff2bb3ff,0xff2ab3ff,0xff29b2ff,0xff28b1ff,0xff29b2ff,0xff27b1ff,0xff27b1ff,0xff27b0ff,0xff26b0ff,0xff26afff,0xff25afff,
+ 0xff25b0ff,0xff26b0ff,0xff27b0ff,0xff27b1ff,0xff28b1ff,0xff29b2ff,0xff29b2ff,0xff29b2ff,0xff40bdff,0xff40bdff,0xff60cbff,0xff61ccff,0xff41bfff,0xff41c0ff,
+ 0xff41c0ff,0xff42c0ff,0xff63ccff,0xff43c1ff,0xff44c1ff,0xff44c1ff,0xff44c2ff,0xff56c8ff,0xff56c8ff,0xff66cfff,0xff47c3ff,0xff47c5ff,0xff47c3ff,0xff48c5ff,
+ 0xff48c3ff,0xff47c3ff,0xff47c3ff,0xff46c3ff,0xff45c2ff,0xff46c2ff,0xff45c2ff,0xff44c1ff,0xff43c1ff,0xff43c1ff,0xff43c0ff,0xff63ccff,0xff42bfff,0xff41bfff,
+ 0xff41bfff,0xff61ccff,0xff41bdff,0xff40bdff,0xff40bdff,0xff3fbcff,0xff3ebcff,0xff3ebcff,0xff3dbcff,0xff3dbbff,0xff5dc8ff,0xff3bbaff,0xff3bbaff,0xff3bbaff,
+ 0xff3abaff,0xff5cc7ff,0xff3ab9ff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff38b8ff,0xff38b8ff,0xff5ac5ff,0xff37b7ff,0xff36b5ff,0xff36b5ff,0xff36b5ff,0xff58c3ff,
+ 0xff34b4ff,0xff34b3ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff33b3ff,0xff32b3ff,0xff31b2ff,0xff31b2ff,0xff31b2ff,0xff30b1ff,0xff30b1ff,0xff2fb1ff,0xff2eb0ff,
+ 0xff40b8ff,0xff40b7ff,0xff2eaeff,0xff2eaeff,0xff2dadff,0xff2dadff,0xff2badff,0xff2bacff,0xff2bacff,0xff2aacff,0xff2aabff,0xff29abff,0xff29abff,0xff4cbbff,
+ 0xff28abff,0xff28aaff,0xff4bbaff,0xff4bb9ff,0xff49b9ff,0xff27a9ff,0xff26a9ff,0xff37b0ff,0xff37b0ff,0xff24a8ff,0xff24a8ff,0xff24a5ff,0xff24a7ff,0xff23a7ff,
+ 0xff22a5ff,0xff22a4ff,0xff22a4ff,0xff21a4ff,0xff46b5ff,0xff20a4ff,0xff20a3ff,0xff20a3ff,0xff1fa2ff,0xff1fa2ff,0xff1fa1ff,0xff1ea2ff,0xff1ea1ff,0xff1da1ff,
+ 0xff1da0ff,0xff1ca1ff,0xff1ca0ff,0xff41b1ff,0xff1ba0ff,0xff1ca0ff,0xff2ea9ff,0xff41b2ff,0xff1da1ff,0xff1ea1ff,0xff42b3ff,0xff1fa3ff,0xff50caff,0xff50caff,
+ 0xff62cfff,0xff62d0ff,0xff52cbff,0xff52ccff,0xff53ccff,0xff53ccff,0xff76d7ff,0xff54cdff,0xff55ceff,0xff55cdff,0xff56ceff,0xff79d8ff,0xff57ceff,0xff79d9ff,
+ 0xff7ad9ff,0xff69d5ff,0xff58cfff,0xff7bd9ff,0xff7bd9ff,0xff58cfff,0xff68d4ff,0xff68d3ff,0xff67d3ff,0xff56ceff,0xff77d8ff,0xff77d7ff,0xff55cdff,0xff54ccff,
+ 0xff65d1ff,0xff64d1ff,0xff52ccff,0xff75d6ff,0xff63d0ff,0xff74d5ff,0xff62cfff,0xff73d5ff,0xff61cfff,0xff4fc9ff,0xff61ceff,0xff4ec9ff,0xff60ceff,0xff4dc8ff,
+ 0xff71d3ff,0xff4cc8ff,0xff4bc8ff,0xff6fd2ff,0xff5cccff,0xff6fd2ff,0xff49c7ff,0xff5bccff,0xff5acbff,0xff47c5ff,0xff6dd1ff,0xff5acaff,0xff6bd0ff,0xff59caff,
+ 0xff6ad0ff,0xff58caff,0xff57c9ff,0xff7bd5ff,0xff69ceff,0xff43c2ff,0xff55c7ff,0xff68cdff,0xff54c7ff,0xff54c7ff,0xff53c6ff,0xff66cdff,0xff3fbfff,0xff51c5ff,
+ 0xff3ebfff,0xff51c5ff,0xff3dbfff,0xff3dbeff,0xff63caff,0xff3bbdff,0xff4fc4ff,0xff62caff,0xff4ec4ff,0xff4ec3ff,0xff4dc3ff,0xff61caff,0xff38bcff,0xff4bc2ff,
+ 0xff5fc9ff,0xff4bc1ff,0xff4ac1ff,0xff72cfff,0xff5ec7ff,0xff34b9ff,0xff5dc7ff,0xff34b8ff,0xff47bfff,0xff32b7ff,0xff32b7ff,0xff5ac5ff,0xff31b7ff,0xff30b7ff,
+ 0xff30b6ff,0xff30b6ff,0xff2fb5ff,0xff2eb5ff,0xff2db4ff,0xff2db5ff,0xff2cb4ff,0xff42bcff,0xff40bcff,0xff41bbff,0xff3fbbff,0xff55c2ff,0xff2ab3ff,0xff3fbaff,
+ 0xff54c1ff,0xff3eb9ff,0xff28b1ff,0xff52c1ff,0xff52c0ff,0xff26b0ff,0xff51c0ff,0xff67c8ff,0xff3cb8ff,0xff26b0ff,0xff26b0ff,0xff52c1ff,0xff28b2ff,0xff28b1ff,
+ 0xff54c1ff,0xff29b2ff,0xff3fbdff,0xff40bdff,0xff40bdff,0xff41bfff,0xff41bfff,0xff62ccff,0xff62ccff,0xff52c6ff,0xff63ccff,0xff43c1ff,0xff43c1ff,0xff44c1ff,
+ 0xff44c1ff,0xff65ceff,0xff46c3ff,0xff76d4ff,0xff46c3ff,0xff67cfff,0xff68cfff,0xff48c5ff,0xff48c3ff,0xff68cfff,0xff67cfff,0xff66cfff,0xff66cfff,0xff66ceff,
+ 0xff44c2ff,0xff44c1ff,0xff64cdff,0xff43c1ff,0xff63ccff,0xff43c0ff,0xff62ccff,0xff41c0ff,0xff51c5ff,0xff61cbff,0xff50c5ff,0xff40bfff,0xff5fcbff,0xff3fbdff,
+ 0xff5fc9ff,0xff3ebcff,0xff5ec8ff,0xff3dbbff,0xff5dc8ff,0xff3cbbff,0xff5dc7ff,0xff3bbaff,0xff4bc1ff,0xff5cc6ff,0xff3ab9ff,0xff5bc6ff,0xff39b8ff,0xff5bc6ff,
+ 0xff38b7ff,0xff49bdff,0xff5ac5ff,0xff59c5ff,0xff37b7ff,0xff58c3ff,0xff35b5ff,0xff58c2ff,0xff35b4ff,0xff34b4ff,0xff57c2ff,0xff33b4ff,0xff55c1ff,0xff55c1ff,
+ 0xff42b9ff,0xff31b2ff,0xff54c0ff,0xff54c0ff,0xff30b1ff,0xff53c0ff,0xff2fb0ff,0xff2eb0ff,0xff51bfff,0xff2eb0ff,0xff63c6ff,0xff2dadff,0xff50bdff,0xff4fbdff,
+ 0xff3db5ff,0xff2cadff,0xff4ebdff,0xff4ebcff,0xff2aacff,0xff4dbbff,0xff29abff,0xff4cbaff,0xff28aaff,0xff28aaff,0xff4bbaff,0xff27aaff,0xff26a9ff,0xff27a9ff,
+ 0xff26a8ff,0xff49b9ff,0xff25a7ff,0xff24a8ff,0xff24a7ff,0xff24a7ff,0xff24a5ff,0xff23a5ff,0xff23a4ff,0xff23a4ff,0xff21a5ff,0xff46b5ff,0xff21a3ff,0xff45b4ff,
+ 0xff32acff,0xff20a3ff,0xff44b4ff,0xff57bcff,0xff1fa1ff,0xff42b3ff,0xff41b3ff,0xff1da1ff,0xff1da0ff,0xff41b2ff,0xff1b9fff,0xff41b1ff,0xff1ba0ff,0xff1ca0ff,
+ 0xff1da1ff,0xff41b3ff,0xff1ea1ff,0xff1ea2ff,0xff42b3ff,0xff1fa2ff,0xff50caff,0xff50caff,0xff50caff,0xff51cbff,0xff51cbff,0xff52cbff,0xff52ccff,0xff53ccff,
+ 0xff76d6ff,0xff54ccff,0xff55cdff,0xff56cdff,0xff78d7ff,0xff56ceff,0xff57cfff,0xff7ad9ff,0xff58cfff,0xff7ad9ff,0xff7bd9ff,0xff59d0ff,0xff58d0ff,0xff7ad9ff,
+ 0xff7ad9ff,0xff7ad9ff,0xff79d8ff,0xff78d8ff,0xff77d8ff,0xff77d7ff,0xff66d2ff,0xff54ccff,0xff76d6ff,0xff53ccff,0xff76d6ff,0xff52ccff,0xff51cbff,0xff74d5ff,
+ 0xff74d6ff,0xff73d5ff,0xff84daff,0xff4fc9ff,0xff72d4ff,0xff72d4ff,0xff4dc9ff,0xff4cc8ff,0xff70d3ff,0xff4cc8ff,0xff70d2ff,0xff4bc7ff,0xff4ac6ff,0xff6fd1ff,
+ 0xff4ac6ff,0xff6ed1ff,0xff48c5ff,0xff6dd1ff,0xff47c5ff,0xff47c5ff,0xff6bd0ff,0xff6bd0ff,0xff45c4ff,0xff6ad0ff,0xff44c2ff,0xff6acfff,0xff43c2ff,0xff43c2ff,
+ 0xff69cdff,0xff68ceff,0xff54c7ff,0xff67cdff,0xff40c0ff,0xff3fc0ff,0xff66ccff,0xff66ccff,0xff3ebfff,0xff64ccff,0xff3dbeff,0xff63cbff,0xff3cbdff,0xff3bbeff,
+ 0xff63caff,0xff3abdff,0xff62caff,0xff62caff,0xff39bcff,0xff38bcff,0xff60caff,0xff73cfff,0xff5fc8ff,0xff5fc9ff,0xff36baff,0xff5ec8ff,0xff34b9ff,0xff34b9ff,
+ 0xff5cc7ff,0xff34b9ff,0xff47bfff,0xff32b8ff,0xff5bc5ff,0xff32b7ff,0xff31b7ff,0xff30b7ff,0xff30b6ff,0xff2fb6ff,0xff2fb6ff,0xff2eb5ff,0xff2eb5ff,0xff2db4ff,
+ 0xff2db4ff,0xff57c3ff,0xff2cb4ff,0xff57c3ff,0xff2ab3ff,0xff2ab2ff,0xff54c1ff,0xff54c1ff,0xff29b1ff,0xff53c1ff,0xff53c1ff,0xff52c1ff,0xff52c1ff,0xff3cb9ff,
+ 0xff26b0ff,0xff51bfff,0xff26afff,0xff26b0ff,0xff26b0ff,0xff52c1ff,0xff27b1ff,0xff28b2ff,0xff54c1ff,0xff29b2ff
+};
+
+static const QRgb packageIcon_data[] = {
+ 0xffffff,0xd06e6e6e,0xf68e8f8f,0xf2898a8b,0xf288898b,0xf288898b,0xf288898a,0xf288888a,0xf287888a,0xf288898a,0xf288898a,0xf288888a,0xf288888a,0xf287888a,
+ 0xf2878889,0xf2878889,0xf2878889,0xf2868789,0xf2868789,0xf2868788,0xf2868788,0xf2868688,0xf2858688,0xf2858688,0xf2858687,0xf2858687,0xf2848687,0xf2848587,
+ 0xf3858688,0xf2838384,0xc56b6b6b,0xffffff,0xffffff,0xd76f6f6f,0xfff7faff,0xfff0f5ff,0xffedf3ff,0xffeef4ff,0xffebf2fe,0xffeaf1fe,0xffebf2fe,0xffdce8fb,
+ 0xffdbe7fb,0xffdae6fa,0xffd9e6fa,0xffd7e4f9,0xffd6e4f9,0xffd4e2f8,0xffd2e1f7,0xffd1e1f7,0xffd0dff6,0xffcedff6,0xffccddf5,0xffcbddf5,0xffcadcf5,0xffc8dbf4,
+ 0xffc7daf3,0xffc5d9f3,0xffc4d8f2,0xffc2d6f1,0xffc4d8f3,0xffeaeff4,0xcf686867,0xffffff,0xffffff,0xd76f6f6f,0xfff2f7ff,0xffbcd1fb,0xffbcd1f8,0xffc5d8f9,
+ 0xffbed3f7,0xffc4d6f7,0xffacc6f2,0xff729ee8,0xff6f9de6,0xff6b9ae5,0xff6597e4,0xff5f93e2,0xff5a90df,0xff548add,0xff4e86da,0xff4983d9,0xff427fd7,0xff3d7cd5,
+ 0xff3778d2,0xff3274d1,0xff2d72d0,0xff286ecd,0xff2269cb,0xff1c66c8,0xff1662c6,0xff0d5cc3,0xff1663c9,0xffe7ecf2,0xcf686867,0xffffff,0xffffff,0xd76f6f6f,
+ 0xfff3f7ff,0xffabc6f9,0xffa4c1f5,0xffbad0f8,0xffbfd4f7,0xffc5d7f7,0xffa3c0f2,0xff7aa4ea,0xff73a0e7,0xff6f9de6,0xff6a9ae5,0xff6496e3,0xff5f92e0,0xff598ede,
+ 0xff538adb,0xff4e87da,0xff4883d8,0xff4380d6,0xff3d7cd3,0xff3878d2,0xff3376d1,0xff2d72ce,0xff286dcc,0xff236ac9,0xff1d67c8,0xff1561c5,0xff1d68cb,0xffe8edf2,
+ 0xce696868,0xffffff,0xffffff,0xd76f6f6e,0xfffeffff,0xffe7efff,0xffe5edfd,0xffe4edfc,0xffe2ebfb,0xffe0eafb,0xffe2ebfb,0xffe1ebfa,0xffe0eafa,0xffdfe9fa,
+ 0xffdee9f9,0xffdce7f8,0xffdae5f7,0xffd9e6fa,0xffd8e6fb,0xffd5e2f4,0xffd3e0f2,0xffd2dff1,0xffcfdef1,0xffcedcef,0xffccdbef,0xffcadaee,0xffc9d8ed,0xffc6d7ec,
+ 0xffc5d5ea,0xffc2d3e9,0xffc8d9ee,0xfff2f3f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffdf3e4,0xfffae7ce,0xffffffff,0xfffffffc,0xfffffefa,0xfffffdfa,0xfffffcf9,
+ 0xfffefcf8,0xfffefbf8,0xfffdfaf7,0xfffcf9f6,0xfffbf9f5,0xfffbf9f5,0xfffffcf8,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffcf8f2,0xfff0d3a9,0xffebc37e,0xffe8c179,0xffe9cfab,
+ 0xfffbfeff,0xfff9fafa,0xfff7f7f7,0xfff7f7f7,0xfff6f6f6,0xfff6f6f6,0xfff5f5f5,0xfff3f3f3,0xfff3f3f3,0xfff2f2f2,0xfff3f3f3,0xfff5f5f5,0xce686868,0xffffff,
+ 0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffdfcfa,0xfff4dcbb,0xffecc480,
+ 0xfff4dea1,0xfffbf4cb,0xfffdf9d6,0xffe9cb8d,0xffe3c69e,0xfff9fbfc,0xfff8f9fa,0xfff6f6f6,0xfff6f6f6,0xfff5f5f5,0xfff4f4f4,0xfff4f4f4,0xfff3f3f3,0xfff1f1f1,
+ 0xfff1f1f1,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffefcf9,
+ 0xfff4dbb8,0xffecc482,0xfff2d797,0xfffdf9d2,0xffffffe8,0xfff8edc2,0xfffcf6cf,0xffffffe3,0xffe8ce95,0xffdbbb91,0xfff6f7f7,0xfff8fafc,0xfff5f5f5,0xfff5f5f5,
+ 0xfff4f4f4,0xfff3f3f3,0xfff2f2f2,0xffeeeeee,0xfff1f1f1,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xfffffefe,0xfff6e4c8,0xffedc784,0xfff4d794,0xfffef6c7,0xffffffdb,0xfffffdd5,0xfffffed8,0xfff3e0ab,0xfffbf1c4,0xfffffdd5,0xffffffd8,0xffe9d196,
+ 0xffd3b184,0xfff0ece9,0xfff8fbfd,0xfff4f4f4,0xfff3f3f3,0xfff3f3f3,0xfff1f1f1,0xffececec,0xfff2f2f2,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffcf5eb,0xffedc687,0xffefc678,0xfff9e3a5,0xfffdecb6,0xfffbe6ab,0xfff9e1a3,0xfff9e0a3,0xfff8de9e,0xffecc984,
+ 0xfff8e1a5,0xfffff1bc,0xfffff5c2,0xfffffcca,0xffedd295,0xffc99f68,0xffe6dcd2,0xfff8fbff,0xfff3f3f3,0xfff2f2f2,0xffeeeeee,0xffececec,0xfff3f3f3,0xfff5f5f5,
+ 0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff4ddba,0xfff2d087,0xfffff0b9,0xffffe4a4,0xfffee5a7,0xfffde5a6,
+ 0xfffde4a5,0xfffde4a4,0xfffee6a8,0xfff6d288,0xffe1a444,0xffdca855,0xffdeb46e,0xffe6c586,0xfff6dca2,0xfff0d594,0xffc7a066,0xffded2c6,0xfff5f7f9,0xfff0f0f0,
+ 0xffededed,0xffededed,0xfff3f3f3,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff4debc,0xfff5d891,
+ 0xfffff7c3,0xffffe6a6,0xffffdd94,0xffffde97,0xffffde98,0xffffde98,0xffffe29c,0xfff2c573,0xffefc16e,0xffebbf70,0xffe1b368,0xffdaad66,0xffd6ac68,0xffdcb877,
+ 0xffe3c07d,0xffbe935a,0xffe6e1dc,0xfff0f1f3,0xffeeeeee,0xffeeeeee,0xfff4f4f4,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xfff4debd,0xfff4d389,0xfffff1b4,0xffffeeb1,0xffffe199,0xffffd481,0xffffd583,0xffffd585,0xfffed483,0xffefbe67,0xfffdd686,0xffffdb8b,
+ 0xffffda89,0xffffda89,0xffffda8a,0xffffd785,0xffffd87e,0xffd0a258,0xffdcd3cd,0xfff1f3f4,0xffefefef,0xffefefef,0xfff5f5f5,0xfff5f5f5,0xce686868,0xffffff,
+ 0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff3ddbd,0xfff3d084,0xffffecaa,0xffffe8a3,0xffffe9a6,0xffffdf95,0xffffcd72,0xffffcd6f,
+ 0xfffbc86d,0xfff0bb61,0xffffce72,0xffffcc71,0xffffcf75,0xffffd076,0xffffce70,0xffffcd6e,0xffffd778,0xffcfa25c,0xffddd4cf,0xfff2f4f5,0xfff0f0f0,0xfff0f0f0,
+ 0xfff6f6f6,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff2dcbe,0xfff1cd7e,0xffffe9a1,0xffffe49a,
+ 0xffffe397,0xffffe49a,0xffffdc8e,0xffffc764,0xfff8ba54,0xfff6ba57,0xffffc763,0xffffc968,0xffffc866,0xffffc663,0xffffca69,0xffffcf73,0xffffdb7f,0xffcda25e,
+ 0xffdcd4cf,0xfff4f5f6,0xfff1f1f1,0xfff1f1f1,0xfff7f7f7,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xfff0dbbd,0xfff0ca78,0xffffe596,0xffffe090,0xffffe08e,0xffffde8b,0xffffe08e,0xffffda83,0xfff7be5b,0xfffcbf58,0xffffc35b,0xffffc158,0xffffc35d,0xffffca67,
+ 0xffffcf71,0xffffd279,0xffffde84,0xffcba261,0xffdcd4cf,0xfff5f6f7,0xfff2f2f2,0xfff2f2f2,0xfff8f8f8,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,
+ 0xffffffff,0xfff7f7f7,0xfffbfbfb,0xffffffff,0xffeedabe,0xffeec773,0xffffe18e,0xffffdd88,0xffffdc84,0xffffdb83,0xffffda80,0xffffdb82,0xfffed883,0xffffbb4e,
+ 0xffffbd4f,0xffffc25a,0xffffc864,0xffffcd6d,0xffffd176,0xffffd57e,0xffffe18a,0xffc9a264,0xffdcd4cf,0xfff5f6f7,0xfff2f2f2,0xfff2f2f2,0xfff8f8f8,0xfff5f5f5,
+ 0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xfff4f4f4,0xfff3f3f3,0xfff6f9fe,0xffe8d3b9,0xffeec570,0xffffde84,0xffffd97f,0xffffd97c,0xffffd87a,
+ 0xffffd677,0xffffd777,0xffffd172,0xffffbb4e,0xffffc056,0xffffc660,0xffffcb6a,0xffffd072,0xffffd47b,0xffffd883,0xffffe58f,0xffc7a265,0xffdcd4d0,0xfff7f8fa,
+ 0xfff4f4f4,0xfff4f4f4,0xfffafafa,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xfff6f6f6,0xfff4f4f4,0xfff6f9fd,0xffe5d3bb,0xffe5b75f,
+ 0xffffdc7b,0xffffd675,0xffffd572,0xffffd470,0xffffd36e,0xffffd36d,0xffffd06f,0xffffbe54,0xffffc35c,0xffffc966,0xffffce6f,0xffffd277,0xffffd780,0xffffdc88,
+ 0xffffe795,0xffc5a166,0xffdcd4d0,0xfff8f9fb,0xfff5f5f5,0xfff5f5f5,0xfffbfbfb,0xfff5f5f5,0xce686868,0xffffff,0xffffff,0xd76e6e6e,0xffffffff,0xfff6f6f6,
+ 0xfff5f5f5,0xfff5f6f7,0xfff4f3f2,0xffd9b88a,0xffe6b75c,0xffffd66e,0xffffd169,0xffffd067,0xffffcf64,0xffffcf63,0xffffcf6c,0xffffc25a,0xffffc661,0xffffcc6b,
+ 0xffffd174,0xffffd57d,0xffffda86,0xffffe08f,0xfffff09b,0xffbf9b60,0xffdad1cf,0xfff9fbfc,0xfff6f6f6,0xfff6f6f6,0xfffcfcfc,0xfff6f6f6,0xce686868,0xffffff,
+ 0xffffff,0xd76d6d6d,0xffffffff,0xfff7f7f7,0xfff6f6f6,0xfff6f6f6,0xfff7f8f9,0xfff7f8fb,0xffd5b894,0xffdfae55,0xffffd162,0xffffcd5e,0xffffcb5c,0xffffcb5a,
+ 0xffffce69,0xffffc560,0xffffc966,0xffffce70,0xffffd379,0xffffd983,0xffffe490,0xfffadc8b,0xffcdaa6a,0xffac8d6f,0xffebe8e7,0xfff8f9f9,0xfff6f6f6,0xfff6f6f6,
+ 0xfffcfcfc,0xfff6f6f6,0xcf676767,0xffffff,0xffffff,0xd76d6d6d,0xffffffff,0xfff8f8f8,0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xfff8f9fa,0xfff9fbfe,0xffd5bda1,
+ 0xffd7a752,0xfffecc59,0xffffc952,0xffffc64f,0xffffce66,0xffffc967,0xffffcc6c,0xffffd276,0xffffde83,0xfff8d680,0xffc9a564,0xff7f766c,0xff827d7b,0xff8d8d8e,
+ 0xff8f8f8f,0xff8d8d8d,0xff8d8d8d,0xff8d8d8d,0xff909090,0xff878787,0xce666666,0xffffff,0xffffff,0xd76d6d6d,0xffffffff,0xfff9f9f9,0xfff8f8f8,0xfff8f8f8,
+ 0xfff8f8f8,0xfff8f8f8,0xfff8f9f9,0xfffafeff,0xffd5c1ac,0xffc39752,0xfff6c04d,0xffffc544,0xffffcc63,0xffffcc6d,0xffffd575,0xfffcd478,0xffd5ac62,0xffb3916b,
+ 0xffcbbcb4,0xff8c8c8d,0xfff4f6f8,0xfffafafa,0xfff7f7f7,0xfff7f7f7,0xfff7f7f7,0xffffffff,0xffe3e3e3,0xe5676767,0x1d000000,0xffffff,0xffffff,0xd76d6d6d,
+ 0xffffffff,0xfff9f9f9,0xfff8f8f8,0xfff8f8f8,0xfff8f8f8,0xfff8f8f8,0xfff8f8f8,0xfff9f9fa,0xfffcffff,0xffe3d8d2,0xffbf9861,0xfff0b841,0xffffd362,0xffffd172,
+ 0xffdfb15e,0xffb79161,0xffc6b4a7,0xfff2f1f2,0xfffeffff,0xff8e8f8f,0xfff2f2f2,0xfffbfbfb,0xfffcfcfc,0xfffdfdfd,0xffffffff,0xffebebeb,0xe5686868,0x1e000000,
+ 0x0,0xffffff,0xffffff,0xd76d6d6d,0xffffffff,0xfffafafa,0xfff9f9f9,0xfff9f9f9,0xfff9f9f9,0xfff9f9f9,0xfff9f9f9,0xfff9f9f9,0xfff9f9fa,0xfffeffff,
+ 0xffe9e3e1,0xffbc9868,0xffd7a750,0xffc0965f,0xffc2ab99,0xffece9e9,0xffffffff,0xfffbfcfd,0xfff9f9f9,0xff8d8d8d,0xffededed,0xfff4f4f4,0xfff4f4f4,0xffffffff,
+ 0xffe7e7e7,0xe5686868,0x1f000000,0x0,0x0,0xffffff,0xffffff,0xd76d6d6d,0xffffffff,0xfffbfbfb,0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,
+ 0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xffffffff,0xffede8e6,0xffc5b0a0,0xffe7e1df,0xffffffff,0xfffcfdfe,0xfffafafa,0xfffbfbfb,0xfffafafa,0xff8d8d8d,
+ 0xffe9e9e9,0xffefefef,0xfff9f9f9,0xffe1e1e1,0xe5686868,0x1f000000,0x0,0x0,0x0,0xffffff,0xffffff,0xd76d6d6d,0xffffffff,0xfffbfbfb,
+ 0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xfffafafa,0xfffcfdfd,0xffffffff,0xfffdfefe,0xfffafafa,0xfffafafa,
+ 0xfffafafa,0xfffbfbfb,0xfffafafa,0xff8d8d8d,0xffe5e5e5,0xfff2f2f2,0xffdbdbdb,0xe4686868,0x1e000000,0x0,0x0,0x0,0x0,0xffffff,
+ 0xffffff,0xd76d6d6d,0xffffffff,0xfffcfcfc,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,
+ 0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffbfbfb,0xfffcfcfc,0xfffbfbfb,0xff8d8d8d,0xffeaeaea,0xffd7d7d7,0xe5676767,0x1e000000,0x0,0x0,
+ 0x0,0x0,0x0,0xffffff,0xffffff,0xd76d6d6d,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,
+ 0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff919191,0xffd1d1d1,0xe5676767,
+ 0x1f000000,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff,0xffffff,0xd56b6b6b,0xff8d8d8d,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,
+ 0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,0xfc8a8a8a,
+ 0xfc8a8a8a,0xfd818181,0xe5676767,0x1f000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xffffff,0xffffff,0x15000000,
+ 0x42030303,0x45000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,
+ 0x44000000,0x44000000,0x44000000,0x44000000,0x44000000,0x44030303,0x1d000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+ 0x0,0xffffff
+};
+#include <qcstring.h>
+
+
+const QImage& qembed_findImage( const QString& name );
+#endif
diff --git a/src/arkollon/headerlistitem.cpp b/src/arkollon/headerlistitem.cpp
new file mode 100644
index 0000000..2d850ac
--- /dev/null
+++ b/src/arkollon/headerlistitem.cpp
@@ -0,0 +1,126 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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 "headerlistitem.h"
+
+#include <qfontmetrics.h>
+#include <qpainter.h>
+#include <qapplication.h>
+
+#include "uninstallwizard.h"
+#include "wizard.h"
+
+HeaderListItem::HeaderListItem(QListView* parent)
+ : QListViewItem(parent)
+{
+}
+
+int HeaderListItem::compare(QListViewItem* i, int , bool ) const
+{
+ switch (i->rtti())
+ {
+ case 1001: // Component
+ {
+ ComponentListItem* item = (ComponentListItem*) i;
+ if (section > item->section)
+ return 1;
+ return -1;
+ }
+
+ case 1003: // App
+ {
+ AppListItem* item = (AppListItem*) i;
+ if (section > item->section)
+ return 1;
+ return -1;
+ }
+
+ case 1002: // Header
+ {
+ HeaderListItem* item = (HeaderListItem*) i;
+ if (section > item->section)
+ return 1;
+ if (section < item->section)
+ return -1;
+ return 0;
+ }
+ }
+ return 0;
+}
+
+void HeaderListItem::paintCell(QPainter* p, const QColorGroup& cg, int , int width, int )
+{
+ p->fillRect(0, 0, width, height(), cg.base());
+
+ QFont boldFont = p->font();
+ boldFont.setBold(true);
+ p->setFont(boldFont);
+ p->drawText(listView()->itemMargin(), listView()->itemMargin(), width, QFontMetrics(boldFont).height(), Qt::AlignLeft, text(0));
+
+ int textWidth = QFontMetrics(boldFont).width(text(0));
+ p->fillRect(0, height() - 4 - listView()->itemMargin(), textWidth-10, 4, cg.highlight());
+
+ QColor ca = cg.highlight();
+ QColor cb = cg.base();
+ // Taken from KPixmapEffect::gradient
+ int rDiff, gDiff, bDiff;
+ int rca, gca, bca /*, rcb, gcb, bcb*/;
+
+// register int x, y;
+
+ rDiff = (/*rcb = */ cb.red()) - (rca = ca.red());
+ gDiff = (/*gcb = */ cb.green()) - (gca = ca.green());
+ bDiff = (/*bcb = */ cb.blue()) - (bca = ca.blue());
+
+ register int rl = rca << 16;
+ register int gl = gca << 16;
+ register int bl = bca << 16;
+
+ int rcdelta = ((1<<16) / 20) * rDiff;
+ int gcdelta = ((1<<16) / 20) * gDiff;
+ int bcdelta = ((1<<16) / 20) * bDiff;
+ for( int x = textWidth-10; x < textWidth+10; x++)
+ {
+ rl += rcdelta;
+ gl += gcdelta;
+ bl += bcdelta;
+
+ p->setPen(QColor(rl>>16, gl>>16, bl>>16));
+ p->drawLine(x, height() - 4 - listView()->itemMargin(), x, height() - listView()->itemMargin() - 1);
+ }
+}
+
+void HeaderListItem::paintFocus(QPainter* , const QColorGroup& , const QRect& )
+{
+}
+
+int HeaderListItem::width(const QFontMetrics& , const QListView* lv, int ) const
+{
+ QFont boldFont = qApp->font();
+ boldFont.setBold(true);
+ QFontMetrics metrics(boldFont);
+ return metrics.width(text(0)) + lv->itemMargin() + 10;
+}
+
+void HeaderListItem::setup()
+{
+ setHeight(qApp->fontMetrics().height() + listView()->itemMargin()*3 + 4);
+}
+
+
diff --git a/src/arkollon/headerlistitem.h b/src/arkollon/headerlistitem.h
new file mode 100644
index 0000000..5872220
--- /dev/null
+++ b/src/arkollon/headerlistitem.h
@@ -0,0 +1,39 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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. *
+ ***************************************************************************/
+#ifndef HEADERLISTITEM_H
+#define HEADERLISTITEM_H
+
+#include <qlistview.h>
+
+class HeaderListItem : public QListViewItem
+{
+public:
+ HeaderListItem(QListView* parent);
+ int compare(QListViewItem* i, int col, bool ascending) const;
+ void paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align);
+ void paintFocus(QPainter* p, const QColorGroup& cg, const QRect& r);
+ void setup();
+ int width(const QFontMetrics& fm, const QListView* lv, int c) const;
+ int rtti() const { return 1002; }
+
+ int section;
+};
+
+#endif
diff --git a/src/arkollon/logdialog.ui b/src/arkollon/logdialog.ui
new file mode 100644
index 0000000..9e2b24e
--- /dev/null
+++ b/src/arkollon/logdialog.ui
@@ -0,0 +1,91 @@
+<!DOCTYPE UI><UI version="3.1" stdsetdef="1">
+<class>LogDialog</class>
+<widget class="QDialog">
+ <property name="name">
+ <cstring>LogDialog</cstring>
+ </property>
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>572</width>
+ <height>350</height>
+ </rect>
+ </property>
+ <property name="caption">
+ <string>Installation log</string>
+ </property>
+ <property name="sizeGripEnabled">
+ <bool>true</bool>
+ </property>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QTextEdit">
+ <property name="name">
+ <cstring>logBox</cstring>
+ </property>
+ <property name="textFormat">
+ <enum>PlainText</enum>
+ </property>
+ <property name="readOnly">
+ <bool>true</bool>
+ </property>
+ </widget>
+ <widget class="QLayoutWidget">
+ <property name="name">
+ <cstring>layout8</cstring>
+ </property>
+ <hbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <spacer>
+ <property name="name">
+ <cstring>Horizontal Spacing2</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>210</width>
+ <height>20</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QPushButton">
+ <property name="name">
+ <cstring>buttonOk</cstring>
+ </property>
+ <property name="text">
+ <string>Close</string>
+ </property>
+ <property name="accel">
+ <string></string>
+ </property>
+ <property name="autoDefault">
+ <bool>true</bool>
+ </property>
+ <property name="default">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </hbox>
+ </widget>
+ </vbox>
+</widget>
+<connections>
+ <connection>
+ <sender>buttonOk</sender>
+ <signal>clicked()</signal>
+ <receiver>LogDialog</receiver>
+ <slot>accept()</slot>
+ </connection>
+</connections>
+<layoutdefaults spacing="6" margin="11"/>
+</UI>
diff --git a/src/arkollon/rcparser.cpp b/src/arkollon/rcparser.cpp
new file mode 100644
index 0000000..dc9442f
--- /dev/null
+++ b/src/arkollon/rcparser.cpp
@@ -0,0 +1,146 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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 "rcparser.h"
+
+#include <qregexp.h>
+#include <qfile.h>
+#include <qtextstream.h>
+
+RcParser::RcParser()
+{
+}
+
+
+RcParser::~RcParser()
+{
+}
+
+void RcParser::addSearchDir(QString dir)
+{
+ dirs.append(dir);
+}
+
+bool RcParser::openFile(QString name)
+{
+ // Check if it exists
+ fileName = "";
+ for ( QStringList::Iterator it = dirs.begin(); it != dirs.end(); ++it )
+ {
+ if (QFile::exists((*it) + "/" + name))
+ {
+ fileName = (*it) + "/" + name;
+ break;
+ }
+ }
+
+ if (fileName.isEmpty())
+ return false;
+
+ // Clear the current data
+ sections.clear();
+
+ // Read the file's contents
+ QFile file(fileName);
+ file.open(IO_ReadOnly);
+ QTextStream stream(&file);
+
+ QRegExp sectionRegExp("^\\[([^\\]]*)\\]$");
+ QRegExp pairRegExp("^([^=\\s]*)([=\\s]*)(.*)$");
+ currentSection = "RcParserDefaultSection";
+
+ while (!stream.atEnd())
+ {
+ QString line = stream.readLine();
+ if (line.left(1) == "#") // Comment
+ continue;
+
+ line = line.stripWhiteSpace();
+
+ if (sectionRegExp.search(line) != -1)
+ {
+ currentSection = sectionRegExp.cap(1);
+ //printf("Found section \"%s\"\n", currentSection.latin1());
+ continue;
+ }
+ if (pairRegExp.search(line) != -1)
+ {
+ QString key = pairRegExp.cap(1);
+ QString value = pairRegExp.cap(3);
+ sections[currentSection][key] = value;
+ //printf("Found pair \"%s\" = \"%s\"\n", key.latin1(), value.latin1());
+ continue;
+ }
+
+ // Parse error, ignore the line
+ }
+
+ currentSection = "RcParserDefaultSection";
+ return true;
+}
+
+void RcParser::setSection(QString section)
+{
+ currentSection = section;
+}
+
+QStringList RcParser::sectionList()
+{
+ return sections.keys();
+}
+
+QString RcParser::readString(QString key, QString def)
+{
+ QString ret = sections[currentSection][key];
+ if (ret.isEmpty())
+ return def;
+ return ret;
+}
+
+int RcParser::readInt(QString key, int def)
+{
+ bool ok;
+ int ret = sections[currentSection][key].toInt(&ok);
+ if (!ok)
+ return def;
+ return ret;
+}
+
+bool RcParser::readBool(QString key, bool def)
+{
+ bool ret = def;
+ if (sections[currentSection][key].lower() == "true")
+ ret = true;
+ if (sections[currentSection][key].lower() == "false")
+ ret = false;
+ if (sections[currentSection][key] == "1")
+ ret = true;
+ if (sections[currentSection][key] == "0")
+ ret = false;
+ return ret;
+}
+
+QStringList RcParser::readList(QString key)
+{
+ return QStringList::split(",", sections[currentSection][key]);
+}
+
+
+
+
diff --git a/src/arkollon/rcparser.h b/src/arkollon/rcparser.h
new file mode 100644
index 0000000..8739b0e
--- /dev/null
+++ b/src/arkollon/rcparser.h
@@ -0,0 +1,50 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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. *
+ ***************************************************************************/
+#ifndef RCPARSER_H
+#define RCPARSER_H
+
+#include <qstringlist.h>
+#include <qmap.h>
+
+class RcParser
+{
+public:
+ RcParser();
+ ~RcParser();
+
+ void addSearchDir(QString dir);
+ bool openFile(QString name);
+
+ QStringList sectionList();
+ void setSection(QString section);
+
+ QString readString(QString key, QString def=QString::null);
+ int readInt(QString key, int def=0);
+ bool readBool(QString key, bool def=false);
+ QStringList readList(QString key);
+
+private:
+ QStringList dirs;
+ QString fileName;
+ QString currentSection;
+ QMap< QString, QMap< QString, QString> > sections;
+};
+
+#endif
diff --git a/src/arkollon/torkarkollon.1 b/src/arkollon/torkarkollon.1
new file mode 100644
index 0000000..b5e998c
--- /dev/null
+++ b/src/arkollon/torkarkollon.1
@@ -0,0 +1,18 @@
+.TH "TORKARKOLLON" "1"
+.SH "NAME"
+torkarkollon \- an installation helper for TorK.
+.SH "SYNOPSIS"
+\fBtorkarkollon\fR
+.SH "DESCRIPTION"
+This manual page documents briefly the
+\fBtorkarkollon\fR commandline
+parameters.
+\fBtorkarkollon\fR is a compilation and installation helper for TorK.
+It is a modified copy of Arkollon, distributed by the Apollon project.
+.TP
+.SH "AUTHOR"
+This manual page was written by Patrick Matth\[:a]i <patrick.matthaei@web.de>
+for webissues.
+Permission is granted to copy, distribute and/or modify this document
+under the terms of the GNU General Public License, Version 2 any
+later version published by the Free Software Foundation.
diff --git a/src/arkollon/torkarkollon.cpp b/src/arkollon/torkarkollon.cpp
new file mode 100644
index 0000000..8d24bd5
--- /dev/null
+++ b/src/arkollon/torkarkollon.cpp
@@ -0,0 +1,74 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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. *
+ ***************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/types.h>
+
+#include <qapplication.h>
+#include "wizard.h"
+#include "uninstallwizard.h"
+
+
+int main(int argc, char *argv[])
+{
+ QApplication app(argc, argv);
+
+ // Check if we're root
+ if (getuid() != 0)
+ {
+ QString command = "kdesu -t -i tork -n -c \"";
+ for (int i=0 ; i<app.argc() ; i++)
+ {
+ if (QString(app.argv()[i]).contains(" "))
+ command += "\\\"" + QString(app.argv()[i]) + "\\\" ";
+ else
+ command += QString(app.argv()[i]) + " ";
+ }
+ command += "\"";
+ return system(command.latin1());
+ }
+
+ WizardBase* wizard = NULL;
+
+ for ( int i = 1; i < app.argc(); i++ )
+ {
+ if (QString(app.argv()[i]) == "--help")
+ {
+ printf("Arkollon is a utility to aid installation and removal of packages from source.\n");
+ printf("Usage: arkollon DIRECTORY Installs a source package from DIRECTORY\n");
+ printf(" arkollon --uninstall Starts the uninstaller\n");
+ return 0;
+ }
+ if (QString(app.argv()[i]) == "--uninstall")
+ wizard = new UninstallWizard(NULL);
+ }
+
+ if (!wizard)
+ wizard = new Wizard(NULL);
+ app.setMainWidget(wizard);
+
+ return app.exec();
+}
diff --git a/src/arkollon/uninstallwizard.cpp b/src/arkollon/uninstallwizard.cpp
new file mode 100644
index 0000000..ac8f2f8
--- /dev/null
+++ b/src/arkollon/uninstallwizard.cpp
@@ -0,0 +1,322 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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 "uninstallwizard.h"
+#include "headerlistitem.h"
+#include "data.h"
+
+#include <qregexp.h>
+#include <qwidgetstack.h>
+#include <qfile.h>
+#include <qtextstream.h>
+#include <qheader.h>
+#include <qlistbox.h>
+#include <qmessagebox.h>
+#include <qpushbutton.h>
+#include <qlineedit.h>
+#include <qtextedit.h>
+#include <qlabel.h>
+
+AppListItem::AppListItem(QString nN, QString n, QListView* parent)
+ : QCheckListItem(parent, "", QCheckListItem::CheckBox)
+{
+ niceName = nN;
+ name = n;
+ section = 2;
+
+ setText(0, niceName);
+}
+
+int AppListItem::compare(QListViewItem* i, int col, bool ascending) const
+{
+ switch (i->rtti())
+ {
+ case 1003: // App
+ {
+ AppListItem* item = (AppListItem*) i;
+ if (section < item->section)
+ return -1;
+ if (section > item->section)
+ return 1;
+ return QListViewItem::compare(i, col, ascending);
+ }
+ break;
+
+ case 1002: // Header
+ {
+ HeaderListItem* item = (HeaderListItem*) i;
+ if (section < item->section)
+ return -1;
+ return 1;
+ }
+ break;
+ }
+ return 0;
+}
+
+
+UninstallWizard::UninstallWizard(QWidget* parent, const char* name, bool modal, WFlags fl)
+: WizardBase(parent,name, modal,fl)
+{
+ mainStack->raiseWidget(1);
+ setCaption("Uninstall Software");
+ titleLabel->setText("<b>Uninstall Software</b>");
+ componentInfo->setMaximumSize(32767,70);
+
+ logDialog = new LogDialog(this);
+ logDialog->hide();
+ appList->header()->hide();
+
+ globalHeader = NULL;
+
+ icon.convertFromImage(qembed_findImage("misc"));
+
+ externalProcess = new QProcess(this);
+ connect(externalProcess, SIGNAL(processExited()), SLOT(processExited()));
+ connect(externalProcess, SIGNAL(readyReadStdout()), SLOT(readyReadStdout()));
+ connect(externalProcess, SIGNAL(readyReadStderr()), SLOT(readyReadStderr()));
+
+ QFile uninstallScript("/tmp/arkollon-uninstall.sh");
+ if (uninstallScript.exists())
+ uninstallScript.remove();
+ uninstallScript.open(IO_WriteOnly);
+ QDataStream stream(&uninstallScript);
+ stream.writeRawBytes((const char*)uninstaller_sh_data, uninstaller_sh_len);
+ uninstallScript.close();
+
+ currentStage = ListingPackages;
+ externalProcess->addArgument("/bin/sh");
+ externalProcess->addArgument("/tmp/arkollon-uninstall.sh");
+ externalProcess->addArgument("--list");
+ externalProcess->start();
+}
+
+UninstallWizard::~UninstallWizard()
+{
+ QFile uninstallScript("/tmp/arkollon-uninstall.sh");
+ if (uninstallScript.exists())
+ uninstallScript.remove();
+}
+
+void UninstallWizard::logPressed()
+{
+ logDialog->show();
+}
+
+void UninstallWizard::cancelPressed()
+{
+ reject();
+}
+
+void UninstallWizard::previousPressed()
+{
+ int currentId = uninstallStack->id(uninstallStack->visibleWidget());
+ if (currentId == 0)
+ return;
+
+ uninstallStack->raiseWidget(--currentId);
+
+ if (currentId == 0)
+ previousButton->setEnabled(false);
+ nextButton->setEnabled(true);
+}
+
+void UninstallWizard::nextPressed()
+{
+ int currentId = uninstallStack->id(uninstallStack->visibleWidget());
+ if (currentId == 2)
+ {
+ accept();
+ return;
+ }
+
+ if (currentId == 0)
+ {
+ bool checked = false;
+ QStringList argList;
+ argList.append("/bin/sh");
+ argList.append("/tmp/arkollon-uninstall.sh");
+ for ( QListViewItem * myChild = appList->firstChild() ; myChild != NULL ; myChild = myChild->nextSibling())
+ {
+ if (myChild->rtti() != 1003)
+ continue;
+ AppListItem* app = (AppListItem*) myChild;
+ if (!app->isOn())
+ continue;
+ argList.append("--files");
+ argList.append(app->name);
+ checked = true;
+ }
+ if (!checked)
+ {
+ QMessageBox::warning(this, "Error", "You need to select at least one package to remove", QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ return;
+ }
+ fileList->clear();
+ currentStage = ListingFiles;
+ externalProcess->setArguments(argList);
+ externalProcess->start();
+ nextButton->setEnabled(false); // Set true again when the process is done
+ }
+
+ uninstallStack->raiseWidget(++currentId);
+
+ if (currentId == 2)
+ removeUserPackages();
+ else
+ previousButton->setEnabled(true);
+}
+
+void UninstallWizard::processExited()
+{
+ switch (currentStage)
+ {
+ case ListingPackages:
+ if (appList->childCount() <= 0)
+ {
+ QMessageBox::warning(NULL, "Warning", "There are no packages installed", QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ reject();
+ return;
+ }
+ show();
+ break;
+ case ListingFiles:
+ nextButton->setEnabled(true);
+ fileList->sort();
+ break;
+ case RemovingGlobal:
+ finished();
+ break;
+ }
+}
+
+void UninstallWizard::readyReadStdout()
+{
+ switch (currentStage)
+ {
+ case ListingPackages:
+ {
+ while (externalProcess->canReadLineStdout())
+ {
+ QString line = externalProcess->readLineStdout();
+ if (line.isEmpty())
+ continue;
+
+ // See if it already exists
+ bool exists = false;
+
+ for ( QListViewItem * myChild = appList->firstChild() ; myChild != NULL ; myChild = myChild->nextSibling())
+ {
+ if (myChild->rtti() != 1003)
+ continue;
+ AppListItem* app = (AppListItem*) myChild;
+ if (app->name.lower() == line.lower())
+ {
+ exists = true;
+ break;
+ }
+ }
+ if (exists)
+ continue;
+
+ QString niceName = line.left(line.findRev(':'));
+ niceName = niceName.left(1).upper() + niceName.right(niceName.length()-1);
+ new AppListItem(niceName, line, appList);
+
+ if (globalHeader == NULL)
+ {
+ globalHeader = new HeaderListItem(appList);
+ globalHeader->setText(0, "Applications available to all users");
+ globalHeader->section = 1;
+ }
+ }
+ break;
+ }
+ case ListingFiles:
+ {
+ while (externalProcess->canReadLineStdout())
+ {
+ QString line = externalProcess->readLineStdout();
+ if (line.isEmpty())
+ continue;
+ fileList->insertItem(icon, line.left(line.find(" ")));
+ }
+ break;
+ }
+ case RemovingGlobal:
+ while (externalProcess->canReadLineStdout())
+ {
+ QString line = externalProcess->readLineStdout();
+ if (line.isEmpty())
+ continue;
+ line.replace(QRegExp("\\033[^m]*m"), "");
+ logDialog->logBox->append(line);
+ }
+ break;
+ }
+}
+
+void UninstallWizard::readyReadStderr()
+{
+ while (externalProcess->canReadLineStdout())
+ {
+ QString line = externalProcess->readLineStdout();
+ if (line.isEmpty())
+ continue;
+ line.replace(QRegExp("\\033[^m]*m"), "");
+ logDialog->logBox->append(line);
+ }
+}
+
+void UninstallWizard::removeUserPackages()
+{
+ nextButton->setEnabled(false); // Set true again when the process is done
+ previousButton->setEnabled(false);
+
+ // Find out which packages belong to the user, and uninstall them
+ QStringList argList;
+ argList.append("/bin/sh");
+ argList.append("/tmp/arkollon-uninstall.sh");
+ for ( QListViewItem * myChild = appList->firstChild() ; myChild != NULL ; myChild = myChild->nextSibling())
+ {
+ if (myChild->rtti() != 1003)
+ continue;
+ AppListItem* app = (AppListItem*) myChild;
+ if (!app->isOn())
+ continue;
+
+ argList.append("--remove");
+ argList.append(app->name);
+ }
+ currentStage = RemovingGlobal;
+ externalProcess->setArguments(argList);
+ externalProcess->start();
+}
+
+void UninstallWizard::finished()
+{
+ pleaseWaitLabel2->setText("Removal of packages complete!");
+ nextButton->setText("Finish");
+ nextButton->setEnabled(true);
+}
+
+#include "uninstallwizard.moc"
+
diff --git a/src/arkollon/uninstallwizard.h b/src/arkollon/uninstallwizard.h
new file mode 100644
index 0000000..711e04f
--- /dev/null
+++ b/src/arkollon/uninstallwizard.h
@@ -0,0 +1,87 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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. *
+ ***************************************************************************/
+
+#ifndef UNINSTALLWIZARD_H
+#define UNINSTALLWIZARD_H
+
+#include "wizardbase.h"
+#include "logdialog.h"
+#include "headerlistitem.h"
+
+#include <qlistview.h>
+#include <qprocess.h>
+#include <qpixmap.h>
+
+class AppListItem : public QCheckListItem
+{
+public:
+
+ AppListItem(QString nN, QString n, QListView* lv);
+ int compare(QListViewItem* i, int col, bool ascending) const;
+ int rtti() const { return 1003; }
+
+ QString niceName;
+ QString name;
+ int section;
+};
+
+
+
+class UninstallWizard : public WizardBase
+{
+ Q_OBJECT
+
+public:
+ UninstallWizard(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
+ ~UninstallWizard();
+
+public slots:
+ virtual void logPressed();
+ virtual void cancelPressed();
+ virtual void previousPressed();
+ virtual void nextPressed();
+
+ void processExited();
+ void readyReadStdout();
+ void readyReadStderr();
+
+private:
+ void checkPassword();
+ void removeUserPackages();
+ void removeGlobalPackages();
+ void finished();
+
+private:
+ enum
+ {
+ ListingPackages,
+ ListingFiles,
+ RemovingGlobal
+ } currentStage;
+
+ LogDialog* logDialog;
+ QProcess* externalProcess;
+ HeaderListItem* globalHeader;
+
+ QPixmap icon;
+};
+
+#endif
+
diff --git a/src/arkollon/wizard.cpp b/src/arkollon/wizard.cpp
new file mode 100644
index 0000000..8e92ebf
--- /dev/null
+++ b/src/arkollon/wizard.cpp
@@ -0,0 +1,950 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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 "wizard.h"
+
+#include <qfiledialog.h>
+#include <qwidgetstack.h>
+#include <qpushbutton.h>
+#include <qpainter.h>
+#include <qheader.h>
+#include <qapplication.h>
+#include <qmessagebox.h>
+#include <qprogressbar.h>
+#include <qradiobutton.h>
+#include <qtextedit.h>
+#include <qlineedit.h>
+#include <qpopupmenu.h>
+#include <qhbox.h>
+#include <qfileinfo.h>
+#include <qlabel.h>
+#include <qfontmetrics.h>
+#include <qcheckbox.h>
+
+#include "data.h"
+
+#include "rcparser.h"
+#include "headerlistitem.h"
+
+typedef QValueVector<CompileError> CompileErrorVector;
+CompileErrorVector errs( 5 ); // vector of 3 Employees
+
+
+ComponentListItem::ComponentListItem(struct Component c, QListView* parent)
+ : QCheckListItem(parent, "", QCheckListItem::CheckBox)
+{
+ component = c;
+ setText(0, c.niceName);
+ setOn(true);
+
+ if (c.gnomeOnly)
+ section=2;
+ else if (c.kdeOnly)
+ section=3;
+ else if (c.optional)
+ section=1;
+ else
+ section=0;
+
+
+}
+
+int ComponentListItem::compare(QListViewItem* i, int col, bool ascending) const
+{
+ switch (i->rtti())
+ {
+ case 1001: // Component
+ {
+ ComponentListItem* item = (ComponentListItem*) i;
+ if (section < item->section)
+ return -1;
+ if (section > item->section)
+ return 1;
+ return QListViewItem::compare(i, col, ascending);
+ }
+ break;
+
+ case 1002: // Header
+ {
+ HeaderListItem* item = (HeaderListItem*) i;
+ if (section < item->section)
+ return -1;
+ return 1;
+ }
+ break;
+ }
+ return 0;
+}
+
+
+
+Wizard::Wizard(QWidget *parent, const char *name)
+ : WizardBase(parent, name, false, WDestructiveClose)
+{
+ componentInfo->setMaximumSize(32767,70);
+ componentList->header()->hide();
+ //progressLabel2->setMaximumSize(32767, progressLabel2->fontMetrics().height()*2);
+ externalProcess = new QProcess(this);
+ connect(externalProcess, SIGNAL(processExited()), SLOT(processExited()));
+ connect(externalProcess, SIGNAL(readyReadStdout()), SLOT(readyReadStdout()));
+ connect(externalProcess, SIGNAL(readyReadStderr()), SLOT(readyReadStderr()));
+
+ logDialog = new LogDialog(this);
+ logDialog->hide();
+ previousButton->hide();
+
+ createActionFormats();
+
+ kdeDirProcess = new QProcess(this);
+ connect(kdeDirProcess, SIGNAL(readyReadStdout()), SLOT(kdeDirReady()));
+ connect(kdeDirProcess, SIGNAL(processExited()), SLOT(getInstalledComponents()));
+ kdeDirProcess->addArgument("kde-config");
+ kdeDirProcess->addArgument("--prefix");
+ if (!kdeDirProcess->start())
+ getInstalledComponents();
+
+ errs[0] = CompileError( "libevent", "The installation process finished with an error because it needs a "
+ " component missing on your system. To correct this, "
+ "do the following: <br> 1. Download and install the package for your distribution with the word 'libevent' in its title. <br> 2. Retry installation." );
+ errs[1] = CompileError( "X includes", "The installation process finished with an error because it needs a "
+ " component missing on your system. To correct this, "
+ "do the following: <br> 1. Download and install any packages for your distribution with (i) 'X' and "
+ " either 'devel' or 'lib' in their name. <br> 2. Retry installation. " );
+ errs[2] = CompileError( "There is no user 'privoxy' on this system", "The installation reported an"
+ "error because you need to create the 'privoxy' user. To correct this, "
+ "do the following: <br> 1. As root, enter the following command: useradd privoxy. <br> 2. Retry installation. " );
+ errs[3] = CompileError( "installing config files as root", "The installation reported an"
+ "error because I attempted to install the privoxy config files as root. <b> There is no "
+ "need to take any action on your part. Privoxy has been installed and you can now use it with TorK. " );
+ errs[4] = CompileError( "Qt (>= ", "The installation process finished with an error because it needs a "
+ " component missing on your system. To correct this, "
+ "do the following: <br> 1. Download and install any packages for your distribution with (i) 'qt' and "
+ " either 'devel' or 'lib' in their name. <br> 2. Retry installation. " );
+
+
+
+
+}
+
+void Wizard::createActionFormats()
+{
+ // Taken from KDevelop
+ actionFormats.clear();
+ actionFormats.append(ActionFormat( tr("compiling"), "g++", "g\\+\\+\\S* (?:\\S* )*-c (?:\\S* )*`[^`]*`(?:[^/\\s;]*/)*([^/\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "g++", "g\\+\\+\\S* (?:\\S* )*-c (?:\\S* )*(?:[^/]*/)*([^/\\s;]*)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "gcc", "gcc\\S* (?:\\S* )*-c (?:\\S* )*`[^`]*`(?:[^/\\s;]*/)*([^/\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "gcc", "gcc\\S* (?:\\S* )*-c (?:\\S* )*(?:[^/]*/)*([^/\\s;]*)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "distcc", "distcc (?:\\S* )*-c (?:\\S* )*`[^`]*`(?:[^/\\s;]*/)*([^/\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "distcc", "distcc (?:\\S* )*-c (?:\\S* )*(?:[^/]*/)*([^/\\s;]*)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "unknown", "^compiling (.*)", 1 ));
+ actionFormats.append(ActionFormat( tr("generating"), "moc", "/moc\\b.*\\s-o\\s([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("generating"), "uic", "/uic\\b.*\\s-o\\s([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("linking"), "libtool", "/+bin/+sh\\s.*libtool.*--mode=link\\s.*\\s-o\\s([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("linking"), "g++", "g\\+\\+\\S* (?:\\S* )*-o ([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("linking"), "gcc", "gcc\\S* (?:\\S* )*-o ([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("creating"), "", "/(?:bin/+sh\\s.*mkinstalldirs).*\\s([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("installing"), "", "/(?:usr/+bin/+install|bin/+sh\\s.*mkinstalldirs|bin/+sh\\s.*libtool.*--mode=install).*\\s\\'?([^\\s;\\']+)\\'?", 1 ));
+ actionFormats.append(ActionFormat( tr("generating"), "dcopidl", "dcopidl .* > ([^\\s;]+)", 1 ));
+ actionFormats.append(ActionFormat( tr("compiling"), "dcopidl2cpp", "dcopidl2cpp (?:\\S* )*([^\\s;]+)", 1 ));
+}
+
+void Wizard::kdeDirReady()
+{
+ while (kdeDirProcess->canReadLineStdout())
+ {
+ QString line = kdeDirProcess->readLineStdout();
+ if (!line.isEmpty())
+ kdeDir = line;
+ }
+}
+
+void Wizard::getInstalledComponents()
+{
+ QFile uninstallScript("/tmp/arkollon-uninstall.sh");
+ if (uninstallScript.exists())
+ uninstallScript.remove();
+ uninstallScript.open(IO_WriteOnly);
+ QDataStream stream(&uninstallScript);
+ stream.writeRawBytes((const char*)uninstaller_sh_data, uninstaller_sh_len);
+ uninstallScript.close();
+
+ installedComponentsProcess = new QProcess(this);
+ connect(installedComponentsProcess, SIGNAL(readyReadStdout()), SLOT(installedComponentsReady()));
+ connect(installedComponentsProcess, SIGNAL(processExited()), SLOT(setup()));
+ installedComponentsProcess->addArgument("/bin/sh");
+ installedComponentsProcess->addArgument("/tmp/arkollon-uninstall.sh");
+ installedComponentsProcess->addArgument("--list");
+ if (!installedComponentsProcess->start())
+ setup();
+}
+
+void Wizard::installedComponentsReady()
+{
+ while (installedComponentsProcess->canReadLineStdout())
+ {
+ QString line = installedComponentsProcess->readLineStdout();
+ if (line.isEmpty())
+ continue;
+
+ // See if it already exists
+ if (installedComponents.find(line.lower()) != installedComponents.end())
+ continue;
+
+ installedComponents.append(line.lower());
+ //printf("Found installed component %s\n", parser.cap(3).latin1());
+ }
+}
+
+void Wizard::setup()
+{
+ QFile uninstallScript("/tmp/arkollon-uninstall.sh");
+ if (uninstallScript.exists())
+ uninstallScript.remove();
+
+ if (kdeDir.isEmpty())
+ kdeDir = "/usr";
+
+ // Firstly check if there's an arkollonrc file in the current directory
+ // If there is, use it.
+ dir = QDir::currentDirPath();
+ if (qApp->argc() > 1)
+ {
+ // The directory specified on the command line overrides the current dir.
+ QDir d(qApp->argv()[1]);
+ dir = d.absPath();
+ }
+ if (QFile::exists(dir + "/arkollonrc"))
+ {
+ setupFromRc();
+ }
+ else
+ {
+ if (!setupFromDir())
+ {
+ QMessageBox::critical(NULL, "Error", "This directory does not contain any recognised buildsystem", QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ reject();
+ return;
+ }
+ }
+ show();
+}
+
+void Wizard::setupFromRc()
+{
+ RcParser parser;
+ parser.addSearchDir(dir);
+ if (!parser.openFile("arkollonrc"))
+ {
+ QMessageBox::critical(NULL, "Error", "The \"arkollonrc\" file in this directory could not be read", QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ reject();
+ return;
+ }
+
+ parser.setSection("Arkollon");
+ QString appName = parser.readString("AppName");
+ if (appName.isEmpty())
+ {
+ QMessageBox::critical(NULL, "Error", "The \"arkollonrc\" file in this directory contains no application name!", QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ reject();
+ return;
+ }
+ setAppName(appName);
+
+ QString icon32Path = parser.readString("Icon32");
+ QString icon16Path = parser.readString("Icon16");
+ if ((!icon32Path.isEmpty()) && (QFile::exists(dir + "/" + icon32Path)))
+ {
+ QPixmap icon32(dir + "/" + icon32Path);
+ appIcon->setPixmap(icon32);
+ }
+ if ((!icon16Path.isEmpty()) && (QFile::exists(dir + "/" + icon16Path)))
+ {
+ QPixmap icon16(dir + "/" + icon16Path);
+ setIcon(icon16);
+ }
+
+ buildOrder = parser.readList("BuildOrder");
+ QStringList compNames = parser.readList("Components");
+ QStringList::Iterator it = compNames.begin();
+ while( it != compNames.end() )
+ {
+ parser.setSection(*it);
+
+ struct Component c;
+ c.name = *it;
+ c.niceName = parser.readString("NiceName");
+ c.subDir = parser.readString("SubDir");
+ c.forceDir = sub(parser.readString("ForceDir"));
+ c.optional = parser.readBool("Optional", false);
+ c.kdeOnly = parser.readBool("KDEOnly", false);
+ c.gnomeOnly = parser.readBool("GnomeOnly", false);
+ c.description = sub(parser.readString("Description"));
+ c.confOptions = parser.readString("ConfigureOptions");
+ c.alreadyInstalled = false;
+
+ // Load the buildtimes data
+ if (QFile::exists(dir + "/" + c.subDir + "/buildtimes"))
+ {
+ QRegExp re("([^,]*,[^,]*),(\\d*)");
+ QFile file(dir + "/" + c.subDir + "/buildtimes");
+ file.open(IO_ReadOnly);
+ QTextStream stream(&file);
+ for (;;)
+ {
+ QString line = stream.readLine();
+ if (line.isNull())
+ break;
+ if (re.search(line) == -1)
+ continue;
+ c.buildTimes.insert(re.cap(1), re.cap(2).toInt());
+ }
+ }
+
+ // Add the header for this component
+ ComponentListItem* item = new ComponentListItem(c, componentList);
+ if (!headers.contains(item->section))
+ {
+ headers[item->section] = new HeaderListItem(componentList);
+ ((HeaderListItem*)headers[item->section])->section = item->section;
+
+ switch(item->section)
+ {
+ case 0: headers[item->section]->setText(0, "Required components"); break;
+ case 1: headers[item->section]->setText(0, "Optional components"); break;
+ case 2: headers[item->section]->setText(0, "Gnome specific components"); break;
+ case 3: headers[item->section]->setText(0, "KDE specific components"); break;
+ }
+ }
+
+ // Check if it's already installed
+ QStringList::Iterator it2 = installedComponents.begin();
+ while( it2 != installedComponents.end() )
+ {
+ int dashPos = c.subDir.findRev('-');
+ if (dashPos < 0)
+ dashPos = c.subDir.length();
+ QString version = c.subDir.left(dashPos) + ":" + c.subDir.right(c.subDir.length() - dashPos - 1);
+ if (*it2 == version.lower())
+ {
+ item->setOn(false);
+ item->component.alreadyInstalled = true;
+ }
+ ++it2;
+ }
+
+ ++it;
+ }
+ parser.setSection("Arkollon");
+ exec = sub(parser.readString("Exec"));
+ desktop = sub(parser.readString("Desktop"));
+}
+
+bool Wizard::setupFromDir()
+{
+ if ((!QFile::exists(dir + "/configure")) &&
+ (!QFile::exists(dir + "/autogen.sh")) &&
+ (!QFile::exists(dir + "/auto-gen.sh")))
+ {
+ QDir myDir(dir + "/" + selectedComponents[currentComponent].subDir);
+ if (myDir.entryList("*.pro", QDir::Files).count() <= 0)
+ return false;
+ }
+
+ // Use the directory name as the appname
+ QDir myDir2(dir);
+ QString dirName = myDir2.dirName();
+ setAppName(makeDirNice(dirName));
+
+ buildOrder.append(dirName);
+ struct Component c;
+ c.name = dirName;
+ c.niceName = makeDirNice(dirName);
+ c.optional = false;
+ c.subDir = "";
+ c.gnomeOnly = false;
+ c.kdeOnly = false;
+ c.description = "<i>No description is associated with this component.</i>";
+ c.alreadyInstalled = false;
+ ComponentListItem* item = new ComponentListItem(c, componentList);
+ HeaderListItem* header = new HeaderListItem(componentList);
+ header->setText(0, "Required components");
+ header->section = 0;
+
+ QStringList::Iterator it2 = installedComponents.begin();
+ while( it2 != installedComponents.end() )
+ {
+ int dashPos = dirName.findRev('-');
+ if (dashPos < 0)
+ dashPos = dirName.length();
+ QString version = dirName.left(dashPos) + ":" + dirName.right(dirName.length() - dashPos - 1);
+ if (*it2 == version.lower())
+ item->component.alreadyInstalled = true;
+ ++it2;
+ }
+
+ return true;
+}
+
+
+Wizard::~Wizard()
+{
+}
+
+
+void Wizard::componentSelected(QListViewItem* item)
+{
+ if (item->rtti() != 1001)
+ return;
+
+ ComponentListItem* i = (ComponentListItem*) item;
+ QString text = "<p><b>" + item->text(0) + "</b>";
+ if (i->component.alreadyInstalled)
+ text += " <i>(Already installed)</i>";
+ text += "</p><p>";
+ text += i->component.description;
+ text += "</p>";
+
+ componentInfo->setText(text);
+}
+
+
+QString Wizard::makeDirNice(QString name)
+{
+ int dashPos = name.findRev('-');
+ if (dashPos < 0)
+ dashPos = name.length();
+
+ QString ret = name.left(dashPos);
+ ret = ret.left(1).upper() + ret.right(ret.length()-1);
+
+ return ret;
+}
+
+
+void Wizard::cancelPressed()
+{
+ if (externalProcess->isRunning())
+ externalProcess->tryTerminate();
+
+ reject();
+}
+
+void Wizard::nextPressed()
+{
+ int currentId = installStack->id(installStack->visibleWidget());
+ if (currentId == 3)
+ {
+ QDir d(kdeDir);
+ d.mkdir("share/apps/kdesktop/Desktop");
+ if (shortcutBox->isChecked())
+ {
+ QFile source(dir + "/" + desktop);
+ QString destDir = kdeDir + "/share/apps/kdesktop/Desktop";
+ int slashPos = desktop.findRev('/');
+ if (slashPos < 0)
+ slashPos = 0;
+ QFile dest(destDir + "/" + desktop.right(desktop.length() - slashPos));
+ source.open(IO_ReadOnly);
+ dest.open(IO_WriteOnly | IO_Truncate);
+ QDataStream destStream(&dest);
+ QByteArray data = source.readAll();
+ destStream.writeRawBytes(data.data(), data.size());
+ source.close();
+ dest.close();
+ }
+ if (uninstallBox->isChecked())
+ {
+ QFile source(dir + "/Uninstall TorK.desktop");
+ QFile dest(kdeDir + "/share/apps/kdesktop/Desktop/Uinstall TorK.desktop");
+ source.open(IO_ReadOnly);
+ dest.open(IO_WriteOnly | IO_Truncate);
+ QDataStream destStream(&dest);
+ QByteArray data = source.readAll();
+ destStream.writeRawBytes(data.data(), data.size());
+ source.close();
+ dest.close();
+ }
+ accept();
+ return;
+ }
+ if ((currentId == 2) && (exec.isEmpty()))
+ {
+ accept();
+ return;
+ }
+
+ if (currentId == 1)
+ {
+ bool itemsSelected = false;
+
+ QListViewItemIterator it( componentList );
+ while ( it.current() )
+ {
+ if (it.current()->rtti() != 1001)
+ {
+ ++it;
+ continue;
+ }
+ ComponentListItem* item = (ComponentListItem*) it.current();
+ if (item->isOn())
+ itemsSelected = true;
+ ++it;
+ }
+ if (!itemsSelected)
+ {
+ QMessageBox::warning(this, "Warning", "You need to select at least one component", QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ return;
+ }
+ }
+
+ installStack->raiseWidget(++currentId);
+
+ if (currentId == 2)
+ {
+ pleaseWaitLabel->setText("Please wait while the software is compiled and installed");
+ timeRemaining->setText("Estimated time remaining: <b>Calculating...</b>");
+ startProcess();
+ nextButton->setEnabled(false);
+ previousButton->setEnabled(false);
+ }
+ else if (currentId == 3)
+ {
+ nextButton->setText("Finish");
+ }
+ else
+ previousButton->setEnabled(true);
+}
+
+void Wizard::previousPressed()
+{
+ int currentId = installStack->id(installStack->visibleWidget());
+ if (currentId == 0)
+ return;
+
+ installStack->raiseWidget(--currentId);
+
+ if (currentId == 0)
+ previousButton->setEnabled(false);
+ nextButton->setEnabled(true);
+}
+
+
+void Wizard::startProcess()
+{
+ selectedComponents.clear();
+
+ totalBTime = 0;
+ elapsedTime = 0;
+ elapsedBTime = 0;
+ for ( QStringList::Iterator it = buildOrder.begin(); it != buildOrder.end(); ++it )
+ {
+ QListViewItemIterator it2( componentList );
+ while ( it2.current() )
+ {
+ if (it2.current()->rtti() != 1001)
+ {
+ ++it2;
+ continue;
+ }
+ ComponentListItem* item = (ComponentListItem*) it2.current();
+ if (item->component.name == *it)
+ {
+ if (item->isOn())
+ {
+ selectedComponents.append(item->component);
+ QMap<QString, uint>::iterator it3;
+ for ( it3 = item->component.buildTimes.begin(); it3 != item->component.buildTimes.end(); ++it3 )
+ totalBTime += it3.data();
+ }
+ }
+ ++it2;
+ }
+ }
+
+ progressBar->setProgress(0);
+ progressBar->setTotalSteps(totalBTime);
+
+ currentComponent = 0;
+ currentStage = None;
+ currentIsQMake = false;
+
+ nextStep();
+}
+
+void Wizard::nextStep()
+{
+ externalProcess->clearArguments();
+
+ switch (currentStage)
+ {
+ case None:
+ {
+ logLine(selectedComponents[currentComponent].niceName);
+ progressLabel1->setText("<b>Running autogen for " + selectedComponents[currentComponent].niceName + "</b>");
+ setProgress2Text("");
+ //progressLabel2->setCursorPosition(0);
+ currentStage = Autogen;
+ QDir myDir(dir + "/" + selectedComponents[currentComponent].subDir);
+ if (myDir.entryList("*.pro", QDir::Files).count() > 0)
+ {
+ currentIsQMake = true;
+ nextStep();
+ return;
+ }
+
+ if (QFile::exists(dir + "/" + selectedComponents[currentComponent].subDir + "/configure"))
+ {
+ nextStep();
+ return;
+ }
+
+ QString autogenName;
+ if (QFile::exists(dir + "/" + selectedComponents[currentComponent].subDir + "/autogen.sh"))
+ autogenName = "autogen.sh";
+ else if (QFile::exists(dir + "/" + selectedComponents[currentComponent].subDir + "/auto-gen.sh"))
+ autogenName = "auto-gen.sh";
+ else
+ {
+ logLine("No configure, autogen, or qmake scripts found");
+ errorOccured();
+ return;
+ }
+
+ externalProcess->addArgument(dir + "/" + selectedComponents[currentComponent].subDir + autogenName);
+ externalProcess->setWorkingDirectory(dir + "/" + selectedComponents[currentComponent].subDir);
+ logLine("Running autogen...");
+ externalProcess->start();
+ break;
+ }
+ case Autogen:
+ {
+ //progressBar->setProgress(progressBar->progress() + 1);
+ currentStage = Configure;
+ if (currentIsQMake)
+ {
+ progressLabel1->setText("<b>Running qmake for " + selectedComponents[currentComponent].niceName + "</b>");
+ setProgress2Text("");
+ //progressLabel2->setCursorPosition(0);
+ externalProcess->addArgument("qmake");
+ externalProcess->setWorkingDirectory(dir + "/" + selectedComponents[currentComponent].subDir);
+ if (!externalProcess->start())
+ {
+ logLine("Error: qmake was not found. Try installing the Qt-devel libraries.");
+ errorOccured();
+ return;
+ }
+ logLine("Running qmake...");
+ break;
+ }
+
+ if (!selectedComponents[currentComponent].forceDir.isEmpty())
+ prefix = selectedComponents[currentComponent].forceDir;
+ else
+ prefix = "/usr/local";
+
+ externalProcess->addArgument("./configure");
+ //externalProcess->addArgument("--prefix=" + prefix);
+ if (!selectedComponents[currentComponent].confOptions.isEmpty())
+ {
+ QStringList extraArgs = QStringList::split(" ", sub(selectedComponents[currentComponent].confOptions));
+ for ( QStringList::Iterator it = extraArgs.begin(); it != extraArgs.end(); ++it )
+ externalProcess->addArgument(*it);
+ }
+ externalProcess->setWorkingDirectory(dir + "/" + selectedComponents[currentComponent].subDir);
+ logLine("Running configure (" + externalProcess->arguments().join(" ") + ")...");
+ progressLabel1->setText("<b>Configuring " + selectedComponents[currentComponent].niceName + "</b>");
+ setProgress2Text("");
+ timer.start();
+ externalProcess->start();
+ break;
+ }
+ case Configure:
+ {
+ updateTime("configure,");
+
+ currentStage = Compile;
+
+ externalProcess->addArgument("make");
+ externalProcess->setWorkingDirectory(dir + "/" + selectedComponents[currentComponent].subDir);
+ logLine("Running make...");
+ progressLabel1->setText("<b>Compiling " + selectedComponents[currentComponent].niceName + "</b>");
+ setProgress2Text("");
+ timer.setHMS(0, 0, 0);
+ externalProcess->start();
+ break;
+ }
+ case Compile:
+ {
+ currentStage = Install;
+
+ logLine("Installing...");
+ progressLabel1->setText("<b>Installing " + selectedComponents[currentComponent].niceName + "</b>");
+ setProgress2Text("");
+
+ installedFiles.clear();
+
+ externalProcess->addArgument("make");
+ externalProcess->addArgument("install");
+ externalProcess->setWorkingDirectory(dir + "/" + selectedComponents[currentComponent].subDir);
+ externalProcess->start();
+
+ break;
+ }
+ case Install:
+ {
+ currentStage = WriteUninstallInfo;
+ logLine("Writing uninstall information...");
+ progressLabel1->setText("<b>Writing uninstall information for " + selectedComponents[currentComponent].niceName + "</b>");
+ setProgress2Text("");
+
+ QFile postInstallScript("/tmp/arkollon-postinstall.sh");
+ if (postInstallScript.exists())
+ postInstallScript.remove();
+ postInstallScript.open(IO_WriteOnly);
+ QDataStream stream(&postInstallScript);
+ stream.writeRawBytes((const char*)postinstall_sh_data, postinstall_sh_len);
+ postInstallScript.close();
+
+ QFile fileList("/tmp/arkollon-filelist");
+ if (fileList.exists())
+ fileList.remove();
+ fileList.open(IO_WriteOnly);
+ QTextStream fileStream(&fileList);
+ QStringList doneFiles;
+ for ( QStringList::Iterator it = installedFiles.begin(); it != installedFiles.end(); ++it )
+ {
+ if (doneFiles.find(*it) != doneFiles.end())
+ continue;
+ QFileInfo fileInfo(*it);
+ if (fileInfo.isDir())
+ continue;
+ fileStream << (*it) << '\n';
+ doneFiles.append(*it);
+ }
+ fileList.close();
+
+ struct Component c = selectedComponents[currentComponent];
+ int dashPos = c.subDir.findRev('-');
+ if (dashPos < 0)
+ dashPos = c.subDir.length();
+ QString appname = c.subDir.left(dashPos);
+ QString version = c.subDir.right(c.subDir.length() - dashPos - 1);
+
+ externalProcess->addArgument("/bin/sh");
+ externalProcess->addArgument("/tmp/arkollon-postinstall.sh");
+ externalProcess->addArgument("--appname");
+ externalProcess->addArgument(appname);
+ externalProcess->addArgument("--version");
+ externalProcess->addArgument(version);
+ externalProcess->addArgument("--filelist");
+ externalProcess->addArgument("/tmp/arkollon-filelist");
+ externalProcess->start();
+ break;
+ }
+ case WriteUninstallInfo:
+ {
+ currentStage = None;
+ currentComponent++;
+ currentIsQMake = false;
+ if (currentComponent >= selectedComponents.count())
+ {
+ progressLabel1->setText("<b>Installation completed!</b>");
+ pleaseWaitLabel->setText("Installation complete");
+ timeRemaining->setText("");
+ progressBar->setProgress(totalBTime);
+ nextButton->setEnabled(true);
+ if (exec.isEmpty())
+ {
+ nextButton->setText("Finish");
+ setProgress2Text("");
+ }
+ else
+ {
+ setProgress2Text("Click \"next\" to continue");
+ }
+
+ return;
+ }
+ nextStep();
+ break;
+ }
+ default:
+ break;
+ }
+}
+
+void Wizard::processExited()
+{
+ if (currentStage == WriteUninstallInfo)
+ {
+ // Remove temp files from the last stage
+ QFile postInstallScript("/tmp/arkollon-postinstall.sh");
+ if (postInstallScript.exists())
+ postInstallScript.remove();
+
+ QFile fileList("/tmp/arkollon-filelist");
+ if (fileList.exists())
+ fileList.remove();
+ }
+ if (!externalProcess->normalExit())
+ {
+ logLine("Process was killed");
+ errorOccured();
+ return;
+ }
+ if (externalProcess->exitStatus() != 0)
+ {
+ logLine("Return value " + QString::number(externalProcess->exitStatus()));
+ errorOccured();
+ return;
+ }
+ if (currentStage == Compile)
+ updateTime(lastTimeLine);
+ nextStep();
+}
+
+void Wizard::readyReadStderr()
+{
+ while (externalProcess->canReadLineStderr())
+ {
+ QString line = externalProcess->readLineStderr().latin1();
+ CompileErrorVector::iterator it;
+ for( it = errs.begin(); it != errs.end(); ++it ){
+ if (line.contains((*it).type()))
+ QMessageBox::information( this, (*it).type(), (*it).message() );
+ }
+ logDialog->logBox->append(" * "+line);
+ }
+}
+
+void Wizard::readyReadStdout()
+{
+ while (externalProcess->canReadLineStdout())
+ {
+ QString line = externalProcess->readLineStdout().latin1();
+ logDialog->logBox->append(line);
+
+ if (currentStage == Configure)
+ {
+ setProgress2Text(line);
+ continue;
+ }
+ commandLine += line;
+ if (line.right(1) == "\\")
+ continue;
+ commandLine = commandLine.left(commandLine.find(';'));
+ for ( QValueList<ActionFormat>::Iterator it = actionFormats.begin(); it != actionFormats.end(); ++it )
+ {
+ if ((*it).regExp.search(commandLine) == -1)
+ continue;
+ setProgress2Text((*it).action + " <b>" + (*it).regExp.cap(1) + "</b> (" + (*it).tool + ")");
+ if ((currentStage == Install) && ((*it).action == "installing"))
+ installedFiles.append((*it).regExp.cap(1));
+ else
+ updateTime(lastTimeLine);
+ lastTimeLine = (*it).tool + "," + (*it).regExp.cap(1);
+ }
+ commandLine = "";
+ }
+}
+
+void Wizard::updateTime(QString key)
+{
+ if (!timer.isNull())
+ {
+ elapsedBTime += selectedComponents[currentComponent].buildTimes[key];
+ elapsedTime += timer.elapsed();
+ float ratio = (float)elapsedTime / (float)elapsedBTime;
+ int remainingTime = (int)((float)(totalBTime - elapsedBTime) * ratio) / 60000;
+ if (remainingTime < 0)
+ remainingTime = 0;
+ QString text = QString::number(remainingTime + 1) + " minutes";
+ if (remainingTime == 0)
+ text = "1 minute";
+ timeRemaining->setText("Estimated time remaining: <b>" + text + "</b>");
+ progressBar->setProgress(elapsedBTime);
+ }
+ timer.start();
+}
+
+void Wizard::logLine(QString line)
+{
+ QString tmp = line;
+ QStringList lines = QStringList::split("\n", tmp);
+ for ( QStringList::Iterator it = lines.begin(); it != lines.end(); ++it )
+ {
+ if ((*it).isEmpty())
+ continue;
+ logDialog->logBox->append("***** "+*it);
+ }
+}
+
+void Wizard::setProgress2Text(QString text)
+{
+ QString croppedText = text;
+ int i = croppedText.length();
+
+ QFont boldFont = progressLabel2->font();
+ boldFont.setBold(true);
+ QFontMetrics boldFontMetrics(boldFont);
+ while (boldFontMetrics.width(croppedText) > progressLabel2->width())
+ {
+ croppedText = croppedText.left(--i);
+ }
+
+ progressLabel2->setText(croppedText);
+}
+
+void Wizard::errorOccured()
+{
+ //logFrame->show();
+ pleaseWaitLabel->setText("An error occured");
+ progressLabel1->setText("<b>An error occured</b>");
+ setProgress2Text("See the log file for more information");
+ previousButton->setEnabled(true);
+}
+
+QString Wizard::sub(QString s)
+{
+ QString tmp = s;
+ tmp.replace(QRegExp("\\$KDEDIR"), kdeDir);
+ tmp.replace(QRegExp("\\$HOMEDIR"), QDir::homeDirPath());
+ tmp.replace(QRegExp("~"), QDir::homeDirPath());
+ tmp.replace(QRegExp("\\$PREFIX"), "/usr/local");
+
+ return tmp;
+}
+
+void Wizard::runPressed()
+{
+ QProcess* proc = new QProcess(this);
+ proc->addArgument(exec);
+ if (!proc->start())
+ {
+ QMessageBox::warning(this, "Warning", "The application could not be started<br>"+exec, QMessageBox::Ok, QMessageBox::NoButton, QMessageBox::NoButton);
+ }
+}
+
+void Wizard::logPressed()
+{
+ logDialog->show();
+}
+
+#include "wizard.moc"
+
diff --git a/src/arkollon/wizard.h b/src/arkollon/wizard.h
new file mode 100644
index 0000000..cf32d9d
--- /dev/null
+++ b/src/arkollon/wizard.h
@@ -0,0 +1,183 @@
+/***************************************************************************
+ * Copyright (C) 2004 by David Sansome *
+ * me@davidsansome.com *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 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. *
+ ***************************************************************************/
+#ifndef WIZARD_H
+#define WIZARD_H
+
+#include <wizardbase.h>
+#include <qlistview.h>
+#include <qprocess.h>
+#include <qsettings.h>
+#include <qiconview.h>
+#include <qregexp.h>
+#include <qvaluevector.h>
+#include <qstring.h>
+#include <stdio.h>
+
+#include "logdialog.h"
+class HeaderListItem;
+
+struct Component
+{
+ QString name;
+ QString niceName;
+ QString subDir;
+ QString forceDir;
+ bool optional;
+ bool kdeOnly;
+ bool gnomeOnly;
+ QString description;
+ QString confOptions;
+
+ QMap<QString, uint> buildTimes;
+
+ bool alreadyInstalled;
+};
+
+class ComponentListItem : public QCheckListItem
+{
+public:
+ ComponentListItem(struct Component c, QListView* parent);
+ int compare(QListViewItem* i, int col, bool ascending) const;
+ int rtti() const { return 1001; }
+
+ struct Component component;
+ int section;
+};
+
+class ActionFormat
+{
+public:
+ ActionFormat() {}
+ ActionFormat(QString a, QString t, QString r, int) { action=a; tool=t; regExp=r; }
+ ~ActionFormat() {}
+
+ QString action;
+ QString tool;
+ QRegExp regExp;
+};
+
+
+class CompileError
+{
+public:
+ CompileError() {}
+ CompileError( const QString& type, const QString& message )
+ : t( type ), m( message )
+ { }
+
+ QString type() const { return t; }
+ QString message() const { return m; }
+private:
+ QString t;
+ QString m;
+};
+
+
+
+class Wizard : public WizardBase
+{
+ Q_OBJECT
+
+public:
+ Wizard(QWidget *parent = 0, const char *name = 0);
+
+ ~Wizard();
+
+
+private:
+ void createActionFormats();
+ void startProcess();
+ void nextStep();
+ void checkPassword();
+
+ void updateTime(QString key);
+ QString lastTimeLine;
+
+ void logLine(QString line);
+ void errorOccured();
+ QString makeDirNice(QString name);
+
+ QString sub(QString s);
+
+ QString rootPassword;
+
+private slots:
+ void processExited();
+ void readyReadStdout();
+ void readyReadStderr();
+ void kdeDirReady();
+ void getInstalledComponents();
+ void installedComponentsReady();
+
+ void cancelPressed();
+ void nextPressed();
+ void previousPressed();
+ void runPressed();
+ void logPressed();
+ void componentSelected(QListViewItem* item);
+ void setProgress2Text(QString text);
+
+ void setup();
+ void setupFromRc();
+ bool setupFromDir();
+
+private:
+ enum Stage
+ {
+ None,
+ Autogen,
+ Configure,
+ Compile,
+ Install,
+ WriteUninstallInfo
+ };
+
+ QString dir;
+ QStringList buildOrder;
+ QValueList<struct Component> selectedComponents;
+ uint totalBTime;
+ uint elapsedBTime;
+ uint elapsedTime;
+ QTime timer;
+ QProcess* externalProcess;
+ QProcess* kdeDirProcess;
+ QProcess* installedComponentsProcess;
+ QString commandLine;
+ bool currentIsQMake;
+ uint currentComponent;
+ enum Stage currentStage;
+ bool needRoot;
+ QString prefix;
+
+ QStringList installedComponents;
+ QString exec;
+ QString desktop;
+
+ QString kdeDir;
+
+ LogDialog* logDialog;
+
+ QMap<int, HeaderListItem*> headers;
+ QValueList<ActionFormat> actionFormats;
+ QStringList installedFiles;
+
+};
+
+#endif
diff --git a/src/arkollon/wizardbase.ui b/src/arkollon/wizardbase.ui
new file mode 100644
index 0000000..6fc9d12
--- /dev/null
+++ b/src/arkollon/wizardbase.ui
@@ -0,0 +1,921 @@
+<!DOCTYPE UI><UI version="3.1" stdsetdef="1">
+<class>WizardBase</class>
+<widget class="QDialog">
+ <property name="name">
+ <cstring>WizardBase</cstring>
+ </property>
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>587</width>
+ <height>384</height>
+ </rect>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>1</hsizetype>
+ <vsizetype>1</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="minimumSize">
+ <size>
+ <width>530</width>
+ <height>0</height>
+ </size>
+ </property>
+ <property name="caption">
+ <string>[AppName] installation</string>
+ </property>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <property name="resizeMode">
+ <enum>Fixed</enum>
+ </property>
+ <widget class="QLayoutWidget">
+ <property name="name">
+ <cstring>layout8</cstring>
+ </property>
+ <hbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>splash</cstring>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>0</hsizetype>
+ <vsizetype>0</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="frameShape">
+ <enum>Box</enum>
+ </property>
+ <property name="frameShadow">
+ <enum>Sunken</enum>
+ </property>
+ <property name="scaledContents">
+ <bool>false</bool>
+ </property>
+ </widget>
+ <widget class="QLayoutWidget">
+ <property name="name">
+ <cstring>layout7</cstring>
+ </property>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>titleLabel</cstring>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>5</hsizetype>
+ <vsizetype>4</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>&lt;b&gt;[AppName] installation&lt;/b&gt;</string>
+ </property>
+ <property name="alignment">
+ <set>AlignVCenter</set>
+ </property>
+ </widget>
+ <widget class="Line">
+ <property name="name">
+ <cstring>line1</cstring>
+ </property>
+ <property name="frameShape">
+ <enum>HLine</enum>
+ </property>
+ <property name="frameShadow">
+ <enum>Sunken</enum>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ </widget>
+ <widget class="QWidgetStack">
+ <property name="name">
+ <cstring>mainStack</cstring>
+ </property>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>0</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <property name="margin">
+ <number>0</number>
+ </property>
+ <property name="spacing">
+ <number>0</number>
+ </property>
+ <widget class="QWidgetStack">
+ <property name="name">
+ <cstring>installStack</cstring>
+ </property>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>Introduction</cstring>
+ </property>
+ <attribute name="id">
+ <number>0</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>textLabel2</cstring>
+ </property>
+ <property name="text">
+ <string>&lt;p&gt;This wizard will guide you through the installation of:</string>
+ </property>
+ <property name="alignment">
+ <set>WordBreak|AlignVCenter</set>
+ </property>
+ </widget>
+ <widget class="QLayoutWidget">
+ <property name="name">
+ <cstring>layout12</cstring>
+ </property>
+ <hbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <spacer>
+ <property name="name">
+ <cstring>spacer3</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Fixed</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>30</width>
+ <height>10</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>appIcon</cstring>
+ </property>
+ <property name="scaledContents">
+ <bool>false</bool>
+ </property>
+ </widget>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>appNameLabel</cstring>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>7</hsizetype>
+ <vsizetype>5</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>&lt;b&gt;[AppName]&lt;/b&gt;</string>
+ </property>
+ </widget>
+ </hbox>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer4</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Fixed</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>10</width>
+ <height>30</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>textLabel4</cstring>
+ </property>
+ <property name="text">
+ <string>Please click "Next" to continue</string>
+ </property>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer5</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>21</width>
+ <height>71</height>
+ </size>
+ </property>
+ </spacer>
+ </vbox>
+ </widget>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>Components</cstring>
+ </property>
+ <attribute name="id">
+ <number>1</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>textLabel5</cstring>
+ </property>
+ <property name="text">
+ <string>Select the components to install</string>
+ </property>
+ <property name="alignment">
+ <set>WordBreak|AlignVCenter</set>
+ </property>
+ </widget>
+ <widget class="QListView">
+ <column>
+ <property name="text">
+ <string>Component name</string>
+ </property>
+ <property name="clickable">
+ <bool>true</bool>
+ </property>
+ <property name="resizable">
+ <bool>true</bool>
+ </property>
+ </column>
+ <property name="name">
+ <cstring>componentList</cstring>
+ </property>
+ </widget>
+ <widget class="QTextEdit">
+ <property name="name">
+ <cstring>componentInfo</cstring>
+ </property>
+ <property name="textFormat">
+ <enum>RichText</enum>
+ </property>
+ <property name="text">
+ <string>&lt;i&gt;Select a component from the list above to see a brief description of it.&lt;/i&gt;</string>
+ </property>
+ <property name="wordWrap">
+ <enum>WidgetWidth</enum>
+ </property>
+ <property name="readOnly">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </vbox>
+ </widget>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>2</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>pleaseWaitLabel</cstring>
+ </property>
+ <property name="text">
+ <string>Please wait while the software is compiled and installed</string>
+ </property>
+ <property name="alignment">
+ <set>WordBreak|AlignVCenter</set>
+ </property>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer14_2</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Minimum</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>16</width>
+ <height>30</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>progressLabel1</cstring>
+ </property>
+ <property name="text">
+ <string>Progress Label 1</string>
+ </property>
+ </widget>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>progressLabel2</cstring>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>5</hsizetype>
+ <vsizetype>0</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Progress Label 2</string>
+ </property>
+ <property name="textFormat">
+ <enum>RichText</enum>
+ </property>
+ <property name="alignment">
+ <set>WordBreak|AlignTop|AlignLeft</set>
+ </property>
+ </widget>
+ <widget class="QProgressBar">
+ <property name="name">
+ <cstring>progressBar</cstring>
+ </property>
+ <property name="progress">
+ <number>0</number>
+ </property>
+ </widget>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>timeRemaining</cstring>
+ </property>
+ <property name="text">
+ <string>Estimated time remaining: &lt;b&gt;Calculating...&lt;/b&gt;</string>
+ </property>
+ <property name="alignment">
+ <set>WordBreak|AlignVCenter|AlignRight</set>
+ </property>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer15</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>20</width>
+ <height>30</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QFrame">
+ <property name="name">
+ <cstring>logFrame</cstring>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>5</hsizetype>
+ <vsizetype>0</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="frameShape">
+ <enum>NoFrame</enum>
+ </property>
+ <property name="frameShadow">
+ <enum>Plain</enum>
+ </property>
+ <hbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <property name="margin">
+ <number>0</number>
+ </property>
+ <property name="spacing">
+ <number>0</number>
+ </property>
+ <spacer>
+ <property name="name">
+ <cstring>logSpacer_2</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>224</width>
+ <height>20</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QPushButton">
+ <property name="name">
+ <cstring>logButton</cstring>
+ </property>
+ <property name="text">
+ <string>View log file...</string>
+ </property>
+ </widget>
+ </hbox>
+ </widget>
+ </vbox>
+ </widget>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>3</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>textLabel1</cstring>
+ </property>
+ <property name="text">
+ <string>&lt;p&gt;The installation is complete.&lt;/p&gt;</string>
+ </property>
+ <property name="alignment">
+ <set>WordBreak|AlignVCenter</set>
+ </property>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer8</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Fixed</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>20</width>
+ <height>30</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QLayoutWidget">
+ <property name="name">
+ <cstring>layout7</cstring>
+ </property>
+ <grid>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <spacer row="0" column="0" rowspan="3" colspan="1">
+ <property name="name">
+ <cstring>spacer16</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Fixed</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>30</width>
+ <height>50</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QCheckBox" row="2" column="1">
+ <property name="name">
+ <cstring>uninstallBox</cstring>
+ </property>
+ <property name="text">
+ <string>Place a shortcut to the uninstaller on the desktop</string>
+ </property>
+ <property name="checked">
+ <bool>true</bool>
+ </property>
+ </widget>
+ <widget class="QCheckBox" row="1" column="1">
+ <property name="name">
+ <cstring>shortcutBox</cstring>
+ </property>
+ <property name="text">
+ <string>Place a shortcut to [AppName] on the desktop</string>
+ </property>
+ <property name="checked">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </grid>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer9</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>20</width>
+ <height>90</height>
+ </size>
+ </property>
+ </spacer>
+ </vbox>
+ </widget>
+ </widget>
+ </vbox>
+ </widget>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>1</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <property name="margin">
+ <number>0</number>
+ </property>
+ <property name="spacing">
+ <number>0</number>
+ </property>
+ <widget class="QWidgetStack">
+ <property name="name">
+ <cstring>uninstallStack</cstring>
+ </property>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>0</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>textLabel1_3</cstring>
+ </property>
+ <property name="text">
+ <string>Please select from the list below the applications you wish to uninstall.</string>
+ </property>
+ </widget>
+ <widget class="QListView">
+ <column>
+ <property name="text">
+ <string>Application Name</string>
+ </property>
+ <property name="clickable">
+ <bool>true</bool>
+ </property>
+ <property name="resizable">
+ <bool>true</bool>
+ </property>
+ </column>
+ <property name="name">
+ <cstring>appList</cstring>
+ </property>
+ </widget>
+ </vbox>
+ </widget>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>1</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>textLabel2_3</cstring>
+ </property>
+ <property name="text">
+ <string>The following files will be removed.&lt;br&gt;
+Please check this list, and click &lt;b&gt;next&lt;/b&gt; to continue.</string>
+ </property>
+ <property name="textFormat">
+ <enum>RichText</enum>
+ </property>
+ </widget>
+ <widget class="QListBox">
+ <property name="name">
+ <cstring>fileList</cstring>
+ </property>
+ </widget>
+ </vbox>
+ </widget>
+ <widget class="QWidget">
+ <property name="name">
+ <cstring>WStackPage</cstring>
+ </property>
+ <attribute name="id">
+ <number>2</number>
+ </attribute>
+ <vbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <spacer>
+ <property name="name">
+ <cstring>spacer14</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Fixed</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>16</width>
+ <height>30</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QLabel">
+ <property name="name">
+ <cstring>pleaseWaitLabel2</cstring>
+ </property>
+ <property name="text">
+ <string>Please wait while the selected packages are removed...</string>
+ </property>
+ </widget>
+ <spacer>
+ <property name="name">
+ <cstring>spacer15_2</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Vertical</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>41</width>
+ <height>156</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QFrame">
+ <property name="name">
+ <cstring>logFrame_2</cstring>
+ </property>
+ <property name="sizePolicy">
+ <sizepolicy>
+ <hsizetype>5</hsizetype>
+ <vsizetype>0</vsizetype>
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="frameShape">
+ <enum>NoFrame</enum>
+ </property>
+ <property name="frameShadow">
+ <enum>Plain</enum>
+ </property>
+ <hbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <property name="margin">
+ <number>0</number>
+ </property>
+ <property name="spacing">
+ <number>0</number>
+ </property>
+ <spacer>
+ <property name="name">
+ <cstring>logSpacer_2_2</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>224</width>
+ <height>20</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QPushButton">
+ <property name="name">
+ <cstring>logButton2</cstring>
+ </property>
+ <property name="text">
+ <string>View log file...</string>
+ </property>
+ </widget>
+ </hbox>
+ </widget>
+ </vbox>
+ </widget>
+ </widget>
+ </vbox>
+ </widget>
+ </widget>
+ </vbox>
+ </widget>
+ </hbox>
+ </widget>
+ <widget class="Line">
+ <property name="name">
+ <cstring>line2</cstring>
+ </property>
+ <property name="frameShape">
+ <enum>HLine</enum>
+ </property>
+ <property name="frameShadow">
+ <enum>Sunken</enum>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ </widget>
+ <widget class="QLayoutWidget">
+ <property name="name">
+ <cstring>layout2</cstring>
+ </property>
+ <hbox>
+ <property name="name">
+ <cstring>unnamed</cstring>
+ </property>
+ <spacer>
+ <property name="name">
+ <cstring>spacer1</cstring>
+ </property>
+ <property name="orientation">
+ <enum>Horizontal</enum>
+ </property>
+ <property name="sizeType">
+ <enum>Expanding</enum>
+ </property>
+ <property name="sizeHint">
+ <size>
+ <width>61</width>
+ <height>31</height>
+ </size>
+ </property>
+ </spacer>
+ <widget class="QPushButton">
+ <property name="name">
+ <cstring>previousButton</cstring>
+ </property>
+ <property name="enabled">
+ <bool>false</bool>
+ </property>
+ <property name="text">
+ <string>&lt; Previous</string>
+ </property>
+ </widget>
+ <widget class="QPushButton">
+ <property name="name">
+ <cstring>nextButton</cstring>
+ </property>
+ <property name="text">
+ <string>Next &gt;</string>
+ </property>
+ <property name="default">
+ <bool>true</bool>
+ </property>
+ </widget>
+ <widget class="QPushButton">
+ <property name="name">
+ <cstring>cancelButton</cstring>
+ </property>
+ <property name="text">
+ <string>Cancel</string>
+ </property>
+ </widget>
+ </hbox>
+ </widget>
+ </vbox>
+</widget>
+<connections>
+ <connection>
+ <sender>nextButton</sender>
+ <signal>clicked()</signal>
+ <receiver>WizardBase</receiver>
+ <slot>nextPressed()</slot>
+ </connection>
+ <connection>
+ <sender>cancelButton</sender>
+ <signal>clicked()</signal>
+ <receiver>WizardBase</receiver>
+ <slot>cancelPressed()</slot>
+ </connection>
+ <connection>
+ <sender>componentList</sender>
+ <signal>selectionChanged(QListViewItem*)</signal>
+ <receiver>WizardBase</receiver>
+ <slot>componentSelected(QListViewItem*)</slot>
+ </connection>
+ <connection>
+ <sender>logButton</sender>
+ <signal>clicked()</signal>
+ <receiver>WizardBase</receiver>
+ <slot>logPressed()</slot>
+ </connection>
+ <connection>
+ <sender>logButton2</sender>
+ <signal>clicked()</signal>
+ <receiver>WizardBase</receiver>
+ <slot>logPressed()</slot>
+ </connection>
+ <connection>
+ <sender>previousButton</sender>
+ <signal>clicked()</signal>
+ <receiver>WizardBase</receiver>
+ <slot>previousPressed()</slot>
+ </connection>
+</connections>
+<tabstops>
+ <tabstop>componentList</tabstop>
+ <tabstop>componentInfo</tabstop>
+ <tabstop>logButton</tabstop>
+ <tabstop>previousButton</tabstop>
+ <tabstop>nextButton</tabstop>
+ <tabstop>cancelButton</tabstop>
+</tabstops>
+<includes>
+ <include location="local" impldecl="in implementation">wizardbase.ui.h</include>
+ <include location="global" impldecl="in implementation">qwidgetstack.h</include>
+</includes>
+<slots>
+ <slot>setAppName( QString n )</slot>
+ <slot>nextPressed()</slot>
+ <slot>previousPressed()</slot>
+ <slot>cancelPressed()</slot>
+ <slot>browsePressed()</slot>
+ <slot>runPressed()</slot>
+ <slot>logPressed()</slot>
+ <slot>componentSelected( QListViewItem * item )</slot>
+</slots>
+<layoutdefaults spacing="6" margin="11"/>
+</UI>
diff --git a/src/arkollon/wizardbase.ui.h b/src/arkollon/wizardbase.ui.h
new file mode 100644
index 0000000..2fd5bce
--- /dev/null
+++ b/src/arkollon/wizardbase.ui.h
@@ -0,0 +1,58 @@
+#include "data.h"
+
+void WizardBase::setAppName( QString n )
+{
+ QPixmap tmp;
+ tmp.convertFromImage(qembed_findImage("packageIcon"));
+ appIcon->setPixmap(tmp);
+ tmp.convertFromImage(qembed_findImage("splash"));
+ splash->setPixmap(tmp);
+
+ setCaption("Installing "+n);
+ titleLabel->setText("<b>Installing "+n+"</b>");
+ appNameLabel->setText("<b>"+n+"</b>");
+ shortcutBox->setText("Place a shortcut to "+n+" on the desktop");
+}
+
+
+void WizardBase::nextPressed()
+{
+
+}
+
+
+void WizardBase::previousPressed()
+{
+
+}
+
+
+void WizardBase::cancelPressed()
+{
+
+}
+
+
+void WizardBase::browsePressed()
+{
+
+}
+
+
+void WizardBase::runPressed()
+{
+
+}
+
+
+void WizardBase::logPressed()
+{
+
+}
+
+
+
+void WizardBase::componentSelected( QListViewItem * )
+{
+
+}