summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/tippercanoe
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/tippercanoe')
-rw-r--r--noatun-plugins/tippercanoe/Makefile.am21
-rw-r--r--noatun-plugins/tippercanoe/core.cpp425
-rw-r--r--noatun-plugins/tippercanoe/font.h258
-rw-r--r--noatun-plugins/tippercanoe/icons.h4847
-rw-r--r--noatun-plugins/tippercanoe/main.cpp170
-rw-r--r--noatun-plugins/tippercanoe/polygon.h98
-rw-r--r--noatun-plugins/tippercanoe/sdlwrap.cpp197
-rw-r--r--noatun-plugins/tippercanoe/symbol.h1021
-rw-r--r--noatun-plugins/tippercanoe/syna.h247
-rw-r--r--noatun-plugins/tippercanoe/synaescope.cpp103
-rw-r--r--noatun-plugins/tippercanoe/synaescope.h46
-rw-r--r--noatun-plugins/tippercanoe/tippecanoe.plugin72
-rw-r--r--noatun-plugins/tippercanoe/ui.cpp507
13 files changed, 8012 insertions, 0 deletions
diff --git a/noatun-plugins/tippercanoe/Makefile.am b/noatun-plugins/tippercanoe/Makefile.am
new file mode 100644
index 0000000..b557d10
--- /dev/null
+++ b/noatun-plugins/tippercanoe/Makefile.am
@@ -0,0 +1,21 @@
+INCLUDES= $(all_includes) $(SDL_CFLAGS)
+
+METASOURCES = AUTO
+
+kde_module_LTLIBRARIES = noatuntippecanoe.la
+
+noatuntippecanoe_la_SOURCES = synaescope.cpp
+noatuntippecanoe_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
+noatuntippecanoe_la_LIBADD = $(LIB_KFILE) -lnoatun -lm
+
+bin_PROGRAMS = noatuntippecanoe.bin
+
+noatuntippecanoe_bin_SOURCES = core.cpp main.cpp ui.cpp sdlwrap.cpp
+noatuntippecanoe_bin_LDFLAGS = $(all_libraries) $(KDE_RPATH)
+noatuntippecanoe_bin_LDADD = $(LIB_KDEUI) -lm $(SDL_LIBS)
+
+noatun_DATA = tippecanoe.plugin
+noatundir = $(kde_datadir)/noatun
+
+messages: rc.cpp
+ $(XGETTEXT) *.cpp *.h -o $(podir)/tippecanoe.pot
diff --git a/noatun-plugins/tippercanoe/core.cpp b/noatun-plugins/tippercanoe/core.cpp
new file mode 100644
index 0000000..0fb6fa2
--- /dev/null
+++ b/noatun-plugins/tippercanoe/core.cpp
@@ -0,0 +1,425 @@
+/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
+ Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au>
+ 2001 Charles Samuels <charles@kde.org>
+
+ 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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <math.h>
+#include <string.h>
+#include "syna.h"
+#include <unistd.h>
+Core *core;
+
+#define outputs unsigned char *Dlo=(unsigned char*)lastOutputBmp.data; \
+unsigned char *Dllo=(unsigned char*)lastLastOutputBmp.data; \
+unsigned char *Do=(unsigned char*)outputBmp.data;
+
+void Core::setupPalette(double) { interface->setupPalette(); }
+
+int Core::bitReverser(int i)
+{
+ int sum=0,j;
+ for(j=0;j<LogSize;j++)
+ {
+ sum = (i&1)+sum*2;
+ i >>= 1;
+ }
+ return sum;
+}
+
+void Core::fft(double *x,double *y)
+{
+ int n2 = NumSamples, n1;
+ int twoToTheK;
+ for(twoToTheK=1;twoToTheK<NumSamples;twoToTheK*=2)
+ {
+ n1 = n2;
+ n2 /= 2;
+ for(int j=0;j<n2;j++)
+ {
+ double c = cosTable[j*twoToTheK&(NumSamples-1)],
+ s = negSinTable[j*twoToTheK&(NumSamples-1)];
+ for(int i=j;i<NumSamples;i+=n1)
+ {
+ int l = i+n2;
+ double xt = x[i] - x[l];
+ x[i] = (x[i] + x[l]);
+ double yt = y[i] - y[l];
+ y[i] = (y[i] + y[l]);
+ x[l] = xt*c - yt*s;
+ y[l] = xt*s + yt*c;
+ }
+ }
+ }
+}
+
+void Core::setStarSize(double size)
+{
+ //int factor = (fadeMode == Flame ? 100 :
+ // (fadeMode == Wave ? 150 : 200));
+
+ double fadeModeFudge = (fadeMode == Wave ? 0.4 :
+ (fadeMode == Flame ? 0.6 : 0.78));
+
+ int factor;
+ if (size > 0.0)
+ factor = int(exp(log(fadeModeFudge) / (size*8.0))*255);
+ else
+ factor = 0;
+
+ if (factor > 255) factor = 255;
+
+ for(int i=0;i<256;i++)
+ scaleDown[i] = i*factor>>8;
+
+ maxStarRadius = 1;
+ for(int i=255;i;i = scaleDown[i])
+ maxStarRadius++;
+}
+
+inline void Core::addPixel(int x,int y,int br1,int br2)
+{
+ if (x < 0 || x >= outWidth || y < 0 || y >= outHeight) return;
+
+ unsigned char *p = output()+x*2+y*outWidth*2;
+ if (p[0] < 255-br1) p[0] += br1; else p[0] = 255;
+ if (p[1] < 255-br2) p[1] += br2; else p[1] = 255;
+ //p += lastOutput()-output();
+ //if (p[0] < 255-br1) p[0] += br1; else p[0] = 255;
+ //if (p[1] < 255-br2) p[1] += br2; else p[1] = 255;
+}
+
+inline void Core::addPixelFast(unsigned char *p,int br1,int br2)
+{
+ if (p[0] < 255-br1) p[0] += br1; else p[0] = 255;
+ if (p[1] < 255-br2) p[1] += br2; else p[1] = 255;
+ //p += lastOutput()-output();
+ //if (p[0] < 255-br1) p[0] += br1; else p[0] = 255;
+ //if (p[1] < 255-br2) p[1] += br2; else p[1] = 255;
+}
+
+void Core::fadeFade()
+{
+ register unsigned long *ptr = (unsigned long*)output();
+ int i = outWidth*outHeight*2/4;
+ do {
+ //Bytewize version was: *(ptr++) -= *ptr+(*ptr>>1)>>4;
+ if (*ptr) {
+ //if (*ptr & 0xf0f0f0f0ul)
+ *ptr -= ((*ptr & 0xf0f0f0f0ul) >> 4) + ((*ptr & 0xe0e0e0e0ul) >> 5);
+ ptr++;
+ }
+
+ //else {
+ // *(ptr++) = (*ptr * 14 >> 4) & 0x0f0f0f0ful;
+ //}
+ else
+ ptr++;
+ } while(--i > 0);
+}
+
+inline void Core::fadePixelWave(int x,int y,int where,int step)
+{
+outputs
+ short j =
+ ( short(getPixel(x-1,y,where-2))+
+ getPixel(x+1,y,where+2)+
+ getPixel(x,y-1,where-step)+
+ getPixel(x,y+1,where+step)
+ >> 2)
+ +Dlo[where];
+ if (!j) { Do[where] = 0; return; }
+ j = j
+ -Dllo[where]
+ -1;
+ if (j < 0) Do[where] = 0;
+ else if (j & (255*256)) Do[where] = 255;
+ else Do[where] = j;
+}
+
+void Core::fadeWave()
+{
+ unsigned short *t = lastLastOutputBmp.data;
+ lastLastOutputBmp.data = lastOutputBmp.data;
+ lastOutputBmp.data = outputBmp.data;
+ outputBmp.data = t;
+
+ int x,y,i,j,start,end;
+ int step = outWidth*2;
+ for(x=0,i=0,j=outWidth*(outHeight-1)*2;x<outWidth;x++,i+=2,j+=2) {
+ fadePixelWave(x,0,i,step);
+ fadePixelWave(x,0,i+1,step);
+ fadePixelWave(x,outHeight-1,j,step);
+ fadePixelWave(x,outHeight-1,j+1,step);
+ }
+
+ for(y=1,i=outWidth*2,j=outWidth*4-2;y<outHeight;y++,i+=step,j+=step) {
+ fadePixelWave(0,y,i,step);
+ fadePixelWave(0,y,i+1,step);
+ fadePixelWave(outWidth-1,y,j,step);
+ fadePixelWave(outWidth-1,y,j+1,step);
+ }
+outputs
+
+ for(y=1,
+ start=outWidth*2+2,
+ end=outWidth*4-2; y<outHeight-1; y++,start+=step,end+=step) {
+ int i = start;
+ do {
+ short j =
+ ( short(Dlo[i-2])+
+ Dlo[i+2]+
+ Dlo[i-step]+
+ Dlo[i+step]
+ >> 2)
+ +Dlo[i];
+ if (!j) {
+ Do[i] = 0;
+ } else {
+ j = j
+ -Dllo[i]
+ -1;
+ if (j < 0) Do[i] = 0;
+ else if (j & (255*256)) Do[i] = 255;
+ else Do[i] = j;
+ }
+ } while(++i < end);
+ }
+}
+
+inline void Core::fadePixelHeat(int x,int y,int where,int step)
+{
+outputs
+ short j =
+ ( short(getPixel(x-1,y,where-2))+
+ getPixel(x+1,y,where+2)+
+ getPixel(x,y-1,where-step)+
+ getPixel(x,y+1,where+step)
+ >> 2)
+ +Dlo[where];
+ if (!j) { Do[where] = 0; return; }
+ j = j
+ -Dllo[where]
+ -1;
+ if (j < 0) Do[where] = 0;
+ else if (j & (255*256)) Do[where] = 255;
+ else Do[where] = j;
+}
+
+void Core::fadeHeat()
+{
+ unsigned short *t = lastLastOutputBmp.data;
+ lastLastOutputBmp.data = lastOutputBmp.data;
+ lastOutputBmp.data = outputBmp.data;
+ outputBmp.data = t;
+
+ int x,y,i,j,start,end;
+ int step = outWidth*2;
+ for(x=0,i=0,j=outWidth*(outHeight-1)*2;x<outWidth;x++,i+=2,j+=2)
+ {
+ fadePixelHeat(x,0,i,step);
+ fadePixelHeat(x,0,i+1,step);
+ fadePixelHeat(x,outHeight-1,j,step);
+ fadePixelHeat(x,outHeight-1,j+1,step);
+ }
+
+ for(y=1,i=outWidth*2,j=outWidth*4-2;y<outHeight;y++,i+=step,j+=step)
+ {
+ fadePixelHeat(0,y,i,step);
+ fadePixelHeat(0,y,i+1,step);
+ fadePixelHeat(outWidth-1,y,j,step);
+ fadePixelHeat(outWidth-1,y,j+1,step);
+ }
+
+outputs
+ for(y=1,start=outWidth*2+2,
+ end=outWidth*4-2; y<outHeight-1; y++,start+=step,end+=step)
+ {
+ int i = start;
+ do
+ {
+ short j =
+ ( short(Dlo[i-2])+
+ Dlo[i+2]+
+ +Dlo[i-step]
+ +Dlo[i+step]
+ >> 2)
+ +Dlo[i];
+ if (!j) {
+ Do[i] = 0;
+ }
+ else
+ {
+ j = j
+ -Dllo[i]
+ +(Dllo[i]
+ -Dlo[i]>>2)
+ -1;
+ if (j < 0) Do[i] = 0;
+ else if (j & (255*256)) Do[i] = 255;
+ else Do[i] = j;
+ }
+ } while(++i < end);
+ }
+}
+
+void Core::fade()
+{
+ switch(fadeMode)
+ {
+ case Stars :
+ fadeFade();
+ break;
+ case Flame :
+ fadeHeat();
+ break;
+ case Wave :
+ fadeWave();
+ break;
+ default:
+ break;
+ }
+}
+
+bool Core::calculate()
+{
+ double x[NumSamples], y[NumSamples];
+ double a[NumSamples], b[NumSamples];
+ int clarity[NumSamples]; //Surround sound
+ int i,j,k;
+#ifndef LITTLEENDIAN
+ register sampleType temp;
+#endif
+
+ int brightFactor = int(Brightness * brightnessTwiddler /(starSize+0.01));
+
+ int num;
+ if ((num=read(0, data, NumSamples))==0)
+ return false;
+
+ for(i=0;i<NumSamples;i++)
+ {
+# ifdef LITTLEENDIAN
+ x[i] = data[i*2];
+ y[i] = data[i*2+1];
+# else
+ // Need to convert to big-endian
+ temp = data[i*2];
+ temp = (temp >> 8) | (temp << 8);
+ x[i] = temp;
+ temp = data[i*2+1];
+ temp = (temp << 8) | (temp >> 8);
+ y[i] = temp;
+# endif
+ }
+
+ fft(x,y);
+
+ for(i=0 +1;i<NumSamples;i++)
+ {
+ double x1 = x[bitReverse[i]],
+ y1 = y[bitReverse[i]],
+ x2 = x[bitReverse[NumSamples-i]],
+ y2 = y[bitReverse[NumSamples-i]],
+ aa,bb;
+ a[i] = sqrt(aa= (x1+x2)*(x1+x2) + (y1-y2)*(y1-y2) );
+ b[i] = sqrt(bb= (x1-x2)*(x1-x2) + (y1+y2)*(y1+y2) );
+ if (aa+bb != 0.0)
+ clarity[i] = (int)(
+ ( (x1+x2) * (x1-x2) + (y1+y2) * (y1-y2) )/(aa+bb) * 256 );
+ else
+ clarity[i] = 0;
+ }
+
+ int heightFactor = NumSamples/2 / outHeight + 1;
+ int actualHeight = NumSamples/2/heightFactor;
+ int heightAdd = outHeight + actualHeight >> 1;
+
+ // Correct for window size
+ double brightFactor2 = (brightFactor/65536.0/NumSamples)*
+ sqrt(actualHeight*outWidth/(320.0*200.0));
+
+ for(i=1;i<NumSamples/2;i++) {
+ //int h = (int)( b[i]*280 / (a[i]+b[i]+0.0001)+20 );
+ if (a[i] > 0 || b[i] > 0) {
+ int h = (int)( b[i]*outWidth / (a[i]+b[i]) );
+ int br1, br2, br = (int)(
+ (a[i]+b[i])*i*brightFactor2 );
+ br1 = br*(clarity[i]+128)>>8;
+ br2 = br*(128-clarity[i])>>8;
+ if (br1 < 0) br1 = 0; else if (br1 > 255) br1 = 255;
+ if (br2 < 0) br2 = 0; else if (br2 > 255) br2 = 255;
+ //unsigned char *p = output+ h*2+(164-((i<<8)>>m))*(outWidth*2);
+ int px = h,
+ py = heightAdd - i / heightFactor;
+
+ if (pointsAreDiamonds)
+ {
+ addPixel(px,py,br1,br2);
+ br1=scaleDown[br1];br2=scaleDown[br2];
+
+ //TODO: Use addpixelfast
+ for(j=1;br1>0||br2>0;j++,br1=scaleDown[br1],br2=scaleDown[br2])
+ {
+ for(k=0;k<j;k++)
+ {
+ addPixel(px-j+k,py-k,br1,br2);
+ addPixel(px+k,py-j+k,br1,br2);
+ addPixel(px+j-k,py+k,br1,br2);
+ addPixel(px-k,py+j-k,br1,br2);
+ }
+ }
+ }
+ else
+ {
+ if (px < maxStarRadius || py < maxStarRadius ||
+ px > outWidth-maxStarRadius || py > outHeight-maxStarRadius)
+ {
+ addPixel(px,py,br1,br2);
+ for(j=1;br1>0||br2>0;j++,br1=scaleDown[br1],br2=scaleDown[br2])
+ {
+ addPixel(px+j,py,br1,br2);
+ addPixel(px,py+j,br1,br2);
+ addPixel(px-j,py,br1,br2);
+ addPixel(px,py-j,br1,br2);
+ }
+ }
+ else
+ {
+ unsigned char *p = output()+px*2+py*outWidth*2, *p1=p, *p2=p, *p3=p, *p4=p;
+ addPixelFast(p,br1,br2);
+ for(;br1>0||br2>0;br1=scaleDown[br1],br2=scaleDown[br2])
+ {
+ p1 += 2;
+ addPixelFast(p1,br1,br2);
+ p2 -= 2;
+ addPixelFast(p2,br1,br2);
+ p3 += outWidth*2;
+ addPixelFast(p3,br1,br2);
+ p4 -= outWidth*2;
+ addPixelFast(p4,br1,br2);
+ }
+ }
+ }
+ }
+ }
+ return true;
+}
+
+#undef outputs
+
diff --git a/noatun-plugins/tippercanoe/font.h b/noatun-plugins/tippercanoe/font.h
new file mode 100644
index 0000000..94d2627
--- /dev/null
+++ b/noatun-plugins/tippercanoe/font.h
@@ -0,0 +1,258 @@
+unsigned char font[] = {
+ 0,0,0,0,0,0,0,0,
+ 126,129,165,129,189,129,126,0,
+ 126,255,219,255,195,255,126,0,
+ 54,127,127,127,62,28,8,0,
+ 8,28,62,127,62,28,8,0,
+ 28,28,8,107,127,107,8,28,
+ 8,28,62,127,62,8,28,62,
+ 0,0,24,60,60,24,0,0,
+ 255,255,231,195,195,231,255,255,
+ 0,60,102,66,66,102,60,0,
+ 255,195,153,189,189,153,195,255,
+ 15,7,13,60,102,102,102,60,
+ 60,102,102,102,60,24,126,24,
+ 48,56,60,54,52,112,240,224,
+ 127,99,127,99,99,103,230,192,
+ 24,219,126,102,102,126,219,24,
+ 64,112,124,127,124,112,64,0,
+ 1,7,31,127,31,7,1,0,
+ 24,60,126,24,24,126,60,24,
+ 102,102,102,102,102,0,102,0,
+ 63,122,122,58,10,10,10,0,
+ 30,51,28,54,54,28,102,60,
+ 0,0,0,0,126,126,126,0,
+ 24,60,126,24,126,60,24,126,
+ 24,60,126,24,24,24,24,0,
+ 24,24,24,24,126,60,24,0,
+ 0,12,14,127,14,12,0,0,
+ 0,24,56,127,56,24,0,0,
+ 0,0,96,96,96,127,0,0,
+ 0,36,102,255,102,36,0,0,
+ 0,24,60,126,255,255,0,0,
+ 0,255,255,126,60,24,0,0,
+ 0,0,0,0,0,0,0,0,
+ 24,24,24,24,24,0,24,0,
+ 102,102,102,0,0,0,0,0,
+ 108,108,254,108,254,108,108,0,
+ 16,124,208,124,22,124,16,0,
+ 0,198,204,24,48,102,198,0,
+ 56,108,56,118,220,204,118,0,
+ 24,24,48,0,0,0,0,0,
+ 12,24,48,48,48,24,12,0,
+ 48,24,12,12,12,24,48,0,
+ 0,108,56,254,56,108,0,0,
+ 0,24,24,126,24,24,0,0,
+ 0,0,0,0,0,24,24,48,
+ 0,0,0,126,0,0,0,0,
+ 0,0,0,0,0,48,48,0,
+ 0,6,12,24,48,96,192,0,
+ 60,102,110,126,118,102,60,0,
+ 12,28,60,12,12,12,12,0,
+ 60,102,6,28,48,96,126,0,
+ 60,102,6,28,6,102,60,0,
+ 28,60,108,204,254,12,12,0,
+ 126,96,96,124,6,102,60,0,
+ 60,96,96,124,102,102,60,0,
+ 126,6,6,12,24,48,48,0,
+ 60,102,102,60,102,102,60,0,
+ 60,102,102,62,6,6,60,0,
+ 0,48,48,0,0,48,48,0,
+ 0,24,24,0,0,24,24,48,
+ 12,24,48,96,48,24,12,0,
+ 0,0,126,0,0,126,0,0,
+ 48,24,12,6,12,24,48,0,
+ 60,102,6,12,24,0,24,0,
+ 60,102,110,110,108,96,60,0,
+ 24,60,102,102,126,102,102,0,
+ 124,102,102,124,102,102,124,0,
+ 60,102,96,96,96,102,60,0,
+ 124,102,102,102,102,102,124,0,
+ 126,96,96,124,96,96,126,0,
+ 126,96,96,124,96,96,96,0,
+ 60,102,96,110,102,102,60,0,
+ 102,102,102,126,102,102,102,0,
+ 60,24,24,24,24,24,60,0,
+ 6,6,6,6,102,102,60,0,
+ 102,108,120,112,120,108,102,0,
+ 96,96,96,96,96,96,126,0,
+ 198,238,254,214,198,198,198,0,
+ 102,118,126,110,102,102,102,0,
+ 60,102,102,102,102,102,60,0,
+ 124,102,102,124,96,96,96,0,
+ 60,102,102,102,102,110,60,6,
+ 124,102,102,124,102,102,102,0,
+ 60,102,96,60,6,102,60,0,
+ 126,24,24,24,24,24,24,0,
+ 102,102,102,102,102,102,60,0,
+ 102,102,102,102,102,60,24,0,
+ 198,198,198,214,254,238,198,0,
+ 102,102,60,24,60,102,102,0,
+ 102,102,102,60,24,24,24,0,
+ 126,6,12,24,48,96,126,0,
+ 60,48,48,48,48,48,60,0,
+ 0,192,96,48,24,12,6,0,
+ 60,12,12,12,12,12,60,0,
+ 24,60,102,0,0,0,0,0,
+ 0,0,0,0,0,0,0,255,
+ 24,24,12,0,0,0,0,0,
+ 0,0,60,6,62,102,62,0,
+ 96,96,96,124,102,102,124,0,
+ 0,0,60,102,96,102,60,0,
+ 6,6,6,62,102,102,62,0,
+ 0,0,60,102,126,96,62,0,
+ 28,54,48,124,48,48,48,0,
+ 0,0,62,102,102,62,6,60,
+ 96,96,124,102,102,102,102,0,
+ 24,0,24,24,24,24,24,0,
+ 12,0,12,12,12,12,108,56,
+ 96,96,102,108,120,108,102,0,
+ 48,48,48,48,48,48,24,0,
+ 0,0,236,254,214,214,198,0,
+ 0,0,124,102,102,102,102,0,
+ 0,0,60,102,102,102,60,0,
+ 0,0,124,102,102,124,96,96,
+ 0,0,62,102,102,62,6,6,
+ 0,0,124,102,96,96,96,0,
+ 0,0,62,96,60,6,124,0,
+ 48,48,124,48,48,54,28,0,
+ 0,0,102,102,102,102,62,0,
+ 0,0,102,102,102,60,24,0,
+ 0,0,198,214,254,238,68,0,
+ 0,0,102,60,24,60,102,0,
+ 0,0,102,102,102,62,6,60,
+ 0,0,126,12,24,48,126,0,
+ 28,48,48,96,48,48,28,0,
+ 24,24,24,24,24,24,24,0,
+ 56,12,12,6,12,12,56,0,
+ 118,220,0,0,0,0,0,0,
+ 0,0,24,60,102,102,126,0,
+ 60,102,96,96,102,60,24,48,
+ 102,0,102,102,102,102,62,0,
+ 14,0,60,102,126,96,60,0,
+ 60,102,60,6,62,102,62,0,
+ 102,0,60,6,62,102,62,0,
+ 112,0,60,6,62,102,62,0,
+ 24,24,60,6,62,102,62,0,
+ 0,0,62,96,96,62,24,48,
+ 60,102,60,102,126,96,60,0,
+ 102,0,60,102,126,96,60,0,
+ 112,0,60,102,126,96,60,0,
+ 102,0,24,24,24,24,24,0,
+ 60,102,24,24,24,24,24,0,
+ 112,0,24,24,24,24,24,0,
+ 198,56,108,198,254,198,198,0,
+ 24,24,0,60,102,126,102,0,
+ 14,0,124,96,120,96,124,0,
+ 0,0,126,26,126,216,126,0,
+ 62,120,216,222,248,216,222,0,
+ 60,102,60,102,102,102,60,0,
+ 102,0,60,102,102,102,60,0,
+ 112,0,60,102,102,102,60,0,
+ 60,102,0,102,102,102,62,0,
+ 112,0,102,102,102,102,62,0,
+ 102,0,102,102,102,62,6,60,
+ 102,60,102,102,102,102,60,0,
+ 102,0,102,102,102,102,60,0,
+ 12,12,62,96,96,62,12,12,
+ 56,108,96,240,96,102,252,0,
+ 102,102,60,24,126,24,126,24,
+ 124,102,102,124,102,111,102,99,
+ 14,27,24,60,24,24,120,48,
+ 14,0,60,6,62,102,62,0,
+ 14,0,24,24,24,24,24,0,
+ 14,0,60,102,102,102,60,0,
+ 14,0,102,102,102,102,62,0,
+ 118,220,0,124,102,102,102,0,
+ 126,0,102,118,126,110,102,0,
+ 62,102,102,62,0,126,0,0,
+ 60,102,102,60,0,126,0,0,
+ 24,0,24,48,96,102,60,0,
+ 0,0,0,126,96,96,0,0,
+ 0,0,0,126,6,6,0,0,
+ 198,204,216,62,99,198,12,31,
+ 198,204,216,54,110,214,31,6,
+ 24,0,24,24,24,24,24,0,
+ 0,54,108,216,108,54,0,0,
+ 0,216,108,54,108,216,0,0,
+ 34,136,34,136,34,136,34,136,
+ 85,170,85,170,85,170,85,170,
+ 221,119,221,119,221,119,221,119,
+ 8,8,8,8,8,8,8,8,
+ 8,8,8,8,248,8,8,8,
+ 8,8,8,248,248,8,8,8,
+ 28,28,28,28,252,28,28,28,
+ 0,0,0,0,252,28,28,28,
+ 0,0,0,248,248,8,8,8,
+ 28,28,28,252,252,28,28,28,
+ 28,28,28,28,28,28,28,28,
+ 0,0,0,252,252,28,28,28,
+ 28,28,28,252,252,0,0,0,
+ 28,28,28,28,252,0,0,0,
+ 8,8,8,248,248,0,0,0,
+ 0,0,0,0,248,8,8,8,
+ 8,8,8,8,15,0,0,0,
+ 8,8,8,8,255,0,0,0,
+ 0,0,0,0,255,8,8,8,
+ 8,8,8,8,15,8,8,8,
+ 0,0,0,0,255,0,0,0,
+ 8,8,8,8,255,8,8,8,
+ 8,8,8,15,15,8,8,8,
+ 28,28,28,28,31,28,28,28,
+ 28,28,28,31,31,0,0,0,
+ 0,0,0,31,31,28,28,28,
+ 28,28,28,255,255,0,0,0,
+ 0,0,0,255,255,28,28,28,
+ 28,28,28,31,31,28,28,28,
+ 0,0,0,255,255,0,0,0,
+ 28,28,28,255,255,28,28,28,
+ 8,8,8,255,255,0,0,0,
+ 28,28,28,28,255,0,0,0,
+ 0,0,0,255,255,8,8,8,
+ 0,0,0,0,255,28,28,28,
+ 28,28,28,28,31,0,0,0,
+ 8,8,8,15,15,0,0,0,
+ 0,0,0,15,15,8,8,8,
+ 0,0,0,0,31,28,28,28,
+ 28,28,28,28,255,28,28,28,
+ 8,8,8,255,255,8,8,8,
+ 8,8,8,8,248,0,0,0,
+ 0,0,0,0,15,8,8,8,
+ 255,255,255,255,255,255,255,255,
+ 0,0,0,0,255,255,255,255,
+ 240,240,240,240,240,240,240,240,
+ 15,15,15,15,15,15,15,15,
+ 255,255,255,255,0,0,0,0,
+ 0,0,118,204,204,204,118,0,
+ 60,102,102,124,102,102,124,96,
+ 126,102,96,96,96,96,96,0,
+ 0,0,254,108,108,108,102,0,
+ 126,102,48,24,48,102,126,0,
+ 0,0,62,108,108,108,56,0,
+ 0,0,102,102,102,102,127,192,
+ 0,0,126,216,24,24,12,0,
+ 124,56,124,214,214,124,56,124,
+ 124,198,198,254,198,198,124,0,
+ 124,198,198,198,108,108,238,0,
+ 30,48,24,60,102,102,60,0,
+ 0,0,126,219,219,126,0,0,
+ 3,6,62,107,115,62,96,192,
+ 30,48,96,126,96,48,30,0,
+ 124,198,198,198,198,198,198,0,
+ 0,126,0,126,0,126,0,0,
+ 24,24,126,24,24,0,126,0,
+ 48,24,12,24,48,0,126,0,
+ 12,24,48,24,12,0,126,0,
+ 14,27,27,24,24,24,24,24,
+ 24,24,24,24,24,216,216,112,
+ 24,24,0,126,0,24,24,0,
+ 0,118,220,0,118,220,0,0,
+ 60,102,102,60,0,0,0,0,
+ 0,0,0,24,24,0,0,0,
+ 0,0,0,0,24,0,0,0,
+ 30,24,24,24,24,216,120,56,
+ 120,108,108,108,108,0,0,0,
+ 56,12,24,48,60,0,0,0,
+ 0,0,60,60,60,60,0,0,
+ 0,0,0,0,0,0,0,0
+};
diff --git a/noatun-plugins/tippercanoe/icons.h b/noatun-plugins/tippercanoe/icons.h
new file mode 100644
index 0000000..2056e19
--- /dev/null
+++ b/noatun-plugins/tippercanoe/icons.h
@@ -0,0 +1,4847 @@
+double Icon0[][4] = {
+ {0.5,0,0.166666666666667,0.333333333333333},
+ {0.5,1,0.5,0},
+ {0.166666666666667,0.666666666666667,0.5,1},
+ {0,0.333333333333333,0,0.666666666666667},
+ {0,0,0,0}
+};
+
+double Icon1[][4] = {
+ {0.5,0.262222,0.487778,0.185},
+ {0.487778,0.185,0.452222666666667,0.115},
+ {0.452222666666667,0.115,0.397222666666667,0.0599999999999999},
+ {0.397222666666667,0.0599999999999999,0.327222666666667,0.0244446666666664},
+ {0.327222666666667,0.0244446666666664,0.25,0.0122220000000002},
+ {0.25,0.0122220000000002,0.172778,0.0244446666666664},
+ {0.172778,0.0244446666666664,0.102778,0.0599999999999999},
+ {0.102778,0.0599999999999999,0.047778,0.115},
+ {0.047778,0.115,0.0122226666666666,0.185},
+ {0.0122226666666666,0.185,0,0.262222},
+ {0,0.262222,0.0122226666666666,0.339444666666667},
+ {0.0122226666666666,0.339444666666667,0.047778,0.409444666666667},
+ {0.047778,0.409444666666667,0.102778,0.464444666666667},
+ {0.102778,0.464444666666667,0.172778,0.5},
+ {0.172778,0.5,0.25,0.512222},
+ {0.25,0.512222,0.327222666666667,0.5},
+ {0.327222666666667,0.5,0.397222666666667,0.464444666666667},
+ {0.397222666666667,0.464444666666667,0.452222666666667,0.409444666666667},
+ {0.452222666666667,0.409444666666667,0.487778,0.339444666666667},
+ {0.487778,0.339444666666667,0.5,0.262222},
+ {0.381111333333333,0.583333333333333,0.381111333333333,0.541666666666667},
+ {0.131111333333333,0.541666666666667,0.131111333333333,0.583333333333333},
+ {0.381111333333333,0.666666666666667,0.381111333333333,0.625},
+ {0.131111333333333,0.625,0.131111333333333,0.666666666666667},
+ {0.381111333333333,0.75,0.381111333333333,0.708333333333333},
+ {0.131111333333333,0.708333333333333,0.131111333333333,0.75},
+ {0.297778,0.833333333333333,0.339444666666667,0.791666666666667},
+ {0.172778,0.791666666666667,0.214444666666667,0.833333333333333},
+ {0,0,0,0}
+};
+
+double Icon2[][4] = {
+ {0,0.166666666666667,0,0.833333333333333},
+ {0,0.833333333333333,0.333333333333333,0.5},
+ {0.333333333333333,0.5,0,0.166666666666667},
+ {0,0,0,0}
+};
+
+double Icon3[][4] = {
+ {0.166666666666667,0.75,0.166666666666667,0.25},
+ {0,0.25,0,0.75},
+ {0.5,0.75,0.5,0.25},
+ {0.333333333333333,0.25,0.333333333333333,0.75},
+ {0,0,0,0}
+};
+
+double Icon4[][4] = {
+ {0.5,0.75,0.5,0.25},
+ {0,0.25,0,0.75},
+ {0,0,0,0}
+};
+
+double Icon5[][4] = {
+ {0,0.166666666666667,0,0.833333333333333},
+ {0,0.833333333333333,0.166666666666667,0.666666666666667},
+ {0.166666666666667,0.666666666666667,0.166666666666667,0.833333333333333},
+ {0.166666666666667,0.833333333333333,0.458333333333333,0.541666666666667},
+ {0.458333333333333,0.541666666666667,0.458333333333333,0.833333333333333},
+ {0.541666666666667,0.833333333333333,0.541666666666667,0.166666666666667},
+ {0.458333333333333,0.166666666666667,0.458333333333333,0.458333333333333},
+ {0.458333333333333,0.458333333333333,0.166666666666667,0.166666666666667},
+ {0.166666666666667,0.166666666666667,0.166666666666667,0.333333333333333},
+ {0.166666666666667,0.333333333333333,0,0.166666666666667},
+ {0,0,0,0}
+};
+
+double Icon6[][4] = {
+ {0.541666666666667,0.833333333333333,0.541666666666667,0.166666666666667},
+ {0.541666666666667,0.166666666666667,0.375,0.333333333333333},
+ {0.375,0.333333333333333,0.375,0.166666666666667},
+ {0.375,0.166666666666667,0.0833333333333333,0.458333333333333},
+ {0.0833333333333333,0.458333333333333,0.0833333333333333,0.166666666666667},
+ {0,0.166666666666667,0,0.833333333333333},
+ {0.0833333333333333,0.833333333333333,0.0833333333333333,0.541666666666667},
+ {0.0833333333333333,0.541666666666667,0.375,0.833333333333333},
+ {0.375,0.833333333333333,0.375,0.666666666666667},
+ {0.375,0.666666666666667,0.541666666666667,0.833333333333333},
+ {0,0,0,0}
+};
+
+double Icon7[][4] = {
+ {0,0,0,1},
+ {0,1,0.166666666666667,0.833333333333333},
+ {0.166666666666667,0.833333333333333,0.166666666666667,0.166666666666667},
+ {0.166666666666667,0.166666666666667,0,0},
+ {0.125,0.166666666666667,0.125,0.833333333333333},
+ {0.125,0.833333333333333,0.0833333333333333,0.875},
+ {0.0833333333333333,0.875,0.0833333333333333,0.125},
+ {0.0833333333333333,0.125,0.125,0.166666666666667},
+ {0,0,0,0}
+};
+
+double Icon8[][4] = {
+ {0,0,0.166666666666667,0.5},
+ {0.166666666666667,0.5,0.291666666666667,0.375},
+ {0.291666666666667,0.375,0.416666666666667,0.5},
+ {0.416666666666667,0.5,0.5,0.416666666666667},
+ {0.5,0.416666666666667,0.375,0.291666666666667},
+ {0.375,0.291666666666667,0.5,0.166666666666667},
+ {0.5,0.166666666666667,0,0},
+ {0,0,0,0}
+};
+
+double Icon9[][4] = {
+ {0.5,0.833333333333333,0.5,0.791666666666667},
+ {0,0.791666666666667,0,0.833333333333333},
+ {0.0833333333333333,0.625,0,0.791666666666667},
+ {0.5,0.791666666666667,0.416666666666667,0.625},
+ {0.5,0.541666666666667,0.416666666666667,0.375},
+ {0.0833333333333333,0.375,0,0.541666666666667},
+ {0,0.541666666666667,0,0.666666666666667},
+ {0.0416666666666667,0.666666666666667,0.0416666666666667,0.583333333333333},
+ {0.458333333333333,0.583333333333333,0.458333333333333,0.666666666666667},
+ {0.5,0.666666666666667,0.5,0.541666666666667},
+ {0.166666666666667,0.666666666666667,0.173888666666667,0.664444666666667},
+ {0.173888666666667,0.664444666666667,0.181666666666667,0.662778},
+ {0.181666666666667,0.662778,0.191111333333333,0.661111333333333},
+ {0.191111333333333,0.661111333333333,0.201111333333333,0.660555333333334},
+ {0.201111333333333,0.660555333333334,0.212778,0.659444666666667},
+ {0.224444666666667,0.659444666666667,0.237222,0.658888666666667},
+ {0.262778,0.658888666666667,0.275555333333333,0.659444666666667},
+ {0.287222,0.659444666666667,0.298888666666667,0.660555333333334},
+ {0.298888666666667,0.660555333333334,0.308888666666667,0.661111333333333},
+ {0.308888666666667,0.661111333333333,0.318333333333333,0.662778},
+ {0.318333333333333,0.662778,0.326111333333333,0.664444666666667},
+ {0.326111333333333,0.664444666666667,0.333333333333333,0.666666666666667},
+ {0.333333333333333,0.666666666666667,0.339444666666666,0.669444666666667},
+ {0.339444666666666,0.669444666666667,0.345,0.673333333333333},
+ {0.345,0.673333333333333,0.35,0.677778},
+ {0.35,0.677778,0.355,0.682778},
+ {0.355,0.682778,0.359999999999999,0.688888666666667},
+ {0.359999999999999,0.688888666666667,0.364444666666666,0.695},
+ {0.364444666666666,0.695,0.369444666666666,0.701666666666667},
+ {0.369444666666666,0.701666666666667,0.373888666666667,0.708333333333333},
+ {0.373888666666667,0.708333333333333,0.377778,0.715},
+ {0.377778,0.715,0.381111333333333,0.721666666666666},
+ {0.381111333333333,0.721666666666666,0.383888666666666,0.727778},
+ {0.383888666666666,0.727778,0.385,0.733888666666667},
+ {0.385,0.733888666666667,0.385,0.738888666666667},
+ {0.385,0.738888666666667,0.383888666666666,0.743333333333334},
+ {0.383888666666666,0.743333333333334,0.380555333333334,0.747222},
+ {0.380555333333334,0.747222,0.375,0.75},
+ {0.375,0.75,0.368888666666667,0.751666666666667},
+ {0.368888666666667,0.751666666666667,0.361666666666667,0.753333333333333},
+ {0.361666666666667,0.753333333333333,0.352222,0.754444666666667},
+ {0.352222,0.754444666666667,0.341111333333333,0.755555333333334},
+ {0.341111333333333,0.755555333333334,0.328888666666666,0.756111333333333},
+ {0.328888666666666,0.756111333333333,0.315,0.756666666666667},
+ {0.315,0.756666666666667,0.299444666666666,0.757222},
+ {0.299444666666666,0.757222,0.283888666666667,0.757778},
+ {0.216111333333333,0.757778,0.200555333333334,0.757222},
+ {0.200555333333334,0.757222,0.185,0.756666666666667},
+ {0.185,0.756666666666667,0.171111333333333,0.756111333333333},
+ {0.171111333333333,0.756111333333333,0.158888666666667,0.755555333333334},
+ {0.158888666666667,0.755555333333334,0.147778,0.754444666666667},
+ {0.147778,0.754444666666667,0.138333333333333,0.753333333333333},
+ {0.138333333333333,0.753333333333333,0.131111333333333,0.751666666666667},
+ {0.131111333333333,0.751666666666667,0.125,0.75},
+ {0.125,0.75,0.119444666666666,0.747222},
+ {0.119444666666666,0.747222,0.116111333333334,0.743333333333334},
+ {0.116111333333334,0.743333333333334,0.115,0.738888666666667},
+ {0.115,0.738888666666667,0.115,0.733888666666667},
+ {0.115,0.733888666666667,0.116111333333334,0.727778},
+ {0.116111333333334,0.727778,0.118888666666667,0.721666666666666},
+ {0.118888666666667,0.721666666666666,0.122222,0.715},
+ {0.122222,0.715,0.126111333333333,0.708333333333333},
+ {0.126111333333333,0.708333333333333,0.130555333333334,0.701666666666667},
+ {0.130555333333334,0.701666666666667,0.135555333333334,0.695},
+ {0.135555333333334,0.695,0.140000000000001,0.688888666666667},
+ {0.140000000000001,0.688888666666667,0.145,0.682778},
+ {0.145,0.682778,0.15,0.677778},
+ {0.15,0.677778,0.155,0.673333333333333},
+ {0.155,0.673333333333333,0.160555333333334,0.669444666666667},
+ {0.160555333333334,0.669444666666667,0.166666666666667,0.666666666666667},
+ {0,0,0,0}
+};
+
+double Icon10[][4] = {
+ {0.707221999999999,0.271111333333333,0.589444666666666,0.153333333333334},
+ {0.471111333333333,0.507222,0.707221999999999,0.271111333333333},
+ {0.707221999999999,0.742778,0.471111333333333,0.507222},
+ {0.589444666666666,0.860555333333333,0.707221999999999,0.742778},
+ {0.353333333333333,0.625,0.589444666666666,0.860555333333333},
+ {0.117778,0.860555333333333,0.353333333333333,0.625},
+ {0,0.742778,0.117778,0.860555333333333},
+ {0.235555333333333,0.507222,0,0.742778},
+ {0,0.271111333333333,0.235555333333333,0.507222},
+ {0.117778,0.153333333333334,0,0.271111333333333},
+ {0.353333333333333,0.388888666666666,0.117778,0.153333333333334},
+ {0.589444666666666,0.153333333333334,0.353333333333333,0.388888666666666},
+ {0,0,0,0}
+};
+
+double Icon11[][4] = {
+ {0.75,0.708333333333333,0.75,0.291666666666667},
+ {0,0.291666666666667,0,0.708333333333333},
+ {0.184444666666667,0.333333333333333,0.184444666666667,0.416666666666667},
+ {0.0894446666666665,0.416666666666667,0.0894446666666665,0.458333333333333},
+ {0.136666666666667,0.458333333333333,0.136666666666667,0.541666666666667},
+ {0.0894446666666665,0.541666666666667,0.0894446666666665,0.583333333333333},
+ {0.184444666666667,0.583333333333333,0.184444666666667,0.666666666666667},
+ {0.0416666666666667,0.666666666666667,0.0416666666666667,0.333333333333333},
+ {0.28,0.333333333333333,0.327778,0.458333333333333},
+ {0.327778,0.458333333333333,0.375,0.333333333333333},
+ {0.422222,0.333333333333333,0.363333333333333,0.5},
+ {0.363333333333333,0.5,0.422222,0.666666666666667},
+ {0.375,0.666666666666667,0.327778,0.541666666666667},
+ {0.327778,0.541666666666667,0.28,0.666666666666667},
+ {0.232222,0.666666666666667,0.291666666666667,0.5},
+ {0.291666666666667,0.5,0.232222,0.333333333333333},
+ {0.517778,0.333333333333333,0.517778,0.666666666666667},
+ {0.47,0.666666666666667,0.47,0.333333333333333},
+ {0.708333333333333,0.333333333333333,0.708333333333333,0.416666666666667},
+ {0.660555333333333,0.416666666666667,0.660555333333333,0.666666666666667},
+ {0.613333333333333,0.666666666666667,0.613333333333333,0.416666666666667},
+ {0.565555333333333,0.416666666666667,0.565555333333333,0.333333333333333},
+ {0,0,0,0}
+};
+
+double Icon12[][4] = {
+ {0.298333333333333,0.31,0.293888666666666,0.301666666666667},
+ {0.302221999999999,0.32,0.298333333333333,0.31},
+ {0.305555333333333,0.331111333333334,0.302221999999999,0.32},
+ {0.308333333333334,0.343888666666667,0.305555333333333,0.331111333333334},
+ {0.310555333333333,0.357222,0.308333333333334,0.343888666666667},
+ {0.312777333333333,0.372778,0.310555333333333,0.357222},
+ {0.314443999999999,0.388888666666666,0.312777333333333,0.372778},
+ {0.315555333333333,0.406111333333333,0.314443999999999,0.388888666666666},
+ {0.316666666666666,0.424444666666667,0.315555333333333,0.406111333333333},
+ {0.317777333333333,0.443888666666667,0.316666666666666,0.424444666666667},
+ {0.318333333333333,0.463333333333334,0.317777333333333,0.443888666666667},
+ {0.318888666666666,0.483888666666667,0.318333333333333,0.463333333333334},
+ {0.318888666666666,0.505,0.318888666666666,0.483888666666667},
+ {0.318888666666666,0.526111333333333,0.318888666666666,0.505},
+ {0.318888666666666,0.546666666666667,0.318888666666666,0.526111333333333},
+ {0.318888666666666,0.567778,0.318888666666666,0.546666666666667},
+ {0.318333333333333,0.588333333333334,0.318888666666666,0.567778},
+ {0.317777333333333,0.607778,0.318333333333333,0.588333333333334},
+ {0.316666666666666,0.627222,0.317777333333333,0.607778},
+ {0.315555333333333,0.645555333333334,0.316666666666666,0.627222},
+ {0.314443999999999,0.662778,0.315555333333333,0.645555333333334},
+ {0.312777333333333,0.678888666666667,0.314443999999999,0.662778},
+ {0.310555333333333,0.694444666666667,0.312777333333333,0.678888666666667},
+ {0.308333333333334,0.707778,0.310555333333333,0.694444666666667},
+ {0.305555333333333,0.720555333333333,0.308333333333334,0.707778},
+ {0.302221999999999,0.731666666666667,0.305555333333333,0.720555333333333},
+ {0.298333333333333,0.741666666666667,0.302221999999999,0.731666666666667},
+ {0.293888666666666,0.75,0.298333333333333,0.741666666666667},
+ {0.287777333333333,0.758333333333334,0.293888666666666,0.75},
+ {0.280555333333333,0.765555333333333,0.287777333333333,0.758333333333334},
+ {0.272777333333333,0.771666666666667,0.280555333333333,0.765555333333333},
+ {0.263333333333333,0.776666666666667,0.272777333333333,0.771666666666667},
+ {0.252777333333333,0.781111333333333,0.263333333333333,0.776666666666667},
+ {0.241666666666666,0.783888666666667,0.252777333333333,0.781111333333333},
+ {0.229444,0.786666666666667,0.241666666666666,0.783888666666667},
+ {0.216666666666666,0.788888666666667,0.229444,0.786666666666667},
+ {0.202777333333334,0.79,0.216666666666666,0.788888666666667},
+ {0.188888666666666,0.791111333333333,0.202777333333334,0.79},
+ {0.173888666666667,0.791666666666667,0.188888666666666,0.791111333333333},
+ {0.159443999999999,0.792222,0.173888666666667,0.791666666666667},
+ {0.145,0.791666666666667,0.159443999999999,0.792222},
+ {0.13,0.791111333333333,0.145,0.791666666666667},
+ {0.116110666666666,0.79,0.13,0.791111333333333},
+ {0.102222,0.788888666666667,0.116110666666666,0.79},
+ {0.0894440000000003,0.786666666666667,0.102222,0.788888666666667},
+ {0.0772220000000002,0.783888666666667,0.0894440000000003,0.786666666666667},
+ {0.0661106666666669,0.781111333333333,0.0772220000000002,0.783888666666667},
+ {0.0555553333333331,0.776666666666667,0.0661106666666669,0.781111333333333},
+ {0.0461106666666661,0.771666666666667,0.0555553333333331,0.776666666666667},
+ {0.0383333333333328,0.765555333333333,0.0461106666666661,0.771666666666667},
+ {0.0311106666666667,0.758333333333334,0.0383333333333328,0.765555333333333},
+ {0.0249999999999998,0.75,0.0311106666666667,0.758333333333334},
+ {0.020555333333333,0.741666666666667,0.0249999999999998,0.75},
+ {0.0166666666666669,0.731666666666667,0.020555333333333,0.741666666666667},
+ {0.013333333333333,0.720555333333333,0.0166666666666669,0.731666666666667},
+ {0.0105553333333326,0.707778,0.013333333333333,0.720555333333333},
+ {0.00833333333333286,0.694444666666667,0.0105553333333326,0.707778},
+ {0.00611066666666697,0.678888666666667,0.00833333333333286,0.694444666666667},
+ {0.00444399999999945,0.662778,0.00611066666666697,0.678888666666667},
+ {0.00333333333333267,0.645555333333334,0.00444399999999945,0.662778},
+ {0.00222199999999972,0.627222,0.00333333333333267,0.645555333333334},
+ {0.00111066666666678,0.607778,0.00222199999999972,0.627222},
+ {0.000555333333333389,0.588333333333334,0.00111066666666678,0.607778},
+ {0,0.567778,0.000555333333333389,0.588333333333334},
+ {0,0.546666666666667,0,0.567778},
+ {0,0.525555333333333,0,0.546666666666667},
+ {0,0.505,0,0.525555333333333},
+ {0,0.483888666666667,0,0.505},
+ {0.000555333333333389,0.463333333333334,0,0.483888666666667},
+ {0.00111066666666678,0.443888666666667,0.000555333333333389,0.463333333333334},
+ {0.00222199999999972,0.424444666666667,0.00111066666666678,0.443888666666667},
+ {0.00333333333333267,0.406111333333333,0.00222199999999972,0.424444666666667},
+ {0.00444399999999945,0.388888666666666,0.00333333333333267,0.406111333333333},
+ {0.00611066666666697,0.372778,0.00444399999999945,0.388888666666666},
+ {0.00833333333333286,0.357222,0.00611066666666697,0.372778},
+ {0.0105553333333326,0.343888666666667,0.00833333333333286,0.357222},
+ {0.013333333333333,0.331111333333334,0.0105553333333326,0.343888666666667},
+ {0.0166666666666669,0.32,0.013333333333333,0.331111333333334},
+ {0.020555333333333,0.31,0.0166666666666669,0.32},
+ {0.0249999999999998,0.301666666666667,0.020555333333333,0.31},
+ {0.0311106666666667,0.293333333333334,0.0249999999999998,0.301666666666667},
+ {0.0383333333333328,0.286111333333333,0.0311106666666667,0.293333333333334},
+ {0.0461106666666661,0.28,0.0383333333333328,0.286111333333333},
+ {0.0555553333333331,0.275,0.0461106666666661,0.28},
+ {0.0661106666666669,0.270555333333334,0.0555553333333331,0.275},
+ {0.0772220000000002,0.267778,0.0661106666666669,0.270555333333334},
+ {0.0894440000000003,0.265,0.0772220000000002,0.267778},
+ {0.102222,0.262778,0.0894440000000003,0.265},
+ {0.116110666666666,0.261666666666667,0.102222,0.262778},
+ {0.13,0.260555333333333,0.116110666666666,0.261666666666667},
+ {0.145,0.26,0.13,0.260555333333333},
+ {0.159443999999999,0.259444666666666,0.145,0.26},
+ {0.173888666666667,0.26,0.159443999999999,0.259444666666666},
+ {0.188888666666666,0.260555333333333,0.173888666666667,0.26},
+ {0.202777333333334,0.261666666666667,0.188888666666666,0.260555333333333},
+ {0.216666666666666,0.262778,0.202777333333334,0.261666666666667},
+ {0.229444,0.265,0.216666666666666,0.262778},
+ {0.241666666666666,0.267778,0.229444,0.265},
+ {0.252777333333333,0.270555333333334,0.241666666666666,0.267778},
+ {0.263333333333333,0.275,0.252777333333333,0.270555333333334},
+ {0.272777333333333,0.28,0.263333333333333,0.275},
+ {0.280555333333333,0.286111333333333,0.272777333333333,0.28},
+ {0.287777333333333,0.293333333333334,0.280555333333333,0.286111333333333},
+ {0.293888666666666,0.301666666666667,0.287777333333333,0.293333333333334},
+ {0.210555333333333,0.397222,0.212221999999999,0.403888666666666},
+ {0.212221999999999,0.403888666666666,0.213888666666667,0.411666666666667},
+ {0.213888666666667,0.411666666666667,0.215,0.421111333333334},
+ {0.215,0.421111333333334,0.216110666666667,0.431666666666667},
+ {0.216110666666667,0.431666666666667,0.217222,0.443333333333333},
+ {0.217222,0.443333333333333,0.217777333333333,0.456111333333334},
+ {0.217777333333333,0.456111333333334,0.218333333333333,0.47},
+ {0.218333333333333,0.47,0.218333333333333,0.485},
+ {0.218333333333333,0.485,0.218888666666666,0.5},
+ {0.218888666666666,0.5,0.218888666666666,0.516111333333334},
+ {0.218888666666666,0.516111333333334,0.218888666666666,0.532222},
+ {0.218888666666666,0.532222,0.218888666666666,0.547778},
+ {0.218888666666666,0.547778,0.218888666666666,0.563888666666667},
+ {0.218888666666666,0.563888666666667,0.218333333333333,0.578888666666667},
+ {0.218333333333333,0.578888666666667,0.218333333333333,0.593888666666667},
+ {0.218333333333333,0.593888666666667,0.217777333333333,0.607778},
+ {0.217777333333333,0.607778,0.217222,0.620555333333333},
+ {0.217222,0.620555333333333,0.216110666666667,0.632222},
+ {0.216110666666667,0.632222,0.215,0.642778},
+ {0.215,0.642778,0.213888666666667,0.652222},
+ {0.213888666666667,0.652222,0.212221999999999,0.66},
+ {0.212221999999999,0.66,0.210555333333333,0.666666666666667},
+ {0.210555333333333,0.666666666666667,0.208333333333333,0.672778},
+ {0.208333333333333,0.672778,0.204999999999999,0.677778},
+ {0.204999999999999,0.677778,0.201666666666667,0.681666666666667},
+ {0.201666666666667,0.681666666666667,0.197777333333333,0.685},
+ {0.197777333333333,0.685,0.193333333333333,0.687222},
+ {0.193333333333333,0.687222,0.188333333333333,0.688888666666667},
+ {0.188333333333333,0.688888666666667,0.182777333333333,0.690555333333334},
+ {0.182777333333333,0.690555333333334,0.177221999999999,0.691111333333333},
+ {0.177221999999999,0.691111333333333,0.171666666666667,0.691666666666666},
+ {0.159443999999999,0.691666666666666,0.153888666666666,0.691111333333333},
+ {0.153888666666666,0.691111333333333,0.148333333333333,0.690555333333334},
+ {0.148333333333333,0.690555333333334,0.142777333333332,0.688888666666667},
+ {0.142777333333332,0.688888666666667,0.137777333333333,0.687222},
+ {0.137777333333333,0.687222,0.133333333333333,0.685},
+ {0.133333333333333,0.685,0.129443999999999,0.681666666666667},
+ {0.129443999999999,0.681666666666667,0.126110666666667,0.677778},
+ {0.126110666666667,0.677778,0.122777333333333,0.672778},
+ {0.122777333333333,0.672778,0.120555333333333,0.666666666666667},
+ {0.120555333333333,0.666666666666667,0.118888666666667,0.66},
+ {0.118888666666667,0.66,0.117221999999999,0.652222},
+ {0.117221999999999,0.652222,0.116110666666666,0.642778},
+ {0.116110666666666,0.642778,0.115,0.632222},
+ {0.115,0.632222,0.113888666666667,0.620555333333333},
+ {0.113888666666667,0.620555333333333,0.113333333333333,0.607778},
+ {0.113333333333333,0.607778,0.112777333333333,0.593888666666667},
+ {0.112777333333333,0.593888666666667,0.112777333333333,0.578888666666667},
+ {0.112777333333333,0.578888666666667,0.112221999999999,0.563888666666667},
+ {0.112221999999999,0.563888666666667,0.112221999999999,0.547778},
+ {0.112221999999999,0.547778,0.112221999999999,0.531666666666667},
+ {0.112221999999999,0.531666666666667,0.112221999999999,0.516111333333334},
+ {0.112221999999999,0.516111333333334,0.112221999999999,0.5},
+ {0.112221999999999,0.5,0.112777333333333,0.485},
+ {0.112777333333333,0.485,0.112777333333333,0.47},
+ {0.112777333333333,0.47,0.113333333333333,0.456111333333334},
+ {0.113333333333333,0.456111333333334,0.113888666666667,0.443333333333333},
+ {0.113888666666667,0.443333333333333,0.115,0.431666666666667},
+ {0.115,0.431666666666667,0.116110666666666,0.421111333333334},
+ {0.116110666666666,0.421111333333334,0.117221999999999,0.411666666666667},
+ {0.117221999999999,0.411666666666667,0.118888666666667,0.403888666666666},
+ {0.118888666666667,0.403888666666666,0.120555333333333,0.397222},
+ {0.120555333333333,0.397222,0.122777333333333,0.391111333333334},
+ {0.122777333333333,0.391111333333334,0.126110666666667,0.386111333333333},
+ {0.126110666666667,0.386111333333333,0.129443999999999,0.382222},
+ {0.129443999999999,0.382222,0.133333333333333,0.378888666666667},
+ {0.133333333333333,0.378888666666667,0.137777333333333,0.376666666666667},
+ {0.137777333333333,0.376666666666667,0.142777333333332,0.375},
+ {0.142777333333332,0.375,0.148333333333333,0.373333333333333},
+ {0.148333333333333,0.373333333333333,0.153888666666666,0.372778},
+ {0.153888666666666,0.372778,0.159443999999999,0.372222},
+ {0.171666666666667,0.372222,0.177221999999999,0.372778},
+ {0.177221999999999,0.372778,0.182777333333333,0.373333333333333},
+ {0.182777333333333,0.373333333333333,0.188333333333333,0.375},
+ {0.188333333333333,0.375,0.193333333333333,0.376666666666667},
+ {0.193333333333333,0.376666666666667,0.197777333333333,0.378888666666667},
+ {0.197777333333333,0.378888666666667,0.201666666666667,0.382222},
+ {0.201666666666667,0.382222,0.204999999999999,0.386111333333333},
+ {0.204999999999999,0.386111333333333,0.208333333333333,0.391111333333334},
+ {0.208333333333333,0.391111333333334,0.210555333333333,0.397222},
+ {0,0,0,0}
+};
+
+double Icon13[][4] = {
+ {0.0994446666666668,0.297222,0.0977779999999993,0.288888666666667},
+ {0.100555333333332,0.307222,0.0994446666666668,0.297222},
+ {0.101666666666667,0.318333333333333,0.100555333333332,0.307222},
+ {0.102778,0.331111333333334,0.101666666666667,0.318333333333333},
+ {0.103333333333333,0.344444666666667,0.102778,0.331111333333334},
+ {0.103888666666666,0.36,0.103333333333333,0.344444666666667},
+ {0.104444666666666,0.376111333333334,0.103888666666666,0.36},
+ {0.104999999999999,0.393333333333333,0.104444666666666,0.376111333333334},
+ {0.105555333333333,0.411666666666667,0.104999999999999,0.393333333333333},
+ {0.105555333333333,0.431111333333333,0.105555333333333,0.411666666666667},
+ {0.106111333333333,0.450555333333333,0.105555333333333,0.431111333333333},
+ {0.106111333333333,0.471111333333334,0.106111333333333,0.450555333333333},
+ {0.106111333333333,0.492222,0.106111333333333,0.471111333333334},
+ {0.106111333333333,0.513333333333333,0.106111333333333,0.492222},
+ {0.106111333333333,0.533888666666667,0.106111333333333,0.513333333333333},
+ {0.106111333333333,0.555,0.106111333333333,0.533888666666667},
+ {0.106111333333333,0.575555333333333,0.106111333333333,0.555},
+ {0.105555333333333,0.595,0.106111333333333,0.575555333333333},
+ {0.105555333333333,0.614444666666667,0.105555333333333,0.595},
+ {0.104999999999999,0.632778,0.105555333333333,0.614444666666667},
+ {0.104444666666666,0.65,0.104999999999999,0.632778},
+ {0.103888666666666,0.666111333333333,0.104444666666666,0.65},
+ {0.103333333333333,0.681666666666667,0.103888666666666,0.666111333333333},
+ {0.102778,0.695,0.103333333333333,0.681666666666667},
+ {0.101666666666667,0.707778,0.102778,0.695},
+ {0.100555333333332,0.718888666666667,0.101666666666667,0.707778},
+ {0.0994446666666668,0.728888666666667,0.100555333333332,0.718888666666667},
+ {0.0977779999999993,0.737222,0.0994446666666668,0.728888666666667},
+ {0.096111333333333,0.744444666666666,0.0977779999999993,0.737222},
+ {0.0944446666666666,0.750555333333333,0.096111333333333,0.744444666666666},
+ {0.0922219999999996,0.755555333333334,0.0944446666666666,0.750555333333333},
+ {0.0899999999999999,0.76,0.0922219999999996,0.755555333333334},
+ {0.0877780000000001,0.763888666666666,0.0899999999999999,0.76},
+ {0.0849999999999997,0.767222,0.0877780000000001,0.763888666666666},
+ {0.0816666666666658,0.77,0.0849999999999997,0.767222},
+ {0.0788886666666665,0.772222,0.0816666666666658,0.77},
+ {0.0755553333333327,0.774444666666666,0.0788886666666665,0.772222},
+ {0.072222,0.776111333333333,0.0755553333333327,0.774444666666666},
+ {0.0683333333333328,0.777222,0.072222,0.776111333333333},
+ {0.0644446666666667,0.778333333333334,0.0683333333333328,0.777222},
+ {0.0611113333333329,0.778888666666666,0.0644446666666667,0.778333333333334},
+ {0.052778,0.779444666666667,0.0572219999999994,0.778888666666666},
+ {0.0488886666666666,0.778888666666666,0.052778,0.779444666666667},
+ {0.0416666666666667,0.778333333333334,0.0449999999999993,0.778888666666666},
+ {0.0377779999999994,0.777222,0.0416666666666667,0.778333333333334},
+ {0.033888666666666,0.776111333333333,0.0377779999999994,0.777222},
+ {0.0305553333333333,0.774444666666666,0.033888666666666,0.776111333333333},
+ {0.0272219999999995,0.772222,0.0305553333333333,0.774444666666666},
+ {0.0244446666666664,0.77,0.0272219999999995,0.772222},
+ {0.0211113333333325,0.767222,0.0244446666666664,0.77},
+ {0.0183333333333332,0.763888666666666,0.0211113333333325,0.767222},
+ {0.0161113333333335,0.76,0.0183333333333332,0.763888666666666},
+ {0.0138886666666664,0.755555333333334,0.0161113333333335,0.76},
+ {0.0116666666666667,0.750555333333333,0.0138886666666664,0.755555333333334},
+ {0.00999999999999919,0.744444666666666,0.0116666666666667,0.750555333333333},
+ {0.00833333333333286,0.737222,0.00999999999999919,0.744444666666666},
+ {0.00666666666666652,0.728888666666667,0.00833333333333286,0.737222},
+ {0.00555533333333358,0.718888666666667,0.00666666666666652,0.728888666666667},
+ {0.0044446666666668,0.707778,0.00555533333333358,0.718888666666667},
+ {0.00333333333333267,0.695,0.0044446666666668,0.707778},
+ {0.00277799999999928,0.681666666666667,0.00333333333333267,0.695},
+ {0.00222199999999972,0.666111333333333,0.00277799999999928,0.681666666666667},
+ {0.00166666666666634,0.65,0.00222199999999972,0.666111333333333},
+ {0.00111133333333295,0.632778,0.00166666666666634,0.65},
+ {0.000555333333333389,0.614444666666667,0.00111133333333295,0.632778},
+ {0.000555333333333389,0.595,0.000555333333333389,0.614444666666667},
+ {0,0.575555333333333,0.000555333333333389,0.595},
+ {0,0.555,0,0.575555333333333},
+ {0,0.533888666666667,0,0.555},
+ {0,0.512778,0,0.533888666666667},
+ {0,0.492222,0,0.512778},
+ {0,0.471111333333334,0,0.492222},
+ {0,0.450555333333333,0,0.471111333333334},
+ {0.000555333333333389,0.431111333333333,0,0.450555333333333},
+ {0.000555333333333389,0.411666666666667,0.000555333333333389,0.431111333333333},
+ {0.00111133333333295,0.393333333333333,0.000555333333333389,0.411666666666667},
+ {0.00166666666666634,0.376111333333334,0.00111133333333295,0.393333333333333},
+ {0.00222199999999972,0.36,0.00166666666666634,0.376111333333334},
+ {0.00277799999999928,0.344444666666667,0.00222199999999972,0.36},
+ {0.00333333333333267,0.331111333333334,0.00277799999999928,0.344444666666667},
+ {0.0044446666666668,0.318333333333333,0.00333333333333267,0.331111333333334},
+ {0.00555533333333358,0.307222,0.0044446666666668,0.318333333333333},
+ {0.00666666666666652,0.297222,0.00555533333333358,0.307222},
+ {0.00833333333333286,0.288888666666667,0.00666666666666652,0.297222},
+ {0.00999999999999919,0.281666666666667,0.00833333333333286,0.288888666666667},
+ {0.0116666666666667,0.275555333333333,0.00999999999999919,0.281666666666667},
+ {0.0138886666666664,0.270555333333334,0.0116666666666667,0.275555333333333},
+ {0.0161113333333335,0.266111333333334,0.0138886666666664,0.270555333333334},
+ {0.0183333333333332,0.262222,0.0161113333333335,0.266111333333334},
+ {0.0211113333333325,0.258888666666667,0.0183333333333332,0.262222},
+ {0.0244446666666664,0.256111333333333,0.0211113333333325,0.258888666666667},
+ {0.0272219999999995,0.253888666666667,0.0244446666666664,0.256111333333333},
+ {0.0305553333333333,0.251666666666667,0.0272219999999995,0.253888666666667},
+ {0.033888666666666,0.25,0.0305553333333333,0.251666666666667},
+ {0.0377779999999994,0.248888666666667,0.033888666666666,0.25},
+ {0.0416666666666667,0.247778,0.0377779999999994,0.248888666666667},
+ {0.0449999999999993,0.247222,0.0416666666666667,0.247778},
+ {0.0533333333333334,0.246666666666667,0.0488886666666666,0.247222},
+ {0.0572219999999994,0.247222,0.0533333333333334,0.246666666666667},
+ {0.0644446666666667,0.247778,0.0611113333333329,0.247222},
+ {0.0683333333333328,0.248888666666667,0.0644446666666667,0.247778},
+ {0.072222,0.25,0.0683333333333328,0.248888666666667},
+ {0.0755553333333327,0.251666666666667,0.072222,0.25},
+ {0.0788886666666665,0.253888666666667,0.0755553333333327,0.251666666666667},
+ {0.0816666666666658,0.256111333333333,0.0788886666666665,0.253888666666667},
+ {0.0849999999999997,0.258888666666667,0.0816666666666658,0.256111333333333},
+ {0.0877780000000001,0.262222,0.0849999999999997,0.258888666666667},
+ {0.0899999999999999,0.266111333333334,0.0877780000000001,0.262222},
+ {0.0922219999999996,0.270555333333334,0.0899999999999999,0.266111333333334},
+ {0.0944446666666666,0.275555333333333,0.0922219999999996,0.270555333333334},
+ {0.096111333333333,0.281666666666667,0.0944446666666666,0.275555333333333},
+ {0.0977779999999993,0.288888666666667,0.096111333333333,0.281666666666667},
+ {0,0,0,0}
+};
+
+double Icon14[][4] = {
+ {0.296110666666666,0.295555333333333,0.290555333333332,0.288888666666667},
+ {0.300555333333333,0.303333333333333,0.296110666666666,0.295555333333333},
+ {0.304444,0.312778,0.300555333333333,0.303333333333333},
+ {0.307221999999999,0.323333333333334,0.304444,0.312778},
+ {0.309443999999999,0.335,0.307221999999999,0.323333333333334},
+ {0.310555333333333,0.347778,0.309443999999999,0.335},
+ {0.311666666666666,0.361666666666667,0.310555333333333,0.347778},
+ {0.312222,0.376111333333334,0.311666666666666,0.361666666666667},
+ {0.312222,0.391666666666667,0.312222,0.376111333333334},
+ {0.312222,0.407222,0.312222,0.391666666666667},
+ {0.311666666666666,0.423333333333333,0.312222,0.407222},
+ {0.310555333333333,0.439444666666667,0.311666666666666,0.423333333333333},
+ {0.31,0.455,0.310555333333333,0.439444666666667},
+ {0.308888666666667,0.470555333333333,0.31,0.455},
+ {0.307221999999999,0.485,0.308888666666667,0.470555333333333},
+ {0.306110666666666,0.498888666666667,0.307221999999999,0.485},
+ {0.304444,0.511666666666667,0.306110666666666,0.498888666666667},
+ {0.302221999999999,0.523333333333333,0.304444,0.511666666666667},
+ {0.299999999999999,0.533888666666667,0.302221999999999,0.523333333333333},
+ {0.297222,0.543333333333334,0.299999999999999,0.533888666666667},
+ {0.294444,0.551111333333333,0.297222,0.543333333333334},
+ {0.290555333333332,0.557778,0.294444,0.551111333333333},
+ {0.284443999999999,0.565,0.290555333333332,0.557778},
+ {0.276110666666667,0.570555333333333,0.284443999999999,0.565},
+ {0.266666666666667,0.573333333333334,0.276110666666667,0.570555333333333},
+ {0.255555333333334,0.574444666666666,0.266666666666667,0.573333333333334},
+ {0.243333333333333,0.573888666666667,0.255555333333334,0.574444666666666},
+ {0.229999999999999,0.572222,0.243333333333333,0.573888666666667},
+ {0.215555333333333,0.569444666666667,0.229999999999999,0.572222},
+ {0.201110666666666,0.566111333333333,0.215555333333333,0.569444666666667},
+ {0.186110666666667,0.562778,0.201110666666666,0.566111333333333},
+ {0.171666666666667,0.559444666666667,0.186110666666667,0.562778},
+ {0.158333333333333,0.556666666666667,0.171666666666667,0.559444666666667},
+ {0.146110666666666,0.554444666666667,0.158333333333333,0.556666666666667},
+ {0.134999999999999,0.553888666666667,0.146110666666666,0.554444666666667},
+ {0.117221999999999,0.555555333333333,0.125555333333333,0.553888666666667},
+ {0.111110666666666,0.557778,0.117221999999999,0.555555333333333},
+ {0.106110666666666,0.561111333333334,0.111110666666666,0.557778},
+ {0.102222,0.565,0.106110666666666,0.561111333333334},
+ {0.0994439999999995,0.569444666666667,0.102222,0.565},
+ {0.0972219999999998,0.575,0.0994439999999995,0.569444666666667},
+ {0.0961106666666668,0.581666666666666,0.0972219999999998,0.575},
+ {0.095,0.588333333333334,0.0961106666666668,0.581666666666666},
+ {0.0944439999999993,0.595555333333333,0.095,0.588333333333334},
+ {0.0944439999999993,0.602778,0.0944439999999993,0.595555333333333},
+ {0.0944439999999993,0.61,0.0944439999999993,0.602778},
+ {0.095,0.617222,0.0944439999999993,0.61},
+ {0.0961106666666668,0.623888666666667,0.095,0.617222},
+ {0.0972219999999998,0.630555333333334,0.0961106666666668,0.623888666666667},
+ {0.0994439999999995,0.636111333333333,0.0972219999999998,0.630555333333334},
+ {0.102222,0.640555333333333,0.0994439999999995,0.636111333333333},
+ {0.106110666666666,0.644444666666667,0.102222,0.640555333333333},
+ {0.111110666666666,0.647778,0.106110666666666,0.644444666666667},
+ {0.117221999999999,0.65,0.111110666666666,0.647778},
+ {0.125555333333333,0.651666666666667,0.117221999999999,0.65},
+ {0.134999999999999,0.652778,0.125555333333333,0.651666666666667},
+ {0.158333333333333,0.652222,0.146110666666666,0.652778},
+ {0.171666666666667,0.651111333333333,0.158333333333333,0.652222},
+ {0.186110666666667,0.649444666666666,0.171666666666667,0.651111333333333},
+ {0.201110666666666,0.647778,0.186110666666667,0.649444666666666},
+ {0.215555333333333,0.646111333333333,0.201110666666666,0.647778},
+ {0.229999999999999,0.644444666666667,0.215555333333333,0.646111333333333},
+ {0.243333333333333,0.643333333333333,0.229999999999999,0.644444666666667},
+ {0.255555333333334,0.642778,0.243333333333333,0.643333333333333},
+ {0.276110666666667,0.643888666666667,0.266666666666667,0.642778},
+ {0.284443999999999,0.645555333333334,0.276110666666667,0.643888666666667},
+ {0.290555333333332,0.647778,0.284443999999999,0.645555333333334},
+ {0.294999999999999,0.650555333333333,0.290555333333332,0.647778},
+ {0.298888666666667,0.653888666666666,0.294999999999999,0.650555333333333},
+ {0.301666666666666,0.657778,0.298888666666667,0.653888666666666},
+ {0.303888666666667,0.662778,0.301666666666666,0.657778},
+ {0.306110666666666,0.667778,0.303888666666667,0.662778},
+ {0.307777333333333,0.673333333333333,0.306110666666666,0.667778},
+ {0.309443999999999,0.679444666666667,0.307777333333333,0.673333333333333},
+ {0.310555333333333,0.686111333333334,0.309443999999999,0.679444666666667},
+ {0.311666666666666,0.692778,0.310555333333333,0.686111333333334},
+ {0.312222,0.698888666666667,0.311666666666666,0.692778},
+ {0.312222,0.705555333333334,0.312222,0.698888666666667},
+ {0.312222,0.711666666666667,0.312222,0.705555333333334},
+ {0.311110666666667,0.717222,0.312222,0.711666666666667},
+ {0.308888666666667,0.722222,0.311110666666667,0.717222},
+ {0.306110666666666,0.727222,0.308888666666667,0.722222},
+ {0.302221999999999,0.731111333333333,0.306110666666666,0.727222},
+ {0.297222,0.734444666666667,0.302221999999999,0.731111333333333},
+ {0.290555333333332,0.737222,0.297222,0.734444666666667},
+ {0.283888666666666,0.738888666666667,0.290555333333332,0.737222},
+ {0.276110666666667,0.740555333333334,0.283888666666666,0.738888666666667},
+ {0.266666666666667,0.742222,0.276110666666667,0.740555333333334},
+ {0.256110666666667,0.743888666666667,0.266666666666667,0.742222},
+ {0.244444,0.745,0.256110666666667,0.743888666666667},
+ {0.231666666666667,0.746666666666667,0.244444,0.745},
+ {0.217777333333333,0.748333333333333,0.231666666666667,0.746666666666667},
+ {0.203333333333333,0.749444666666667,0.217777333333333,0.748333333333333},
+ {0.187777333333333,0.751111333333334,0.203333333333333,0.749444666666667},
+ {0.172222,0.752778,0.187777333333333,0.751111333333334},
+ {0.156110666666667,0.753888666666667,0.172222,0.752778},
+ {0.139999999999999,0.755,0.156110666666667,0.753888666666667},
+ {0.124443999999999,0.756111333333333,0.139999999999999,0.755},
+ {0.108888666666666,0.756666666666667,0.124443999999999,0.756111333333333},
+ {0.0805553333333329,0.756111333333333,0.0944439999999993,0.756666666666667},
+ {0.0677773333333332,0.755,0.0805553333333329,0.756111333333333},
+ {0.0561106666666665,0.753333333333333,0.0677773333333332,0.755},
+ {0.0455553333333327,0.750555333333333,0.0561106666666665,0.753333333333333},
+ {0.0361106666666669,0.747222,0.0455553333333327,0.750555333333333},
+ {0.0283333333333336,0.742778,0.0361106666666669,0.747222},
+ {0.0216666666666659,0.737222,0.0283333333333336,0.742778},
+ {0.0161106666666662,0.730555333333333,0.0216666666666659,0.737222},
+ {0.0116666666666667,0.722778,0.0161106666666662,0.730555333333333},
+ {0.0077773333333333,0.713333333333334,0.0116666666666667,0.722778},
+ {0.00500000000000019,0.702778,0.0077773333333333,0.713333333333334},
+ {0.00277733333333311,0.691111333333333,0.00500000000000019,0.702778},
+ {0.00166666666666634,0.678333333333333,0.00277733333333311,0.691111333333333},
+ {0.000555333333333389,0.664444666666667,0.00166666666666634,0.678333333333333},
+ {0,0.65,0.000555333333333389,0.664444666666667},
+ {0,0.634444666666666,0,0.65},
+ {0,0.618888666666667,0,0.634444666666666},
+ {0.000555333333333389,0.602778,0,0.618888666666667},
+ {0.00166666666666634,0.586666666666667,0.000555333333333389,0.602778},
+ {0.00222199999999972,0.571111333333333,0.00166666666666634,0.586666666666667},
+ {0.00333333333333267,0.555555333333333,0.00222199999999972,0.571111333333333},
+ {0.00500000000000019,0.541111333333333,0.00333333333333267,0.555555333333333},
+ {0.00611066666666697,0.527222,0.00500000000000019,0.541111333333333},
+ {0.0077773333333333,0.514444666666667,0.00611066666666697,0.527222},
+ {0.00999999999999919,0.502778,0.0077773333333333,0.514444666666667},
+ {0.0122220000000001,0.492222,0.00999999999999919,0.502778},
+ {0.0149999999999994,0.482778,0.0122220000000001,0.492222},
+ {0.0177773333333325,0.475,0.0149999999999994,0.482778},
+ {0.0216666666666659,0.468333333333333,0.0177773333333325,0.475},
+ {0.0277773333333329,0.461111333333333,0.0216666666666659,0.468333333333333},
+ {0.0361106666666669,0.455555333333334,0.0277773333333329,0.461111333333333},
+ {0.0455553333333327,0.452778,0.0361106666666669,0.455555333333334},
+ {0.056666666666666,0.451666666666667,0.0455553333333327,0.452778},
+ {0.0688886666666662,0.452222,0.056666666666666,0.451666666666667},
+ {0.0822219999999992,0.453888666666667,0.0688886666666662,0.452222},
+ {0.0966666666666664,0.456666666666666,0.0822219999999992,0.453888666666667},
+ {0.111666666666667,0.46,0.0966666666666664,0.456666666666666},
+ {0.126110666666667,0.463333333333334,0.111666666666667,0.46},
+ {0.140555333333333,0.466666666666667,0.126110666666667,0.463333333333334},
+ {0.153888666666666,0.469444666666667,0.140555333333333,0.466666666666667},
+ {0.166110666666666,0.471666666666666,0.153888666666666,0.469444666666667},
+ {0.177221999999999,0.472222,0.166110666666666,0.471666666666666},
+ {0.195,0.470555333333333,0.186666666666666,0.472222},
+ {0.201110666666666,0.468333333333333,0.195,0.470555333333333},
+ {0.206110666666666,0.465,0.201110666666666,0.468333333333333},
+ {0.21,0.461111333333333,0.206110666666666,0.465},
+ {0.212777333333333,0.456666666666666,0.21,0.461111333333333},
+ {0.215,0.451111333333333,0.212777333333333,0.456666666666666},
+ {0.216110666666667,0.444444666666667,0.215,0.451111333333333},
+ {0.217222,0.437778,0.216110666666667,0.444444666666667},
+ {0.217777333333333,0.430555333333333,0.217222,0.437778},
+ {0.217777333333333,0.423333333333333,0.217777333333333,0.430555333333333},
+ {0.217777333333333,0.416111333333333,0.217777333333333,0.423333333333333},
+ {0.217222,0.408888666666667,0.217777333333333,0.416111333333333},
+ {0.216110666666667,0.402222,0.217222,0.408888666666667},
+ {0.215,0.395555333333334,0.216110666666667,0.402222},
+ {0.212777333333333,0.39,0.215,0.395555333333334},
+ {0.21,0.385555333333333,0.212777333333333,0.39},
+ {0.206110666666666,0.381666666666667,0.21,0.385555333333333},
+ {0.201110666666666,0.378333333333333,0.206110666666666,0.381666666666667},
+ {0.195,0.376111333333334,0.201110666666666,0.378333333333333},
+ {0.186666666666666,0.374444666666667,0.195,0.376111333333334},
+ {0.177221999999999,0.373333333333333,0.186666666666666,0.374444666666667},
+ {0.153888666666666,0.373888666666667,0.166110666666666,0.373333333333333},
+ {0.140555333333333,0.375,0.153888666666666,0.373888666666667},
+ {0.126110666666667,0.376666666666667,0.140555333333333,0.375},
+ {0.111666666666667,0.378333333333333,0.126110666666667,0.376666666666667},
+ {0.0966666666666664,0.38,0.111666666666667,0.378333333333333},
+ {0.0822219999999992,0.381666666666667,0.0966666666666664,0.38},
+ {0.0688886666666662,0.382778,0.0822219999999992,0.381666666666667},
+ {0.056666666666666,0.383333333333334,0.0688886666666662,0.382778},
+ {0.0361106666666669,0.382222,0.0455553333333327,0.383333333333334},
+ {0.0277773333333329,0.380555333333334,0.0361106666666669,0.382222},
+ {0.0216666666666659,0.378333333333333,0.0277773333333329,0.380555333333334},
+ {0.0172220000000003,0.375555333333333,0.0216666666666659,0.378333333333333},
+ {0.013333333333333,0.372222,0.0172220000000003,0.375555333333333},
+ {0.0105553333333326,0.368333333333334,0.013333333333333,0.372222},
+ {0.00833333333333286,0.363333333333333,0.0105553333333326,0.368333333333334},
+ {0.00611066666666697,0.358333333333333,0.00833333333333286,0.363333333333333},
+ {0.00444399999999945,0.352778,0.00611066666666697,0.358333333333333},
+ {0.00277733333333311,0.346666666666666,0.00444399999999945,0.352778},
+ {0.00166666666666634,0.34,0.00277733333333311,0.346666666666666},
+ {0.000555333333333389,0.333333333333333,0.00166666666666634,0.34},
+ {0,0.327222,0.000555333333333389,0.333333333333333},
+ {0,0.320555333333333,0,0.327222},
+ {0,0.314444666666667,0,0.320555333333333},
+ {0.00111066666666678,0.308888666666667,0,0.314444666666667},
+ {0.00333333333333267,0.303888666666667,0.00111066666666678,0.308888666666667},
+ {0.00611066666666697,0.298888666666667,0.00333333333333267,0.303888666666667},
+ {0.00999999999999919,0.295,0.00611066666666697,0.298888666666667},
+ {0.0149999999999994,0.291666666666667,0.00999999999999919,0.295},
+ {0.0216666666666659,0.288888666666667,0.0149999999999994,0.291666666666667},
+ {0.0283333333333336,0.287222,0.0216666666666659,0.288888666666667},
+ {0.0361106666666669,0.285555333333334,0.0283333333333336,0.287222},
+ {0.0455553333333327,0.283888666666667,0.0361106666666669,0.285555333333334},
+ {0.0561106666666665,0.282222,0.0455553333333327,0.283888666666667},
+ {0.0677773333333332,0.281111333333333,0.0561106666666665,0.282222},
+ {0.0805553333333329,0.279444666666667,0.0677773333333332,0.281111333333333},
+ {0.0944439999999993,0.277778,0.0805553333333329,0.279444666666667},
+ {0.108888666666666,0.276666666666667,0.0944439999999993,0.277778},
+ {0.124443999999999,0.275,0.108888666666666,0.276666666666667},
+ {0.139999999999999,0.273333333333333,0.124443999999999,0.275},
+ {0.156110666666667,0.272222,0.139999999999999,0.273333333333333},
+ {0.172222,0.271111333333333,0.156110666666667,0.272222},
+ {0.187777333333333,0.27,0.172222,0.271111333333333},
+ {0.203333333333333,0.269444666666667,0.187777333333333,0.27},
+ {0.231666666666667,0.27,0.217777333333333,0.269444666666667},
+ {0.244444,0.271111333333333,0.231666666666667,0.27},
+ {0.256110666666667,0.272778,0.244444,0.271111333333333},
+ {0.266666666666667,0.275555333333333,0.256110666666667,0.272778},
+ {0.276110666666667,0.278888666666666,0.266666666666667,0.275555333333333},
+ {0.283888666666666,0.283333333333333,0.276110666666667,0.278888666666666},
+ {0.290555333333332,0.288888666666667,0.283888666666666,0.283333333333333},
+ {0,0,0,0}
+};
+
+double Icon15[][4] = {
+ {0.294999999999999,0.297222,0.290555333333334,0.288888666666667},
+ {0.298888666666667,0.307222,0.294999999999999,0.297222},
+ {0.302222,0.318333333333333,0.298888666666667,0.307222},
+ {0.305,0.331111333333334,0.302222,0.318333333333333},
+ {0.307221999999999,0.344444666666667,0.305,0.331111333333334},
+ {0.309444666666666,0.36,0.307221999999999,0.344444666666667},
+ {0.311111333333333,0.376111333333334,0.309444666666666,0.36},
+ {0.312222,0.393333333333333,0.311111333333333,0.376111333333334},
+ {0.313333333333334,0.411666666666667,0.312222,0.393333333333333},
+ {0.314444666666667,0.431111333333333,0.313333333333334,0.411666666666667},
+ {0.315,0.450555333333333,0.314444666666667,0.431111333333333},
+ {0.315555333333333,0.471111333333334,0.315,0.450555333333333},
+ {0.315555333333333,0.492222,0.315555333333333,0.471111333333334},
+ {0.315555333333333,0.513333333333333,0.315555333333333,0.492222},
+ {0.315555333333333,0.533888666666667,0.315555333333333,0.513333333333333},
+ {0.315555333333333,0.555,0.315555333333333,0.533888666666667},
+ {0.315,0.575555333333333,0.315555333333333,0.555},
+ {0.314444666666667,0.595,0.315,0.575555333333333},
+ {0.313333333333334,0.614444666666667,0.314444666666667,0.595},
+ {0.312222,0.632778,0.313333333333334,0.614444666666667},
+ {0.311111333333333,0.65,0.312222,0.632778},
+ {0.309444666666666,0.666111333333333,0.311111333333333,0.65},
+ {0.307221999999999,0.681666666666667,0.309444666666666,0.666111333333333},
+ {0.305,0.695,0.307221999999999,0.681666666666667},
+ {0.302222,0.707778,0.305,0.695},
+ {0.298888666666667,0.718888666666667,0.302222,0.707778},
+ {0.294999999999999,0.728888666666667,0.298888666666667,0.718888666666667},
+ {0.290555333333334,0.737222,0.294999999999999,0.728888666666667},
+ {0.283888666666666,0.746666666666667,0.290555333333334,0.737222},
+ {0.276111333333333,0.753888666666667,0.283888666666666,0.746666666666667},
+ {0.266666666666667,0.76,0.276111333333333,0.753888666666667},
+ {0.256111333333333,0.763888666666666,0.266666666666667,0.76},
+ {0.244444666666666,0.766666666666667,0.256111333333333,0.763888666666666},
+ {0.231666666666667,0.768333333333333,0.244444666666666,0.766666666666667},
+ {0.217778,0.768888666666667,0.231666666666667,0.768333333333333},
+ {0.203333333333333,0.768333333333333,0.217778,0.768888666666667},
+ {0.187778,0.766666666666667,0.203333333333333,0.768333333333333},
+ {0.172222,0.765,0.187778,0.766666666666667},
+ {0.156111333333333,0.762222,0.172222,0.765},
+ {0.139999999999999,0.76,0.156111333333333,0.762222},
+ {0.124444666666667,0.757222,0.139999999999999,0.76},
+ {0.108888666666666,0.753888666666667,0.124444666666667,0.757222},
+ {0.0944446666666666,0.751666666666667,0.108888666666666,0.753888666666667},
+ {0.0805553333333329,0.748888666666667,0.0944446666666666,0.751666666666667},
+ {0.0677779999999994,0.746666666666667,0.0805553333333329,0.748888666666667},
+ {0.0561113333333327,0.744444666666666,0.0677779999999994,0.746666666666667},
+ {0.0455553333333327,0.742778,0.0561113333333327,0.744444666666666},
+ {0.0361113333333331,0.741111333333333,0.0455553333333327,0.742778},
+ {0.0283333333333336,0.738888666666667,0.0361113333333331,0.741111333333333},
+ {0.0216666666666671,0.737222,0.0283333333333336,0.738888666666667},
+ {0.0149999999999994,0.734444666666667,0.0216666666666671,0.737222},
+ {0.0100000000000004,0.731111333333333,0.0149999999999994,0.734444666666667},
+ {0.00611133333333314,0.727222,0.0100000000000004,0.731111333333333},
+ {0.00333333333333267,0.722222,0.00611133333333314,0.727222},
+ {0.00111133333333295,0.717222,0.00333333333333267,0.722222},
+ {0,0.711666666666667,0.00111133333333295,0.717222},
+ {0,0.705555333333334,0,0.711666666666667},
+ {0,0.698888666666667,0,0.705555333333334},
+ {0.000555333333333389,0.692222,0,0.698888666666667},
+ {0.00166666666666634,0.686111333333334,0.000555333333333389,0.692222},
+ {0.00277800000000046,0.679444666666667,0.00166666666666634,0.686111333333334},
+ {0.0044446666666668,0.673333333333333,0.00277800000000046,0.679444666666667},
+ {0.00611133333333314,0.667778,0.0044446666666668,0.673333333333333},
+ {0.00833333333333286,0.662778,0.00611133333333314,0.667778},
+ {0.0105553333333338,0.657778,0.00833333333333286,0.662778},
+ {0.013333333333333,0.653888666666666,0.0105553333333338,0.657778},
+ {0.0172220000000003,0.650555333333333,0.013333333333333,0.653888666666666},
+ {0.0216666666666671,0.647778,0.0172220000000003,0.650555333333333},
+ {0.0277780000000002,0.645555333333334,0.0216666666666671,0.647778},
+ {0.0361113333333331,0.643888666666667,0.0277780000000002,0.645555333333334},
+ {0.0455553333333327,0.642778,0.0361113333333331,0.643888666666667},
+ {0.0688886666666662,0.643333333333333,0.056666666666666,0.642778},
+ {0.0822220000000004,0.644444666666667,0.0688886666666662,0.643333333333333},
+ {0.0966666666666664,0.646111333333333,0.0822220000000004,0.644444666666667},
+ {0.111666666666667,0.647778,0.0966666666666664,0.646111333333333},
+ {0.126111333333333,0.649444666666666,0.111666666666667,0.647778},
+ {0.140555333333333,0.651111333333333,0.126111333333333,0.649444666666666},
+ {0.153888666666667,0.652222,0.140555333333333,0.651111333333333},
+ {0.166111333333333,0.652778,0.153888666666667,0.652222},
+ {0.186666666666666,0.651666666666667,0.177222,0.652778},
+ {0.195,0.65,0.186666666666666,0.651666666666667},
+ {0.201111333333333,0.647778,0.195,0.65},
+ {0.206666666666667,0.643888666666667,0.201111333333333,0.647778},
+ {0.210555333333333,0.639444666666667,0.206666666666667,0.643888666666667},
+ {0.213333333333334,0.633333333333334,0.210555333333333,0.639444666666667},
+ {0.214444666666666,0.626666666666667,0.213333333333334,0.633333333333334},
+ {0.215,0.619444666666666,0.214444666666666,0.626666666666667},
+ {0.214444666666666,0.611111333333334,0.215,0.619444666666666},
+ {0.213888666666667,0.602778,0.214444666666666,0.611111333333334},
+ {0.212778,0.594444666666667,0.213888666666667,0.602778},
+ {0.211111333333334,0.586111333333333,0.212778,0.594444666666667},
+ {0.209444666666666,0.578888666666667,0.211111333333334,0.586111333333333},
+ {0.207778,0.572222,0.209444666666666,0.578888666666667},
+ {0.206111333333334,0.566111333333333,0.207778,0.572222},
+ {0.203888666666667,0.561666666666667,0.206111333333334,0.566111333333333},
+ {0.201111333333333,0.557778,0.203888666666667,0.561666666666667},
+ {0.196666666666667,0.554444666666667,0.201111333333333,0.557778},
+ {0.191111333333333,0.552778,0.196666666666667,0.554444666666667},
+ {0.175,0.553888666666667,0.183888666666667,0.552778},
+ {0.166111333333333,0.555555333333333,0.175,0.553888666666667},
+ {0.156111333333333,0.557778,0.166111333333333,0.555555333333333},
+ {0.146111333333334,0.56,0.156111333333333,0.557778},
+ {0.137222,0.561666666666667,0.146111333333334,0.56},
+ {0.128333333333333,0.562778,0.137222,0.561666666666667},
+ {0.121111333333333,0.562222,0.128333333333333,0.562778},
+ {0.115555333333333,0.561111333333334,0.121111333333333,0.562222},
+ {0.111111333333334,0.557778,0.115555333333333,0.561111333333334},
+ {0.107778,0.553333333333333,0.111111333333334,0.557778},
+ {0.105555333333334,0.547778,0.107778,0.553333333333333},
+ {0.104444666666667,0.540555333333333,0.105555333333334,0.547778},
+ {0.103333333333333,0.532222,0.104444666666667,0.540555333333333},
+ {0.102778,0.522778,0.103333333333333,0.532222},
+ {0.102778,0.512778,0.102778,0.522778},
+ {0.102778,0.503333333333333,0.102778,0.512778},
+ {0.103333333333333,0.493888666666667,0.102778,0.503333333333333},
+ {0.104444666666667,0.485555333333333,0.103333333333333,0.493888666666667},
+ {0.105555333333334,0.478333333333333,0.104444666666667,0.485555333333333},
+ {0.107778,0.472778,0.105555333333334,0.478333333333333},
+ {0.111111333333334,0.468333333333333,0.107778,0.472778},
+ {0.115555333333333,0.465,0.111111333333334,0.468333333333333},
+ {0.121111333333333,0.463888666666667,0.115555333333333,0.465},
+ {0.128333333333333,0.463333333333334,0.121111333333333,0.463888666666667},
+ {0.137222,0.464444666666667,0.128333333333333,0.463333333333334},
+ {0.146111333333334,0.466111333333333,0.137222,0.464444666666667},
+ {0.156111333333333,0.468333333333333,0.146111333333334,0.466111333333333},
+ {0.166111333333333,0.470555333333333,0.156111333333333,0.468333333333333},
+ {0.175,0.472222,0.166111333333333,0.470555333333333},
+ {0.183888666666667,0.473333333333333,0.175,0.472222},
+ {0.196666666666667,0.471666666666666,0.191111333333333,0.473333333333333},
+ {0.201111333333333,0.468333333333333,0.196666666666667,0.471666666666666},
+ {0.203888666666667,0.464444666666667,0.201111333333333,0.468333333333333},
+ {0.206111333333334,0.46,0.203888666666667,0.464444666666667},
+ {0.207778,0.453888666666667,0.206111333333334,0.46},
+ {0.209444666666666,0.447222,0.207778,0.453888666666667},
+ {0.211111333333334,0.44,0.209444666666666,0.447222},
+ {0.212778,0.431666666666667,0.211111333333334,0.44},
+ {0.213888666666667,0.423333333333333,0.212778,0.431666666666667},
+ {0.214444666666666,0.415,0.213888666666667,0.423333333333333},
+ {0.215,0.406666666666667,0.214444666666666,0.415},
+ {0.214444666666666,0.399444666666666,0.215,0.406666666666667},
+ {0.213333333333334,0.392778,0.214444666666666,0.399444666666666},
+ {0.210555333333333,0.386666666666667,0.213333333333334,0.392778},
+ {0.206666666666667,0.382222,0.210555333333333,0.386666666666667},
+ {0.201111333333333,0.378333333333333,0.206666666666667,0.382222},
+ {0.195,0.376111333333334,0.201111333333333,0.378333333333333},
+ {0.186666666666666,0.374444666666667,0.195,0.376111333333334},
+ {0.177222,0.373333333333333,0.186666666666666,0.374444666666667},
+ {0.153888666666667,0.373888666666667,0.166111333333333,0.373333333333333},
+ {0.140555333333333,0.375,0.153888666666667,0.373888666666667},
+ {0.126111333333333,0.376666666666667,0.140555333333333,0.375},
+ {0.111666666666667,0.378333333333333,0.126111333333333,0.376666666666667},
+ {0.0966666666666664,0.38,0.111666666666667,0.378333333333333},
+ {0.0822220000000004,0.381666666666667,0.0966666666666664,0.38},
+ {0.0688886666666662,0.382778,0.0822220000000004,0.381666666666667},
+ {0.056666666666666,0.383333333333334,0.0688886666666662,0.382778},
+ {0.0361113333333331,0.382222,0.0455553333333327,0.383333333333334},
+ {0.0277780000000002,0.380555333333334,0.0361113333333331,0.382222},
+ {0.0216666666666671,0.378333333333333,0.0277780000000002,0.380555333333334},
+ {0.0172220000000003,0.375555333333333,0.0216666666666671,0.378333333333333},
+ {0.013333333333333,0.372222,0.0172220000000003,0.375555333333333},
+ {0.0105553333333338,0.368333333333334,0.013333333333333,0.372222},
+ {0.00833333333333286,0.363333333333333,0.0105553333333338,0.368333333333334},
+ {0.00611133333333314,0.358333333333333,0.00833333333333286,0.363333333333333},
+ {0.0044446666666668,0.352778,0.00611133333333314,0.358333333333333},
+ {0.00277800000000046,0.346666666666666,0.0044446666666668,0.352778},
+ {0.00166666666666634,0.34,0.00277800000000046,0.346666666666666},
+ {0.000555333333333389,0.333333333333333,0.00166666666666634,0.34},
+ {0,0.327222,0.000555333333333389,0.333333333333333},
+ {0,0.320555333333333,0,0.327222},
+ {0,0.314444666666667,0,0.320555333333333},
+ {0.00111133333333295,0.308888666666667,0,0.314444666666667},
+ {0.00333333333333267,0.303888666666667,0.00111133333333295,0.308888666666667},
+ {0.00611133333333314,0.298888666666667,0.00333333333333267,0.303888666666667},
+ {0.0100000000000004,0.295,0.00611133333333314,0.298888666666667},
+ {0.0149999999999994,0.291666666666667,0.0100000000000004,0.295},
+ {0.0216666666666671,0.288888666666667,0.0149999999999994,0.291666666666667},
+ {0.0283333333333336,0.287222,0.0216666666666671,0.288888666666667},
+ {0.0361113333333331,0.285,0.0283333333333336,0.287222},
+ {0.0455553333333327,0.283333333333333,0.0361113333333331,0.285},
+ {0.0561113333333327,0.281666666666667,0.0455553333333327,0.283333333333333},
+ {0.0677779999999994,0.279444666666667,0.0561113333333327,0.281666666666667},
+ {0.0805553333333329,0.277222,0.0677779999999994,0.279444666666667},
+ {0.0944446666666666,0.274444666666666,0.0805553333333329,0.277222},
+ {0.108888666666666,0.272222,0.0944446666666666,0.274444666666666},
+ {0.124444666666667,0.268888666666667,0.108888666666666,0.272222},
+ {0.139999999999999,0.266111333333334,0.124444666666667,0.268888666666667},
+ {0.156111333333333,0.263888666666666,0.139999999999999,0.266111333333334},
+ {0.172222,0.261111333333333,0.156111333333333,0.263888666666666},
+ {0.187778,0.259444666666666,0.172222,0.261111333333333},
+ {0.203333333333333,0.257778,0.187778,0.259444666666666},
+ {0.217778,0.257222,0.203333333333333,0.257778},
+ {0.231666666666667,0.257778,0.217778,0.257222},
+ {0.244444666666666,0.259444666666666,0.231666666666667,0.257778},
+ {0.256111333333333,0.262222,0.244444666666666,0.259444666666666},
+ {0.266666666666667,0.266111333333334,0.256111333333333,0.262222},
+ {0.276111333333333,0.272222,0.266666666666667,0.266111333333334},
+ {0.283888666666666,0.279444666666667,0.276111333333333,0.272222},
+ {0.290555333333334,0.288888666666667,0.283888666666666,0.279444666666667},
+ {0,0,0,0}
+};
+
+double Icon16[][4] = {
+ {0.105555333333333,0.295,0.103333333333333,0.288888666666667},
+ {0.107221999999999,0.303333333333333,0.105555333333333,0.295},
+ {0.108333333333333,0.312778,0.107221999999999,0.303333333333333},
+ {0.108333333333333,0.323888666666667,0.108333333333333,0.312778},
+ {0.107778,0.336111333333333,0.108333333333333,0.323888666666667},
+ {0.106666666666666,0.349444666666667,0.107778,0.336111333333333},
+ {0.104999999999999,0.363888666666667,0.106666666666666,0.349444666666667},
+ {0.103333333333333,0.378888666666667,0.104999999999999,0.363888666666667},
+ {0.101666666666667,0.393333333333333,0.103333333333333,0.378888666666667},
+ {0.099999999999999,0.407778,0.101666666666667,0.393333333333333},
+ {0.0988886666666661,0.421111333333334,0.099999999999999,0.407778},
+ {0.0983333333333327,0.433333333333334,0.0988886666666661,0.421111333333334},
+ {0.0983333333333327,0.444444666666667,0.0983333333333327,0.433333333333334},
+ {0.0994446666666657,0.453888666666667,0.0983333333333327,0.444444666666667},
+ {0.101111333333333,0.462222,0.0994446666666657,0.453888666666667},
+ {0.103333333333333,0.468333333333333,0.101111333333333,0.462222},
+ {0.106666666666666,0.473333333333333,0.103333333333333,0.468333333333333},
+ {0.110555333333333,0.477222,0.106666666666666,0.473333333333333},
+ {0.115,0.48,0.110555333333333,0.477222},
+ {0.120555333333333,0.482222,0.115,0.48},
+ {0.127222,0.483333333333333,0.120555333333333,0.482222},
+ {0.133888666666666,0.484444666666667,0.127222,0.483333333333333},
+ {0.141111333333332,0.485,0.133888666666666,0.484444666666667},
+ {0.162777999999999,0.484444666666667,0.155555333333333,0.485},
+ {0.169444666666666,0.483333333333333,0.162777999999999,0.484444666666667},
+ {0.176111333333332,0.482222,0.169444666666666,0.483333333333333},
+ {0.181666666666666,0.48,0.176111333333332,0.482222},
+ {0.186111333333333,0.477222,0.181666666666666,0.48},
+ {0.189999999999999,0.473333333333333,0.186111333333333,0.477222},
+ {0.193333333333333,0.468333333333333,0.189999999999999,0.473333333333333},
+ {0.195555333333332,0.462222,0.193333333333333,0.468333333333333},
+ {0.197222,0.453888666666667,0.195555333333332,0.462222},
+ {0.198333333333333,0.444444666666667,0.197222,0.453888666666667},
+ {0.198333333333333,0.433333333333334,0.198333333333333,0.444444666666667},
+ {0.197778,0.421111333333334,0.198333333333333,0.433333333333334},
+ {0.196666666666667,0.407778,0.197778,0.421111333333334},
+ {0.194999999999999,0.393333333333333,0.196666666666667,0.407778},
+ {0.193333333333333,0.378888666666667,0.194999999999999,0.393333333333333},
+ {0.191666666666666,0.363888666666667,0.193333333333333,0.378888666666667},
+ {0.189999999999999,0.349444666666667,0.191666666666666,0.363888666666667},
+ {0.188888666666666,0.336111333333333,0.189999999999999,0.349444666666667},
+ {0.188333333333333,0.323888666666667,0.188888666666666,0.336111333333333},
+ {0.188333333333333,0.312778,0.188333333333333,0.323888666666667},
+ {0.189444666666666,0.303333333333333,0.188333333333333,0.312778},
+ {0.191111333333333,0.295,0.189444666666666,0.303333333333333},
+ {0.193333333333333,0.288888666666667,0.191111333333333,0.295},
+ {0.195555333333332,0.285,0.193333333333333,0.288888666666667},
+ {0.198333333333333,0.281666666666667,0.195555333333332,0.285},
+ {0.201111333333332,0.278888666666666,0.198333333333333,0.281666666666667},
+ {0.204999999999999,0.276111333333333,0.201111333333332,0.278888666666666},
+ {0.208888666666666,0.273888666666667,0.204999999999999,0.276111333333333},
+ {0.212777999999999,0.271111333333333,0.208888666666666,0.273888666666667},
+ {0.217777999999999,0.268888666666667,0.212777999999999,0.271111333333333},
+ {0.222777999999999,0.266111333333334,0.217777999999999,0.268888666666667},
+ {0.227778,0.263888666666666,0.222777999999999,0.266111333333334},
+ {0.232778,0.261666666666667,0.227778,0.263888666666666},
+ {0.238333333333333,0.259444666666666,0.232778,0.261666666666667},
+ {0.243888666666666,0.257778,0.238333333333333,0.259444666666666},
+ {0.248888666666666,0.256666666666667,0.243888666666666,0.257778},
+ {0.253888666666666,0.255555333333334,0.248888666666666,0.256666666666667},
+ {0.263888666666666,0.256666666666667,0.258888666666666,0.255555333333334},
+ {0.267778,0.258333333333334,0.263888666666666,0.256666666666667},
+ {0.271666666666666,0.261666666666667,0.267778,0.258333333333334},
+ {0.275555333333333,0.266111333333334,0.271666666666666,0.261666666666667},
+ {0.278333333333332,0.272222,0.275555333333333,0.266111333333334},
+ {0.281111333333333,0.279444666666667,0.278333333333332,0.272222},
+ {0.283333333333333,0.288888666666667,0.281111333333333,0.279444666666667},
+ {0.284999999999999,0.297222,0.283333333333333,0.288888666666667},
+ {0.286111333333333,0.307222,0.284999999999999,0.297222},
+ {0.287222,0.318333333333333,0.286111333333333,0.307222},
+ {0.288333333333333,0.331111333333334,0.287222,0.318333333333333},
+ {0.288888666666666,0.344444666666667,0.288333333333333,0.331111333333334},
+ {0.289444666666666,0.36,0.288888666666666,0.344444666666667},
+ {0.289999999999999,0.376111333333334,0.289444666666666,0.36},
+ {0.290555333333332,0.393333333333333,0.289999999999999,0.376111333333334},
+ {0.291111333333333,0.411666666666667,0.290555333333332,0.393333333333333},
+ {0.291111333333333,0.431111333333333,0.291111333333333,0.411666666666667},
+ {0.291666666666667,0.450555333333333,0.291111333333333,0.431111333333333},
+ {0.291666666666667,0.471111333333334,0.291666666666667,0.450555333333333},
+ {0.291666666666667,0.492222,0.291666666666667,0.471111333333334},
+ {0.291666666666667,0.513333333333333,0.291666666666667,0.492222},
+ {0.291666666666667,0.533888666666667,0.291666666666667,0.513333333333333},
+ {0.291666666666667,0.555,0.291666666666667,0.533888666666667},
+ {0.291666666666667,0.575555333333333,0.291666666666667,0.555},
+ {0.291111333333333,0.595,0.291666666666667,0.575555333333333},
+ {0.291111333333333,0.614444666666667,0.291111333333333,0.595},
+ {0.290555333333332,0.632778,0.291111333333333,0.614444666666667},
+ {0.289999999999999,0.65,0.290555333333332,0.632778},
+ {0.289444666666666,0.666111333333333,0.289999999999999,0.65},
+ {0.288888666666666,0.681666666666667,0.289444666666666,0.666111333333333},
+ {0.288333333333333,0.695,0.288888666666666,0.681666666666667},
+ {0.287222,0.707778,0.288333333333333,0.695},
+ {0.286111333333333,0.718888666666667,0.287222,0.707778},
+ {0.284999999999999,0.728888666666667,0.286111333333333,0.718888666666667},
+ {0.283333333333333,0.737222,0.284999999999999,0.728888666666667},
+ {0.281111333333333,0.746666666666667,0.283333333333333,0.737222},
+ {0.278333333333332,0.753888666666667,0.281111333333333,0.746666666666667},
+ {0.275555333333333,0.76,0.278333333333332,0.753888666666667},
+ {0.271666666666666,0.764444666666667,0.275555333333333,0.76},
+ {0.267778,0.767778,0.271666666666666,0.764444666666667},
+ {0.263888666666666,0.769444666666667,0.267778,0.767778},
+ {0.258888666666666,0.770555333333334,0.263888666666666,0.769444666666667},
+ {0.248888666666666,0.769444666666667,0.253888666666666,0.770555333333334},
+ {0.243888666666666,0.768333333333333,0.248888666666666,0.769444666666667},
+ {0.238333333333333,0.766666666666667,0.243888666666666,0.768333333333333},
+ {0.232778,0.764444666666667,0.238333333333333,0.766666666666667},
+ {0.227778,0.762222,0.232778,0.764444666666667},
+ {0.222777999999999,0.76,0.227778,0.762222},
+ {0.217777999999999,0.757222,0.222777999999999,0.76},
+ {0.212777999999999,0.755,0.217777999999999,0.757222},
+ {0.208888666666666,0.752222,0.212777999999999,0.755},
+ {0.204999999999999,0.75,0.208888666666666,0.752222},
+ {0.201111333333332,0.747222,0.204999999999999,0.75},
+ {0.198333333333333,0.744444666666666,0.201111333333332,0.747222},
+ {0.195555333333332,0.741111333333333,0.198333333333333,0.744444666666666},
+ {0.193333333333333,0.737222,0.195555333333332,0.741111333333333},
+ {0.191111333333333,0.731111333333333,0.193333333333333,0.737222},
+ {0.189444666666666,0.722778,0.191111333333333,0.731111333333333},
+ {0.188888666666666,0.713333333333334,0.189444666666666,0.722778},
+ {0.189444666666666,0.702222,0.188888666666666,0.713333333333334},
+ {0.190555333333332,0.69,0.189444666666666,0.702222},
+ {0.192222,0.676666666666667,0.190555333333332,0.69},
+ {0.194999999999999,0.662222,0.192222,0.676666666666667},
+ {0.197778,0.647778,0.194999999999999,0.662222},
+ {0.199999999999999,0.632778,0.197778,0.647778},
+ {0.202221999999999,0.618333333333334,0.199999999999999,0.632778},
+ {0.203888666666667,0.605,0.202221999999999,0.618333333333334},
+ {0.204444666666666,0.592778,0.203888666666667,0.605},
+ {0.203888666666667,0.581666666666666,0.204444666666666,0.592778},
+ {0.201666666666666,0.572222,0.203888666666667,0.581666666666666},
+ {0.198333333333333,0.563888666666667,0.201666666666666,0.572222},
+ {0.193333333333333,0.557778,0.198333333333333,0.563888666666667},
+ {0.187222,0.552778,0.193333333333333,0.557778},
+ {0.178888666666666,0.55,0.187222,0.552778},
+ {0.169444666666666,0.548333333333333,0.178888666666666,0.55},
+ {0.158333333333333,0.548888666666667,0.169444666666666,0.548333333333333},
+ {0.146111333333333,0.550555333333334,0.158333333333333,0.548888666666667},
+ {0.132777999999999,0.553888666666667,0.146111333333333,0.550555333333334},
+ {0.118333333333332,0.557778,0.132777999999999,0.553888666666667},
+ {0.103888666666666,0.562222,0.118333333333332,0.557778},
+ {0.0888886666666657,0.566111333333333,0.103888666666666,0.562222},
+ {0.0744446666666659,0.57,0.0888886666666657,0.566111333333333},
+ {0.0611113333333329,0.572778,0.0744446666666659,0.57},
+ {0.0488886666666666,0.573888666666667,0.0611113333333329,0.572778},
+ {0.0377779999999994,0.572778,0.0488886666666666,0.573888666666667},
+ {0.0283333333333324,0.57,0.0377779999999994,0.572778},
+ {0.0199999999999996,0.565,0.0283333333333324,0.57},
+ {0.0138886666666664,0.557778,0.0199999999999996,0.565},
+ {0.00999999999999919,0.551111333333333,0.0138886666666664,0.557778},
+ {0.00722199999999991,0.543333333333334,0.00999999999999919,0.551111333333333},
+ {0.00499999999999901,0.533888666666667,0.00722199999999991,0.543333333333334},
+ {0.00277799999999928,0.523333333333333,0.00499999999999901,0.533888666666667},
+ {0.00166666666666634,0.511666666666667,0.00277799999999928,0.523333333333333},
+ {0.000555333333332205,0.498888666666667,0.00166666666666634,0.511666666666667},
+ {0.000555333333332205,0.485,0.000555333333332205,0.498888666666667},
+ {0,0.470555333333333,0.000555333333332205,0.485},
+ {0.000555333333332205,0.455,0,0.470555333333333},
+ {0.000555333333332205,0.439444666666667,0.000555333333332205,0.455},
+ {0.00111133333333295,0.423333333333333,0.000555333333332205,0.439444666666667},
+ {0.00222199999999972,0.407222,0.00111133333333295,0.423333333333333},
+ {0.00277799999999928,0.391666666666667,0.00222199999999972,0.407222},
+ {0.00388866666666606,0.376111333333334,0.00277799999999928,0.391666666666667},
+ {0.00444466666666562,0.361666666666667,0.00388866666666606,0.376111333333334},
+ {0.00555533333333239,0.347778,0.00444466666666562,0.361666666666667},
+ {0.00666666666666652,0.335,0.00555533333333239,0.347778},
+ {0.00777799999999947,0.323333333333334,0.00666666666666652,0.335},
+ {0.00888866666666625,0.312778,0.00777799999999947,0.323333333333334},
+ {0.0105553333333326,0.303333333333333,0.00888866666666625,0.312778},
+ {0.0122219999999989,0.295555333333333,0.0105553333333326,0.303333333333333},
+ {0.0138886666666664,0.288888666666667,0.0122219999999989,0.295555333333333},
+ {0.0166666666666657,0.282222,0.0138886666666664,0.288888666666667},
+ {0.0199999999999996,0.277222,0.0166666666666657,0.282222},
+ {0.0238886666666656,0.273333333333333,0.0199999999999996,0.277222},
+ {0.0288886666666658,0.270555333333334,0.0238886666666656,0.273333333333333},
+ {0.033888666666666,0.268333333333333,0.0288886666666658,0.270555333333334},
+ {0.0394446666666658,0.267222,0.033888666666666,0.268333333333333},
+ {0.0588886666666658,0.267778,0.0522219999999992,0.267222},
+ {0.0649999999999989,0.268888666666667,0.0588886666666658,0.267778},
+ {0.0716666666666666,0.27,0.0649999999999989,0.268888666666667},
+ {0.0777779999999998,0.271666666666667,0.0716666666666666,0.27},
+ {0.0833333333333333,0.273333333333333,0.0777779999999998,0.271666666666667},
+ {0.0883333333333323,0.275555333333333,0.0833333333333333,0.273333333333333},
+ {0.0933333333333325,0.277778,0.0883333333333323,0.275555333333333},
+ {0.0972219999999998,0.280555333333333,0.0933333333333325,0.277778},
+ {0.100555333333332,0.284444666666667,0.0972219999999998,0.280555333333333},
+ {0.103333333333333,0.288888666666667,0.100555333333332,0.284444666666667},
+ {0,0,0,0}
+};
+
+double Icon17[][4] = {
+ {0.297777333333332,0.291666666666667,0.291110666666666,0.288888666666667},
+ {0.302777333333333,0.295,0.297777333333332,0.291666666666667},
+ {0.306666666666666,0.298888666666667,0.302777333333333,0.295},
+ {0.309443999999999,0.303888666666667,0.306666666666666,0.298888666666667},
+ {0.311666666666666,0.308888666666667,0.309443999999999,0.303888666666667},
+ {0.312777333333333,0.314444666666667,0.311666666666666,0.308888666666667},
+ {0.312777333333333,0.320555333333333,0.312777333333333,0.314444666666667},
+ {0.312777333333333,0.327222,0.312777333333333,0.320555333333333},
+ {0.312222,0.333888666666667,0.312777333333333,0.327222},
+ {0.311110666666667,0.34,0.312222,0.333888666666667},
+ {0.31,0.346666666666666,0.311110666666667,0.34},
+ {0.308333333333332,0.352778,0.31,0.346666666666666},
+ {0.306666666666666,0.358333333333333,0.308333333333332,0.352778},
+ {0.304444,0.363333333333333,0.306666666666666,0.358333333333333},
+ {0.302221999999999,0.368333333333334,0.304444,0.363333333333333},
+ {0.299444,0.372222,0.302221999999999,0.368333333333334},
+ {0.295555333333333,0.375555333333333,0.299444,0.372222},
+ {0.291110666666666,0.378333333333333,0.295555333333333,0.375555333333333},
+ {0.285,0.380555333333334,0.291110666666666,0.378333333333333},
+ {0.276666666666666,0.382222,0.285,0.380555333333334},
+ {0.267221999999999,0.383333333333334,0.276666666666666,0.382222},
+ {0.243888666666666,0.382778,0.256110666666666,0.383333333333334},
+ {0.230555333333333,0.381666666666667,0.243888666666666,0.382778},
+ {0.216110666666667,0.38,0.230555333333333,0.381666666666667},
+ {0.201666666666667,0.378333333333333,0.216110666666667,0.38},
+ {0.186666666666666,0.376666666666667,0.201666666666667,0.378333333333333},
+ {0.172221999999999,0.375,0.186666666666666,0.376666666666667},
+ {0.158888666666666,0.373888666666667,0.172221999999999,0.375},
+ {0.146666666666666,0.373333333333333,0.158888666666666,0.373888666666667},
+ {0.126110666666667,0.374444666666667,0.135555333333333,0.373333333333333},
+ {0.117777333333333,0.376111333333334,0.126110666666667,0.374444666666667},
+ {0.111666666666666,0.378333333333333,0.117777333333333,0.376111333333334},
+ {0.106666666666667,0.381666666666667,0.111666666666666,0.378333333333333},
+ {0.102777333333333,0.385555333333333,0.106666666666667,0.381666666666667},
+ {0.099999999999999,0.39,0.102777333333333,0.385555333333333},
+ {0.0977773333333332,0.395555333333334,0.099999999999999,0.39},
+ {0.0966666666666664,0.402222,0.0977773333333332,0.395555333333334},
+ {0.0955553333333334,0.408888666666667,0.0966666666666664,0.402222},
+ {0.095,0.416111333333333,0.0955553333333334,0.408888666666667},
+ {0.095,0.423333333333333,0.095,0.416111333333333},
+ {0.095,0.430555333333333,0.095,0.423333333333333},
+ {0.0955553333333334,0.437778,0.095,0.430555333333333},
+ {0.0966666666666664,0.444444666666667,0.0955553333333334,0.437778},
+ {0.0977773333333332,0.451111333333333,0.0966666666666664,0.444444666666667},
+ {0.099999999999999,0.456666666666666,0.0977773333333332,0.451111333333333},
+ {0.102777333333333,0.461111333333333,0.099999999999999,0.456666666666666},
+ {0.106666666666667,0.465,0.102777333333333,0.461111333333333},
+ {0.111666666666666,0.468333333333333,0.106666666666667,0.465},
+ {0.117777333333333,0.470555333333333,0.111666666666666,0.468333333333333},
+ {0.126110666666667,0.472222,0.117777333333333,0.470555333333333},
+ {0.146666666666666,0.471666666666666,0.135555333333333,0.472222},
+ {0.158888666666666,0.469444666666667,0.146666666666666,0.471666666666666},
+ {0.172221999999999,0.466666666666667,0.158888666666666,0.469444666666667},
+ {0.186666666666666,0.463333333333334,0.172221999999999,0.466666666666667},
+ {0.201666666666667,0.46,0.186666666666666,0.463333333333334},
+ {0.216110666666667,0.456666666666666,0.201666666666667,0.46},
+ {0.230555333333333,0.453888666666667,0.216110666666667,0.456666666666666},
+ {0.243888666666666,0.452222,0.230555333333333,0.453888666666667},
+ {0.256110666666666,0.451666666666667,0.243888666666666,0.452222},
+ {0.267221999999999,0.452778,0.256110666666666,0.451666666666667},
+ {0.276666666666666,0.455555333333334,0.267221999999999,0.452778},
+ {0.285,0.461111333333333,0.276666666666666,0.455555333333334},
+ {0.291110666666666,0.468333333333333,0.285,0.461111333333333},
+ {0.294999999999999,0.475,0.291110666666666,0.468333333333333},
+ {0.297777333333332,0.482778,0.294999999999999,0.475},
+ {0.300555333333333,0.492222,0.297777333333332,0.482778},
+ {0.302777333333333,0.502778,0.300555333333333,0.492222},
+ {0.305,0.514444666666667,0.302777333333333,0.502778},
+ {0.306666666666666,0.527222,0.305,0.514444666666667},
+ {0.307777333333333,0.541111333333333,0.306666666666666,0.527222},
+ {0.309443999999999,0.555555333333333,0.307777333333333,0.541111333333333},
+ {0.310555333333333,0.571111333333333,0.309443999999999,0.555555333333333},
+ {0.311666666666666,0.586666666666667,0.310555333333333,0.571111333333333},
+ {0.312222,0.602778,0.311666666666666,0.586666666666667},
+ {0.312777333333333,0.618888666666667,0.312222,0.602778},
+ {0.312777333333333,0.634444666666666,0.312777333333333,0.618888666666667},
+ {0.312777333333333,0.65,0.312777333333333,0.634444666666666},
+ {0.312222,0.664444666666667,0.312777333333333,0.65},
+ {0.311110666666667,0.678333333333333,0.312222,0.664444666666667},
+ {0.31,0.691111333333333,0.311110666666667,0.678333333333333},
+ {0.307777333333333,0.702778,0.31,0.691111333333333},
+ {0.305,0.713333333333334,0.307777333333333,0.702778},
+ {0.301110666666666,0.722778,0.305,0.713333333333334},
+ {0.296666666666666,0.730555333333333,0.301110666666666,0.722778},
+ {0.291110666666666,0.737222,0.296666666666666,0.730555333333333},
+ {0.284443999999999,0.742778,0.291110666666666,0.737222},
+ {0.276666666666666,0.747222,0.284443999999999,0.742778},
+ {0.267221999999999,0.750555333333333,0.276666666666666,0.747222},
+ {0.256666666666666,0.753333333333333,0.267221999999999,0.750555333333333},
+ {0.245,0.755,0.256666666666666,0.753333333333333},
+ {0.232222,0.756111333333333,0.245,0.755},
+ {0.218333333333333,0.756666666666667,0.232222,0.756111333333333},
+ {0.188333333333333,0.756111333333333,0.203333333333333,0.756666666666667},
+ {0.172221999999999,0.755,0.188333333333333,0.756111333333333},
+ {0.156110666666667,0.753888666666667,0.172221999999999,0.755},
+ {0.140555333333333,0.752778,0.156110666666667,0.753888666666667},
+ {0.124443999999999,0.751111333333334,0.140555333333333,0.752778},
+ {0.109444,0.749444666666667,0.124443999999999,0.751111333333334},
+ {0.0944439999999993,0.748333333333333,0.109444,0.749444666666667},
+ {0.0805553333333329,0.746666666666667,0.0944439999999993,0.748333333333333},
+ {0.0677773333333332,0.745,0.0805553333333329,0.746666666666667},
+ {0.0561106666666665,0.743888666666667,0.0677773333333332,0.745},
+ {0.0455553333333327,0.742222,0.0561106666666665,0.743888666666667},
+ {0.0361106666666657,0.740555333333334,0.0455553333333327,0.742222},
+ {0.0283333333333324,0.738888666666667,0.0361106666666657,0.740555333333334},
+ {0.0216666666666659,0.737222,0.0283333333333324,0.738888666666667},
+ {0.0149999999999994,0.734444666666667,0.0216666666666659,0.737222},
+ {0.00999999999999919,0.731111333333333,0.0149999999999994,0.734444666666667},
+ {0.00611066666666578,0.727222,0.00999999999999919,0.731111333333333},
+ {0.00333333333333267,0.722222,0.00611066666666578,0.727222},
+ {0.00111066666666678,0.717222,0.00333333333333267,0.722222},
+ {0,0.711666666666667,0.00111066666666678,0.717222},
+ {0,0.705555333333334,0,0.711666666666667},
+ {0,0.698888666666667,0,0.705555333333334},
+ {0.000555333333333389,0.692222,0,0.698888666666667},
+ {0.00166666666666634,0.686111333333334,0.000555333333333389,0.692222},
+ {0.00277733333333311,0.679444666666667,0.00166666666666634,0.686111333333334},
+ {0.00444399999999945,0.673333333333333,0.00277733333333311,0.679444666666667},
+ {0.00611066666666578,0.667778,0.00444399999999945,0.673333333333333},
+ {0.00833333333333286,0.662778,0.00611066666666578,0.667778},
+ {0.0105553333333326,0.657778,0.00833333333333286,0.662778},
+ {0.013333333333333,0.653888666666666,0.0105553333333326,0.657778},
+ {0.0172219999999991,0.650555333333333,0.013333333333333,0.653888666666666},
+ {0.0216666666666659,0.647778,0.0172219999999991,0.650555333333333},
+ {0.0277773333333329,0.645555333333334,0.0216666666666659,0.647778},
+ {0.0361106666666657,0.643888666666667,0.0277773333333329,0.645555333333334},
+ {0.0455553333333327,0.642778,0.0361106666666657,0.643888666666667},
+ {0.0688886666666662,0.643333333333333,0.056666666666666,0.642778},
+ {0.0822219999999992,0.644444666666667,0.0688886666666662,0.643333333333333},
+ {0.0966666666666664,0.646111333333333,0.0822219999999992,0.644444666666667},
+ {0.111666666666666,0.647778,0.0966666666666664,0.646111333333333},
+ {0.126110666666667,0.649444666666666,0.111666666666666,0.647778},
+ {0.140555333333333,0.651111333333333,0.126110666666667,0.649444666666666},
+ {0.153888666666666,0.652222,0.140555333333333,0.651111333333333},
+ {0.166110666666666,0.652778,0.153888666666666,0.652222},
+ {0.186666666666666,0.651666666666667,0.177221999999999,0.652778},
+ {0.194999999999999,0.65,0.186666666666666,0.651666666666667},
+ {0.201110666666666,0.647778,0.194999999999999,0.65},
+ {0.206110666666666,0.644444666666667,0.201110666666666,0.647778},
+ {0.21,0.640555333333333,0.206110666666666,0.644444666666667},
+ {0.212777333333333,0.636111333333333,0.21,0.640555333333333},
+ {0.215,0.630555333333334,0.212777333333333,0.636111333333333},
+ {0.216110666666667,0.623888666666667,0.215,0.630555333333334},
+ {0.217222,0.617222,0.216110666666667,0.623888666666667},
+ {0.217777333333333,0.61,0.217222,0.617222},
+ {0.217777333333333,0.602778,0.217777333333333,0.61},
+ {0.217777333333333,0.595555333333333,0.217777333333333,0.602778},
+ {0.217222,0.588333333333334,0.217777333333333,0.595555333333333},
+ {0.216110666666667,0.581666666666666,0.217222,0.588333333333334},
+ {0.215,0.575,0.216110666666667,0.581666666666666},
+ {0.212777333333333,0.569444666666667,0.215,0.575},
+ {0.21,0.565,0.212777333333333,0.569444666666667},
+ {0.206110666666666,0.561111333333334,0.21,0.565},
+ {0.201110666666666,0.557778,0.206110666666666,0.561111333333334},
+ {0.194999999999999,0.555555333333333,0.201110666666666,0.557778},
+ {0.186666666666666,0.553888666666667,0.194999999999999,0.555555333333333},
+ {0.166110666666666,0.554444666666667,0.177221999999999,0.553888666666667},
+ {0.153888666666666,0.556666666666667,0.166110666666666,0.554444666666667},
+ {0.140555333333333,0.559444666666667,0.153888666666666,0.556666666666667},
+ {0.126110666666667,0.562778,0.140555333333333,0.559444666666667},
+ {0.111666666666666,0.566111333333333,0.126110666666667,0.562778},
+ {0.0966666666666664,0.569444666666667,0.111666666666666,0.566111333333333},
+ {0.0822219999999992,0.572222,0.0966666666666664,0.569444666666667},
+ {0.0688886666666662,0.573888666666667,0.0822219999999992,0.572222},
+ {0.056666666666666,0.574444666666666,0.0688886666666662,0.573888666666667},
+ {0.0455553333333327,0.573333333333334,0.056666666666666,0.574444666666666},
+ {0.0361106666666657,0.570555333333333,0.0455553333333327,0.573333333333334},
+ {0.0277773333333329,0.565,0.0361106666666657,0.570555333333333},
+ {0.0216666666666659,0.557778,0.0277773333333329,0.565},
+ {0.0177773333333325,0.551111333333333,0.0216666666666659,0.557778},
+ {0.0149999999999994,0.543333333333334,0.0177773333333325,0.551111333333333},
+ {0.0122220000000001,0.533888666666667,0.0149999999999994,0.543333333333334},
+ {0.00999999999999919,0.523333333333333,0.0122220000000001,0.533888666666667},
+ {0.0077773333333333,0.511666666666667,0.00999999999999919,0.523333333333333},
+ {0.00611066666666578,0.498888666666667,0.0077773333333333,0.511666666666667},
+ {0.00499999999999901,0.485,0.00611066666666578,0.498888666666667},
+ {0.00333333333333267,0.470555333333333,0.00499999999999901,0.485},
+ {0.00222199999999972,0.455,0.00333333333333267,0.470555333333333},
+ {0.00111066666666678,0.439444666666667,0.00222199999999972,0.455},
+ {0.000555333333333389,0.423333333333333,0.00111066666666678,0.439444666666667},
+ {0,0.407222,0.000555333333333389,0.423333333333333},
+ {0,0.391666666666667,0,0.407222},
+ {0,0.376111333333334,0,0.391666666666667},
+ {0.000555333333333389,0.361666666666667,0,0.376111333333334},
+ {0.00166666666666634,0.347778,0.000555333333333389,0.361666666666667},
+ {0.00277733333333311,0.335,0.00166666666666634,0.347778},
+ {0.00499999999999901,0.323333333333334,0.00277733333333311,0.335},
+ {0.0077773333333333,0.312778,0.00499999999999901,0.323333333333334},
+ {0.0116666666666667,0.303333333333333,0.0077773333333333,0.312778},
+ {0.0161106666666662,0.295555333333333,0.0116666666666667,0.303333333333333},
+ {0.0216666666666659,0.288888666666667,0.0161106666666662,0.295555333333333},
+ {0.0283333333333324,0.283333333333333,0.0216666666666659,0.288888666666667},
+ {0.0361106666666657,0.278888666666666,0.0283333333333324,0.283333333333333},
+ {0.0455553333333327,0.275555333333333,0.0361106666666657,0.278888666666666},
+ {0.0561106666666665,0.272778,0.0455553333333327,0.275555333333333},
+ {0.0677773333333332,0.271111333333333,0.0561106666666665,0.272778},
+ {0.0805553333333329,0.27,0.0677773333333332,0.271111333333333},
+ {0.0944439999999993,0.269444666666667,0.0805553333333329,0.27},
+ {0.124443999999999,0.27,0.109444,0.269444666666667},
+ {0.140555333333333,0.271111333333333,0.124443999999999,0.27},
+ {0.156666666666666,0.272222,0.140555333333333,0.271111333333333},
+ {0.172221999999999,0.273333333333333,0.156666666666666,0.272222},
+ {0.188333333333333,0.275,0.172221999999999,0.273333333333333},
+ {0.203333333333333,0.276666666666667,0.188333333333333,0.275},
+ {0.218333333333333,0.277778,0.203333333333333,0.276666666666667},
+ {0.232222,0.279444666666667,0.218333333333333,0.277778},
+ {0.245,0.281111333333333,0.232222,0.279444666666667},
+ {0.256666666666666,0.282222,0.245,0.281111333333333},
+ {0.267221999999999,0.283888666666667,0.256666666666666,0.282222},
+ {0.276666666666666,0.285555333333334,0.267221999999999,0.283888666666667},
+ {0.284443999999999,0.287222,0.276666666666666,0.285555333333334},
+ {0.291110666666666,0.288888666666667,0.284443999999999,0.287222},
+ {0,0,0,0}
+};
+
+double Icon18[][4] = {
+ {0.0249999999999998,0.288888666666667,0.0205553333333341,0.297222},
+ {0.0205553333333341,0.297222,0.0166666666666669,0.307222},
+ {0.0166666666666669,0.307222,0.013333333333333,0.318333333333333},
+ {0.013333333333333,0.318333333333333,0.0105553333333338,0.331111333333334},
+ {0.0105553333333338,0.331111333333334,0.00833333333333404,0.344444666666667},
+ {0.00833333333333404,0.344444666666667,0.00611133333333314,0.36},
+ {0.00611133333333314,0.36,0.0044446666666668,0.376111333333334},
+ {0.0044446666666668,0.376111333333334,0.00333333333333385,0.393333333333333},
+ {0.00333333333333385,0.393333333333333,0.00222199999999972,0.411666666666667},
+ {0.00222199999999972,0.411666666666667,0.00111133333333413,0.431111333333333},
+ {0.00111133333333413,0.431111333333333,0.000555333333333389,0.450555333333333},
+ {0.000555333333333389,0.450555333333333,0,0.471111333333334},
+ {0,0.471111333333334,0,0.492222},
+ {0,0.492222,0,0.513333333333333},
+ {0,0.513333333333333,0,0.533888666666667},
+ {0,0.533888666666667,0,0.555},
+ {0,0.555,0.000555333333333389,0.575555333333333},
+ {0.000555333333333389,0.575555333333333,0.00111133333333413,0.595},
+ {0.00111133333333413,0.595,0.00222199999999972,0.614444666666667},
+ {0.00222199999999972,0.614444666666667,0.00333333333333385,0.632778},
+ {0.00333333333333385,0.632778,0.0044446666666668,0.65},
+ {0.0044446666666668,0.65,0.00611133333333314,0.666111333333333},
+ {0.00611133333333314,0.666111333333333,0.00833333333333404,0.681666666666667},
+ {0.00833333333333404,0.681666666666667,0.0105553333333338,0.695},
+ {0.0105553333333338,0.695,0.013333333333333,0.707778},
+ {0.013333333333333,0.707778,0.0166666666666669,0.718888666666667},
+ {0.0166666666666669,0.718888666666667,0.0205553333333341,0.728888666666667},
+ {0.0205553333333341,0.728888666666667,0.0249999999999998,0.737222},
+ {0.0249999999999998,0.737222,0.0311113333333341,0.745555333333333},
+ {0.0311113333333341,0.745555333333333,0.038333333333334,0.752778},
+ {0.038333333333334,0.752778,0.0466666666666669,0.758888666666667},
+ {0.0466666666666669,0.758888666666667,0.0555553333333331,0.763333333333333},
+ {0.0555553333333331,0.763333333333333,0.066111333333333,0.767222},
+ {0.066111333333333,0.767222,0.0772220000000002,0.769444666666667},
+ {0.0772220000000002,0.769444666666667,0.0894446666666665,0.771111333333333},
+ {0.0894446666666665,0.771111333333333,0.102778000000001,0.772222},
+ {0.102778000000001,0.772222,0.116111333333334,0.772778},
+ {0.116111333333334,0.772778,0.130555333333334,0.772222},
+ {0.130555333333334,0.772222,0.145000000000001,0.771666666666667},
+ {0.145000000000001,0.771666666666667,0.16,0.771111333333333},
+ {0.16,0.771111333333333,0.174444666666667,0.769444666666667},
+ {0.174444666666667,0.769444666666667,0.188888666666667,0.767778},
+ {0.188888666666667,0.767778,0.203333333333333,0.766111333333334},
+ {0.203333333333333,0.766111333333334,0.216666666666667,0.763888666666666},
+ {0.216666666666667,0.763888666666666,0.23,0.762222},
+ {0.23,0.762222,0.242222000000001,0.759444666666666},
+ {0.242222000000001,0.759444666666666,0.253333333333334,0.756666666666667},
+ {0.253333333333334,0.756666666666667,0.263888666666666,0.753888666666667},
+ {0.263888666666666,0.753888666666667,0.272778,0.750555333333333},
+ {0.272778,0.750555333333333,0.281111333333334,0.746666666666667},
+ {0.281111333333334,0.746666666666667,0.288333333333334,0.742222},
+ {0.288333333333334,0.742222,0.294444666666667,0.737222},
+ {0.294444666666667,0.737222,0.300000000000001,0.730555333333333},
+ {0.300000000000001,0.730555333333333,0.304444666666667,0.722778},
+ {0.304444666666667,0.722778,0.308333333333334,0.713333333333334},
+ {0.308333333333334,0.713333333333334,0.311111333333334,0.702778},
+ {0.311111333333334,0.702778,0.313333333333334,0.691111333333333},
+ {0.313333333333334,0.691111333333333,0.314444666666667,0.678333333333333},
+ {0.314444666666667,0.678333333333333,0.315555333333333,0.664444666666667},
+ {0.315555333333333,0.664444666666667,0.316111333333333,0.65},
+ {0.316111333333333,0.65,0.316111333333333,0.634444666666666},
+ {0.316111333333333,0.634444666666666,0.316111333333333,0.618888666666667},
+ {0.316111333333333,0.618888666666667,0.315555333333333,0.602778},
+ {0.315555333333333,0.602778,0.315,0.586666666666667},
+ {0.315,0.586666666666667,0.313888666666667,0.571111333333333},
+ {0.313888666666667,0.571111333333333,0.312778,0.555555333333333},
+ {0.312778,0.555555333333333,0.311111333333334,0.541111333333333},
+ {0.311111333333334,0.541111333333333,0.31,0.527222},
+ {0.31,0.527222,0.308333333333334,0.514444666666667},
+ {0.308333333333334,0.514444666666667,0.306111333333334,0.502778},
+ {0.306111333333334,0.502778,0.303888666666667,0.492222},
+ {0.303888666666667,0.492222,0.301111333333334,0.482778},
+ {0.301111333333334,0.482778,0.298333333333333,0.475},
+ {0.298333333333333,0.475,0.294444666666667,0.468333333333333},
+ {0.294444666666667,0.468333333333333,0.288333333333334,0.461111333333333},
+ {0.288333333333334,0.461111333333333,0.28,0.455555333333334},
+ {0.28,0.455555333333334,0.270555333333334,0.452778},
+ {0.270555333333334,0.452778,0.259444666666667,0.451666666666667},
+ {0.259444666666667,0.451666666666667,0.247222000000001,0.452222},
+ {0.247222000000001,0.452222,0.233888666666666,0.453888666666667},
+ {0.233888666666666,0.453888666666667,0.219444666666667,0.456666666666666},
+ {0.219444666666667,0.456666666666666,0.205000000000001,0.46},
+ {0.205000000000001,0.46,0.19,0.463333333333334},
+ {0.19,0.463333333333334,0.175555333333334,0.466666666666667},
+ {0.175555333333334,0.466666666666667,0.162222,0.469444666666667},
+ {0.162222,0.469444666666667,0.15,0.471666666666666},
+ {0.15,0.471666666666666,0.138888666666666,0.472222},
+ {0.129444666666667,0.472222,0.121111333333334,0.470555333333333},
+ {0.121111333333334,0.470555333333333,0.115000000000001,0.468333333333333},
+ {0.115000000000001,0.468333333333333,0.110000000000001,0.465},
+ {0.110000000000001,0.465,0.106111333333333,0.461111333333333},
+ {0.106111333333333,0.461111333333333,0.103333333333334,0.456666666666666},
+ {0.103333333333334,0.456666666666666,0.101111333333333,0.451111333333333},
+ {0.101111333333333,0.451111333333333,0.1,0.444444666666667},
+ {0.1,0.444444666666667,0.0988886666666673,0.437778},
+ {0.0988886666666673,0.437778,0.0983333333333339,0.430555333333333},
+ {0.0983333333333339,0.430555333333333,0.0983333333333339,0.423333333333333},
+ {0.0983333333333339,0.423333333333333,0.0983333333333339,0.416111333333333},
+ {0.0983333333333339,0.416111333333333,0.0988886666666673,0.408888666666667},
+ {0.0988886666666673,0.408888666666667,0.1,0.402222},
+ {0.1,0.402222,0.101111333333333,0.395555333333334},
+ {0.101111333333333,0.395555333333334,0.103333333333334,0.39},
+ {0.103333333333334,0.39,0.106111333333333,0.385555333333333},
+ {0.106111333333333,0.385555333333333,0.110000000000001,0.381666666666667},
+ {0.110000000000001,0.381666666666667,0.115000000000001,0.378333333333333},
+ {0.115000000000001,0.378333333333333,0.121111333333334,0.376111333333334},
+ {0.121111333333334,0.376111333333334,0.129444666666667,0.374444666666667},
+ {0.129444666666667,0.374444666666667,0.138888666666666,0.373333333333333},
+ {0.15,0.373333333333333,0.162222,0.373888666666667},
+ {0.162222,0.373888666666667,0.175555333333334,0.375},
+ {0.175555333333334,0.375,0.19,0.376666666666667},
+ {0.19,0.376666666666667,0.205000000000001,0.378333333333333},
+ {0.205000000000001,0.378333333333333,0.219444666666667,0.38},
+ {0.219444666666667,0.38,0.233888666666666,0.381666666666667},
+ {0.233888666666666,0.381666666666667,0.247222000000001,0.382778},
+ {0.247222000000001,0.382778,0.259444666666667,0.383333333333334},
+ {0.270555333333334,0.383333333333334,0.28,0.382222},
+ {0.28,0.382222,0.288333333333334,0.380555333333334},
+ {0.288333333333334,0.380555333333334,0.294444666666667,0.378333333333333},
+ {0.294444666666667,0.378333333333333,0.298888666666667,0.375555333333333},
+ {0.298888666666667,0.375555333333333,0.302778,0.372222},
+ {0.302778,0.372222,0.305555333333333,0.368333333333334},
+ {0.305555333333333,0.368333333333334,0.307778,0.363333333333333},
+ {0.307778,0.363333333333333,0.31,0.358333333333333},
+ {0.31,0.358333333333333,0.311666666666667,0.352778},
+ {0.311666666666667,0.352778,0.313333333333334,0.346666666666666},
+ {0.313333333333334,0.346666666666666,0.314444666666667,0.34},
+ {0.314444666666667,0.34,0.315555333333333,0.333333333333333},
+ {0.315555333333333,0.333333333333333,0.316111333333333,0.327222},
+ {0.316111333333333,0.327222,0.316111333333333,0.320555333333333},
+ {0.316111333333333,0.320555333333333,0.316111333333333,0.314444666666667},
+ {0.316111333333333,0.314444666666667,0.315,0.308888666666667},
+ {0.315,0.308888666666667,0.312778,0.303888666666667},
+ {0.312778,0.303888666666667,0.31,0.298888666666667},
+ {0.31,0.298888666666667,0.306111333333334,0.295},
+ {0.306111333333334,0.295,0.301111333333334,0.291666666666667},
+ {0.301111333333334,0.291666666666667,0.294444666666667,0.288888666666667},
+ {0.294444666666667,0.288888666666667,0.287778000000001,0.287222},
+ {0.287778000000001,0.287222,0.28,0.285},
+ {0.28,0.285,0.270555333333334,0.283333333333333},
+ {0.270555333333334,0.283333333333333,0.26,0.281666666666667},
+ {0.26,0.281666666666667,0.248333333333334,0.279444666666667},
+ {0.248333333333334,0.279444666666667,0.235555333333334,0.277222},
+ {0.235555333333334,0.277222,0.221666666666666,0.274444666666666},
+ {0.221666666666666,0.274444666666666,0.206666666666667,0.272222},
+ {0.206666666666667,0.272222,0.191666666666666,0.268888666666667},
+ {0.191666666666666,0.268888666666667,0.175555333333334,0.266111333333334},
+ {0.175555333333334,0.266111333333334,0.159444666666667,0.263888666666666},
+ {0.159444666666667,0.263888666666666,0.143888666666667,0.261111333333333},
+ {0.143888666666667,0.261111333333333,0.127778,0.259444666666666},
+ {0.127778,0.259444666666666,0.112778,0.257778},
+ {0.112778,0.257778,0.0977780000000005,0.257222},
+ {0.0977780000000005,0.257222,0.0838886666666667,0.257778},
+ {0.0838886666666667,0.257778,0.0711113333333332,0.259444666666666},
+ {0.0711113333333332,0.259444666666666,0.0594446666666665,0.262222},
+ {0.0594446666666665,0.262222,0.0488886666666666,0.266111333333334},
+ {0.0488886666666666,0.266111333333334,0.0394446666666669,0.272222},
+ {0.0394446666666669,0.272222,0.0316666666666675,0.279444666666667},
+ {0.0316666666666675,0.279444666666667,0.0249999999999998,0.288888666666667},
+ {0.204444666666667,0.557778,0.207778,0.562222},
+ {0.207778,0.562222,0.210000000000001,0.567778},
+ {0.210000000000001,0.567778,0.211111333333334,0.575},
+ {0.211111333333334,0.575,0.212222000000001,0.583888666666667},
+ {0.212222000000001,0.583888666666667,0.212778,0.592778},
+ {0.212778,0.592778,0.212778,0.602778},
+ {0.212778,0.602778,0.212778,0.612778},
+ {0.212778,0.612778,0.212222000000001,0.621666666666667},
+ {0.212222000000001,0.621666666666667,0.211111333333334,0.630555333333334},
+ {0.211111333333334,0.630555333333334,0.210000000000001,0.637778},
+ {0.210000000000001,0.637778,0.207778,0.643333333333333},
+ {0.207778,0.643333333333333,0.204444666666667,0.647778},
+ {0.204444666666667,0.647778,0.2,0.651111333333333},
+ {0.2,0.651111333333333,0.194444666666667,0.653333333333334},
+ {0.194444666666667,0.653333333333334,0.187222000000001,0.654444666666667},
+ {0.187222000000001,0.654444666666667,0.178888666666667,0.655555333333333},
+ {0.178888666666667,0.655555333333333,0.169444666666667,0.656111333333333},
+ {0.15,0.656111333333333,0.140555333333334,0.655555333333333},
+ {0.140555333333334,0.655555333333333,0.132222,0.654444666666667},
+ {0.132222,0.654444666666667,0.125,0.653333333333334},
+ {0.125,0.653333333333334,0.119444666666666,0.651111333333333},
+ {0.119444666666666,0.651111333333333,0.115000000000001,0.647778},
+ {0.115000000000001,0.647778,0.111666666666667,0.643333333333333},
+ {0.111666666666667,0.643333333333333,0.109444666666667,0.637778},
+ {0.109444666666667,0.637778,0.108333333333333,0.630555333333334},
+ {0.108333333333333,0.630555333333334,0.107222,0.621666666666667},
+ {0.107222,0.621666666666667,0.106666666666667,0.612778},
+ {0.106666666666667,0.612778,0.106666666666667,0.602778},
+ {0.106666666666667,0.602778,0.106666666666667,0.592778},
+ {0.106666666666667,0.592778,0.107222,0.583888666666667},
+ {0.107222,0.583888666666667,0.108333333333333,0.575},
+ {0.108333333333333,0.575,0.109444666666667,0.567778},
+ {0.109444666666667,0.567778,0.111666666666667,0.562222},
+ {0.111666666666667,0.562222,0.115000000000001,0.557778},
+ {0.115000000000001,0.557778,0.119444666666666,0.554444666666667},
+ {0.119444666666666,0.554444666666667,0.125,0.552222},
+ {0.125,0.552222,0.132222,0.551111333333333},
+ {0.132222,0.551111333333333,0.140555333333334,0.55},
+ {0.140555333333334,0.55,0.15,0.549444666666667},
+ {0.169444666666667,0.549444666666667,0.178888666666667,0.55},
+ {0.178888666666667,0.55,0.187222000000001,0.551111333333333},
+ {0.187222000000001,0.551111333333333,0.194444666666667,0.552222},
+ {0.194444666666667,0.552222,0.2,0.554444666666667},
+ {0.2,0.554444666666667,0.204444666666667,0.557778},
+ {0,0,0,0}
+};
+
+double Icon19[][4] = {
+ {0.293889333333333,0.297222,0.291111333333333,0.288888666666667},
+ {0.295556,0.307222,0.293889333333333,0.297222},
+ {0.296666666666667,0.318333333333333,0.295556,0.307222},
+ {0.296666666666667,0.331111333333334,0.296666666666667,0.318333333333333},
+ {0.296111333333333,0.344444666666667,0.296666666666667,0.331111333333334},
+ {0.294444666666666,0.36,0.296111333333333,0.344444666666667},
+ {0.292222666666667,0.376111333333334,0.294444666666666,0.36},
+ {0.289444666666666,0.393333333333333,0.292222666666667,0.376111333333334},
+ {0.286111333333333,0.411666666666667,0.289444666666666,0.393333333333333},
+ {0.282222666666667,0.431111333333333,0.286111333333333,0.411666666666667},
+ {0.277778,0.450555333333333,0.282222666666667,0.431111333333333},
+ {0.272778,0.471111333333334,0.277778,0.450555333333333},
+ {0.268333333333333,0.492222,0.272778,0.471111333333334},
+ {0.262778,0.513333333333333,0.268333333333333,0.492222},
+ {0.257777999999999,0.533888666666667,0.262778,0.513333333333333},
+ {0.252222666666666,0.555,0.257777999999999,0.533888666666667},
+ {0.247222666666666,0.575555333333333,0.252222666666666,0.555},
+ {0.241666666666667,0.595,0.247222666666666,0.575555333333333},
+ {0.236666666666667,0.614444666666667,0.241666666666667,0.595},
+ {0.231666666666667,0.632778,0.236666666666667,0.614444666666667},
+ {0.227222666666667,0.65,0.231666666666667,0.632778},
+ {0.222778000000001,0.666111333333333,0.227222666666667,0.65},
+ {0.218889333333334,0.681666666666667,0.222778000000001,0.666111333333333},
+ {0.215000000000001,0.695,0.218889333333334,0.681666666666667},
+ {0.211111333333333,0.707778,0.215000000000001,0.695},
+ {0.207778,0.718888666666667,0.211111333333333,0.707778},
+ {0.204444666666667,0.728888666666667,0.207778,0.718888666666667},
+ {0.201111333333332,0.737222,0.204444666666667,0.728888666666667},
+ {0.197778,0.744444666666666,0.201111333333332,0.737222},
+ {0.194444666666667,0.751111333333334,0.197778,0.744444666666666},
+ {0.191111333333334,0.756666666666667,0.194444666666667,0.751111333333334},
+ {0.187777999999999,0.761111333333333,0.191111333333334,0.756666666666667},
+ {0.184444666666667,0.765,0.187777999999999,0.761111333333333},
+ {0.180556,0.767778,0.184444666666667,0.765},
+ {0.176666666666667,0.770555333333334,0.180556,0.767778},
+ {0.172778000000001,0.772222,0.176666666666667,0.770555333333334},
+ {0.168889333333333,0.773888666666667,0.172778000000001,0.772222},
+ {0.164999999999999,0.774444666666666,0.168889333333333,0.773888666666667},
+ {0.160556,0.775555333333333,0.164999999999999,0.774444666666666},
+ {0.147778,0.775,0.152222666666667,0.775555333333333},
+ {0.143889333333334,0.774444666666666,0.147778,0.775},
+ {0.140000000000001,0.773333333333333,0.143889333333334,0.774444666666666},
+ {0.136111333333332,0.772222,0.140000000000001,0.773333333333333},
+ {0.132222666666666,0.771111333333333,0.136111333333332,0.772222},
+ {0.128333333333333,0.769444666666667,0.132222666666666,0.771111333333333},
+ {0.125,0.767778,0.128333333333333,0.769444666666667},
+ {0.122222666666666,0.765555333333333,0.125,0.767778},
+ {0.119444666666666,0.762778,0.122222666666666,0.765555333333333},
+ {0.117222666666666,0.76,0.119444666666666,0.762778},
+ {0.115,0.756666666666667,0.117222666666666,0.76},
+ {0.113889333333333,0.752778,0.115,0.756666666666667},
+ {0.112778000000001,0.748333333333333,0.113889333333333,0.752778},
+ {0.111666666666667,0.743333333333334,0.112778000000001,0.748333333333333},
+ {0.111666666666667,0.737222,0.111666666666667,0.743333333333334},
+ {0.112222666666668,0.728888666666667,0.111666666666667,0.737222},
+ {0.112778000000001,0.719444666666667,0.112222666666668,0.728888666666667},
+ {0.115,0.708888666666667,0.112778000000001,0.719444666666667},
+ {0.117222666666666,0.696111333333333,0.115,0.708888666666667},
+ {0.121111333333334,0.682778,0.117222666666666,0.696111333333333},
+ {0.125,0.667222,0.121111333333334,0.682778},
+ {0.13,0.651111333333333,0.125,0.667222},
+ {0.135,0.633888666666667,0.13,0.651111333333333},
+ {0.141111333333332,0.615555333333334,0.135,0.633888666666667},
+ {0.147222666666667,0.596666666666666,0.141111333333332,0.615555333333334},
+ {0.153889333333334,0.577222,0.147222666666667,0.596666666666666},
+ {0.160556,0.557778,0.153889333333334,0.577222},
+ {0.167222666666667,0.538333333333333,0.160556,0.557778},
+ {0.173889333333333,0.518888666666667,0.167222666666667,0.538333333333333},
+ {0.179444666666666,0.5,0.173889333333333,0.518888666666667},
+ {0.185556000000001,0.481666666666667,0.179444666666666,0.5},
+ {0.190556000000001,0.464444666666667,0.185556000000001,0.481666666666667},
+ {0.194444666666667,0.448333333333334,0.190556000000001,0.464444666666667},
+ {0.198333333333333,0.432778,0.194444666666667,0.448333333333334},
+ {0.200555999999999,0.419444666666667,0.198333333333333,0.432778},
+ {0.202222666666666,0.406666666666667,0.200555999999999,0.419444666666667},
+ {0.202778,0.396111333333333,0.202222666666666,0.406666666666667},
+ {0.202778,0.386666666666667,0.202778,0.396111333333333},
+ {0.201111333333332,0.378333333333333,0.202778,0.386666666666667},
+ {0.197222666666666,0.368333333333334,0.201111333333332,0.378333333333333},
+ {0.191111333333334,0.361666666666667,0.197222666666666,0.368333333333334},
+ {0.182777999999999,0.357222,0.191111333333334,0.361666666666667},
+ {0.172222666666668,0.355555333333333,0.182777999999999,0.357222},
+ {0.159999999999999,0.356111333333333,0.172222666666668,0.355555333333333},
+ {0.146111333333333,0.358333333333333,0.159999999999999,0.356111333333333},
+ {0.131111333333334,0.361666666666667,0.146111333333333,0.358333333333333},
+ {0.115556,0.365555333333334,0.131111333333334,0.361666666666667},
+ {0.099999999999999,0.37,0.115556,0.365555333333334},
+ {0.0850000000000009,0.374444666666667,0.099999999999999,0.37},
+ {0.070556000000001,0.377778,0.0850000000000009,0.374444666666667},
+ {0.0572226666666656,0.380555333333334,0.070556000000001,0.377778},
+ {0.0461113333333335,0.381666666666667,0.0572226666666656,0.380555333333334},
+ {0.0361113333333331,0.382222,0.0461113333333335,0.381666666666667},
+ {0.0277780000000002,0.380555333333334,0.0361113333333331,0.382222},
+ {0.0216666666666671,0.378333333333333,0.0277780000000002,0.380555333333334},
+ {0.0172226666666665,0.375555333333333,0.0216666666666671,0.378333333333333},
+ {0.013333333333333,0.372222,0.0172226666666665,0.375555333333333},
+ {0.0105559999999999,0.368333333333334,0.013333333333333,0.372222},
+ {0.00833333333333286,0.363333333333333,0.0105559999999999,0.368333333333334},
+ {0.00611133333333314,0.358333333333333,0.00833333333333286,0.363333333333333},
+ {0.0044446666666668,0.352778,0.00611133333333314,0.358333333333333},
+ {0.00277800000000046,0.346666666666666,0.0044446666666668,0.352778},
+ {0.00166666666666634,0.34,0.00277800000000046,0.346666666666666},
+ {0.000555999999999557,0.333333333333333,0.00166666666666634,0.34},
+ {0,0.327222,0.000555999999999557,0.333333333333333},
+ {0,0.320555333333333,0,0.327222},
+ {0,0.314444666666667,0,0.320555333333333},
+ {0.00111133333333295,0.308888666666667,0,0.314444666666667},
+ {0.00333333333333385,0.303888666666667,0.00111133333333295,0.308888666666667},
+ {0.00611133333333314,0.298888666666667,0.00333333333333385,0.303888666666667},
+ {0.0100000000000004,0.295,0.00611133333333314,0.298888666666667},
+ {0.0149999999999994,0.291666666666667,0.0100000000000004,0.295},
+ {0.0216666666666671,0.288888666666667,0.0149999999999994,0.291666666666667},
+ {0.0283333333333336,0.287222,0.0216666666666671,0.288888666666667},
+ {0.0361113333333331,0.285,0.0283333333333336,0.287222},
+ {0.0455560000000001,0.283333333333333,0.0361113333333331,0.285},
+ {0.0566666666666672,0.281666666666667,0.0455560000000001,0.283333333333333},
+ {0.0683333333333328,0.279444666666667,0.0566666666666672,0.281666666666667},
+ {0.0816666666666658,0.277222,0.0683333333333328,0.279444666666667},
+ {0.096111333333333,0.274444666666666,0.0816666666666658,0.277222},
+ {0.111666666666667,0.272222,0.096111333333333,0.274444666666666},
+ {0.127222666666666,0.268888666666667,0.111666666666667,0.272222},
+ {0.143889333333334,0.266111333333334,0.127222666666666,0.268888666666667},
+ {0.160556,0.263888666666666,0.143889333333334,0.266111333333334},
+ {0.177222666666668,0.261111333333333,0.160556,0.263888666666666},
+ {0.193333333333333,0.259444666666666,0.177222666666668,0.261111333333333},
+ {0.209444666666667,0.257778,0.193333333333333,0.259444666666666},
+ {0.224444666666666,0.257222,0.209444666666667,0.257778},
+ {0.238333333333332,0.257778,0.224444666666666,0.257222},
+ {0.251111333333334,0.259444666666666,0.238333333333332,0.257778},
+ {0.262222666666666,0.262222,0.251111333333334,0.259444666666666},
+ {0.271666666666666,0.266111333333334,0.262222666666666,0.262222},
+ {0.279999999999999,0.272222,0.271666666666666,0.266111333333334},
+ {0.286111333333333,0.279444666666667,0.279999999999999,0.272222},
+ {0.291111333333333,0.288888666666667,0.286111333333333,0.279444666666667},
+ {0,0,0,0}
+};
+
+double Icon20[][4] = {
+ {0.0988886666666673,0.285555333333334,0.0916666666666662,0.288888666666667},
+ {0.106666666666667,0.283333333333333,0.0988886666666673,0.285555333333334},
+ {0.113888666666665,0.282222,0.106666666666667,0.283333333333333},
+ {0.121666666666667,0.281111333333333,0.113888666666665,0.282222},
+ {0.128888666666666,0.280555333333333,0.121666666666667,0.281111333333333},
+ {0.151666666666666,0.281111333333333,0.144444,0.280555333333333},
+ {0.159444000000001,0.282222,0.151666666666666,0.281111333333333},
+ {0.166666666666667,0.283333333333333,0.159444000000001,0.282222},
+ {0.174443999999999,0.285555333333334,0.166666666666667,0.283333333333333},
+ {0.181666666666667,0.288888666666667,0.174443999999999,0.285555333333334},
+ {0.188333333333333,0.292778,0.181666666666667,0.288888666666667},
+ {0.195,0.297222,0.188333333333333,0.292778},
+ {0.201666666666666,0.302222,0.195,0.297222},
+ {0.208888666666667,0.307778,0.201666666666666,0.302222},
+ {0.216110666666665,0.313888666666667,0.208888666666667,0.307778},
+ {0.223888666666667,0.320555333333333,0.216110666666665,0.313888666666667},
+ {0.231666666666667,0.327222,0.223888666666667,0.320555333333333},
+ {0.239443999999999,0.334444666666667,0.231666666666667,0.327222},
+ {0.246110666666667,0.341111333333333,0.239443999999999,0.334444666666667},
+ {0.252777333333334,0.348333333333333,0.246110666666667,0.341111333333333},
+ {0.258888666666666,0.355555333333333,0.252777333333334,0.348333333333333},
+ {0.263888666666666,0.362778,0.258888666666666,0.355555333333333},
+ {0.268333333333333,0.370555333333333,0.263888666666666,0.362778},
+ {0.271110666666667,0.378333333333333,0.268333333333333,0.370555333333333},
+ {0.272777333333333,0.386666666666667,0.271110666666667,0.378333333333333},
+ {0.273333333333333,0.395555333333334,0.272777333333333,0.386666666666667},
+ {0.273333333333333,0.404444666666667,0.273333333333333,0.395555333333334},
+ {0.271666666666666,0.413888666666667,0.273333333333333,0.404444666666667},
+ {0.269444,0.423888666666667,0.271666666666666,0.413888666666667},
+ {0.266666666666666,0.433333333333334,0.269444,0.423888666666667},
+ {0.263333333333333,0.443888666666667,0.266666666666666,0.433333333333334},
+ {0.26,0.453888666666667,0.263333333333333,0.443888666666667},
+ {0.256666666666668,0.463888666666667,0.26,0.453888666666667},
+ {0.253888666666666,0.473888666666667,0.256666666666668,0.463888666666667},
+ {0.251666666666667,0.483888666666667,0.253888666666666,0.473888666666667},
+ {0.25,0.493888666666667,0.251666666666667,0.483888666666667},
+ {0.248888666666666,0.503888666666667,0.25,0.493888666666667},
+ {0.248888666666666,0.513333333333333,0.248888666666666,0.503888666666667},
+ {0.248888666666666,0.522778,0.248888666666666,0.513333333333333},
+ {0.25,0.532778,0.248888666666666,0.522778},
+ {0.251666666666667,0.542222,0.25,0.532778},
+ {0.253888666666666,0.552222,0.251666666666667,0.542222},
+ {0.256666666666668,0.562222,0.253888666666666,0.552222},
+ {0.26,0.572778,0.256666666666668,0.562222},
+ {0.263333333333333,0.582778,0.26,0.572778},
+ {0.266666666666666,0.592778,0.263333333333333,0.582778},
+ {0.269444,0.602778,0.266666666666666,0.592778},
+ {0.271666666666666,0.612222,0.269444,0.602778},
+ {0.273333333333333,0.621666666666667,0.271666666666666,0.612222},
+ {0.273333333333333,0.631111333333333,0.273333333333333,0.621666666666667},
+ {0.272777333333333,0.639444666666667,0.273333333333333,0.631111333333333},
+ {0.271110666666667,0.647778,0.272777333333333,0.639444666666667},
+ {0.268333333333333,0.655555333333333,0.271110666666667,0.647778},
+ {0.263888666666666,0.663333333333333,0.268333333333333,0.655555333333333},
+ {0.258888666666666,0.670555333333333,0.263888666666666,0.663333333333333},
+ {0.252777333333334,0.677778,0.258888666666666,0.670555333333333},
+ {0.246110666666667,0.685,0.252777333333334,0.677778},
+ {0.239443999999999,0.691666666666666,0.246110666666667,0.685},
+ {0.231666666666667,0.698888666666667,0.239443999999999,0.691666666666666},
+ {0.223888666666667,0.705555333333334,0.231666666666667,0.698888666666667},
+ {0.216110666666665,0.712222,0.223888666666667,0.705555333333334},
+ {0.208888666666667,0.718333333333333,0.216110666666665,0.712222},
+ {0.201666666666666,0.723888666666667,0.208888666666667,0.718333333333333},
+ {0.195,0.728888666666667,0.201666666666666,0.723888666666667},
+ {0.188333333333333,0.733333333333333,0.195,0.728888666666667},
+ {0.181666666666667,0.737222,0.188333333333333,0.733333333333333},
+ {0.174443999999999,0.740555333333334,0.181666666666667,0.737222},
+ {0.166666666666667,0.742778,0.174443999999999,0.740555333333334},
+ {0.159444000000001,0.743888666666667,0.166666666666667,0.742778},
+ {0.151666666666666,0.745,0.159444000000001,0.743888666666667},
+ {0.144444,0.745555333333333,0.151666666666666,0.745},
+ {0.121666666666667,0.745,0.128888666666666,0.745555333333333},
+ {0.113888666666665,0.743888666666667,0.121666666666667,0.745},
+ {0.106666666666667,0.742778,0.113888666666665,0.743888666666667},
+ {0.0988886666666673,0.740555333333334,0.106666666666667,0.742778},
+ {0.0916666666666662,0.737222,0.0988886666666673,0.740555333333334},
+ {0.0850000000000009,0.733333333333333,0.0916666666666662,0.737222},
+ {0.0783333333333331,0.728888666666667,0.0850000000000009,0.733333333333333},
+ {0.0716666666666654,0.723888666666667,0.0783333333333331,0.728888666666667},
+ {0.0644439999999993,0.718333333333333,0.0716666666666654,0.723888666666667},
+ {0.0572220000000006,0.712222,0.0644439999999993,0.718333333333333},
+ {0.0494439999999988,0.705555333333334,0.0572220000000006,0.712222},
+ {0.0416666666666667,0.698888666666667,0.0494439999999988,0.705555333333334},
+ {0.0338886666666672,0.691666666666666,0.0416666666666667,0.698888666666667},
+ {0.0272219999999995,0.685,0.0338886666666672,0.691666666666666},
+ {0.0205553333333341,0.677778,0.0272219999999995,0.685},
+ {0.0144439999999998,0.670555333333333,0.0205553333333341,0.677778},
+ {0.00944399999999964,0.663333333333333,0.0144439999999998,0.670555333333333},
+ {0.00500000000000019,0.655555333333333,0.00944399999999964,0.663333333333333},
+ {0.00222200000000091,0.647778,0.00500000000000019,0.655555333333333},
+ {0.000555333333333389,0.639444666666667,0.00222200000000091,0.647778},
+ {0,0.631111333333333,0.000555333333333389,0.639444666666667},
+ {0,0.621666666666667,0,0.631111333333333},
+ {0.00166666666666752,0.612222,0,0.621666666666667},
+ {0.00388866666666606,0.602778,0.00166666666666752,0.612222},
+ {0.00666666666666771,0.592778,0.00388866666666606,0.602778},
+ {0.0100000000000004,0.582778,0.00666666666666771,0.592778},
+ {0.013333333333333,0.572778,0.0100000000000004,0.582778},
+ {0.0166666666666657,0.562222,0.013333333333333,0.572778},
+ {0.019444,0.552222,0.0166666666666657,0.562222},
+ {0.0216666666666659,0.542222,0.019444,0.552222},
+ {0.0233333333333334,0.532778,0.0216666666666659,0.542222},
+ {0.0244440000000002,0.522778,0.0233333333333334,0.532778},
+ {0.0244440000000002,0.513333333333333,0.0244440000000002,0.522778},
+ {0.0244440000000002,0.503888666666667,0.0244440000000002,0.513333333333333},
+ {0.0233333333333334,0.493888666666667,0.0244440000000002,0.503888666666667},
+ {0.0216666666666659,0.483888666666667,0.0233333333333334,0.493888666666667},
+ {0.019444,0.473888666666667,0.0216666666666659,0.483888666666667},
+ {0.0166666666666657,0.463888666666667,0.019444,0.473888666666667},
+ {0.013333333333333,0.453888666666667,0.0166666666666657,0.463888666666667},
+ {0.0100000000000004,0.443888666666667,0.013333333333333,0.453888666666667},
+ {0.00666666666666771,0.433333333333334,0.0100000000000004,0.443888666666667},
+ {0.00388866666666606,0.423888666666667,0.00666666666666771,0.433333333333334},
+ {0.00166666666666752,0.413888666666667,0.00388866666666606,0.423888666666667},
+ {0,0.404444666666667,0.00166666666666752,0.413888666666667},
+ {0,0.395555333333334,0,0.404444666666667},
+ {0.000555333333333389,0.386666666666667,0,0.395555333333334},
+ {0.00222200000000091,0.378333333333333,0.000555333333333389,0.386666666666667},
+ {0.00500000000000019,0.370555333333333,0.00222200000000091,0.378333333333333},
+ {0.00944399999999964,0.362778,0.00500000000000019,0.370555333333333},
+ {0.0144439999999998,0.355555333333333,0.00944399999999964,0.362778},
+ {0.0205553333333341,0.348333333333333,0.0144439999999998,0.355555333333333},
+ {0.0272219999999995,0.341111333333333,0.0205553333333341,0.348333333333333},
+ {0.0338886666666672,0.334444666666667,0.0272219999999995,0.341111333333333},
+ {0.0416666666666667,0.327222,0.0338886666666672,0.334444666666667},
+ {0.0494439999999988,0.320555333333333,0.0416666666666667,0.327222},
+ {0.0572220000000006,0.313888666666667,0.0494439999999988,0.320555333333333},
+ {0.0644439999999993,0.307778,0.0572220000000006,0.313888666666667},
+ {0.0716666666666654,0.302222,0.0644439999999993,0.307778},
+ {0.0783333333333331,0.297222,0.0716666666666654,0.302222},
+ {0.0850000000000009,0.292778,0.0783333333333331,0.297222},
+ {0.0916666666666662,0.288888666666667,0.0850000000000009,0.292778},
+ {0.181666666666667,0.557778,0.185,0.562222},
+ {0.185,0.562222,0.187222000000001,0.567778},
+ {0.187222000000001,0.567778,0.188333333333333,0.575},
+ {0.188333333333333,0.575,0.189443999999999,0.583888666666667},
+ {0.189443999999999,0.583888666666667,0.19,0.592778},
+ {0.19,0.592778,0.19,0.602778},
+ {0.19,0.602778,0.19,0.612778},
+ {0.19,0.612778,0.189443999999999,0.621666666666667},
+ {0.189443999999999,0.621666666666667,0.188333333333333,0.630555333333334},
+ {0.188333333333333,0.630555333333334,0.187222000000001,0.637778},
+ {0.187222000000001,0.637778,0.185,0.643333333333333},
+ {0.185,0.643333333333333,0.181666666666667,0.647778},
+ {0.181666666666667,0.647778,0.177222,0.651111333333333},
+ {0.177222,0.651111333333333,0.171666666666667,0.653333333333334},
+ {0.171666666666667,0.653333333333334,0.164444000000001,0.654444666666667},
+ {0.164444000000001,0.654444666666667,0.155555333333332,0.655555333333333},
+ {0.155555333333332,0.655555333333333,0.146666666666666,0.656111333333333},
+ {0.126666666666668,0.656111333333333,0.117777333333334,0.655555333333333},
+ {0.117777333333334,0.655555333333333,0.108888666666668,0.654444666666667},
+ {0.108888666666668,0.654444666666667,0.101666666666667,0.653333333333334},
+ {0.101666666666667,0.653333333333334,0.0961106666666656,0.651111333333333},
+ {0.0961106666666656,0.651111333333333,0.0916666666666662,0.647778},
+ {0.0916666666666662,0.647778,0.0883333333333335,0.643333333333333},
+ {0.0883333333333335,0.643333333333333,0.0861106666666676,0.637778},
+ {0.0861106666666676,0.637778,0.0850000000000009,0.630555333333334},
+ {0.0850000000000009,0.630555333333334,0.0838886666666667,0.621666666666667},
+ {0.0838886666666667,0.621666666666667,0.0833333333333333,0.612778},
+ {0.0833333333333333,0.612778,0.0833333333333333,0.602778},
+ {0.0833333333333333,0.602778,0.0833333333333333,0.592778},
+ {0.0833333333333333,0.592778,0.0838886666666667,0.583888666666667},
+ {0.0838886666666667,0.583888666666667,0.0850000000000009,0.575},
+ {0.0850000000000009,0.575,0.0861106666666676,0.567778},
+ {0.0861106666666676,0.567778,0.0883333333333335,0.562222},
+ {0.0883333333333335,0.562222,0.0916666666666662,0.557778},
+ {0.0916666666666662,0.557778,0.0961106666666656,0.554444666666667},
+ {0.0961106666666656,0.554444666666667,0.101666666666667,0.552222},
+ {0.101666666666667,0.552222,0.108888666666668,0.551111333333333},
+ {0.108888666666668,0.551111333333333,0.117777333333334,0.55},
+ {0.117777333333334,0.55,0.126666666666668,0.549444666666667},
+ {0.146666666666666,0.549444666666667,0.155555333333332,0.55},
+ {0.155555333333332,0.55,0.164444000000001,0.551111333333333},
+ {0.164444000000001,0.551111333333333,0.171666666666667,0.552222},
+ {0.171666666666667,0.552222,0.177222,0.554444666666667},
+ {0.177222,0.554444666666667,0.181666666666667,0.557778},
+ {0.181666666666667,0.378333333333333,0.185,0.382778},
+ {0.185,0.382778,0.187222000000001,0.388333333333333},
+ {0.187222000000001,0.388333333333333,0.188333333333333,0.395555333333334},
+ {0.188333333333333,0.395555333333334,0.189443999999999,0.404444666666667},
+ {0.189443999999999,0.404444666666667,0.19,0.413333333333333},
+ {0.19,0.413333333333333,0.19,0.423333333333333},
+ {0.19,0.423333333333333,0.19,0.433333333333334},
+ {0.19,0.433333333333334,0.189443999999999,0.442222},
+ {0.189443999999999,0.442222,0.188333333333333,0.451111333333333},
+ {0.188333333333333,0.451111333333333,0.187222000000001,0.458333333333333},
+ {0.187222000000001,0.458333333333333,0.185,0.463888666666667},
+ {0.185,0.463888666666667,0.181666666666667,0.468333333333333},
+ {0.181666666666667,0.468333333333333,0.177222,0.471666666666666},
+ {0.177222,0.471666666666666,0.171666666666667,0.473888666666667},
+ {0.171666666666667,0.473888666666667,0.164444000000001,0.475},
+ {0.164444000000001,0.475,0.155555333333332,0.476111333333333},
+ {0.155555333333332,0.476111333333333,0.146666666666666,0.476666666666667},
+ {0.126666666666668,0.476666666666667,0.117777333333334,0.476111333333333},
+ {0.117777333333334,0.476111333333333,0.108888666666668,0.475},
+ {0.108888666666668,0.475,0.101666666666667,0.473888666666667},
+ {0.101666666666667,0.473888666666667,0.0961106666666656,0.471666666666666},
+ {0.0961106666666656,0.471666666666666,0.0916666666666662,0.468333333333333},
+ {0.0916666666666662,0.468333333333333,0.0883333333333335,0.463888666666667},
+ {0.0883333333333335,0.463888666666667,0.0861106666666676,0.458333333333333},
+ {0.0861106666666676,0.458333333333333,0.0850000000000009,0.451111333333333},
+ {0.0850000000000009,0.451111333333333,0.0838886666666667,0.442222},
+ {0.0838886666666667,0.442222,0.0833333333333333,0.433333333333334},
+ {0.0833333333333333,0.433333333333334,0.0833333333333333,0.423333333333333},
+ {0.0833333333333333,0.423333333333333,0.0833333333333333,0.413333333333333},
+ {0.0833333333333333,0.413333333333333,0.0838886666666667,0.404444666666667},
+ {0.0838886666666667,0.404444666666667,0.0850000000000009,0.395555333333334},
+ {0.0850000000000009,0.395555333333334,0.0861106666666676,0.388333333333333},
+ {0.0861106666666676,0.388333333333333,0.0883333333333335,0.382778},
+ {0.0883333333333335,0.382778,0.0916666666666662,0.378333333333333},
+ {0.0916666666666662,0.378333333333333,0.0961106666666656,0.375},
+ {0.0961106666666656,0.375,0.101666666666667,0.372778},
+ {0.101666666666667,0.372778,0.108888666666668,0.371666666666667},
+ {0.108888666666668,0.371666666666667,0.117777333333334,0.370555333333333},
+ {0.117777333333334,0.370555333333333,0.126666666666668,0.37},
+ {0.146666666666666,0.37,0.155555333333332,0.370555333333333},
+ {0.155555333333332,0.370555333333333,0.164444000000001,0.371666666666667},
+ {0.164444000000001,0.371666666666667,0.171666666666667,0.372778},
+ {0.171666666666667,0.372778,0.177222,0.375},
+ {0.177222,0.375,0.181666666666667,0.378333333333333},
+ {0,0,0,0}
+};
+
+double Icon21[][4] = {
+ {0.0277780000000002,0.283888666666667,0.0216666666666659,0.288888666666667},
+ {0.034999999999999,0.279444666666667,0.0277780000000002,0.283888666666667},
+ {0.0427779999999984,0.275555333333333,0.034999999999999,0.279444666666667},
+ {0.0522226666666654,0.272222,0.0427779999999984,0.275555333333333},
+ {0.0627779999999992,0.269444666666667,0.0522226666666654,0.272222},
+ {0.0738893333333337,0.266666666666667,0.0627779999999992,0.269444666666667},
+ {0.0861113333333326,0.263888666666666,0.0738893333333337,0.266666666666667},
+ {0.0988893333333323,0.262222,0.0861113333333326,0.263888666666666},
+ {0.112777999999999,0.26,0.0988893333333323,0.262222},
+ {0.126666666666665,0.258333333333334,0.112777999999999,0.26},
+ {0.141666666666666,0.256666666666667,0.126666666666665,0.258333333333334},
+ {0.156111333333333,0.255,0.141666666666666,0.256666666666667},
+ {0.170556,0.254444666666667,0.156111333333333,0.255},
+ {0.185556000000001,0.253888666666667,0.170556,0.254444666666667},
+ {0.199444666666667,0.253333333333333,0.185556000000001,0.253888666666667},
+ {0.213333333333334,0.253888666666667,0.199444666666667,0.253333333333333},
+ {0.226111333333333,0.255,0.213333333333334,0.253888666666667},
+ {0.238333333333332,0.256666666666667,0.226111333333333,0.255},
+ {0.249444666666667,0.258888666666667,0.238333333333332,0.256666666666667},
+ {0.26,0.262778,0.249444666666667,0.258888666666667},
+ {0.269444666666667,0.267222,0.26,0.262778},
+ {0.277222666666667,0.273333333333333,0.269444666666667,0.267222},
+ {0.284444666666666,0.280555333333333,0.277222666666667,0.273333333333333},
+ {0.290556,0.288888666666667,0.284444666666666,0.280555333333333},
+ {0.294999999999999,0.297222,0.290556,0.288888666666667},
+ {0.298889333333333,0.307222,0.294999999999999,0.297222},
+ {0.302222666666665,0.318333333333333,0.298889333333333,0.307222},
+ {0.304444666666666,0.331111333333334,0.302222666666665,0.318333333333333},
+ {0.306666666666667,0.344444666666667,0.304444666666666,0.331111333333334},
+ {0.308333333333332,0.36,0.306666666666667,0.344444666666667},
+ {0.309444666666666,0.376111333333334,0.308333333333332,0.36},
+ {0.31,0.393333333333333,0.309444666666666,0.376111333333334},
+ {0.31,0.411666666666667,0.31,0.393333333333333},
+ {0.31,0.431111333333333,0.31,0.411666666666667},
+ {0.309444666666666,0.450555333333333,0.31,0.431111333333333},
+ {0.308889333333333,0.471111333333334,0.309444666666666,0.450555333333333},
+ {0.308333333333332,0.492222,0.308889333333333,0.471111333333334},
+ {0.307222666666666,0.513333333333333,0.308333333333332,0.492222},
+ {0.306111333333334,0.533888666666667,0.307222666666666,0.513333333333333},
+ {0.305,0.555,0.306111333333334,0.533888666666667},
+ {0.303889333333333,0.575555333333333,0.305,0.555},
+ {0.302777999999999,0.595,0.303889333333333,0.575555333333333},
+ {0.301666666666667,0.614444666666667,0.302777999999999,0.595},
+ {0.300556,0.632778,0.301666666666667,0.614444666666667},
+ {0.299444666666666,0.65,0.300556,0.632778},
+ {0.298333333333332,0.666111333333333,0.299444666666666,0.65},
+ {0.296666666666667,0.681666666666667,0.298333333333332,0.666111333333333},
+ {0.295556,0.695,0.296666666666667,0.681666666666667},
+ {0.294444666666666,0.707778,0.295556,0.695},
+ {0.293333333333332,0.718888666666667,0.294444666666666,0.707778},
+ {0.292222666666667,0.728888666666667,0.293333333333332,0.718888666666667},
+ {0.290556,0.737222,0.292222666666667,0.728888666666667},
+ {0.288333333333334,0.745555333333333,0.290556,0.737222},
+ {0.286111333333333,0.752778,0.288333333333334,0.745555333333333},
+ {0.283333333333334,0.758888666666667,0.286111333333333,0.752778},
+ {0.280555999999999,0.763333333333333,0.283333333333334,0.758888666666667},
+ {0.276666666666666,0.766111333333334,0.280555999999999,0.763333333333333},
+ {0.273333333333333,0.768888666666667,0.276666666666666,0.766111333333334},
+ {0.268889333333334,0.77,0.273333333333333,0.768888666666667},
+ {0.265000000000001,0.770555333333334,0.268889333333334,0.77},
+ {0.26,0.77,0.265000000000001,0.770555333333334},
+ {0.255555999999999,0.769444666666667,0.26,0.77},
+ {0.250556000000001,0.768333333333333,0.255555999999999,0.769444666666667},
+ {0.245556000000001,0.766666666666667,0.250556000000001,0.768333333333333},
+ {0.241111333333334,0.765,0.245556000000001,0.766666666666667},
+ {0.236111333333334,0.762778,0.241111333333334,0.765},
+ {0.231666666666667,0.760555333333333,0.236111333333334,0.762778},
+ {0.226666666666667,0.758333333333334,0.231666666666667,0.760555333333333},
+ {0.222778000000001,0.756111333333333,0.226666666666667,0.758333333333334},
+ {0.218333333333334,0.753888666666667,0.222778000000001,0.756111333333333},
+ {0.214999999999999,0.751111333333334,0.218333333333334,0.753888666666667},
+ {0.211111333333333,0.748888666666667,0.214999999999999,0.751111333333334},
+ {0.208333333333333,0.746666666666667,0.211111333333333,0.748888666666667},
+ {0.205555999999999,0.743888666666667,0.208333333333333,0.746666666666667},
+ {0.203333333333333,0.740555333333334,0.205555999999999,0.743888666666667},
+ {0.201111333333332,0.737222,0.203333333333333,0.740555333333334},
+ {0.198889333333334,0.731111333333333,0.201111333333332,0.737222},
+ {0.197222666666666,0.722778,0.198889333333334,0.731111333333333},
+ {0.196666666666665,0.713333333333334,0.197222666666666,0.722778},
+ {0.197222666666666,0.702222,0.196666666666665,0.713333333333334},
+ {0.198333333333333,0.69,0.197222666666666,0.702222},
+ {0.200555999999999,0.676666666666667,0.198333333333333,0.69},
+ {0.202778,0.662222,0.200555999999999,0.676666666666667},
+ {0.205555999999999,0.647778,0.202778,0.662222},
+ {0.207778,0.632778,0.205555999999999,0.647778},
+ {0.209999999999998,0.618333333333334,0.207778,0.632778},
+ {0.211666666666666,0.605,0.209999999999998,0.618333333333334},
+ {0.212222666666667,0.592778,0.211666666666666,0.605},
+ {0.211666666666666,0.581666666666666,0.212222666666667,0.592778},
+ {0.209444666666665,0.572222,0.211666666666666,0.581666666666666},
+ {0.206111333333332,0.563888666666667,0.209444666666665,0.572222},
+ {0.201111333333332,0.557778,0.206111333333332,0.563888666666667},
+ {0.195,0.552778,0.201111333333332,0.557778},
+ {0.186666666666665,0.55,0.195,0.552778},
+ {0.177222666666665,0.548333333333333,0.186666666666665,0.55},
+ {0.166111333333333,0.548888666666667,0.177222666666665,0.548333333333333},
+ {0.153889333333332,0.550555333333334,0.166111333333333,0.548888666666667},
+ {0.140555999999999,0.553888666666667,0.153889333333332,0.550555333333334},
+ {0.126111333333332,0.557778,0.140555999999999,0.553888666666667},
+ {0.111666666666667,0.562222,0.126111333333332,0.557778},
+ {0.0966666666666664,0.566111333333333,0.111666666666667,0.562222},
+ {0.0822226666666666,0.57,0.0966666666666664,0.566111333333333},
+ {0.0688893333333335,0.572778,0.0822226666666666,0.57},
+ {0.0566666666666672,0.573888666666667,0.0688893333333335,0.572778},
+ {0.0455560000000001,0.572778,0.0566666666666672,0.573888666666667},
+ {0.0361113333333331,0.57,0.0455560000000001,0.572778},
+ {0.0277780000000002,0.565,0.0361113333333331,0.57},
+ {0.0216666666666659,0.557778,0.0277780000000002,0.565},
+ {0.0177779999999998,0.551111333333333,0.0216666666666659,0.557778},
+ {0.0150000000000006,0.543333333333334,0.0177779999999998,0.551111333333333},
+ {0.0122226666666663,0.533888666666667,0.0150000000000006,0.543333333333334},
+ {0.0100000000000004,0.523333333333333,0.0122226666666663,0.533888666666667},
+ {0.00777799999999947,0.511666666666667,0.0100000000000004,0.523333333333333},
+ {0.00611133333333195,0.498888666666667,0.00777799999999947,0.511666666666667},
+ {0.00500000000000019,0.485,0.00611133333333195,0.498888666666667},
+ {0.00333333333333267,0.470555333333333,0.00500000000000019,0.485},
+ {0.00222266666666589,0.455,0.00333333333333267,0.470555333333333},
+ {0.00166666666666515,0.439444666666667,0.00222266666666589,0.455},
+ {0.000556000000000741,0.423333333333333,0.00166666666666515,0.439444666666667},
+ {0,0.407222,0.000556000000000741,0.423333333333333},
+ {0,0.391666666666667,0,0.407222},
+ {0,0.376111333333334,0,0.391666666666667},
+ {0.000556000000000741,0.361666666666667,0,0.376111333333334},
+ {0.00166666666666515,0.347778,0.000556000000000741,0.361666666666667},
+ {0.00277799999999928,0.335,0.00166666666666515,0.347778},
+ {0.00500000000000019,0.323333333333334,0.00277799999999928,0.335},
+ {0.00777799999999947,0.312778,0.00500000000000019,0.323333333333334},
+ {0.0116666666666655,0.303333333333333,0.00777799999999947,0.312778},
+ {0.0161113333333323,0.295555333333333,0.0116666666666655,0.303333333333333},
+ {0.0216666666666659,0.288888666666667,0.0161113333333323,0.295555333333333},
+ {0.201111333333332,0.378333333333333,0.204444666666667,0.382778},
+ {0.204444666666667,0.382778,0.206666666666666,0.388333333333333},
+ {0.206666666666666,0.388333333333333,0.207778,0.395555333333334},
+ {0.207778,0.395555333333334,0.208889333333334,0.404444666666667},
+ {0.208889333333334,0.404444666666667,0.209444666666665,0.413333333333333},
+ {0.209444666666665,0.413333333333333,0.209444666666665,0.423333333333333},
+ {0.209444666666665,0.423333333333333,0.209444666666665,0.433333333333334},
+ {0.209444666666665,0.433333333333334,0.208889333333334,0.442222},
+ {0.208889333333334,0.442222,0.207778,0.451111333333333},
+ {0.207778,0.451111333333333,0.206666666666666,0.458333333333333},
+ {0.206666666666666,0.458333333333333,0.204444666666667,0.463888666666667},
+ {0.204444666666667,0.463888666666667,0.201111333333332,0.468333333333333},
+ {0.201111333333332,0.468333333333333,0.196666666666665,0.471666666666666},
+ {0.196666666666665,0.471666666666666,0.191111333333332,0.473888666666667},
+ {0.191111333333332,0.473888666666667,0.183889333333333,0.475},
+ {0.183889333333333,0.475,0.175,0.476111333333333},
+ {0.175,0.476111333333333,0.166111333333333,0.476666666666667},
+ {0.146111333333333,0.476666666666667,0.137222666666666,0.476111333333333},
+ {0.137222666666666,0.476111333333333,0.128333333333333,0.475},
+ {0.128333333333333,0.475,0.121111333333334,0.473888666666667},
+ {0.121111333333334,0.473888666666667,0.115556,0.471666666666666},
+ {0.115556,0.471666666666666,0.111111333333334,0.468333333333333},
+ {0.111111333333334,0.468333333333333,0.107777999999999,0.463888666666667},
+ {0.107777999999999,0.463888666666667,0.105556,0.458333333333333},
+ {0.105556,0.458333333333333,0.104444666666666,0.451111333333333},
+ {0.104444666666666,0.451111333333333,0.103333333333332,0.442222},
+ {0.103333333333332,0.442222,0.102778000000001,0.433333333333334},
+ {0.102778000000001,0.433333333333334,0.102778000000001,0.423333333333333},
+ {0.102778000000001,0.423333333333333,0.102778000000001,0.413333333333333},
+ {0.102778000000001,0.413333333333333,0.103333333333332,0.404444666666667},
+ {0.103333333333332,0.404444666666667,0.104444666666666,0.395555333333334},
+ {0.104444666666666,0.395555333333334,0.105556,0.388333333333333},
+ {0.105556,0.388333333333333,0.107777999999999,0.382778},
+ {0.107777999999999,0.382778,0.111111333333334,0.378333333333333},
+ {0.111111333333334,0.378333333333333,0.115556,0.375},
+ {0.115556,0.375,0.121111333333334,0.372778},
+ {0.121111333333334,0.372778,0.128333333333333,0.371666666666667},
+ {0.128333333333333,0.371666666666667,0.137222666666666,0.370555333333333},
+ {0.137222666666666,0.370555333333333,0.146111333333333,0.37},
+ {0.166111333333333,0.37,0.175,0.370555333333333},
+ {0.175,0.370555333333333,0.183889333333333,0.371666666666667},
+ {0.183889333333333,0.371666666666667,0.191111333333332,0.372778},
+ {0.191111333333332,0.372778,0.196666666666665,0.375},
+ {0.196666666666665,0.375,0.201111333333332,0.378333333333333},
+ {0,0,0,0}
+};
+
+double Icon22[][4] = {
+ {0.0416666666666667,0.208333333333333,0,0.25},
+ {0.166666666666667,0.25,0.125,0.208333333333333},
+ {0.166666666666667,0.75,0.166666666666667,0.25},
+ {0.125,0.791666666666667,0.166666666666667,0.75},
+ {0,0.75,0.0416666666666667,0.791666666666667},
+ {0,0.25,0,0.75},
+ {0.125,0.375,0.125,0.416666666666667},
+ {0.0416666666666667,0.416666666666667,0.0416666666666667,0.375},
+ {0.125,0.458333333333333,0.125,0.541666666666667},
+ {0.0416666666666667,0.541666666666667,0.0416666666666667,0.458333333333333},
+ {0.125,0.583333333333333,0.125,0.625},
+ {0.0416666666666667,0.625,0.0416666666666667,0.583333333333333},
+ {0,0,0,0}
+};
+
+double Icon23[][4] = {
+ {0.0416666666666667,0.208333333333333,0,0.25},
+ {0.166666666666667,0.25,0.125,0.208333333333333},
+ {0.166666666666667,0.75,0.166666666666667,0.25},
+ {0.125,0.791666666666667,0.166666666666667,0.75},
+ {0,0.75,0.0416666666666667,0.791666666666667},
+ {0,0.25,0,0.75},
+ {0.0416666666666667,0.291666666666667,0.0833333333333333,0.25},
+ {0.0833333333333333,0.25,0.125,0.291666666666667},
+ {0.125,0.291666666666667,0.125,0.708333333333333},
+ {0.125,0.708333333333333,0.0833333333333333,0.75},
+ {0.0833333333333333,0.75,0.0416666666666667,0.708333333333333},
+ {0.0416666666666667,0.708333333333333,0.0416666666666667,0.291666666666667},
+ {0,0,0,0}
+};
+
+double Icon24[][4] = {
+ {0.0377780000000006,0.191666666666666,0.0377780000000006,0.341666666666667},
+ {0.0377780000000006,0.153888666666666,0.0750000000000005,0.191666666666666},
+ {0.112778000000001,0.0416666666666667,0.0377780000000006,0.153888666666666},
+ {0.187777999999999,0.153888666666666,0.112778000000001,0.0416666666666667},
+ {0.150000000000001,0.191666666666666,0.187777999999999,0.153888666666666},
+ {0.187777999999999,0.341666666666667,0.187777999999999,0.191666666666666},
+ {0.224999999999999,0.678888666666667,0.224999999999999,0.341666666666667},
+ {0,0.341666666666667,0,0.678888666666667},
+ {0.0750000000000005,0.678888666666667,0.112778000000001,0.941666666666666},
+ {0.112778000000001,0.941666666666666,0.150000000000001,0.978888666666667},
+ {0.375,0.978888666666667,0.375,0.866666666666667},
+ {0.224999999999999,0.866666666666667,0.187777999999999,0.828888666666667},
+ {0.187777999999999,0.828888666666667,0.150000000000001,0.678888666666667},
+ {0,0,0,0}
+};
+
+double Icon25[][4] = {
+ {0.166666666666667,0.583333333333333,0.333333333333333,0.416666666666667},
+ {0,0.416666666666667,0.166666666666667,0.583333333333333},
+ {0,0,0,0}
+};
+
+double Icon26[][4] = {
+ {0.148888666666664,0.0399999999999998,0.136666666666666,0.0416666666666667},
+ {0.161666666666666,0.0383333333333334,0.148888666666664,0.0399999999999998},
+ {0.176111333333331,0.0372219999999999,0.161666666666666,0.0383333333333334},
+ {0.191111333333332,0.0361113333333332,0.176111333333331,0.0372219999999999},
+ {0.207778,0.0350000000000001,0.191111333333332,0.0361113333333332},
+ {0.224999999999999,0.0338886666666667,0.207778,0.0350000000000001},
+ {0.243888666666666,0.0333333333333332,0.224999999999999,0.0338886666666667},
+ {0.263333333333333,0.0322220000000003,0.243888666666666,0.0333333333333332},
+ {0.283333333333331,0.031666666666667,0.263333333333333,0.0322220000000003},
+ {0.305,0.0311113333333335,0.283333333333331,0.031666666666667},
+ {0.349444666666666,0.0305553333333334,0.326666666666666,0.0311113333333335},
+ {0.396666666666666,0.03,0.372777999999999,0.0305553333333334},
+ {0.567221999999999,0.0305553333333334,0.543333333333332,0.03},
+ {0.613333333333332,0.0311113333333335,0.590555333333332,0.0305553333333334},
+ {0.656666666666666,0.031666666666667,0.634999999999998,0.0311113333333335},
+ {0.676666666666665,0.0322220000000003,0.656666666666666,0.031666666666667},
+ {0.696111333333332,0.0333333333333332,0.676666666666665,0.0322220000000003},
+ {0.714999999999999,0.0338886666666667,0.696111333333332,0.0333333333333332},
+ {0.732221999999998,0.0350000000000001,0.714999999999999,0.0338886666666667},
+ {0.748888666666666,0.0361113333333332,0.732221999999998,0.0350000000000001},
+ {0.763888666666666,0.0372219999999999,0.748888666666666,0.0361113333333332},
+ {0.778333333333331,0.0383333333333334,0.763888666666666,0.0372219999999999},
+ {0.791111333333333,0.0399999999999998,0.778333333333331,0.0383333333333334},
+ {0.803333333333332,0.0416666666666667,0.791111333333333,0.0399999999999998},
+ {0.818888666666666,0.0444446666666666,0.803333333333332,0.0416666666666667},
+ {0.832778,0.0472220000000003,0.818888666666666,0.0444446666666666},
+ {0.844444666666665,0.0505553333333335,0.832778,0.0472220000000003},
+ {0.854999999999999,0.0533333333333335,0.844444666666665,0.0505553333333335},
+ {0.863888666666665,0.0566666666666666,0.854999999999999,0.0533333333333335},
+ {0.871666666666665,0.058888666666667,0.863888666666665,0.0566666666666666},
+ {0.877777999999999,0.0616666666666669,0.871666666666665,0.058888666666667},
+ {0.883333333333333,0.0638886666666666,0.877777999999999,0.0616666666666669},
+ {0.887778,0.0661113333333331,0.883333333333333,0.0638886666666666},
+ {0.891111333333332,0.0683333333333334,0.887778,0.0661113333333331},
+ {0.894444666666665,0.0705553333333331,0.891111333333332,0.0683333333333334},
+ {0.897221999999999,0.0727780000000002,0.894444666666665,0.0705553333333331},
+ {0.899444666666665,0.0755553333333333,0.897221999999999,0.0727780000000002},
+ {0.901666666666666,0.0788886666666666,0.899444666666665,0.0755553333333333},
+ {0.903888666666665,0.0822219999999998,0.901666666666666,0.0788886666666666},
+ {0.906111333333333,0.0866666666666667,0.903888666666665,0.0822219999999998},
+ {0.908333333333331,0.0922220000000002,0.906111333333333,0.0866666666666667},
+ {0.911111333333333,0.0983333333333334,0.908333333333331,0.0922220000000002},
+ {0.913333333333332,0.106111333333333,0.911111333333333,0.0983333333333334},
+ {0.916666666666667,0.115,0.913333333333332,0.106111333333333},
+ {0.919444666666666,0.125555333333333,0.916666666666667,0.115},
+ {0.922777999999999,0.137222,0.919444666666666,0.125555333333333},
+ {0.925555333333333,0.151111333333333,0.922777999999999,0.137222},
+ {0.928333333333332,0.166666666666667,0.925555333333333,0.151111333333333},
+ {0.93,0.178888666666667,0.928333333333332,0.166666666666667},
+ {0.931666666666665,0.191666666666666,0.93,0.178888666666667},
+ {0.932777999999999,0.206111333333334,0.931666666666665,0.191666666666666},
+ {0.933888666666666,0.221111333333334,0.932777999999999,0.206111333333334},
+ {0.935,0.237778,0.933888666666666,0.221111333333334},
+ {0.936111333333332,0.255,0.935,0.237778},
+ {0.936666666666665,0.273888666666667,0.936111333333332,0.255},
+ {0.937777999999999,0.293333333333334,0.936666666666665,0.273888666666667},
+ {0.938333333333333,0.313333333333333,0.937777999999999,0.293333333333334},
+ {0.938888666666666,0.335,0.938333333333333,0.313333333333333},
+ {0.938888666666666,0.356666666666667,0.938888666666666,0.335},
+ {0.939444666666667,0.379444666666667,0.938888666666666,0.356666666666667},
+ {0.939444666666667,0.402778,0.939444666666667,0.379444666666667},
+ {0.939999999999998,0.426666666666667,0.939444666666667,0.402778},
+ {0.939999999999998,0.451111333333333,0.939999999999998,0.426666666666667},
+ {0.939999999999998,0.475555333333334,0.939999999999998,0.451111333333333},
+ {0.939999999999998,0.5,0.939999999999998,0.475555333333334},
+ {0.939999999999998,0.524444666666666,0.939999999999998,0.5},
+ {0.939999999999998,0.548888666666667,0.939999999999998,0.524444666666666},
+ {0.939999999999998,0.573333333333334,0.939999999999998,0.548888666666667},
+ {0.939444666666667,0.597222,0.939999999999998,0.573333333333334},
+ {0.939444666666667,0.620555333333333,0.939444666666667,0.597222},
+ {0.938888666666666,0.643333333333333,0.939444666666667,0.620555333333333},
+ {0.938888666666666,0.665,0.938888666666666,0.643333333333333},
+ {0.938333333333333,0.686666666666667,0.938888666666666,0.665},
+ {0.937777999999999,0.706666666666666,0.938333333333333,0.686666666666667},
+ {0.936666666666665,0.726111333333333,0.937777999999999,0.706666666666666},
+ {0.936111333333332,0.745,0.936666666666665,0.726111333333333},
+ {0.935,0.762222,0.936111333333332,0.745},
+ {0.933888666666666,0.778888666666666,0.935,0.762222},
+ {0.932777999999999,0.793888666666666,0.933888666666666,0.778888666666666},
+ {0.931666666666665,0.808333333333334,0.932777999999999,0.793888666666666},
+ {0.93,0.821111333333333,0.931666666666665,0.808333333333334},
+ {0.928333333333332,0.833333333333333,0.93,0.821111333333333},
+ {0.925555333333333,0.848888666666667,0.928333333333332,0.833333333333333},
+ {0.922777999999999,0.862778,0.925555333333333,0.848888666666667},
+ {0.919444666666666,0.874444666666667,0.922777999999999,0.862778},
+ {0.916666666666667,0.885,0.919444666666666,0.874444666666667},
+ {0.913333333333332,0.893888666666667,0.916666666666667,0.885},
+ {0.911111333333333,0.901666666666667,0.913333333333332,0.893888666666667},
+ {0.908333333333331,0.907778,0.911111333333333,0.901666666666667},
+ {0.906111333333333,0.913333333333333,0.908333333333331,0.907778},
+ {0.903888666666665,0.917778,0.906111333333333,0.913333333333333},
+ {0.901666666666666,0.921111333333334,0.903888666666665,0.917778},
+ {0.899444666666665,0.924444666666667,0.901666666666666,0.921111333333334},
+ {0.897221999999999,0.927222,0.899444666666665,0.924444666666667},
+ {0.894444666666665,0.929444666666667,0.897221999999999,0.927222},
+ {0.891111333333332,0.931666666666667,0.894444666666665,0.929444666666667},
+ {0.887778,0.933888666666667,0.891111333333332,0.931666666666667},
+ {0.883333333333333,0.936111333333333,0.887778,0.933888666666667},
+ {0.877777999999999,0.938333333333333,0.883333333333333,0.936111333333333},
+ {0.871666666666665,0.941111333333333,0.877777999999999,0.938333333333333},
+ {0.863888666666665,0.943333333333333,0.871666666666665,0.941111333333333},
+ {0.854999999999999,0.946666666666667,0.863888666666665,0.943333333333333},
+ {0.844444666666665,0.949444666666666,0.854999999999999,0.946666666666667},
+ {0.832778,0.952778,0.844444666666665,0.949444666666666},
+ {0.818888666666666,0.955555333333333,0.832778,0.952778},
+ {0.803333333333332,0.958333333333333,0.818888666666666,0.955555333333333},
+ {0.791111333333333,0.96,0.803333333333332,0.958333333333333},
+ {0.778333333333331,0.961666666666667,0.791111333333333,0.96},
+ {0.763888666666666,0.962778,0.778333333333331,0.961666666666667},
+ {0.748888666666666,0.963888666666667,0.763888666666666,0.962778},
+ {0.732221999999998,0.965,0.748888666666666,0.963888666666667},
+ {0.714999999999999,0.966111333333333,0.732221999999998,0.965},
+ {0.696111333333332,0.966666666666667,0.714999999999999,0.966111333333333},
+ {0.676666666666665,0.967778,0.696111333333332,0.966666666666667},
+ {0.656666666666666,0.968333333333333,0.676666666666665,0.967778},
+ {0.634999999999998,0.968888666666667,0.656666666666666,0.968333333333333},
+ {0.590555333333332,0.969444666666667,0.613333333333332,0.968888666666667},
+ {0.543333333333332,0.97,0.567221999999999,0.969444666666667},
+ {0.372777999999999,0.969444666666667,0.396666666666666,0.97},
+ {0.326666666666666,0.968888666666667,0.349444666666666,0.969444666666667},
+ {0.283333333333331,0.968333333333333,0.305,0.968888666666667},
+ {0.263333333333333,0.967778,0.283333333333331,0.968333333333333},
+ {0.243888666666666,0.966666666666667,0.263333333333333,0.967778},
+ {0.224999999999999,0.966111333333333,0.243888666666666,0.966666666666667},
+ {0.207778,0.965,0.224999999999999,0.966111333333333},
+ {0.191111333333332,0.963888666666667,0.207778,0.965},
+ {0.176111333333331,0.962778,0.191111333333332,0.963888666666667},
+ {0.161666666666666,0.961666666666667,0.176111333333331,0.962778},
+ {0.148888666666664,0.96,0.161666666666666,0.961666666666667},
+ {0.136666666666666,0.958333333333333,0.148888666666664,0.96},
+ {0.121111333333332,0.955555333333333,0.136666666666666,0.958333333333333},
+ {0.107221999999998,0.952778,0.121111333333332,0.955555333333333},
+ {0.0955553333333322,0.949444666666666,0.107221999999998,0.952778},
+ {0.0849999999999985,0.946666666666667,0.0955553333333322,0.949444666666666},
+ {0.0761113333333322,0.943333333333333,0.0849999999999985,0.946666666666667},
+ {0.0683333333333328,0.941111333333333,0.0761113333333322,0.943333333333333},
+ {0.0622219999999984,0.938333333333333,0.0683333333333328,0.941111333333333},
+ {0.0566666666666649,0.936111333333333,0.0622219999999984,0.938333333333333},
+ {0.0522219999999981,0.933888666666667,0.0566666666666649,0.936111333333333},
+ {0.0488886666666654,0.931666666666667,0.0522219999999981,0.933888666666667},
+ {0.0455553333333327,0.929444666666667,0.0488886666666654,0.931666666666667},
+ {0.0427779999999984,0.927222,0.0455553333333327,0.929444666666667},
+ {0.0405553333333325,0.924444666666667,0.0427779999999984,0.927222},
+ {0.0383333333333316,0.921111333333334,0.0405553333333325,0.924444666666667},
+ {0.0361113333333331,0.917778,0.0383333333333316,0.921111333333334},
+ {0.0338886666666648,0.913333333333333,0.0361113333333331,0.917778},
+ {0.0316666666666663,0.907778,0.0338886666666648,0.913333333333333},
+ {0.0288886666666646,0.901666666666667,0.0316666666666663,0.907778},
+ {0.0266666666666661,0.893888666666667,0.0288886666666646,0.901666666666667},
+ {0.0233333333333311,0.885,0.0266666666666661,0.893888666666667},
+ {0.0205553333333318,0.874444666666667,0.0233333333333311,0.885},
+ {0.0172219999999991,0.862778,0.0205553333333318,0.874444666666667},
+ {0.0144446666666648,0.848888666666667,0.0172219999999991,0.862778},
+ {0.0116666666666655,0.833333333333333,0.0144446666666648,0.848888666666667},
+ {0.00999999999999801,0.821111333333333,0.0116666666666655,0.833333333333333},
+ {0.00833333333333286,0.808333333333334,0.00999999999999801,0.821111333333333},
+ {0.00722199999999873,0.793888666666666,0.00833333333333286,0.808333333333334},
+ {0.00611133333333195,0.778888666666666,0.00722199999999873,0.793888666666666},
+ {0.00499999999999782,0.762222,0.00611133333333195,0.778888666666666},
+ {0.00388866666666606,0.745,0.00499999999999782,0.762222},
+ {0.00333333333333267,0.726111333333333,0.00388866666666606,0.745},
+ {0.00222199999999854,0.706666666666666,0.00333333333333267,0.726111333333333},
+ {0.00166666666666515,0.686666666666667,0.00222199999999854,0.706666666666666},
+ {0.00111133333333176,0.665,0.00166666666666515,0.686666666666667},
+ {0.00111133333333176,0.643333333333333,0.00111133333333176,0.665},
+ {0.000555333333331021,0.620555333333333,0.00111133333333176,0.643333333333333},
+ {0.000555333333331021,0.597222,0.000555333333331021,0.620555333333333},
+ {0,0.573333333333334,0.000555333333331021,0.597222},
+ {0,0.548888666666667,0,0.573333333333334},
+ {0,0.524444666666666,0,0.548888666666667},
+ {0,0.5,0,0.524444666666666},
+ {0,0.475555333333334,0,0.5},
+ {0,0.451111333333333,0,0.475555333333334},
+ {0,0.426666666666667,0,0.451111333333333},
+ {0.000555333333331021,0.402778,0,0.426666666666667},
+ {0.000555333333331021,0.379444666666667,0.000555333333331021,0.402778},
+ {0.00111133333333176,0.356666666666667,0.000555333333331021,0.379444666666667},
+ {0.00111133333333176,0.335,0.00111133333333176,0.356666666666667},
+ {0.00166666666666515,0.313333333333333,0.00111133333333176,0.335},
+ {0.00222199999999854,0.293333333333334,0.00166666666666515,0.313333333333333},
+ {0.00333333333333267,0.273888666666667,0.00222199999999854,0.293333333333334},
+ {0.00388866666666606,0.255,0.00333333333333267,0.273888666666667},
+ {0.00499999999999782,0.237778,0.00388866666666606,0.255},
+ {0.00611133333333195,0.221111333333334,0.00499999999999782,0.237778},
+ {0.00722199999999873,0.206111333333334,0.00611133333333195,0.221111333333334},
+ {0.00833333333333286,0.191666666666666,0.00722199999999873,0.206111333333334},
+ {0.00999999999999801,0.178888666666667,0.00833333333333286,0.191666666666666},
+ {0.0116666666666655,0.166666666666667,0.00999999999999801,0.178888666666667},
+ {0.0144446666666648,0.151111333333333,0.0116666666666655,0.166666666666667},
+ {0.0172219999999991,0.137222,0.0144446666666648,0.151111333333333},
+ {0.0205553333333318,0.125555333333333,0.0172219999999991,0.137222},
+ {0.0233333333333311,0.115,0.0205553333333318,0.125555333333333},
+ {0.0266666666666661,0.106111333333333,0.0233333333333311,0.115},
+ {0.0288886666666646,0.0983333333333334,0.0266666666666661,0.106111333333333},
+ {0.0316666666666663,0.0922220000000002,0.0288886666666646,0.0983333333333334},
+ {0.0338886666666648,0.0866666666666667,0.0316666666666663,0.0922220000000002},
+ {0.0361113333333331,0.0822219999999998,0.0338886666666648,0.0866666666666667},
+ {0.0383333333333316,0.0788886666666666,0.0361113333333331,0.0822219999999998},
+ {0.0405553333333325,0.0755553333333333,0.0383333333333316,0.0788886666666666},
+ {0.0427779999999984,0.0727780000000002,0.0405553333333325,0.0755553333333333},
+ {0.0455553333333327,0.0705553333333331,0.0427779999999984,0.0727780000000002},
+ {0.0488886666666654,0.0683333333333334,0.0455553333333327,0.0705553333333331},
+ {0.0522219999999981,0.0661113333333331,0.0488886666666654,0.0683333333333334},
+ {0.0566666666666649,0.0638886666666666,0.0522219999999981,0.0661113333333331},
+ {0.0622219999999984,0.0616666666666669,0.0566666666666649,0.0638886666666666},
+ {0.0683333333333328,0.058888666666667,0.0622219999999984,0.0616666666666669},
+ {0.0761113333333322,0.0566666666666666,0.0683333333333328,0.058888666666667},
+ {0.0849999999999985,0.0533333333333335,0.0761113333333322,0.0566666666666666},
+ {0.0955553333333322,0.0505553333333335,0.0849999999999985,0.0533333333333335},
+ {0.107221999999998,0.0472220000000003,0.0955553333333322,0.0505553333333335},
+ {0.121111333333332,0.0444446666666666,0.107221999999998,0.0472220000000003},
+ {0.136666666666666,0.0416666666666667,0.121111333333332,0.0444446666666666},
+ {0,0,0,0}
+};
+
+double Icon27[][4] = {
+ {0,0.458333333333333,0,0.541666666666667},
+ {1,0.541666666666667,1,0.458333333333333},
+ {0,0,0,0}
+};
+
+double Icon28[][4] = {
+ {0.0838893333333317,0.25,0.0822226666666666,0.251111333333334},
+ {0.0822226666666666,0.251111333333334,0.0794446666666649,0.253333333333333},
+ {0.0794446666666649,0.253333333333333,0.0738893333333337,0.256666666666667},
+ {0.0738893333333337,0.256666666666667,0.0661113333333319,0.262222},
+ {0.0661113333333319,0.262222,0.0572226666666656,0.268888666666667},
+ {0.0572226666666656,0.268888666666667,0.0472226666666652,0.276666666666667},
+ {0.0472226666666652,0.276666666666667,0.0366666666666665,0.284444666666667},
+ {0.0366666666666665,0.284444666666667,0.0272226666666668,0.292778},
+ {0.0272226666666668,0.292778,0.0188893333333316,0.300555333333334},
+ {0.0188893333333316,0.300555333333334,0.0116666666666655,0.308888666666667},
+ {0.0116666666666655,0.308888666666667,0.00666666666666534,0.316666666666666},
+ {0.00666666666666534,0.316666666666666,0.00277799999999928,0.325},
+ {0.00277799999999928,0.325,0.000555999999998373,0.333333333333333},
+ {0.000555999999998373,0.333333333333333,0,0.341666666666667},
+ {0,0.341666666666667,0,0.350555333333334},
+ {0,0.350555333333334,0.00111133333333176,0.360555333333333},
+ {0.00111133333333176,0.360555333333333,0.00277799999999928,0.371111333333333},
+ {0.00277799999999928,0.371111333333333,0.00500000000000019,0.382778},
+ {0.00500000000000019,0.382778,0.00833333333333286,0.395},
+ {0.00833333333333286,0.395,0.0116666666666655,0.407778},
+ {0.0116666666666655,0.407778,0.0155559999999989,0.420555333333333},
+ {0.0155559999999989,0.420555333333333,0.019444666666665,0.433333333333334},
+ {0.019444666666665,0.433333333333334,0.0233333333333334,0.445555333333333},
+ {0.0233333333333334,0.445555333333333,0.0272226666666668,0.457778},
+ {0.0272226666666668,0.457778,0.0305559999999995,0.468333333333333},
+ {0.0305559999999995,0.468333333333333,0.0338893333333322,0.478333333333333},
+ {0.0338893333333322,0.478333333333333,0.0366666666666665,0.486666666666667},
+ {0.0366666666666665,0.486666666666667,0.0394446666666658,0.493888666666667},
+ {0.0394446666666658,0.493888666666667,0.042222666666665,0.5},
+ {0.042222666666665,0.5,0.0449999999999993,0.505},
+ {0.0449999999999993,0.505,0.048333333333332,0.508333333333334},
+ {0.048333333333332,0.508333333333334,0.0516666666666647,0.510555333333333},
+ {0.0516666666666647,0.510555333333333,0.0555559999999981,0.511666666666667},
+ {0.0555559999999981,0.511666666666667,0.0599999999999999,0.511111333333333},
+ {0.0599999999999999,0.511111333333333,0.0638893333333333,0.51},
+ {0.0638893333333333,0.51,0.0688893333333335,0.508333333333334},
+ {0.0688893333333335,0.508333333333334,0.0727779999999996,0.506111333333333},
+ {0.0727779999999996,0.506111333333333,0.0766666666666656,0.504444666666667},
+ {0.0766666666666656,0.504444666666667,0.0799999999999983,0.502778},
+ {0.0799999999999983,0.502778,0.0822226666666666,0.501111333333334},
+ {0.0822226666666666,0.501111333333334,0.0833333333333333,0.500555333333333},
+ {0.0833333333333333,0.500555333333333,0.0838893333333317,0.5},
+ {0.187777999999999,0.333333333333333,0.187777999999999,0.335},
+ {0.187777999999999,0.335,0.188889333333333,0.338333333333334},
+ {0.188889333333333,0.338333333333334,0.189444666666667,0.345},
+ {0.189444666666667,0.345,0.191111333333332,0.353888666666667},
+ {0.191111333333332,0.353888666666667,0.192777999999999,0.365555333333334},
+ {0.192777999999999,0.365555333333334,0.194444666666667,0.379444666666667},
+ {0.194444666666667,0.379444666666667,0.196111333333332,0.394444666666667},
+ {0.196111333333332,0.394444666666667,0.197778,0.41},
+ {0.197778,0.41,0.198889333333334,0.425555333333334},
+ {0.198889333333334,0.425555333333334,0.199444666666665,0.440555333333334},
+ {0.199444666666665,0.440555333333334,0.198889333333334,0.453888666666667},
+ {0.198889333333334,0.453888666666667,0.197778,0.466666666666667},
+ {0.197778,0.466666666666667,0.195555999999999,0.478333333333333},
+ {0.195555999999999,0.478333333333333,0.192222666666666,0.489444666666667},
+ {0.192222666666666,0.489444666666667,0.187777999999999,0.5},
+ {0.187777999999999,0.5,0.183333333333332,0.508333333333334},
+ {0.183333333333332,0.508333333333334,0.177777999999999,0.516666666666667},
+ {0.177777999999999,0.516666666666667,0.170556,0.525},
+ {0.170556,0.525,0.162777999999998,0.533333333333333},
+ {0.162777999999998,0.533333333333333,0.153889333333332,0.541666666666667},
+ {0.153889333333332,0.541666666666667,0.144444666666665,0.55},
+ {0.144444666666665,0.55,0.133333333333333,0.558333333333334},
+ {0.133333333333333,0.558333333333334,0.122222666666666,0.566666666666666},
+ {0.122222666666666,0.566666666666666,0.110556,0.575},
+ {0.110556,0.575,0.0983333333333315,0.583333333333333},
+ {0.0983333333333315,0.583333333333333,0.086666666666666,0.591666666666667},
+ {0.086666666666666,0.591666666666667,0.0749999999999981,0.6},
+ {0.0749999999999981,0.6,0.0644446666666667,0.608333333333333},
+ {0.0644446666666667,0.608333333333333,0.0544446666666663,0.616666666666667},
+ {0.0544446666666663,0.616666666666667,0.0449999999999993,0.625},
+ {0.0449999999999993,0.625,0.0372226666666648,0.633333333333334},
+ {0.0372226666666648,0.633333333333334,0.0311113333333329,0.641666666666667},
+ {0.0311113333333329,0.641666666666667,0.0261113333333327,0.65},
+ {0.0261113333333327,0.65,0.022778,0.658333333333333},
+ {0.022778,0.658333333333333,0.0211113333333325,0.666666666666667},
+ {0.0211113333333325,0.666666666666667,0.0211113333333325,0.676111333333333},
+ {0.0211113333333325,0.676111333333333,0.0222226666666666,0.685555333333333},
+ {0.0222226666666666,0.685555333333333,0.0255559999999993,0.695},
+ {0.0255559999999993,0.695,0.0311113333333329,0.705},
+ {0.0311113333333329,0.705,0.0372226666666648,0.715},
+ {0.0372226666666648,0.715,0.0455560000000001,0.725555333333334},
+ {0.0455560000000001,0.725555333333334,0.0538893333333329,0.736111333333334},
+ {0.0538893333333329,0.736111333333334,0.0638893333333333,0.747222},
+ {0.0638893333333333,0.747222,0.0738893333333337,0.757778},
+ {0.0738893333333337,0.757778,0.0838893333333317,0.768333333333333},
+ {0.0838893333333317,0.768333333333333,0.0944446666666655,0.778888666666666},
+ {0.0944446666666655,0.778888666666666,0.103889333333332,0.788888666666667},
+ {0.103889333333332,0.788888666666667,0.113333333333332,0.798333333333333},
+ {0.113333333333332,0.798333333333333,0.121666666666665,0.807222},
+ {0.121666666666665,0.807222,0.128889333333333,0.815},
+ {0.128889333333333,0.815,0.135555999999999,0.822222},
+ {0.135555999999999,0.822222,0.141111333333332,0.828333333333333},
+ {0.141111333333332,0.828333333333333,0.146111333333333,0.833333333333333},
+ {0.146111333333333,0.833333333333333,0.151666666666666,0.838333333333334},
+ {0.151666666666666,0.838333333333334,0.156666666666666,0.841666666666667},
+ {0.156666666666666,0.841666666666667,0.161111333333333,0.843888666666667},
+ {0.161111333333333,0.843888666666667,0.164999999999999,0.845},
+ {0.164999999999999,0.845,0.169444666666666,0.844444666666667},
+ {0.169444666666666,0.844444666666667,0.173333333333332,0.843333333333333},
+ {0.173333333333332,0.843333333333333,0.176666666666665,0.841666666666667},
+ {0.176666666666665,0.841666666666667,0.18,0.839444666666667},
+ {0.18,0.839444666666667,0.182777999999999,0.837778},
+ {0.182777999999999,0.837778,0.185,0.836111333333333},
+ {0.185,0.836111333333333,0.186666666666665,0.834444666666667},
+ {0.186666666666665,0.834444666666667,0.187222666666666,0.833888666666667},
+ {0.187222666666666,0.833888666666667,0.187777999999999,0.833333333333333},
+ {0.354444666666666,1,0.354444666666666,0.916666666666667},
+ {0.0211113333333325,0.916666666666667,0.0211113333333325,1},
+ {0.0833333333333333,0.251666666666667,0.0838893333333317,0.25},
+ {0.0827779999999999,0.255555333333334,0.0833333333333333,0.251666666666667},
+ {0.0822226666666666,0.262222,0.0827779999999999,0.255555333333334},
+ {0.0811113333333324,0.270555333333334,0.0822226666666666,0.262222},
+ {0.0794446666666649,0.280555333333333,0.0811113333333324,0.270555333333334},
+ {0.0788893333333315,0.291111333333333,0.0794446666666649,0.280555333333333},
+ {0.0783333333333331,0.301111333333333,0.0788893333333315,0.291111333333333},
+ {0.0783333333333331,0.310555333333333,0.0783333333333331,0.301111333333333},
+ {0.0794446666666649,0.318888666666667,0.0783333333333331,0.310555333333333},
+ {0.0811113333333324,0.326111333333333,0.0794446666666649,0.318888666666667},
+ {0.0838893333333317,0.333333333333333,0.0811113333333324,0.326111333333333},
+ {0.0872226666666667,0.339444666666667,0.0838893333333317,0.333333333333333},
+ {0.0916666666666662,0.345,0.0872226666666667,0.339444666666667},
+ {0.0972226666666648,0.351111333333333,0.0916666666666662,0.345},
+ {0.104444666666666,0.357222,0.0972226666666648,0.351111333333333},
+ {0.111666666666667,0.363333333333333,0.104444666666666,0.357222},
+ {0.12,0.368888666666667,0.111666666666667,0.363333333333333},
+ {0.128333333333333,0.375,0.12,0.368888666666667},
+ {0.136666666666666,0.381111333333333,0.128333333333333,0.375},
+ {0.144999999999998,0.386666666666667,0.136666666666666,0.381111333333333},
+ {0.152222666666667,0.392778,0.144999999999998,0.386666666666667},
+ {0.157777999999998,0.398888666666667,0.152222666666667,0.392778},
+ {0.162777999999998,0.405,0.157777999999998,0.398888666666667},
+ {0.165556,0.410555333333334,0.162777999999998,0.405},
+ {0.167222666666665,0.416666666666667,0.165556,0.410555333333334},
+ {0.167222666666665,0.423888666666667,0.167222666666665,0.416666666666667},
+ {0.164999999999999,0.431111333333333,0.167222666666665,0.423888666666667},
+ {0.160556,0.438333333333333,0.164999999999999,0.431111333333333},
+ {0.154999999999999,0.446111333333333,0.160556,0.438333333333333},
+ {0.148333333333333,0.454444666666667,0.154999999999999,0.446111333333333},
+ {0.140555999999999,0.462222,0.148333333333333,0.454444666666667},
+ {0.132777999999999,0.47,0.140555999999999,0.462222},
+ {0.125555999999998,0.477778,0.132777999999999,0.47},
+ {0.118889333333333,0.484444666666667,0.125555999999998,0.477778},
+ {0.112777999999999,0.490555333333334,0.118889333333333,0.484444666666667},
+ {0.108333333333332,0.496111333333333,0.112777999999999,0.490555333333334},
+ {0.104444666666666,0.5,0.108333333333332,0.496111333333333},
+ {0.101666666666667,0.502778,0.104444666666666,0.5},
+ {0.0994446666666657,0.504444666666667,0.101666666666667,0.502778},
+ {0.0972226666666648,0.505555333333334,0.0994446666666657,0.504444666666667},
+ {0.0911113333333328,0.505,0.0927780000000003,0.505555333333334},
+ {0.0894446666666653,0.503888666666667,0.0911113333333328,0.505},
+ {0.0877780000000001,0.503333333333333,0.0894446666666653,0.503888666666667},
+ {0.0861113333333326,0.502222,0.0877780000000001,0.503333333333333},
+ {0.0849999999999985,0.501111333333334,0.0861113333333326,0.502222},
+ {0.0844446666666651,0.500555333333333,0.0849999999999985,0.501111333333334},
+ {0.0838893333333317,0.5,0.0844446666666651,0.500555333333333},
+ {0.208333333333333,0.0416666666666667,0.208889333333332,0.0433333333333337},
+ {0.208889333333332,0.0433333333333337,0.209444666666665,0.0472220000000003},
+ {0.209444666666665,0.0472220000000003,0.209999999999998,0.0538886666666668},
+ {0.209999999999998,0.0538886666666668,0.211111333333333,0.0622220000000002},
+ {0.211111333333333,0.0622220000000002,0.212778,0.072222},
+ {0.212778,0.072222,0.213333333333334,0.082778},
+ {0.213333333333334,0.082778,0.213889333333332,0.0927779999999998},
+ {0.213889333333332,0.0927779999999998,0.213889333333332,0.102222},
+ {0.213889333333332,0.102222,0.212778,0.110555333333333},
+ {0.212778,0.110555333333333,0.211111333333333,0.117778},
+ {0.211111333333333,0.117778,0.208333333333333,0.125},
+ {0.208333333333333,0.125,0.204999999999998,0.131111333333333},
+ {0.204999999999998,0.131111333333333,0.200555999999999,0.136666666666667},
+ {0.200555999999999,0.136666666666667,0.195,0.142778},
+ {0.195,0.142778,0.187777999999999,0.148888666666667},
+ {0.187777999999999,0.148888666666667,0.180555999999998,0.155},
+ {0.180555999999998,0.155,0.172222666666665,0.160555333333334},
+ {0.172222666666665,0.160555333333334,0.163889333333332,0.166666666666667},
+ {0.163889333333332,0.166666666666667,0.155556,0.172778},
+ {0.155556,0.172778,0.147222666666667,0.178333333333333},
+ {0.147222666666667,0.178333333333333,0.139999999999998,0.184444666666667},
+ {0.139999999999998,0.184444666666667,0.134444666666667,0.190555333333334},
+ {0.134444666666667,0.190555333333334,0.129444666666667,0.196666666666667},
+ {0.129444666666667,0.196666666666667,0.126666666666665,0.202222},
+ {0.126666666666665,0.202222,0.125,0.208333333333333},
+ {0.125,0.208333333333333,0.125,0.215555333333333},
+ {0.125,0.215555333333333,0.127222666666666,0.222778},
+ {0.127222666666666,0.222778,0.131666666666665,0.23},
+ {0.131666666666665,0.23,0.137222666666666,0.237778},
+ {0.137222666666666,0.237778,0.143889333333332,0.246111333333333},
+ {0.143889333333332,0.246111333333333,0.151666666666666,0.253888666666667},
+ {0.151666666666666,0.253888666666667,0.159444666666666,0.261666666666667},
+ {0.159444666666666,0.261666666666667,0.166666666666667,0.269444666666667},
+ {0.166666666666667,0.269444666666667,0.173333333333332,0.276111333333333},
+ {0.173333333333332,0.276111333333333,0.179444666666666,0.282222},
+ {0.179444666666666,0.282222,0.183889333333333,0.287778},
+ {0.183889333333333,0.287778,0.187777999999999,0.291666666666667},
+ {0.187777999999999,0.291666666666667,0.190555999999998,0.294444666666667},
+ {0.190555999999998,0.294444666666667,0.192777999999999,0.296111333333334},
+ {0.192777999999999,0.296111333333334,0.195,0.297222},
+ {0.199444666666665,0.297222,0.201111333333332,0.296666666666667},
+ {0.201111333333332,0.296666666666667,0.202778,0.295555333333333},
+ {0.202778,0.295555333333333,0.204444666666665,0.295},
+ {0.204444666666665,0.295,0.206111333333332,0.293888666666666},
+ {0.206111333333332,0.293888666666666,0.207222666666667,0.292778},
+ {0.207222666666667,0.292778,0.207778,0.292222},
+ {0.207778,0.292222,0.208333333333333,0.291666666666667},
+ {0.188889333333333,0.333888666666667,0.187777999999999,0.333333333333333},
+ {0.191111333333332,0.335555333333333,0.188889333333333,0.333888666666667},
+ {0.195555999999999,0.338888666666667,0.191111333333332,0.335555333333333},
+ {0.202222666666666,0.342778,0.195555999999999,0.338888666666667},
+ {0.210555999999999,0.348888666666667,0.202222666666666,0.342778},
+ {0.221111333333333,0.356666666666667,0.210555999999999,0.348888666666667},
+ {0.233889333333333,0.365555333333334,0.221111333333333,0.356666666666667},
+ {0.247222666666666,0.375555333333333,0.233889333333333,0.365555333333334},
+ {0.261666666666665,0.386111333333333,0.247222666666666,0.375555333333333},
+ {0.275555999999999,0.397222,0.261666666666665,0.386111333333333},
+ {0.289444666666666,0.408888666666667,0.275555999999999,0.397222},
+ {0.302777999999999,0.420555333333333,0.289444666666666,0.408888666666667},
+ {0.315,0.431666666666667,0.302777999999999,0.420555333333333},
+ {0.325555999999999,0.442778,0.315,0.431666666666667},
+ {0.334444666666665,0.453888666666667,0.325555999999999,0.442778},
+ {0.341666666666666,0.465,0.334444666666665,0.453888666666667},
+ {0.347777999999998,0.476111333333333,0.341666666666666,0.465},
+ {0.351666666666667,0.487778,0.347777999999998,0.476111333333333},
+ {0.354444666666666,0.5,0.351666666666667,0.487778},
+ {0.355556,0.510555333333333,0.354444666666666,0.5},
+ {0.356111333333333,0.522222,0.355556,0.510555333333333},
+ {0.355556,0.534444666666667,0.356111333333333,0.522222},
+ {0.354444666666666,0.547222,0.355556,0.534444666666667},
+ {0.352777999999998,0.561111333333334,0.354444666666666,0.547222},
+ {0.349999999999999,0.575555333333333,0.352777999999998,0.561111333333334},
+ {0.346666666666666,0.591111333333333,0.349999999999999,0.575555333333333},
+ {0.343333333333331,0.607222,0.346666666666666,0.591111333333333},
+ {0.338889333333332,0.623333333333333,0.343333333333331,0.607222},
+ {0.334444666666665,0.64,0.338889333333332,0.623333333333333},
+ {0.329444666666665,0.657222,0.334444666666665,0.64},
+ {0.324444666666665,0.674444666666667,0.329444666666665,0.657222},
+ {0.319444666666667,0.691666666666666,0.324444666666665,0.674444666666667},
+ {0.314444666666667,0.708333333333333,0.319444666666667,0.691666666666666},
+ {0.308889333333333,0.725,0.314444666666667,0.708333333333333},
+ {0.303889333333333,0.740555333333334,0.308889333333333,0.725},
+ {0.299444666666666,0.756111333333333,0.303889333333333,0.740555333333334},
+ {0.294444666666666,0.77,0.299444666666666,0.756111333333333},
+ {0.289999999999999,0.783888666666667,0.294444666666666,0.77},
+ {0.286111333333333,0.796111333333334,0.289999999999999,0.783888666666667},
+ {0.281666666666666,0.807222,0.286111333333333,0.796111333333334},
+ {0.278333333333334,0.817222,0.281666666666666,0.807222},
+ {0.274444666666665,0.825555333333333,0.278333333333334,0.817222},
+ {0.271111333333332,0.833333333333333,0.274444666666665,0.825555333333333},
+ {0.266666666666666,0.841666666666667,0.271111333333332,0.833333333333333},
+ {0.261666666666665,0.847778,0.266666666666666,0.841666666666667},
+ {0.256666666666665,0.852222,0.261666666666665,0.847778},
+ {0.251111333333332,0.855,0.256666666666665,0.852222},
+ {0.245,0.856111333333333,0.251111333333332,0.855},
+ {0.232222666666665,0.855,0.238889333333333,0.856111333333333},
+ {0.224999999999999,0.852778,0.232222666666665,0.855},
+ {0.218333333333331,0.85,0.224999999999999,0.852778},
+ {0.211666666666666,0.846666666666666,0.218333333333331,0.85},
+ {0.205555999999999,0.843888666666667,0.211666666666666,0.846666666666666},
+ {0.199999999999998,0.840555333333333,0.205555999999999,0.843888666666667},
+ {0.195555999999999,0.837778,0.199999999999998,0.840555333333333},
+ {0.192222666666666,0.836111333333333,0.195555999999999,0.837778},
+ {0.189444666666667,0.834444666666667,0.192222666666666,0.836111333333333},
+ {0.188333333333333,0.833888666666667,0.189444666666667,0.834444666666667},
+ {0.187777999999999,0.833333333333333,0.188333333333333,0.833888666666667},
+ {0.209999999999998,0.0427780000000002,0.208333333333333,0.0416666666666667},
+ {0.212778,0.0449999999999999,0.209999999999998,0.0427780000000002},
+ {0.218333333333331,0.0483333333333332,0.212778,0.0449999999999999},
+ {0.226111333333333,0.0538886666666668,0.218333333333331,0.0483333333333332},
+ {0.234999999999999,0.0605553333333333,0.226111333333333,0.0538886666666668},
+ {0.245,0.0683333333333334,0.234999999999999,0.0605553333333333},
+ {0.255555999999999,0.0761113333333334,0.245,0.0683333333333334},
+ {0.264999999999998,0.0844446666666669,0.255555999999999,0.0761113333333334},
+ {0.273333333333333,0.0922220000000002,0.264999999999998,0.0844446666666669},
+ {0.280555999999999,0.100555333333334,0.273333333333333,0.0922220000000002},
+ {0.285556,0.108333333333333,0.280555999999999,0.100555333333334},
+ {0.289444666666666,0.116666666666667,0.285556,0.108333333333333},
+ {0.291666666666667,0.125,0.289444666666666,0.116666666666667},
+ {0.292222666666665,0.133333333333334,0.291666666666667,0.125},
+ {0.292222666666665,0.142222,0.292222666666665,0.133333333333334},
+ {0.291111333333333,0.152222,0.292222666666665,0.142222},
+ {0.289444666666666,0.162778,0.291111333333333,0.152222},
+ {0.287222666666665,0.174444666666667,0.289444666666666,0.162778},
+ {0.283889333333332,0.186666666666667,0.287222666666665,0.174444666666667},
+ {0.280555999999999,0.199444666666666,0.283889333333332,0.186666666666667},
+ {0.276666666666666,0.212222,0.280555999999999,0.199444666666666},
+ {0.272778,0.225,0.276666666666666,0.212222},
+ {0.268889333333332,0.237222,0.272778,0.225},
+ {0.264999999999998,0.249444666666667,0.268889333333332,0.237222},
+ {0.261666666666665,0.26,0.264999999999998,0.249444666666667},
+ {0.258333333333333,0.27,0.261666666666665,0.26},
+ {0.255555999999999,0.278333333333334,0.258333333333333,0.27},
+ {0.252777999999999,0.285555333333334,0.255555999999999,0.278333333333334},
+ {0.25,0.291666666666667,0.252777999999999,0.285555333333334},
+ {0.247222666666666,0.296666666666667,0.25,0.291666666666667},
+ {0.243889333333333,0.3,0.247222666666666,0.296666666666667},
+ {0.240556,0.302222,0.243889333333333,0.3},
+ {0.236666666666667,0.303333333333333,0.240556,0.302222},
+ {0.232222666666665,0.302778,0.236666666666667,0.303333333333333},
+ {0.228333333333332,0.301666666666667,0.232222666666665,0.302778},
+ {0.223333333333332,0.3,0.228333333333332,0.301666666666667},
+ {0.219444666666665,0.297778,0.223333333333332,0.3},
+ {0.215555999999999,0.296111333333334,0.219444666666665,0.297778},
+ {0.212222666666667,0.294444666666667,0.215555999999999,0.296111333333334},
+ {0.209999999999998,0.292778,0.212222666666667,0.294444666666667},
+ {0.208889333333332,0.292222,0.209999999999998,0.292778},
+ {0.208333333333333,0.291666666666667,0.208889333333332,0.292222},
+ {0,0,0,0}
+};
+
+double Icon29[][4] = {
+ {0,0.75,0,1},
+ {1,1,1,0.75},
+ {0.00333333333333267,0.750555333333333,0.00111133333333413,0.75},
+ {0.0072220000000011,0.751111333333334,0.00333333333333267,0.750555333333333},
+ {0.0127779999999997,0.751666666666667,0.0072220000000011,0.751111333333334},
+ {0.0194446666666674,0.752778,0.0127779999999997,0.751666666666667},
+ {0.0438886666666676,0.752222,0.0355553333333323,0.752778},
+ {0.0522220000000004,0.750555333333333,0.0438886666666676,0.752222},
+ {0.0599999999999999,0.747778,0.0522220000000004,0.750555333333333},
+ {0.0677779999999994,0.743333333333334,0.0599999999999999,0.747778},
+ {0.0755553333333339,0.737222,0.0677779999999994,0.743333333333334},
+ {0.0833333333333333,0.729444666666667,0.0755553333333339,0.737222},
+ {0.0888886666666669,0.723333333333333,0.0833333333333333,0.729444666666667},
+ {0.0944446666666678,0.716111333333333,0.0888886666666669,0.723333333333333},
+ {0.099999999999999,0.708333333333333,0.0944446666666678,0.716111333333333},
+ {0.106666666666667,0.698888666666667,0.099999999999999,0.708333333333333},
+ {0.112778000000001,0.688888666666667,0.106666666666667,0.698888666666667},
+ {0.119444666666666,0.678333333333333,0.112778000000001,0.688888666666667},
+ {0.126666666666668,0.666666666666667,0.119444666666666,0.678333333333333},
+ {0.133333333333333,0.653888666666666,0.126666666666668,0.666666666666667},
+ {0.140555333333334,0.641111333333334,0.133333333333333,0.653888666666666},
+ {0.147778,0.628333333333333,0.140555333333334,0.641111333333334},
+ {0.155555333333332,0.614444666666667,0.147778,0.628333333333333},
+ {0.162778000000001,0.601111333333333,0.155555333333332,0.614444666666667},
+ {0.169999999999999,0.588333333333334,0.162778000000001,0.601111333333333},
+ {0.177222,0.575555333333333,0.169999999999999,0.588333333333334},
+ {0.184444666666667,0.562778,0.177222,0.575555333333333},
+ {0.191666666666668,0.551111333333333,0.184444666666667,0.562778},
+ {0.198333333333333,0.540555333333333,0.191666666666668,0.551111333333333},
+ {0.205000000000001,0.530555333333333,0.198333333333333,0.540555333333333},
+ {0.211666666666666,0.521111333333333,0.205000000000001,0.530555333333333},
+ {0.217778,0.513333333333333,0.211666666666666,0.521111333333333},
+ {0.223888666666667,0.506111333333333,0.217778,0.513333333333333},
+ {0.229444666666666,0.5,0.223888666666667,0.506111333333333},
+ {0.239444666666666,0.491111333333333,0.229444666666666,0.5},
+ {0.249444666666667,0.484444666666667,0.239444666666666,0.491111333333333},
+ {0.258888666666666,0.480555333333333,0.249444666666667,0.484444666666667},
+ {0.267778,0.478333333333333,0.258888666666666,0.480555333333333},
+ {0.276666666666666,0.477222,0.267778,0.478333333333333},
+ {0.302222,0.477778,0.293888666666668,0.477222},
+ {0.310555333333333,0.478333333333333,0.302222,0.477778},
+ {0.318333333333333,0.478888666666667,0.310555333333333,0.478333333333333},
+ {0.333333333333333,0.479444666666667,0.326111333333332,0.478888666666667},
+ {0.341111333333333,0.481111333333333,0.333333333333333,0.479444666666667},
+ {0.349444666666666,0.484444666666667,0.341111333333333,0.481111333333333},
+ {0.357778000000001,0.489444666666667,0.349444666666666,0.484444666666667},
+ {0.366111333333334,0.495555333333333,0.357778000000001,0.489444666666667},
+ {0.375,0.502778,0.366111333333334,0.495555333333333},
+ {0.383333333333333,0.509444666666666,0.375,0.502778},
+ {0.390000000000001,0.515555333333333,0.383333333333333,0.509444666666666},
+ {0.393888666666667,0.518888666666667,0.390000000000001,0.515555333333333},
+ {0.395555333333334,0.521111333333333,0.393888666666667,0.518888666666667},
+ {0.393888666666667,0.520555333333334,0.395555333333334,0.521111333333333},
+ {0.388888666666666,0.519444666666667,0.393888666666667,0.520555333333334},
+ {0.381666666666668,0.518333333333333,0.388888666666666,0.519444666666667},
+ {0.373333333333332,0.516666666666667,0.381666666666668,0.518333333333333},
+ {0.363888666666665,0.515555333333333,0.373333333333332,0.516666666666667},
+ {0.346666666666666,0.516111333333334,0.354444666666666,0.515555333333333},
+ {0.339444666666668,0.517778,0.346666666666666,0.516111333333334},
+ {0.333333333333333,0.521111333333333,0.339444666666668,0.517778},
+ {0.328333333333333,0.525,0.333333333333333,0.521111333333333},
+ {0.322221999999999,0.53,0.328333333333333,0.525},
+ {0.316666666666668,0.536111333333333,0.322221999999999,0.53},
+ {0.31,0.542778,0.316666666666668,0.536111333333333},
+ {0.303333333333332,0.549444666666667,0.31,0.542778},
+ {0.296111333333333,0.556666666666667,0.303333333333332,0.549444666666667},
+ {0.289999999999999,0.564444666666667,0.296111333333333,0.556666666666667},
+ {0.283888666666667,0.572222,0.289999999999999,0.564444666666667},
+ {0.278333333333334,0.58,0.283888666666667,0.572222},
+ {0.274444666666668,0.587778,0.278333333333334,0.58},
+ {0.272221999999999,0.596111333333334,0.274444666666668,0.587778},
+ {0.271111333333332,0.604444666666667,0.272221999999999,0.596111333333334},
+ {0.271666666666666,0.612222,0.271111333333332,0.604444666666667},
+ {0.273333333333333,0.620555333333333,0.271666666666666,0.612222},
+ {0.276111333333333,0.629444666666667,0.273333333333333,0.620555333333333},
+ {0.278888666666667,0.638888666666666,0.276111333333333,0.629444666666667},
+ {0.282778,0.648888666666667,0.278888666666667,0.638888666666666},
+ {0.287222,0.659444666666667,0.282778,0.648888666666667},
+ {0.291666666666667,0.67,0.287222,0.659444666666667},
+ {0.296111333333333,0.680555333333333,0.291666666666667,0.67},
+ {0.301666666666667,0.690555333333334,0.296111333333333,0.680555333333333},
+ {0.306666666666667,0.7,0.301666666666667,0.690555333333334},
+ {0.312777999999999,0.708888666666667,0.306666666666667,0.7},
+ {0.318888666666666,0.716666666666667,0.312777999999999,0.708888666666667},
+ {0.325555333333334,0.723888666666667,0.318888666666666,0.716666666666667},
+ {0.333333333333333,0.729444666666667,0.325555333333334,0.723888666666667},
+ {0.341111333333333,0.733333333333333,0.333333333333333,0.729444666666667},
+ {0.349999999999999,0.737222,0.341111333333333,0.733333333333333},
+ {0.359999999999999,0.74,0.349999999999999,0.737222},
+ {0.372222000000001,0.742222,0.359999999999999,0.74},
+ {0.386111333333334,0.743888666666667,0.372222000000001,0.742222},
+ {0.401111333333333,0.745555333333333,0.386111333333334,0.743888666666667},
+ {0.417222,0.746666666666667,0.401111333333333,0.745555333333333},
+ {0.433888666666666,0.747778,0.417222,0.746666666666667},
+ {0.45,0.748333333333333,0.433888666666666,0.747778},
+ {0.464444666666668,0.748888666666667,0.45,0.748333333333333},
+ {0.477222,0.749444666666667,0.464444666666668,0.748888666666667},
+ {0.494444666666666,0.75,0.487222,0.749444666666667},
+ {0.503333333333333,0.750555333333333,0.501111333333334,0.75},
+ {0.507222000000001,0.751111333333334,0.503333333333333,0.750555333333333},
+ {0.512778,0.751666666666667,0.507222000000001,0.751111333333334},
+ {0.519444666666667,0.752778,0.512778,0.751666666666667},
+ {0.543888666666668,0.752222,0.535555333333332,0.752778},
+ {0.552222,0.750555333333333,0.543888666666668,0.752222},
+ {0.56,0.747778,0.552222,0.750555333333333},
+ {0.567777999999999,0.743333333333334,0.56,0.747778},
+ {0.575555333333334,0.737222,0.567777999999999,0.743333333333334},
+ {0.583333333333333,0.729444666666667,0.575555333333334,0.737222},
+ {0.588888666666667,0.723333333333333,0.583333333333333,0.729444666666667},
+ {0.594444666666668,0.716111333333333,0.588888666666667,0.723333333333333},
+ {0.599999999999999,0.708333333333333,0.594444666666668,0.716111333333333},
+ {0.606666666666667,0.698888666666667,0.599999999999999,0.708333333333333},
+ {0.612778000000001,0.688888666666667,0.606666666666667,0.698888666666667},
+ {0.619444666666666,0.678333333333333,0.612778000000001,0.688888666666667},
+ {0.626666666666667,0.666666666666667,0.619444666666666,0.678333333333333},
+ {0.633333333333333,0.653888666666666,0.626666666666667,0.666666666666667},
+ {0.640555333333334,0.641111333333334,0.633333333333333,0.653888666666666},
+ {0.647778,0.628333333333333,0.640555333333334,0.641111333333334},
+ {0.655555333333332,0.614444666666667,0.647778,0.628333333333333},
+ {0.662778000000001,0.601111333333333,0.655555333333332,0.614444666666667},
+ {0.669999999999999,0.588333333333334,0.662778000000001,0.601111333333333},
+ {0.677222,0.575555333333333,0.669999999999999,0.588333333333334},
+ {0.684444666666666,0.562778,0.677222,0.575555333333333},
+ {0.691666666666668,0.551111333333333,0.684444666666666,0.562778},
+ {0.698333333333333,0.540555333333333,0.691666666666668,0.551111333333333},
+ {0.705000000000001,0.530555333333333,0.698333333333333,0.540555333333333},
+ {0.711666666666666,0.521111333333333,0.705000000000001,0.530555333333333},
+ {0.717778,0.513333333333333,0.711666666666666,0.521111333333333},
+ {0.723888666666667,0.506111333333333,0.717778,0.513333333333333},
+ {0.729444666666666,0.5,0.723888666666667,0.506111333333333},
+ {0.739444666666666,0.491111333333333,0.729444666666666,0.5},
+ {0.749444666666667,0.484444666666667,0.739444666666666,0.491111333333333},
+ {0.758888666666666,0.480555333333333,0.749444666666667,0.484444666666667},
+ {0.767778,0.478333333333333,0.758888666666666,0.480555333333333},
+ {0.776666666666666,0.477222,0.767778,0.478333333333333},
+ {0.802222,0.477778,0.793888666666668,0.477222},
+ {0.810555333333333,0.478333333333333,0.802222,0.477778},
+ {0.818333333333333,0.478888666666667,0.810555333333333,0.478333333333333},
+ {0.833333333333333,0.479444666666667,0.826111333333332,0.478888666666667},
+ {0.841111333333333,0.481111333333333,0.833333333333333,0.479444666666667},
+ {0.849444666666666,0.484444666666667,0.841111333333333,0.481111333333333},
+ {0.857778000000001,0.489444666666667,0.849444666666666,0.484444666666667},
+ {0.866111333333334,0.495555333333333,0.857778000000001,0.489444666666667},
+ {0.875,0.502778,0.866111333333334,0.495555333333333},
+ {0.883333333333333,0.509444666666666,0.875,0.502778},
+ {0.890000000000001,0.515555333333333,0.883333333333333,0.509444666666666},
+ {0.893888666666667,0.518888666666667,0.890000000000001,0.515555333333333},
+ {0.895555333333334,0.521111333333333,0.893888666666667,0.518888666666667},
+ {0.893888666666667,0.520555333333334,0.895555333333334,0.521111333333333},
+ {0.888888666666666,0.519444666666667,0.893888666666667,0.520555333333334},
+ {0.881666666666668,0.518333333333333,0.888888666666666,0.519444666666667},
+ {0.873333333333332,0.516666666666667,0.881666666666668,0.518333333333333},
+ {0.863888666666665,0.515555333333333,0.873333333333332,0.516666666666667},
+ {0.846666666666666,0.516111333333334,0.854444666666666,0.515555333333333},
+ {0.839444666666668,0.517778,0.846666666666666,0.516111333333334},
+ {0.833333333333333,0.521111333333333,0.839444666666668,0.517778},
+ {0.828333333333333,0.525,0.833333333333333,0.521111333333333},
+ {0.822221999999999,0.53,0.828333333333333,0.525},
+ {0.816666666666668,0.536111333333333,0.822221999999999,0.53},
+ {0.81,0.542778,0.816666666666668,0.536111333333333},
+ {0.803333333333332,0.549444666666667,0.81,0.542778},
+ {0.796111333333333,0.556666666666667,0.803333333333332,0.549444666666667},
+ {0.789999999999999,0.564444666666667,0.796111333333333,0.556666666666667},
+ {0.783888666666667,0.572222,0.789999999999999,0.564444666666667},
+ {0.778333333333334,0.58,0.783888666666667,0.572222},
+ {0.774444666666668,0.587778,0.778333333333334,0.58},
+ {0.772221999999999,0.596111333333334,0.774444666666668,0.587778},
+ {0.771111333333332,0.604444666666667,0.772221999999999,0.596111333333334},
+ {0.771666666666666,0.612222,0.771111333333332,0.604444666666667},
+ {0.773333333333333,0.620555333333333,0.771666666666666,0.612222},
+ {0.776111333333333,0.629444666666667,0.773333333333333,0.620555333333333},
+ {0.778888666666667,0.638888666666666,0.776111333333333,0.629444666666667},
+ {0.782778,0.648888666666667,0.778888666666667,0.638888666666666},
+ {0.787222,0.659444666666667,0.782778,0.648888666666667},
+ {0.791666666666667,0.67,0.787222,0.659444666666667},
+ {0.796111333333333,0.680555333333333,0.791666666666667,0.67},
+ {0.801666666666667,0.690555333333334,0.796111333333333,0.680555333333333},
+ {0.806666666666667,0.7,0.801666666666667,0.690555333333334},
+ {0.812777999999999,0.708888666666667,0.806666666666667,0.7},
+ {0.818888666666666,0.716666666666667,0.812777999999999,0.708888666666667},
+ {0.825555333333334,0.723888666666667,0.818888666666666,0.716666666666667},
+ {0.833333333333333,0.729444666666667,0.825555333333334,0.723888666666667},
+ {0.841111333333333,0.733333333333333,0.833333333333333,0.729444666666667},
+ {0.849999999999999,0.737222,0.841111333333333,0.733333333333333},
+ {0.859999999999999,0.74,0.849999999999999,0.737222},
+ {0.872222000000001,0.742222,0.859999999999999,0.74},
+ {0.886111333333334,0.743888666666667,0.872222000000001,0.742222},
+ {0.901111333333333,0.745555333333333,0.886111333333334,0.743888666666667},
+ {0.917222,0.746666666666667,0.901111333333333,0.745555333333333},
+ {0.933888666666666,0.747778,0.917222,0.746666666666667},
+ {0.95,0.748333333333333,0.933888666666666,0.747778},
+ {0.964444666666668,0.748888666666667,0.95,0.748333333333333},
+ {0.977222,0.749444666666667,0.964444666666668,0.748888666666667},
+ {0.994444666666666,0.75,0.987222,0.749444666666667},
+ {0,0,0,0}
+};
+
+double Icon30[][4] = {
+ {0.103888666666667,0.687222,0,0.708333333333333},
+ {0.125,0.583333333333333,0.103888666666667,0.687222},
+ {0.145555333333334,0.687222,0.125,0.583333333333333},
+ {0.25,0.708333333333333,0.145555333333334,0.687222},
+ {0.145555333333334,0.728888666666667,0.25,0.708333333333333},
+ {0.125,0.833333333333333,0.145555333333334,0.728888666666667},
+ {0.103888666666667,0.728888666666667,0.125,0.833333333333333},
+ {0,0.708333333333333,0.103888666666667,0.728888666666667},
+ {0.291666666666667,0.458333333333333,0.0833333333333333,0.5},
+ {0.333333333333333,0.25,0.291666666666667,0.458333333333333},
+ {0.375,0.458333333333333,0.333333333333333,0.25},
+ {0.583333333333333,0.5,0.375,0.458333333333333},
+ {0.375,0.541666666666667,0.583333333333333,0.5},
+ {0.333333333333333,0.75,0.375,0.541666666666667},
+ {0.291666666666667,0.541666666666667,0.333333333333333,0.75},
+ {0.0833333333333333,0.5,0.291666666666667,0.541666666666667},
+ {0.520555333333334,0.270555333333334,0.416666666666667,0.291666666666667},
+ {0.541666666666667,0.166666666666667,0.520555333333334,0.270555333333334},
+ {0.562222000000001,0.270555333333334,0.541666666666667,0.166666666666667},
+ {0.666666666666667,0.291666666666667,0.562222000000001,0.270555333333334},
+ {0.562222000000001,0.312222,0.666666666666667,0.291666666666667},
+ {0.541666666666667,0.416666666666667,0.562222000000001,0.312222},
+ {0.520555333333334,0.312222,0.541666666666667,0.416666666666667},
+ {0.416666666666667,0.291666666666667,0.520555333333334,0.312222},
+ {0,0,0,0}
+};
+
+double Icon31[][4] = {
+ {0.208333333333333,0.458333333333333,0,0.5},
+ {0.25,0.25,0.208333333333333,0.458333333333333},
+ {0.291666666666667,0.458333333333333,0.25,0.25},
+ {0.5,0.5,0.291666666666667,0.458333333333333},
+ {0.291666666666667,0.541666666666667,0.5,0.5},
+ {0.25,0.75,0.291666666666667,0.541666666666667},
+ {0.208333333333333,0.541666666666667,0.25,0.75},
+ {0,0.5,0.208333333333333,0.541666666666667},
+ {0,0,0,0}
+};
+
+double Icon32[][4] = {
+ {0.25,0.25,0,0.5},
+ {0.5,0.5,0.25,0.25},
+ {0.25,0.75,0.5,0.5},
+ {0,0.5,0.25,0.75},
+ {0,0,0,0}
+};
+
+double Icon33[][4] = {
+ {0.166666666666667,0.25,0,0.333333333333333},
+ {0.166666666666667,0.291666666666667,0.166666666666667,0.25},
+ {0,0.333333333333333,0.166666666666667,0.416666666666667},
+ {0.166666666666667,0.416666666666667,0.166666666666667,0.375},
+ {0.208333333333333,0.458333333333333,0.291666666666667,0.625},
+ {0.25,0.375,0.25,0.458333333333333},
+ {0.291666666666667,0.0416666666666667,0.208333333333333,0.208333333333333},
+ {0.25,0.208333333333333,0.25,0.291666666666667},
+ {0.291666666666667,0.625,0.375,0.458333333333333},
+ {0.333333333333333,0.458333333333333,0.333333333333333,0.375},
+ {0.375,0.208333333333333,0.291666666666667,0.0416666666666667},
+ {0.333333333333333,0.291666666666667,0.333333333333333,0.208333333333333},
+ {0.416666666666667,0.416666666666667,0.583333333333333,0.333333333333333},
+ {0.416666666666667,0.375,0.416666666666667,0.416666666666667},
+ {0.583333333333333,0.333333333333333,0.416666666666667,0.25},
+ {0.416666666666667,0.25,0.416666666666667,0.291666666666667},
+ {0,0,0,0}
+};
+
+double Icon34[][4] = {
+ {0.125,0.497778,0.125,0.5},
+ {0.124444666666667,0.493888666666667,0.125,0.497778},
+ {0.123888666666668,0.486666666666667,0.124444666666667,0.493888666666667},
+ {0.122778000000001,0.476111333333333,0.123888666666668,0.486666666666667},
+ {0.121666666666665,0.462778,0.122778000000001,0.476111333333333},
+ {0.12,0.447222,0.121666666666665,0.462778},
+ {0.118888666666668,0.430555333333333,0.12,0.447222},
+ {0.117778000000001,0.413333333333333,0.118888666666668,0.430555333333333},
+ {0.116666666666665,0.396666666666667,0.117778000000001,0.413333333333333},
+ {0.116666666666665,0.381666666666667,0.116666666666665,0.396666666666667},
+ {0.116666666666665,0.367778,0.116666666666665,0.381666666666667},
+ {0.117221999999998,0.356666666666667,0.116666666666665,0.367778},
+ {0.118888666666668,0.346666666666666,0.117221999999998,0.356666666666667},
+ {0.121666666666665,0.339444666666667,0.118888666666668,0.346666666666666},
+ {0.125,0.333333333333333,0.121666666666665,0.339444666666667},
+ {0.13,0.328333333333333,0.125,0.333333333333333},
+ {0.136666666666666,0.325,0.13,0.328333333333333},
+ {0.145000000000001,0.324444666666666,0.136666666666666,0.325},
+ {0.153888666666665,0.325,0.145000000000001,0.324444666666666},
+ {0.164444666666668,0.327778,0.153888666666665,0.325},
+ {0.176111333333334,0.331111333333334,0.164444666666668,0.327778},
+ {0.187777999999999,0.335555333333333,0.176111333333334,0.331111333333334},
+ {0.198888666666666,0.339444666666667,0.187777999999999,0.335555333333333},
+ {0.210555333333332,0.342778,0.198888666666666,0.339444666666667},
+ {0.221111333333335,0.345,0.210555333333332,0.342778},
+ {0.229999999999999,0.345555333333333,0.221111333333335,0.345},
+ {0.238333333333334,0.343888666666667,0.229999999999999,0.345555333333333},
+ {0.245,0.339444666666667,0.238333333333334,0.343888666666667},
+ {0.25,0.333333333333333,0.245,0.339444666666667},
+ {0.253333333333335,0.326666666666667,0.25,0.333333333333333},
+ {0.255555333333334,0.318888666666667,0.253333333333335,0.326666666666667},
+ {0.256666666666665,0.309444666666667,0.255555333333334,0.318888666666667},
+ {0.257221999999999,0.298888666666667,0.256666666666665,0.309444666666667},
+ {0.257221999999999,0.286666666666667,0.257221999999999,0.298888666666667},
+ {0.256666666666665,0.273333333333333,0.257221999999999,0.286666666666667},
+ {0.255555333333334,0.258888666666667,0.256666666666665,0.273333333333333},
+ {0.253888666666668,0.244444666666666,0.255555333333334,0.258888666666667},
+ {0.252221999999999,0.228888666666667,0.253888666666668,0.244444666666666},
+ {0.25,0.213888666666667,0.252221999999999,0.228888666666667},
+ {0.248333333333335,0.199444666666666,0.25,0.213888666666667},
+ {0.247221999999998,0.185,0.248333333333335,0.199444666666666},
+ {0.246111333333332,0.171666666666667,0.247221999999998,0.185},
+ {0.245555333333333,0.159444666666667,0.246111333333332,0.171666666666667},
+ {0.245555333333333,0.148888666666667,0.245555333333333,0.159444666666667},
+ {0.246666666666665,0.139444666666667,0.245555333333333,0.148888666666667},
+ {0.247778000000001,0.131666666666667,0.246666666666665,0.139444666666667},
+ {0.25,0.125,0.247778000000001,0.131666666666667},
+ {0.252778000000002,0.12,0.25,0.125},
+ {0.255555333333334,0.115555333333334,0.252778000000002,0.12},
+ {0.259444666666667,0.112778,0.255555333333334,0.115555333333334},
+ {0.263888666666669,0.11,0.259444666666667,0.112778},
+ {0.268888666666669,0.108333333333333,0.263888666666669,0.11},
+ {0.273888666666664,0.107222,0.268888666666669,0.108333333333333},
+ {0.279444666666668,0.106111333333333,0.273888666666664,0.107222},
+ {0.285555333333335,0.105555333333333,0.279444666666668,0.106111333333333},
+ {0.303888666666666,0.106111333333333,0.297777999999999,0.105555333333333},
+ {0.309444666666669,0.107222,0.303888666666666,0.106111333333333},
+ {0.314444666666664,0.108333333333333,0.309444666666669,0.107222},
+ {0.319444666666664,0.11,0.314444666666664,0.108333333333333},
+ {0.323888666666666,0.112778,0.319444666666664,0.11},
+ {0.327778,0.115555333333334,0.323888666666666,0.112778},
+ {0.330555333333332,0.12,0.327778,0.115555333333334},
+ {0.333333333333333,0.125,0.330555333333332,0.12},
+ {0.335555333333332,0.131666666666667,0.333333333333333,0.125},
+ {0.336666666666668,0.139444666666667,0.335555333333332,0.131666666666667},
+ {0.337778,0.148888666666667,0.336666666666668,0.139444666666667},
+ {0.337778,0.159444666666667,0.337778,0.148888666666667},
+ {0.337222000000002,0.171666666666667,0.337778,0.159444666666667},
+ {0.336111333333335,0.185,0.337222000000002,0.171666666666667},
+ {0.334999999999998,0.199444666666666,0.336111333333335,0.185},
+ {0.333333333333333,0.213888666666667,0.334999999999998,0.199444666666666},
+ {0.331111333333335,0.229444666666667,0.333333333333333,0.213888666666667},
+ {0.329444666666665,0.244444666666666,0.331111333333335,0.229444666666667},
+ {0.327778,0.258888666666667,0.329444666666665,0.244444666666666},
+ {0.326666666666668,0.273333333333333,0.327778,0.258888666666667},
+ {0.326111333333335,0.286666666666667,0.326666666666668,0.273333333333333},
+ {0.326111333333335,0.298888666666667,0.326111333333335,0.286666666666667},
+ {0.326666666666668,0.309444666666667,0.326111333333335,0.298888666666667},
+ {0.327778,0.318888666666667,0.326666666666668,0.309444666666667},
+ {0.329999999999998,0.326666666666667,0.327778,0.318888666666667},
+ {0.333333333333333,0.333333333333333,0.329999999999998,0.326666666666667},
+ {0.338333333333333,0.339444666666667,0.333333333333333,0.333333333333333},
+ {0.344999999999999,0.343888666666667,0.338333333333333,0.339444666666667},
+ {0.353333333333334,0.345555333333333,0.344999999999999,0.343888666666667},
+ {0.362221999999998,0.345,0.353333333333334,0.345555333333333},
+ {0.372778000000001,0.342778,0.362221999999998,0.345},
+ {0.384444666666667,0.339444666666667,0.372778000000001,0.342778},
+ {0.396111333333332,0.335555333333333,0.384444666666667,0.339444666666667},
+ {0.407222,0.331111333333334,0.396111333333332,0.335555333333333},
+ {0.418888666666665,0.327778,0.407222,0.331111333333334},
+ {0.429444666666669,0.325,0.418888666666665,0.327778},
+ {0.438333333333333,0.324444666666666,0.429444666666669,0.325},
+ {0.446666666666668,0.325,0.438333333333333,0.324444666666666},
+ {0.453333333333333,0.328333333333333,0.446666666666668,0.325},
+ {0.458333333333333,0.333333333333333,0.453333333333333,0.328333333333333},
+ {0.461666666666668,0.339444666666667,0.458333333333333,0.333333333333333},
+ {0.464444666666665,0.346666666666666,0.461666666666668,0.339444666666667},
+ {0.466111333333335,0.356666666666667,0.464444666666665,0.346666666666666},
+ {0.466666666666669,0.367778,0.466111333333335,0.356666666666667},
+ {0.466666666666669,0.381666666666667,0.466666666666669,0.367778},
+ {0.466666666666669,0.396666666666667,0.466666666666669,0.381666666666667},
+ {0.465555333333332,0.413333333333333,0.466666666666669,0.396666666666667},
+ {0.464444666666665,0.430555333333333,0.465555333333332,0.413333333333333},
+ {0.463333333333333,0.447222,0.464444666666665,0.430555333333333},
+ {0.461666666666668,0.462778,0.463333333333333,0.447222},
+ {0.460555333333332,0.476111333333333,0.461666666666668,0.462778},
+ {0.459444666666665,0.486666666666667,0.460555333333332,0.476111333333333},
+ {0.458888666666667,0.493888666666667,0.459444666666665,0.486666666666667},
+ {0.458333333333333,0.497778,0.458888666666667,0.493888666666667},
+ {0.458333333333333,0.5,0.458333333333333,0.497778},
+ {0.125,0.541666666666667,0.125,0.542222},
+ {0.125,0.542222,0.125,0.543888666666666},
+ {0.125,0.543888666666666,0.124444666666667,0.547778},
+ {0.124444666666667,0.547778,0.123888666666668,0.554444666666667},
+ {0.123888666666668,0.554444666666667,0.123333333333335,0.563888666666667},
+ {0.123333333333335,0.563888666666667,0.122778000000001,0.574444666666666},
+ {0.122778000000001,0.574444666666666,0.122221999999998,0.585},
+ {0.122221999999998,0.585,0.122221999999998,0.595555333333333},
+ {0.122221999999998,0.595555333333333,0.122221999999998,0.605},
+ {0.122221999999998,0.605,0.122778000000001,0.612778},
+ {0.122778000000001,0.612778,0.123333333333335,0.619444666666666},
+ {0.123333333333335,0.619444666666666,0.125,0.625},
+ {0.125,0.625,0.127778000000002,0.631111333333333},
+ {0.127778000000002,0.631111333333333,0.131111333333332,0.636666666666667},
+ {0.131111333333332,0.636666666666667,0.136111333333332,0.642222},
+ {0.136111333333332,0.642222,0.142778000000002,0.647778},
+ {0.142778000000002,0.647778,0.149444666666668,0.653333333333334},
+ {0.149444666666668,0.653333333333334,0.156111333333333,0.658888666666667},
+ {0.156111333333333,0.658888666666667,0.161111333333333,0.662778},
+ {0.161111333333333,0.662778,0.165000000000002,0.665555333333333},
+ {0.165000000000002,0.665555333333333,0.166666666666667,0.666666666666667},
+ {0.458333333333333,0.542222,0.458333333333333,0.541666666666667},
+ {0.458333333333333,0.543888666666666,0.458333333333333,0.542222},
+ {0.457778,0.547778,0.458333333333333,0.543888666666666},
+ {0.457222000000002,0.554444666666667,0.457778,0.547778},
+ {0.456666666666668,0.563888666666667,0.457222000000002,0.554444666666667},
+ {0.456111333333335,0.574444666666666,0.456666666666668,0.563888666666667},
+ {0.455555333333332,0.585,0.456111333333335,0.574444666666666},
+ {0.455555333333332,0.595555333333333,0.455555333333332,0.585},
+ {0.455555333333332,0.605,0.455555333333332,0.595555333333333},
+ {0.456111333333335,0.612778,0.455555333333332,0.605},
+ {0.456666666666668,0.619444666666666,0.456111333333335,0.612778},
+ {0.458333333333333,0.625,0.456666666666668,0.619444666666666},
+ {0.461111333333335,0.631111333333333,0.458333333333333,0.625},
+ {0.464444666666665,0.636666666666667,0.461111333333335,0.631111333333333},
+ {0.469444666666665,0.642222,0.464444666666665,0.636666666666667},
+ {0.476111333333336,0.647778,0.469444666666665,0.642222},
+ {0.482778000000001,0.653333333333334,0.476111333333336,0.647778},
+ {0.489444666666666,0.658888666666667,0.482778000000001,0.653333333333334},
+ {0.494444666666666,0.662778,0.489444666666666,0.658888666666667},
+ {0.498333333333335,0.665555333333333,0.494444666666666,0.662778},
+ {0.5,0.666666666666667,0.498333333333335,0.665555333333333},
+ {0,0,0,0}
+};
+
+double Icon35[][4] = {
+ {0.583333333333333,0.75,0.583333333333333,0},
+ {0,0,0,0.75},
+ {0.125,0.5,0.125,0.497778},
+ {0.125,0.497778,0.124444666666667,0.493888666666667},
+ {0.124444666666667,0.493888666666667,0.123888666666668,0.486666666666667},
+ {0.123888666666668,0.486666666666667,0.122778000000001,0.476111333333333},
+ {0.122778000000001,0.476111333333333,0.121666666666665,0.462778},
+ {0.121666666666665,0.462778,0.12,0.447222},
+ {0.12,0.447222,0.118888666666668,0.430555333333333},
+ {0.118888666666668,0.430555333333333,0.117778000000001,0.413333333333333},
+ {0.117778000000001,0.413333333333333,0.116666666666665,0.396666666666667},
+ {0.116666666666665,0.396666666666667,0.116666666666665,0.381666666666667},
+ {0.116666666666665,0.381666666666667,0.116666666666665,0.367778},
+ {0.116666666666665,0.367778,0.117221999999998,0.356666666666667},
+ {0.117221999999998,0.356666666666667,0.118888666666668,0.346666666666666},
+ {0.118888666666668,0.346666666666666,0.121666666666665,0.339444666666667},
+ {0.121666666666665,0.339444666666667,0.125,0.333333333333333},
+ {0.125,0.333333333333333,0.13,0.328333333333333},
+ {0.13,0.328333333333333,0.136666666666666,0.325},
+ {0.136666666666666,0.325,0.145000000000001,0.324444666666666},
+ {0.145000000000001,0.324444666666666,0.153888666666665,0.325},
+ {0.153888666666665,0.325,0.164444666666668,0.327778},
+ {0.164444666666668,0.327778,0.176111333333334,0.331111333333334},
+ {0.176111333333334,0.331111333333334,0.187777999999999,0.335555333333333},
+ {0.187777999999999,0.335555333333333,0.198888666666666,0.339444666666667},
+ {0.198888666666666,0.339444666666667,0.210555333333332,0.342778},
+ {0.210555333333332,0.342778,0.221111333333335,0.345},
+ {0.221111333333335,0.345,0.229999999999999,0.345555333333333},
+ {0.229999999999999,0.345555333333333,0.238333333333334,0.343888666666667},
+ {0.238333333333334,0.343888666666667,0.245,0.339444666666667},
+ {0.245,0.339444666666667,0.25,0.333333333333333},
+ {0.25,0.333333333333333,0.253333333333335,0.326666666666667},
+ {0.253333333333335,0.326666666666667,0.255555333333334,0.318888666666667},
+ {0.255555333333334,0.318888666666667,0.256666666666665,0.309444666666667},
+ {0.256666666666665,0.309444666666667,0.257221999999999,0.298888666666667},
+ {0.257221999999999,0.298888666666667,0.257221999999999,0.286666666666667},
+ {0.257221999999999,0.286666666666667,0.256666666666665,0.273333333333333},
+ {0.256666666666665,0.273333333333333,0.255555333333334,0.258888666666667},
+ {0.255555333333334,0.258888666666667,0.253888666666668,0.244444666666666},
+ {0.253888666666668,0.244444666666666,0.252221999999999,0.228888666666667},
+ {0.252221999999999,0.228888666666667,0.25,0.213888666666667},
+ {0.25,0.213888666666667,0.248333333333335,0.199444666666666},
+ {0.248333333333335,0.199444666666666,0.247221999999998,0.185},
+ {0.247221999999998,0.185,0.246111333333332,0.171666666666667},
+ {0.246111333333332,0.171666666666667,0.245555333333333,0.159444666666667},
+ {0.245555333333333,0.159444666666667,0.245555333333333,0.148888666666667},
+ {0.245555333333333,0.148888666666667,0.246666666666665,0.139444666666667},
+ {0.246666666666665,0.139444666666667,0.247778000000001,0.131666666666667},
+ {0.247778000000001,0.131666666666667,0.25,0.125},
+ {0.25,0.125,0.252778000000002,0.12},
+ {0.252778000000002,0.12,0.255555333333334,0.115555333333334},
+ {0.255555333333334,0.115555333333334,0.259444666666667,0.112778},
+ {0.259444666666667,0.112778,0.263888666666669,0.11},
+ {0.263888666666669,0.11,0.268888666666669,0.108333333333333},
+ {0.268888666666669,0.108333333333333,0.273888666666664,0.107222},
+ {0.273888666666664,0.107222,0.279444666666668,0.106111333333333},
+ {0.279444666666668,0.106111333333333,0.285555333333335,0.105555333333333},
+ {0.297777999999999,0.105555333333333,0.303888666666666,0.106111333333333},
+ {0.303888666666666,0.106111333333333,0.309444666666669,0.107222},
+ {0.309444666666669,0.107222,0.314444666666664,0.108333333333333},
+ {0.314444666666664,0.108333333333333,0.319444666666664,0.11},
+ {0.319444666666664,0.11,0.323888666666666,0.112778},
+ {0.323888666666666,0.112778,0.327778,0.115555333333334},
+ {0.327778,0.115555333333334,0.330555333333332,0.12},
+ {0.330555333333332,0.12,0.333333333333333,0.125},
+ {0.333333333333333,0.125,0.335555333333332,0.131666666666667},
+ {0.335555333333332,0.131666666666667,0.336666666666668,0.139444666666667},
+ {0.336666666666668,0.139444666666667,0.337778,0.148888666666667},
+ {0.337778,0.148888666666667,0.337778,0.159444666666667},
+ {0.337778,0.159444666666667,0.337222000000002,0.171666666666667},
+ {0.337222000000002,0.171666666666667,0.336111333333335,0.185},
+ {0.336111333333335,0.185,0.334999999999998,0.199444666666666},
+ {0.334999999999998,0.199444666666666,0.333333333333333,0.213888666666667},
+ {0.333333333333333,0.213888666666667,0.331111333333335,0.229444666666667},
+ {0.331111333333335,0.229444666666667,0.329444666666665,0.244444666666666},
+ {0.329444666666665,0.244444666666666,0.327778,0.258888666666667},
+ {0.327778,0.258888666666667,0.326666666666668,0.273333333333333},
+ {0.326666666666668,0.273333333333333,0.326111333333335,0.286666666666667},
+ {0.326111333333335,0.286666666666667,0.326111333333335,0.298888666666667},
+ {0.326111333333335,0.298888666666667,0.326666666666668,0.309444666666667},
+ {0.326666666666668,0.309444666666667,0.327778,0.318888666666667},
+ {0.327778,0.318888666666667,0.329999999999998,0.326666666666667},
+ {0.329999999999998,0.326666666666667,0.333333333333333,0.333333333333333},
+ {0.333333333333333,0.333333333333333,0.338333333333333,0.339444666666667},
+ {0.338333333333333,0.339444666666667,0.344999999999999,0.343888666666667},
+ {0.344999999999999,0.343888666666667,0.353333333333334,0.345555333333333},
+ {0.353333333333334,0.345555333333333,0.362221999999998,0.345},
+ {0.362221999999998,0.345,0.372778000000001,0.342778},
+ {0.372778000000001,0.342778,0.384444666666667,0.339444666666667},
+ {0.384444666666667,0.339444666666667,0.396111333333332,0.335555333333333},
+ {0.396111333333332,0.335555333333333,0.407222,0.331111333333334},
+ {0.407222,0.331111333333334,0.418888666666665,0.327778},
+ {0.418888666666665,0.327778,0.429444666666669,0.325},
+ {0.429444666666669,0.325,0.438333333333333,0.324444666666666},
+ {0.438333333333333,0.324444666666666,0.446666666666668,0.325},
+ {0.446666666666668,0.325,0.453333333333333,0.328333333333333},
+ {0.453333333333333,0.328333333333333,0.458333333333333,0.333333333333333},
+ {0.458333333333333,0.333333333333333,0.461666666666668,0.339444666666667},
+ {0.461666666666668,0.339444666666667,0.464444666666665,0.346666666666666},
+ {0.464444666666665,0.346666666666666,0.466111333333335,0.356666666666667},
+ {0.466111333333335,0.356666666666667,0.466666666666669,0.367778},
+ {0.466666666666669,0.367778,0.466666666666669,0.381666666666667},
+ {0.466666666666669,0.381666666666667,0.466666666666669,0.396666666666667},
+ {0.466666666666669,0.396666666666667,0.465555333333332,0.413333333333333},
+ {0.465555333333332,0.413333333333333,0.464444666666665,0.430555333333333},
+ {0.464444666666665,0.430555333333333,0.463333333333333,0.447222},
+ {0.463333333333333,0.447222,0.461666666666668,0.462778},
+ {0.461666666666668,0.462778,0.460555333333332,0.476111333333333},
+ {0.460555333333332,0.476111333333333,0.459444666666665,0.486666666666667},
+ {0.459444666666665,0.486666666666667,0.458888666666667,0.493888666666667},
+ {0.458888666666667,0.493888666666667,0.458333333333333,0.497778},
+ {0.458333333333333,0.497778,0.458333333333333,0.5},
+ {0.125,0.542222,0.125,0.541666666666667},
+ {0.125,0.543888666666666,0.125,0.542222},
+ {0.124444666666667,0.547778,0.125,0.543888666666666},
+ {0.123888666666668,0.554444666666667,0.124444666666667,0.547778},
+ {0.123333333333335,0.563888666666667,0.123888666666668,0.554444666666667},
+ {0.122778000000001,0.574444666666666,0.123333333333335,0.563888666666667},
+ {0.122221999999998,0.585,0.122778000000001,0.574444666666666},
+ {0.122221999999998,0.595555333333333,0.122221999999998,0.585},
+ {0.122221999999998,0.605,0.122221999999998,0.595555333333333},
+ {0.122778000000001,0.612778,0.122221999999998,0.605},
+ {0.123333333333335,0.619444666666666,0.122778000000001,0.612778},
+ {0.125,0.625,0.123333333333335,0.619444666666666},
+ {0.127778000000002,0.631111333333333,0.125,0.625},
+ {0.131111333333332,0.636666666666667,0.127778000000002,0.631111333333333},
+ {0.136111333333332,0.642222,0.131111333333332,0.636666666666667},
+ {0.142778000000002,0.647778,0.136111333333332,0.642222},
+ {0.149444666666668,0.653333333333334,0.142778000000002,0.647778},
+ {0.156111333333333,0.658888666666667,0.149444666666668,0.653333333333334},
+ {0.161111333333333,0.662778,0.156111333333333,0.658888666666667},
+ {0.165000000000002,0.665555333333333,0.161111333333333,0.662778},
+ {0.166666666666667,0.666666666666667,0.165000000000002,0.665555333333333},
+ {0.458333333333333,0.541666666666667,0.458333333333333,0.542222},
+ {0.458333333333333,0.542222,0.458333333333333,0.543888666666666},
+ {0.458333333333333,0.543888666666666,0.457778,0.547778},
+ {0.457778,0.547778,0.457222000000002,0.554444666666667},
+ {0.457222000000002,0.554444666666667,0.456666666666668,0.563888666666667},
+ {0.456666666666668,0.563888666666667,0.456111333333335,0.574444666666666},
+ {0.456111333333335,0.574444666666666,0.455555333333332,0.585},
+ {0.455555333333332,0.585,0.455555333333332,0.595555333333333},
+ {0.455555333333332,0.595555333333333,0.455555333333332,0.605},
+ {0.455555333333332,0.605,0.456111333333335,0.612778},
+ {0.456111333333335,0.612778,0.456666666666668,0.619444666666666},
+ {0.456666666666668,0.619444666666666,0.458333333333333,0.625},
+ {0.458333333333333,0.625,0.461111333333335,0.631111333333333},
+ {0.461111333333335,0.631111333333333,0.464444666666665,0.636666666666667},
+ {0.464444666666665,0.636666666666667,0.469444666666665,0.642222},
+ {0.469444666666665,0.642222,0.476111333333336,0.647778},
+ {0.476111333333336,0.647778,0.482778000000001,0.653333333333334},
+ {0.482778000000001,0.653333333333334,0.489444666666666,0.658888666666667},
+ {0.489444666666666,0.658888666666667,0.494444666666666,0.662778},
+ {0.494444666666666,0.662778,0.498333333333335,0.665555333333333},
+ {0.498333333333335,0.665555333333333,0.5,0.666666666666667},
+ {0,0,0,0}
+};
+
+double Icon36[][4] = {
+ {0.0694446666666645,0.397778,0.0733333333333329,0.395555333333334},
+ {0.067222666666666,0.401111333333333,0.0694446666666645,0.397778},
+ {0.0649999999999977,0.405,0.067222666666666,0.401111333333333},
+ {0.0638893333333309,0.409444666666667,0.0649999999999977,0.405},
+ {0.0627779999999992,0.414444666666667,0.0638893333333309,0.409444666666667},
+ {0.0622226666666658,0.42,0.0627779999999992,0.414444666666667},
+ {0.0622226666666658,0.425555333333334,0.0622226666666658,0.42},
+ {0.0622226666666658,0.431111333333333,0.0622226666666658,0.425555333333334},
+ {0.0627779999999992,0.436666666666667,0.0622226666666658,0.431111333333333},
+ {0.0638893333333309,0.441666666666666,0.0627779999999992,0.436666666666667},
+ {0.0649999999999977,0.446111333333333,0.0638893333333309,0.441666666666666},
+ {0.067222666666666,0.45,0.0649999999999977,0.446111333333333},
+ {0.0694446666666645,0.453333333333333,0.067222666666666,0.45},
+ {0.0733333333333329,0.455555333333334,0.0694446666666645,0.453333333333333},
+ {0.0783333333333331,0.457222,0.0733333333333329,0.455555333333334},
+ {0.0844446666666651,0.458333333333333,0.0783333333333331,0.457222},
+ {0.101111333333331,0.457222,0.0922226666666669,0.458333333333333},
+ {0.111111333333331,0.455,0.101111333333331,0.457222},
+ {0.121666666666665,0.452778,0.111111333333331,0.455},
+ {0.132777999999997,0.45,0.121666666666665,0.452778},
+ {0.143889333333334,0.447222,0.132777999999997,0.45},
+ {0.154444666666668,0.445555333333333,0.143889333333334,0.447222},
+ {0.164444666666663,0.444444666666667,0.154444666666668,0.445555333333333},
+ {0.181111333333334,0.446666666666667,0.173333333333332,0.444444666666667},
+ {0.187222666666666,0.45,0.181111333333334,0.446666666666667},
+ {0.192222666666666,0.455555333333334,0.187222666666666,0.45},
+ {0.195556000000001,0.461666666666667,0.192222666666666,0.455555333333334},
+ {0.198333333333333,0.47,0.195556000000001,0.461666666666667},
+ {0.199999999999998,0.479444666666667,0.198333333333333,0.47},
+ {0.201666666666663,0.49,0.199999999999998,0.479444666666667},
+ {0.203333333333333,0.502778,0.201666666666663,0.49},
+ {0.204444666666665,0.516111333333334,0.203333333333333,0.502778},
+ {0.205555999999997,0.53,0.204444666666665,0.516111333333334},
+ {0.20611133333333,0.545,0.205555999999997,0.53},
+ {0.206666666666663,0.559444666666667,0.20611133333333,0.545},
+ {0.206666666666663,0.573333333333334,0.206666666666663,0.559444666666667},
+ {0.20611133333333,0.586666666666667,0.206666666666663,0.573333333333334},
+ {0.204999999999998,0.599444666666667,0.20611133333333,0.586666666666667},
+ {0.203333333333333,0.61,0.204999999999998,0.599444666666667},
+ {0.200555999999996,0.619444666666666,0.203333333333333,0.61},
+ {0.197222666666666,0.627778,0.200555999999996,0.619444666666666},
+ {0.192222666666666,0.633888666666667,0.197222666666666,0.627778},
+ {0.186111333333334,0.638888666666666,0.192222666666666,0.633888666666667},
+ {0.178333333333332,0.642222,0.186111333333334,0.638888666666666},
+ {0.16888933333333,0.645,0.178333333333332,0.642222},
+ {0.157777999999998,0.646111333333333,0.16888933333333,0.645},
+ {0.145555999999999,0.646666666666667,0.157777999999998,0.646111333333333},
+ {0.117777999999997,0.646111333333333,0.132222666666664,0.646666666666667},
+ {0.103333333333334,0.645,0.117777999999997,0.646111333333333},
+ {0.0888893333333319,0.643888666666667,0.103333333333334,0.645},
+ {0.0744446666666647,0.642222,0.0888893333333319,0.643888666666667},
+ {0.061111333333334,0.641111333333334,0.0744446666666647,0.642222},
+ {0.0488893333333304,0.639444666666667,0.061111333333334,0.641111333333334},
+ {0.0377779999999982,0.638333333333333,0.0488893333333304,0.639444666666667},
+ {0.0283333333333312,0.637222,0.0377779999999982,0.638333333333333},
+ {0.0205559999999991,0.635555333333333,0.0283333333333312,0.637222},
+ {0.0144446666666672,0.633888666666667,0.0205559999999991,0.635555333333333},
+ {0.00944466666666699,0.631666666666667,0.0144446666666672,0.633888666666667},
+ {0.00611133333333195,0.628888666666667,0.00944466666666699,0.631666666666667},
+ {0.0033333333333303,0.626111333333334,0.00611133333333195,0.628888666666667},
+ {0.00166666666666515,0.622222,0.0033333333333303,0.626111333333334},
+ {0.000555999999998373,0.618333333333334,0.00166666666666515,0.622222},
+ {0,0.613888666666667,0.000555999999998373,0.618333333333334},
+ {0,0.608888666666667,0,0.613888666666667},
+ {0.000555999999998373,0.604444666666667,0,0.608888666666667},
+ {0.00111133333333176,0.599444666666667,0.000555999999998373,0.604444666666667},
+ {0.00222266666666352,0.594444666666667,0.00111133333333176,0.599444666666667},
+ {0.0033333333333303,0.59,0.00222266666666352,0.594444666666667},
+ {0.00500000000000019,0.586111333333333,0.0033333333333303,0.59},
+ {0.00666666666666534,0.582222,0.00500000000000019,0.586111333333333},
+ {0.00833333333333049,0.579444666666667,0.00666666666666534,0.582222},
+ {0.0111113333333321,0.576666666666667,0.00833333333333049,0.579444666666667},
+ {0.0144446666666672,0.574444666666666,0.0111113333333321,0.576666666666667},
+ {0.0194446666666674,0.572778,0.0144446666666672,0.574444666666666},
+ {0.0255559999999993,0.571666666666667,0.0194446666666674,0.572778},
+ {0.0333333333333314,0.571111333333333,0.0255559999999993,0.571666666666667},
+ {0.0522226666666654,0.572222,0.042222666666665,0.571111333333333},
+ {0.0627779999999992,0.573333333333334,0.0522226666666654,0.572222},
+ {0.0738893333333313,0.574444666666666,0.0627779999999992,0.573333333333334},
+ {0.0849999999999985,0.575555333333333,0.0738893333333313,0.574444666666666},
+ {0.0955559999999972,0.576666666666667,0.0849999999999985,0.575555333333333},
+ {0.105555999999998,0.577778,0.0955559999999972,0.576666666666667},
+ {0.122222666666663,0.577222,0.114444666666666,0.577778},
+ {0.12833333333333,0.576111333333333,0.122222666666663,0.577222},
+ {0.13333333333333,0.574444666666666,0.12833333333333,0.576111333333333},
+ {0.137222666666664,0.572222,0.13333333333333,0.574444666666666},
+ {0.139444666666667,0.568888666666667,0.137222666666664,0.572222},
+ {0.141666666666666,0.565,0.139444666666667,0.568888666666667},
+ {0.142777999999997,0.560555333333333,0.141666666666666,0.565},
+ {0.143889333333334,0.555555333333333,0.142777999999997,0.560555333333333},
+ {0.144444666666667,0.55,0.143889333333334,0.555555333333333},
+ {0.144444666666667,0.544444666666667,0.144444666666667,0.55},
+ {0.144444666666667,0.539444666666667,0.144444666666667,0.544444666666667},
+ {0.143889333333334,0.533888666666667,0.144444666666667,0.539444666666667},
+ {0.142777999999997,0.528888666666666,0.143889333333334,0.533888666666667},
+ {0.141666666666666,0.524444666666666,0.142777999999997,0.528888666666666},
+ {0.139444666666667,0.520555333333334,0.141666666666666,0.524444666666666},
+ {0.137222666666664,0.517222,0.139444666666667,0.520555333333334},
+ {0.13333333333333,0.515,0.137222666666664,0.517222},
+ {0.12833333333333,0.513333333333333,0.13333333333333,0.515},
+ {0.122222666666663,0.512222,0.12833333333333,0.513333333333333},
+ {0.105555999999998,0.513333333333333,0.114444666666666,0.512222},
+ {0.0955559999999972,0.515555333333333,0.105555999999998,0.513333333333333},
+ {0.0849999999999985,0.517778,0.0955559999999972,0.515555333333333},
+ {0.0738893333333313,0.520555333333334,0.0849999999999985,0.517778},
+ {0.0627779999999992,0.523333333333333,0.0738893333333313,0.520555333333334},
+ {0.0522226666666654,0.525,0.0627779999999992,0.523333333333333},
+ {0.042222666666665,0.526111333333333,0.0522226666666654,0.525},
+ {0.0255559999999993,0.523888666666667,0.0333333333333314,0.526111333333333},
+ {0.0194446666666674,0.520555333333334,0.0255559999999993,0.523888666666667},
+ {0.0144446666666672,0.515,0.0194446666666674,0.520555333333334},
+ {0.0111113333333321,0.508888666666667,0.0144446666666672,0.515},
+ {0.00833333333333049,0.500555333333333,0.0111113333333321,0.508888666666667},
+ {0.00666666666666534,0.491111333333333,0.00833333333333049,0.500555333333333},
+ {0.00500000000000019,0.480555333333333,0.00666666666666534,0.491111333333333},
+ {0.0033333333333303,0.467778,0.00500000000000019,0.480555333333333},
+ {0.00222266666666352,0.454444666666667,0.0033333333333303,0.467778},
+ {0.00111133333333176,0.440555333333334,0.00222266666666352,0.454444666666667},
+ {0.000555999999998373,0.426111333333333,0.00111133333333176,0.440555333333334},
+ {0,0.411111333333333,0.000555999999998373,0.426111333333333},
+ {0,0.397222,0,0.411111333333333},
+ {0.000555999999998373,0.383888666666667,0,0.397222},
+ {0.00166666666666515,0.371111333333333,0.000555999999998373,0.383888666666667},
+ {0.0033333333333303,0.360555333333333,0.00166666666666515,0.371111333333333},
+ {0.00611133333333195,0.351111333333333,0.0033333333333303,0.360555333333333},
+ {0.00944466666666699,0.342778,0.00611133333333195,0.351111333333333},
+ {0.0144446666666672,0.336666666666667,0.00944466666666699,0.342778},
+ {0.0205559999999991,0.331666666666666,0.0144446666666672,0.336666666666667},
+ {0.0283333333333312,0.328333333333333,0.0205559999999991,0.331666666666666},
+ {0.0377779999999982,0.325555333333333,0.0283333333333312,0.328333333333333},
+ {0.0488893333333304,0.324444666666666,0.0377779999999982,0.325555333333333},
+ {0.061111333333334,0.323888666666667,0.0488893333333304,0.324444666666666},
+ {0.0888893333333319,0.324444666666666,0.0744446666666647,0.323888666666667},
+ {0.103333333333334,0.325555333333333,0.0888893333333319,0.324444666666666},
+ {0.117777999999997,0.326666666666667,0.103333333333334,0.325555333333333},
+ {0.132222666666664,0.328333333333333,0.117777999999997,0.326666666666667},
+ {0.145555999999999,0.329444666666667,0.132222666666664,0.328333333333333},
+ {0.157777999999998,0.331111333333334,0.145555999999999,0.329444666666667},
+ {0.16888933333333,0.332222,0.157777999999998,0.331111333333334},
+ {0.178333333333332,0.333333333333333,0.16888933333333,0.332222},
+ {0.186111333333334,0.335,0.178333333333332,0.333333333333333},
+ {0.192222666666666,0.336666666666667,0.186111333333334,0.335},
+ {0.197222666666666,0.338888666666667,0.192222666666666,0.336666666666667},
+ {0.200555999999996,0.341111333333333,0.197222666666666,0.338888666666667},
+ {0.203333333333333,0.344444666666667,0.200555999999996,0.341111333333333},
+ {0.204999999999998,0.348333333333333,0.203333333333333,0.344444666666667},
+ {0.20611133333333,0.352222,0.204999999999998,0.348333333333333},
+ {0.206666666666663,0.356666666666667,0.20611133333333,0.352222},
+ {0.206666666666663,0.361111333333334,0.206666666666663,0.356666666666667},
+ {0.20611133333333,0.366111333333333,0.206666666666663,0.361111333333334},
+ {0.205555999999997,0.371111333333333,0.20611133333333,0.366111333333333},
+ {0.204444666666665,0.375555333333333,0.205555999999997,0.371111333333333},
+ {0.203333333333333,0.38,0.204444666666665,0.375555333333333},
+ {0.201666666666663,0.383888666666667,0.203333333333333,0.38},
+ {0.199999999999998,0.387778,0.201666666666663,0.383888666666667},
+ {0.198333333333333,0.391111333333334,0.199999999999998,0.387778},
+ {0.195556000000001,0.393333333333333,0.198333333333333,0.391111333333334},
+ {0.192222666666666,0.395555333333334,0.195556000000001,0.393333333333333},
+ {0.187222666666666,0.397222,0.192222666666666,0.395555333333334},
+ {0.181111333333334,0.398333333333333,0.187222666666666,0.397222},
+ {0.173333333333332,0.398888666666667,0.181111333333334,0.398333333333333},
+ {0.154444666666668,0.397778,0.164444666666663,0.398888666666667},
+ {0.143889333333334,0.396666666666667,0.154444666666668,0.397778},
+ {0.132777999999997,0.395555333333334,0.143889333333334,0.396666666666667},
+ {0.121666666666665,0.394444666666667,0.132777999999997,0.395555333333334},
+ {0.111111333333331,0.393333333333333,0.121666666666665,0.394444666666667},
+ {0.101111333333331,0.392222,0.111111333333331,0.393333333333333},
+ {0.0844446666666651,0.392778,0.0922226666666669,0.392222},
+ {0.0783333333333331,0.393888666666667,0.0844446666666651,0.392778},
+ {0.0733333333333329,0.395555333333334,0.0783333333333331,0.393888666666667},
+ {0.317777999999999,0.334444666666667,0.311666666666667,0.336666666666667},
+ {0.323333333333333,0.332778,0.317777999999999,0.334444666666667},
+ {0.329444666666665,0.331666666666666,0.323333333333333,0.332778},
+ {0.335555999999997,0.331111333333334,0.329444666666665,0.331666666666666},
+ {0.353333333333334,0.331666666666666,0.347222666666667,0.331111333333334},
+ {0.359444666666666,0.332778,0.353333333333334,0.331666666666666},
+ {0.365,0.334444666666667,0.359444666666666,0.332778},
+ {0.371111333333332,0.336666666666667,0.365,0.334444666666667},
+ {0.375555999999998,0.338888666666667,0.371111333333332,0.336666666666667},
+ {0.38,0.341666666666667,0.375555999999998,0.338888666666667},
+ {0.384444666666667,0.344444666666667,0.38,0.341666666666667},
+ {0.388889333333334,0.347222,0.384444666666667,0.344444666666667},
+ {0.393889333333334,0.349444666666667,0.388889333333334,0.347222},
+ {0.398889333333334,0.352222,0.393889333333334,0.349444666666667},
+ {0.403889333333334,0.355,0.398889333333334,0.352222},
+ {0.408333333333331,0.357778,0.403889333333334,0.355},
+ {0.413333333333332,0.361666666666667,0.408333333333331,0.357778},
+ {0.417777999999998,0.366111333333333,0.413333333333332,0.361666666666667},
+ {0.421666666666667,0.371111333333333,0.417777999999998,0.366111333333333},
+ {0.424999999999997,0.377778,0.421666666666667,0.371111333333333},
+ {0.428333333333332,0.385555333333333,0.424999999999997,0.377778},
+ {0.430556,0.395555333333334,0.428333333333332,0.385555333333333},
+ {0.431666666666667,0.403333333333334,0.430556,0.395555333333334},
+ {0.432777999999999,0.412222,0.431666666666667,0.403333333333334},
+ {0.433889333333331,0.422222,0.432777999999999,0.412222},
+ {0.434444666666664,0.433333333333334,0.433889333333331,0.422222},
+ {0.434999999999997,0.445555333333333,0.434444666666664,0.433333333333334},
+ {0.435556000000001,0.458888666666667,0.434999999999997,0.445555333333333},
+ {0.435556000000001,0.472778,0.435556000000001,0.458888666666667},
+ {0.436111333333334,0.487222,0.435556000000001,0.472778},
+ {0.436111333333334,0.502222,0.436111333333334,0.487222},
+ {0.436111333333334,0.517222,0.436111333333334,0.502222},
+ {0.436111333333334,0.532778,0.436111333333334,0.517222},
+ {0.436111333333334,0.547222,0.436111333333334,0.532778},
+ {0.435556000000001,0.561666666666667,0.436111333333334,0.547222},
+ {0.435556000000001,0.575555333333333,0.435556000000001,0.561666666666667},
+ {0.434999999999997,0.588333333333334,0.435556000000001,0.575555333333333},
+ {0.434444666666664,0.6,0.434999999999997,0.588333333333334},
+ {0.433889333333331,0.610555333333333,0.434444666666664,0.6},
+ {0.432777999999999,0.619444666666666,0.433889333333331,0.610555333333333},
+ {0.431666666666667,0.627222,0.432777999999999,0.619444666666666},
+ {0.430556,0.633888666666667,0.431666666666667,0.627222},
+ {0.428889333333331,0.64,0.430556,0.633888666666667},
+ {0.426666666666667,0.644444666666667,0.428889333333331,0.64},
+ {0.42388933333333,0.647778,0.426666666666667,0.644444666666667},
+ {0.420556,0.65,0.42388933333333,0.647778},
+ {0.417222666666665,0.651666666666667,0.420556,0.65},
+ {0.413333333333332,0.652222,0.417222666666665,0.651666666666667},
+ {0.405000000000001,0.651666666666667,0.409444666666663,0.652222},
+ {0.400555999999999,0.650555333333333,0.405000000000001,0.651666666666667},
+ {0.396666666666666,0.649444666666666,0.400555999999999,0.650555333333333},
+ {0.392222666666664,0.648333333333333,0.396666666666666,0.649444666666666},
+ {0.388333333333331,0.646666666666667,0.392222666666664,0.648333333333333},
+ {0.384444666666667,0.645,0.388333333333331,0.646666666666667},
+ {0.381111333333332,0.643333333333333,0.384444666666667,0.645},
+ {0.377777999999997,0.641666666666667,0.381111333333332,0.643333333333333},
+ {0.375,0.639444666666667,0.377777999999997,0.641666666666667},
+ {0.372777999999997,0.636666666666667,0.375,0.639444666666667},
+ {0.371111333333332,0.633888666666667,0.372777999999997,0.636666666666667},
+ {0.369444666666666,0.628888666666667,0.371111333333332,0.633888666666667},
+ {0.36833333333333,0.622778,0.369444666666666,0.628888666666667},
+ {0.367777999999996,0.615,0.36833333333333,0.622778},
+ {0.367777999999996,0.606111333333333,0.367777999999996,0.615},
+ {0.368889333333333,0.596111333333334,0.367777999999996,0.606111333333333},
+ {0.37,0.585555333333333,0.368889333333333,0.596111333333334},
+ {0.371111333333332,0.574444666666666,0.37,0.585555333333333},
+ {0.372222666666663,0.563333333333333,0.371111333333332,0.574444666666666},
+ {0.37333333333333,0.552778,0.372222666666663,0.563333333333333},
+ {0.374444666666667,0.542778,0.37333333333333,0.552778},
+ {0.374444666666667,0.533888666666667,0.374444666666667,0.542778},
+ {0.373889333333333,0.526111333333333,0.374444666666667,0.533888666666667},
+ {0.372777999999997,0.52,0.373889333333333,0.526111333333333},
+ {0.371111333333332,0.515,0.372777999999997,0.52},
+ {0.368889333333333,0.511111333333333,0.371111333333332,0.515},
+ {0.365555999999998,0.508888666666667,0.368889333333333,0.511111333333333},
+ {0.361666666666665,0.506666666666667,0.365555999999998,0.508888666666667},
+ {0.357222666666667,0.505555333333334,0.361666666666665,0.506666666666667},
+ {0.352222666666667,0.504444666666667,0.357222666666667,0.505555333333334},
+ {0.346666666666664,0.503888666666667,0.352222666666667,0.504444666666667},
+ {0.330555999999997,0.504444666666667,0.33611133333333,0.503888666666667},
+ {0.325555999999996,0.505555333333334,0.330555999999997,0.504444666666667},
+ {0.321111333333334,0.506666666666667,0.325555999999996,0.505555333333334},
+ {0.317222666666666,0.508888666666667,0.321111333333334,0.506666666666667},
+ {0.313889333333331,0.511111333333333,0.317222666666666,0.508888666666667},
+ {0.311666666666667,0.515,0.313889333333331,0.511111333333333},
+ {0.309999999999997,0.52,0.311666666666667,0.515},
+ {0.308889333333331,0.526111333333333,0.309999999999997,0.52},
+ {0.308333333333332,0.533888666666667,0.308889333333331,0.526111333333333},
+ {0.308333333333332,0.542778,0.308333333333332,0.533888666666667},
+ {0.309444666666664,0.552778,0.308333333333332,0.542778},
+ {0.310556000000001,0.563333333333333,0.309444666666664,0.552778},
+ {0.311666666666667,0.574444666666666,0.310556000000001,0.563333333333333},
+ {0.312777999999999,0.585555333333333,0.311666666666667,0.574444666666666},
+ {0.313889333333331,0.596111333333334,0.312777999999999,0.585555333333333},
+ {0.314999999999998,0.606111333333333,0.313889333333331,0.596111333333334},
+ {0.314999999999998,0.615,0.314999999999998,0.606111333333333},
+ {0.314444666666664,0.622778,0.314999999999998,0.615},
+ {0.313333333333333,0.628888666666667,0.314444666666664,0.622778},
+ {0.311666666666667,0.633888666666667,0.313333333333333,0.628888666666667},
+ {0.309999999999997,0.636666666666667,0.311666666666667,0.633888666666667},
+ {0.307777999999999,0.639444666666667,0.309999999999997,0.636666666666667},
+ {0.304999999999997,0.641666666666667,0.307777999999999,0.639444666666667},
+ {0.301666666666667,0.643333333333333,0.304999999999997,0.641666666666667},
+ {0.298333333333332,0.645,0.301666666666667,0.643333333333333},
+ {0.294444666666664,0.646666666666667,0.298333333333332,0.645},
+ {0.290556,0.648333333333333,0.294444666666664,0.646666666666667},
+ {0.286111333333333,0.649444666666666,0.290556,0.648333333333333},
+ {0.281666666666666,0.650555333333333,0.286111333333333,0.649444666666666},
+ {0.277777999999998,0.651666666666667,0.281666666666666,0.650555333333333},
+ {0.273333333333331,0.652222,0.277777999999998,0.651666666666667},
+ {0.265555999999999,0.651666666666667,0.269444666666667,0.652222},
+ {0.262222666666664,0.65,0.265555999999999,0.651666666666667},
+ {0.258889333333334,0.647778,0.262222666666664,0.65},
+ {0.256111333333332,0.644444666666667,0.258889333333334,0.647778},
+ {0.253889333333333,0.64,0.256111333333332,0.644444666666667},
+ {0.252222666666663,0.633888666666667,0.253889333333333,0.64},
+ {0.251111333333332,0.627222,0.252222666666663,0.633888666666667},
+ {0.25,0.619444666666666,0.251111333333332,0.627222},
+ {0.248889333333333,0.610555333333333,0.25,0.619444666666666},
+ {0.24833333333333,0.6,0.248889333333333,0.610555333333333},
+ {0.247777999999997,0.588333333333334,0.24833333333333,0.6},
+ {0.247222666666663,0.575555333333333,0.247777999999997,0.588333333333334},
+ {0.247222666666663,0.561666666666667,0.247222666666663,0.575555333333333},
+ {0.246666666666665,0.547222,0.247222666666663,0.561666666666667},
+ {0.246666666666665,0.532778,0.246666666666665,0.547222},
+ {0.246666666666665,0.517222,0.246666666666665,0.532778},
+ {0.246666666666665,0.502222,0.246666666666665,0.517222},
+ {0.246666666666665,0.487222,0.246666666666665,0.502222},
+ {0.247222666666663,0.472778,0.246666666666665,0.487222},
+ {0.247222666666663,0.458888666666667,0.247222666666663,0.472778},
+ {0.247777999999997,0.445555333333333,0.247222666666663,0.458888666666667},
+ {0.24833333333333,0.433333333333334,0.247777999999997,0.445555333333333},
+ {0.248889333333333,0.422222,0.24833333333333,0.433333333333334},
+ {0.25,0.412222,0.248889333333333,0.422222},
+ {0.251111333333332,0.403333333333334,0.25,0.412222},
+ {0.252222666666663,0.395555333333334,0.251111333333332,0.403333333333334},
+ {0.254444666666667,0.385555333333333,0.252222666666663,0.395555333333334},
+ {0.257777999999997,0.377778,0.254444666666667,0.385555333333333},
+ {0.261111333333332,0.371111333333333,0.257777999999997,0.377778},
+ {0.265000000000001,0.366111333333333,0.261111333333332,0.371111333333333},
+ {0.269444666666667,0.361666666666667,0.265000000000001,0.366111333333333},
+ {0.274444666666668,0.357778,0.269444666666667,0.361666666666667},
+ {0.278889333333334,0.355,0.274444666666668,0.357778},
+ {0.28388933333333,0.352222,0.278889333333334,0.355},
+ {0.28888933333333,0.349444666666667,0.28388933333333,0.352222},
+ {0.29388933333333,0.347222,0.28888933333333,0.349444666666667},
+ {0.298333333333332,0.344444666666667,0.29388933333333,0.347222},
+ {0.302777999999999,0.341666666666667,0.298333333333332,0.344444666666667},
+ {0.307222666666666,0.338888666666667,0.302777999999999,0.341666666666667},
+ {0.311666666666667,0.336666666666667,0.307222666666666,0.338888666666667},
+ {0.371111333333332,0.455555333333334,0.367222666666663,0.457778},
+ {0.367222666666663,0.457778,0.362778000000001,0.459444666666667},
+ {0.362778000000001,0.459444666666667,0.356111333333331,0.460555333333333},
+ {0.356111333333331,0.460555333333333,0.348889333333332,0.461111333333333},
+ {0.333889333333332,0.461111333333333,0.326666666666663,0.460555333333333},
+ {0.326666666666663,0.460555333333333,0.319999999999998,0.459444666666667},
+ {0.319999999999998,0.459444666666667,0.315556000000001,0.457778},
+ {0.315556000000001,0.457778,0.311666666666667,0.455555333333334},
+ {0.311666666666667,0.455555333333334,0.309444666666664,0.451666666666667},
+ {0.309444666666664,0.451666666666667,0.307777999999999,0.446666666666667},
+ {0.307777999999999,0.446666666666667,0.306666666666667,0.440555333333334},
+ {0.306666666666667,0.440555333333334,0.306111333333334,0.433333333333334},
+ {0.306111333333334,0.433333333333334,0.306111333333334,0.425555333333334},
+ {0.306111333333334,0.425555333333334,0.306111333333334,0.417778},
+ {0.306111333333334,0.417778,0.306666666666667,0.410555333333334},
+ {0.306666666666667,0.410555333333334,0.307777999999999,0.404444666666667},
+ {0.307777999999999,0.404444666666667,0.309444666666664,0.399444666666666},
+ {0.309444666666664,0.399444666666666,0.311666666666667,0.395555333333334},
+ {0.311666666666667,0.395555333333334,0.315556000000001,0.393333333333333},
+ {0.315556000000001,0.393333333333333,0.319999999999998,0.391666666666667},
+ {0.319999999999998,0.391666666666667,0.326666666666663,0.390555333333333},
+ {0.326666666666663,0.390555333333333,0.333889333333332,0.39},
+ {0.348889333333332,0.39,0.356111333333331,0.390555333333333},
+ {0.356111333333331,0.390555333333333,0.362778000000001,0.391666666666667},
+ {0.362778000000001,0.391666666666667,0.367222666666663,0.393333333333333},
+ {0.367222666666663,0.393333333333333,0.371111333333332,0.395555333333334},
+ {0.371111333333332,0.395555333333334,0.37333333333333,0.399444666666666},
+ {0.37333333333333,0.399444666666666,0.375,0.404444666666667},
+ {0.375,0.404444666666667,0.376111333333332,0.410555333333334},
+ {0.376111333333332,0.410555333333334,0.376666666666665,0.417778},
+ {0.376666666666665,0.417778,0.376666666666665,0.425555333333334},
+ {0.376666666666665,0.425555333333334,0.376666666666665,0.433333333333334},
+ {0.376666666666665,0.433333333333334,0.376111333333332,0.440555333333334},
+ {0.376111333333332,0.440555333333334,0.375,0.446666666666667},
+ {0.375,0.446666666666667,0.37333333333333,0.451666666666667},
+ {0.37333333333333,0.451666666666667,0.371111333333332,0.455555333333334},
+ {0.549444666666664,0.633888666666667,0.553889333333331,0.637778},
+ {0.553889333333331,0.637778,0.557777999999999,0.64},
+ {0.557777999999999,0.64,0.562222666666666,0.642222},
+ {0.562222666666666,0.642222,0.566666666666668,0.643333333333333},
+ {0.566666666666668,0.643333333333333,0.570556000000001,0.644444666666667},
+ {0.570556000000001,0.644444666666667,0.574999999999998,0.645},
+ {0.583333333333333,0.645,0.587778,0.644444666666667},
+ {0.587778,0.644444666666667,0.591666666666664,0.643333333333333},
+ {0.591666666666664,0.643333333333333,0.596111333333331,0.642222},
+ {0.596111333333331,0.642222,0.600555999999997,0.64},
+ {0.600555999999997,0.64,0.604444666666666,0.637778},
+ {0.604444666666666,0.637778,0.608889333333333,0.633888666666667},
+ {0.608889333333333,0.633888666666667,0.613333333333334,0.628888666666667},
+ {0.613333333333334,0.628888666666667,0.617777999999996,0.623333333333333},
+ {0.617777999999996,0.623333333333333,0.622222666666663,0.616111333333333},
+ {0.622222666666663,0.616111333333333,0.626666666666665,0.608888666666667},
+ {0.626666666666665,0.608888666666667,0.631666666666665,0.600555333333334},
+ {0.631666666666665,0.600555333333334,0.636666666666665,0.591666666666667},
+ {0.636666666666665,0.591666666666667,0.641666666666666,0.582778},
+ {0.641666666666666,0.582778,0.646111333333332,0.573333333333334},
+ {0.646111333333332,0.573333333333334,0.651111333333333,0.563888666666667},
+ {0.651111333333333,0.563888666666667,0.655555999999999,0.554444666666667},
+ {0.655555999999999,0.554444666666667,0.659444666666663,0.545},
+ {0.659444666666663,0.545,0.662777999999998,0.535555333333334},
+ {0.662777999999998,0.535555333333334,0.666111333333333,0.525555333333333},
+ {0.666111333333333,0.525555333333333,0.668333333333332,0.515},
+ {0.668333333333332,0.515,0.669999999999997,0.505555333333334},
+ {0.669999999999997,0.505555333333334,0.671111333333333,0.495},
+ {0.671111333333333,0.495,0.672222666666665,0.484444666666667},
+ {0.672222666666665,0.484444666666667,0.672777999999999,0.472778},
+ {0.672777999999999,0.472778,0.673333333333332,0.46},
+ {0.673333333333332,0.46,0.67388933333333,0.447222},
+ {0.67388933333333,0.447222,0.67388933333333,0.433888666666667},
+ {0.67388933333333,0.433888666666667,0.67388933333333,0.42},
+ {0.67388933333333,0.42,0.67388933333333,0.406666666666667},
+ {0.67388933333333,0.406666666666667,0.67388933333333,0.393888666666667},
+ {0.67388933333333,0.393888666666667,0.673333333333332,0.381666666666667},
+ {0.673333333333332,0.381666666666667,0.672777999999999,0.37},
+ {0.672777999999999,0.37,0.672222666666665,0.36},
+ {0.672222666666665,0.36,0.671111333333333,0.350555333333334},
+ {0.671111333333333,0.350555333333334,0.669999999999997,0.342778},
+ {0.669999999999997,0.342778,0.668333333333332,0.336666666666667},
+ {0.668333333333332,0.336666666666667,0.666666666666667,0.332222},
+ {0.666666666666667,0.332222,0.664444666666663,0.328888666666667},
+ {0.664444666666663,0.328888666666667,0.661666666666666,0.326111333333333},
+ {0.661666666666666,0.326111333333333,0.658333333333331,0.323888666666667},
+ {0.658333333333331,0.323888666666667,0.655000000000001,0.322222},
+ {0.655000000000001,0.322222,0.651111333333333,0.321111333333333},
+ {0.651111333333333,0.321111333333333,0.647222666666664,0.320555333333333},
+ {0.647222666666664,0.320555333333333,0.642777999999997,0.32},
+ {0.634444666666667,0.32,0.63,0.320555333333333},
+ {0.63,0.320555333333333,0.626111333333332,0.321111333333333},
+ {0.626111333333332,0.321111333333333,0.622222666666663,0.322222},
+ {0.622222666666663,0.322222,0.618889333333333,0.323888666666667},
+ {0.618889333333333,0.323888666666667,0.615555999999998,0.326111333333333},
+ {0.615555999999998,0.326111333333333,0.612778000000001,0.328888666666667},
+ {0.612778000000001,0.328888666666667,0.610555999999998,0.332222},
+ {0.610555999999998,0.332222,0.608889333333333,0.336666666666667},
+ {0.608889333333333,0.336666666666667,0.607222666666667,0.342778},
+ {0.607222666666667,0.342778,0.606111333333331,0.351111333333333},
+ {0.606111333333331,0.351111333333333,0.605555999999998,0.360555333333333},
+ {0.605555999999998,0.360555333333333,0.605555999999998,0.371111333333333},
+ {0.605555999999998,0.371111333333333,0.606111333333331,0.383888666666667},
+ {0.606111333333331,0.383888666666667,0.606666666666664,0.397222},
+ {0.606666666666664,0.397222,0.607778000000001,0.411111333333333},
+ {0.607778000000001,0.411111333333333,0.608889333333333,0.426111333333333},
+ {0.608889333333333,0.426111333333333,0.609999999999999,0.440555333333334},
+ {0.609999999999999,0.440555333333334,0.611111333333331,0.454444666666667},
+ {0.611111333333331,0.454444666666667,0.611666666666665,0.467778},
+ {0.611666666666665,0.467778,0.612222666666668,0.480555333333333},
+ {0.612222666666668,0.480555333333333,0.612222666666668,0.491111333333333},
+ {0.612222666666668,0.491111333333333,0.611666666666665,0.500555333333333},
+ {0.611666666666665,0.500555333333333,0.610555999999998,0.508888666666667},
+ {0.610555999999998,0.508888666666667,0.608889333333333,0.515},
+ {0.608889333333333,0.515,0.607222666666667,0.519444666666667},
+ {0.607222666666667,0.519444666666667,0.604999999999999,0.522778},
+ {0.604999999999999,0.522778,0.602222666666667,0.525555333333333},
+ {0.602222666666667,0.525555333333333,0.598889333333332,0.527778},
+ {0.598889333333332,0.527778,0.595555999999997,0.529444666666667},
+ {0.595555999999997,0.529444666666667,0.591666666666664,0.530555333333333},
+ {0.591666666666664,0.530555333333333,0.587778,0.531111333333333},
+ {0.587778,0.531111333333333,0.583333333333333,0.531666666666667},
+ {0.574999999999998,0.531666666666667,0.570556000000001,0.531111333333333},
+ {0.570556000000001,0.531111333333333,0.566666666666668,0.530555333333333},
+ {0.566666666666668,0.530555333333333,0.562777999999999,0.529444666666667},
+ {0.562777999999999,0.529444666666667,0.559444666666664,0.527778},
+ {0.559444666666664,0.527778,0.556111333333334,0.525555333333333},
+ {0.556111333333334,0.525555333333333,0.553333333333332,0.522778},
+ {0.553333333333332,0.522778,0.551111333333334,0.519444666666667},
+ {0.551111333333334,0.519444666666667,0.549444666666664,0.515},
+ {0.549444666666664,0.515,0.547777999999999,0.508888666666667},
+ {0.547777999999999,0.508888666666667,0.546666666666667,0.500555333333333},
+ {0.546666666666667,0.500555333333333,0.546111333333333,0.491111333333333},
+ {0.546111333333333,0.491111333333333,0.546111333333333,0.480555333333333},
+ {0.546111333333333,0.480555333333333,0.546666666666667,0.467778},
+ {0.546666666666667,0.467778,0.547222666666665,0.454444666666667},
+ {0.547222666666665,0.454444666666667,0.548333333333332,0.440555333333334},
+ {0.548333333333332,0.440555333333334,0.549444666666664,0.426111333333333},
+ {0.549444666666664,0.426111333333333,0.550556,0.411111333333333},
+ {0.550556,0.411111333333333,0.551666666666667,0.397222},
+ {0.551666666666667,0.397222,0.552222666666665,0.383888666666667},
+ {0.552222666666665,0.383888666666667,0.552777999999999,0.371111333333333},
+ {0.552777999999999,0.371111333333333,0.552777999999999,0.360555333333333},
+ {0.552777999999999,0.360555333333333,0.552222666666665,0.351111333333333},
+ {0.552222666666665,0.351111333333333,0.551111333333334,0.342778},
+ {0.551111333333334,0.342778,0.549444666666664,0.336666666666667},
+ {0.549444666666664,0.336666666666667,0.547777999999999,0.332222},
+ {0.547777999999999,0.332222,0.545556,0.328888666666667},
+ {0.545556,0.328888666666667,0.542777999999998,0.326111333333333},
+ {0.542777999999998,0.326111333333333,0.539444666666663,0.323888666666667},
+ {0.539444666666663,0.323888666666667,0.536111333333333,0.322222},
+ {0.536111333333333,0.322222,0.532222666666665,0.321111333333333},
+ {0.532222666666665,0.321111333333333,0.528333333333331,0.320555333333333},
+ {0.528333333333331,0.320555333333333,0.523889333333334,0.32},
+ {0.515555999999999,0.32,0.511111333333332,0.320555333333333},
+ {0.511111333333332,0.320555333333333,0.507222666666664,0.321111333333333},
+ {0.507222666666664,0.321111333333333,0.50333333333333,0.322222},
+ {0.50333333333333,0.322222,0.5,0.323888666666667},
+ {0.5,0.323888666666667,0.496666666666665,0.326111333333333},
+ {0.496666666666665,0.326111333333333,0.493889333333333,0.328888666666667},
+ {0.493889333333333,0.328888666666667,0.491666666666665,0.332222},
+ {0.491666666666665,0.332222,0.49,0.336666666666667},
+ {0.49,0.336666666666667,0.488333333333334,0.342778},
+ {0.488333333333334,0.342778,0.487222666666668,0.350555333333334},
+ {0.487222666666668,0.350555333333334,0.486111333333331,0.36},
+ {0.486111333333331,0.36,0.485555999999998,0.37},
+ {0.485555999999998,0.37,0.484999999999999,0.381666666666667},
+ {0.484999999999999,0.381666666666667,0.484444666666666,0.393888666666667},
+ {0.484444666666666,0.393888666666667,0.484444666666666,0.406666666666667},
+ {0.484444666666666,0.406666666666667,0.484444666666666,0.42},
+ {0.484444666666666,0.42,0.484444666666666,0.433888666666667},
+ {0.484444666666666,0.433888666666667,0.484444666666666,0.447222},
+ {0.484444666666666,0.447222,0.484999999999999,0.46},
+ {0.484999999999999,0.46,0.485555999999998,0.472778},
+ {0.485555999999998,0.472778,0.486111333333331,0.484444666666667},
+ {0.486111333333331,0.484444666666667,0.487222666666668,0.495},
+ {0.487222666666668,0.495,0.488333333333334,0.505555333333334},
+ {0.488333333333334,0.505555333333334,0.49,0.515},
+ {0.49,0.515,0.492222666666663,0.525555333333333},
+ {0.492222666666663,0.525555333333333,0.495555999999998,0.535555333333334},
+ {0.495555999999998,0.535555333333334,0.498889333333333,0.545},
+ {0.498889333333333,0.545,0.502777999999997,0.554444666666667},
+ {0.502777999999997,0.554444666666667,0.507222666666664,0.563888666666667},
+ {0.507222666666664,0.563888666666667,0.512222666666664,0.573333333333334},
+ {0.512222666666664,0.573333333333334,0.516666666666666,0.582778},
+ {0.516666666666666,0.582778,0.521666666666666,0.591666666666667},
+ {0.521666666666666,0.591666666666667,0.526666666666666,0.600555333333334},
+ {0.526666666666666,0.600555333333334,0.531666666666666,0.608888666666667},
+ {0.531666666666666,0.608888666666667,0.536111333333333,0.616111333333333},
+ {0.536111333333333,0.616111333333333,0.540556,0.623333333333333},
+ {0.540556,0.623333333333333,0.544999999999997,0.628888666666667},
+ {0.544999999999997,0.628888666666667,0.549444666666664,0.633888666666667},
+ {0.728333333333334,0.633888666666667,0.734444666666666,0.642222},
+ {0.734444666666666,0.642222,0.742222666666663,0.647778},
+ {0.742222666666663,0.647778,0.751666666666665,0.651666666666667},
+ {0.751666666666665,0.651666666666667,0.762777999999997,0.653888666666666},
+ {0.762777999999997,0.653888666666666,0.775000000000001,0.655},
+ {0.775000000000001,0.655,0.788333333333332,0.654444666666667},
+ {0.788333333333332,0.654444666666667,0.802777999999999,0.652778},
+ {0.802777999999999,0.652778,0.817222666666666,0.650555333333333},
+ {0.817222666666666,0.650555333333333,0.831666666666663,0.648333333333333},
+ {0.831666666666663,0.648333333333333,0.846111333333331,0.645555333333334},
+ {0.846111333333331,0.645555333333334,0.859444666666666,0.643333333333333},
+ {0.859444666666666,0.643333333333333,0.871666666666665,0.641111333333334},
+ {0.871666666666665,0.641111333333334,0.882777999999997,0.638888666666666},
+ {0.882777999999997,0.638888666666666,0.892222666666664,0.637222},
+ {0.892222666666664,0.637222,0.900000000000001,0.635555333333333},
+ {0.900000000000001,0.635555333333333,0.906111333333333,0.633888666666667},
+ {0.906111333333333,0.633888666666667,0.911111333333333,0.631666666666667},
+ {0.911111333333333,0.631666666666667,0.914444666666663,0.628888666666667},
+ {0.914444666666663,0.628888666666667,0.917222666666665,0.626111333333334},
+ {0.917222666666665,0.626111333333334,0.91888933333333,0.622222},
+ {0.91888933333333,0.622222,0.919999999999997,0.618333333333334},
+ {0.919999999999997,0.618333333333334,0.920556,0.613888666666667},
+ {0.920556,0.613888666666667,0.920556,0.608888666666667},
+ {0.920556,0.608888666666667,0.919999999999997,0.604444666666667},
+ {0.919999999999997,0.604444666666667,0.919444666666664,0.599444666666667},
+ {0.919444666666664,0.599444666666667,0.918333333333332,0.594444666666667},
+ {0.918333333333332,0.594444666666667,0.917222666666665,0.59},
+ {0.917222666666665,0.59,0.915556,0.586111333333333},
+ {0.915556,0.586111333333333,0.91388933333333,0.582222},
+ {0.91388933333333,0.582222,0.912222666666665,0.579444666666667},
+ {0.912222666666665,0.579444666666667,0.909444666666663,0.576666666666667},
+ {0.909444666666663,0.576666666666667,0.906111333333333,0.574444666666666},
+ {0.906111333333333,0.574444666666666,0.901111333333333,0.572778},
+ {0.901111333333333,0.572778,0.895000000000001,0.571666666666667},
+ {0.895000000000001,0.571666666666667,0.887222666666664,0.571111333333333},
+ {0.87833333333333,0.571111333333333,0.86833333333333,0.572222},
+ {0.86833333333333,0.572222,0.857778000000001,0.573333333333334},
+ {0.857778000000001,0.573333333333334,0.846666666666664,0.574444666666666},
+ {0.846666666666664,0.574444666666666,0.835555999999997,0.575555333333333},
+ {0.835555999999997,0.575555333333333,0.824999999999998,0.576666666666667},
+ {0.824999999999998,0.576666666666667,0.814999999999998,0.577778},
+ {0.806111333333334,0.577778,0.798333333333332,0.577222},
+ {0.798333333333332,0.577222,0.792222666666665,0.576111333333333},
+ {0.792222666666665,0.576111333333333,0.787222666666665,0.574444666666666},
+ {0.787222666666665,0.574444666666666,0.783333333333331,0.571666666666667},
+ {0.783333333333331,0.571666666666667,0.780555999999999,0.567778},
+ {0.780555999999999,0.567778,0.778889333333334,0.562778},
+ {0.778889333333334,0.562778,0.778333333333331,0.557222},
+ {0.778333333333331,0.557222,0.778333333333331,0.551111333333333},
+ {0.778333333333331,0.551111333333333,0.778889333333334,0.544444666666667},
+ {0.778889333333334,0.544444666666667,0.780000000000001,0.538333333333333},
+ {0.780000000000001,0.538333333333333,0.780555999999999,0.532222},
+ {0.780555999999999,0.532222,0.782222666666665,0.526666666666667},
+ {0.782222666666665,0.526666666666667,0.783333333333331,0.521666666666667},
+ {0.783333333333331,0.521666666666667,0.784999999999997,0.517778},
+ {0.784999999999997,0.517778,0.787222666666665,0.515},
+ {0.787222666666665,0.515,0.791111333333333,0.512778},
+ {0.791111333333333,0.512778,0.796111333333333,0.511666666666667},
+ {0.796111333333333,0.511666666666667,0.802222666666665,0.512222},
+ {0.802222666666665,0.512222,0.809444666666664,0.513333333333333},
+ {0.809444666666664,0.513333333333333,0.817222666666666,0.515},
+ {0.817222666666666,0.515,0.824999999999998,0.516666666666667},
+ {0.824999999999998,0.516666666666667,0.832222666666667,0.517778},
+ {0.832222666666667,0.517778,0.838333333333333,0.518333333333333},
+ {0.838333333333333,0.518333333333333,0.843333333333334,0.517222},
+ {0.843333333333334,0.517222,0.847222666666667,0.515},
+ {0.847222666666667,0.515,0.849444666666666,0.511111333333333},
+ {0.849444666666666,0.511111333333333,0.851111333333331,0.506666666666667},
+ {0.851111333333331,0.506666666666667,0.852222666666667,0.5},
+ {0.852222666666667,0.5,0.852778000000001,0.492778},
+ {0.852778000000001,0.492778,0.852778000000001,0.485},
+ {0.852778000000001,0.485,0.852778000000001,0.477778},
+ {0.852778000000001,0.477778,0.852222666666667,0.470555333333333},
+ {0.852222666666667,0.470555333333333,0.851111333333331,0.463888666666667},
+ {0.851111333333331,0.463888666666667,0.849444666666666,0.459444666666667},
+ {0.849444666666666,0.459444666666667,0.847222666666667,0.455555333333334},
+ {0.847222666666667,0.455555333333334,0.843333333333334,0.453333333333333},
+ {0.843333333333334,0.453333333333333,0.838333333333333,0.452222},
+ {0.838333333333333,0.452222,0.832222666666667,0.452778},
+ {0.832222666666667,0.452778,0.824999999999998,0.453888666666667},
+ {0.824999999999998,0.453888666666667,0.817222666666666,0.455555333333334},
+ {0.817222666666666,0.455555333333334,0.809444666666664,0.457222},
+ {0.809444666666664,0.457222,0.802222666666665,0.458888666666667},
+ {0.796111333333333,0.458888666666667,0.791111333333333,0.457778},
+ {0.791111333333333,0.457778,0.787222666666665,0.455555333333334},
+ {0.787222666666665,0.455555333333334,0.784999999999997,0.452778},
+ {0.784999999999997,0.452778,0.783333333333331,0.448888666666667},
+ {0.783333333333331,0.448888666666667,0.782222666666665,0.443888666666667},
+ {0.782222666666665,0.443888666666667,0.780555999999999,0.438333333333333},
+ {0.780555999999999,0.438333333333333,0.780000000000001,0.432222},
+ {0.780000000000001,0.432222,0.778889333333334,0.425555333333334},
+ {0.778889333333334,0.425555333333334,0.778333333333331,0.418888666666666},
+ {0.778333333333331,0.418888666666666,0.778333333333331,0.412778},
+ {0.778333333333331,0.412778,0.778889333333334,0.407222},
+ {0.778889333333334,0.407222,0.780555999999999,0.402222},
+ {0.780555999999999,0.402222,0.783333333333331,0.398333333333333},
+ {0.783333333333331,0.398333333333333,0.787222666666665,0.395555333333334},
+ {0.787222666666665,0.395555333333334,0.792222666666665,0.393888666666667},
+ {0.792222666666665,0.393888666666667,0.798333333333332,0.392778},
+ {0.798333333333332,0.392778,0.806111333333334,0.392222},
+ {0.814999999999998,0.392222,0.824999999999998,0.393333333333333},
+ {0.824999999999998,0.393333333333333,0.835555999999997,0.394444666666667},
+ {0.835555999999997,0.394444666666667,0.846666666666664,0.395555333333334},
+ {0.846666666666664,0.395555333333334,0.857778000000001,0.396666666666667},
+ {0.857778000000001,0.396666666666667,0.86833333333333,0.397778},
+ {0.86833333333333,0.397778,0.87833333333333,0.398888666666667},
+ {0.887222666666664,0.398888666666667,0.895000000000001,0.398333333333333},
+ {0.895000000000001,0.398333333333333,0.901111333333333,0.397222},
+ {0.901111333333333,0.397222,0.906111333333333,0.395555333333334},
+ {0.906111333333333,0.395555333333334,0.909444666666663,0.393333333333333},
+ {0.909444666666663,0.393333333333333,0.912222666666665,0.391111333333334},
+ {0.912222666666665,0.391111333333334,0.91388933333333,0.387778},
+ {0.91388933333333,0.387778,0.915556,0.383888666666667},
+ {0.915556,0.383888666666667,0.917222666666665,0.38},
+ {0.917222666666665,0.38,0.918333333333332,0.375555333333333},
+ {0.918333333333332,0.375555333333333,0.919444666666664,0.371111333333333},
+ {0.919444666666664,0.371111333333333,0.919999999999997,0.366111333333333},
+ {0.919999999999997,0.366111333333333,0.920556,0.361111333333334},
+ {0.920556,0.361111333333334,0.920556,0.356666666666667},
+ {0.920556,0.356666666666667,0.919999999999997,0.352222},
+ {0.919999999999997,0.352222,0.91888933333333,0.348333333333333},
+ {0.91888933333333,0.348333333333333,0.917222666666665,0.344444666666667},
+ {0.917222666666665,0.344444666666667,0.914444666666663,0.341111333333333},
+ {0.914444666666663,0.341111333333333,0.911111333333333,0.338888666666667},
+ {0.911111333333333,0.338888666666667,0.906111333333333,0.336666666666667},
+ {0.906111333333333,0.336666666666667,0.900000000000001,0.335},
+ {0.900000000000001,0.335,0.892222666666664,0.333333333333333},
+ {0.892222666666664,0.333333333333333,0.882777999999997,0.331666666666666},
+ {0.882777999999997,0.331666666666666,0.871666666666665,0.33},
+ {0.871666666666665,0.33,0.859444666666666,0.327222},
+ {0.859444666666666,0.327222,0.846111333333331,0.325},
+ {0.846111333333331,0.325,0.831666666666663,0.322222},
+ {0.831666666666663,0.322222,0.817222666666666,0.32},
+ {0.817222666666666,0.32,0.802777999999999,0.317778},
+ {0.802777999999999,0.317778,0.788333333333332,0.316111333333333},
+ {0.788333333333332,0.316111333333333,0.775000000000001,0.315555333333334},
+ {0.775000000000001,0.315555333333334,0.762777999999997,0.316666666666666},
+ {0.762777999999997,0.316666666666666,0.751666666666665,0.318888666666667},
+ {0.751666666666665,0.318888666666667,0.742222666666663,0.322778},
+ {0.742222666666663,0.322778,0.734444666666666,0.328333333333333},
+ {0.734444666666666,0.328333333333333,0.728333333333334,0.336666666666667},
+ {0.728333333333334,0.336666666666667,0.724444666666666,0.343888666666667},
+ {0.724444666666666,0.343888666666667,0.721666666666664,0.352778},
+ {0.721666666666664,0.352778,0.718889333333332,0.362778},
+ {0.718889333333332,0.362778,0.717222666666667,0.374444666666667},
+ {0.717222666666667,0.374444666666667,0.715555999999997,0.387222},
+ {0.715555999999997,0.387222,0.714444666666665,0.401666666666667},
+ {0.714444666666665,0.401666666666667,0.713333333333333,0.417222},
+ {0.713333333333333,0.417222,0.712778,0.433333333333334},
+ {0.712778,0.433333333333334,0.712222666666667,0.45},
+ {0.712222666666667,0.45,0.711666666666664,0.467778},
+ {0.711666666666664,0.467778,0.711666666666664,0.485555333333333},
+ {0.711666666666664,0.485555333333333,0.711666666666664,0.502778},
+ {0.711666666666664,0.502778,0.712222666666667,0.520555333333334},
+ {0.712222666666667,0.520555333333334,0.712778,0.537222},
+ {0.712778,0.537222,0.713333333333333,0.553333333333333},
+ {0.713333333333333,0.553333333333333,0.714444666666665,0.568888666666667},
+ {0.714444666666665,0.568888666666667,0.715555999999997,0.583333333333333},
+ {0.715555999999997,0.583333333333333,0.717222666666667,0.596111333333334},
+ {0.717222666666667,0.596111333333334,0.718889333333332,0.607778},
+ {0.718889333333332,0.607778,0.721666666666664,0.617778},
+ {0.721666666666664,0.617778,0.724444666666666,0.626666666666667},
+ {0.724444666666666,0.626666666666667,0.728333333333334,0.633888666666667},
+ {0,0,0,0}
+};
+
+double Icon37[][4] = {
+ {0.140555333333334,0.338888666666667,0.133333333333335,0.336111333333333},
+ {0.147221999999999,0.342778,0.140555333333334,0.338888666666667},
+ {0.153333333333336,0.346666666666666,0.147221999999999,0.342778},
+ {0.159444000000003,0.351666666666667,0.153333333333336,0.346666666666666},
+ {0.165000000000002,0.356666666666667,0.159444000000003,0.351666666666667},
+ {0.170000000000002,0.362222,0.165000000000002,0.356666666666667},
+ {0.175555333333335,0.367778,0.170000000000002,0.362222},
+ {0.180000000000002,0.373333333333333,0.175555333333335,0.367778},
+ {0.185000000000002,0.378888666666667,0.180000000000002,0.373333333333333},
+ {0.188888666666666,0.384444666666666,0.185000000000002,0.378888666666667},
+ {0.192777333333334,0.39,0.188888666666666,0.384444666666666},
+ {0.195555333333336,0.395555333333334,0.192777333333334,0.39},
+ {0.198333333333333,0.402222,0.195555333333336,0.395555333333334},
+ {0.200000000000003,0.409444666666667,0.198333333333333,0.402222},
+ {0.200555333333336,0.417222,0.200000000000003,0.409444666666667},
+ {0.20111066666667,0.425555333333334,0.200555333333336,0.417222},
+ {0.201666666666668,0.433333333333334,0.20111066666667,0.425555333333334},
+ {0.20111066666667,0.441666666666666,0.201666666666668,0.433333333333334},
+ {0.200555333333336,0.449444666666666,0.20111066666667,0.441666666666666},
+ {0.200000000000003,0.456666666666666,0.200555333333336,0.449444666666666},
+ {0.198333333333333,0.463888666666667,0.200000000000003,0.456666666666666},
+ {0.195555333333336,0.47,0.198333333333333,0.463888666666667},
+ {0.191666666666668,0.475555333333334,0.195555333333336,0.47},
+ {0.186110666666669,0.480555333333333,0.191666666666668,0.475555333333334},
+ {0.17888866666667,0.483888666666667,0.186110666666669,0.480555333333333},
+ {0.170555333333335,0.487222,0.17888866666667,0.483888666666667},
+ {0.161666666666666,0.49,0.170555333333335,0.487222},
+ {0.152777333333333,0.492778,0.161666666666666,0.49},
+ {0.144444000000002,0.496666666666667,0.152777333333333,0.492778},
+ {0.138333333333335,0.501111333333334,0.144444000000002,0.496666666666667},
+ {0.134444000000002,0.507222,0.138333333333335,0.501111333333334},
+ {0.133333333333335,0.514444666666667,0.134444000000002,0.507222},
+ {0.133888666666669,0.520555333333334,0.133333333333335,0.514444666666667},
+ {0.136110666666667,0.527778,0.133888666666669,0.520555333333334},
+ {0.139444000000002,0.536111333333333,0.136110666666667,0.527778},
+ {0.144444000000002,0.545,0.139444000000002,0.536111333333333},
+ {0.150555333333334,0.555,0.144444000000002,0.545},
+ {0.157222,0.565555333333334,0.150555333333334,0.555},
+ {0.164444000000003,0.576111333333333,0.157222,0.565555333333334},
+ {0.171666666666667,0.586666666666667,0.164444000000003,0.576111333333333},
+ {0.178333333333337,0.597222,0.171666666666667,0.586666666666667},
+ {0.184443999999999,0.606666666666667,0.178333333333337,0.597222},
+ {0.189443999999999,0.615555333333334,0.184443999999999,0.606666666666667},
+ {0.192777333333334,0.622778,0.189443999999999,0.615555333333334},
+ {0.195000000000003,0.628888666666667,0.192777333333334,0.622778},
+ {0.195555333333336,0.633888666666667,0.195000000000003,0.628888666666667},
+ {0.195000000000003,0.637778,0.195555333333336,0.633888666666667},
+ {0.193333333333333,0.640555333333333,0.195000000000003,0.637778},
+ {0.190000000000002,0.642222,0.193333333333333,0.640555333333333},
+ {0.186110666666669,0.643333333333333,0.190000000000002,0.642222},
+ {0.181110666666669,0.644444666666667,0.186110666666669,0.643333333333333},
+ {0.176110666666669,0.645,0.181110666666669,0.644444666666667},
+ {0.158333333333336,0.644444666666667,0.164444000000003,0.645},
+ {0.152777333333333,0.643333333333333,0.158333333333336,0.644444666666667},
+ {0.147777333333333,0.642222,0.152777333333333,0.643333333333333},
+ {0.142777333333332,0.640555333333333,0.147777333333333,0.642222},
+ {0.137777333333337,0.637778,0.142777333333332,0.640555333333333},
+ {0.133333333333335,0.633888666666667,0.137777333333337,0.637778},
+ {0.128888666666668,0.628888666666667,0.133333333333335,0.633888666666667},
+ {0.124444000000002,0.622222,0.128888666666668,0.628888666666667},
+ {0.119444000000001,0.614444666666667,0.124444000000002,0.622222},
+ {0.114444000000001,0.604444666666667,0.119444000000001,0.614444666666667},
+ {0.109444000000001,0.593333333333333,0.114444000000001,0.604444666666667},
+ {0.104444000000001,0.581111333333334,0.109444000000001,0.593333333333333},
+ {0.0994440000000007,0.568333333333333,0.104444000000001,0.581111333333334},
+ {0.0944440000000005,0.556111333333333,0.0994440000000007,0.568333333333333},
+ {0.0894440000000003,0.544444666666667,0.0944440000000005,0.556111333333333},
+ {0.0850000000000032,0.534444666666667,0.0894440000000003,0.544444666666667},
+ {0.0805553333333364,0.525555333333333,0.0850000000000032,0.534444666666667},
+ {0.076666666666668,0.519444666666667,0.0805553333333364,0.525555333333333},
+ {0.0738886666666663,0.515555333333333,0.076666666666668,0.519444666666667},
+ {0.0711106666666694,0.514444666666667,0.0738886666666663,0.515555333333333},
+ {0.0694439999999995,0.515555333333333,0.0711106666666694,0.514444666666667},
+ {0.0677773333333344,0.519444666666667,0.0694439999999995,0.515555333333333},
+ {0.0677773333333344,0.525555333333333,0.0677773333333344,0.519444666666667},
+ {0.0677773333333344,0.534444666666667,0.0677773333333344,0.525555333333333},
+ {0.0683333333333328,0.544444666666667,0.0677773333333344,0.534444666666667},
+ {0.0700000000000026,0.556111333333333,0.0683333333333328,0.544444666666667},
+ {0.0711106666666694,0.568333333333333,0.0700000000000026,0.556111333333333},
+ {0.0722220000000012,0.581111333333334,0.0711106666666694,0.568333333333333},
+ {0.0733333333333329,0.593333333333333,0.0722220000000012,0.581111333333334},
+ {0.0744439999999997,0.604444666666667,0.0733333333333329,0.593333333333333},
+ {0.0744439999999997,0.614444666666667,0.0744439999999997,0.604444666666667},
+ {0.0738886666666663,0.622222,0.0744439999999997,0.614444666666667},
+ {0.0727773333333346,0.628888666666667,0.0738886666666663,0.622222},
+ {0.0711106666666694,0.633888666666667,0.0727773333333346,0.628888666666667},
+ {0.0694439999999995,0.636666666666667,0.0711106666666694,0.633888666666667},
+ {0.067222000000001,0.638888666666666,0.0694439999999995,0.636666666666667},
+ {0.0650000000000025,0.641111333333334,0.067222000000001,0.638888666666666},
+ {0.0622220000000008,0.642778,0.0650000000000025,0.641111333333334},
+ {0.0588886666666658,0.645,0.0622220000000008,0.642778},
+ {0.0555553333333355,0.646666666666667,0.0588886666666658,0.645},
+ {0.0522220000000004,0.648333333333333,0.0555553333333355,0.646666666666667},
+ {0.0483333333333367,0.65,0.0522220000000004,0.648333333333333},
+ {0.0444440000000033,0.651666666666667,0.0483333333333367,0.65},
+ {0.0400000000000015,0.653333333333334,0.0444440000000033,0.651666666666667},
+ {0.0361106666666681,0.654444666666667,0.0400000000000015,0.653333333333334},
+ {0.0322219999999997,0.655555333333333,0.0361106666666681,0.654444666666667},
+ {0.028333333333336,0.656111333333333,0.0322219999999997,0.655555333333333},
+ {0.0250000000000009,0.655555333333333,0.028333333333336,0.656111333333333},
+ {0.0216666666666659,0.655,0.0250000000000009,0.655555333333333},
+ {0.0183333333333356,0.652778,0.0216666666666659,0.655},
+ {0.015555333333334,0.65,0.0183333333333356,0.652778},
+ {0.0133333333333354,0.646111333333333,0.015555333333334,0.65},
+ {0.0111106666666672,0.640555333333333,0.0133333333333354,0.646111333333333},
+ {0.00944400000000201,0.633888666666667,0.0111106666666672,0.640555333333333},
+ {0.00833333333333523,0.626666666666667,0.00944400000000201,0.633888666666667},
+ {0.00722200000000347,0.617778,0.00833333333333523,0.626666666666667},
+ {0.00611066666666697,0.607778,0.00722200000000347,0.617778},
+ {0.00500000000000019,0.596111333333334,0.00611066666666697,0.607778},
+ {0.00444400000000182,0.582778,0.00500000000000019,0.596111333333334},
+ {0.00388866666666843,0.568888666666667,0.00444400000000182,0.582778},
+ {0.00333333333333504,0.553333333333333,0.00388866666666843,0.568888666666667},
+ {0.00222200000000328,0.537222,0.00333333333333504,0.553333333333333},
+ {0.00166666666666989,0.52,0.00222200000000328,0.537222},
+ {0.00111066666666678,0.502778,0.00166666666666989,0.52},
+ {0.000555333333333389,0.485,0.00111066666666678,0.502778},
+ {0.000555333333333389,0.467222,0.000555333333333389,0.485},
+ {0,0.45,0.000555333333333389,0.467222},
+ {0,0.432778,0,0.45},
+ {0,0.416666666666667,0,0.432778},
+ {0.000555333333333389,0.401111333333333,0,0.416666666666667},
+ {0.00111066666666678,0.387222,0.000555333333333389,0.401111333333333},
+ {0.00166666666666989,0.373888666666667,0.00111066666666678,0.387222},
+ {0.00333333333333504,0.362222,0.00166666666666989,0.373888666666667},
+ {0.00500000000000019,0.352222,0.00333333333333504,0.362222},
+ {0.00666666666667008,0.343333333333333,0.00500000000000019,0.352222},
+ {0.00944400000000201,0.336111333333333,0.00666666666667008,0.343333333333333},
+ {0.0138886666666688,0.327778,0.00944400000000201,0.336111333333333},
+ {0.0194440000000024,0.322222,0.0138886666666688,0.327778},
+ {0.0255553333333343,0.317778,0.0194440000000024,0.322222},
+ {0.0327773333333331,0.316111333333333,0.0255553333333343,0.317778},
+ {0.0411106666666683,0.315,0.0327773333333331,0.316111333333333},
+ {0.0500000000000019,0.315555333333334,0.0411106666666683,0.315},
+ {0.0588886666666658,0.317222,0.0500000000000019,0.315555333333334},
+ {0.0683333333333328,0.319444666666667,0.0588886666666658,0.317222},
+ {0.0777773333333348,0.321666666666667,0.0683333333333328,0.319444666666667},
+ {0.0872220000000018,0.324444666666666,0.0777773333333348,0.321666666666667},
+ {0.0966666666666687,0.326666666666667,0.0872220000000018,0.324444666666666},
+ {0.104999999999999,0.328888666666667,0.0966666666666687,0.326666666666667},
+ {0.113333333333334,0.331111333333334,0.104999999999999,0.328888666666667},
+ {0.120555333333333,0.332778,0.113333333333334,0.331111333333334},
+ {0.127222000000003,0.334444666666667,0.120555333333333,0.332778},
+ {0.133333333333335,0.336111333333333,0.127222000000003,0.334444666666667},
+ {0.136110666666667,0.451666666666667,0.133333333333335,0.455555333333334},
+ {0.137777333333337,0.446666666666667,0.136110666666667,0.451666666666667},
+ {0.138333333333335,0.440555333333334,0.137777333333337,0.446666666666667},
+ {0.138888666666669,0.433333333333334,0.138333333333335,0.440555333333334},
+ {0.139444000000002,0.425555333333334,0.138888666666669,0.433333333333334},
+ {0.138888666666669,0.417778,0.139444000000002,0.425555333333334},
+ {0.138333333333335,0.410555333333334,0.138888666666669,0.417778},
+ {0.137777333333337,0.404444666666667,0.138333333333335,0.410555333333334},
+ {0.136110666666667,0.399444666666666,0.137777333333337,0.404444666666667},
+ {0.133333333333335,0.395555333333334,0.136110666666667,0.399444666666666},
+ {0.129444000000002,0.393333333333333,0.133333333333335,0.395555333333334},
+ {0.124444000000002,0.391666666666667,0.129444000000002,0.393333333333333},
+ {0.117777333333336,0.390555333333333,0.124444000000002,0.391666666666667},
+ {0.110555333333333,0.39,0.117777333333336,0.390555333333333},
+ {0.0866666666666684,0.390555333333333,0.0938886666666671,0.39},
+ {0.080000000000003,0.391666666666667,0.0866666666666684,0.390555333333333},
+ {0.0750000000000028,0.393333333333333,0.080000000000003,0.391666666666667},
+ {0.0711106666666694,0.395555333333334,0.0750000000000028,0.393333333333333},
+ {0.0683333333333328,0.399444666666666,0.0711106666666694,0.395555333333334},
+ {0.0666666666666676,0.404444666666667,0.0683333333333328,0.399444666666666},
+ {0.0661106666666692,0.410555333333334,0.0666666666666676,0.404444666666667},
+ {0.0655553333333359,0.417778,0.0661106666666692,0.410555333333334},
+ {0.0655553333333359,0.425555333333334,0.0655553333333359,0.417778},
+ {0.0655553333333359,0.433333333333334,0.0655553333333359,0.425555333333334},
+ {0.0661106666666692,0.440555333333334,0.0655553333333359,0.433333333333334},
+ {0.0666666666666676,0.446666666666667,0.0661106666666692,0.440555333333334},
+ {0.0683333333333328,0.451666666666667,0.0666666666666676,0.446666666666667},
+ {0.0711106666666694,0.455555333333334,0.0683333333333328,0.451666666666667},
+ {0.0750000000000028,0.457778,0.0711106666666694,0.455555333333334},
+ {0.080000000000003,0.459444666666667,0.0750000000000028,0.457778},
+ {0.0866666666666684,0.460555333333333,0.080000000000003,0.459444666666667},
+ {0.0938886666666671,0.461111333333333,0.0866666666666684,0.460555333333333},
+ {0.117777333333336,0.460555333333333,0.110555333333333,0.461111333333333},
+ {0.124444000000002,0.459444666666667,0.117777333333336,0.460555333333333},
+ {0.129444000000002,0.457778,0.124444000000002,0.459444666666667},
+ {0.133333333333335,0.455555333333334,0.129444000000002,0.457778},
+ {0.257222000000003,0.633888666666667,0.262777333333337,0.641111333333334},
+ {0.262777333333337,0.641111333333334,0.270000000000001,0.646666666666667},
+ {0.270000000000001,0.646666666666667,0.278333333333336,0.651111333333333},
+ {0.278333333333336,0.651111333333333,0.288333333333336,0.653333333333334},
+ {0.288333333333336,0.653333333333334,0.29888866666667,0.654444666666667},
+ {0.29888866666667,0.654444666666667,0.311110666666669,0.655},
+ {0.311110666666669,0.655,0.323333333333333,0.653888666666666},
+ {0.323333333333333,0.653888666666666,0.336666666666668,0.652778},
+ {0.336666666666668,0.652778,0.350555333333332,0.650555333333333},
+ {0.350555333333332,0.650555333333333,0.363888666666668,0.648333333333333},
+ {0.363888666666668,0.648333333333333,0.377222000000003,0.646111333333333},
+ {0.377222000000003,0.646111333333333,0.389444000000002,0.643888666666667},
+ {0.389444000000002,0.643888666666667,0.401666666666666,0.641666666666667},
+ {0.401666666666666,0.641666666666667,0.412222,0.64},
+ {0.412222,0.64,0.422222,0.638333333333333},
+ {0.422222,0.638333333333333,0.430555333333335,0.636666666666667},
+ {0.430555333333335,0.636666666666667,0.437777333333334,0.635555333333333},
+ {0.437777333333334,0.635555333333333,0.443333333333333,0.633888666666667},
+ {0.443333333333333,0.633888666666667,0.448333333333333,0.631666666666667},
+ {0.448333333333333,0.631666666666667,0.452222000000001,0.628888666666667},
+ {0.452222000000001,0.628888666666667,0.455000000000003,0.626111333333334},
+ {0.455000000000003,0.626111333333334,0.456666666666668,0.622222},
+ {0.456666666666668,0.622222,0.457777333333335,0.618333333333334},
+ {0.457777333333335,0.618333333333334,0.458333333333333,0.613333333333333},
+ {0.458333333333333,0.613333333333333,0.458333333333333,0.608888666666667},
+ {0.458333333333333,0.608888666666667,0.457777333333335,0.603888666666667},
+ {0.457777333333335,0.603888666666667,0.457222000000002,0.598888666666667},
+ {0.457222000000002,0.598888666666667,0.45611066666667,0.594444666666667},
+ {0.45611066666667,0.594444666666667,0.455000000000003,0.589444666666667},
+ {0.455000000000003,0.589444666666667,0.453333333333333,0.585555333333333},
+ {0.453333333333333,0.585555333333333,0.451666666666668,0.581666666666666},
+ {0.451666666666668,0.581666666666666,0.449444,0.578888666666667},
+ {0.449444,0.578888666666667,0.446666666666668,0.576111333333333},
+ {0.446666666666668,0.576111333333333,0.443333333333333,0.573888666666667},
+ {0.443333333333333,0.573888666666667,0.438333333333333,0.572222},
+ {0.438333333333333,0.572222,0.431666666666667,0.571111333333333},
+ {0.431666666666667,0.571111333333333,0.42388866666667,0.570555333333333},
+ {0.414444000000003,0.570555333333333,0.403888666666669,0.571666666666667},
+ {0.403888666666669,0.571666666666667,0.392777333333332,0.572778},
+ {0.392777333333332,0.572778,0.381110666666667,0.573888666666667},
+ {0.381110666666667,0.573888666666667,0.37,0.575},
+ {0.37,0.575,0.358888666666668,0.576111333333333},
+ {0.358888666666668,0.576111333333333,0.348333333333334,0.577222},
+ {0.338888666666667,0.577222,0.33111066666667,0.576666666666667},
+ {0.33111066666667,0.576666666666667,0.324444,0.575555333333333},
+ {0.324444,0.575555333333333,0.319444,0.573888666666667},
+ {0.319444,0.573888666666667,0.315000000000002,0.571111333333333},
+ {0.315000000000002,0.571111333333333,0.312222000000001,0.567222},
+ {0.312222000000001,0.567222,0.310555333333336,0.562222},
+ {0.310555333333336,0.562222,0.310000000000002,0.556666666666667},
+ {0.310000000000002,0.556666666666667,0.310000000000002,0.550555333333334},
+ {0.310000000000002,0.550555333333334,0.310555333333336,0.543888666666666},
+ {0.310555333333336,0.543888666666666,0.311666666666667,0.537778},
+ {0.311666666666667,0.537778,0.312777333333334,0.531666666666667},
+ {0.312777333333334,0.531666666666667,0.313888666666666,0.526111333333333},
+ {0.313888666666666,0.526111333333333,0.315555333333336,0.521111333333333},
+ {0.315555333333336,0.521111333333333,0.317222000000001,0.517222},
+ {0.317222000000001,0.517222,0.319444,0.514444666666667},
+ {0.319444,0.514444666666667,0.323333333333333,0.512222},
+ {0.323333333333333,0.512222,0.328333333333333,0.511111333333333},
+ {0.328333333333333,0.511111333333333,0.335000000000003,0.511666666666667},
+ {0.335000000000003,0.511666666666667,0.342222000000002,0.512778},
+ {0.342222000000002,0.512778,0.350555333333332,0.514444666666667},
+ {0.350555333333332,0.514444666666667,0.358333333333334,0.516111333333334},
+ {0.358333333333334,0.516111333333334,0.365555333333333,0.517222},
+ {0.365555333333333,0.517222,0.372222000000003,0.517778},
+ {0.372222000000003,0.517778,0.377222000000003,0.516666666666667},
+ {0.377222000000003,0.516666666666667,0.381110666666667,0.514444666666667},
+ {0.381110666666667,0.514444666666667,0.383888666666669,0.511111333333333},
+ {0.383888666666669,0.511111333333333,0.385,0.506111333333333},
+ {0.385,0.506111333333333,0.386110666666667,0.5},
+ {0.386110666666667,0.5,0.38666666666667,0.492778},
+ {0.38666666666667,0.492778,0.38666666666667,0.485},
+ {0.38666666666667,0.485,0.38666666666667,0.477222},
+ {0.38666666666667,0.477222,0.386110666666667,0.47},
+ {0.386110666666667,0.47,0.385,0.463888666666667},
+ {0.385,0.463888666666667,0.383888666666669,0.458888666666667},
+ {0.383888666666669,0.458888666666667,0.381110666666667,0.455555333333334},
+ {0.381110666666667,0.455555333333334,0.377222000000003,0.453333333333333},
+ {0.377222000000003,0.453333333333333,0.372222000000003,0.452222},
+ {0.372222000000003,0.452222,0.365555333333333,0.452778},
+ {0.365555333333333,0.452778,0.358333333333334,0.453888666666667},
+ {0.358333333333334,0.453888666666667,0.349999999999999,0.455555333333334},
+ {0.349999999999999,0.455555333333334,0.342222000000002,0.457222},
+ {0.342222000000002,0.457222,0.335000000000003,0.458888666666667},
+ {0.328333333333333,0.458888666666667,0.323333333333333,0.457778},
+ {0.323333333333333,0.457778,0.319444,0.455555333333334},
+ {0.319444,0.455555333333334,0.317222000000001,0.452778},
+ {0.317222000000001,0.452778,0.315555333333336,0.448888666666667},
+ {0.315555333333336,0.448888666666667,0.313888666666666,0.443888666666667},
+ {0.313888666666666,0.443888666666667,0.312777333333334,0.438333333333333},
+ {0.312777333333334,0.438333333333333,0.311666666666667,0.432222},
+ {0.311666666666667,0.432222,0.310555333333336,0.425555333333334},
+ {0.310555333333336,0.425555333333334,0.310000000000002,0.418888666666666},
+ {0.310000000000002,0.418888666666666,0.310000000000002,0.412778},
+ {0.310000000000002,0.412778,0.310555333333336,0.407222},
+ {0.310555333333336,0.407222,0.312222000000001,0.402222},
+ {0.312222000000001,0.402222,0.315000000000002,0.398333333333333},
+ {0.315000000000002,0.398333333333333,0.319444,0.395555333333334},
+ {0.319444,0.395555333333334,0.324444,0.393888666666667},
+ {0.324444,0.393888666666667,0.33111066666667,0.392778},
+ {0.33111066666667,0.392778,0.338888666666667,0.392222},
+ {0.348333333333334,0.392222,0.358888666666668,0.393333333333333},
+ {0.358888666666668,0.393333333333333,0.37,0.394444666666667},
+ {0.37,0.394444666666667,0.38166666666667,0.395555333333334},
+ {0.38166666666667,0.395555333333334,0.392777333333332,0.396666666666667},
+ {0.392777333333332,0.396666666666667,0.403888666666669,0.397778},
+ {0.403888666666669,0.397778,0.414444000000003,0.398888666666667},
+ {0.42388866666667,0.398888666666667,0.431666666666667,0.398333333333333},
+ {0.431666666666667,0.398333333333333,0.438333333333333,0.397222},
+ {0.438333333333333,0.397222,0.443333333333333,0.395555333333334},
+ {0.443333333333333,0.395555333333334,0.446666666666668,0.393333333333333},
+ {0.446666666666668,0.393333333333333,0.449444,0.390555333333333},
+ {0.449444,0.390555333333333,0.451666666666668,0.387778},
+ {0.451666666666668,0.387778,0.453333333333333,0.383888666666667},
+ {0.453333333333333,0.383888666666667,0.455000000000003,0.38},
+ {0.455000000000003,0.38,0.45611066666667,0.375555333333333},
+ {0.45611066666667,0.375555333333333,0.457222000000002,0.370555333333333},
+ {0.457222000000002,0.370555333333333,0.457777333333335,0.366111333333333},
+ {0.457777333333335,0.366111333333333,0.458333333333333,0.361111333333334},
+ {0.458333333333333,0.361111333333334,0.458333333333333,0.356111333333333},
+ {0.458333333333333,0.356111333333333,0.457777333333335,0.351666666666667},
+ {0.457777333333335,0.351666666666667,0.456666666666668,0.347778},
+ {0.456666666666668,0.347778,0.455000000000003,0.343888666666667},
+ {0.455000000000003,0.343888666666667,0.452222000000001,0.341111333333333},
+ {0.452222000000001,0.341111333333333,0.448333333333333,0.338333333333334},
+ {0.448333333333333,0.338333333333334,0.443333333333333,0.336111333333333},
+ {0.443333333333333,0.336111333333333,0.437777333333334,0.334444666666667},
+ {0.437777333333334,0.334444666666667,0.430555333333335,0.333333333333333},
+ {0.430555333333335,0.333333333333333,0.422222,0.331666666666666},
+ {0.422222,0.331666666666666,0.412222,0.33},
+ {0.412222,0.33,0.401666666666666,0.328333333333333},
+ {0.401666666666666,0.328333333333333,0.389444000000002,0.326111333333333},
+ {0.389444000000002,0.326111333333333,0.377222000000003,0.323888666666667},
+ {0.377222000000003,0.323888666666667,0.363888666666668,0.321666666666667},
+ {0.363888666666668,0.321666666666667,0.349999999999999,0.319444666666667},
+ {0.349999999999999,0.319444666666667,0.336666666666668,0.317222},
+ {0.336666666666668,0.317222,0.323333333333333,0.316111333333333},
+ {0.323333333333333,0.316111333333333,0.311110666666669,0.315555333333334},
+ {0.29888866666667,0.315555333333334,0.288333333333336,0.316666666666666},
+ {0.288333333333336,0.316666666666666,0.278333333333336,0.318888666666667},
+ {0.278333333333336,0.318888666666667,0.270000000000001,0.323333333333334},
+ {0.270000000000001,0.323333333333334,0.262777333333337,0.328888666666667},
+ {0.262777333333337,0.328888666666667,0.257222000000003,0.336111333333333},
+ {0.257222000000003,0.336111333333333,0.253333333333335,0.343333333333333},
+ {0.253333333333335,0.343333333333333,0.25,0.352222},
+ {0.25,0.352222,0.247777333333336,0.362222},
+ {0.247777333333336,0.362222,0.245555333333333,0.373888666666667},
+ {0.245555333333333,0.373888666666667,0.243888666666668,0.387222},
+ {0.243888666666668,0.387222,0.242222000000003,0.401111333333333},
+ {0.242222000000003,0.401111333333333,0.241666666666669,0.416666666666667},
+ {0.241666666666669,0.416666666666667,0.240555333333333,0.432778},
+ {0.240555333333333,0.432778,0.24,0.45},
+ {0.24,0.45,0.24,0.467222},
+ {0.24,0.467222,0.24,0.485},
+ {0.24,0.485,0.24,0.502778},
+ {0.24,0.502778,0.24,0.52},
+ {0.24,0.52,0.240555333333333,0.537222},
+ {0.240555333333333,0.537222,0.241666666666669,0.553333333333333},
+ {0.241666666666669,0.553333333333333,0.242222000000003,0.568888666666667},
+ {0.242222000000003,0.568888666666667,0.243888666666668,0.582778},
+ {0.243888666666668,0.582778,0.245555333333333,0.596111333333334},
+ {0.245555333333333,0.596111333333334,0.247777333333336,0.607778},
+ {0.247777333333336,0.607778,0.25,0.617778},
+ {0.25,0.617778,0.253333333333335,0.626666666666667},
+ {0.253333333333335,0.626666666666667,0.257222000000003,0.633888666666667},
+ {0.505,0.514444666666667,0.51,0.52},
+ {0.51,0.52,0.516666666666666,0.523333333333333},
+ {0.516666666666666,0.523333333333333,0.524444000000003,0.525555333333333},
+ {0.53388866666667,0.525555333333333,0.544444000000003,0.524444666666666},
+ {0.544444000000003,0.524444666666666,0.555555333333335,0.522778},
+ {0.555555333333335,0.522778,0.567222000000001,0.52},
+ {0.567222000000001,0.52,0.578333333333333,0.517222},
+ {0.578333333333333,0.517222,0.589444,0.515},
+ {0.589444,0.515,0.599999999999999,0.512778},
+ {0.599999999999999,0.512778,0.609444000000001,0.511666666666667},
+ {0.617222000000003,0.511666666666667,0.623888666666668,0.512778},
+ {0.623888666666668,0.512778,0.628888666666668,0.514444666666667},
+ {0.628888666666668,0.514444666666667,0.632777333333337,0.516666666666667},
+ {0.632777333333337,0.516666666666667,0.635555333333334,0.52},
+ {0.635555333333334,0.52,0.637777333333337,0.523888666666667},
+ {0.637777333333337,0.523888666666667,0.638888666666669,0.528333333333334},
+ {0.638888666666669,0.528333333333334,0.640000000000001,0.533333333333333},
+ {0.640000000000001,0.533333333333333,0.640555333333334,0.538888666666667},
+ {0.640555333333334,0.538888666666667,0.640555333333334,0.544444666666667},
+ {0.640555333333334,0.544444666666667,0.640555333333334,0.549444666666667},
+ {0.640555333333334,0.549444666666667,0.640000000000001,0.555},
+ {0.640000000000001,0.555,0.638888666666669,0.56},
+ {0.638888666666669,0.56,0.637777333333337,0.564444666666667},
+ {0.637777333333337,0.564444666666667,0.635555333333334,0.568333333333333},
+ {0.635555333333334,0.568333333333333,0.632777333333337,0.571666666666667},
+ {0.632777333333337,0.571666666666667,0.628888666666668,0.573888666666667},
+ {0.628888666666668,0.573888666666667,0.623888666666668,0.575555333333333},
+ {0.623888666666668,0.575555333333333,0.617222000000003,0.576666666666667},
+ {0.617222000000003,0.576666666666667,0.609444000000001,0.577222},
+ {0.599999999999999,0.577222,0.589444,0.576111333333333},
+ {0.589444,0.576111333333333,0.578333333333333,0.575},
+ {0.578333333333333,0.575,0.566666666666668,0.573888666666667},
+ {0.566666666666668,0.573888666666667,0.555555333333335,0.572778},
+ {0.555555333333335,0.572778,0.544444000000003,0.571666666666667},
+ {0.544444000000003,0.571666666666667,0.53388866666667,0.570555333333333},
+ {0.524444000000003,0.570555333333333,0.516666666666666,0.571111333333333},
+ {0.516666666666666,0.571111333333333,0.51,0.572222},
+ {0.51,0.572222,0.505,0.573888666666667},
+ {0.505,0.573888666666667,0.50166666666667,0.576111333333333},
+ {0.50166666666667,0.576111333333333,0.498888666666668,0.578888666666667},
+ {0.498888666666668,0.578888666666667,0.49666666666667,0.581666666666666},
+ {0.49666666666667,0.581666666666666,0.495,0.585555333333333},
+ {0.495,0.585555333333333,0.493333333333335,0.589444666666667},
+ {0.493333333333335,0.589444666666667,0.492222000000003,0.594444666666667},
+ {0.492222000000003,0.594444666666667,0.491110666666666,0.598888666666667},
+ {0.491110666666666,0.598888666666667,0.490555333333333,0.603888666666667},
+ {0.490555333333333,0.603888666666667,0.49,0.608888666666667},
+ {0.49,0.608888666666667,0.49,0.613333333333333},
+ {0.49,0.613333333333333,0.490555333333333,0.618333333333334},
+ {0.490555333333333,0.618333333333334,0.491666666666669,0.622222},
+ {0.491666666666669,0.622222,0.493333333333335,0.626111333333334},
+ {0.493333333333335,0.626111333333334,0.496110666666667,0.628888666666667},
+ {0.496110666666667,0.628888666666667,0.5,0.631666666666667},
+ {0.5,0.631666666666667,0.505,0.633888666666667},
+ {0.505,0.633888666666667,0.510555333333334,0.635555333333333},
+ {0.510555333333334,0.635555333333333,0.517777333333332,0.636666666666667},
+ {0.517777333333332,0.636666666666667,0.526110666666668,0.637778},
+ {0.526110666666668,0.637778,0.536110666666668,0.638888666666666},
+ {0.536110666666668,0.638888666666666,0.546666666666667,0.64},
+ {0.546666666666667,0.64,0.558888666666666,0.641666666666667},
+ {0.558888666666666,0.641666666666667,0.571110666666669,0.642778},
+ {0.571110666666669,0.642778,0.584444,0.643888666666667},
+ {0.584444,0.643888666666667,0.598333333333334,0.645},
+ {0.598333333333334,0.645,0.611666666666669,0.646111333333333},
+ {0.611666666666669,0.646111333333333,0.625,0.646666666666667},
+ {0.649444000000003,0.646666666666667,0.660000000000001,0.645555333333334},
+ {0.660000000000001,0.645555333333334,0.670000000000002,0.643888666666667},
+ {0.670000000000002,0.643888666666667,0.678333333333337,0.641666666666667},
+ {0.678333333333337,0.641666666666667,0.685555333333336,0.638333333333333},
+ {0.685555333333336,0.638333333333333,0.691110666666669,0.633888666666667},
+ {0.691110666666669,0.633888666666667,0.696110666666669,0.627778},
+ {0.696110666666669,0.627778,0.700000000000003,0.619444666666666},
+ {0.700000000000003,0.619444666666666,0.702777333333335,0.61},
+ {0.702777333333335,0.61,0.704444,0.599444666666667},
+ {0.704444,0.599444666666667,0.705555333333336,0.586666666666667},
+ {0.705555333333336,0.586666666666667,0.70611066666667,0.573333333333334},
+ {0.70611066666667,0.573333333333334,0.70611066666667,0.559444666666667},
+ {0.70611066666667,0.559444666666667,0.705555333333336,0.545},
+ {0.705555333333336,0.545,0.705000000000003,0.53},
+ {0.705000000000003,0.53,0.703888666666666,0.516111333333334},
+ {0.703888666666666,0.516111333333334,0.702777333333335,0.502778},
+ {0.702777333333335,0.502778,0.70111066666667,0.49},
+ {0.70111066666667,0.49,0.699444,0.479444666666667},
+ {0.699444,0.479444666666667,0.697222000000001,0.47},
+ {0.697222000000001,0.47,0.694444,0.461666666666667},
+ {0.694444,0.461666666666667,0.691110666666669,0.455555333333334},
+ {0.691110666666669,0.455555333333334,0.686110666666669,0.45},
+ {0.686110666666669,0.45,0.679444000000004,0.446666666666667},
+ {0.679444000000004,0.446666666666667,0.671666666666667,0.444444666666667},
+ {0.662222,0.444444666666667,0.651666666666666,0.445555333333333},
+ {0.651666666666666,0.445555333333333,0.640555333333334,0.447222},
+ {0.640555333333334,0.447222,0.628888666666668,0.45},
+ {0.628888666666668,0.45,0.617777333333336,0.452778},
+ {0.617777333333336,0.452778,0.606666666666669,0.455},
+ {0.606666666666669,0.455,0.59611066666667,0.457222},
+ {0.59611066666667,0.457222,0.586666666666668,0.458333333333333},
+ {0.578888666666666,0.458333333333333,0.572222000000001,0.457222},
+ {0.572222000000001,0.457222,0.567222000000001,0.455555333333334},
+ {0.567222000000001,0.455555333333334,0.563333333333333,0.453333333333333},
+ {0.563333333333333,0.453333333333333,0.560555333333336,0.45},
+ {0.560555333333336,0.45,0.558333333333332,0.446111333333333},
+ {0.558333333333332,0.446111333333333,0.557222000000001,0.441666666666666},
+ {0.557222000000001,0.441666666666666,0.556110666666669,0.436666666666667},
+ {0.556110666666669,0.436666666666667,0.555555333333335,0.431111333333333},
+ {0.555555333333335,0.431111333333333,0.555555333333335,0.425555333333334},
+ {0.555555333333335,0.425555333333334,0.555555333333335,0.42},
+ {0.555555333333335,0.42,0.556110666666669,0.414444666666667},
+ {0.556110666666669,0.414444666666667,0.557222000000001,0.409444666666667},
+ {0.557222000000001,0.409444666666667,0.558333333333332,0.405},
+ {0.558333333333332,0.405,0.560555333333336,0.401111333333333},
+ {0.560555333333336,0.401111333333333,0.563333333333333,0.397778},
+ {0.563333333333333,0.397778,0.567222000000001,0.395555333333334},
+ {0.567222000000001,0.395555333333334,0.572222000000001,0.393888666666667},
+ {0.572222000000001,0.393888666666667,0.578888666666666,0.392778},
+ {0.578888666666666,0.392778,0.586666666666668,0.392222},
+ {0.59611066666667,0.392222,0.606666666666669,0.393333333333333},
+ {0.606666666666669,0.393333333333333,0.617777333333336,0.394444666666667},
+ {0.617777333333336,0.394444666666667,0.629444000000002,0.395555333333334},
+ {0.629444000000002,0.395555333333334,0.640555333333334,0.396666666666667},
+ {0.640555333333334,0.396666666666667,0.651666666666666,0.397778},
+ {0.651666666666666,0.397778,0.662222,0.398888666666667},
+ {0.671666666666667,0.398888666666667,0.679444000000004,0.398333333333333},
+ {0.679444000000004,0.398333333333333,0.686110666666669,0.397222},
+ {0.686110666666669,0.397222,0.691110666666669,0.395555333333334},
+ {0.691110666666669,0.395555333333334,0.694444,0.393333333333333},
+ {0.694444,0.393333333333333,0.697222000000001,0.390555333333333},
+ {0.697222000000001,0.390555333333333,0.699444,0.387778},
+ {0.699444,0.387778,0.70111066666667,0.383888666666667},
+ {0.70111066666667,0.383888666666667,0.702777333333335,0.38},
+ {0.702777333333335,0.38,0.703888666666666,0.375555333333333},
+ {0.703888666666666,0.375555333333333,0.705000000000003,0.370555333333333},
+ {0.705000000000003,0.370555333333333,0.705555333333336,0.366111333333333},
+ {0.705555333333336,0.366111333333333,0.70611066666667,0.361111333333334},
+ {0.70611066666667,0.361111333333334,0.70611066666667,0.356111333333333},
+ {0.70611066666667,0.356111333333333,0.705555333333336,0.351666666666667},
+ {0.705555333333336,0.351666666666667,0.704444,0.347778},
+ {0.704444,0.347778,0.702777333333335,0.343888666666667},
+ {0.702777333333335,0.343888666666667,0.700000000000003,0.341111333333333},
+ {0.700000000000003,0.341111333333333,0.696110666666669,0.338333333333334},
+ {0.696110666666669,0.338333333333334,0.691110666666669,0.336111333333333},
+ {0.691110666666669,0.336111333333333,0.685555333333336,0.334444666666667},
+ {0.685555333333336,0.334444666666667,0.678333333333337,0.333333333333333},
+ {0.678333333333337,0.333333333333333,0.670000000000002,0.332222},
+ {0.670000000000002,0.332222,0.660000000000001,0.331111333333334},
+ {0.660000000000001,0.331111333333334,0.649444000000003,0.33},
+ {0.649444000000003,0.33,0.637222000000004,0.328333333333333},
+ {0.637222000000004,0.328333333333333,0.625,0.327222},
+ {0.625,0.327222,0.611666666666669,0.326111333333333},
+ {0.611666666666669,0.326111333333333,0.597777333333335,0.325},
+ {0.597777333333335,0.325,0.584444,0.323888666666667},
+ {0.584444,0.323888666666667,0.571110666666669,0.323333333333334},
+ {0.546666666666667,0.323333333333334,0.536110666666668,0.324444666666666},
+ {0.536110666666668,0.324444666666666,0.526110666666668,0.326111333333333},
+ {0.526110666666668,0.326111333333333,0.517777333333332,0.328333333333333},
+ {0.517777333333332,0.328333333333333,0.510555333333334,0.331666666666666},
+ {0.510555333333334,0.331666666666666,0.505,0.336111333333333},
+ {0.505,0.336111333333333,0.5,0.342222},
+ {0.5,0.342222,0.496110666666667,0.350555333333334},
+ {0.496110666666667,0.350555333333334,0.493333333333335,0.36},
+ {0.493333333333335,0.36,0.491666666666669,0.370555333333333},
+ {0.491666666666669,0.370555333333333,0.490555333333333,0.383333333333334},
+ {0.490555333333333,0.383333333333334,0.49,0.396666666666667},
+ {0.49,0.396666666666667,0.49,0.410555333333334},
+ {0.49,0.410555333333334,0.490555333333333,0.425555333333334},
+ {0.490555333333333,0.425555333333334,0.491110666666666,0.44},
+ {0.491110666666666,0.44,0.492222000000003,0.453888666666667},
+ {0.492222000000003,0.453888666666667,0.493333333333335,0.467222},
+ {0.493333333333335,0.467222,0.495,0.48},
+ {0.495,0.48,0.49666666666667,0.490555333333334},
+ {0.49666666666667,0.490555333333334,0.498888666666668,0.5},
+ {0.498888666666668,0.5,0.50166666666667,0.508333333333334},
+ {0.50166666666667,0.508333333333334,0.505,0.514444666666667},
+ {0.752777333333337,0.633888666666667,0.758333333333335,0.641111333333334},
+ {0.758333333333335,0.641111333333334,0.765555333333334,0.646666666666667},
+ {0.765555333333334,0.646666666666667,0.773888666666669,0.651111333333333},
+ {0.773888666666669,0.651111333333333,0.78388866666667,0.653333333333334},
+ {0.78388866666667,0.653333333333334,0.794444000000003,0.654444666666667},
+ {0.794444000000003,0.654444666666667,0.806666666666667,0.655},
+ {0.806666666666667,0.655,0.818888666666666,0.653888666666666},
+ {0.818888666666666,0.653888666666666,0.832222000000002,0.652778},
+ {0.832222000000002,0.652778,0.84611066666667,0.650555333333333},
+ {0.84611066666667,0.650555333333333,0.859444000000001,0.648333333333333},
+ {0.859444000000001,0.648333333333333,0.872777333333336,0.646111333333333},
+ {0.872777333333336,0.646111333333333,0.885,0.643888666666667},
+ {0.885,0.643888666666667,0.897221999999999,0.641666666666667},
+ {0.897221999999999,0.641666666666667,0.907777333333333,0.64},
+ {0.907777333333333,0.64,0.917777333333333,0.638333333333333},
+ {0.917777333333333,0.638333333333333,0.926110666666669,0.636666666666667},
+ {0.926110666666669,0.636666666666667,0.933333333333332,0.635555333333333},
+ {0.933333333333332,0.635555333333333,0.938888666666666,0.633888666666667},
+ {0.938888666666666,0.633888666666667,0.943888666666666,0.631666666666667},
+ {0.943888666666666,0.631666666666667,0.947777333333335,0.628888666666667},
+ {0.947777333333335,0.628888666666667,0.950555333333336,0.626111333333334},
+ {0.950555333333336,0.626111333333334,0.952222000000001,0.622222},
+ {0.952222000000001,0.622222,0.953333333333333,0.618333333333334},
+ {0.953333333333333,0.618333333333334,0.953888666666666,0.613333333333333},
+ {0.953888666666666,0.613333333333333,0.953888666666666,0.608888666666667},
+ {0.953888666666666,0.608888666666667,0.953333333333333,0.603888666666667},
+ {0.953333333333333,0.603888666666667,0.952777333333335,0.598888666666667},
+ {0.952777333333335,0.598888666666667,0.951666666666668,0.594444666666667},
+ {0.951666666666668,0.594444666666667,0.950555333333336,0.589444666666667},
+ {0.950555333333336,0.589444666666667,0.948888666666666,0.585555333333333},
+ {0.948888666666666,0.585555333333333,0.947222000000001,0.581666666666666},
+ {0.947222000000001,0.581666666666666,0.945000000000003,0.578888666666667},
+ {0.945000000000003,0.578888666666667,0.942222000000001,0.576111333333333},
+ {0.942222000000001,0.576111333333333,0.938888666666666,0.573888666666667},
+ {0.938888666666666,0.573888666666667,0.933888666666666,0.572222},
+ {0.933888666666666,0.572222,0.927222,0.571111333333333},
+ {0.927222,0.571111333333333,0.919444000000003,0.570555333333333},
+ {0.910000000000001,0.570555333333333,0.899444000000003,0.571666666666667},
+ {0.899444000000003,0.571666666666667,0.888333333333335,0.572778},
+ {0.888333333333335,0.572778,0.87666666666667,0.573888666666667},
+ {0.87666666666667,0.573888666666667,0.865555333333333,0.575},
+ {0.865555333333333,0.575,0.854444000000001,0.576111333333333},
+ {0.854444000000001,0.576111333333333,0.843888666666667,0.577222},
+ {0.834444,0.577222,0.826666666666668,0.576666666666667},
+ {0.826666666666668,0.576666666666667,0.820000000000003,0.575555333333333},
+ {0.820000000000003,0.575555333333333,0.815000000000002,0.573888666666667},
+ {0.815000000000002,0.573888666666667,0.810555333333336,0.571111333333333},
+ {0.810555333333336,0.571111333333333,0.807777333333334,0.567222},
+ {0.807777333333334,0.567222,0.806110666666669,0.562222},
+ {0.806110666666669,0.562222,0.805555333333335,0.556666666666667},
+ {0.805555333333335,0.556666666666667,0.805555333333335,0.550555333333334},
+ {0.805555333333335,0.550555333333334,0.806110666666669,0.543888666666666},
+ {0.806110666666669,0.543888666666666,0.807222000000001,0.537778},
+ {0.807222000000001,0.537778,0.808333333333332,0.531666666666667},
+ {0.808333333333332,0.531666666666667,0.809443999999999,0.526111333333333},
+ {0.809443999999999,0.526111333333333,0.811110666666669,0.521111333333333},
+ {0.811110666666669,0.521111333333333,0.812777333333334,0.517222},
+ {0.812777333333334,0.517222,0.815000000000002,0.514444666666667},
+ {0.815000000000002,0.514444666666667,0.818888666666666,0.512222},
+ {0.818888666666666,0.512222,0.823888666666666,0.511111333333333},
+ {0.823888666666666,0.511111333333333,0.830555333333336,0.511666666666667},
+ {0.830555333333336,0.511666666666667,0.837777333333335,0.512778},
+ {0.837777333333335,0.512778,0.84611066666667,0.514444666666667},
+ {0.84611066666667,0.514444666666667,0.853888666666667,0.516111333333334},
+ {0.853888666666667,0.516111333333334,0.861110666666666,0.517222},
+ {0.861110666666666,0.517222,0.867777333333336,0.517778},
+ {0.867777333333336,0.517778,0.872777333333336,0.516666666666667},
+ {0.872777333333336,0.516666666666667,0.87666666666667,0.514444666666667},
+ {0.87666666666667,0.514444666666667,0.879444000000002,0.511111333333333},
+ {0.879444000000002,0.511111333333333,0.880555333333334,0.506111333333333},
+ {0.880555333333334,0.506111333333333,0.88166666666667,0.5},
+ {0.88166666666667,0.5,0.882222000000003,0.492778},
+ {0.882222000000003,0.492778,0.882222000000003,0.485},
+ {0.882222000000003,0.485,0.882222000000003,0.477222},
+ {0.882222000000003,0.477222,0.88166666666667,0.47},
+ {0.88166666666667,0.47,0.880555333333334,0.463888666666667},
+ {0.880555333333334,0.463888666666667,0.879444000000002,0.458888666666667},
+ {0.879444000000002,0.458888666666667,0.87666666666667,0.455555333333334},
+ {0.87666666666667,0.455555333333334,0.872777333333336,0.453333333333333},
+ {0.872777333333336,0.453333333333333,0.867777333333336,0.452222},
+ {0.867777333333336,0.452222,0.861110666666666,0.452778},
+ {0.861110666666666,0.452778,0.853888666666667,0.453888666666667},
+ {0.853888666666667,0.453888666666667,0.845555333333337,0.455555333333334},
+ {0.845555333333337,0.455555333333334,0.837777333333335,0.457222},
+ {0.837777333333335,0.457222,0.830555333333336,0.458888666666667},
+ {0.823888666666666,0.458888666666667,0.818888666666666,0.457778},
+ {0.818888666666666,0.457778,0.815000000000002,0.455555333333334},
+ {0.815000000000002,0.455555333333334,0.812777333333334,0.452778},
+ {0.812777333333334,0.452778,0.811110666666669,0.448888666666667},
+ {0.811110666666669,0.448888666666667,0.809443999999999,0.443888666666667},
+ {0.809443999999999,0.443888666666667,0.808333333333332,0.438333333333333},
+ {0.808333333333332,0.438333333333333,0.807222000000001,0.432222},
+ {0.807222000000001,0.432222,0.806110666666669,0.425555333333334},
+ {0.806110666666669,0.425555333333334,0.805555333333335,0.418888666666666},
+ {0.805555333333335,0.418888666666666,0.805555333333335,0.412778},
+ {0.805555333333335,0.412778,0.806110666666669,0.407222},
+ {0.806110666666669,0.407222,0.807777333333334,0.402222},
+ {0.807777333333334,0.402222,0.810555333333336,0.398333333333333},
+ {0.810555333333336,0.398333333333333,0.815000000000002,0.395555333333334},
+ {0.815000000000002,0.395555333333334,0.820000000000003,0.393888666666667},
+ {0.820000000000003,0.393888666666667,0.826666666666668,0.392778},
+ {0.826666666666668,0.392778,0.834444,0.392222},
+ {0.843888666666667,0.392222,0.854444000000001,0.393333333333333},
+ {0.854444000000001,0.393333333333333,0.865555333333333,0.394444666666667},
+ {0.865555333333333,0.394444666666667,0.877222000000003,0.395555333333334},
+ {0.877222000000003,0.395555333333334,0.888333333333335,0.396666666666667},
+ {0.888333333333335,0.396666666666667,0.899444000000003,0.397778},
+ {0.899444000000003,0.397778,0.910000000000001,0.398888666666667},
+ {0.919444000000003,0.398888666666667,0.927222,0.398333333333333},
+ {0.927222,0.398333333333333,0.933888666666666,0.397222},
+ {0.933888666666666,0.397222,0.938888666666666,0.395555333333334},
+ {0.938888666666666,0.395555333333334,0.942222000000001,0.393333333333333},
+ {0.942222000000001,0.393333333333333,0.945000000000003,0.390555333333333},
+ {0.945000000000003,0.390555333333333,0.947222000000001,0.387778},
+ {0.947222000000001,0.387778,0.948888666666666,0.383888666666667},
+ {0.948888666666666,0.383888666666667,0.950555333333336,0.38},
+ {0.950555333333336,0.38,0.951666666666668,0.375555333333333},
+ {0.951666666666668,0.375555333333333,0.952777333333335,0.370555333333333},
+ {0.952777333333335,0.370555333333333,0.953333333333333,0.366111333333333},
+ {0.953333333333333,0.366111333333333,0.953888666666666,0.361111333333334},
+ {0.953888666666666,0.361111333333334,0.953888666666666,0.356111333333333},
+ {0.953888666666666,0.356111333333333,0.953333333333333,0.351666666666667},
+ {0.953333333333333,0.351666666666667,0.952222000000001,0.347778},
+ {0.952222000000001,0.347778,0.950555333333336,0.343888666666667},
+ {0.950555333333336,0.343888666666667,0.947777333333335,0.341111333333333},
+ {0.947777333333335,0.341111333333333,0.943888666666666,0.338333333333334},
+ {0.943888666666666,0.338333333333334,0.938888666666666,0.336111333333333},
+ {0.938888666666666,0.336111333333333,0.933333333333332,0.334444666666667},
+ {0.933333333333332,0.334444666666667,0.926110666666669,0.333333333333333},
+ {0.926110666666669,0.333333333333333,0.917777333333333,0.331666666666666},
+ {0.917777333333333,0.331666666666666,0.907777333333333,0.33},
+ {0.907777333333333,0.33,0.897221999999999,0.328333333333333},
+ {0.897221999999999,0.328333333333333,0.885,0.326111333333333},
+ {0.885,0.326111333333333,0.872777333333336,0.323888666666667},
+ {0.872777333333336,0.323888666666667,0.859444000000001,0.321666666666667},
+ {0.859444000000001,0.321666666666667,0.845555333333337,0.319444666666667},
+ {0.845555333333337,0.319444666666667,0.832222000000002,0.317222},
+ {0.832222000000002,0.317222,0.818888666666666,0.316111333333333},
+ {0.818888666666666,0.316111333333333,0.806666666666667,0.315555333333334},
+ {0.794444000000003,0.315555333333334,0.78388866666667,0.316666666666666},
+ {0.78388866666667,0.316666666666666,0.773888666666669,0.318888666666667},
+ {0.773888666666669,0.318888666666667,0.765555333333334,0.323333333333334},
+ {0.765555333333334,0.323333333333334,0.758333333333335,0.328888666666667},
+ {0.758333333333335,0.328888666666667,0.752777333333337,0.336111333333333},
+ {0.752777333333337,0.336111333333333,0.748888666666668,0.343333333333333},
+ {0.748888666666668,0.343333333333333,0.745555333333333,0.352222},
+ {0.745555333333333,0.352222,0.743333333333335,0.362222},
+ {0.743333333333335,0.362222,0.741110666666666,0.373888666666667},
+ {0.741110666666666,0.373888666666667,0.739444000000001,0.387222},
+ {0.739444000000001,0.387222,0.737777333333336,0.401111333333333},
+ {0.737777333333336,0.401111333333333,0.737222000000003,0.416666666666667},
+ {0.737222000000003,0.416666666666667,0.736110666666666,0.432778},
+ {0.736110666666666,0.432778,0.735555333333333,0.45},
+ {0.735555333333333,0.45,0.735555333333333,0.467222},
+ {0.735555333333333,0.467222,0.735555333333333,0.485},
+ {0.735555333333333,0.485,0.735555333333333,0.502778},
+ {0.735555333333333,0.502778,0.735555333333333,0.52},
+ {0.735555333333333,0.52,0.736110666666666,0.537222},
+ {0.736110666666666,0.537222,0.737222000000003,0.553333333333333},
+ {0.737222000000003,0.553333333333333,0.737777333333336,0.568888666666667},
+ {0.737777333333336,0.568888666666667,0.739444000000001,0.582778},
+ {0.739444000000001,0.582778,0.741110666666666,0.596111333333334},
+ {0.741110666666666,0.596111333333334,0.743333333333335,0.607778},
+ {0.743333333333335,0.607778,0.745555333333333,0.617778},
+ {0.745555333333333,0.617778,0.748888666666668,0.626666666666667},
+ {0.748888666666668,0.626666666666667,0.752777333333337,0.633888666666667},
+ {1.18388866666667,0.397778,1.18666666666667,0.395555333333334},
+ {1.179444,0.398333333333333,1.18388866666667,0.397778},
+ {1.174444,0.397222,1.179444,0.398333333333333},
+ {1.16888866666667,0.394444666666667,1.174444,0.397222},
+ {1.16277733333333,0.391111333333334,1.16888866666667,0.394444666666667},
+ {1.15555533333333,0.387222,1.16277733333333,0.391111333333334},
+ {1.14888866666667,0.383333333333334,1.15555533333333,0.387222},
+ {1.14277733333333,0.381111333333333,1.14888866666667,0.383333333333334},
+ {1.137222,0.380555333333334,1.14277733333333,0.381111333333333},
+ {1.132222,0.382222,1.137222,0.380555333333334},
+ {1.12777733333334,0.387222,1.132222,0.382222},
+ {1.125,0.395555333333334,1.12777733333334,0.387222},
+ {1.12388866666667,0.402222,1.125,0.395555333333334},
+ {1.12277733333334,0.41,1.12388866666667,0.402222},
+ {1.12166666666667,0.419444666666667,1.12277733333334,0.41},
+ {1.12166666666667,0.43,1.12166666666667,0.419444666666667},
+ {1.12166666666667,0.441666666666666,1.12166666666667,0.43},
+ {1.12166666666667,0.455,1.12166666666667,0.441666666666666},
+ {1.122222,0.468888666666667,1.12166666666667,0.455},
+ {1.12333333333333,0.483888666666667,1.122222,0.468888666666667},
+ {1.12388866666667,0.498888666666667,1.12333333333333,0.483888666666667},
+ {1.125,0.515,1.12388866666667,0.498888666666667},
+ {1.12611066666667,0.530555333333333,1.125,0.515},
+ {1.12666666666667,0.545555333333333,1.12611066666667,0.530555333333333},
+ {1.12777733333334,0.560555333333333,1.12666666666667,0.545555333333333},
+ {1.12833333333333,0.574444666666666,1.12777733333334,0.560555333333333},
+ {1.12833333333333,0.587778,1.12833333333333,0.574444666666666},
+ {1.12833333333333,0.599444666666667,1.12833333333333,0.587778},
+ {1.12833333333333,0.61,1.12833333333333,0.599444666666667},
+ {1.127222,0.619444666666666,1.12833333333333,0.61},
+ {1.12666666666667,0.627222,1.127222,0.619444666666666},
+ {1.125,0.633888666666667,1.12666666666667,0.627222},
+ {1.12333333333333,0.638888666666666,1.125,0.633888666666667},
+ {1.12166666666667,0.642778,1.12333333333333,0.638888666666666},
+ {1.119444,0.646111333333333,1.12166666666667,0.642778},
+ {1.117222,0.648888666666667,1.119444,0.646111333333333},
+ {1.114444,0.651111333333333,1.117222,0.648888666666667},
+ {1.11166666666667,0.652778,1.114444,0.651111333333333},
+ {1.10833333333333,0.653888666666666,1.11166666666667,0.652778},
+ {1.105,0.655,1.10833333333333,0.653888666666666},
+ {1.10111066666667,0.655555333333333,1.105,0.655},
+ {1.09777733333334,0.656111333333333,1.10111066666667,0.655555333333333},
+ {1.08666666666667,0.655555333333333,1.09,0.656111333333333},
+ {1.08277733333333,0.655,1.08666666666667,0.655555333333333},
+ {1.079444,0.653888666666666,1.08277733333333,0.655},
+ {1.07611066666667,0.652778,1.079444,0.653888666666666},
+ {1.07333333333333,0.651111333333333,1.07611066666667,0.652778},
+ {1.07055533333334,0.648888666666667,1.07333333333333,0.651111333333333},
+ {1.06833333333333,0.646111333333333,1.07055533333334,0.648888666666667},
+ {1.06611066666667,0.642778,1.06833333333333,0.646111333333333},
+ {1.064444,0.638888666666666,1.06611066666667,0.642778},
+ {1.06277733333333,0.633888666666667,1.064444,0.638888666666666},
+ {1.06111066666667,0.627222,1.06277733333333,0.633888666666667},
+ {1.06055533333334,0.619444666666666,1.06111066666667,0.627222},
+ {1.059444,0.61,1.06055533333334,0.619444666666666},
+ {1.059444,0.599444666666667,1.059444,0.61},
+ {1.059444,0.587778,1.059444,0.599444666666667},
+ {1.059444,0.574444666666666,1.059444,0.587778},
+ {1.06,0.560555333333333,1.059444,0.574444666666666},
+ {1.06111066666667,0.545555333333333,1.06,0.560555333333333},
+ {1.06166666666667,0.530555333333333,1.06111066666667,0.545555333333333},
+ {1.06277733333333,0.514444666666667,1.06166666666667,0.530555333333333},
+ {1.06388866666667,0.498888666666667,1.06277733333333,0.514444666666667},
+ {1.064444,0.483888666666667,1.06388866666667,0.498888666666667},
+ {1.06555533333334,0.468888666666667,1.064444,0.483888666666667},
+ {1.06611066666667,0.455,1.06555533333334,0.468888666666667},
+ {1.06611066666667,0.441666666666666,1.06611066666667,0.455},
+ {1.06611066666667,0.43,1.06611066666667,0.441666666666666},
+ {1.06611066666667,0.419444666666667,1.06611066666667,0.43},
+ {1.065,0.41,1.06611066666667,0.419444666666667},
+ {1.064444,0.402222,1.065,0.41},
+ {1.06277733333333,0.395555333333334,1.064444,0.402222},
+ {1.06,0.387222,1.06277733333333,0.395555333333334},
+ {1.05555533333334,0.382222,1.06,0.387222},
+ {1.05055533333334,0.380555333333334,1.05555533333334,0.382222},
+ {1.045,0.381111333333333,1.05055533333334,0.380555333333334},
+ {1.03833333333334,0.383333333333334,1.045,0.381111333333333},
+ {1.03166666666667,0.387222,1.03833333333334,0.383333333333334},
+ {1.025,0.391111333333334,1.03166666666667,0.387222},
+ {1.01833333333334,0.394444666666667,1.025,0.391111333333334},
+ {1.01277733333334,0.397222,1.01833333333334,0.394444666666667},
+ {1.00777733333334,0.398333333333333,1.01277733333334,0.397222},
+ {1.00333333333333,0.397778,1.00777733333334,0.398333333333333},
+ {1.00055533333333,0.395555333333334,1.00333333333333,0.397778},
+ {0.998333333333335,0.393333333333333,1.00055533333333,0.395555333333334},
+ {0.99666666666667,0.39,0.998333333333335,0.393333333333333},
+ {0.995555333333333,0.386111333333333,0.99666666666667,0.39},
+ {0.993888666666668,0.381666666666667,0.995555333333333,0.386111333333333},
+ {0.992222000000003,0.376666666666667,0.993888666666668,0.381666666666667},
+ {0.990555333333333,0.371111333333333,0.992222000000003,0.376666666666667},
+ {0.988888666666668,0.365555333333334,0.990555333333333,0.371111333333333},
+ {0.987777333333336,0.360555333333333,0.988888666666668,0.365555333333334},
+ {0.987222000000003,0.355,0.987777333333336,0.360555333333333},
+ {0.987222000000003,0.35,0.987222000000003,0.355},
+ {0.988333333333334,0.345555333333333,0.987222000000003,0.35},
+ {0.991110666666666,0.341666666666667,0.988333333333334,0.345555333333333},
+ {0.995,0.338333333333334,0.991110666666666,0.341666666666667},
+ {1.00055533333333,0.336111333333333,0.995,0.338333333333334},
+ {1.00611066666667,0.334444666666667,1.00055533333333,0.336111333333333},
+ {1.01333333333334,0.333333333333333,1.00611066666667,0.334444666666667},
+ {1.02166666666667,0.332778,1.01333333333334,0.333333333333333},
+ {1.03166666666667,0.331666666666666,1.02166666666667,0.332778},
+ {1.042222,0.331111333333334,1.03166666666667,0.331666666666666},
+ {1.06666666666667,0.330555333333334,1.054444,0.331111333333334},
+ {1.13277733333334,0.331111333333334,1.12055533333333,0.330555333333334},
+ {1.15555533333333,0.331666666666666,1.145,0.331111333333334},
+ {1.16555533333333,0.332778,1.15555533333333,0.331666666666666},
+ {1.17388866666667,0.333333333333333,1.16555533333333,0.332778},
+ {1.18111066666667,0.334444666666667,1.17388866666667,0.333333333333333},
+ {1.18666666666667,0.336111333333333,1.18111066666667,0.334444666666667},
+ {1.192222,0.338333333333334,1.18666666666667,0.336111333333333},
+ {1.19611066666667,0.341666666666667,1.192222,0.338333333333334},
+ {1.19888866666667,0.345555333333333,1.19611066666667,0.341666666666667},
+ {1.2,0.35,1.19888866666667,0.345555333333333},
+ {1.2,0.355,1.2,0.35},
+ {1.199444,0.360555333333333,1.2,0.355},
+ {1.19833333333333,0.366111333333333,1.199444,0.360555333333333},
+ {1.19666666666667,0.371111333333333,1.19833333333333,0.366111333333333},
+ {1.195,0.376666666666667,1.19666666666667,0.371111333333333},
+ {1.19333333333333,0.381666666666667,1.195,0.376666666666667},
+ {1.19166666666667,0.386111333333333,1.19333333333333,0.381666666666667},
+ {1.19,0.39,1.19166666666667,0.386111333333333},
+ {1.18888866666667,0.393333333333333,1.19,0.39},
+ {1.18666666666667,0.395555333333334,1.18888866666667,0.393333333333333},
+ {0,0,0,0}
+};
+
+double Icon38[][4] = {
+ {0.166666666666667,0,0,1},
+ {0.166666666666667,1,0.333333333333333,0},
+ {0,0,0,0}
+};
+
+typedef double LineType[4];
+typedef LineType *IconType;
+IconType Icons[] = {
+ Icon0,
+ Icon1,
+ Icon2,
+ Icon3,
+ Icon4,
+ Icon5,
+ Icon6,
+ Icon7,
+ Icon8,
+ Icon9,
+ Icon10,
+ Icon11,
+ Icon12,
+ Icon13,
+ Icon14,
+ Icon15,
+ Icon16,
+ Icon17,
+ Icon18,
+ Icon19,
+ Icon20,
+ Icon21,
+ Icon22,
+ Icon23,
+ Icon24,
+ Icon25,
+ Icon26,
+ Icon27,
+ Icon28,
+ Icon29,
+ Icon30,
+ Icon31,
+ Icon32,
+ Icon33,
+ Icon34,
+ Icon35,
+ Icon36,
+ Icon37,
+ Icon38,
+};
+
+double IconWidths[] = {
+ 0.5,
+ 0.5,
+ 0.333333333333333,
+ 0.5,
+ 0.5,
+ 0.541666666666667,
+ 0.541666666666667,
+ 0.166666666666667,
+ 0.5,
+ 0.5,
+ 0.707221999999999,
+ 0.75,
+ 0.318888666666666,
+ 0.106111333333333,
+ 0.312222,
+ 0.315555333333333,
+ 0.291666666666667,
+ 0.312777333333333,
+ 0.316111333333333,
+ 0.296666666666667,
+ 0.273333333333333,
+ 0.31,
+ 0.166666666666667,
+ 0.166666666666667,
+ 0.375,
+ 0.333333333333333,
+ 0.939999999999998,
+ 1,
+ 0.356111333333333,
+ 1,
+ 0.666666666666667,
+ 0.5,
+ 0.5,
+ 0.583333333333333,
+ 0.583333333333333,
+ 0.583333333333333,
+ 0.920556,
+ 1.2,
+ 0.333333333333333,
+};
diff --git a/noatun-plugins/tippercanoe/main.cpp b/noatun-plugins/tippercanoe/main.cpp
new file mode 100644
index 0000000..28a60ec
--- /dev/null
+++ b/noatun-plugins/tippercanoe/main.cpp
@@ -0,0 +1,170 @@
+/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
+ Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au>
+ 2001 Charles Samuels <charles@kde.org>
+ Copyright (C) 2001 Neil Stevens <multivac@fcmail.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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <time.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/types.h>
+#include <pwd.h>
+#include <string.h>
+#include "syna.h"
+#include <math.h>
+#include <unistd.h>
+#include <fcntl.h>
+
+void Core::allocOutput(int w,int h)
+{
+#if 0
+ delete[] output;
+ delete[] lastOutput;
+ delete[] lastLastOutput;
+ output = new unsigned char[w*h*2];
+ lastOutput = new unsigned char[w*h*2];
+ lastLastOutput = new unsigned char[w*h*2];
+ memset(output,32,w*h*2);
+ memset(lastOutput,32,w*h*2);
+ outWidth = w;
+ outHeight = h;
+#endif
+
+ outputBmp.size(w,h);
+ lastOutputBmp.size(w,h);
+ lastLastOutputBmp.size(w,h);
+ polygonEngine.size(w,h);
+ outWidth = w;
+ outHeight = h;
+}
+
+void Core::toDefaults()
+{
+ fadeMode = Stars;
+ pointsAreDiamonds = true;
+
+ brightnessTwiddler = 0.33; //0.125;
+ starSize = 0.125;
+
+ fgRedSlider=0.0;
+ fgGreenSlider=0.5;
+ bgRedSlider=1.0;
+ bgGreenSlider=0.2;
+}
+
+Core::Core()
+{
+ core=this;
+ int i;
+
+ data=new sampleType[NumSamples*2+16];
+ windY=windX=1;
+ windWidth=320;
+ windHeight=240;
+ for(i=0;i<NumSamples;i++)
+ {
+ negSinTable[i] = -sin(3.141592*2.0/NumSamples*i);
+ cosTable[i] = cos(3.141592*2.0/NumSamples*i);
+ bitReverse[i] = bitReverser(i);
+ }
+
+ screen = new SdlScreen;
+ if (!screen->init(windX,windY,windWidth,windHeight,false))
+ {
+ delete screen;
+ screen = 0;
+ return;
+ }
+
+ allocOutput(outWidth,outHeight);
+
+ setStarSize(starSize);
+
+ interface=new Interface;
+}
+
+Core::~Core()
+{
+ delete interface;
+
+ screen->end();
+ delete screen;
+}
+
+bool Core::go()
+{
+ time_t timer = time(NULL);
+
+ printf("%u\n", static_cast<SdlScreen *>(screen)->winID());
+ fflush(stdout);
+
+ int frames = 0;
+ while (1)
+ {
+ fade();
+
+ if (!calculate())
+ break;
+
+ if (!interface->go()) break;
+
+ screen->show();
+ frames++;
+ }
+
+ timer = time(0) - timer;
+/* if (timer > 10)
+ printf("Frames per second: %f\n", double(frames) / timer);*/
+ return true;
+}
+
+bool start()
+{
+return true;
+}
+
+
+void error(const char *, bool)
+{
+
+/* fprintf(stderr, "synaescope: Error %s\n",str);
+ if (syscall)
+ fprintf(stderr,"(reason for error: %s)\n",strerror(errno));*/
+ exit(1);
+}
+void warning(const char *, bool)
+{
+/* fprintf(stderr, "synaescope: Possible error %s\n",str);
+ if (syscall)
+ fprintf(stderr,"(reason for error: %s)\n",strerror(errno));*/
+}
+
+#include <kinstance.h>
+int main()
+{
+ fcntl(STDIN_FILENO, F_SETFL, fcntl(STDIN_FILENO, F_GETFL) & ~O_NONBLOCK);
+ KInstance in("noatunsynaescope");
+ core=new Core;
+ core->go();
+ delete core;
+ exit(0);
+}
+
+
diff --git a/noatun-plugins/tippercanoe/polygon.h b/noatun-plugins/tippercanoe/polygon.h
new file mode 100644
index 0000000..f711c03
--- /dev/null
+++ b/noatun-plugins/tippercanoe/polygon.h
@@ -0,0 +1,98 @@
+#include <string.h>
+
+template<class Pixel>
+struct Bitmap {
+ int width, height, extra;
+ Pixel *data;
+
+ Bitmap(int e=0) : extra(e), data(0) { };
+ ~Bitmap() { delete[] data; };
+
+ void size(int w,int h) {
+ delete[] data;
+ width = w;
+ height = h;
+ data = new Pixel[w*h+extra];
+ clear();
+ }
+
+ void clear() {
+ memset(data,0,sizeof(Pixel)*(width*height+extra));
+ }
+};
+
+template<class Pixel, class Combiner, int superSampleShift>
+struct PolygonEngine : public Bitmap<Pixel> {
+ PolygonEngine() : Bitmap<Pixel>(1) { }
+
+#define super (1<<superSampleShift)
+ void apply(Pixel *dest) {
+ Pixel sum=0;
+ int count = this->width*this->height;
+ Pixel *src = this->data;
+ while(count--) {
+ sum += *(src++);
+ if (sum)
+ *dest = Combiner::combine(sum,*dest);
+ dest++;
+ }
+ }
+
+ void add(Pixel color,int x,int y) {
+ if (y < 0) return;
+ if (y >= this->height) return;
+ if (x < 0) x = 0;
+ if (x > this->width) x = this->width;
+ this->data[x+y*this->width] += color;
+ }
+
+ /* Color is char[layers] */
+
+ // zwoosh, yknow, it goes... zwoosh an all these bars and lines and
+ // crap intersect.
+ Pixel colorTable[2][super+1];
+ void pen(Pixel color) {
+ for(int i=0;i<super+1;i++) {
+ colorTable[0][i] = color*i;
+ colorTable[1][i] = -(color*i);
+ }
+ }
+
+ void line(int x1,int y1,int x2,int y2) {
+ Pixel *colors;
+ if (y2 < y1) {
+ int temp;
+ temp = x2; x2 = x1; x1 = temp;
+ temp = y2; y2 = y1; y1 = temp;
+ colors = colorTable[1];
+ } else {
+ if (y1 == y2) return;
+
+ colors= colorTable[0];
+ }
+
+ int slope = (x1-x2 << 16)/(y1-y2);
+ int x = x1<<16, y = y1;
+ while(y < y2) {
+ add(colors[super-((x>>16)&(super-1))],
+ x>>(16+superSampleShift),y>>superSampleShift);
+ add(colors[(x>>16)&(super-1)],
+ 1+(x>>(16+superSampleShift)),y>>superSampleShift);
+ x += slope;
+ y++;
+ }
+ }
+
+ void icon(double icon[][4],Pixel color,double x,double y,
+ double scaleX, double scaleY) {
+ pen(color);
+ x *= super;
+ y *= super;
+ scaleX *= super;
+ scaleY *= super;
+ for(int i=0;icon[i][1] != icon[i][3];i++)
+ line(int(icon[i][0]*scaleX+x),int(icon[i][1]*scaleY+y),
+ int(icon[i][2]*scaleX+x),int(icon[i][3]*scaleY+y));
+ }
+#undef super
+};
diff --git a/noatun-plugins/tippercanoe/sdlwrap.cpp b/noatun-plugins/tippercanoe/sdlwrap.cpp
new file mode 100644
index 0000000..7449aec
--- /dev/null
+++ b/noatun-plugins/tippercanoe/sdlwrap.cpp
@@ -0,0 +1,197 @@
+/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
+ Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au>
+ 2001 Charles Samuels <charles@kde.org>
+ Copyright (C) 2001 Neil Stevens <multivac@fcmail.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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <time.h>
+#include <string.h>
+#include "syna.h"
+#include <iostream>
+#include <SDL_syswm.h>
+#include "SDL.h"
+
+static SDL_Surface *surface;
+
+SDL_Surface *CreateScreen(Uint16 w, Uint16 h, Uint8 bpp, Uint32 flags)
+{
+ SDL_Surface *screen;
+
+ /* Set the video mode */
+ screen = SDL_SetVideoMode(w, h, bpp, flags);
+
+ return screen;
+}
+
+void SdlScreen::setPalette(unsigned char *palette)
+{
+ SDL_Color sdlPalette[256];
+
+ for(int i=0;i<256;i++) {
+ sdlPalette[i].r = palette[i*3+0];
+ sdlPalette[i].g = palette[i*3+1];
+ sdlPalette[i].b = palette[i*3+2];
+ }
+
+ SDL_SetColors(surface, sdlPalette, 0, 256);
+}
+
+bool SdlScreen::init(int,int,int width,int height,bool fullscreen)
+{
+ Uint32 videoflags;
+
+ /* Initialize SDL */
+ if ( SDL_Init(SDL_INIT_VIDEO) < 0 ) {
+ //char str[1000];
+ //printf(str, "Could not initialize SDL library: %s\n",SDL_GetError());
+ return false;
+ }
+
+ SDL_WM_SetCaption("Synaescope","synaescope");
+
+ /* See if we try to get a hardware colormap */
+ videoflags = SDL_SWSURFACE | (fullscreen?SDL_FULLSCREEN:0);
+
+ surface = CreateScreen(width, height, 8, videoflags);
+ if (!surface)
+ {
+ error("requesting screen dimensions");
+ }
+
+ core->outWidth = width;
+ core->outHeight = height;
+
+ SDL_EnableUNICODE(1);
+ SDL_ShowCursor(0);
+
+ return true;
+}
+
+void SdlScreen::end(void)
+{
+ SDL_Quit();
+}
+
+bool SdlScreen::inputUpdate(int &mouseX,int &mouseY,int &mouseButtons,char &keyHit)
+{
+ SDL_Event event;
+
+ keyHit = 0;
+
+ while ( SDL_PollEvent(&event) > 0 ) {
+ switch (event.type) {
+ case SDL_MOUSEBUTTONUP:
+ case SDL_MOUSEBUTTONDOWN:
+ if ( event.button.state == SDL_PRESSED )
+ mouseButtons |= 1 << event.button.button;
+ else
+ mouseButtons &= ~( 1 << event.button.button );
+ mouseX = event.button.x;
+ mouseY = event.button.y;
+ break;
+ case SDL_MOUSEMOTION :
+ mouseX = event.motion.x;
+ mouseY = event.motion.y;
+ break;
+ case SDL_KEYDOWN:
+ /* Ignore key releases */
+ if ( event.key.state == SDL_RELEASED ) {
+ break;
+ }
+
+ if(event.key.keysym.sym == SDLK_SPACE)
+ {
+ SDL_WM_ToggleFullScreen(surface);
+ mouseButtons = 0;
+ }
+
+ if (event.key.keysym.unicode > 255)
+ break;
+
+ keyHit = event.key.keysym.unicode;
+ return true;
+ case SDL_QUIT:
+ //keyHit = 'q';
+ //return false;
+ break;
+ default:
+ break;
+ }
+ }
+ return true;
+}
+
+int SdlScreen::sizeUpdate(void) { return 0; }
+
+void SdlScreen::show(void) {
+ SDL_LockSurface(surface);
+
+ register unsigned long *ptr2 = (unsigned long*)core->output();
+ unsigned long *ptr1 = (unsigned long*)( surface->pixels );
+ int i = core->outWidth*core->outHeight/4;
+
+ do {
+ // Asger Alstrup Nielsen's (alstrup@diku.dk)
+ // optimized 32 bit screen loop
+ register unsigned int const r1 = *(ptr2++);
+ register unsigned int const r2 = *(ptr2++);
+
+ //if (r1 || r2) {
+#ifdef LITTLEENDIAN
+ register unsigned int const v =
+ ((r1 & 0x000000f0ul) >> 4)
+ | ((r1 & 0x0000f000ul) >> 8)
+ | ((r1 & 0x00f00000ul) >> 12)
+ | ((r1 & 0xf0000000ul) >> 16);
+ *(ptr1++) = v |
+ ( ((r2 & 0x000000f0ul) << 12)
+ | ((r2 & 0x0000f000ul) << 8)
+ | ((r2 & 0x00f00000ul) << 4)
+ | ((r2 & 0xf0000000ul)));
+#else
+ register unsigned int const v =
+ ((r2 & 0x000000f0ul) >> 4)
+ | ((r2 & 0x0000f000ul) >> 8)
+ | ((r2 & 0x00f00000ul) >> 12)
+ | ((r2 & 0xf0000000ul) >> 16);
+ *(ptr1++) = v |
+ ( ((r1 & 0x000000f0ul) << 12)
+ | ((r1 & 0x0000f000ul) << 8)
+ | ((r1 & 0x00f00000ul) << 4)
+ | ((r1 & 0xf0000000ul)));
+#endif
+ //} else ptr1++;
+ } while (--i);
+
+ SDL_UnlockSurface(surface);
+ SDL_UpdateRect(surface, 0, 0, 0, 0);
+}
+
+int SdlScreen::winID(void)
+{
+ SDL_SysWMinfo info;
+ info.version.major = SDL_MAJOR_VERSION;
+ info.version.minor = SDL_MINOR_VERSION;
+ info.version.patch = SDL_PATCHLEVEL;
+ info.subsystem = SDL_SYSWM_X11;
+
+ info.info.x11.wmwindow = 0xdeadbeef;
+ SDL_GetWMInfo(&info);
+ return info.info.x11.wmwindow;
+}
diff --git a/noatun-plugins/tippercanoe/symbol.h b/noatun-plugins/tippercanoe/symbol.h
new file mode 100644
index 0000000..53137c0
--- /dev/null
+++ b/noatun-plugins/tippercanoe/symbol.h
@@ -0,0 +1,1021 @@
+#define SYMBOLSWIDTH 586
+#define SYMBOLSHEIGHT 50
+unsigned char Symbols[586*50] = {
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,241,72,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,13,30,37,31,24,5,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,132,254,237,72,0,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,46,0,0,0,0,0,0,0,0,0,0,0,0,0,10,87,
+ 176,225,244,246,244,238,206,135,39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,
+ 254,236,73,0,0,0,0,0,0,0,0,0,0,3,154,138,58,9,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,36,211,80,0,0,0,0,0,0,0,0,0,0,0,2,77,204,252,254,254,254,
+ 254,254,254,254,254,239,145,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,245,
+ 215,72,0,0,0,0,0,0,0,0,0,0,115,254,249,213,138,58,8,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,36,212,253,80,0,0,0,0,0,0,0,0,0,0,7,136,247,254,254,254,254,
+ 254,254,254,254,254,254,254,254,208,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,
+ 255,225,66,210,72,0,0,0,0,0,0,0,0,0,40,244,254,254,254,249,214,137,57,8,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,37,212,254,254,80,0,0,0,0,0,0,0,0,0,4,150,253,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,227,50,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,132,254,255,225,10,55,217,71,0,0,0,0,0,0,0,0,4,194,254,255,255,
+ 255,255,254,250,214,137,57,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,211,254,254,254,80,0,0,
+ 0,0,0,0,0,0,0,100,250,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,203,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,225,10,1,196,187,1,
+ 0,0,0,0,0,0,0,0,115,254,255,255,255,255,255,254,254,254,249,212,137,57,
+ 10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,36,211,254,254,254,254,80,0,0,0,0,0,0,0,0,29,230,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,255,255,254,130,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,41,244,255,255,
+ 255,255,255,255,255,255,254,254,254,249,212,137,58,8,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,212,254,254,254,
+ 254,254,80,0,0,0,0,0,0,0,0,134,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,255,255,255,232,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,
+ 225,10,1,196,190,1,0,0,0,0,0,0,0,0,4,196,254,255,255,255,255,255,255,255,
+ 255,255,255,255,254,254,249,212,137,57,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,212,254,254,254,254,254,254,80,0,0,
+ 0,0,0,0,0,16,225,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,255,255,255,254,112,0,0,0,0,0,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,
+ 0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0,0,0,0,0,111,155,155,111,0,0,0,16,148,155,
+ 155,58,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,132,254,
+ 255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,115,253,254,255,255,255,255,255,
+ 255,255,255,255,255,255,255,254,254,254,250,194,15,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,7,147,99,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,38,179,
+ 38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,211,254,254,254,254,254,
+ 254,254,80,0,0,0,0,0,0,0,62,251,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,255,255,255,254,182,1,0,0,0,0,0,0,18,171,19,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,1,162,44,0,0,0,0,0,37,159,11,0,0,0,0,0,0,0,0,0,0,1,182,254,
+ 254,182,1,0,0,27,243,254,254,96,0,0,0,0,0,0,0,0,0,0,0,23,136,1,0,0,0,0,
+ 0,68,92,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,
+ 40,244,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,
+ 232,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,151,253,245,99,1,0,0,
+ 6,50,106,155,166,174,166,162,115,52,11,0,0,0,38,213,254,213,39,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,210,254,254,254,254,254,254,254,254,80,
+ 0,0,0,0,0,0,0,108,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,255,255,255,254,223,9,0,0,0,0,0,0,18,239,185,19,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,1,197,219,45,0,0,0,0,38,246,166,11,0,0,0,0,0,0,0,0,0,1,182,254,254,
+ 182,1,0,0,27,243,254,254,96,0,0,0,0,0,0,0,0,0,0,23,192,196,1,0,0,0,0,68,
+ 233,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,
+ 4,196,254,255,255,255,255,255,255,255,255,255,255,255,255,255,254,232,65,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,180,252,255,254,244,95,10,97,
+ 197,248,254,254,255,255,255,254,254,248,210,118,20,36,212,254,255,254,213,
+ 39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,211,254,254,254,254,254,254,254,
+ 254,254,80,0,0,0,0,0,0,0,117,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,255,255,255,255,228,11,0,0,0,0,0,0,18,240,254,185,
+ 19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,
+ 1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,0,0,0,0,0,0,0,1,197,254,218,44,0,0,0,38,247,253,165,11,0,0,0,0,0,0,
+ 0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,0,0,0,0,0,0,0,0,23,192,
+ 254,196,1,0,0,0,67,234,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,
+ 1,0,0,0,0,0,0,0,0,0,0,116,254,255,255,255,255,255,255,255,255,255,255,255,
+ 255,254,233,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,186,254,255,
+ 254,254,225,74,34,220,254,254,255,255,255,255,255,255,255,254,254,248,95,
+ 44,205,254,254,255,254,213,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,211,254,
+ 254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,122,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,255,255,255,255,228,
+ 11,0,0,0,0,0,0,18,240,254,254,186,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 17,187,197,197,197,197,197,195,46,0,0,0,0,0,0,0,142,197,197,197,197,197,
+ 197,107,0,0,0,0,0,0,0,81,196,197,197,197,197,197,197,197,197,197,197,197,
+ 197,197,197,197,197,197,197,197,197,194,37,0,0,0,0,0,0,1,197,254,254,219,
+ 44,0,0,38,247,254,253,165,11,0,0,0,0,0,0,0,1,182,254,254,182,1,0,0,27,243,
+ 254,254,96,0,0,0,0,0,0,0,0,22,192,254,254,196,1,0,0,66,235,254,254,111,
+ 0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,39,246,
+ 254,255,255,255,255,255,255,255,255,255,255,254,234,64,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,17,187,254,255,254,254,204,34,0,0,47,222,254,254,
+ 255,255,255,255,255,255,254,248,113,2,0,18,175,254,254,255,254,214,36,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,36,211,254,254,254,254,254,254,254,254,254,254,
+ 254,80,0,0,0,0,0,0,0,114,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,255,255,255,254,227,11,0,0,0,0,0,0,18,240,255,254,254,
+ 185,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,
+ 0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,251,47,0,0,0,0,0,0,1,197,254,254,254,220,43,0,38,247,254,254,253,166,
+ 11,0,0,0,0,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,0,0,0,0,0,0,
+ 22,193,254,254,254,196,1,0,67,234,254,255,254,111,0,0,0,0,0,0,0,132,254,
+ 255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,3,196,254,255,255,255,255,255,
+ 255,255,255,255,255,236,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,
+ 211,254,255,254,204,30,0,0,0,0,47,221,254,255,255,255,255,255,254,243,112,
+ 2,0,0,0,14,175,253,255,254,231,54,0,0,0,0,0,0,1,5,5,5,5,5,5,5,5,5,5,5,5,
+ 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,5,5,1,
+ 0,0,0,0,0,0,0,0,0,0,0,5,5,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,210,254,255,
+ 254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,74,253,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,255,255,255,254,
+ 194,2,0,0,0,0,0,0,18,240,255,255,255,254,184,19,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,23,242,255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,
+ 254,254,138,0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,
+ 254,254,219,44,38,247,254,254,254,253,166,11,0,0,0,0,0,1,182,254,254,182,
+ 1,0,0,27,243,254,254,96,0,0,0,0,0,0,23,192,254,254,254,254,196,1,68,233,
+ 254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,
+ 0,0,0,0,0,0,0,0,116,254,255,255,255,255,255,255,255,255,255,255,231,53,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,210,254,225,33,0,0,0,0,0,
+ 0,48,221,254,254,255,255,254,237,78,1,0,0,0,0,0,15,198,254,231,61,0,0,0,
+ 0,0,0,0,73,213,214,214,214,214,214,214,214,213,214,214,214,214,214,214,
+ 214,214,214,214,214,214,214,214,213,214,214,214,214,214,214,214,214,214,
+ 156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,8,145,213,214,213,133,5,0,0,0,0,0,0,0,0,0,88,211,213,
+ 214,181,24,0,0,0,0,3,11,11,11,11,11,11,11,40,210,254,255,255,254,254,254,
+ 254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,26,235,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,255,255,255,254,131,0,0,0,0,
+ 0,0,0,18,240,255,255,255,254,254,184,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
+ 242,255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,
+ 138,0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,
+ 254,218,83,247,254,254,254,254,253,165,11,0,0,0,0,1,182,254,254,182,1,0,
+ 0,27,243,254,254,96,0,0,0,0,0,23,191,254,254,254,254,254,197,69,233,254,
+ 254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,
+ 0,0,0,0,0,0,0,0,40,245,255,255,255,255,255,255,255,255,255,255,254,226,
+ 52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,205,79,0,0,0,0,0,0,0,
+ 0,47,222,254,254,254,238,76,0,0,0,0,0,0,0,0,45,212,62,0,0,0,0,0,0,0,0,87,
+ 253,185,168,168,168,168,168,171,243,249,175,168,204,254,255,254,220,168,
+ 170,239,243,171,168,220,254,195,168,168,168,168,168,169,236,185,1,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,11,11,5,
+ 0,0,0,0,0,0,0,0,0,0,7,11,11,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,11,11,11,11,4,0,0,0,0,0,0,0,0,0,0,8,11,11,11,8,0,0,0,0,0,
+ 0,0,0,0,0,4,11,11,11,11,1,0,0,0,0,0,0,0,0,0,1,11,11,11,11,4,0,0,0,0,0,0,
+ 0,0,0,0,8,11,11,11,7,0,0,0,0,0,0,0,0,0,0,5,11,11,11,10,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,151,252,254,254,254,251,136,2,0,
+ 0,0,0,0,0,0,88,242,254,224,246,254,194,22,0,0,0,64,228,229,229,229,229,
+ 229,229,239,254,254,254,254,254,254,254,254,254,254,254,254,254,254,80,
+ 0,0,0,0,0,0,0,1,163,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,255,255,255,244,45,0,0,0,0,0,0,0,18,240,255,255,255,255,254,
+ 254,185,18,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,
+ 0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,237,253,254,254,254,
+ 254,254,253,165,11,0,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,0,
+ 0,0,22,191,254,254,254,254,254,254,233,235,254,254,254,255,255,254,111,
+ 0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,4,196,
+ 255,255,255,255,255,255,255,255,255,255,255,254,225,52,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,4,0,0,0,0,0,0,0,0,0,48,222,254,239,77,0,
+ 0,0,0,0,0,0,0,0,1,24,0,0,0,0,0,0,0,0,0,87,251,50,0,0,0,0,0,10,223,251,67,
+ 0,53,246,255,253,99,0,31,241,222,9,0,153,253,80,0,0,0,0,0,2,200,185,1,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,224,229,
+ 229,229,179,18,0,0,0,0,0,0,0,0,37,203,229,229,229,214,55,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,226,229,229,229,170,14,0,0,0,0,0,0,
+ 0,0,45,208,229,229,229,209,47,0,0,0,0,0,0,0,0,13,167,229,229,229,227,101,
+ 1,0,0,0,0,0,0,0,1,109,227,229,229,229,161,11,0,0,0,0,0,0,0,0,52,213,229,
+ 229,229,205,39,0,0,0,0,0,0,0,0,16,177,229,229,229,225,90,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,251,254,255,255,255,255,238,15,
+ 0,0,0,0,0,0,11,225,254,207,34,104,247,253,80,0,0,0,71,253,255,255,255,255,
+ 254,254,254,255,255,255,255,254,254,254,254,254,254,254,254,254,254,80,
+ 0,0,0,0,0,0,0,0,49,243,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,255,255,254,161,1,0,0,0,0,0,0,0,18,240,255,255,255,255,254,
+ 254,254,185,18,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,
+ 0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,253,165,11,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,
+ 0,0,22,192,254,254,254,254,254,254,254,254,254,254,254,254,255,255,254,
+ 111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,
+ 0,116,253,254,255,255,255,254,235,219,254,255,255,255,254,226,53,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,21,21,21,21,21,21,21,21,21,
+ 21,21,21,21,21,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,114,2,0,0,0,0,0,
+ 0,0,0,0,47,207,76,0,0,0,0,0,0,0,0,0,0,80,130,0,0,0,0,0,0,0,0,0,87,251,50,
+ 0,0,0,0,0,9,223,254,161,0,5,193,254,235,28,0,116,254,222,9,0,153,254,79,
+ 0,0,0,0,0,1,200,185,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,88,242,254,254,255,255,254,185,18,0,0,0,0,0,0,37,214,254,254,
+ 255,255,254,228,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,98,246,254,
+ 254,255,255,254,175,14,0,0,0,0,0,0,44,220,254,254,255,255,254,222,47,0,
+ 0,0,0,0,0,13,172,254,254,255,255,254,246,101,1,0,0,0,0,0,1,109,248,254,
+ 254,255,255,253,165,11,0,0,0,0,0,0,53,226,254,254,255,255,254,216,39,0,
+ 0,0,0,0,0,17,182,254,254,255,255,254,243,91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,69,253,254,255,255,255,255,239,16,0,0,0,0,0,0,12,
+ 230,212,32,0,1,113,253,81,0,0,0,71,253,254,255,255,255,254,255,255,255,
+ 255,254,255,254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,0,
+ 2,141,253,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 229,36,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,254,254,184,19,0,
+ 0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,
+ 254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,251,47,0,0,0,0,
+ 0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,253,
+ 165,11,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,0,22,192,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,255,255,254,111,0,0,0,0,0,0,0,132,
+ 254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,41,244,254,255,255,254,
+ 233,66,37,212,254,255,255,255,254,226,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,108,240,241,241,241,241,241,241,241,241,241,241,241,241,
+ 241,224,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,199,249,115,2,0,0,0,0,0,0,0,
+ 29,99,119,113,55,4,0,0,0,0,0,0,0,80,240,230,22,0,0,0,0,0,0,0,0,87,251,50,
+ 0,0,0,0,0,9,223,255,228,18,0,97,253,165,1,4,196,254,222,9,0,153,254,79,
+ 0,0,0,0,0,1,200,185,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,53,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,6,176,254,255,255,255,255,254,242,110,18,0,0,0,0,0,106,250,255,
+ 255,255,255,254,252,154,44,0,0,0,0,10,51,0,0,0,0,0,0,0,3,56,2,0,0,0,1,64,
+ 193,254,255,255,255,255,254,237,57,0,0,0,0,0,39,143,251,255,255,255,255,
+ 254,251,123,0,0,0,0,0,0,54,236,254,255,255,255,254,254,196,66,1,0,0,0,2,
+ 69,202,254,255,255,255,255,254,234,98,11,0,0,0,0,43,151,252,255,255,255,
+ 255,254,251,137,35,0,0,0,0,17,108,241,254,255,255,255,254,254,187,61,1,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,253,255,255,255,255,255,
+ 239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,253,254,255,255,
+ 255,254,255,255,254,255,254,255,254,254,254,254,254,254,254,254,254,254,
+ 80,0,0,0,0,0,0,0,0,0,13,192,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,244,84,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,
+ 255,254,254,184,19,0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,
+ 0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,253,165,11,1,182,254,254,182,1,0,0,27,243,254,254,96,
+ 0,23,191,254,254,254,254,254,254,254,254,254,254,254,254,254,254,255,255,
+ 254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,
+ 0,0,0,4,196,254,255,254,233,66,0,0,37,211,254,255,255,255,254,225,34,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,219,255,255,255,255,255,255,
+ 255,255,255,255,255,255,255,255,254,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,
+ 248,254,248,115,2,0,0,0,0,3,112,186,152,158,153,173,163,23,0,0,0,0,0,80,
+ 240,254,253,85,0,0,0,0,0,0,0,0,87,251,50,0,5,36,37,37,45,228,255,252,79,
+ 0,20,226,73,0,40,244,254,222,9,0,153,253,105,37,15,0,1,32,38,208,185,1,
+ 0,0,0,0,0,0,0,0,0,0,0,0,8,150,240,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,186,
+ 253,253,253,253,242,144,228,183,19,0,0,0,0,3,126,249,253,253,253,251,170,
+ 192,227,55,0,0,10,161,237,76,0,0,0,0,0,3,123,243,112,2,0,1,98,241,163,201,
+ 253,253,253,253,238,78,0,0,0,0,0,45,219,201,162,250,253,253,253,250,140,
+ 6,0,0,0,0,0,0,0,75,237,253,253,253,253,203,161,242,102,1,0,2,109,243,157,
+ 207,253,253,253,253,234,143,236,164,11,0,0,52,225,194,169,251,253,253,253,
+ 250,158,206,214,40,0,0,17,181,229,143,241,253,253,253,253,196,167,240,91,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,253,255,255,255,255,255,
+ 239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,253,254,255,255,
+ 255,254,254,255,254,255,254,254,254,254,254,254,254,254,254,254,254,254,
+ 80,0,0,0,0,0,0,0,0,0,0,24,188,253,254,254,254,254,254,254,254,254,254,254,
+ 254,254,237,97,1,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,255,254,
+ 254,254,184,18,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,0,0,
+ 0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,253,164,12,182,254,254,182,1,0,0,27,243,254,254,96,
+ 22,191,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,255,
+ 255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,116,254,254,233,66,0,0,0,0,37,212,254,255,254,253,161,9,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,253,255,255,255,255,255,255,255,
+ 255,255,255,255,255,255,255,255,234,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,
+ 254,254,254,248,115,2,0,0,0,113,161,193,249,253,252,224,149,171,14,0,0,
+ 0,80,239,254,255,254,154,0,0,0,0,0,0,0,0,87,251,50,0,38,240,247,247,247,
+ 253,255,254,165,1,0,115,12,0,121,254,255,222,9,0,153,254,249,247,102,0,
+ 8,214,247,253,185,1,0,0,0,0,0,0,0,0,0,0,0,2,145,252,254,241,58,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,17,67,68,68,68,93,228,254,254,171,2,0,0,0,0,3,59,68,
+ 68,68,73,190,254,254,226,27,3,156,253,254,237,48,0,0,0,0,115,250,254,247,
+ 86,0,87,245,254,251,135,67,68,68,68,46,0,0,0,0,0,34,219,254,254,192,67,
+ 68,68,68,62,6,0,0,0,0,0,0,0,0,0,45,68,68,68,68,149,251,254,245,74,0,99,
+ 247,254,250,126,67,68,68,68,105,237,254,253,146,0,41,225,254,254,182,66,
+ 68,68,68,78,205,254,254,211,15,7,179,254,254,229,78,68,68,68,68,158,252,
+ 254,243,63,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,69,253,254,254,254,
+ 254,254,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,253,254,
+ 255,255,255,254,255,255,255,255,255,255,254,254,254,254,254,254,254,254,
+ 254,254,80,0,0,0,0,0,0,0,0,0,0,0,11,133,239,254,254,254,254,254,254,254,
+ 254,254,252,200,55,0,0,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,
+ 255,255,255,254,254,185,17,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,
+ 60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,253,165,193,254,254,182,1,0,0,27,243,254,
+ 254,118,191,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,41,244,234,65,0,0,0,0,0,0,36,213,254,253,161,10,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,219,255,255,255,255,255,255,255,
+ 255,255,255,255,255,255,255,255,255,254,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 159,254,255,255,254,248,115,2,0,31,186,194,254,255,255,254,254,238,162,
+ 105,0,0,80,239,254,255,255,255,201,3,0,0,0,0,0,0,0,87,251,50,0,16,102,116,
+ 246,254,255,255,255,236,26,0,10,0,7,208,254,255,222,9,0,153,255,255,254,
+ 106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,5,213,254,255,254,88,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,254,255,255,211,4,0,0,0,0,0,0,0,
+ 0,0,23,241,254,255,250,46,9,223,254,255,253,75,0,0,0,1,184,254,255,254,
+ 122,0,152,254,255,255,154,0,0,0,0,0,0,0,0,0,0,73,253,254,255,224,10,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,197,254,255,254,108,0,166,254,255,254,
+ 140,0,0,0,0,118,254,255,255,187,1,87,254,255,255,214,6,0,0,0,43,249,254,
+ 255,243,26,20,240,254,255,252,49,0,0,0,3,208,254,255,254,95,0,0,0,0,0,0,
+ 0,0,0,68,189,198,107,5,0,0,0,0,0,0,0,0,69,252,144,104,105,104,183,239,16,
+ 0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,253,254,255,255,255,254,
+ 255,255,255,255,255,255,254,254,254,254,254,254,254,254,254,254,80,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,37,147,225,249,254,254,253,252,242,193,87,8,0,0,0,
+ 0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,255,255,255,255,254,254,
+ 184,18,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,
+ 254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,251,47,0,0,0,0,
+ 0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,252,254,254,182,1,0,0,27,243,254,254,242,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,255,255,254,111,0,0,
+ 0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,176,
+ 65,0,0,0,0,0,0,0,0,36,211,160,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,109,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
+ 255,255,233,29,0,0,0,0,0,0,0,0,0,0,0,0,0,170,255,255,255,255,255,249,115,
+ 2,103,151,250,255,255,255,255,255,254,169,172,3,80,240,254,255,255,255,
+ 255,211,5,0,0,0,0,0,0,0,87,251,50,0,0,0,19,240,255,255,255,255,253,94,0,
+ 0,0,53,248,255,255,222,9,0,153,255,255,254,106,0,8,220,255,255,185,1,0,
+ 0,0,0,0,0,0,0,0,0,0,5,213,255,255,254,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,91,254,255,255,211,4,0,0,0,0,0,0,0,0,0,23,242,255,255,250,46,9,
+ 223,255,255,253,75,0,0,0,1,184,255,255,254,122,0,153,255,255,255,154,0,
+ 0,0,0,0,0,0,0,0,0,74,253,255,255,224,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,1,197,255,255,254,108,0,166,255,255,254,140,0,0,0,0,118,254,255,255,
+ 187,1,87,254,255,255,214,6,0,0,0,43,249,255,255,243,26,20,240,255,255,252,
+ 49,0,0,0,3,209,255,255,254,95,0,0,0,0,0,0,0,0,34,233,254,254,251,82,0,0,
+ 0,0,0,0,0,0,69,252,67,0,0,0,133,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,
+ 252,81,0,0,0,71,253,254,255,255,254,254,254,255,254,255,254,254,254,254,
+ 254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,52,
+ 83,84,84,73,32,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,
+ 255,255,255,255,255,254,254,254,156,2,0,0,0,0,0,0,23,242,255,255,255,255,
+ 255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,
+ 104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,182,1,0,0,27,
+ 243,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,
+ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,26,10,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,218,254,255,255,255,255,255,255,255,
+ 255,255,255,255,255,255,255,255,255,255,254,135,0,0,0,0,0,0,0,0,0,0,0,0,
+ 1,178,255,255,255,255,255,255,249,112,123,158,254,255,255,255,255,255,254,
+ 187,177,81,240,254,255,255,255,255,255,211,5,0,0,0,0,0,0,0,87,251,50,0,
+ 0,0,19,240,255,255,255,255,254,161,0,0,0,116,254,255,255,222,9,0,153,255,
+ 255,254,106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,5,213,255,255,254,
+ 88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,254,255,255,211,4,0,0,0,0,0,
+ 0,0,0,0,23,242,255,255,250,46,9,223,255,255,253,75,0,0,0,1,184,255,255,
+ 254,122,0,153,255,255,255,154,0,0,0,0,0,0,0,0,0,0,74,253,255,255,224,10,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,197,255,255,254,108,0,166,255,255,
+ 254,140,0,0,0,0,118,254,255,255,187,1,87,254,255,255,214,6,0,0,0,43,249,
+ 255,255,243,26,20,240,255,255,252,49,0,0,0,3,209,255,255,254,95,0,0,0,0,
+ 0,0,0,0,72,253,255,254,254,136,0,0,0,0,0,0,0,0,69,252,121,73,73,73,168,
+ 239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,253,255,255,255,
+ 255,254,255,255,255,255,255,255,254,254,254,254,254,254,254,254,254,254,
+ 80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,18,240,255,255,255,255,255,255,255,255,255,255,255,254,218,43,0,0,
+ 0,0,0,0,0,23,242,255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,
+ 254,254,254,138,0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,182,1,0,0,27,243,254,254,252,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,255,255,254,111,0,0,0,0,0,0,0,132,
+ 254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,251,253,253,253,
+ 253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,230,29,
+ 0,0,0,0,0,0,0,0,0,0,0,0,170,255,255,255,255,255,254,248,112,120,153,253,
+ 255,255,255,255,255,254,181,176,81,240,254,255,255,255,255,255,211,5,0,
+ 0,0,0,0,0,0,87,251,50,0,0,0,19,240,255,255,255,255,254,113,0,0,0,69,251,
+ 255,255,222,9,0,153,255,255,254,106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,
+ 0,0,0,0,5,211,254,255,254,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,89,254,
+ 255,255,211,4,0,0,0,0,0,0,1,1,1,23,240,255,255,250,45,9,221,254,255,253,
+ 75,1,1,1,2,181,254,255,254,122,0,150,254,255,254,154,1,1,1,1,0,0,0,0,0,
+ 0,71,253,255,255,224,10,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,194,254,255,
+ 254,108,0,163,254,255,254,140,1,1,1,1,116,254,255,254,187,1,84,253,255,
+ 255,214,7,1,1,1,42,248,255,255,242,26,19,238,255,255,252,49,0,0,0,3,206,
+ 254,255,254,94,0,0,0,0,0,0,0,0,47,244,254,254,253,104,0,0,0,0,0,0,0,0,69,
+ 253,252,252,252,252,253,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,
+ 0,0,71,253,254,255,255,255,254,255,255,255,255,255,255,254,254,254,254,
+ 254,254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,3,81,94,94,94,94,94,
+ 94,94,94,94,93,19,0,0,0,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,
+ 255,255,255,255,254,219,43,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,
+ 60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,205,208,254,254,182,1,0,0,27,243,254,
+ 254,145,224,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,11,134,158,158,158,158,158,158,158,158,158,158,158,158,
+ 158,158,158,158,158,158,158,158,158,66,0,0,0,0,0,0,0,0,0,0,0,0,167,254,
+ 255,255,255,254,248,115,2,62,170,229,254,254,255,255,255,251,159,145,1,
+ 80,240,254,255,255,255,255,208,4,0,0,0,0,0,0,0,87,251,50,0,14,91,106,245,
+ 254,255,255,255,243,39,0,2,0,14,222,255,255,222,9,0,153,255,255,254,106,
+ 0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,0,90,243,254,214,32,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,54,184,190,190,190,155,195,254,250,124,1,0,0,0,0,17,
+ 161,190,190,190,176,157,250,254,187,14,1,101,246,254,210,142,190,190,190,
+ 188,140,235,254,229,52,0,46,222,254,240,136,187,190,190,190,127,4,0,0,0,
+ 0,14,174,254,252,162,169,190,190,190,167,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 75,239,254,224,43,0,54,227,254,236,135,187,190,190,190,148,208,254,247,
+ 100,0,17,184,254,251,156,173,190,190,190,169,168,253,253,167,7,2,123,250,
+ 254,190,15,0,0,0,0,85,242,254,218,35,0,0,0,0,0,0,0,0,1,115,233,237,163,
+ 14,0,0,0,0,0,0,0,0,69,252,114,63,63,63,164,239,16,0,0,0,0,0,0,12,230,146,
+ 0,0,0,55,252,81,0,0,0,71,253,254,255,255,255,254,255,255,254,255,254,255,
+ 254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,8,217,
+ 250,250,250,250,250,250,250,250,250,248,51,0,0,0,0,0,0,0,0,0,0,0,0,18,240,
+ 255,255,255,255,255,255,255,255,255,254,218,43,0,0,0,0,0,0,0,0,0,23,242,
+ 255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,
+ 0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,204,31,182,254,254,
+ 182,1,0,0,27,243,254,254,96,49,223,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,
+ 1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,245,252,250,250,250,250,250,250,
+ 250,250,250,250,250,250,250,250,250,250,250,250,250,254,127,0,0,0,0,0,0,
+ 0,0,0,0,0,0,121,254,255,255,254,248,115,2,0,5,170,149,242,254,254,254,252,
+ 181,184,44,0,0,80,239,254,254,255,254,166,0,0,0,0,0,0,0,0,87,251,50,0,38,
+ 243,250,250,250,254,254,254,187,4,0,82,6,0,144,254,254,222,9,0,153,255,
+ 255,254,106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,0,0,90,204,37,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,55,227,254,254,255,255,253,168,191,126,3,0,0,
+ 0,0,17,184,254,254,255,255,254,207,157,184,19,0,0,1,101,203,155,250,254,
+ 254,255,254,238,141,211,57,0,0,0,47,207,142,233,254,254,255,255,252,137,
+ 5,0,0,0,0,14,173,164,199,254,254,255,255,254,195,24,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,76,208,49,0,0,0,55,210,141,237,254,254,255,254,250,157,202,104,
+ 1,0,0,17,182,159,205,254,254,255,255,254,194,168,166,12,0,0,3,123,186,21,
+ 0,0,0,0,0,0,86,205,41,0,0,0,0,0,0,0,0,0,0,0,15,16,1,0,0,0,0,0,0,0,0,0,69,
+ 252,67,0,0,0,133,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,
+ 253,254,255,254,254,254,254,254,254,255,254,254,254,254,254,254,254,254,
+ 254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,1,38,44,44,44,44,44,44,44,44,
+ 44,44,9,0,0,0,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,255,255,255,
+ 254,218,44,0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,0,0,0,
+ 0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,251,
+ 47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,204,30,1,182,254,254,182,1,0,0,27,243,254,254,96,0,49,223,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,255,255,254,111,
+ 0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,
+ 245,137,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,62,243,127,
+ 0,0,0,0,0,0,0,0,0,0,0,0,65,251,254,254,248,115,2,0,0,0,27,177,159,174,192,
+ 185,159,183,80,0,0,0,0,80,239,254,254,254,99,0,0,0,0,0,0,0,0,87,251,50,
+ 0,6,43,44,44,52,229,254,253,98,0,11,209,53,0,56,249,254,222,9,0,153,255,
+ 255,254,106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,37,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,31,192,254,255,255,255,255,254,248,85,3,0,0,0,0,0,
+ 118,253,255,255,255,255,254,254,159,31,0,0,0,0,1,63,241,254,255,255,255,
+ 254,254,215,54,0,0,0,0,0,24,201,254,255,255,255,255,254,245,85,5,0,0,0,
+ 0,26,146,253,255,255,255,255,254,253,144,18,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
+ 38,0,0,0,0,0,53,212,254,255,255,255,255,254,242,89,5,0,0,0,0,11,148,254,
+ 255,255,255,255,254,253,139,24,0,0,0,0,9,31,0,0,0,0,0,0,0,2,37,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,252,67,0,0,0,133,239,16,0,0,
+ 0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,71,253,254,255,255,255,254,255,
+ 255,255,255,255,255,254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,240,
+ 255,255,255,255,255,255,255,254,218,44,0,0,0,0,0,0,0,0,0,0,0,23,242,255,
+ 255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,
+ 0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,204,30,0,1,182,254,254,182,
+ 1,0,0,27,243,254,254,96,0,0,49,223,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,
+ 190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,245,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,21,241,127,0,0,0,0,0,0,0,0,0,0,0,0,14,216,254,248,115,2,0,0,0,0,0,
+ 18,115,175,181,180,148,47,0,0,0,0,0,0,80,239,254,239,36,0,0,0,0,0,0,0,0,
+ 87,251,50,0,0,0,0,0,9,223,255,238,28,0,75,252,146,0,8,212,254,222,9,0,153,
+ 255,255,254,106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,0,2,111,220,
+ 52,0,0,0,0,0,0,0,0,0,0,0,0,54,220,151,217,254,254,254,254,250,127,3,0,0,
+ 0,0,0,0,11,165,253,254,254,254,254,194,168,201,29,0,0,0,0,1,102,245,254,
+ 254,254,254,230,143,225,75,0,0,0,0,0,47,221,254,254,254,254,248,153,210,
+ 137,5,0,0,23,191,177,186,254,254,254,254,254,188,175,194,24,0,0,0,0,0,0,
+ 0,0,0,0,0,1,96,223,66,0,0,0,72,224,144,228,254,254,254,254,246,149,215,
+ 126,3,0,0,0,0,19,184,254,254,254,254,253,181,181,185,20,0,0,6,144,203,32,
+ 0,0,0,0,0,2,106,221,57,0,0,0,0,0,0,0,0,0,0,2,34,41,5,0,0,0,0,0,0,0,0,0,
+ 69,252,67,0,0,0,133,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,
+ 71,253,254,255,255,255,254,255,255,255,255,255,255,254,254,254,254,254,
+ 254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,4,118,137,137,137,137,137,
+ 137,137,137,137,135,28,0,0,0,0,0,0,0,0,0,0,0,0,18,240,255,255,255,255,255,
+ 255,254,219,43,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,255,255,255,253,60,
+ 0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,0,0,0,0,104,254,254,
+ 254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,204,31,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,
+ 0,0,50,224,254,254,254,254,254,254,254,254,254,254,254,254,255,255,254,
+ 111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,31,245,112,0,44,136,137,137,137,137,137,137,137,137,137,137,137,137,137,
+ 120,6,20,241,127,0,0,0,0,0,0,0,0,0,0,0,0,0,126,248,115,2,0,0,0,0,0,0,0,
+ 0,5,43,9,0,0,0,0,0,0,0,0,0,80,240,169,2,0,0,0,0,0,0,0,0,87,251,50,0,0,0,
+ 0,0,9,223,254,179,2,2,172,254,222,17,0,135,254,222,9,0,153,255,255,254,
+ 106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,1,109,247,254,225,41,0,
+ 0,0,0,0,0,0,0,0,0,51,226,254,247,138,115,116,116,116,90,3,0,0,0,0,0,0,0,
+ 0,11,105,116,116,116,116,167,252,254,202,18,0,0,0,0,1,78,116,116,116,116,
+ 134,241,254,237,64,0,0,0,0,0,43,116,116,116,116,118,214,254,251,129,0,20,
+ 191,254,253,172,111,116,116,116,116,174,253,254,193,14,0,0,0,0,0,0,0,0,
+ 0,0,93,244,254,233,54,0,69,236,254,242,127,116,116,116,116,120,219,254,
+ 250,117,0,0,0,0,0,19,110,116,116,116,116,181,254,254,184,10,4,143,252,254,
+ 205,20,0,0,0,0,104,246,254,228,45,0,0,0,0,0,0,0,0,3,136,242,246,185,20,
+ 0,0,0,0,0,0,0,0,69,252,168,137,137,137,198,239,16,0,0,0,0,0,0,12,230,146,
+ 0,0,0,55,252,81,0,0,0,66,236,237,237,237,237,237,237,247,254,255,254,254,
+ 254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,8,206,
+ 237,237,237,237,237,237,237,237,237,235,49,0,0,0,0,0,0,0,0,0,0,0,0,18,240,
+ 255,255,255,255,255,254,219,43,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,
+ 255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,0,0,
+ 0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,254,
+ 251,254,254,254,254,254,254,254,205,31,0,0,0,1,182,254,254,182,1,0,0,27,
+ 243,254,254,96,0,0,0,0,50,224,254,254,254,254,254,254,245,249,254,254,254,
+ 255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,29,228,104,2,170,254,254,254,254,253,252,251,249,251,252,
+ 254,254,254,254,250,76,19,224,118,0,0,0,0,0,0,0,0,0,0,0,0,0,22,76,2,0,0,
+ 0,0,0,0,0,0,0,78,233,114,2,0,0,0,0,0,0,0,0,0,57,43,0,0,0,0,0,0,0,0,0,87,
+ 251,50,0,0,0,0,0,9,223,253,89,0,36,240,254,252,80,0,48,247,222,9,0,153,
+ 254,255,254,106,0,8,220,255,255,185,1,0,0,0,0,0,0,0,0,0,0,0,5,212,254,255,
+ 254,88,0,0,0,0,0,0,0,0,0,0,138,254,255,254,167,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,23,241,254,255,250,46,0,0,0,0,0,0,0,0,0,1,183,254,255,254,
+ 122,0,0,0,0,0,0,0,0,0,0,104,254,255,255,200,1,73,253,254,255,224,10,0,0,
+ 0,32,245,254,255,247,36,0,0,0,0,0,0,0,0,0,1,196,254,255,254,108,0,165,254,
+ 255,254,140,0,0,0,0,117,254,255,254,187,1,0,0,0,0,0,0,0,0,0,42,249,254,
+ 255,243,26,19,239,254,255,252,49,0,0,0,3,207,254,255,254,94,0,0,0,0,0,0,
+ 0,0,53,248,255,254,254,112,0,0,0,0,0,0,0,0,69,253,241,237,237,237,246,239,
+ 16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,4,14,14,14,14,14,14,14,
+ 72,235,254,254,254,254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,12,14,14,14,14,14,14,14,14,14,14,2,0,0,0,0,0,0,0,0,0,0,
+ 0,0,18,240,255,255,255,255,254,218,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,
+ 255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,
+ 0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,254,
+ 240,119,248,254,254,254,254,254,204,30,0,0,0,0,1,182,254,254,182,1,0,0,
+ 27,243,254,254,96,0,0,0,0,0,50,223,254,254,254,254,254,198,112,247,254,
+ 254,255,255,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,1,14,6,54,246,255,253,219,141,82,49,48,42,49,55,102,172,
+ 241,254,254,194,7,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,59,43,0,0,0,0,0,0,0,0,
+ 0,79,240,254,249,114,2,0,0,0,0,0,0,0,0,23,78,1,0,0,0,0,0,0,0,0,87,253,177,
+ 158,158,158,158,158,161,242,251,170,158,189,254,254,254,206,158,162,242,
+ 242,161,158,216,254,255,254,198,158,161,241,255,255,185,1,0,0,0,0,0,0,0,
+ 0,0,0,0,5,213,255,255,254,88,0,0,0,0,0,0,0,0,0,0,139,254,255,255,167,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,250,46,0,0,0,0,0,0,0,
+ 0,0,1,184,255,255,254,122,0,0,0,0,0,0,0,0,0,0,105,254,255,255,201,1,74,
+ 253,255,255,224,10,0,0,0,33,246,255,255,247,36,0,0,0,0,0,0,0,0,0,1,197,
+ 255,255,254,108,0,166,255,255,254,140,0,0,0,0,118,254,255,255,187,1,0,0,
+ 0,0,0,0,0,0,0,43,249,255,255,243,26,20,240,255,255,252,49,0,0,0,3,209,255,
+ 255,254,95,0,0,0,0,0,0,0,0,72,253,255,254,254,136,0,0,0,0,0,0,0,0,69,252,
+ 78,14,14,14,140,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,0,0,
+ 0,0,0,0,0,0,0,70,235,254,255,254,254,254,254,254,254,254,254,254,254,80,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,18,240,255,255,255,254,218,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,255,
+ 255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,0,
+ 0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,254,240,
+ 81,38,247,254,254,254,254,205,30,0,0,0,0,0,1,182,254,254,182,1,0,0,27,243,
+ 254,254,96,0,0,0,0,0,0,50,223,254,254,254,254,196,4,111,247,254,255,255,
+ 254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,2,171,254,254,177,18,0,0,0,0,0,0,0,0,1,59,238,255,251,76,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,64,232,199,14,0,0,0,0,0,0,0,78,239,254,255,255,
+ 248,113,2,0,0,0,0,0,0,4,163,244,96,1,0,0,0,0,0,0,0,75,221,221,221,221,221,
+ 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,
+ 221,221,221,221,221,221,221,221,221,221,161,1,0,0,0,0,0,0,0,0,0,0,0,5,213,
+ 255,255,254,88,0,0,0,0,0,0,0,0,0,0,139,254,255,255,167,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,23,242,255,255,250,46,0,0,0,0,0,0,0,0,0,1,184,255,
+ 255,254,122,0,0,0,0,0,0,0,0,0,0,105,254,255,255,201,1,74,253,255,255,224,
+ 10,0,0,0,33,246,255,255,247,36,0,0,0,0,0,0,0,0,0,1,197,255,255,254,108,
+ 0,166,255,255,254,140,0,0,0,0,118,254,255,255,187,1,0,0,0,0,0,0,0,0,0,43,
+ 249,255,255,243,26,20,240,255,255,252,49,0,0,0,3,209,255,255,254,95,0,0,
+ 0,0,0,0,0,0,27,224,254,254,248,71,0,0,0,0,0,0,0,0,69,252,68,0,0,0,134,239,
+ 16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,0,0,0,0,0,0,0,0,0,0,70,
+ 235,254,254,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,
+ 0,0,5,155,179,179,179,179,179,179,179,179,179,177,36,0,0,0,0,0,0,0,0,0,
+ 0,0,0,18,240,255,255,254,219,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,242,
+ 255,255,255,255,255,253,60,0,0,0,0,0,0,1,183,254,254,254,254,254,254,138,
+ 0,0,0,0,0,0,0,104,254,254,254,254,254,254,254,254,254,254,254,254,254,254,
+ 254,254,254,254,254,254,254,251,47,0,0,0,0,0,0,1,197,254,254,254,241,81,
+ 0,38,247,254,254,254,204,31,0,0,0,0,0,0,1,182,254,254,182,1,0,0,27,243,
+ 254,254,96,0,0,0,0,0,0,0,50,224,254,254,254,196,1,2,111,248,254,255,254,
+ 111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,54,246,254,254,129,1,0,0,0,0,0,0,0,0,0,15,223,255,254,193,6,0,0,0,
+ 0,0,0,0,0,0,0,0,0,64,232,254,253,165,11,0,0,0,0,0,78,239,254,255,255,255,
+ 254,248,113,2,0,0,0,0,4,129,251,254,244,96,1,0,0,0,0,0,0,2,8,8,8,8,8,8,
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,0,0,0,0,0,0,0,0,
+ 0,0,0,0,5,213,255,255,254,88,0,0,0,0,0,0,0,0,0,0,139,254,255,255,167,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,241,255,255,250,46,0,0,0,0,0,0,0,
+ 0,0,1,183,254,255,254,122,0,0,0,0,0,0,0,0,0,0,104,254,255,255,201,1,73,
+ 253,255,255,224,10,0,0,0,33,245,255,255,247,36,0,0,0,0,0,0,0,0,0,1,197,
+ 255,255,254,108,0,166,254,255,254,140,0,0,0,0,118,254,255,255,187,1,0,0,
+ 0,0,0,0,0,0,0,43,249,255,255,243,26,20,240,255,255,252,49,0,0,0,3,208,255,
+ 255,254,95,0,0,0,0,0,0,0,0,0,51,162,167,84,2,0,0,0,0,0,0,0,0,69,253,199,
+ 179,179,179,218,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,70,236,254,254,254,254,254,254,254,254,254,254,80,0,0,
+ 0,0,0,0,0,0,0,0,0,0,6,179,206,206,206,206,206,206,206,206,206,204,42,0,
+ 0,0,0,0,0,0,0,0,0,0,0,18,240,255,254,220,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,18,196,206,206,206,206,206,204,48,0,0,0,0,0,0,0,148,206,206,206,206,
+ 206,206,112,0,0,0,0,0,0,0,84,206,206,206,206,206,206,206,206,206,206,206,
+ 206,206,206,206,206,206,206,206,206,206,203,38,0,0,0,0,0,0,1,197,254,254,
+ 241,82,0,0,38,247,254,254,205,31,0,0,0,0,0,0,0,1,182,254,254,182,1,0,0,
+ 27,243,254,254,96,0,0,0,0,0,0,0,0,50,224,254,254,196,1,0,2,111,248,254,
+ 254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,2,170,254,255,255,242,137,48,10,1,1,1,1,3,19,76,187,253,255,255,
+ 250,75,0,0,0,0,0,0,0,0,0,0,0,39,231,254,254,254,253,164,11,0,0,0,78,238,
+ 254,255,255,255,255,255,254,248,113,2,0,0,4,129,250,255,255,254,244,72,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,127,251,254,234,49,0,0,0,0,0,0,0,0,
+ 0,0,63,236,254,250,143,136,142,142,141,91,1,0,0,0,0,0,0,0,0,6,113,142,142,
+ 142,131,178,253,254,215,23,0,0,0,0,0,0,0,0,0,0,98,246,254,243,75,0,0,0,
+ 0,0,34,138,142,142,141,126,224,254,253,145,0,26,206,254,254,182,123,142,
+ 142,142,130,185,254,254,207,17,0,0,0,0,0,0,0,0,0,0,109,249,254,240,64,0,
+ 84,242,254,247,130,139,142,142,141,128,229,254,252,132,0,0,0,0,0,0,0,0,
+ 0,0,13,185,254,254,198,12,5,161,253,254,220,114,141,142,142,137,152,250,
+ 254,237,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,253,255,255,255,
+ 255,255,239,16,0,0,0,0,0,0,12,230,146,0,0,0,55,252,81,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,70,236,254,254,254,254,254,254,254,254,254,80,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,2,3,3,3,3,3,3,3,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,18,240,254,
+ 219,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,2,0,0,0,0,0,0,
+ 0,0,2,3,3,3,3,3,2,1,0,0,0,0,0,0,0,1,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,
+ 3,3,3,2,0,0,0,0,0,0,0,1,197,254,240,82,0,0,0,38,247,254,205,30,0,0,0,0,
+ 0,0,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,0,0,0,0,0,0,0,0,50,
+ 224,254,196,1,0,0,1,111,248,254,111,0,0,0,0,0,0,0,132,254,255,225,10,1,
+ 196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,245,255,255,255,254,254,247,225,
+ 200,199,199,199,204,237,252,254,255,255,255,254,192,6,0,0,0,0,0,0,0,0,0,
+ 0,7,151,252,254,255,254,253,188,37,0,75,239,254,255,255,255,255,255,255,
+ 255,254,248,113,2,22,160,251,254,255,255,254,185,17,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,4,130,231,66,0,0,0,0,0,0,0,0,0,0,0,0,68,232,158,207,254,
+ 254,254,254,248,108,1,0,0,0,0,0,0,6,147,252,254,254,254,254,183,179,215,
+ 40,0,0,0,0,0,0,0,0,0,0,0,1,102,236,92,1,0,0,0,0,35,211,254,254,254,254,
+ 245,146,222,155,8,0,0,31,206,188,174,253,254,254,254,253,176,186,208,33,
+ 0,0,0,0,0,0,0,0,0,0,0,2,113,234,81,0,0,0,88,235,148,220,254,254,254,254,
+ 242,144,227,144,6,0,0,0,0,0,0,0,0,0,0,0,18,186,200,28,0,0,10,162,219,148,
+ 247,254,254,254,254,209,156,232,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,69,253,255,255,255,255,255,239,16,0,0,0,0,0,0,12,230,146,0,0,
+ 0,55,252,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,235,254,254,254,254,254,
+ 254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,6,6,6,6,6,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,18,240,218,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,197,240,82,0,0,0,0,38,
+ 247,205,30,0,0,0,0,0,0,0,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,
+ 0,0,0,0,0,0,0,0,0,0,50,224,196,1,0,0,0,2,111,247,111,0,0,0,0,0,0,0,132,
+ 254,255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,117,193,193,193,193,
+ 193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,189,44,
+ 0,0,0,0,0,0,0,0,0,0,0,7,151,252,254,255,255,254,223,38,128,235,254,254,
+ 255,255,255,255,255,254,254,241,169,19,178,254,254,255,255,254,190,18,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 43,190,254,255,255,255,255,254,246,72,0,0,0,0,0,0,114,252,255,255,255,255,
+ 254,253,155,30,0,0,0,0,0,0,0,0,0,0,0,0,0,1,37,0,0,0,0,0,10,196,254,255,
+ 255,255,255,254,243,93,8,0,0,0,0,25,142,253,255,255,255,255,254,253,145,
+ 26,0,0,0,0,0,0,0,0,0,0,0,0,0,2,37,0,0,0,0,0,51,209,254,255,255,255,255,
+ 254,240,85,6,0,0,0,0,0,0,0,0,0,0,0,0,0,17,23,0,0,0,0,10,99,245,255,255,
+ 255,255,254,254,193,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 69,253,255,255,255,255,255,239,16,0,0,0,0,0,0,12,230,147,0,0,0,55,252,81,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,235,254,254,254,254,254,254,254,80,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,205,216,216,216,215,147,7,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,18,204,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,183,82,0,0,0,0,0,38,198,31,
+ 0,0,0,0,0,0,0,0,0,0,1,182,254,254,182,1,0,0,27,243,254,254,96,0,0,0,0,0,
+ 0,0,0,0,0,0,50,167,1,0,0,0,0,2,112,104,0,0,0,0,0,0,0,132,254,255,225,10,
+ 1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,209,217,217,217,217,217,217,217,
+ 217,217,217,217,217,217,217,217,217,217,217,217,217,217,108,0,0,0,0,0,0,
+ 0,0,0,0,0,0,8,151,252,254,254,245,99,1,1,28,104,164,209,218,218,218,214,
+ 173,106,40,2,0,38,212,254,254,254,213,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,234,254,255,255,255,253,
+ 166,11,0,0,0,0,0,0,26,198,254,255,255,255,254,215,41,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,79,239,254,255,255,255,253,155,9,0,0,0,0,0,0,
+ 32,206,254,255,255,255,254,208,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,89,243,254,255,255,255,252,144,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,10,162,253,255,255,255,254,236,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,69,253,255,255,255,255,255,239,16,0,0,0,0,0,0,12,
+ 230,222,45,0,3,131,253,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,236,254,
+ 254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,86,165,166,166,147,
+ 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,
+ 0,0,15,27,0,0,0,0,0,0,0,0,0,0,0,0,119,166,166,118,0,0,0,17,158,166,165,
+ 62,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,2,17,0,0,0,0,0,0,0,132,254,255,
+ 225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,159,166,166,166,166,166,
+ 166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,82,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,8,151,252,245,99,1,0,0,0,0,0,6,7,7,7,7,1,0,0,0,0,
+ 0,38,213,254,213,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,164,166,166,166,137,11,0,0,0,0,0,0,0,0,26,
+ 153,166,166,166,160,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 75,165,166,166,166,130,9,0,0,0,0,0,0,0,0,32,156,166,166,166,157,34,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,165,166,166,166,123,7,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,135,166,166,166,165,70,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,250,255,255,255,255,
+ 255,237,15,0,0,0,0,0,0,10,221,254,219,49,124,250,253,79,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,70,237,254,254,254,254,254,80,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,225,
+ 10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,147,99,1,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,38,179,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,131,251,
+ 254,254,254,249,116,1,0,0,0,0,0,0,0,69,237,254,236,250,254,178,15,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,236,254,254,254,254,80,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,
+ 255,225,10,1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,105,144,
+ 145,144,96,2,0,0,0,0,0,0,0,0,0,64,144,145,145,129,14,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,71,235,254,254,254,80,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,225,10,
+ 1,196,190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,
+ 236,254,253,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,132,254,255,225,10,12,209,141,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,237,254,80,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,
+ 224,21,163,155,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,71,236,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,233,173,155,8,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,63,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,254,255,
+ 252,155,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,132,254,253,155,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,253,156,9,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 132,160,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,};
diff --git a/noatun-plugins/tippercanoe/syna.h b/noatun-plugins/tippercanoe/syna.h
new file mode 100644
index 0000000..d4ea60e
--- /dev/null
+++ b/noatun-plugins/tippercanoe/syna.h
@@ -0,0 +1,247 @@
+/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
+ Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au>
+ 2001 Charles Samuels <charles@kde.org>
+
+ 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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*/
+
+#ifndef SYNA_H
+#define SYNA_H
+
+#include "config.h"
+#include <qptrlist.h>
+#include "polygon.h"
+
+//**************************************
+// For the incurably fiddle prone:
+
+// log2 of sample size
+#define LogSize 9
+
+// overlap amount between samples. Set to 1 or 2 if you have a fast computer
+#define Overlap 1
+
+// Brightness
+#define Brightness 150
+
+// Sample frequency
+#define Frequency 22050
+
+//***************************************
+
+#define DefaultWidth 260
+#define DefaultHeight 260
+
+#define NumSamples (1<<LogSize)
+#define RecSize (1<<LogSize-Overlap)
+
+#ifndef __linux__
+#warning This target has not been tested!
+#endif
+
+#ifdef __FreeBSD__
+#include <machine/endian.h>
+typedef unsigned short sampleType;
+#else
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_ENDIAN_H
+#include <endian.h>
+#elif defined(_BIG_ENDIAN)
+#define BIG_ENDIAN 1
+#define BYTE_ORDER BIG_ENDIAN
+#endif
+typedef short sampleType;
+#endif
+
+#if BYTE_ORDER == BIG_ENDIAN
+#define BIGENDIAN
+#else
+#define LITTLEENDIAN
+#endif
+
+void error(const char *str, bool syscall=false);
+void warning(const char *str, bool syscall=false);
+
+enum SymbolID
+{
+ Speaker, Bulb,
+ Play, Pause, Stop, SkipFwd, SkipBack,
+ Handle, Pointer, Open, NoCD, Exit,
+ Zero, One, Two, Three, Four,
+ Five, Six, Seven, Eight, Nine,
+ Slider, Selector, Plug, Loop, Box, Bar,
+ Flame, Wave, Stars, Star, Diamond, Size, FgColor, BgColor,
+ Save, Reset, TrackSelect,
+ NotASymbol
+};
+
+// wrap
+struct BaseScreen
+{
+ virtual bool init(int xHint, int yHint, int widthHint, int heightHint, bool fullscreen) = 0;
+ virtual void setPalette(unsigned char *palette) = 0;
+ virtual void end() = 0;
+ virtual int sizeUpdate() = 0;
+ virtual bool inputUpdate(int &mouseX,int &mouseY,int &mouseButtons,char &keyHit) = 0;
+ virtual void show() = 0;
+};
+
+struct SdlScreen : public BaseScreen
+{
+ bool init(int xHint, int yHint, int widthHint, int heightHint, bool fullscreen);
+ void setPalette(unsigned char *palette);
+ void end();
+ int sizeUpdate();
+ bool inputUpdate(int &mouseX,int &mouseY,int &mouseButtons,char &keyHit);
+ void show();
+ int winID();
+};
+
+// core
+class Combiner
+{
+public:
+ static unsigned short combine(unsigned short a,unsigned short b)
+ {
+ //Not that i want to give the compiler a hint or anything...
+ unsigned char ah = a>>8, al = a&255, bh = b>>8, bl = b&255;
+ if (ah < 64) ah *= 4; else ah = 255;
+ if (al < 64) al *= 4; else al = 255;
+ if (bh > ah) ah = bh;
+ if (bl > al) al = bl;
+ return ah*256+al;
+ }
+};
+
+class Interface;
+
+class Core
+{
+public:
+ Core();
+ ~Core();
+
+ inline unsigned char *output() { return (unsigned char*)outputBmp.data; }
+ inline unsigned char *lastOutput() { return (unsigned char*)lastOutputBmp.data; }
+ inline unsigned char *lastLastOutput() { return (unsigned char*)lastLastOutputBmp.data; }
+
+ void allocOutput(int w,int h);
+ void interfaceInit();
+ //void coreInit();
+ void setStarSize(double size);
+ void setupPalette(double);
+
+ bool go();
+ bool calculate();
+
+ void toDefaults();
+ void fade();
+ void fadeFade();
+ inline void fadePixelWave(int x, int y, int where, int step);
+ void fadeWave();
+ inline void fadePixelHeat(int x,int y,int where,int step);
+ void fadeHeat();
+
+ void fft(double*, double*);
+
+ inline void addPixel(int x, int y, int br1, int br2);
+ inline void addPixelFast(unsigned char *p, int br1, int br2);
+ inline unsigned char getPixel(int x, int y, int where);
+
+ static int bitReverser(int);
+
+
+public:
+ BaseScreen *screen;
+ Interface *interface;
+ sampleType *data;
+ Bitmap<unsigned short> outputBmp, lastOutputBmp, lastLastOutputBmp;
+ PolygonEngine<unsigned short,Combiner,2> polygonEngine;
+
+ double cosTable[NumSamples], negSinTable[NumSamples];
+ int bitReverse[NumSamples];
+ int scaleDown[256];
+ int maxStarRadius;
+
+
+public:
+ int outWidth, outHeight;
+ SymbolID fadeMode;
+ bool pointsAreDiamonds;
+
+ double brightnessTwiddler;
+ double starSize;
+
+ double fgRedSlider, fgGreenSlider, bgRedSlider, bgGreenSlider;
+ SymbolID state;
+
+ int windX, windY, windWidth, windHeight;
+};
+
+extern Core *core;
+
+inline unsigned char Core::getPixel(int x,int y,int where)
+{
+ if (x < 0 || y < 0 || x >= outWidth || y >= outHeight) return 0;
+ return lastOutput()[where];
+}
+
+
+struct Button;
+
+struct UIObject
+{
+ int visibleMask, activeMask;
+ double x,y,width,height;
+ bool active;
+
+ virtual int go(bool mouseDown,bool mouseClick,bool mouseOver,
+ double x, double y, double scale, char &hotKey, int &action)
+ = 0;
+
+ virtual void handleKey(char key, int &action) = 0;
+ void changed();
+};
+
+class Interface
+{
+public:
+ Interface();
+ ~Interface();
+ bool go();
+ void syncToState();
+ void setupPalette();
+
+ void putString(char *string,int x,int y,int red,int blue);
+
+protected:
+ void addUI(UIObject *obj);
+ void changeState(int transitionSymbol);
+
+private:
+ QPtrList<UIObject> uiObjects;
+ Button *stateButton, *starsButton, *waveButton, *flameButton, *starButton, *diamondButton;
+ int mouseButtons;
+
+ int visibleMask;
+ int mouseX, mouseY, lastX, lastY, countDown;
+
+};
+
+
+#endif
+
diff --git a/noatun-plugins/tippercanoe/synaescope.cpp b/noatun-plugins/tippercanoe/synaescope.cpp
new file mode 100644
index 0000000..8ccf6c3
--- /dev/null
+++ b/noatun-plugins/tippercanoe/synaescope.cpp
@@ -0,0 +1,103 @@
+/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
+ Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au>
+ 2001 Charles Samuels <charles@kde.org>
+ Copyright (C) 2001 Neil Stevens <multivac@fcmail.com>
+
+ this file is X11 source
+ */
+
+#include <noatun/conversion.h>
+#include <kdebug.h>
+#include <kiconloader.h>
+#include <klocale.h>
+#include <kmessagebox.h>
+#include <kprocess.h>
+#include <kstandarddirs.h>
+#include <qframe.h>
+#include <qregexp.h>
+#include <noatun/app.h>
+#include "syna.h"
+#include "synaescope.h"
+
+extern "C" Plugin *create_plugin()
+{
+ KGlobal::locale()->insertCatalogue("tippecanoe");
+ return new SynaeScope();
+}
+
+SynaeScope::SynaeScope()
+ : QWidget(0, 0, WType_TopLevel | WStyle_DialogBorder | WRepaintNoErase | WMouseNoMask)
+ , StereoScope(50)
+ , Plugin()
+{
+ setSamples(bufferSize);
+ mBuffer = new char[bufferSize * 16 * 2];
+ setFixedSize(320, 240);
+ setCaption(i18n("Tippecanoe - Noatun"));
+ setIcon(SmallIcon("noatun"));
+ show();
+ embed = new QXEmbed(this);
+ embed->move(0,0);
+ embed->resize(320, 240);
+ embed->show();
+ embed->setFocus();
+}
+
+SynaeScope::~SynaeScope()
+{
+ connect(&process, SIGNAL(processExited(KProcess *)), this, SLOT(processExited(KProcess *)));
+ napp->pluginMenuRemove(pluginMenuItem);
+}
+
+void SynaeScope::init()
+{
+ connect(&process, SIGNAL(receivedStdout(KProcess *, char *, int)), this, SLOT(read(KProcess *, char *, int)));
+ pluginMenuItem = napp->pluginMenuAdd(i18n("Toggle Tippecanoe"), this, SLOT(toggle(void)));
+
+ process << KStandardDirs::findExe("noatuntippecanoe.bin");
+
+ // Note that process.start() will fail if findExe fails, so there's no real need
+ // for two separate checks.
+ if(!process.start(KProcess::NotifyOnExit, (KProcess::Communication)(KProcess::Stdin | KProcess::Stdout)))
+ {
+ KMessageBox::error(0, i18n("Unable to start noatuntippecanoe.bin. Check your installation."));
+ unload();
+ }
+ else
+ start();
+
+}
+
+void SynaeScope::scopeEvent(float *left, float *right, int size)
+{
+ if(!isHidden() && process.isRunning())
+ {
+ Conversion::convertStereo2FloatToI16le((unsigned long)size, left,
+ right, (unsigned char*)mBuffer);
+
+ process.writeStdin((char *)mBuffer, bufferSize*2);
+ }
+}
+
+void SynaeScope::read(KProcess *, char *buf, int)
+{
+ QString num = QString::fromLatin1(buf);
+ num = num.left(num.find(QRegExp("\\s")));
+ id = num.toInt();
+ embed->embed(id);
+}
+
+void SynaeScope::processExited(KProcess *)
+{
+ unload();
+}
+
+void SynaeScope::toggle(void)
+{
+ if(isHidden())
+ show();
+ else
+ hide();
+}
+
+#include "synaescope.moc"
diff --git a/noatun-plugins/tippercanoe/synaescope.h b/noatun-plugins/tippercanoe/synaescope.h
new file mode 100644
index 0000000..da6855b
--- /dev/null
+++ b/noatun-plugins/tippercanoe/synaescope.h
@@ -0,0 +1,46 @@
+/* Synaescope - a pretty noatun visualization (based on P. Harrison's Synaesthesia)
+ Copyright (C) 1997 Paul Francis Harrison <pfh@yoyo.cc.monash.edu.au>
+ 2001 Charles Samuels <charles@kde.org>
+ Copyright (C) 2001 Neil Stevens<multivac@fcmail.com>
+
+ this file is X11 source
+ */
+
+#ifndef SYNAESCOPE_H
+#define SYNAESCOPE_H
+
+#include <noatun/conversion.h>
+#include "syna.h"
+#include <noatun/plugin.h>
+#include <kprocess.h>
+#include <qwidget.h>
+#include <qxembed.h>
+
+class SynaeScope : public QWidget, public StereoScope, public Plugin
+{
+Q_OBJECT
+
+public:
+ SynaeScope();
+ virtual ~SynaeScope();
+
+ void init();
+
+private slots:
+ void processExited(KProcess *);
+ void toggle(void);
+ void read(KProcess *, char *, int);
+
+protected:
+ virtual void scopeEvent(float *left, float *right, int bands);
+
+private:
+ char *mBuffer;
+ static const int bufferSize=512;
+ KProcess process;
+ int pluginMenuItem;
+ QXEmbed *embed;
+ WId id;
+};
+
+#endif
diff --git a/noatun-plugins/tippercanoe/tippecanoe.plugin b/noatun-plugins/tippercanoe/tippecanoe.plugin
new file mode 100644
index 0000000..a7fb06d
--- /dev/null
+++ b/noatun-plugins/tippercanoe/tippecanoe.plugin
@@ -0,0 +1,72 @@
+Filename=noatuntippecanoe.la
+Author=Neil Stevens, Charles Samuels, Paul Francis Harrison
+Site=http://noatun.kde.org/
+Email=multivac@fcmail.com
+Type=visualization
+License=GPL
+Name=Tippecanoe
+Name[af]= tippecanoe
+Name[hi]=टिपर-केनॉय
+Name[it]=Tippercanoe
+Name[ne]=टिपेकोन
+Name[ru]=Каноэ
+Name[ta]=டிப்கானோ
+Name[tg]=Каноэ
+Comment=A visualization you can play with for hours.
+Comment[af]='n visualiseering jy kan speel met vir ure.
+Comment[ar]=مرئية يمكنك اللعب بها لساعات.
+Comment[az]=Saatlarca oynaya biləvəyiniz əyani efekt
+Comment[bg]=Забавна приставка за визуализация за Noatun
+Comment[bs]=Vizualizacija sa kojom se možete igrati satima.
+Comment[ca]=Un visualitzador que pot reproduir durant hores.
+Comment[cs]=Vizualizace, se kterou si vyhrajete
+Comment[cy]=Dychmygydd y gallwch chwarae efo fo am oriau
+Comment[da]=En visualisering som du kan bruge timer på.
+Comment[de]=Eine Visualisierung, mit der Sie viele Stunden spielen können.
+Comment[el]=Μια οπτικοποίηση με την οποία μπορεί να παίζεις για ώρες.
+Comment[en_GB]=A visualisation you can play with for hours.
+Comment[eo]=Vidadilo kun kiu vi povas ludi horlonge.
+Comment[es]=Una forma de visualización en la que puede reproducir durante horas.
+Comment[et]=Ostsilloskoop, millega võib jännata tundide kaupa.
+Comment[eu]=Hainbat ordutaz ibil daitekeen bisualizazioa.
+Comment[fa]=تجسمی که می‌توانید ساعتها اجرا کنید.
+Comment[fi]=Visuaalisaatio, jota voit soittaa tunteja
+Comment[fr]=Un affichage avec lequel vous pouvez jouer pendant des heures
+Comment[fy]=In fisualisaasje om oeren mei te boartsjen.
+Comment[ga]=Amharcléiriú ar féidir súgradh leis ar feadh uaireanta an chloig.
+Comment[gl]=Unha visualización que o usuário pode reproducir durante horas.
+Comment[he]=המחשה שאפשר לשחק איתה שעות
+Comment[hi]=एक विज़ुअलाइज़ेशन जिसके साथ आप घंटों खेल सकते हैं
+Comment[hr]=Vizualizacija koju možete gledati satima
+Comment[hu]=Egy sokoldalú vizualizációs modul
+Comment[is]=Sjónræn brella sem hægt er að leika sér með lengi.
+Comment[it]=Una visualizzazione con cui puoi giocare per ore
+Comment[ja]=何時間でも遊べる視覚効果
+Comment[ka]=ვიზუალიზაცია, რომლითაც საათობით შეგიძლიათ თამაში
+Comment[kk]=Арбайтың көрініс.
+Comment[km]= រូបភាព​មើល​ឃើញ​មួយ ដែល​​អ្នក​អាច​ចាក់​​បាន​ច្រើន​ម៉ោង ។
+Comment[lt]=Vizualizacija, su kuria Jūs galite žaisti ištisas valandas.
+Comment[mk]=Визуелизација што може да ја гледате со часови.
+Comment[ms]=Visualisasi yang anda boleh main berjam-jam..
+Comment[nb]=En visualisering du kan leke med i timer.
+Comment[nds]=En Filmmaker, mit den Du över Stünnen spelen kannst.
+Comment[ne]=तपाईँले एक घण्टासम्म प्ले गर्न सक्ने दृष्टीकरण ।
+Comment[nl]=Een visualisatie waarmee u uren kunt spelen.
+Comment[nn]=Ei visualisering du kan leika med i fleire timar.
+Comment[pl]=Wizualizacja, którą można się bawić godzinami.
+Comment[pt]=Uma visualização que o utilizador pode reproduzir durante horas.
+Comment[pt_BR]=Uma visualização que você pode reproduzir.
+Comment[ro]=Un modul de vizualizare cu care vă puteţi juca ore întregi
+Comment[ru]=Зрительный образ, который вы можете рассматривать часами
+Comment[sk]=Vizualizácia s ktorou sa môžete hrať celé hodiny.
+Comment[sl]=Vizualizacija, s katero se lahko igrate ure in ure.
+Comment[sr]=Визуелизација којом се можете играти сатима.
+Comment[sr@Latn]=Vizuelizacija kojom se možete igrati satima.
+Comment[sv]=Visualisering man kan leka med i flera timmar
+Comment[ta]=நீங்கள் பலநேரம் வாசிக்கக்கூடிய காட்சியமைப்பு.
+Comment[tg]=Намуди тамошобин, ки метавонед ӯро соатҳо тамошо кунед.
+Comment[tr]=Saatlerce oynayabileceğiniz bir görselleştirme.
+Comment[uk]=Втулок візуалізації, з яким ви зможете гратись годинами.
+Comment[vi]=Ô xem chơi dễ dàng.
+Comment[xh]=Umboniso wengqondo onokuwudlala ngawo iiyure.
+Comment[zh_CN]=可以长时间播放的视觉化显示
diff --git a/noatun-plugins/tippercanoe/ui.cpp b/noatun-plugins/tippercanoe/ui.cpp
new file mode 100644
index 0000000..e260d18
--- /dev/null
+++ b/noatun-plugins/tippercanoe/ui.cpp
@@ -0,0 +1,507 @@
+#include "font.h"
+#include "icons.h"
+#include "syna.h"
+#include <math.h>
+#include <stdlib.h>
+#include <kconfig.h>
+
+#define output core->output()
+
+static void putChar(unsigned char character,int x,int y,int red,int blue)
+{
+ unsigned short *ptr = ((unsigned short *)output) + x + y*core->outWidth;
+ unsigned short put = (blue<<8)+red;
+ int i,j;
+ for(i=0;i<8;i++,ptr += core->outWidth-8)
+ for(j=0;j<8;j++,ptr++)
+ if (font[character*8+i] & (128>>j))
+ *ptr = put;
+}
+
+void Interface::putString(char *string,int x,int y,int red,int blue)
+{
+ if (x < 0 || y < 0 || y >= core->outHeight-8)
+ return;
+ for(;*string && x <= core->outWidth-8;string++,x+=8)
+ putChar((unsigned char)(*string),x,y,red,blue);
+}
+
+void UIObject::changed()
+{
+}
+
+struct Button : public UIObject
+{
+ int icon;
+ char hotKey;
+
+ bool passive, bright;
+
+ Button(int _am,int _vm,double _x,double _y,
+ double _size,int _icon,char _key = 0,
+ bool _passive = false, bool _bright = false)
+ {
+ activeMask = _am; visibleMask = _vm;
+ x = _x; y = _y; width = height = _size;
+ icon = _icon; hotKey = _key; passive = _passive; bright = _bright;
+ }
+
+ int go(bool mouseDown,bool mouseClick,bool mouseOver,
+ double _x, double _y, double scale, char &_hotKey, int &action)
+ {
+ (void)mouseDown;
+ (void)_x;
+ (void)_y;
+ core->polygonEngine.icon(
+ Icons[icon],
+ (bright ? 0x0202 : 0x0100),
+ x*scale,y*scale,width*scale,height*scale);
+
+ if (mouseOver && !passive)
+ core->polygonEngine.icon(
+ Icons[icon],
+ 0x0002,
+ (x-IconWidths[icon]*width/2)*scale,
+ (y-height/2)*scale,width*scale*2,height*scale*2);
+
+ if (mouseOver && mouseClick && !passive)
+ action = icon;
+
+ if (mouseOver && !passive && hotKey)
+ _hotKey = hotKey;
+
+ return 0;
+ }
+
+ void handleKey(char key, int &action)
+ {
+ if (key == hotKey && !passive)
+ action = icon;
+ }
+};
+#define BarWidth 0.1
+struct SliderBar : public UIObject
+{
+ double *value;
+ char leftKey, rightKey;
+
+ typedef void (Core::*Callback)(double v);
+ Callback callback;
+
+ SliderBar(int _am,int _vm,double _x,double _y,
+ double _width,double _height, double *_value,
+ Callback _callback, char _leftKey, char _rightKey)
+ {
+ activeMask = _am; visibleMask = _vm;
+ x = _x; y = _y; width = _width; height = _height;
+ value = _value; callback = _callback;
+ leftKey = _leftKey; rightKey = _rightKey;
+ }
+
+ int go(bool mouseDown,bool mouseClick,bool mouseOver,
+ double _x, double _y, double scale, char &_hotKey, int &action)
+ {
+ (void)mouseClick;
+ (void)_y;
+ (void)action;
+ core->polygonEngine.icon(
+ Icons[Bar],
+ 0x0100,
+ x*scale,y*scale,width*scale,height*scale);
+ core->polygonEngine.icon(
+ Icons[Slider],
+ 0x0200,
+ (x+*value*width-IconWidths[Slider]*height/2)*scale,
+ y*scale,height*scale,height*scale);
+
+ if (mouseOver)
+ {
+ double newValue = (_x)/(width);
+ if (newValue < 0.0) newValue = 0.0;
+ if (newValue > 1.0) newValue = 1.0;
+
+ core->polygonEngine.icon(
+ Icons[Selector],
+ 0x0002,
+ (x+newValue*width-IconWidths[Selector]*height/2)*scale,
+ y*scale,height*scale,height*scale);
+
+ if (mouseDown)
+ {
+ *value = newValue;
+
+ if (callback)
+ (core->*callback)(*value);
+ changed();
+ }
+
+ if (mouseOver)
+ _hotKey = (newValue < *value ? leftKey : rightKey);
+ }
+
+ return 0;
+ }
+ void handleKey(char key, int &action)
+ {
+ (void)action;
+ if (key == leftKey || key == rightKey)
+ {
+ if (key == leftKey)
+ {
+ if (*value == 0.0) return;
+ *value -= 0.05;
+ if (*value < 0.0) *value = 0.0;
+ }
+ else
+ {
+ if (*value == 1.0) return;
+ *value += 0.05;
+ if (*value > 1.0) *value = 1.0;
+ }
+
+ if (callback)
+ (core->*callback)(*value);
+ changed();
+ }
+ }
+};
+#undef BarWidth
+
+
+struct PopperUpper : public UIObject
+{
+ int maskAdd;
+
+ PopperUpper(int _am,int _vm,double _x,double _y,
+ double _width,double _height, int _maskAdd)
+ {
+ activeMask = _am; visibleMask = _vm;
+ x = _x; y = _y; width = _width; height = _height;
+ maskAdd = _maskAdd;
+ }
+
+ int go(bool mouseDown,bool mouseClick, bool mouseOver,
+ double _x, double _y, double scale, char &_hotKey, int &action)
+ {
+ (void)mouseDown;
+ (void)mouseClick;
+ (void)_x;
+ (void)_y;
+ (void)_hotKey;
+ (void)action;
+
+ core->polygonEngine.icon(
+ Icons[Box],
+ 0x0200,
+ x*scale,y*scale,width*scale,height*scale);
+
+ return mouseOver ? maskAdd : 0;
+ }
+
+ void handleKey(char key, int &action)
+ {
+ (void)key;
+ (void)action;
+ }
+};
+
+void Interface::setupPalette()
+{
+#define BOUND(x) ((x) > 255 ? 255 : (x))
+#define PEAKIFY(x) int(BOUND((x) - (x)*(255-(x))/255/2))
+#define MAX(x,y) ((x) > (y) ? (x) : (y))
+ int i;
+ unsigned char palette[768];
+
+ double scale, fgRed, fgGreen, fgBlue, bgRed, bgGreen, bgBlue;
+ fgRed = core->fgRedSlider;
+ fgGreen = core->fgGreenSlider;
+ fgBlue = 1.0 - MAX(core->fgRedSlider,core->fgGreenSlider);
+ scale = MAX(MAX(fgRed,fgGreen),fgBlue);
+ fgRed /= scale;
+ fgGreen /= scale;
+ fgBlue /= scale;
+
+ bgRed = core->bgRedSlider;
+ bgGreen = core->bgGreenSlider;
+ bgBlue = 1.0 - MAX(core->bgRedSlider, core->bgGreenSlider);
+ scale = MAX(MAX(bgRed, bgGreen), bgBlue);
+ bgRed /= scale;
+ bgGreen /= scale;
+ bgBlue /= scale;
+
+ for(i=0;i<256;i++)
+ {
+ int f = i&15, b = i/16;
+ palette[i*3+0] = PEAKIFY(b*bgRed*16+f*fgRed*16);
+ palette[i*3+1] = PEAKIFY(b*bgGreen*16+f*fgGreen*16);
+ palette[i*3+2] = PEAKIFY(b*bgBlue*16+f*fgBlue*16);
+ }
+ core->screen->setPalette(palette);
+#undef BOUND
+#undef PEAKIFY
+#undef MAX
+}
+
+//Visible mask
+#define ALL 1
+#define BUTTONBAR 2
+#define TRACKBAR 4
+#define DIALBAR 8
+#define VOLUMEBAR 16
+
+//Active mask
+//#define ALL 1
+#define PLAYING 2
+#define PAUSED 4
+#define STOPPED 8
+#define NOCD 32
+#define OPEN 64
+
+
+// TODO Lay things out with parents and a stack, like QT
+Interface::Interface()
+{
+ static const float IconSize=0.2;
+ static const float SliderSize=0.125;
+
+ {
+ KConfig config("noatun/synaescope", false, false, "data");
+ core->fadeMode=(SymbolID)config.readNumEntry("mode", (int)Stars);
+ core->pointsAreDiamonds=config.readBoolEntry("diamonds", false);
+ core->brightnessTwiddler=config.readDoubleNumEntry("brightness", .4);
+ core->starSize=config.readDoubleNumEntry("starsize", .1);
+ core->fgRedSlider=config.readDoubleNumEntry("FGRed", 0.0);
+ core->fgGreenSlider=config.readDoubleNumEntry("FGgreen", 1.0);
+ core->bgRedSlider=config.readDoubleNumEntry("BGRed", 0.0);
+ core->bgGreenSlider=config.readDoubleNumEntry("BGGreen", 0.0);
+ }
+
+ uiObjects.setAutoDelete(true);
+
+ double x,y;
+
+ //addUI(new Button(ALL,0.025,0.525,IconSize, 0, 'x'));
+// addUI(new PopperUpper(ALL,ALL,0,0,0.25,0.25, BUTTONBAR));
+// addUI(stateButton = new Button(ALL,ALL,0.05,0.025,IconSize, 0, 0, true, false));
+
+ addUI(new PopperUpper(ALL,BUTTONBAR,x=0.25,y=0,1.375,0.25, BUTTONBAR));
+// x += 0.1; y += 0.025;
+
+// addUI(new PopperUpper(PLAYING|PAUSED|STOPPED, ALL,0,0.25,0.25,0.25, TRACKBAR));
+// addUI(new PopperUpper(PLAYING|PAUSED|STOPPED, TRACKBAR,x=0.25,y=0.25,1.0,0.625, TRACKBAR));
+// x += 0.1; y += 0.1;
+
+ addUI(new PopperUpper(ALL,ALL,0,0.0,0.25,0.25, DIALBAR));
+ addUI(new Button(ALL,ALL,0.075,0.05,IconSize, Bulb, 0, true, false));
+
+ addUI(new PopperUpper(ALL,DIALBAR,x=0.25,y=0.0,1.25,1.0, DIALBAR));
+ x += 0.05; y += 0.025;
+
+ addUI(starsButton = new Button(ALL,DIALBAR,x,y,IconSize, Stars, 'd'));
+ addUI(waveButton = new Button(ALL,DIALBAR,x+IconSize,y,IconSize, Wave, 'f'));
+ addUI(flameButton = new Button(ALL,DIALBAR,x+IconSize*2.5,y,IconSize, Flame, 'g'));
+
+ addUI(starButton = new Button(ALL,DIALBAR,x+IconSize*3.5,y,IconSize, Star, 'h'));
+ addUI(diamondButton = new Button(ALL,DIALBAR,x+IconSize*4.5,y,IconSize, Diamond, 'j'));
+
+ y += IconSize*1.3;
+
+ addUI(new Button(ALL,DIALBAR,x,y-0.05,IconSize, Bulb, 0, true));
+ addUI(new SliderBar(ALL,DIALBAR,
+ x+IconSize,y, 0.75, SliderSize, &core->brightnessTwiddler, /*&Core::setBrightness,*/0, 'z', 'x'));
+
+ addUI(new Button(ALL,DIALBAR,x,y+SliderSize*1,IconSize, Size, 'x', true));
+ addUI(new SliderBar(ALL,DIALBAR,
+ x+IconSize,y+SliderSize, 0.75, SliderSize, &core->starSize, &Core::setStarSize, 'c','v'));
+
+ addUI(new Button(ALL,DIALBAR,x+0.5,y+SliderSize*2-0.025,IconSize, FgColor, 0, true));
+ addUI(new SliderBar(ALL,DIALBAR,
+ x,y+SliderSize*2, 0.45, SliderSize, &(core->fgRedSlider), &Core::setupPalette, 'b','n'));
+ addUI(new SliderBar(ALL,DIALBAR,
+ x+0.5+SliderSize,y+SliderSize*2, 0.45, SliderSize, &core->fgGreenSlider, &Core::setupPalette, 'm',','));
+
+ addUI(new Button(ALL,DIALBAR,x+0.5,y+SliderSize*3,IconSize, BgColor, 0, true));
+ addUI(new SliderBar(ALL,DIALBAR,
+ x,y+SliderSize*3, 0.45, SliderSize, &core->bgRedSlider, &Core::setupPalette, 'B','N'));
+ addUI(new SliderBar(ALL,DIALBAR,
+ x+0.5+SliderSize,y+SliderSize*3, 0.45, SliderSize, &core->bgGreenSlider, &Core::setupPalette, 'M','<'));
+
+ x += 0.1;// y += 0.0625;
+ //static double value = 0.5;
+ //addUI(new SliderBar(ALL,0,0.75,1.0,0.25,&value));
+
+ //addUI(new Button(BUTTONBAR,x,y,IconSize, 1, 'x'));
+ //addUI(new Button(BUTTONBAR,x += IconSize,y,IconSize, 2, 'x'));
+ //addUI(new Button(BUTTONBAR,x += IconSize,y,IconSize, 3, 'x'));
+
+ visibleMask = ALL;
+ mouseX = -1;
+ mouseY = -1;
+ lastY = -1;
+ lastY = -1;
+ countDown = 0;
+ mouseButtons = 0;
+
+ syncToState();
+
+}
+
+Interface::~Interface()
+{
+ KConfig config("noatun/synaescope", false, false, "data");
+ config.writeEntry("mode",core->fadeMode);
+ config.writeEntry("diamonds", core->pointsAreDiamonds);
+ config.writeEntry("brightness", core->brightnessTwiddler);
+ config.writeEntry("starsize", core->starSize);
+ config.writeEntry("FGRed", core->fgRedSlider);
+ config.writeEntry("FGgreen", core->fgGreenSlider);
+ config.writeEntry("BGRed", core->bgRedSlider);
+ config.writeEntry("BGGreen", core->bgGreenSlider);
+}
+
+void Interface::addUI(UIObject *obj)
+{
+ uiObjects.append(obj);
+}
+
+void Interface::syncToState()
+{
+ starsButton->bright = (core->fadeMode == Stars);
+ flameButton->bright = (core->fadeMode == Flame);
+ waveButton->bright = (core->fadeMode == Wave);
+
+ starButton->bright = !core->pointsAreDiamonds;
+ diamondButton->bright = core->pointsAreDiamonds;
+
+ setupPalette();
+}
+
+void Interface::changeState(int transitionSymbol)
+{
+ if (transitionSymbol < 0)
+ {
+ return ;
+ }
+
+ int retVal = 0;
+ switch(transitionSymbol)
+ {
+ case Flame :
+ starsButton->bright = false;
+ flameButton->bright = true;
+ waveButton->bright = false;
+ core->fadeMode = Flame;
+ core->setStarSize(core->starSize);
+ break;
+ case Wave :
+ starsButton->bright = false;
+ flameButton->bright = false;
+ waveButton->bright = true;
+ core->fadeMode = Wave;
+ core->setStarSize(core->starSize);
+ break;
+ case Stars :
+ starsButton->bright = true;
+ flameButton->bright = false;
+ waveButton->bright = false;
+ core->fadeMode = Stars;
+ core->setStarSize(core->starSize);
+ break;
+
+ case Star :
+ core->pointsAreDiamonds = false;
+ starButton->bright = true;
+ diamondButton->bright = false;
+ break;
+ case Diamond :
+ core->pointsAreDiamonds = true;
+ starButton->bright = false;
+ diamondButton->bright = true;
+ break;
+
+ case Exit :
+ retVal = 1; break;
+ }
+// return retVal;
+}
+
+bool Interface::go()
+{
+ int newVisibleMask = ALL;
+ char keyHit;
+ int action = NotASymbol;
+ int oldButtons = mouseButtons;
+
+ core->screen->sizeUpdate();
+ if (!core->screen->inputUpdate(mouseX,mouseY,mouseButtons,keyHit))
+ return false;
+
+ bool mouseClick = (mouseButtons && !oldButtons);
+
+ if ((mouseX != lastX || mouseY != lastY) &&
+ lastX > 0 && lastY > 0 &&
+ lastX < core->outWidth && lastY < core->outHeight)
+ countDown = 40;
+
+ int activeMask = ALL;
+
+ if (countDown)
+ {
+ countDown--;
+
+ double scale =
+ (core->outWidth*0.625 < core->outHeight ? core->outWidth*0.625 : core->outHeight);
+ double scaledX = mouseX / scale;
+ double scaledY = mouseY / scale;
+
+ char hotKey = 0;
+
+ core->polygonEngine.clear();
+
+// stateButton->icon = core->state;
+
+
+ for (UIObject *i=uiObjects.first(); i!=0; i = uiObjects.next())
+ {
+ if ((i->visibleMask & visibleMask) && (i->activeMask & activeMask))
+ newVisibleMask |= i->go(mouseButtons,mouseClick,
+ (scaledX >= i->x &&
+ scaledY >= i->y &&
+ scaledX < i->x+i->width &&
+ scaledY < i->y+i->height),
+ scaledX - i->x,
+ scaledY - i->y,
+ scale,
+ hotKey,
+ action);
+ }
+
+ visibleMask = newVisibleMask;
+ if (visibleMask != 1)
+ countDown = 20;
+
+ core->polygonEngine.icon(Icons[Pointer],0x0303,mouseX,mouseY,50,50);
+
+ core->polygonEngine.apply(core->outputBmp.data);
+
+ char hint[2] = " ";
+ hint[0] = hotKey;
+ putString(hint,mouseX+6,mouseY+7,0,0);
+ }
+
+ if (keyHit)
+ for(UIObject *i=uiObjects.first(); i!=0; i = uiObjects.next())
+ if (i->activeMask & activeMask)
+ i->handleKey(keyHit,action);
+
+
+ lastX = mouseX;
+ lastY = mouseY;
+
+ changeState(action);
+
+ return true;
+}
+
+#undef output