Repository for import to local machine
Dependencies: DMBasicGUI DMSupport
Revision 8:26e49e6955bd, committed 2017-07-31
- Comitter:
- jmitc91516
- Date:
- Mon Jul 31 15:37:57 2017 +0000
- Parent:
- 7:f0e645cf73a2
- Commit message:
- Method ramp scrolling improved, and more bitmaps moved to QSPI memory
Changed in this revision
diff -r f0e645cf73a2 -r 26e49e6955bd EasyGUITouchAreaIndices.h --- a/EasyGUITouchAreaIndices.h Fri Jul 28 15:53:40 2017 +0000 +++ b/EasyGUITouchAreaIndices.h Mon Jul 31 15:37:57 2017 +0000 @@ -368,9 +368,9 @@ SERVICING_HOME = 8001, - COLUMN_SERVICING_AREA = 8010, + INJECTOR_SERVICING_AREA = 8010, DETECTOR_SERVICING_AREA = 8011, - INJECTOR_SERVICING_AREA = 8012, + COLUMN_SERVICING_AREA = 8012, GAS_SERVICING_AREA = 8013,
diff -r f0e645cf73a2 -r 26e49e6955bd GetGCStatusLoop.cpp --- a/GetGCStatusLoop.cpp Fri Jul 28 15:53:40 2017 +0000 +++ b/GetGCStatusLoop.cpp Mon Jul 31 15:37:57 2017 +0000 @@ -3462,17 +3462,29 @@ */ void GetGCStatusLoop::ShowMethodPageScrollButtons(bool needToScrollRampData) { +#define USE_QSPI_ARROW_BITMAPS if(needToScrollRampData){ // Hard coded coords obtained - these will need to be changed // if we change the layout of the Column Method page in easyGUI +#ifdef USE_QSPI_ARROW_BITMAPS + if(qspiBitmaps != NULL) { + qspiBitmaps->DisplayUpArrowBitmap(620, 250); + qspiBitmaps->DisplayDownArrowBitmap(620, 350); + } +#else GuiLib_ShowBitmap(GuiStruct_Bitmap_UpArrow, 630, 260, -1); // No transparency GuiLib_ShowBitmap(GuiStruct_Bitmap_DownArrow, 630, 345, -1); +#endif } else { // Blank out the whole area where the scroll buttons appear. - // Note that, as always, the first coordinate pair has to be (0, 0) - // to display the correct part of the bitmap - not, as one might expect, - // the same as the second coordinate pair + // Note that, as always, the first coordinate pair in the call to 'GuiLib_ShowBitmapArea' has to be (0, 0) + // to display the correct part of the bitmap - not, as one might expect, the same as the second coordinate pair +#ifdef USE_QSPI_ARROW_BITMAPS + GuiLib_ShowBitmapArea(GuiStruct_Bitmap_BlankBackground, 0, 0, 620, 250, 670, 390, -1); // -1 means 'no transparent colour' +#undef USE_QSPI_ARROW_BITMAPS +#else GuiLib_ShowBitmapArea(GuiStruct_Bitmap_BlankBackground, 0, 0, 630, 250, 670, 390, -1); // -1 means 'no transparent colour' +#endif } } @@ -3812,7 +3824,6 @@ } else { columnTempProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(140, 330, ((double) 500 / (double) (maxX / 10)), ((double) -250 / (double) maxY), graphColour1, graphColour2, colourBoundaryX); } - // &&&& #endif // TEST_GUILIB_VLINE_PROFILES } @@ -3928,9 +3939,11 @@ // No - draw a dummy profile section // DrawProfileSectionUsingGuiLibVLine(SixteenBitColorValue(0xFF, 0, 0), 300, 500, 350, 200, 125); +#ifdef TEST_GUILIB_VLINE_PROFILES // Now draw the profile as a solid colour, direct to the display. // Use the same parameters as the previous call, in DisplayColumnTempProfilePageGraph columnTempProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(); +#endif // TEST_GUILIB_VLINE_PROFILES #endif // SWIM_TEST GuiLib_ShowScreen(pageNumber, GuiLib_NO_CURSOR, GuiLib_RESET_AUTO_REDRAW); @@ -4773,7 +4786,6 @@ } else { injectorTempProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(140, 330, ((double) 500 / (double) (maxX / 10)), ((double) -250 / (double) maxY), graphColour1, graphColour2, colourBoundaryX); } - // &&&& #endif // TEST_GUILIB_VLINE_PROFILES } @@ -4854,9 +4866,11 @@ injectorTempProfilePageGraph->Redraw(); +#ifdef TEST_GUILIB_VLINE_PROFILES // Now draw the profile as a solid colour, direct to the display. // Use the same parameters as the previous call, in DisplayInjectorTempProfilePageGraph injectorTempProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(); +#endif // TEST_GUILIB_VLINE_PROFILES GuiLib_ShowScreen(GuiStruct_InjectorTempProfilePage_25, GuiLib_NO_CURSOR, GuiLib_RESET_AUTO_REDRAW); @@ -6305,6 +6319,21 @@ gasFlowProfilePageGraph->ShowDataSet(4); gasFlowProfilePageGraph->Redraw(); + +#ifdef TEST_GUILIB_VLINE_PROFILES + // *** TESTING *** Draw the profile as a solid colour, direct to the display + // Coords manually copied from easyGUI application. + // Boundary between colours is arbitrary for now + GuiConst_INTCOLOR graphColour1 = SixteenBitColorValue(100, 100, 100); + GuiConst_INTCOLOR graphColour2 = SixteenBitColorValue(200, 200, 200); +// double colourBoundaryX = (double) gasFlowProfilePageGraphCompleteProfileDataSet->GetTotalMethodTime() / 5.0; // Should be one-fifth across the profile + double colourBoundaryX = -1.0; // No - use one colour only + if(timeUnit == SECONDS) { + gasFlowProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(160, 330, ((double) 500 / (double) (maxX * 6)), ((double) -250 / (double) maxY), graphColour1, graphColour2, colourBoundaryX); + } else { + gasFlowProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(160, 330, ((double) 500 / (double) (maxX / 10)), ((double) -250 / (double) maxY), graphColour1, graphColour2, colourBoundaryX); + } +#endif // TEST_GUILIB_VLINE_PROFILES } void GetGCStatusLoop::DisplayGasFlowProfilePageData(bool mustUpdateDisplay) @@ -6369,6 +6398,12 @@ gasFlowProfilePageGraph->Redraw(); +#ifdef TEST_GUILIB_VLINE_PROFILES + // Now draw the profile as a solid colour, direct to the display. + // Use the same parameters as the previous call, in DisplayInjectorTempProfilePageGraph + gasFlowProfilePageGraphCompleteProfileDataSet->DrawUsingGuiLibVLine(); +#endif // TEST_GUILIB_VLINE_PROFILES + GuiLib_ShowScreen(GuiStruct_GasProfilePage_15, GuiLib_NO_CURSOR, GuiLib_RESET_AUTO_REDRAW); // Repeat the previous call to the version of this function with parameters, @@ -9990,6 +10025,12 @@ Thread::wait(500); // 0.5 second DisplayRunCompletePage(); + + // Want to display "Run Complete" for 5 seconds, then the Home page. + // Maybe this is all that is needed... + // Thread::wait(5000); + // DisplayHomePageData(true); + //#define BUG_4_ALLOW_DEBUG_PRINTS_HERE #ifdef BUG_4_ALLOW_DEBUG_PRINTS_HERE
diff -r f0e645cf73a2 -r 26e49e6955bd MethodRampData.cpp --- a/MethodRampData.cpp Fri Jul 28 15:53:40 2017 +0000 +++ b/MethodRampData.cpp Mon Jul 31 15:37:57 2017 +0000 @@ -8,6 +8,9 @@ MethodRampData - the base, abstract, class. */ +const GuiConst_INTCOLOR MethodRampData::oddRampEasyGUIColour = 0; // RGB565(0, 0, 0) - black +const GuiConst_INTCOLOR MethodRampData::evenRampEasyGUIColour = 33808; // RGB565(128, 128, 128) - grey + // Constructor - passed pointers for the USB link to the GC MethodRampData::MethodRampData(USBDeviceConnected* newUsbDevice, USBHostGC* newUsbHostGC) { @@ -219,6 +222,14 @@ easyGUIRampUpperLimitVariable[lineIndex][0] = '\0'; easyGUIRampUpperTimeVariable[lineIndex][0] = '\0'; } + + if((firstRampIndex & 1) == 0) { // First ramp has an even number - so it appears on an odd-numbered row on the easyGUI page + *easyGUIMethodRampOddRowsColour = oddRampEasyGUIColour; + *easyGUIMethodRampEvenRowsColour = evenRampEasyGUIColour; + } else { + *easyGUIMethodRampOddRowsColour = evenRampEasyGUIColour; + *easyGUIMethodRampEvenRowsColour = oddRampEasyGUIColour; + } needToUpdateEasyGUIMethodPageRampVariables = false; } @@ -278,6 +289,9 @@ strcpy(easyGUIRampRateSprintfFormat, "%.0f"); // degrees C per minute - a whole number strcpy(easyGUIRampUpperLimitSprintfFormat, "%.0f"); // degrees C - a whole number strcpy(easyGUIRampUpperTimeSprintfFormat, "%.1f"); // In minutes, but in "units" of 0.1 minute + + easyGUIMethodRampOddRowsColour = &GuiVar_columnMethodRampOddRowsColour; + easyGUIMethodRampEvenRowsColour = &GuiVar_columnMethodRampEvenRowsColour; } float ColumnMethodRampData::GetRampRateFromGC(unsigned int rampIndex) @@ -341,6 +355,9 @@ strcpy(easyGUIRampRateSprintfFormat, "%.0f"); // degrees C per minute - a whole number strcpy(easyGUIRampUpperLimitSprintfFormat, "%.0f"); // degrees C - a whole number strcpy(easyGUIRampUpperTimeSprintfFormat, "%.1f"); // In minutes, but in "units" of 0.1 minute + + easyGUIMethodRampOddRowsColour = &GuiVar_injectorMethodRampOddRowsColour; + easyGUIMethodRampEvenRowsColour = &GuiVar_injectorMethodRampEvenRowsColour; } float InjectorMethodRampData::GetRampRateFromGC(unsigned int rampIndex) @@ -404,6 +421,9 @@ strcpy(easyGUIRampRateSprintfFormat, "%.2f"); // In "units" of 0.01 psi per minute - i.e. 2 decimal places strcpy(easyGUIRampUpperLimitSprintfFormat, "%.1f"); // In "units" of 0.1 psi - so 1 decimal place strcpy(easyGUIRampUpperTimeSprintfFormat, "%.1f"); // In minutes, but in "units" of 0.1 minute + + easyGUIMethodRampOddRowsColour = &GuiVar_gasMethodRampOddRowsColour; + easyGUIMethodRampEvenRowsColour = &GuiVar_gasMethodRampEvenRowsColour; } float GasMethodRampData::GetRampRateFromGC(unsigned int rampIndex)
diff -r f0e645cf73a2 -r 26e49e6955bd MethodRampData.h --- a/MethodRampData.h Fri Jul 28 15:53:40 2017 +0000 +++ b/MethodRampData.h Mon Jul 31 15:37:57 2017 +0000 @@ -56,9 +56,15 @@ GuiConst_TEXT* easyGUIRampUpperLimitVariable[EASYGUI_RAMP_LINES]; GuiConst_TEXT* easyGUIRampUpperTimeVariable[EASYGUI_RAMP_LINES]; + // Different units for the method ramp values in each ramp type - so apply a different format string + // when sprintf'ing the values to the corresponding easyGUI variables char easyGUIRampRateSprintfFormat[10]; char easyGUIRampUpperLimitSprintfFormat[10]; char easyGUIRampUpperTimeSprintfFormat[10]; + + // Different variables for the ramp row colours (to show scrolling) + GuiConst_INTCOLOR* easyGUIMethodRampOddRowsColour; + GuiConst_INTCOLOR* easyGUIMethodRampEvenRowsColour; int GetIntRampValueFromGC(char *firstThreeCharsOfCommand, unsigned int rampIndex); @@ -82,6 +88,9 @@ bool gotRampData; bool needToUpdateEasyGUIMethodPageRampVariables; + + static const GuiConst_INTCOLOR oddRampEasyGUIColour; + static const GuiConst_INTCOLOR evenRampEasyGUIColour; };
diff -r f0e645cf73a2 -r 26e49e6955bd QSPIBitmap.cpp --- a/QSPIBitmap.cpp Fri Jul 28 15:53:40 2017 +0000 +++ b/QSPIBitmap.cpp Mon Jul 31 15:37:57 2017 +0000 @@ -78,11 +78,11 @@ FILE *fpsize = fopen(bitmapSizeFilename, "r"); if (fpsize != NULL) { - // We expect the size value to be 5 digits - fread(buff, 5, 1, fpsize); + // We allow the size value to be up to 20 digits + int numRead = fread(buff, 1, 20, fpsize); fclose(fpsize); - buff[5] = '\0'; + buff[numRead] = '\0'; sscanf(buff, "%d", &size); @@ -148,7 +148,7 @@ return true; } -void QSPIBitmap::DisplayAt(GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT32S transparentColour) +void QSPIBitmap::ShowAt(GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT32S transparentColour) { if(bitmapLoaded) { GuiLib_ShowBitmapAt(data, X, Y, transparentColour); @@ -163,6 +163,20 @@ } } +void QSPIBitmap::ShowAreaAt(GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT16S AX1, GuiConst_INT16S AY1, GuiConst_INT16S AX2, GuiConst_INT16S AY2, GuiConst_INT32S transparentColour) +{ + if(bitmapLoaded) { + GuiLib_ShowBitmapAreaAt(data, X, Y, AX1, AY1, AX2, AY2, transparentColour); + } else { + char buff[100]; + sprintf(buff, "Bitmap not loaded - size %d, debugVar1: %d", size, debugVar1); + DebugPrint(buff, X, Y); + + char bitmapSizeFilename[200]; + sprintf(bitmapSizeFilename, "/qspi/%s_BMP.size", name); + DebugPrint(bitmapSizeFilename, X, Y+40); + } +} // QSPIBitmaps class members QSPIBitmaps::QSPIBitmaps() @@ -177,6 +191,11 @@ qspibmArray[COMPONENT_INJECTOR_BITMAP] = NULL; qspibmArray[COMPONENT_GAS_BITMAP] = NULL; + qspibmArray[BOOT_SCREEN_BITMAP] = NULL; + qspibmArray[BLANK_BACKGROUND_BITMAP] = NULL; + qspibmArray[UP_ARROW_BITMAP] = NULL; + qspibmArray[DOWN_ARROW_BITMAP] = NULL; + arraySetUp = false; } @@ -205,6 +224,12 @@ qspibmArray[COMPONENT_INJECTOR_BITMAP] = new QSPIBitmap("GuiStruct_Bitmap_Injector"); qspibmArray[COMPONENT_GAS_BITMAP] = new QSPIBitmap("GuiStruct_Bitmap_Gas"); + qspibmArray[BOOT_SCREEN_BITMAP] = new QSPIBitmap("GuiStruct_Bitmap_BootScreen"); + qspibmArray[BLANK_BACKGROUND_BITMAP] = new QSPIBitmap("GuiStruct_Bitmap_BlankBackground"); + + qspibmArray[UP_ARROW_BITMAP] = new QSPIBitmap("GuiStruct_Bitmap_UpArrow1point5"); + qspibmArray[DOWN_ARROW_BITMAP] = new QSPIBitmap("GuiStruct_Bitmap_DownArrow1point5"); + arraySetUp = true; } } @@ -213,7 +238,7 @@ void QSPIBitmaps::DisplayBitmapAtIfLoaded(int bitmapIndex, GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT32S transparentColour) { if(qspibmArray[bitmapIndex] != NULL) { - qspibmArray[bitmapIndex]->DisplayAt(X, Y, transparentColour); + qspibmArray[bitmapIndex]->ShowAt(X, Y, transparentColour); } } @@ -263,7 +288,27 @@ DisplayBitmapAtIfLoaded(COMPONENT_GAS_BITMAP, 609, 19, SixteenBitColorValue(231, 231, 231)); } +void QSPIBitmaps::DisplayBootScreenBitmap(void) +{ + // No transparency on background bitmaps + DisplayBitmapAtIfLoaded(BOOT_SCREEN_BITMAP, 0, 0, -1); +} +void QSPIBitmaps::DisplayBlankBackgroundBitmap(void) +{ + // No transparency on background bitmaps + DisplayBitmapAtIfLoaded(BLANK_BACKGROUND_BITMAP, 0, 0, -1); +} + +void QSPIBitmaps::DisplayUpArrowBitmap(GuiConst_INT16S X, GuiConst_INT16S Y) +{ + DisplayBitmapAtIfLoaded(UP_ARROW_BITMAP, X, Y, -1); // No transparency +} + +void QSPIBitmaps::DisplayDownArrowBitmap(GuiConst_INT16S X, GuiConst_INT16S Y) +{ + DisplayBitmapAtIfLoaded(DOWN_ARROW_BITMAP, X, Y, -1); // No transparency +} void QSPIBitmaps::ClearArray(void) {
diff -r f0e645cf73a2 -r 26e49e6955bd QSPIBitmap.h --- a/QSPIBitmap.h Fri Jul 28 15:53:40 2017 +0000 +++ b/QSPIBitmap.h Mon Jul 31 15:37:57 2017 +0000 @@ -18,7 +18,8 @@ ~QSPIBitmap(); - void DisplayAt(GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT32S transparentColour); + void ShowAt(GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT32S transparentColour); + void ShowAreaAt(GuiConst_INT16S X, GuiConst_INT16S Y, GuiConst_INT16S AX1, GuiConst_INT16S AY1, GuiConst_INT16S AX2, GuiConst_INT16S AY2, GuiConst_INT32S transparentColour); bool BitmapLoaded(void) { return bitmapLoaded; } @@ -54,6 +55,12 @@ void DisplayInjectorComponentBitmap(void); void DisplayGasComponentBitmap(void); + void DisplayBootScreenBitmap(void); + void DisplayBlankBackgroundBitmap(void); + + void DisplayUpArrowBitmap(GuiConst_INT16S X, GuiConst_INT16S Y); + void DisplayDownArrowBitmap(GuiConst_INT16S X, GuiConst_INT16S Y); + bool AllBitmapsLoaded(void); private: @@ -67,7 +74,11 @@ COMPONENT_DETECTOR_BITMAP = 5, COMPONENT_INJECTOR_BITMAP = 6, COMPONENT_GAS_BITMAP = 7, - QSPIBITMAP_COUNT = 8 }; // 'QSPIBITMAP_COUNT' must always be last + BOOT_SCREEN_BITMAP = 8, + BLANK_BACKGROUND_BITMAP = 9, + UP_ARROW_BITMAP = 10, + DOWN_ARROW_BITMAP = 11, + QSPIBITMAP_COUNT = 12 }; // 'QSPIBITMAP_COUNT' must always be last - it tells the class how large its array should be QSPIBitmap* qspibmArray[QSPIBITMAP_COUNT];
diff -r f0e645cf73a2 -r 26e49e6955bd easyGUIUpdated/GuiStruct.c --- a/easyGUIUpdated/GuiStruct.c Fri Jul 28 15:53:40 2017 +0000 +++ b/easyGUIUpdated/GuiStruct.c Mon Jul 31 15:37:57 2017 +0000 @@ -68,10 +68,9 @@ 80,15,64,0,0,0,0,136,2,148,1,151,0,75,0,3,0,12,80,15, 0,0,0,0,0,136,2,148,1,152,0,76,0,2,0 }; -const GuiConst_INT8U GuiStruct_00002[29] = +const GuiConst_INT8U GuiStruct_00002[15] = { - 2,18,80,12,0,0,0,0,0,31,3,223,1,4,0,18,80,12,0, - 0,0,0,0,31,3,223,1,5,0 + 1,18,80,12,0,0,0,0,0,31,3,223,1,4,0 }; const GuiConst_INT8U GuiStruct_00003[1247] = { @@ -91,9 +90,9 @@ 0,0,0,0,210,0,144,0,1,255,4,82,101,115,58,0,8,80,3,192, 0,0,0,0,94,1,145,0,255,5,0,0,80,3,64,0,0,0,0,164, 1,75,0,1,255,3,78,101,119,0,10,80,15,64,0,0,0,0,224,1, - 75,0,39,0,19,0,6,0,12,80,15,64,0,0,0,0,214,1,59,0, + 75,0,39,0,19,0,5,0,12,80,15,64,0,0,0,0,214,1,59,0, 60,0,42,0,56,2,10,80,15,0,0,0,0,0,224,1,107,0,39,0, - 19,0,7,0,12,80,15,0,0,0,0,0,214,1,101,0,60,0,42,0, + 19,0,6,0,12,80,15,0,0,0,0,0,214,1,101,0,60,0,42,0, 57,2,8,80,3,232,0,0,8,0,80,0,0,11,214,1,110,0,255,6, 0,8,80,3,232,0,0,8,0,80,0,0,11,214,1,145,0,255,7,0, 4,80,15,67,0,0,0,0,16,132,158,2,75,0,70,0,50,0,3,80, @@ -112,9 +111,9 @@ 0,244,1,14,1,255,12,0,0,80,3,64,0,0,0,0,60,0,84,1, 1,2,26,83,116,97,98,105,108,105,115,97,116,105,111,110,32,116,105,109, 101,32,91,109,105,110,115,93,58,0,10,80,15,128,0,0,0,0,124,1, - 35,1,39,0,19,0,6,0,12,80,15,0,0,0,0,0,124,1,25,1, + 35,1,39,0,19,0,5,0,12,80,15,0,0,0,0,0,124,1,25,1, 60,0,40,0,59,2,10,80,15,0,0,0,0,0,124,1,97,1,39,0, - 19,0,7,0,12,80,15,0,0,0,0,0,124,1,87,1,60,0,40,0, + 19,0,6,0,12,80,15,0,0,0,0,0,124,1,87,1,60,0,40,0, 60,2,8,80,3,232,0,0,8,0,80,0,0,11,144,1,84,1,255,13, 0,4,80,15,131,0,0,0,0,16,132,204,1,29,1,60,0,40,0,3, 80,15,169,0,0,0,0,204,1,29,1,60,0,40,0,0,0,80,3,128, @@ -308,7 +307,7 @@ 1,255,16,0,12,80,15,64,0,0,0,0,248,0,148,1,152,0,76,0, 51,0,12,80,15,0,0,0,0,0,144,1,148,1,152,0,76,0,52,0 }; -const GuiConst_INT8U GuiStruct_00008[805] = +const GuiConst_INT8U GuiStruct_00008[845] = { 44,0,80,3,128,0,0,0,0,144,1,40,0,1,3,13,67,111,108, 117,109,110,32,77,101,116,104,111,100,0,0,80,3,64,0,0,0,0,4, @@ -327,22 +326,24 @@ 84,101,109,112,0,0,80,3,0,0,0,0,0,164,1,230,0,1,255,4, 91,161,67,93,0,0,80,3,0,0,0,0,0,68,2,200,0,1,255,9, 72,111,108,100,32,84,105,109,101,0,0,80,3,0,0,0,0,0,68,2, - 230,0,1,255,6,91,109,105,110,115,93,0,8,80,3,128,0,0,0,0, - 170,0,9,1,255,34,0,8,80,3,0,0,0,0,0,170,0,39,1,255, - 35,0,8,80,3,0,0,0,0,0,170,0,69,1,255,36,0,8,80,3, - 0,0,0,0,0,170,0,99,1,255,37,0,8,80,3,0,0,0,0,0, - 170,0,129,1,255,38,0,8,80,3,192,0,0,0,0,34,1,9,1,255, - 39,0,8,80,3,192,0,0,0,0,34,1,39,1,255,40,0,8,80,3, - 192,0,0,0,0,34,1,69,1,255,41,0,8,80,3,192,0,0,0,0, - 34,1,99,1,255,42,0,8,80,3,192,0,0,0,0,34,1,129,1,255, - 43,0,8,80,3,192,0,0,0,0,184,1,9,1,255,44,0,8,80,3, - 192,0,0,0,0,184,1,39,1,255,45,0,8,80,3,192,0,0,0,0, - 184,1,69,1,255,46,0,8,80,3,192,0,0,0,0,184,1,99,1,255, - 47,0,8,80,3,192,0,0,0,0,184,1,129,1,255,48,0,8,80,3, - 192,0,0,0,0,88,2,9,1,255,49,0,8,80,3,192,0,0,0,0, - 88,2,39,1,255,50,0,8,80,3,192,0,0,0,0,88,2,69,1,255, - 51,0,8,80,3,192,0,0,0,0,88,2,99,1,255,52,0,8,80,3, - 192,0,0,0,0,88,2,129,1,255,53,0,12,80,15,64,0,0,0,0, + 230,0,1,255,6,91,109,105,110,115,93,0,8,80,3,135,0,0,0,0, + 34,0,170,0,9,1,255,35,0,8,80,3,7,0,0,0,0,36,0,170, + 0,39,1,255,37,0,8,80,3,7,0,0,0,0,34,0,170,0,69,1, + 255,38,0,8,80,3,7,0,0,0,0,36,0,170,0,99,1,255,39,0, + 8,80,3,7,0,0,0,0,34,0,170,0,129,1,255,40,0,8,80,3, + 199,0,0,0,0,34,0,34,1,9,1,255,41,0,8,80,3,199,0,0, + 0,0,36,0,34,1,39,1,255,42,0,8,80,3,199,0,0,0,0,34, + 0,34,1,69,1,255,43,0,8,80,3,199,0,0,0,0,36,0,34,1, + 99,1,255,44,0,8,80,3,199,0,0,0,0,34,0,34,1,129,1,255, + 45,0,8,80,3,199,0,0,0,0,34,0,184,1,9,1,255,46,0,8, + 80,3,199,0,0,0,0,36,0,184,1,39,1,255,47,0,8,80,3,199, + 0,0,0,0,34,0,184,1,69,1,255,48,0,8,80,3,199,0,0,0, + 0,36,0,184,1,99,1,255,49,0,8,80,3,199,0,0,0,0,34,0, + 184,1,129,1,255,50,0,8,80,3,199,0,0,0,0,34,0,88,2,9, + 1,255,51,0,8,80,3,199,0,0,0,0,36,0,88,2,39,1,255,52, + 0,8,80,3,199,0,0,0,0,34,0,88,2,69,1,255,53,0,8,80, + 3,199,0,0,0,0,36,0,88,2,99,1,255,54,0,8,80,3,199,0, + 0,0,0,34,0,88,2,129,1,255,55,0,12,80,15,64,0,0,0,0, 88,2,235,0,90,0,79,0,252,1,12,80,15,64,0,0,0,0,88,2, 69,1,90,0,79,0,253,1,10,80,15,64,0,0,2,0,8,66,10,0, 193,0,74,0,74,0,0,0,12,80,14,0,0,0,0,0,170,0,100,0, @@ -363,8 +364,8 @@ 3,64,0,0,0,0,180,0,110,0,1,2,12,78,117,100,103,101,32,70, 97,99,116,111,114,0,0,80,3,64,0,0,0,0,180,0,170,0,1,255, 11,68,97,109,112,32,70,97,99,116,111,114,0,8,80,3,192,0,0,0, - 0,224,1,110,0,255,54,0,8,80,3,192,0,0,0,0,224,1,170,0, - 255,55,0,38,80,15,152,0,0,16,0,16,132,48,2,82,0,80,0,35, + 0,224,1,110,0,255,56,0,8,80,3,192,0,0,0,0,224,1,170,0, + 255,57,0,38,80,15,152,0,0,16,0,16,132,48,2,82,0,80,0,35, 0,2,0,1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0, 12,80,15,64,0,0,0,0,154,1,70,0,210,0,60,0,142,2,38,80, 15,152,0,0,16,0,16,132,48,2,142,0,80,0,35,0,2,0,1,255, @@ -373,8 +374,8 @@ 0,180,0,230,0,1,2,17,82,97,109,112,32,78,117,100,103,101,32,70, 97,99,116,111,114,0,0,80,3,64,0,0,0,0,180,0,34,1,1,255, 16,82,97,109,112,32,68,97,109,112,32,70,97,99,116,111,114,0,8,80, - 3,192,0,0,0,0,224,1,230,0,255,56,0,8,80,3,192,0,0,0, - 0,224,1,34,1,255,57,0,38,80,15,152,0,0,16,0,16,132,48,2, + 3,192,0,0,0,0,224,1,230,0,255,58,0,8,80,3,192,0,0,0, + 0,224,1,34,1,255,59,0,38,80,15,152,0,0,16,0,16,132,48,2, 202,0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1,0,4, 69,100,105,116,0,12,80,15,64,0,0,0,0,154,1,190,0,210,0,60, 0,144,2,38,80,15,152,0,0,16,0,16,132,48,2,6,1,80,0,35, @@ -382,7 +383,7 @@ 12,80,15,64,0,0,0,0,154,1,250,0,210,0,60,0,145,2,0,80, 3,80,0,0,0,0,180,0,94,1,1,255,17,67,111,108,46,32,84,101, 109,112,46,32,79,102,102,115,101,116,0,8,80,3,192,0,0,0,0,224, - 1,94,1,255,58,0,4,80,15,131,0,0,0,0,16,132,90,0,64,1, + 1,94,1,255,60,0,4,80,15,131,0,0,0,0,16,132,90,0,64,1, 130,0,50,0,3,80,15,169,0,0,0,0,90,0,64,1,130,0,50,0, 0,38,80,15,152,0,0,16,0,16,132,48,2,66,1,80,0,35,0,2, 0,1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80, @@ -410,8 +411,8 @@ 5,84,101,109,112,58,0,0,80,3,0,0,0,0,0,14,1,160,0,1, 255,7,84,97,114,103,101,116,58,0,0,80,3,64,0,0,0,0,14,1, 230,0,1,255,9,77,97,120,32,116,101,109,112,58,0,8,80,3,64,0, - 0,0,0,144,1,230,0,255,59,0,8,80,3,64,0,0,0,0,144,1, - 110,0,255,60,0,8,80,3,0,0,0,0,0,144,1,160,0,255,61,0, + 0,0,0,144,1,230,0,255,61,0,8,80,3,64,0,0,0,0,144,1, + 110,0,255,62,0,8,80,3,0,0,0,0,0,144,1,160,0,255,63,0, 0,80,3,128,0,0,0,0,144,1,50,0,1,2,6,67,111,108,117,109, 110,0,38,80,15,88,0,0,16,0,16,132,28,2,205,0,80,0,35,0, 2,0,1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12, @@ -419,7 +420,7 @@ 64,0,0,2,0,8,66,213,2,183,0,74,0,74,0,1,0,12,80,15, 0,0,0,0,0,212,2,180,0,75,0,80,0,245,1,0,80,3,104,0, 0,0,0,14,1,34,1,1,255,7,83,116,97,116,117,115,58,0,8,80, - 3,0,0,0,0,0,144,1,34,1,255,62,0,10,80,14,64,0,0,2, + 3,0,0,0,0,0,144,1,34,1,255,64,0,10,80,14,64,0,0,2, 0,8,66,183,0,74,0,74,0,0,0,12,80,14,0,0,0,0,0,180, 0,75,0,80,0,244,1 }; @@ -430,18 +431,18 @@ 0,0,148,1,64,6,0,80,3,128,0,0,0,0,144,1,40,0,1,3, 18,67,111,108,117,109,110,32,73,110,102,111,114,109,97,116,105,111,110,0, 0,80,3,64,0,0,0,0,220,0,4,1,1,2,3,73,68,58,0,8, - 80,3,0,0,0,0,0,94,1,4,1,255,63,0,0,80,3,0,0,0, + 80,3,0,0,0,0,0,94,1,4,1,255,65,0,0,80,3,0,0,0, 0,0,220,0,54,1,1,255,3,79,68,58,0,8,80,3,0,0,0,0, - 0,94,1,54,1,255,64,0,8,80,3,64,0,0,0,0,94,1,90,0, - 255,65,0,0,80,3,0,0,0,0,0,220,0,90,0,1,255,5,84,121, + 0,94,1,54,1,255,66,0,8,80,3,64,0,0,0,0,94,1,90,0, + 255,67,0,0,80,3,0,0,0,0,0,220,0,90,0,1,255,5,84,121, 112,101,58,0,0,80,3,0,0,0,0,0,220,0,210,0,1,255,7,76, 101,110,103,116,104,58,0,8,80,3,0,0,0,0,0,94,1,210,0,255, - 66,0,10,80,15,64,0,0,2,0,8,66,10,0,193,0,74,0,74,0, + 68,0,10,80,15,64,0,0,2,0,8,66,10,0,193,0,74,0,74,0, 0,0,12,80,14,0,0,0,0,0,170,0,110,0,120,0,246,1,10,80, 15,64,0,0,2,0,8,66,203,2,193,0,74,0,74,0,1,0,12,80, 15,0,0,0,0,0,178,2,170,0,110,0,120,0,247,1,0,80,3,64, 0,0,0,0,220,0,150,0,1,255,9,77,97,120,32,116,101,109,112,58, - 0,8,80,3,64,0,0,0,0,94,1,150,0,255,59,0,38,80,15,88, + 0,8,80,3,64,0,0,0,0,94,1,150,0,255,61,0,38,80,15,88, 0,0,16,0,16,132,204,1,125,0,80,0,35,0,2,0,1,255,255,255, 0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,0,0,0,0, 0,184,1,110,0,120,0,70,0,3,2 @@ -455,7 +456,7 @@ 112,114,111,102,105,108,101,0,0,80,3,64,0,0,0,0,15,0,125,0, 1,2,4,84,101,109,112,0,0,80,3,64,0,0,0,0,30,0,160,0, 1,255,4,91,161,67,93,0,8,80,3,128,0,0,0,0,124,1,230,0, - 255,67,0,8,80,3,128,0,0,0,0,124,1,134,1,255,68,0,29,80, + 255,69,0,8,80,3,128,0,0,0,0,124,1,134,1,255,70,0,29,80, 15,64,0,0,0,0,130,0,84,1,244,1,6,255,255,4,10,0,10,0, 2,29,0,0,2,0,4,0,4,0,1,0,2,0,1,0,0,0,0,0, 100,0,0,0,100,0,0,0,50,0,0,0,0,0,0,0,0,0,1,0, @@ -476,11 +477,11 @@ 128,0,80,3,168,0,0,0,0,144,1,50,0,1,3,11,71,67,32, 67,111,109,109,97,110,100,115,0,0,80,3,64,0,0,0,0,35,0,105, 0,1,2,3,84,120,58,0,3,80,15,64,0,0,0,0,30,0,75,0, - 9,1,42,0,0,8,80,3,120,0,0,8,0,69,0,40,0,0,0,80, - 0,105,0,2,70,0,0,80,3,0,0,0,0,0,239,1,105,0,1,2, + 9,1,42,0,0,8,80,3,120,0,0,8,0,71,0,40,0,0,0,80, + 0,105,0,2,72,0,0,80,3,0,0,0,0,0,239,1,105,0,1,2, 3,82,120,58,0,3,80,15,104,0,0,0,0,234,1,75,0,9,1,42, - 0,0,8,80,3,120,0,0,8,0,69,0,40,0,0,0,31,2,105,0, - 2,71,0,4,80,15,131,0,0,0,0,16,132,139,1,70,0,130,0,50, + 0,0,8,80,3,120,0,0,8,0,71,0,40,0,0,0,31,2,105,0, + 2,73,0,4,80,15,131,0,0,0,0,16,132,139,1,70,0,130,0,50, 0,3,80,15,169,0,0,0,0,139,1,70,0,130,0,50,0,0,0,80, 3,128,0,0,0,0,139,1,105,0,1,255,4,83,101,110,100,0,12,80, 15,128,0,0,0,0,139,1,60,0,150,0,70,0,40,35,0,80,3,0, @@ -604,11 +605,11 @@ 0,74,1,1,255,7,84,97,114,103,101,116,58,0,0,80,3,0,0,0, 0,0,250,0,90,0,1,255,5,84,121,112,101,58,0,0,80,3,0,0, 0,0,0,124,1,90,0,1,255,3,69,67,68,0,8,80,3,64,0,0, - 0,0,124,1,34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,130, - 0,255,73,0,8,80,3,0,0,0,0,0,124,1,170,0,255,74,0,8, - 80,3,0,0,0,0,0,124,1,210,0,255,75,0,8,80,3,0,0,0, - 0,0,124,1,250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,114, - 1,255,77,0,8,80,3,0,0,0,0,0,124,1,74,1,255,78,0 + 0,0,124,1,34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,130, + 0,255,75,0,8,80,3,0,0,0,0,0,124,1,170,0,255,76,0,8, + 80,3,0,0,0,0,0,124,1,210,0,255,77,0,8,80,3,0,0,0, + 0,0,124,1,250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,114, + 1,255,79,0,8,80,3,0,0,0,0,0,124,1,74,1,255,80,0 }; const GuiConst_INT8U GuiStruct_00015[339] = { @@ -625,10 +626,10 @@ 255,5,84,121,112,101,58,0,0,80,3,0,0,0,0,0,124,1,90,0, 1,255,3,70,73,68,0,0,80,3,0,0,0,0,0,250,0,74,1,1, 255,7,84,97,114,103,101,116,58,0,8,80,3,64,0,0,0,0,124,1, - 34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,130,0,255,73,0, - 8,80,3,0,0,0,0,0,124,1,170,0,255,74,0,8,80,3,0,0, - 0,0,0,124,1,210,0,255,75,0,8,80,3,0,0,0,0,0,124,1, - 250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,74,1,255,78,0 + 34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,130,0,255,75,0, + 8,80,3,0,0,0,0,0,124,1,170,0,255,76,0,8,80,3,0,0, + 0,0,0,124,1,210,0,255,77,0,8,80,3,0,0,0,0,0,124,1, + 250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,74,1,255,80,0 }; const GuiConst_INT8U GuiStruct_00016[382] = { @@ -646,12 +647,12 @@ 0,0,0,240,0,90,0,1,255,5,84,121,112,101,58,0,0,80,3,0, 0,0,0,0,240,0,74,1,1,255,7,84,97,114,103,101,116,58,0,0, 80,3,0,0,0,0,0,124,1,90,0,1,255,3,70,80,68,0,8,80, - 3,64,0,0,0,0,124,1,34,1,255,72,0,8,80,3,0,0,0,0, - 0,124,1,130,0,255,79,0,8,80,3,0,0,0,0,0,124,1,170,0, - 255,74,0,8,80,3,0,0,0,0,0,124,1,210,0,255,75,0,8,80, - 3,0,0,0,0,0,124,1,250,0,255,76,0,8,80,3,0,0,0,0, - 0,124,1,114,1,255,80,0,8,80,3,0,0,0,0,0,124,1,74,1, - 255,78,0 + 3,64,0,0,0,0,124,1,34,1,255,74,0,8,80,3,0,0,0,0, + 0,124,1,130,0,255,81,0,8,80,3,0,0,0,0,0,124,1,170,0, + 255,76,0,8,80,3,0,0,0,0,0,124,1,210,0,255,77,0,8,80, + 3,0,0,0,0,0,124,1,250,0,255,78,0,8,80,3,0,0,0,0, + 0,124,1,114,1,255,82,0,8,80,3,0,0,0,0,0,124,1,74,1, + 255,80,0 }; const GuiConst_INT8U GuiStruct_00017[339] = { @@ -668,10 +669,10 @@ 255,5,84,121,112,101,58,0,0,80,3,0,0,0,0,0,250,0,74,1, 1,255,7,84,97,114,103,101,116,58,0,0,80,3,0,0,0,0,0,124, 1,90,0,1,255,3,78,80,68,0,8,80,3,64,0,0,0,0,124,1, - 34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,130,0,255,73,0, - 8,80,3,0,0,0,0,0,124,1,170,0,255,74,0,8,80,3,0,0, - 0,0,0,124,1,210,0,255,75,0,8,80,3,0,0,0,0,0,124,1, - 250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,74,1,255,78,0 + 34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,130,0,255,75,0, + 8,80,3,0,0,0,0,0,124,1,170,0,255,76,0,8,80,3,0,0, + 0,0,0,124,1,210,0,255,77,0,8,80,3,0,0,0,0,0,124,1, + 250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,74,1,255,80,0 }; const GuiConst_INT8U GuiStruct_00018[109] = { @@ -693,7 +694,7 @@ 0,0,0,150,0,165,0,1,2,12,78,117,100,103,101,32,70,97,99,116, 111,114,0,0,80,3,64,0,0,0,0,150,0,225,0,1,255,11,68,97, 109,112,32,70,97,99,116,111,114,0,8,80,3,192,0,0,0,0,184,1, - 165,0,255,81,0,8,80,3,192,0,0,0,0,184,1,225,0,255,82,0, + 165,0,255,83,0,8,80,3,192,0,0,0,0,184,1,225,0,255,84,0, 38,80,15,152,0,0,16,0,16,132,48,2,137,0,80,0,35,0,2,0, 1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15, 0,0,0,0,0,48,2,130,0,200,0,50,0,46,3,38,80,15,152,0, @@ -727,10 +728,10 @@ 255,5,84,121,112,101,58,0,0,80,3,0,0,0,0,0,250,0,74,1, 1,255,7,84,97,114,103,101,116,58,0,0,80,3,0,0,0,0,0,124, 1,90,0,1,255,3,80,73,68,0,8,80,3,64,0,0,0,0,124,1, - 34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,130,0,255,73,0, - 8,80,3,0,0,0,0,0,124,1,170,0,255,74,0,8,80,3,0,0, - 0,0,0,124,1,210,0,255,75,0,8,80,3,0,0,0,0,0,124,1, - 250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,74,1,255,78,0 + 34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,130,0,255,75,0, + 8,80,3,0,0,0,0,0,124,1,170,0,255,76,0,8,80,3,0,0, + 0,0,0,124,1,210,0,255,77,0,8,80,3,0,0,0,0,0,124,1, + 250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,74,1,255,80,0 }; const GuiConst_INT8U GuiStruct_00021[341] = { @@ -747,11 +748,11 @@ 255,7,84,97,114,103,101,116,58,0,0,80,3,0,0,0,0,0,250,0, 90,0,1,255,5,84,121,112,101,58,0,0,80,3,0,0,0,0,0,124, 1,90,0,1,255,5,83,80,68,73,68,0,8,80,3,64,0,0,0,0, - 124,1,34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,130,0,255, - 73,0,8,80,3,0,0,0,0,0,124,1,170,0,255,74,0,8,80,3, - 0,0,0,0,0,124,1,210,0,255,75,0,8,80,3,0,0,0,0,0, - 124,1,250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,74,1,255, - 78,0 + 124,1,34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,130,0,255, + 75,0,8,80,3,0,0,0,0,0,124,1,170,0,255,76,0,8,80,3, + 0,0,0,0,0,124,1,210,0,255,77,0,8,80,3,0,0,0,0,0, + 124,1,250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,74,1,255, + 80,0 }; const GuiConst_INT8U GuiStruct_00022[341] = { @@ -762,17 +763,17 @@ 130,0,1,255,6,82,97,110,103,101,58,0,0,80,3,64,0,0,0,0, 250,0,90,0,1,255,5,84,121,112,101,58,0,0,80,3,0,0,0,0, 0,124,1,90,0,1,255,3,84,67,68,0,8,80,3,0,0,0,0,0, - 124,1,130,0,255,83,0,0,80,3,64,0,0,0,0,250,0,170,0,1, + 124,1,130,0,255,85,0,0,80,3,64,0,0,0,0,250,0,170,0,1, 255,10,70,117,101,108,32,102,108,111,119,58,0,8,80,3,0,0,0,0, - 0,124,1,170,0,255,74,0,0,80,3,0,0,0,0,0,250,0,210,0, + 0,124,1,170,0,255,76,0,0,80,3,0,0,0,0,0,250,0,210,0, 1,255,9,65,105,114,32,102,108,111,119,58,0,8,80,3,0,0,0,0, - 0,124,1,210,0,255,75,0,0,80,3,0,0,0,0,0,250,0,250,0, + 0,124,1,210,0,255,77,0,0,80,3,0,0,0,0,0,250,0,250,0, 1,255,7,83,116,97,116,117,115,58,0,8,80,3,0,0,0,0,0,124, - 1,250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,74,1,255,84, + 1,250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,74,1,255,86, 0,0,80,3,0,0,0,0,0,250,0,74,1,1,255,9,80,111,108,97, 114,105,116,121,58,0,0,80,3,0,0,0,0,0,250,0,34,1,1,255, 5,84,101,109,112,58,0,8,80,3,64,0,0,0,0,124,1,34,1,255, - 85,0 + 87,0 }; const GuiConst_INT8U GuiStruct_00023[339] = { @@ -789,10 +790,10 @@ 255,7,84,97,114,103,101,116,58,0,0,80,3,0,0,0,0,0,250,0, 90,0,1,255,5,84,121,112,101,58,0,0,80,3,0,0,0,0,0,124, 1,90,0,1,255,3,84,88,76,0,8,80,3,64,0,0,0,0,124,1, - 34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,130,0,255,73,0, - 8,80,3,0,0,0,0,0,124,1,170,0,255,74,0,8,80,3,0,0, - 0,0,0,124,1,210,0,255,75,0,8,80,3,0,0,0,0,0,124,1, - 250,0,255,76,0,8,80,3,0,0,0,0,0,124,1,74,1,255,78,0 + 34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,130,0,255,75,0, + 8,80,3,0,0,0,0,0,124,1,170,0,255,76,0,8,80,3,0,0, + 0,0,0,124,1,210,0,255,77,0,8,80,3,0,0,0,0,0,124,1, + 250,0,255,78,0,8,80,3,0,0,0,0,0,124,1,74,1,255,80,0 }; const GuiConst_INT8U GuiStruct_00024[35] = { @@ -807,7 +808,7 @@ 1,170,0,250,0,60,0,0,12,80,15,0,0,0,0,0,144,1,120,0, 144,1,160,0,64,31,0,80,3,129,0,0,0,0,144,1,210,0,1,255, 15,69,110,116,101,114,32,76,111,99,107,32,67,111,100,101,0,8,80,3, - 0,0,0,0,0,144,1,64,1,255,86,0,4,80,14,67,0,0,0,0, + 0,0,0,0,0,144,1,64,1,255,88,0,4,80,14,67,0,0,0,0, 16,132,148,1,152,0,76,0,3,80,14,41,0,0,0,0,148,1,152,0, 76,0,0,0,80,3,128,0,0,0,0,78,0,194,1,1,2,6,82,101, 116,117,114,110,0,12,80,14,64,0,0,0,0,148,1,152,0,76,0,164, @@ -821,15 +822,15 @@ }; const GuiConst_INT8U GuiStruct_00027[995] = { - 40,8,80,3,64,0,0,0,0,20,0,70,0,3,87,0,8,80,3, - 248,0,0,8,0,88,0,60,0,0,0,74,1,70,0,255,89,0,0,80, + 40,8,80,3,64,0,0,0,0,20,0,70,0,3,89,0,8,80,3, + 248,0,0,8,0,90,0,60,0,0,0,74,1,70,0,255,91,0,0,80, 3,40,0,0,0,0,99,1,70,0,1,255,3,32,46,32,0,8,80,3, - 56,0,0,8,0,90,0,60,0,0,0,154,1,70,0,255,91,0,0,80, + 56,0,0,8,0,92,0,60,0,0,0,154,1,70,0,255,93,0,0,80, 3,40,0,0,0,0,179,1,70,0,1,255,3,32,46,32,0,8,80,3, - 248,0,0,8,0,92,0,60,0,0,0,234,1,70,0,255,93,0,0,80, + 248,0,0,8,0,94,0,60,0,0,0,234,1,70,0,255,95,0,0,80, 3,40,0,0,0,0,3,2,70,0,1,255,3,32,46,32,0,8,80,3, - 248,0,54,8,0,0,0,94,0,0,0,60,0,0,0,58,2,70,0,255, - 95,0,0,80,3,64,0,0,0,0,30,0,4,1,1,3,17,80,114,101, + 248,0,54,8,0,0,0,96,0,0,0,60,0,0,0,58,2,70,0,255, + 97,0,0,80,3,64,0,0,0,0,30,0,4,1,1,3,17,80,114,101, 115,115,32,39,46,39,32,116,111,32,109,111,118,101,0,0,80,3,0,0, 0,0,0,30,0,44,1,1,255,13,116,111,32,110,101,120,116,32,102,105, 101,108,100,0,38,80,15,144,0,0,16,0,74,1,120,0,50,0,50,0, @@ -877,51 +878,51 @@ 59,0,80,3,128,0,0,0,0,144,1,50,0,1,3,18,78,101,116, 119,111,114,107,32,80,97,114,97,109,101,116,101,114,115,0,0,80,3,64, 0,0,0,0,110,0,110,0,1,2,5,80,111,114,116,58,0,8,80,3, - 248,0,0,8,0,96,0,80,0,0,11,144,1,110,0,255,97,0,12,80, + 248,0,0,8,0,98,0,80,0,0,11,144,1,110,0,255,99,0,12,80, 15,192,0,0,0,0,144,1,80,0,120,0,40,0,204,11,38,80,15,88, 0,0,16,0,16,132,65,2,83,0,80,0,35,0,2,0,1,255,255,255, 0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,0,0,0,0, 0,54,2,76,0,100,0,50,0,208,11,0,80,3,104,0,0,0,0,110, 0,160,0,1,255,11,73,80,32,65,100,100,114,101,115,115,58,0,8,80, - 3,248,0,0,8,0,98,0,50,0,0,0,74,1,160,0,255,99,0,12, + 3,248,0,0,8,0,100,0,50,0,0,0,74,1,160,0,255,101,0,12, 80,15,0,0,0,0,0,84,1,130,0,70,0,40,0,214,11,0,80,3, 40,0,0,0,0,99,1,160,0,1,255,3,32,46,32,0,8,80,3,56, - 0,0,8,0,100,0,50,0,0,0,144,1,160,0,255,101,0,12,80,15, + 0,0,8,0,102,0,50,0,0,0,144,1,160,0,255,103,0,12,80,15, 0,0,0,0,0,154,1,130,0,70,0,40,0,215,11,0,80,3,40,0, 0,0,0,174,1,160,0,1,255,3,32,46,32,0,8,80,3,248,0,0, - 8,0,102,0,50,0,0,0,214,1,160,0,255,103,0,12,80,15,0,0, + 8,0,104,0,50,0,0,0,214,1,160,0,255,105,0,12,80,15,0,0, 0,0,0,224,1,130,0,70,0,40,0,216,11,0,80,3,40,0,0,0, 0,244,1,160,0,1,255,3,32,46,32,0,8,80,3,248,0,0,8,0, - 104,0,50,0,0,0,28,2,160,0,255,105,0,12,80,15,0,0,0,0, + 106,0,50,0,0,0,28,2,160,0,255,107,0,12,80,15,0,0,0,0, 0,38,2,130,0,70,0,40,0,217,11,38,80,15,88,0,0,16,0,16, 132,65,2,133,0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15, 1,0,4,69,100,105,116,0,12,80,15,0,0,0,0,0,54,2,126,0, 100,0,50,0,218,11,0,80,3,104,0,0,0,0,110,0,210,0,1,255, 12,83,117,98,110,101,116,32,77,97,115,107,58,0,8,80,3,248,0,0, - 8,0,106,0,50,0,0,0,74,1,210,0,255,107,0,12,80,15,0,0, + 8,0,108,0,50,0,0,0,74,1,210,0,255,109,0,12,80,15,0,0, 0,0,0,84,1,180,0,70,0,40,0,224,11,0,80,3,40,0,0,0, 0,99,1,210,0,1,255,3,32,46,32,0,8,80,3,56,0,0,8,0, - 108,0,50,0,0,0,144,1,210,0,255,109,0,12,80,15,0,0,0,0, + 110,0,50,0,0,0,144,1,210,0,255,111,0,12,80,15,0,0,0,0, 0,154,1,180,0,70,0,40,0,225,11,0,80,3,40,0,0,0,0,174, - 1,210,0,1,255,3,32,46,32,0,8,80,3,248,0,0,8,0,110,0, - 50,0,0,0,214,1,210,0,255,111,0,12,80,15,0,0,0,0,0,224, + 1,210,0,1,255,3,32,46,32,0,8,80,3,248,0,0,8,0,112,0, + 50,0,0,0,214,1,210,0,255,113,0,12,80,15,0,0,0,0,0,224, 1,180,0,70,0,40,0,226,11,0,80,3,40,0,0,0,0,244,1,210, - 0,1,255,3,32,46,32,0,8,80,3,248,0,0,8,0,112,0,50,0, - 0,0,28,2,210,0,255,113,0,12,80,15,0,0,0,0,0,38,2,180, + 0,1,255,3,32,46,32,0,8,80,3,248,0,0,8,0,114,0,50,0, + 0,0,28,2,210,0,255,115,0,12,80,15,0,0,0,0,0,38,2,180, 0,70,0,40,0,227,11,38,80,15,88,0,0,16,0,16,132,65,2,183, 0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1,0,4,69, 100,105,116,0,12,80,15,0,0,0,0,0,54,2,176,0,100,0,50,0, 228,11,0,80,3,104,0,0,0,0,110,0,4,1,1,255,8,71,97,116, - 101,119,97,121,58,0,8,80,3,248,0,0,8,0,114,0,50,0,0,0, - 74,1,4,1,255,115,0,12,80,15,0,0,0,0,0,84,1,230,0,70, + 101,119,97,121,58,0,8,80,3,248,0,0,8,0,116,0,50,0,0,0, + 74,1,4,1,255,117,0,12,80,15,0,0,0,0,0,84,1,230,0,70, 0,40,0,234,11,0,80,3,40,0,0,0,0,99,1,4,1,1,255,3, - 32,46,32,0,8,80,3,56,0,0,8,0,116,0,50,0,0,0,144,1, - 4,1,255,117,0,12,80,15,0,0,0,0,0,154,1,230,0,70,0,40, + 32,46,32,0,8,80,3,56,0,0,8,0,118,0,50,0,0,0,144,1, + 4,1,255,119,0,12,80,15,0,0,0,0,0,154,1,230,0,70,0,40, 0,235,11,0,80,3,40,0,0,0,0,174,1,4,1,1,255,3,32,46, - 32,0,8,80,3,248,0,0,8,0,118,0,50,0,0,0,214,1,4,1, - 255,119,0,12,80,15,0,0,0,0,0,224,1,230,0,70,0,40,0,236, + 32,0,8,80,3,248,0,0,8,0,120,0,50,0,0,0,214,1,4,1, + 255,121,0,12,80,15,0,0,0,0,0,224,1,230,0,70,0,40,0,236, 11,0,80,3,40,0,0,0,0,244,1,4,1,1,255,3,32,46,32,0, - 8,80,3,248,0,0,8,0,120,0,50,0,0,0,28,2,4,1,255,121, + 8,80,3,248,0,0,8,0,122,0,50,0,0,0,28,2,4,1,255,123, 0,12,80,15,0,0,0,0,0,38,2,230,0,70,0,40,0,237,11,38, 80,15,88,0,0,16,0,16,132,65,2,233,0,80,0,35,0,2,0,1, 255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,0, @@ -957,8 +958,8 @@ 0,1,0,12,80,15,64,0,0,0,0,188,2,170,0,100,0,120,0,159, 2,0,80,3,64,0,0,0,0,180,0,110,0,1,2,6,78,111,114,109, 97,108,0,0,80,3,64,0,0,0,0,180,0,170,0,1,255,7,67,111, - 111,108,105,110,103,0,8,80,3,192,0,0,0,0,224,1,110,0,255,122, - 0,8,80,3,192,0,0,0,0,224,1,170,0,255,123,0,38,80,15,152, + 111,108,105,110,103,0,8,80,3,192,0,0,0,0,224,1,110,0,255,124, + 0,8,80,3,192,0,0,0,0,224,1,170,0,255,125,0,38,80,15,152, 0,0,16,0,16,132,48,2,82,0,80,0,35,0,2,0,1,255,255,255, 0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,64,0,0,0, 0,154,1,75,0,210,0,50,0,162,2,38,80,15,152,0,0,16,0,16, @@ -967,8 +968,8 @@ 210,0,50,0,163,2,0,80,3,80,0,0,0,0,180,0,230,0,1,2, 14,68,72,32,67,97,108,105,98,114,97,116,105,111,110,0,0,80,3,64, 0,0,0,0,180,0,34,1,1,255,7,77,105,110,105,109,117,109,0,8, - 80,3,192,0,0,0,0,224,1,230,0,255,124,0,8,80,3,192,0,0, - 0,0,224,1,34,1,255,125,0,38,80,15,152,0,0,16,0,16,132,48, + 80,3,192,0,0,0,0,224,1,230,0,255,126,0,8,80,3,192,0,0, + 0,0,224,1,34,1,255,127,0,38,80,15,152,0,0,16,0,16,132,48, 2,202,0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1,0, 4,69,100,105,116,0,12,80,15,64,0,0,0,0,154,1,195,0,210,0, 50,0,164,2,38,80,15,152,0,0,16,0,16,132,48,2,6,1,80,0, @@ -1002,7 +1003,7 @@ 0,0,144,1,148,1,175,0,75,0,0,4,80,15,3,0,0,0,0,16, 132,144,1,148,1,175,0,76,0,0,80,3,1,0,0,0,0,144,1,194, 1,1,2,12,67,108,101,97,114,32,69,114,114,111,114,115,0,8,80,3, - 128,0,0,0,0,144,1,200,0,2,126,0,12,80,15,128,0,0,0,0, + 128,0,0,0,0,144,1,200,0,2,128,0,12,80,15,128,0,0,0,0, 144,1,148,1,180,0,75,0,88,2 }; const GuiConst_INT8U GuiStruct_00033[142] = @@ -1011,7 +1012,7 @@ 32,71,67,32,105,115,32,110,111,116,32,114,101,97,100,121,32,116,111,32, 114,117,110,46,0,0,80,3,0,0,0,0,0,144,1,200,0,1,255,21, 73,116,115,32,99,117,114,114,101,110,116,32,115,116,97,116,101,32,105,115, - 58,0,8,80,3,3,0,0,0,0,23,0,144,1,250,0,255,127,0,10, + 58,0,8,80,3,3,0,0,0,0,23,0,144,1,250,0,255,129,0,10, 80,14,64,0,0,0,0,148,1,151,0,75,0,2,0,12,80,14,0,0, 0,0,0,128,1,200,0,96,0,1,0,2,80,6,0,0,0,0,0,148, 1,64,6 @@ -1021,12 +1022,12 @@ 26,0,80,3,168,0,0,0,0,144,1,50,0,1,3,21,71,97,115, 32,66,97,99,107,32,80,114,101,115,115,117,114,101,32,68,65,67,0,0, 80,3,232,0,0,0,0,144,1,150,0,1,2,5,48,32,80,83,73,0, - 8,80,3,232,0,0,0,0,224,1,150,0,255,128,0,38,80,15,88,0, + 8,80,3,232,0,0,0,0,224,1,150,0,255,130,0,38,80,15,88,0, 0,16,0,16,132,244,1,120,0,80,0,35,0,2,0,1,255,255,255,0, 0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,64,0,0,0,0, 224,1,100,0,120,0,65,0,123,23,0,80,3,232,0,0,0,0,144,1, 200,0,1,255,6,53,48,32,80,83,73,0,8,80,3,232,0,0,0,0, - 224,1,200,0,255,129,0,38,80,15,88,0,0,16,0,16,132,244,1,176, + 224,1,200,0,255,131,0,38,80,15,88,0,0,16,0,16,132,244,1,176, 0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1,0,4,69, 100,105,116,0,12,80,15,64,0,0,0,0,224,1,165,0,120,0,65,0, 124,23,4,80,15,131,0,0,0,0,16,132,144,1,250,0,130,0,50,0, @@ -1056,7 +1057,7 @@ 74,0,74,0,1,0,12,80,15,0,0,0,0,0,188,2,170,0,100,0, 120,0,49,1,2,80,6,0,0,0,0,0,148,1,64,6,0,80,3,168, 0,0,0,0,144,1,45,0,1,3,15,71,97,115,32,67,97,108,105,98, - 114,97,116,105,111,110,0,37,80,3,0,0,0,0,0,140,0,95,0,130, + 114,97,116,105,111,110,0,37,80,3,0,0,0,0,0,140,0,95,0,132, 0,0,8,3,45,0,0,1,0,80,3,64,0,0,0,0,170,0,110,0, 1,2,6,72,101,108,105,117,109,0,12,80,15,0,0,0,0,0,110,0, 80,0,190,0,45,0,156,19,0,80,3,0,0,0,0,0,170,0,155,0, @@ -1067,49 +1068,49 @@ 104,1,90,0,1,255,3,68,65,67,0,0,80,3,0,0,0,0,0,38, 2,90,0,1,255,4,70,108,111,119,0,0,80,3,0,0,0,0,0,64, 1,140,0,1,255,1,49,0,8,80,3,232,0,0,0,0,164,1,140,0, - 255,131,0,38,80,15,88,0,0,16,0,16,132,184,1,110,0,80,0,35, + 255,133,0,38,80,15,88,0,0,16,0,16,132,184,1,110,0,80,0,35, 0,2,0,1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0, 12,80,15,192,0,0,0,0,23,2,108,0,150,0,40,0,166,19,8,80, - 3,232,0,0,0,0,68,2,140,0,255,132,0,38,80,15,88,0,0,16, + 3,232,0,0,0,0,68,2,140,0,255,134,0,38,80,15,88,0,0,16, 0,16,132,88,2,110,0,80,0,35,0,2,0,1,255,255,255,0,0,0, 0,15,1,0,4,69,100,105,116,0,12,80,15,192,0,0,0,0,178,2, 108,0,140,0,40,0,167,19,0,80,3,104,0,0,0,0,64,1,180,0, - 1,255,1,50,0,8,80,3,232,0,0,0,0,164,1,180,0,255,133,0, + 1,255,1,50,0,8,80,3,232,0,0,0,0,164,1,180,0,255,135,0, 38,80,15,88,0,0,16,0,16,132,184,1,150,0,80,0,35,0,2,0, 1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15, 192,0,0,0,0,23,2,148,0,150,0,40,0,168,19,8,80,3,232,0, - 0,0,0,68,2,180,0,255,134,0,38,80,15,88,0,0,16,0,16,132, + 0,0,0,68,2,180,0,255,136,0,38,80,15,88,0,0,16,0,16,132, 88,2,150,0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1, 0,4,69,100,105,116,0,12,80,15,192,0,0,0,0,178,2,148,0,140, 0,40,0,169,19,0,80,3,104,0,0,0,0,64,1,220,0,1,255,1, - 51,0,8,80,3,232,0,0,0,0,164,1,220,0,255,135,0,38,80,15, + 51,0,8,80,3,232,0,0,0,0,164,1,220,0,255,137,0,38,80,15, 88,0,0,16,0,16,132,184,1,190,0,80,0,35,0,2,0,1,255,255, 255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,192,0,0, 0,0,23,2,188,0,150,0,40,0,170,19,8,80,3,232,0,0,0,0, - 68,2,220,0,255,136,0,38,80,15,88,0,0,16,0,16,132,88,2,190, + 68,2,220,0,255,138,0,38,80,15,88,0,0,16,0,16,132,88,2,190, 0,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1,0,4,69, 100,105,116,0,12,80,15,192,0,0,0,0,178,2,188,0,140,0,40,0, 171,19,0,80,3,104,0,0,0,0,64,1,4,1,1,255,1,52,0,8, - 80,3,232,0,0,0,0,164,1,4,1,255,137,0,38,80,15,88,0,0, + 80,3,232,0,0,0,0,164,1,4,1,255,139,0,38,80,15,88,0,0, 16,0,16,132,184,1,230,0,80,0,35,0,2,0,1,255,255,255,0,0, 0,0,15,1,0,4,69,100,105,116,0,12,80,15,192,0,0,0,0,23, 2,228,0,150,0,40,0,172,19,8,80,3,232,0,0,0,0,68,2,4, - 1,255,138,0,38,80,15,88,0,0,16,0,16,132,88,2,230,0,80,0, + 1,255,140,0,38,80,15,88,0,0,16,0,16,132,88,2,230,0,80,0, 35,0,2,0,1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116, 0,12,80,15,192,0,0,0,0,178,2,228,0,140,0,40,0,173,19,0, 80,3,104,0,0,0,0,64,1,44,1,1,255,1,53,0,8,80,3,232, - 0,0,0,0,164,1,44,1,255,139,0,38,80,15,88,0,0,16,0,16, + 0,0,0,0,164,1,44,1,255,141,0,38,80,15,88,0,0,16,0,16, 132,184,1,14,1,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15, 1,0,4,69,100,105,116,0,12,80,15,192,0,0,0,0,23,2,12,1, - 150,0,40,0,174,19,8,80,3,232,0,0,0,0,68,2,44,1,255,140, + 150,0,40,0,174,19,8,80,3,232,0,0,0,0,68,2,44,1,255,142, 0,38,80,15,88,0,0,16,0,16,132,88,2,14,1,80,0,35,0,2, 0,1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80, 15,192,0,0,0,0,178,2,12,1,140,0,40,0,175,19,0,80,3,104, 0,0,0,0,64,1,84,1,1,255,1,54,0,8,80,3,232,0,0,0, - 0,164,1,84,1,255,141,0,38,80,15,88,0,0,16,0,16,132,184,1, + 0,164,1,84,1,255,143,0,38,80,15,88,0,0,16,0,16,132,184,1, 54,1,80,0,35,0,2,0,1,255,255,255,0,0,0,0,15,1,0,4, 69,100,105,116,0,12,80,15,192,0,0,0,0,23,2,52,1,150,0,40, - 0,176,19,8,80,3,232,0,0,0,0,68,2,84,1,255,142,0,38,80, + 0,176,19,8,80,3,232,0,0,0,0,68,2,84,1,255,144,0,38,80, 15,88,0,0,16,0,16,132,88,2,54,1,80,0,35,0,2,0,1,255, 255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,192,0, 0,0,0,178,2,52,1,140,0,40,0,177,19,38,80,15,152,0,0,16, @@ -1125,7 +1126,7 @@ 33,0,80,3,168,0,0,0,0,144,1,50,0,1,3,30,71,97,115, 32,67,104,97,110,110,101,108,32,68,65,67,32,97,110,100,32,65,68,67, 32,86,97,108,117,101,115,0,37,80,3,0,0,0,0,0,59,1,90,0, - 143,0,0,8,4,33,0,0,1,0,80,3,64,0,0,0,0,84,1,106, + 145,0,0,8,4,33,0,0,1,0,80,3,64,0,0,0,0,84,1,106, 0,1,2,10,83,112,108,105,116,32,102,108,111,119,0,12,80,15,0,0, 0,0,0,44,1,83,0,210,0,30,0,108,27,0,80,3,0,0,0,0, 0,84,1,139,0,1,255,14,73,110,108,101,116,32,80,114,101,115,115,117, @@ -1135,12 +1136,12 @@ 80,3,0,0,0,0,0,84,1,205,0,1,255,10,65,105,114,47,77,97, 107,101,117,112,0,12,80,15,0,0,0,0,0,44,1,182,0,210,0,30, 0,111,27,0,80,3,0,0,0,0,0,180,0,34,1,1,255,3,68,65, - 67,0,8,80,3,232,0,0,0,0,44,1,34,1,255,144,0,38,80,15, + 67,0,8,80,3,232,0,0,0,0,44,1,34,1,255,146,0,38,80,15, 88,0,0,16,0,16,132,74,1,9,1,80,0,35,0,2,0,1,255,255, 255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,192,0,0, 0,0,186,1,245,0,140,0,80,0,103,27,0,80,3,104,0,0,0,0, 180,0,104,1,1,255,3,65,68,67,0,8,80,3,232,0,0,0,0,44, - 1,104,1,255,145,0,4,80,15,131,0,0,0,0,16,132,58,2,255,0, + 1,104,1,255,147,0,4,80,15,131,0,0,0,0,16,132,58,2,255,0, 130,0,50,0,3,80,15,169,0,0,0,0,58,2,255,0,130,0,50,0, 0,0,80,3,0,0,0,0,0,58,2,34,1,1,255,3,83,101,116,0, 12,80,15,128,0,0,0,0,58,2,245,0,157,0,70,0,101,27,4,80, @@ -1162,35 +1163,35 @@ 19,0,80,3,128,0,0,0,0,144,1,40,0,1,2,3,71,97,115, 0,10,80,14,64,0,0,0,0,148,1,151,0,75,0,2,0,12,80,14, 0,0,0,0,0,148,1,152,0,76,0,1,0,2,80,6,0,0,0,0, - 0,148,1,64,6,8,80,3,64,0,0,0,0,174,1,90,0,255,146,0, - 8,80,3,0,0,0,0,0,174,1,170,0,255,147,0,0,80,3,0,0, + 0,148,1,64,6,8,80,3,64,0,0,0,0,174,1,90,0,255,148,0, + 8,80,3,0,0,0,0,0,174,1,170,0,255,149,0,0,80,3,0,0, 0,0,0,220,0,90,0,1,255,9,80,114,101,115,115,117,114,101,58,0, 0,80,3,0,0,0,0,0,220,0,130,0,1,255,16,80,117,108,115,101, 100,32,112,114,101,115,115,117,114,101,58,0,8,80,3,0,0,0,0,0, - 174,1,130,0,255,148,0,0,80,3,0,0,0,0,0,220,0,170,0,1, + 174,1,130,0,255,150,0,0,80,3,0,0,0,0,0,220,0,170,0,1, 255,13,67,111,110,116,114,111,108,32,109,111,100,101,58,0,0,80,3,0, 0,0,0,0,220,0,210,0,1,255,13,67,97,114,114,105,101,114,32,116, - 121,112,101,58,0,8,80,3,0,0,0,0,0,174,1,210,0,255,149,0, + 121,112,101,58,0,8,80,3,0,0,0,0,0,174,1,210,0,255,151,0, 0,80,3,0,0,0,0,0,220,0,250,0,1,255,12,71,97,115,32,102, 105,108,116,101,114,32,45,0,0,80,3,0,0,0,0,0,220,0,14,1, 1,255,13,100,97,116,101,32,99,104,97,110,103,101,100,58,0,8,80,3, - 0,0,0,0,0,174,1,14,1,255,150,0,10,80,15,64,0,0,2,0, + 0,0,0,0,0,174,1,14,1,255,152,0,10,80,15,64,0,0,2,0, 8,66,10,0,193,0,74,0,74,0,0,0,12,80,14,0,0,0,0,0, 170,0,100,0,120,0,46,1,10,80,15,64,0,0,2,0,8,66,203,2, 193,0,74,0,74,0,1,0,12,80,15,0,0,0,0,0,188,2,170,0, 100,0,120,0,47,1 }; -const GuiConst_INT8U GuiStruct_00038[813] = +const GuiConst_INT8U GuiStruct_00038[853] = { 44,0,80,3,128,0,0,0,0,144,1,40,0,1,2,10,71,97,115, 32,77,101,116,104,111,100,0,0,80,3,64,0,0,0,0,235,0,85,0, 1,2,23,73,110,105,116,105,97,108,32,80,114,101,115,115,117,114,101,32, 91,112,115,105,93,58,0,8,80,3,192,0,0,0,0,8,2,85,0,255, - 151,0,0,80,3,64,0,0,0,0,235,0,120,0,1,2,20,73,110,105, + 153,0,0,80,3,64,0,0,0,0,235,0,120,0,1,2,20,73,110,105, 116,105,97,108,32,72,111,108,100,32,91,109,105,110,115,93,58,0,8,80, - 3,192,0,0,0,0,8,2,120,0,255,152,0,0,80,3,64,0,0,0, + 3,192,0,0,0,0,8,2,120,0,255,154,0,0,80,3,64,0,0,0, 0,235,0,155,0,1,2,11,82,97,109,112,32,99,111,117,110,116,58,0, - 8,80,3,192,0,0,0,0,8,2,155,0,255,153,0,0,80,3,128,0, + 8,80,3,192,0,0,0,0,8,2,155,0,255,155,0,0,80,3,128,0, 0,0,0,170,0,200,0,1,255,4,82,97,109,112,0,0,80,3,128,0, 0,0,0,170,0,230,0,1,255,6,78,117,109,98,101,114,0,0,80,3, 0,0,0,0,0,14,1,200,0,1,255,4,82,97,116,101,0,0,80,3, @@ -1200,21 +1201,23 @@ 164,1,230,0,1,255,5,91,112,115,105,93,0,0,80,3,0,0,0,0, 0,68,2,200,0,1,255,9,72,111,108,100,32,84,105,109,101,0,0,80, 3,0,0,0,0,0,68,2,230,0,1,255,6,91,109,105,110,115,93,0, - 8,80,3,128,0,0,0,0,170,0,9,1,255,154,0,8,80,3,0,0, - 0,0,0,170,0,39,1,255,155,0,8,80,3,0,0,0,0,0,170,0, - 69,1,255,156,0,8,80,3,0,0,0,0,0,170,0,99,1,255,157,0, - 8,80,3,0,0,0,0,0,170,0,129,1,255,158,0,8,80,3,192,0, - 0,0,0,34,1,9,1,255,159,0,8,80,3,192,0,0,0,0,34,1, - 39,1,255,160,0,8,80,3,192,0,0,0,0,34,1,69,1,255,161,0, - 8,80,3,192,0,0,0,0,34,1,99,1,255,162,0,8,80,3,192,0, - 0,0,0,34,1,129,1,255,163,0,8,80,3,192,0,0,0,0,184,1, - 9,1,255,164,0,8,80,3,192,0,0,0,0,184,1,39,1,255,165,0, - 8,80,3,192,0,0,0,0,184,1,69,1,255,166,0,8,80,3,192,0, - 0,0,0,184,1,99,1,255,167,0,8,80,3,192,0,0,0,0,184,1, - 129,1,255,168,0,8,80,3,192,0,0,0,0,88,2,9,1,255,169,0, - 8,80,3,192,0,0,0,0,88,2,39,1,255,170,0,8,80,3,192,0, - 0,0,0,88,2,69,1,255,171,0,8,80,3,192,0,0,0,0,88,2, - 99,1,255,172,0,8,80,3,192,0,0,0,0,88,2,129,1,255,173,0, + 8,80,3,135,0,0,0,0,156,0,170,0,9,1,255,157,0,8,80,3, + 7,0,0,0,0,158,0,170,0,39,1,255,159,0,8,80,3,7,0,0, + 0,0,156,0,170,0,69,1,255,160,0,8,80,3,7,0,0,0,0,158, + 0,170,0,99,1,255,161,0,8,80,3,7,0,0,0,0,156,0,170,0, + 129,1,255,162,0,8,80,3,199,0,0,0,0,156,0,34,1,9,1,255, + 163,0,8,80,3,199,0,0,0,0,158,0,34,1,39,1,255,164,0,8, + 80,3,199,0,0,0,0,156,0,34,1,69,1,255,165,0,8,80,3,199, + 0,0,0,0,158,0,34,1,99,1,255,166,0,8,80,3,199,0,0,0, + 0,156,0,34,1,129,1,255,167,0,8,80,3,199,0,0,0,0,156,0, + 184,1,9,1,255,168,0,8,80,3,199,0,0,0,0,158,0,184,1,39, + 1,255,169,0,8,80,3,199,0,0,0,0,156,0,184,1,69,1,255,170, + 0,8,80,3,199,0,0,0,0,158,0,184,1,99,1,255,171,0,8,80, + 3,199,0,0,0,0,156,0,184,1,129,1,255,172,0,8,80,3,199,0, + 0,0,0,156,0,88,2,9,1,255,173,0,8,80,3,199,0,0,0,0, + 158,0,88,2,39,1,255,174,0,8,80,3,199,0,0,0,0,156,0,88, + 2,69,1,255,175,0,8,80,3,199,0,0,0,0,158,0,88,2,99,1, + 255,176,0,8,80,3,199,0,0,0,0,156,0,88,2,129,1,255,177,0, 12,80,15,64,0,0,0,0,88,2,235,0,90,0,79,0,56,1,12,80, 15,64,0,0,0,0,88,2,69,1,90,0,79,0,57,1,10,80,15,64, 0,0,2,0,8,66,10,0,193,0,74,0,74,0,0,0,12,80,14,0, @@ -1241,12 +1244,12 @@ 27,0,0,0,0,1,5,0,0,0,27,0,248,0,248,2,3,0,1,0, 27,0,0,0,248,0,5,0,0,0,27,0,248,0,248,0,80,3,64,0, 0,0,0,13,0,150,0,1,255,8,80,114,101,115,115,117,114,101,0,8, - 80,3,128,0,0,0,0,94,1,134,1,255,174,0,10,80,15,64,0,0, + 80,3,128,0,0,0,0,94,1,134,1,255,178,0,10,80,15,64,0,0, 2,0,8,66,10,0,193,0,74,0,74,0,0,0,12,80,14,0,0,0, 0,0,170,0,100,0,120,0,44,1,10,80,15,64,0,0,2,0,8,66, 203,2,193,0,74,0,74,0,1,0,12,80,15,0,0,0,0,0,188,2, 170,0,100,0,120,0,45,1,8,80,3,128,0,0,0,0,144,1,230,0, - 255,175,0 + 255,179,0 }; const GuiConst_INT8U GuiStruct_00040[102] = { @@ -1276,30 +1279,30 @@ 150,0,5,0,12,80,15,0,0,0,0,0,10,0,215,0,44,1,185,0, 9,0,12,80,15,0,0,0,0,0,154,1,250,0,124,1,150,0,6,0, 12,80,15,0,0,0,0,0,234,1,215,0,44,1,185,0,10,0,10,80, - 15,64,0,0,2,0,255,255,71,1,170,0,142,0,70,0,8,0,10,80, - 15,0,0,0,2,0,255,255,71,1,170,0,142,0,70,0,9,0,12,80, + 15,64,0,0,2,0,255,255,71,1,170,0,142,0,70,0,7,0,10,80, + 15,0,0,0,2,0,255,255,71,1,170,0,142,0,70,0,8,0,12,80, 15,128,0,0,0,0,144,1,160,0,180,0,90,0,100,0,10,80,14,64, - 0,0,0,0,148,1,152,0,75,0,10,0,10,80,14,64,0,0,0,0, - 148,1,152,0,75,0,11,0,12,80,14,64,0,0,0,0,144,1,200,0, - 80,0,232,3,8,80,3,128,0,0,0,0,4,1,44,1,2,176,0,8, - 80,3,0,0,0,0,0,4,1,84,1,255,177,0,8,80,3,128,0,0, - 0,0,4,1,100,0,255,178,0,8,80,3,0,0,0,0,0,4,1,140, - 0,255,179,0,8,80,3,128,0,0,0,0,8,2,100,0,255,180,0,8, - 80,3,0,0,0,0,0,8,2,140,0,255,181,0,8,80,3,128,0,0, - 0,0,8,2,44,1,255,182,0,8,80,3,0,0,0,0,0,8,2,84, - 1,255,183,0,8,80,3,128,0,0,0,0,148,1,194,1,255,184,0 + 0,0,0,0,148,1,152,0,75,0,9,0,10,80,14,64,0,0,0,0, + 148,1,152,0,75,0,10,0,12,80,14,64,0,0,0,0,144,1,200,0, + 80,0,232,3,8,80,3,128,0,0,0,0,4,1,44,1,2,180,0,8, + 80,3,0,0,0,0,0,4,1,84,1,255,181,0,8,80,3,128,0,0, + 0,0,4,1,100,0,255,182,0,8,80,3,0,0,0,0,0,4,1,140, + 0,255,183,0,8,80,3,128,0,0,0,0,8,2,100,0,255,184,0,8, + 80,3,0,0,0,0,0,8,2,140,0,255,185,0,8,80,3,128,0,0, + 0,0,8,2,44,1,255,186,0,8,80,3,0,0,0,0,0,8,2,84, + 1,255,187,0,8,80,3,128,0,0,0,0,148,1,194,1,255,188,0 }; -const GuiConst_INT8U GuiStruct_00043[807] = +const GuiConst_INT8U GuiStruct_00043[847] = { 44,0,80,3,128,0,0,0,0,144,1,40,0,1,2,15,73,110,106, 101,99,116,111,114,32,77,101,116,104,111,100,0,0,80,3,64,0,0,0, 0,4,1,85,0,1,2,18,73,110,105,116,105,97,108,32,84,101,109,112, 32,91,161,67,93,58,0,8,80,3,192,0,0,0,0,8,2,85,0,255, - 185,0,0,80,3,64,0,0,0,0,4,1,120,0,1,2,20,73,110,105, + 189,0,0,80,3,64,0,0,0,0,4,1,120,0,1,2,20,73,110,105, 116,105,97,108,32,72,111,108,100,32,91,109,105,110,115,93,58,0,8,80, - 3,192,0,0,0,0,8,2,120,0,255,186,0,0,80,3,64,0,0,0, + 3,192,0,0,0,0,8,2,120,0,255,190,0,0,80,3,64,0,0,0, 0,4,1,155,0,1,2,11,82,97,109,112,32,99,111,117,110,116,58,0, - 8,80,3,192,0,0,0,0,8,2,155,0,255,187,0,0,80,3,128,0, + 8,80,3,192,0,0,0,0,8,2,155,0,255,191,0,0,80,3,128,0, 0,0,0,170,0,200,0,1,255,4,82,97,109,112,0,0,80,3,128,0, 0,0,0,170,0,230,0,1,255,6,78,117,109,98,101,114,0,0,80,3, 0,0,0,0,0,14,1,200,0,1,255,4,82,97,116,101,0,0,80,3, @@ -1308,22 +1311,24 @@ 114,32,84,101,109,112,0,0,80,3,0,0,0,0,0,164,1,230,0,1, 255,4,91,161,67,93,0,0,80,3,0,0,0,0,0,68,2,200,0,1, 255,9,72,111,108,100,32,84,105,109,101,0,0,80,3,0,0,0,0,0, - 68,2,230,0,1,255,6,91,109,105,110,115,93,0,8,80,3,128,0,0, - 0,0,170,0,9,1,255,188,0,8,80,3,0,0,0,0,0,170,0,39, - 1,255,189,0,8,80,3,0,0,0,0,0,170,0,69,1,255,190,0,8, - 80,3,0,0,0,0,0,170,0,99,1,255,191,0,8,80,3,0,0,0, - 0,0,170,0,129,1,255,192,0,8,80,3,192,0,0,0,0,34,1,9, - 1,255,193,0,8,80,3,192,0,0,0,0,34,1,39,1,255,194,0,8, - 80,3,192,0,0,0,0,34,1,69,1,255,195,0,8,80,3,192,0,0, - 0,0,34,1,99,1,255,196,0,8,80,3,192,0,0,0,0,34,1,129, - 1,255,197,0,8,80,3,192,0,0,0,0,184,1,9,1,255,198,0,8, - 80,3,192,0,0,0,0,184,1,39,1,255,199,0,8,80,3,192,0,0, - 0,0,184,1,69,1,255,200,0,8,80,3,192,0,0,0,0,184,1,99, - 1,255,201,0,8,80,3,192,0,0,0,0,184,1,129,1,255,202,0,8, - 80,3,192,0,0,0,0,88,2,9,1,255,203,0,8,80,3,192,0,0, - 0,0,88,2,39,1,255,204,0,8,80,3,192,0,0,0,0,88,2,69, - 1,255,205,0,8,80,3,192,0,0,0,0,88,2,99,1,255,206,0,8, - 80,3,192,0,0,0,0,88,2,129,1,255,207,0,12,80,15,64,0,0, + 68,2,230,0,1,255,6,91,109,105,110,115,93,0,8,80,3,135,0,0, + 0,0,192,0,170,0,9,1,255,193,0,8,80,3,7,0,0,0,0,194, + 0,170,0,39,1,255,195,0,8,80,3,7,0,0,0,0,192,0,170,0, + 69,1,255,196,0,8,80,3,7,0,0,0,0,194,0,170,0,99,1,255, + 197,0,8,80,3,7,0,0,0,0,192,0,170,0,129,1,255,198,0,8, + 80,3,199,0,0,0,0,192,0,34,1,9,1,255,199,0,8,80,3,199, + 0,0,0,0,194,0,34,1,39,1,255,200,0,8,80,3,199,0,0,0, + 0,192,0,34,1,69,1,255,201,0,8,80,3,199,0,0,0,0,194,0, + 34,1,99,1,255,202,0,8,80,3,199,0,0,0,0,192,0,34,1,129, + 1,255,203,0,8,80,3,199,0,0,0,0,192,0,184,1,9,1,255,204, + 0,8,80,3,199,0,0,0,0,194,0,184,1,39,1,255,205,0,8,80, + 3,199,0,0,0,0,192,0,184,1,69,1,255,206,0,8,80,3,199,0, + 0,0,0,194,0,184,1,99,1,255,207,0,8,80,3,199,0,0,0,0, + 192,0,184,1,129,1,255,208,0,8,80,3,199,0,0,0,0,192,0,88, + 2,9,1,255,209,0,8,80,3,199,0,0,0,0,194,0,88,2,39,1, + 255,210,0,8,80,3,199,0,0,0,0,192,0,88,2,69,1,255,211,0, + 8,80,3,199,0,0,0,0,194,0,88,2,99,1,255,212,0,8,80,3, + 199,0,0,0,0,192,0,88,2,129,1,255,213,0,12,80,15,64,0,0, 0,0,88,2,235,0,90,0,79,0,196,2,12,80,15,64,0,0,0,0, 88,2,69,1,90,0,79,0,197,2,10,80,15,64,0,0,2,0,8,66, 10,0,193,0,74,0,74,0,0,0,12,80,14,0,0,0,0,0,170,0, @@ -1344,7 +1349,7 @@ 0,0,0,150,0,165,0,1,2,12,78,117,100,103,101,32,70,97,99,116, 111,114,0,0,80,3,64,0,0,0,0,150,0,225,0,1,255,11,68,97, 109,112,32,70,97,99,116,111,114,0,8,80,3,192,0,0,0,0,184,1, - 165,0,255,208,0,8,80,3,192,0,0,0,0,184,1,225,0,255,209,0, + 165,0,255,214,0,8,80,3,192,0,0,0,0,184,1,225,0,255,215,0, 38,80,15,152,0,0,16,0,16,132,48,2,137,0,80,0,35,0,2,0, 1,255,255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15, 0,0,0,0,0,48,2,125,0,200,0,60,0,202,2,38,80,15,152,0, @@ -1377,9 +1382,9 @@ 240,0,130,0,1,255,5,77,111,100,101,58,0,0,80,3,0,0,0,0, 0,240,0,90,0,1,255,7,84,97,114,103,101,116,58,0,0,80,3,0, 0,0,0,0,240,0,210,0,1,255,7,83,116,97,116,117,115,58,0,8, - 80,3,0,0,0,0,0,154,1,90,0,255,210,0,8,80,3,0,0,0, - 0,0,154,1,130,0,255,211,0,8,80,3,0,0,0,0,0,154,1,170, - 0,255,212,0,8,80,3,0,0,0,0,0,154,1,210,0,255,213,0 + 80,3,0,0,0,0,0,154,1,90,0,255,216,0,8,80,3,0,0,0, + 0,0,154,1,130,0,255,217,0,8,80,3,0,0,0,0,0,154,1,170, + 0,255,218,0,8,80,3,0,0,0,0,0,154,1,210,0,255,219,0 }; const GuiConst_INT8U GuiStruct_00046[426] = { @@ -1390,7 +1395,7 @@ 101,32,112,114,111,102,105,108,101,0,0,80,3,64,0,0,0,0,5,0, 125,0,1,255,4,84,101,109,112,0,0,80,3,0,0,0,0,0,20,0, 160,0,1,255,4,91,161,67,93,0,8,80,3,128,0,0,0,0,124,1, - 134,1,255,214,0,8,80,3,0,0,0,0,0,124,1,230,0,255,215,0, + 134,1,255,220,0,8,80,3,0,0,0,0,0,124,1,230,0,255,221,0, 29,80,15,64,0,0,0,0,130,0,84,1,244,1,6,255,255,2,10,0, 10,0,2,29,0,0,2,0,4,0,4,0,1,0,2,0,1,0,0,0, 0,0,100,0,0,0,100,0,0,0,50,0,0,0,0,0,0,0,0,0, @@ -1408,9 +1413,9 @@ }; const GuiConst_INT8U GuiStruct_00047[878] = { - 35,8,80,3,192,0,0,0,0,250,0,100,0,3,216,0,3,80,15, + 35,8,80,3,192,0,0,0,0,250,0,100,0,3,222,0,3,80,15, 0,0,0,0,0,4,1,115,0,100,0,45,0,0,8,80,3,248,0,0, - 8,0,69,0,40,0,0,0,250,0,150,0,255,217,0,38,80,15,144,0, + 8,0,71,0,40,0,0,0,250,0,150,0,255,223,0,38,80,15,144,0, 0,16,0,74,1,60,0,50,0,50,0,2,0,1,255,255,255,0,0,0, 0,15,1,0,1,49,0,12,80,15,0,0,0,0,0,74,1,50,0,70, 0,70,0,17,39,38,80,15,128,0,0,16,0,144,1,60,0,50,0,50, @@ -1463,8 +1468,8 @@ 110,116,0,0,80,3,0,0,0,0,0,224,1,150,0,1,255,9,68,65, 67,32,86,97,108,117,101,0,0,80,3,0,0,0,0,0,118,2,150,0, 1,255,9,80,111,119,101,114,32,40,37,41,0,8,80,3,192,0,0,0, - 0,250,0,195,0,255,218,0,8,80,3,192,0,0,0,0,8,2,195,0, - 255,219,0,8,80,3,192,0,0,0,0,128,2,195,0,255,220,0,38,80, + 0,250,0,195,0,255,224,0,8,80,3,192,0,0,0,0,8,2,195,0, + 255,225,0,8,80,3,192,0,0,0,0,128,2,195,0,255,226,0,38,80, 15,152,0,0,16,0,16,132,64,1,167,0,80,0,35,0,2,0,1,255, 255,255,0,0,0,0,15,1,0,4,69,100,105,116,0,12,80,15,0,0, 0,0,0,64,1,155,0,150,0,60,0,120,2,4,80,15,131,0,0,0, @@ -1511,7 +1516,7 @@ 0,0,0,0,148,1,64,6,0,80,3,128,0,0,0,0,144,1,35,0, 1,2,13,67,111,108,117,109,110,32,115,116,97,116,117,115,0,0,80,3, 192,0,0,0,0,134,1,70,0,1,255,5,84,101,109,112,58,0,8,80, - 3,64,0,0,0,0,154,1,70,0,255,221,0,4,80,15,131,0,0,0, + 3,64,0,0,0,0,154,1,70,0,255,227,0,4,80,15,131,0,0,0, 0,16,132,134,1,148,1,152,0,76,0,3,80,15,1,0,0,0,0,134, 1,148,1,152,0,76,0,0,0,80,3,0,0,0,0,0,134,1,194,1, 1,2,9,65,98,111,114,116,32,82,117,110,0,12,80,15,0,0,0,0, @@ -1527,7 +1532,7 @@ 0,27,31,0,31,0,2,7,0,0,0,27,31,0,31,0,0,80,3,0, 0,0,0,0,35,0,125,0,1,255,4,84,101,109,112,0,0,80,3,0, 0,0,0,0,30,0,160,0,1,255,4,91,161,67,93,0,8,80,3,128, - 0,0,0,0,144,1,134,1,255,222,0 + 0,0,0,0,144,1,134,1,255,228,0 }; const GuiConst_INT8U GuiStruct_00052[462] = { @@ -1549,12 +1554,12 @@ 0,250,0,34,1,1,255,5,84,101,109,112,58,0,0,80,3,0,0,0, 0,0,250,0,74,1,1,255,7,84,97,114,103,101,116,58,0,0,80,3, 0,0,0,0,0,250,0,90,0,1,255,5,84,121,112,101,58,0,8,80, - 3,0,0,0,0,0,124,1,90,0,255,223,0,8,80,3,64,0,0,0, - 0,124,1,34,1,255,72,0,8,80,3,0,0,0,0,0,124,1,74,1, - 255,78,0,8,80,3,0,0,0,0,0,124,1,130,0,255,73,0,8,80, - 3,0,0,0,0,0,124,1,170,0,255,74,0,8,80,3,0,0,0,0, - 0,124,1,210,0,255,75,0,8,80,3,0,0,0,0,0,124,1,250,0, - 255,76,0 + 3,0,0,0,0,0,124,1,90,0,255,229,0,8,80,3,64,0,0,0, + 0,124,1,34,1,255,74,0,8,80,3,0,0,0,0,0,124,1,74,1, + 255,80,0,8,80,3,0,0,0,0,0,124,1,130,0,255,75,0,8,80, + 3,0,0,0,0,0,124,1,170,0,255,76,0,8,80,3,0,0,0,0, + 0,124,1,210,0,255,77,0,8,80,3,0,0,0,0,0,124,1,250,0, + 255,78,0 }; const GuiConst_INT8U GuiStruct_00053[474] = { @@ -1565,7 +1570,7 @@ 0,0,0,0,144,1,35,0,1,2,10,71,97,115,32,115,116,97,116,117, 115,0,0,80,3,192,0,0,0,0,134,1,70,0,1,255,9,80,114,101, 115,115,117,114,101,58,0,8,80,3,64,0,0,0,0,154,1,70,0,255, - 224,0,2,80,6,0,0,0,0,0,148,1,64,6,4,80,15,131,0,0, + 230,0,2,80,6,0,0,0,0,0,148,1,64,6,4,80,15,131,0,0, 0,0,16,132,134,1,148,1,152,0,76,0,3,80,15,1,0,0,0,0, 134,1,148,1,152,0,76,0,0,0,80,3,0,0,0,0,0,134,1,194, 1,1,2,9,65,98,111,114,116,32,82,117,110,0,12,80,15,0,0,0, @@ -1581,7 +1586,7 @@ 27,0,248,0,248,2,7,0,0,0,27,0,248,0,248,0,80,3,64,0, 0,0,0,13,0,125,0,1,255,8,80,114,101,115,115,117,114,101,0,0, 80,3,0,0,0,0,0,10,0,160,0,1,255,5,40,112,115,105,41,0, - 8,80,3,128,0,0,0,0,114,1,134,1,255,225,0 + 8,80,3,128,0,0,0,0,114,1,134,1,255,231,0 }; const GuiConst_INT8U GuiStruct_00054[476] = { @@ -1600,14 +1605,14 @@ 80,3,0,0,0,0,0,240,0,90,0,1,255,12,84,101,109,112,101,114, 97,116,117,114,101,58,0,0,80,3,0,0,0,0,0,240,0,210,0,1, 255,7,83,116,97,116,117,115,58,0,8,80,3,64,0,0,0,0,154,1, - 90,0,255,226,0,8,80,3,0,0,0,0,0,154,1,130,0,255,211,0, - 8,80,3,0,0,0,0,0,154,1,170,0,255,212,0,8,80,3,0,0, - 0,0,0,154,1,210,0,255,213,0,8,80,3,0,0,0,0,0,154,1, - 250,0,255,227,0,8,80,3,0,0,0,0,0,154,1,34,1,255,228,0, + 90,0,255,232,0,8,80,3,0,0,0,0,0,154,1,130,0,255,217,0, + 8,80,3,0,0,0,0,0,154,1,170,0,255,218,0,8,80,3,0,0, + 0,0,0,154,1,210,0,255,219,0,8,80,3,0,0,0,0,0,154,1, + 250,0,255,233,0,8,80,3,0,0,0,0,0,154,1,34,1,255,234,0, 0,80,3,0,0,0,0,0,240,0,34,1,1,255,12,83,112,108,105,116, 32,114,97,116,105,111,58,0,0,80,3,0,0,0,0,0,240,0,250,0, 1,255,11,83,112,108,105,116,32,116,105,109,101,58,0,8,80,3,0,0, - 0,0,0,154,1,74,1,255,229,0,0,80,3,0,0,0,0,0,240,0, + 0,0,0,154,1,74,1,255,235,0,0,80,3,0,0,0,0,0,240,0, 74,1,1,255,11,83,112,108,105,116,32,102,108,111,119,58,0 }; const GuiConst_INT8U GuiStruct_00055[472] = @@ -1615,7 +1620,7 @@ 16,0,80,3,128,0,0,0,0,144,1,35,0,1,2,15,73,110,106, 101,99,116,111,114,32,115,116,97,116,117,115,0,0,80,3,192,0,0,0, 0,134,1,70,0,1,255,5,84,101,109,112,58,0,8,80,3,64,0,0, - 0,0,154,1,70,0,255,230,0,2,80,6,0,0,0,0,0,148,1,64, + 0,0,154,1,70,0,255,236,0,2,80,6,0,0,0,0,0,148,1,64, 6,4,80,15,131,0,0,0,0,16,132,134,1,148,1,152,0,76,0,3, 80,15,1,0,0,0,0,134,1,148,1,152,0,76,0,0,0,80,3,0, 0,0,0,0,134,1,194,1,1,2,9,65,98,111,114,116,32,82,117,110, @@ -1635,7 +1640,7 @@ 0,0,0,27,255,7,31,0,2,7,0,0,0,27,255,7,255,7,0,80, 3,64,0,0,0,0,15,0,125,0,1,255,4,84,101,109,112,0,0,80, 3,0,0,0,0,0,10,0,160,0,1,255,4,91,161,67,93,0,8,80, - 3,128,0,0,0,0,114,1,134,1,255,231,0 + 3,128,0,0,0,0,114,1,134,1,255,237,0 }; const GuiConst_INT8U GuiStruct_00056[276] = { @@ -1651,8 +1656,8 @@ 1,148,1,152,0,76,0,250,0,0,80,3,0,0,0,0,0,144,1,140, 0,1,2,23,69,108,97,112,115,101,100,32,116,105,109,101,32,40,109,105, 110,117,116,101,115,41,58,0,8,80,3,0,0,6,0,0,0,0,144,1, - 200,0,3,232,0,3,80,15,64,0,0,0,0,100,0,250,0,88,2,50, - 0,1,8,80,3,128,0,0,0,0,144,1,99,1,2,233,0 + 200,0,3,238,0,3,80,15,64,0,0,0,0,100,0,250,0,88,2,50, + 0,1,8,80,3,128,0,0,0,0,144,1,99,1,2,239,0 }; const GuiConst_INT8U GuiStruct_00057[258] = { @@ -1674,30 +1679,30 @@ { 36,0,80,3,168,0,0,0,0,144,1,40,0,1,2,9,83,101,114, 118,105,99,105,110,103,0,8,80,3,64,0,0,0,0,80,0,90,0,255, - 234,0,4,80,15,67,0,0,0,0,16,132,34,1,60,0,130,0,40,0, + 240,0,4,80,15,67,0,0,0,0,16,132,34,1,60,0,130,0,40,0, 3,80,15,1,0,0,0,0,34,1,60,0,130,0,40,0,0,12,80,15, 0,0,0,0,0,24,1,55,0,150,0,50,0,166,15,0,80,3,1,0, 0,0,0,44,1,90,0,1,255,8,83,101,114,118,105,99,101,100,0,8, - 80,3,65,0,0,0,0,80,0,140,0,255,235,0,4,80,15,67,0,0, + 80,3,65,0,0,0,0,80,0,140,0,255,241,0,4,80,15,67,0,0, 0,0,16,132,34,1,110,0,130,0,40,0,3,80,15,1,0,0,0,0, 34,1,110,0,130,0,40,0,0,12,80,15,0,0,0,0,0,24,1,105, 0,150,0,50,0,167,15,0,80,3,1,0,0,0,0,44,1,140,0,1, 255,8,83,101,114,118,105,99,101,100,0,8,80,3,65,0,0,0,0,80, - 0,190,0,255,236,0,4,80,15,67,0,0,0,0,16,132,34,1,160,0, + 0,190,0,255,242,0,4,80,15,67,0,0,0,0,16,132,34,1,160,0, 130,0,40,0,3,80,15,1,0,0,0,0,34,1,160,0,130,0,40,0, 0,12,80,15,0,0,0,0,0,24,1,155,0,150,0,50,0,168,15,0, 80,3,1,0,0,0,0,44,1,190,0,1,255,8,83,101,114,118,105,99, - 101,100,0,8,80,3,65,0,0,0,0,80,0,240,0,255,237,0,4,80, + 101,100,0,8,80,3,65,0,0,0,0,80,0,240,0,255,243,0,4,80, 15,67,0,0,0,0,16,132,34,1,210,0,130,0,40,0,3,80,15,1, 0,0,0,0,34,1,210,0,130,0,40,0,0,12,80,15,0,0,0,0, 0,24,1,205,0,150,0,50,0,169,15,0,80,3,1,0,0,0,0,44, 1,240,0,1,255,8,83,101,114,118,105,99,101,100,0,8,80,3,65,0, - 0,0,0,80,0,34,1,255,238,0,4,80,15,67,0,0,0,0,16,132, + 0,0,0,80,0,34,1,255,244,0,4,80,15,67,0,0,0,0,16,132, 34,1,4,1,130,0,40,0,3,80,15,1,0,0,0,0,34,1,4,1, 130,0,40,0,0,12,80,15,0,0,0,0,0,24,1,255,0,150,0,50, 0,170,15,0,80,3,1,0,0,0,0,44,1,34,1,1,255,8,83,101, 114,118,105,99,101,100,0,8,80,3,65,0,0,0,0,80,0,84,1,255, - 239,0,4,80,15,67,0,0,0,0,16,132,34,1,54,1,130,0,40,0, + 245,0,4,80,15,67,0,0,0,0,16,132,34,1,54,1,130,0,40,0, 3,80,15,1,0,0,0,0,34,1,54,1,130,0,40,0,0,12,80,15, 0,0,0,0,0,24,1,49,1,150,0,50,0,171,15,0,80,3,1,0, 0,0,0,44,1,84,1,1,255,8,83,101,114,118,105,99,101,100,0,4, @@ -1712,11 +1717,11 @@ 32,102,111,108,108,111,119,105,110,103,32,99,111,109,112,111,110,101,110,116, 115,32,110,111,119,32,110,101,101,100,32,115,101,114,118,105,99,105,110,103, 47,114,101,112,108,97,99,101,109,101,110,116,58,0,8,80,3,64,0,0, - 0,0,100,0,80,0,255,240,0,8,80,3,64,0,0,0,0,100,0,110, - 0,255,241,0,8,80,3,64,0,0,0,0,100,0,140,0,255,242,0,8, - 80,3,64,0,0,0,0,100,0,170,0,255,243,0,8,80,3,64,0,0, - 0,0,100,0,200,0,255,244,0,8,80,3,64,0,0,0,0,100,0,230, - 0,255,245,0,4,80,14,67,0,0,0,0,16,132,148,1,152,0,76,0, + 0,0,100,0,80,0,255,246,0,8,80,3,64,0,0,0,0,100,0,110, + 0,255,247,0,8,80,3,64,0,0,0,0,100,0,140,0,255,248,0,8, + 80,3,64,0,0,0,0,100,0,170,0,255,249,0,8,80,3,64,0,0, + 0,0,100,0,200,0,255,250,0,8,80,3,64,0,0,0,0,100,0,230, + 0,255,251,0,4,80,14,67,0,0,0,0,16,132,148,1,152,0,76,0, 3,80,14,41,0,0,0,0,148,1,152,0,76,0,0,0,80,3,128,0, 0,0,0,78,0,194,1,1,2,4,72,111,109,101,0,12,80,14,64,0, 0,0,0,148,1,152,0,76,0,165,15,2,80,6,0,0,0,0,0,148, @@ -1725,24 +1730,24 @@ 44,32,113,117,111,116,105,110,103,32,116,104,101,32,115,101,114,105,97,108, 32,110,117,109,98,101,114,32,0,0,80,3,0,0,0,0,0,40,0,104, 1,1,255,16,111,102,32,121,111,117,114,32,109,97,99,104,105,110,101,58, - 0,8,80,3,0,0,0,0,0,250,0,104,1,255,246,0 + 0,8,80,3,0,0,0,0,0,250,0,104,1,255,252,0 }; const GuiConst_INT8U GuiStruct_00060[466] = { - 25,8,80,3,104,0,0,0,0,194,1,230,0,2,247,0,8,80,3, - 0,0,0,0,0,29,1,114,1,255,248,0,0,80,3,0,0,0,0,0, + 25,8,80,3,104,0,0,0,0,194,1,230,0,2,253,0,8,80,3, + 0,0,0,0,0,29,1,114,1,255,254,0,0,80,3,0,0,0,0,0, 30,0,114,1,1,255,20,83,111,102,116,119,97,114,101,32,66,117,105,108, 100,32,68,97,116,101,58,0,8,80,3,0,0,0,0,0,204,1,190,0, - 255,246,0,0,80,3,0,0,0,0,0,194,1,150,0,1,255,17,71,67, + 255,252,0,0,80,3,0,0,0,0,0,194,1,150,0,1,255,17,71,67, 32,83,101,114,105,97,108,32,78,117,109,98,101,114,58,0,8,80,3,0, - 0,0,0,0,30,0,230,0,255,249,0,8,80,3,0,0,0,0,0,30, - 0,190,0,255,250,0,8,80,3,0,0,0,0,0,30,0,150,0,255,251, - 0,8,80,3,0,0,0,0,0,30,0,110,0,255,252,0,8,80,3,0, - 0,0,0,0,30,0,70,0,255,253,0,8,80,3,0,0,0,0,0,204, - 1,110,0,255,254,0,0,80,3,0,0,0,0,0,194,1,70,0,1,255, + 0,0,0,0,30,0,230,0,255,255,0,8,80,3,0,0,0,0,0,30, + 0,190,0,255,0,1,8,80,3,0,0,0,0,0,30,0,150,0,255,1, + 1,8,80,3,0,0,0,0,0,30,0,110,0,255,2,1,8,80,3,0, + 0,0,0,0,30,0,70,0,255,3,1,8,80,3,0,0,0,0,0,204, + 1,110,0,255,4,1,0,80,3,0,0,0,0,0,194,1,70,0,1,255, 8,71,67,32,84,105,109,101,58,0,0,80,3,168,0,0,0,0,144,1, 40,0,1,255,8,83,101,116,116,105,110,103,115,0,8,80,3,64,0,0, - 0,0,194,1,14,1,255,255,0,10,80,14,64,0,0,0,0,148,1,151, + 0,0,194,1,14,1,255,5,1,10,80,14,64,0,0,0,0,148,1,151, 0,75,0,2,0,12,80,14,0,0,0,0,0,148,1,152,0,76,0,1, 0,2,80,6,0,0,0,0,0,148,1,64,6,4,80,15,67,0,0,0, 0,16,132,136,2,148,1,152,0,76,0,3,80,15,41,0,0,0,0,136, @@ -1756,58 +1761,58 @@ }; const GuiConst_INT8U GuiStruct_00061[20] = { - 1,195,0,204,64,0,0,0,128,17,17,255,255,255,255,0,1,1,1, + 1,195,0,204,64,0,0,0,128,17,17,255,255,255,255,6,1,7,1, 1 }; const GuiConst_INT8U GuiStruct_00062[48] = { - 2,195,0,204,104,0,0,0,128,17,17,255,255,255,255,0,1,1,1, + 2,195,0,204,104,0,0,0,128,17,17,255,255,255,255,6,1,7,1, 1,195,0,207,81,0,0,0,224,1,68,253,2,2,17,17,1,0,1,0, - 254,255,254,255,0,1,1,1,1 + 254,255,254,255,6,1,7,1,1 }; const GuiConst_INT8U GuiStruct_00063[25] = { 1,195,0,204,80,0,0,0,224,2,44,1,0,3,17,17,255,255,255, - 255,0,1,1,1,1 + 255,6,1,7,1,1 }; const GuiConst_INT8U GuiStruct_00064[21] = { - 1,224,0,204,64,0,0,64,128,17,17,255,255,255,255,0,1,1,1, - 2,1 + 1,224,0,204,64,0,0,64,128,17,17,255,255,255,255,6,1,7,1, + 8,1 }; const GuiConst_INT8U GuiStruct_00065[176] = { - 9,80,0,48,128,16,0,64,128,17,2,1,2,1,2,1,48,194,64, - 84,64,0,0,0,128,17,1,255,255,2,1,3,1,80,0,49,128,16,0, - 64,128,17,255,255,3,1,2,1,2,1,192,194,16,185,64,0,0,0,128, - 17,16,255,255,255,255,0,1,2,1,4,1,80,0,51,128,16,0,64,128, - 17,255,255,255,255,3,1,4,1,2,1,3,194,64,118,64,0,0,0,128, - 17,1,255,255,255,255,2,1,1,1,3,1,80,0,50,128,16,0,64,128, - 17,255,255,2,1,4,1,2,1,12,194,16,168,64,0,0,0,128,17,16, - 255,255,2,1,4,1,224,0,207,81,0,0,80,224,1,68,253,2,2,17, - 17,1,0,1,0,254,255,254,255,254,255,0,1,1,1,2,1 + 9,80,0,48,128,16,0,64,128,17,8,1,8,1,8,1,48,194,64, + 84,64,0,0,0,128,17,1,255,255,8,1,9,1,80,0,49,128,16,0, + 64,128,17,255,255,9,1,8,1,8,1,192,194,16,185,64,0,0,0,128, + 17,16,255,255,255,255,6,1,8,1,10,1,80,0,51,128,16,0,64,128, + 17,255,255,255,255,9,1,10,1,8,1,3,194,64,118,64,0,0,0,128, + 17,1,255,255,255,255,8,1,7,1,9,1,80,0,50,128,16,0,64,128, + 17,255,255,8,1,10,1,8,1,12,194,16,168,64,0,0,0,128,17,16, + 255,255,8,1,10,1,224,0,207,81,0,0,80,224,1,68,253,2,2,17, + 17,1,0,1,0,254,255,254,255,254,255,6,1,7,1,8,1 }; const GuiConst_INT8U GuiStruct_00066[26] = { 1,224,0,204,80,0,0,64,224,2,44,1,0,3,17,17,255,255,255, - 255,0,1,1,1,2,1 + 255,6,1,7,1,8,1 }; const GuiConst_INT8U GuiStruct_00067[17] = { - 1,80,0,48,128,0,0,64,128,17,0,1,0,1,0,1,255 + 1,80,0,48,128,0,0,64,128,17,6,1,6,1,6,1,255 }; const GuiConst_INT8U GuiStruct_00068[17] = { - 1,80,0,48,128,0,0,64,128,17,0,1,0,1,0,1,255 + 1,80,0,48,128,0,0,64,128,17,6,1,6,1,6,1,255 }; const GuiConst_INT8U GuiStruct_00069[19] = { - 1,80,0,48,145,0,0,64,192,1,1,17,0,1,0,1,1,1,255 + 1,80,0,48,145,0,0,64,192,1,1,17,6,1,6,1,7,1,255 }; const GuiConst_INT8U GuiStruct_00070[24] = { 1,68,80,63,65,0,0,0,192,1,0,17,255,255,255,255,2,0,2, - 0,0,1,0,1 + 0,6,1,6,1 }; const GuiConst_PTR const GuiStruct_StructPtrList[GuiStruct_StructCnt] = { @@ -1993,7 +1998,9 @@ (GuiConst_PTR)&GuiVar_columnMethodInitialTemp, (GuiConst_PTR)&GuiVar_columnMethodInitialHold, (GuiConst_PTR)&GuiVar_columnMethodRampCount, + (GuiConst_PTR)&GuiVar_columnMethodRampOddRowsColour, (GuiConst_PTR)&GuiVar_columnMethodRampNumber1, + (GuiConst_PTR)&GuiVar_columnMethodRampEvenRowsColour, (GuiConst_PTR)&GuiVar_columnMethodRampNumber2, (GuiConst_PTR)&GuiVar_columnMethodRampNumber3, (GuiConst_PTR)&GuiVar_columnMethodRampNumber4, @@ -2113,7 +2120,9 @@ (GuiConst_PTR)&GuiVar_gasMethodInitialPressure, (GuiConst_PTR)&GuiVar_gasMethodInitialHold, (GuiConst_PTR)&GuiVar_gasMethodRampCount, + (GuiConst_PTR)&GuiVar_gasMethodRampOddRowsColour, (GuiConst_PTR)&GuiVar_gasMethodRampNumber1, + (GuiConst_PTR)&GuiVar_gasMethodRampEvenRowsColour, (GuiConst_PTR)&GuiVar_gasMethodRampNumber2, (GuiConst_PTR)&GuiVar_gasMethodRampNumber3, (GuiConst_PTR)&GuiVar_gasMethodRampNumber4, @@ -2147,7 +2156,9 @@ (GuiConst_PTR)&GuiVar_injectorMethodInitialTemp, (GuiConst_PTR)&GuiVar_injectorMethodInitialHold, (GuiConst_PTR)&GuiVar_injectorMethodRampCount, + (GuiConst_PTR)&GuiVar_injectorMethodRampOddRowsColour, (GuiConst_PTR)&GuiVar_injectorMethodRampNumber1, + (GuiConst_PTR)&GuiVar_injectorMethodRampEvenRowsColour, (GuiConst_PTR)&GuiVar_injectorMethodRampNumber2, (GuiConst_PTR)&GuiVar_injectorMethodRampNumber3, (GuiConst_PTR)&GuiVar_injectorMethodRampNumber4, @@ -2258,7 +2269,9 @@ 9, 9, 9, - 9, + 10, + 9, + 10, 9, 9, 9, @@ -2378,41 +2391,45 @@ 9, 9, 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, + 10, + 9, + 10, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 9, + 10, + 9, + 10, 9, 9, 9, @@ -3182,6181 +3199,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 }; -const GuiConst_INT8U GuiBitmap_5[123419] = -{ - 32,3,224,1,28,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,127,255,255,36,255,255,130,125,239,8,66,30,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,35,255,255,131,190,247,138,82, - 0,0,30,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,127, - 255,255,35,255,255,131,203,90,0,0,64,0,32,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,34,255,255,132,77,107,0,0, - 64,0,64,0,31,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,127,255,255,33,255,255,130,47,132,0,0,3,64,0,31,0,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,32,255,255,130,112, - 140,0,0,4,64,0,33,0,127,255,255,127,255,255,127,255,255,127,255,255, - 127,255,255,127,255,255,31,255,255,131,51,165,0,0,0,0,4,64,0,33, - 0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,30, - 255,255,131,116,165,64,8,0,0,5,64,0,34,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,29,255,255,130,182,181,65,8, - 3,0,0,4,64,0,34,0,127,255,255,127,255,255,127,255,255,127,255,255, - 127,255,255,127,255,255,28,255,255,130,56,198,129,16,4,0,0,4,64,0, - 34,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255, - 27,255,255,130,121,206,195,24,5,0,0,4,64,0,34,0,127,255,255,127, - 255,255,127,255,255,127,255,255,127,255,255,127,255,255,26,255,255,130,186,214, - 4,33,7,0,0,3,64,0,34,0,127,255,255,127,255,255,127,255,255,127, - 255,255,127,255,255,127,255,255,25,255,255,130,60,231,134,49,6,0,0,5, - 64,0,34,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,127, - 255,255,24,255,255,130,125,239,199,57,6,0,0,6,64,0,34,0,127,255, - 255,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,23,255,255,130, - 190,247,8,66,7,0,0,6,64,0,34,0,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,127,255,255,22,255,255,130,254,255,138,82,8,0, - 0,6,64,0,32,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,127,255,255,22,255,255,129,202,82,9,0,0,6,64,0,36,0,127,255, - 255,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,21,255,255,131, - 76,99,0,0,64,0,8,0,0,6,64,0,40,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,20,255,255,133,47,132,64,0, - 128,0,64,0,64,0,7,0,0,6,64,0,44,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,19,255,255,135,176,140,128,0, - 192,8,128,8,128,0,64,0,64,0,6,0,0,6,64,0,46,0,127,255, - 255,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,18,255,255,136, - 51,165,192,16,0,17,0,17,192,8,128,8,128,0,64,0,6,0,0,6, - 64,0,52,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,127, - 255,255,17,255,255,139,180,173,130,33,65,25,1,25,0,17,192,16,192,8, - 128,8,128,0,64,0,64,0,4,0,0,6,64,0,56,0,127,255,255,127, - 255,255,127,255,255,127,255,255,127,255,255,127,255,255,16,255,255,141,246,181, - 195,41,131,33,130,33,66,33,1,25,0,17,192,16,192,8,128,8,128,0, - 64,0,64,0,3,0,0,6,64,0,63,0,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,127,255,255,15,255,255,146,119,198,69,58,4,50, - 196,41,131,41,130,33,65,25,0,25,0,17,192,16,192,8,128,0,128,0, - 64,0,0,0,64,0,64,0,0,0,5,64,0,55,0,127,255,255,127,255, - 255,127,255,255,127,255,255,127,255,255,127,255,255,14,255,255,142,185,206,199, - 74,68,50,69,58,4,50,195,41,131,33,66,33,65,25,0,25,0,17,192, - 16,192,8,128,0,10,64,0,59,0,127,255,255,127,255,255,127,255,255,127, - 255,255,127,255,255,127,255,255,13,255,255,144,250,214,199,74,69,58,133,58, - 69,58,4,50,196,49,195,41,130,33,65,33,65,25,0,17,0,17,192,16, - 192,8,128,0,9,64,0,63,0,127,255,255,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,12,255,255,146,59,223,8,83,69,58,134,66,133, - 66,69,58,68,58,4,50,195,41,131,41,130,33,65,33,1,25,0,17,0, - 17,192,16,128,8,128,0,8,64,0,67,0,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,127,255,255,11,255,255,148,60,231,73,91,133,58, - 198,66,134,66,134,66,69,58,69,58,4,50,196,41,195,41,130,33,130,33, - 65,25,1,25,0,17,192,16,192,8,128,8,128,0,7,64,0,71,0,127, - 255,255,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,10,255,255, - 150,125,239,138,99,133,58,198,66,198,66,134,66,134,66,133,58,69,58,4, - 50,4,50,195,41,195,41,130,33,66,33,65,25,0,25,0,17,192,16,192, - 8,128,0,128,0,6,64,0,73,0,127,255,255,127,255,255,127,255,255,127, - 255,255,127,255,255,127,255,255,9,255,255,151,189,247,203,107,133,58,198,74, - 198,66,198,66,134,66,134,66,133,66,69,58,69,58,4,50,196,49,195,41, - 130,33,130,33,65,33,65,25,0,25,0,17,192,8,128,8,128,0,6,64, - 0,75,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,8,255,255,131,190,247,44,108,133,58,3,198,74,147,198,66,198,66,134, - 66,134,66,133,58,69,58,68,50,4,50,195,41,195,41,130,33,129,33,65, - 25,1,25,0,17,192,16,192,8,128,8,128,0,5,64,0,140,0,78,255, - 255,131,245,189,245,189,133,115,4,0,99,131,133,115,245,189,245,189,26,255, - 255,131,245,189,245,189,133,115,4,0,99,131,133,115,245,189,245,189,39,255, - 255,132,124,239,245,189,245,189,133,115,6,0,99,132,40,132,245,189,245,189, - 118,206,127,255,255,127,255,255,127,255,255,127,255,255,84,255,255,131,190,247, - 45,116,133,58,4,198,74,152,198,66,198,66,134,66,134,66,133,58,69,58, - 68,58,4,50,196,49,195,41,130,41,130,33,65,33,1,25,0,25,0,17, - 192,8,128,8,128,0,64,0,64,0,0,0,64,0,64,0,137,0,36,255, - 255,129,245,189,21,0,99,129,118,206,17,255,255,129,179,181,12,0,99,130, - 179,181,190,247,21,255,255,129,179,181,12,0,99,130,179,181,190,247,34,255, - 255,130,245,189,40,132,15,0,99,130,107,140,245,189,63,255,255,130,124,239, - 245,189,4,0,99,130,245,189,124,239,127,255,255,127,255,255,127,255,255,127, - 255,255,10,255,255,130,110,132,133,58,6,198,74,146,198,66,198,66,134,66, - 133,66,69,58,69,58,4,50,4,50,195,41,195,41,130,33,130,33,65,25, - 1,25,0,25,0,17,192,8,128,8,5,64,0,143,0,36,255,255,129,245, - 189,21,0,99,129,118,206,15,255,255,130,249,222,40,132,14,0,99,130,133, - 115,184,214,18,255,255,130,249,222,40,132,14,0,99,130,133,115,184,214,31, - 255,255,130,249,222,40,132,20,0,99,130,113,173,190,247,59,255,255,130,59, - 231,133,115,7,0,99,129,249,222,127,255,255,127,255,255,127,255,255,127,255, - 255,7,255,255,131,254,247,175,132,133,58,7,198,74,147,198,66,198,66,134, - 66,134,66,133,58,69,58,68,58,4,50,196,41,195,41,131,41,130,33,65, - 33,65,25,0,25,0,17,192,16,192,8,128,0,4,64,0,128,0,36,255, - 255,129,245,189,21,0,99,129,118,206,14,255,255,129,249,222,18,0,99,129, - 118,206,16,255,255,129,249,222,18,0,99,129,118,206,29,255,255,129,245,189, - 22,0,99,129,40,132,60,255,255,129,40,132,8,0,99,130,133,115,124,239, - 127,255,255,127,255,255,127,255,255,127,255,255,6,255,255,130,240,140,133,58, - 8,198,74,3,198,66,145,134,66,133,66,69,58,68,58,4,50,4,50,195, - 41,195,41,130,33,66,33,65,25,1,25,0,17,0,17,192,8,128,0,128, - 0,3,64,0,131,0,36,255,255,129,245,189,21,0,99,129,118,206,13,255, - 255,129,59,231,20,0,99,129,184,214,14,255,255,129,59,231,20,0,99,129, - 184,214,27,255,255,129,245,189,23,0,99,129,245,189,59,255,255,129,184,214, - 10,0,99,129,179,181,127,255,255,127,255,255,127,255,255,127,255,255,5,255, - 255,132,49,149,133,58,198,74,199,74,8,198,74,147,198,66,198,66,134,66, - 134,66,69,58,69,58,4,50,4,50,195,41,195,41,130,33,66,33,65,25, - 1,25,0,17,0,17,192,16,192,8,128,0,3,64,0,142,0,36,255,255, - 129,245,189,21,0,99,129,118,206,12,255,255,130,190,247,40,132,20,0,99, - 130,133,115,124,239,12,255,255,130,190,247,40,132,20,0,99,130,133,115,124, - 239,25,255,255,129,59,231,24,0,99,129,59,231,59,255,255,129,245,189,10, - 0,99,129,173,148,127,255,255,127,255,255,127,255,255,127,255,255,4,255,255, - 132,50,149,133,58,198,74,199,74,9,198,74,150,198,66,198,66,134,66,134, - 66,69,58,69,58,68,50,4,50,196,49,195,41,131,41,130,33,65,33,1, - 25,0,25,0,17,192,16,192,8,128,0,128,0,64,0,64,0,130,0,36, - 255,255,129,245,189,21,0,99,129,118,206,12,255,255,129,245,189,22,0,99, - 129,113,173,12,255,255,129,245,189,22,0,99,129,113,173,25,255,255,129,173, - 148,23,0,99,129,107,140,60,255,255,129,245,189,10,0,99,129,173,148,127, - 255,255,127,255,255,127,255,255,127,255,255,3,255,255,133,115,157,133,58,198, - 66,199,74,199,74,9,198,74,3,198,66,144,134,66,133,58,69,58,68,58, - 4,50,4,50,195,41,131,41,130,33,65,33,1,25,0,25,0,17,0,17, - 192,8,192,8,3,128,0,138,0,36,255,255,129,245,189,21,0,99,129,118, - 206,11,255,255,129,124,239,24,0,99,129,124,239,10,255,255,129,124,239,24, - 0,99,129,124,239,23,255,255,129,249,222,24,0,99,129,245,189,60,255,255, - 129,184,214,10,0,99,129,179,181,127,255,255,127,255,255,127,255,255,127,255, - 255,137,255,255,255,255,180,173,133,58,198,66,198,74,198,74,199,74,199,74, - 8,198,74,3,198,66,147,134,66,134,66,69,58,69,58,4,50,4,50,195, - 41,195,41,130,33,66,33,65,25,1,25,0,17,0,17,192,16,192,8,128, - 8,128,0,128,0,170,0,36,255,255,129,245,189,21,0,99,129,118,206,11, - 255,255,129,245,189,9,0,99,134,47,165,59,231,255,255,255,255,184,214,107, - 140,9,0,99,129,113,173,10,255,255,129,245,189,9,0,99,134,47,165,59, - 231,255,255,255,255,184,214,107,140,9,0,99,129,113,173,23,255,255,129,47, - 165,24,0,99,129,124,239,60,255,255,130,190,247,40,132,9,0,99,129,124, - 239,127,255,255,127,255,255,127,255,255,127,255,255,134,255,255,180,173,133,66, - 198,66,199,74,198,74,3,199,74,9,198,74,149,198,66,198,66,134,66,134, - 66,133,58,69,58,68,50,4,50,196,41,195,41,130,33,66,33,65,25,1, - 25,0,17,0,17,192,16,192,8,192,8,128,8,128,0,184,0,36,255,255, - 129,245,189,21,0,99,129,118,206,11,255,255,129,133,115,8,0,99,129,179, - 181,6,255,255,129,107,140,8,0,99,130,133,115,190,247,9,255,255,129,133, - 115,8,0,99,129,179,181,6,255,255,129,107,140,8,0,99,130,133,115,190, - 247,22,255,255,129,133,115,10,0,99,130,179,181,184,214,5,255,255,131,249, - 222,245,189,179,181,3,0,99,129,173,148,62,255,255,129,249,222,8,0,99, - 129,118,206,127,255,255,127,255,255,127,255,255,127,255,255,132,255,255,54,190, - 134,66,198,66,3,198,74,131,199,74,198,74,199,74,8,198,74,3,198,66, - 147,134,66,134,66,133,58,69,58,69,50,4,50,4,50,195,41,131,41,130, - 33,65,25,1,25,0,25,0,17,0,17,192,16,192,8,128,8,128,8,179, - 0,36,255,255,129,245,189,7,0,99,129,249,222,24,255,255,129,184,214,8, - 0,99,129,40,132,7,255,255,130,124,239,133,115,8,0,99,129,184,214,8, - 255,255,129,184,214,8,0,99,129,40,132,7,255,255,130,124,239,133,115,8, - 0,99,129,184,214,21,255,255,129,59,231,9,0,99,130,133,115,59,231,11, - 255,255,131,249,222,113,173,118,206,63,255,255,130,124,239,245,189,4,0,99, - 130,245,189,59,231,127,255,255,127,255,255,127,255,255,127,255,255,132,255,255, - 54,190,198,66,198,66,4,198,74,4,199,74,8,198,74,149,198,66,198,66, - 134,66,134,66,133,58,69,58,69,58,4,50,4,50,195,41,131,41,130,33, - 66,33,65,25,1,25,0,25,0,17,192,16,192,8,192,8,128,8,146,0, - 36,255,255,129,245,189,7,0,99,129,249,222,24,255,255,129,179,181,8,0, - 99,129,245,189,8,255,255,129,113,173,8,0,99,129,113,173,8,255,255,129, - 179,181,8,0,99,129,245,189,8,255,255,129,113,173,8,0,99,129,113,173, - 21,255,255,129,118,206,9,0,99,129,118,206,127,255,255,127,255,255,127,255, - 255,127,255,255,86,255,255,131,120,198,198,66,134,66,5,198,74,4,199,74, - 9,198,74,148,198,66,198,66,134,66,134,66,69,58,69,58,68,50,4,50, - 196,41,195,41,130,33,130,33,65,33,1,25,0,25,0,17,192,16,192,16, - 192,8,192,8,146,0,36,255,255,129,245,189,7,0,99,129,249,222,24,255, - 255,129,107,140,8,0,99,129,190,247,8,255,255,129,59,231,8,0,99,129, - 133,115,8,255,255,129,107,140,8,0,99,129,190,247,8,255,255,129,59,231, - 8,0,99,129,133,115,21,255,255,129,245,189,9,0,99,129,190,247,127,255, - 255,127,255,255,127,255,255,127,255,255,85,255,255,131,184,206,199,74,134,66, - 4,198,74,7,199,74,8,198,74,148,198,66,198,66,134,66,134,66,133,58, - 69,58,69,58,4,50,4,50,195,41,131,41,130,33,65,33,1,25,0,25, - 0,17,0,17,192,16,192,8,192,8,150,0,36,255,255,129,245,189,7,0, - 99,129,249,222,23,255,255,129,190,247,8,0,99,129,107,140,10,255,255,129, - 133,115,8,0,99,129,124,239,6,255,255,129,190,247,8,0,99,129,107,140, - 10,255,255,129,133,115,8,0,99,129,124,239,20,255,255,129,245,189,8,0, - 99,129,40,132,127,255,255,127,255,255,127,255,255,127,255,255,85,255,255,133, - 185,206,7,75,133,66,198,74,198,66,4,198,74,7,199,74,7,198,74,148, - 198,66,198,66,134,66,134,66,133,58,69,58,69,58,4,50,4,50,195,41, - 195,41,130,33,65,33,65,25,1,25,0,17,0,17,192,16,192,16,192,8, - 155,0,36,255,255,129,245,189,7,0,99,129,249,222,23,255,255,129,184,214, - 8,0,99,129,179,181,10,255,255,129,47,165,8,0,99,129,184,214,6,255, - 255,129,184,214,8,0,99,129,179,181,10,255,255,129,47,165,8,0,99,129, - 184,214,20,255,255,129,245,189,8,0,99,129,133,115,127,255,255,127,255,255, - 127,255,255,127,255,255,84,255,255,138,185,214,199,74,133,66,198,66,198,66, - 198,74,198,74,199,74,199,74,198,74,6,199,74,9,198,74,147,198,66,134, - 66,134,66,134,58,69,58,69,58,68,50,4,50,196,49,195,41,130,33,130, - 33,65,25,1,25,0,25,0,17,0,17,192,16,192,16,182,0,36,255,255, - 129,245,189,7,0,99,129,249,222,23,255,255,129,179,181,8,0,99,129,118, - 206,10,255,255,129,245,189,8,0,99,129,245,189,6,255,255,129,179,181,8, - 0,99,129,118,206,10,255,255,129,245,189,8,0,99,129,245,189,20,255,255, - 129,245,189,9,0,99,129,59,231,32,255,255,130,245,189,245,189,5,0,99, - 131,40,132,245,189,118,206,61,255,255,130,245,189,245,189,5,0,99,131,40, - 132,245,189,118,206,127,255,255,127,255,255,127,255,255,96,255,255,131,250,222, - 8,83,133,58,4,198,66,130,198,74,198,74,8,199,74,9,198,74,147,198, - 66,198,66,134,66,134,66,133,58,69,58,69,58,4,50,4,50,195,41,131, - 41,130,33,65,33,1,25,0,25,0,17,0,17,192,16,192,16,234,0,36, - 255,255,129,245,189,7,0,99,129,249,222,23,255,255,129,47,165,8,0,99, - 129,59,231,10,255,255,129,184,214,8,0,99,129,113,173,6,255,255,129,47, - 165,8,0,99,129,59,231,10,255,255,129,184,214,8,0,99,129,113,173,20, - 255,255,129,118,206,9,0,99,129,47,165,29,255,255,130,59,231,47,165,12, - 0,99,129,245,189,11,255,255,129,40,132,6,0,99,129,59,231,4,255,255, - 130,118,206,173,148,3,0,99,130,173,148,245,189,4,255,255,9,0,99,13, - 255,255,130,59,231,47,165,12,0,99,129,245,189,16,255,255,131,118,206,245, - 189,133,115,5,0,99,132,133,115,245,189,245,189,59,231,127,255,255,127,255, - 255,127,255,255,65,255,255,131,251,222,73,83,133,58,5,198,66,129,199,66, - 3,199,74,129,198,74,6,199,74,8,198,74,147,198,66,198,66,134,66,134, - 66,133,58,69,58,69,58,68,50,4,50,195,41,131,41,130,33,65,33,65, - 25,1,25,0,17,0,17,192,16,192,16,216,0,36,255,255,129,245,189,7, - 0,99,129,249,222,23,255,255,129,107,140,8,0,99,129,190,247,10,255,255, - 129,59,231,8,0,99,129,173,148,6,255,255,129,107,140,8,0,99,129,190, - 247,10,255,255,129,59,231,8,0,99,129,173,148,20,255,255,129,249,222,10, - 0,99,129,245,189,27,255,255,129,245,189,15,0,99,130,107,140,190,247,9, - 255,255,129,40,132,6,0,99,133,118,206,255,255,255,255,124,239,107,140,6, - 0,99,129,40,132,4,255,255,9,0,99,12,255,255,129,245,189,15,0,99, - 130,107,140,190,247,12,255,255,129,245,189,14,0,99,130,179,181,59,231,127, - 255,255,127,255,255,127,255,255,61,255,255,131,60,231,73,91,133,58,5,198, - 66,129,198,74,11,199,74,8,198,74,130,198,66,198,66,3,134,66,142,133, - 58,69,58,69,58,4,50,196,49,195,41,130,33,66,33,65,25,1,25,0, - 25,0,17,0,17,192,16,213,0,36,255,255,129,245,189,7,0,99,129,249, - 222,23,255,255,129,133,115,8,0,99,11,255,255,129,190,247,8,0,99,129, - 40,132,6,255,255,129,133,115,8,0,99,11,255,255,129,190,247,8,0,99, - 129,40,132,20,255,255,129,190,247,11,0,99,129,245,189,25,255,255,129,173, - 148,17,0,99,130,40,132,124,239,8,255,255,129,40,132,6,0,99,132,179, - 181,255,255,190,247,40,132,7,0,99,129,173,148,4,255,255,9,0,99,11, - 255,255,129,173,148,17,0,99,130,40,132,124,239,9,255,255,130,190,247,107, - 140,17,0,99,130,47,165,190,247,127,255,255,127,255,255,127,255,255,58,255, - 255,131,124,231,74,91,133,58,6,198,66,8,199,74,129,198,74,3,199,74, - 9,198,74,146,198,66,198,66,134,66,134,66,133,58,69,58,69,58,4,50, - 4,50,195,41,131,41,130,33,65,33,65,25,0,25,0,17,0,17,192,16, - 197,0,36,255,255,129,245,189,7,0,99,129,249,222,22,255,255,129,190,247, - 8,0,99,129,40,132,12,255,255,9,0,99,5,255,255,129,190,247,8,0, - 99,129,40,132,12,255,255,9,0,99,21,255,255,129,107,140,11,0,99,129, - 47,165,23,255,255,129,173,148,19,0,99,129,107,140,8,255,255,129,40,132, - 6,0,99,131,107,140,255,255,47,165,8,0,99,129,113,173,4,255,255,9, - 0,99,10,255,255,129,173,148,19,0,99,129,107,140,9,255,255,129,107,140, - 18,0,99,129,107,140,127,255,255,127,255,255,127,255,255,58,255,255,131,125, - 239,74,91,133,58,7,198,66,132,198,74,199,66,199,74,198,74,7,199,74, - 10,198,74,143,198,66,198,66,134,66,134,66,133,66,69,58,69,58,68,50, - 4,50,195,41,195,41,130,33,65,33,1,25,0,25,3,0,17,210,0,36, - 255,255,129,245,189,7,0,99,129,107,140,3,0,99,131,133,115,245,189,245, - 189,16,255,255,129,124,239,8,0,99,129,107,140,12,255,255,129,40,132,8, - 0,99,129,190,247,4,255,255,129,124,239,8,0,99,129,107,140,12,255,255, - 129,40,132,8,0,99,129,190,247,20,255,255,129,118,206,12,0,99,130,107, - 140,59,231,20,255,255,129,179,181,21,0,99,129,245,189,7,255,255,129,40, - 132,6,0,99,130,133,115,249,222,9,0,99,129,245,189,4,255,255,9,0, - 99,9,255,255,129,179,181,21,0,99,129,245,189,7,255,255,129,245,189,19, - 0,99,129,179,181,127,255,255,127,255,255,127,255,255,57,255,255,131,125,239, - 139,99,133,58,9,198,66,7,199,74,13,198,74,143,198,66,198,66,134,66, - 134,66,133,66,133,58,69,58,68,58,4,50,195,49,195,41,130,33,65,33, - 65,25,0,25,3,0,17,202,0,36,255,255,129,245,189,15,0,99,129,179, - 181,14,255,255,129,249,222,8,0,99,129,173,148,12,255,255,129,40,132,8, - 0,99,129,124,239,4,255,255,129,249,222,8,0,99,129,173,148,12,255,255, - 129,40,132,8,0,99,129,124,239,20,255,255,130,190,247,40,132,13,0,99, - 129,245,189,18,255,255,129,59,231,22,0,99,130,133,115,190,247,6,255,255, - 129,40,132,17,0,99,129,118,206,4,255,255,9,0,99,8,255,255,129,59, - 231,22,0,99,130,133,115,190,247,5,255,255,130,190,247,133,115,19,0,99, - 129,249,222,127,255,255,127,255,255,127,255,255,56,255,255,131,189,239,203,107, - 133,58,9,198,66,131,199,74,199,74,198,66,6,199,74,12,198,74,3,198, - 66,140,134,66,133,66,133,58,69,58,68,58,4,50,4,50,195,41,130,33, - 66,33,65,25,0,25,3,0,17,192,0,36,255,255,129,245,189,16,0,99, - 130,133,115,249,222,12,255,255,129,249,222,8,0,99,129,173,148,12,255,255, - 129,107,140,8,0,99,129,59,231,4,255,255,129,249,222,8,0,99,129,173, - 148,12,255,255,129,107,140,8,0,99,129,59,231,21,255,255,129,118,206,14, - 0,99,130,107,140,59,231,16,255,255,129,173,148,23,0,99,129,118,206,6, - 255,255,129,40,132,17,0,99,129,249,222,4,255,255,9,0,99,8,255,255, - 129,173,148,23,0,99,129,118,206,5,255,255,129,245,189,19,0,99,129,133, - 115,127,255,255,127,255,255,127,255,255,56,255,255,131,189,239,204,107,69,58, - 9,198,66,129,198,74,10,199,74,12,198,74,3,198,66,139,133,66,133,66, - 69,58,68,58,4,50,4,50,195,41,131,41,66,33,65,25,0,25,3,0, - 17,227,0,36,255,255,129,245,189,18,0,99,129,184,214,11,255,255,129,118, - 206,8,0,99,129,113,173,12,255,255,129,173,148,8,0,99,129,249,222,4, - 255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173,148,8,0,99, - 129,249,222,22,255,255,129,173,148,15,0,99,129,245,189,14,255,255,129,249, - 222,10,0,99,134,179,181,190,247,255,255,255,255,184,214,40,132,8,0,99, - 129,173,148,6,255,255,129,40,132,17,0,99,129,124,239,4,255,255,9,0, - 99,7,255,255,129,249,222,10,0,99,134,179,181,190,247,255,255,255,255,184, - 214,40,132,8,0,99,129,173,148,5,255,255,129,47,165,19,0,99,129,47, - 165,127,255,255,127,255,255,127,255,255,55,255,255,131,190,247,45,116,69,58, - 9,198,66,130,198,74,198,74,8,199,74,130,198,74,199,74,12,198,74,3, - 198,66,139,134,66,133,66,133,58,69,58,68,50,4,50,195,41,130,41,130, - 33,65,33,1,25,3,0,17,239,0,36,255,255,129,245,189,19,0,99,129, - 249,222,10,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173,148, - 8,0,99,129,249,222,4,255,255,129,118,206,8,0,99,129,113,173,12,255, - 255,129,173,148,8,0,99,129,249,222,22,255,255,130,124,239,40,132,15,0, - 99,130,107,140,124,239,12,255,255,129,113,173,9,0,99,129,249,222,5,255, - 255,130,124,239,133,115,8,0,99,129,190,247,5,255,255,129,40,132,17,0, - 99,5,255,255,9,0,99,7,255,255,129,113,173,9,0,99,129,249,222,5, - 255,255,130,124,239,133,115,8,0,99,129,190,247,4,255,255,129,40,132,8, - 0,99,130,133,115,118,206,4,255,255,130,245,189,179,181,3,0,99,129,245, - 189,127,255,255,127,255,255,127,255,255,54,255,255,131,189,239,45,116,69,58, - 10,198,66,130,198,74,198,74,10,199,74,13,198,74,144,198,66,198,66,134, - 66,133,66,133,58,69,58,68,50,4,50,195,41,131,41,130,33,65,25,1, - 25,0,25,0,17,0,17,236,0,36,255,255,129,245,189,19,0,99,130,133, - 115,124,239,9,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173, - 148,8,0,99,129,249,222,4,255,255,129,118,206,8,0,99,129,113,173,12, - 255,255,129,173,148,8,0,99,129,249,222,23,255,255,130,59,231,133,115,15, - 0,99,130,133,115,249,222,11,255,255,129,133,115,8,0,99,129,245,189,7, - 255,255,129,245,189,8,0,99,129,249,222,5,255,255,129,40,132,10,0,99, - 130,107,140,245,189,3,255,255,130,249,222,245,189,5,255,255,9,0,99,7, - 255,255,129,133,115,8,0,99,129,245,189,7,255,255,129,245,189,8,0,99, - 129,249,222,4,255,255,9,0,99,129,249,222,8,255,255,131,118,206,173,148, - 190,247,127,255,255,127,255,255,127,255,255,53,255,255,131,190,247,45,124,69, - 50,12,198,66,129,198,74,11,199,74,12,198,74,3,198,66,141,133,66,133, - 58,69,58,68,58,4,50,195,41,131,41,130,33,65,33,1,25,0,25,0, - 17,0,17,224,0,36,255,255,129,245,189,20,0,99,129,113,173,9,255,255, - 129,118,206,8,0,99,129,113,173,12,255,255,129,173,148,8,0,99,129,249, - 222,4,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173,148,8, - 0,99,129,249,222,24,255,255,130,59,231,133,115,16,0,99,129,118,206,9, - 255,255,129,59,231,8,0,99,130,133,115,190,247,7,255,255,129,124,239,8, - 0,99,129,118,206,5,255,255,129,40,132,9,0,99,129,173,148,12,255,255, - 9,0,99,6,255,255,129,59,231,8,0,99,130,133,115,190,247,7,255,255, - 129,124,239,8,0,99,129,118,206,4,255,255,9,0,99,127,255,255,127,255, - 255,127,255,255,64,255,255,133,190,247,110,124,69,58,134,66,134,66,9,198, - 66,131,198,74,198,66,198,74,12,199,74,129,6,75,10,198,74,3,198,66, - 141,134,66,133,58,69,58,68,58,4,50,196,49,195,41,130,33,65,33,65, - 25,0,25,0,17,0,17,218,0,36,255,255,129,245,189,21,0,99,129,124, - 239,8,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173,148,8, - 0,99,129,184,214,4,255,255,129,118,206,8,0,99,129,113,173,12,255,255, - 129,173,148,8,0,99,129,184,214,25,255,255,130,59,231,40,132,16,0,99, - 129,118,206,8,255,255,129,245,189,8,0,99,129,113,173,9,255,255,129,133, - 115,7,0,99,129,245,189,5,255,255,129,40,132,8,0,99,129,40,132,13, - 255,255,9,0,99,6,255,255,129,245,189,8,0,99,129,113,173,9,255,255, - 129,133,115,7,0,99,129,245,189,3,255,255,129,190,247,9,0,99,127,255, - 255,127,255,255,127,255,255,63,255,255,131,190,247,111,132,69,50,5,134,66, - 9,198,66,130,198,74,198,74,10,199,74,13,198,74,143,198,66,198,66,134, - 66,133,66,69,58,68,58,4,50,195,49,195,41,130,33,65,33,1,25,0, - 25,0,17,0,17,224,0,36,255,255,130,249,222,124,239,6,255,255,130,118, - 206,245,189,12,0,99,129,179,181,8,255,255,129,118,206,8,0,99,129,113, - 173,12,255,255,129,173,148,8,0,99,129,249,222,4,255,255,129,118,206,8, - 0,99,129,113,173,12,255,255,129,173,148,8,0,99,129,249,222,26,255,255, - 130,190,247,173,148,16,0,99,129,184,214,7,255,255,129,113,173,8,0,99, - 129,184,214,9,255,255,129,173,148,7,0,99,129,113,173,5,255,255,129,40, - 132,8,0,99,129,245,189,13,255,255,9,0,99,6,255,255,129,113,173,8, - 0,99,129,184,214,9,255,255,129,173,148,7,0,99,129,113,173,4,255,255, - 9,0,99,129,245,189,127,255,255,127,255,255,127,255,255,62,255,255,130,111, - 132,69,50,5,134,66,11,198,66,129,198,74,11,199,74,12,198,74,143,198, - 66,198,66,134,66,133,66,69,58,69,58,4,50,196,49,195,41,130,33,65, - 33,65,25,0,25,0,17,0,17,217,0,47,255,255,129,245,189,10,0,99, - 129,133,115,8,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173, - 148,8,0,99,129,249,222,4,255,255,129,118,206,8,0,99,129,113,173,12, - 255,255,129,173,148,8,0,99,129,249,222,28,255,255,129,118,206,15,0,99, - 130,133,115,124,239,6,255,255,129,173,148,8,0,99,129,59,231,9,255,255, - 129,113,173,7,0,99,129,113,173,5,255,255,129,40,132,8,0,99,129,124, - 239,13,255,255,9,0,99,6,255,255,129,173,148,8,0,99,129,59,231,9, - 255,255,129,113,173,7,0,99,129,113,173,4,255,255,129,107,140,9,0,99, - 129,245,189,127,255,255,127,255,255,127,255,255,60,255,255,130,176,132,69,58, - 7,134,66,11,198,66,129,198,74,11,199,74,11,198,74,143,198,66,198,66, - 134,66,133,66,69,58,69,58,4,50,4,50,195,41,130,33,66,33,65,25, - 0,25,0,17,0,17,223,0,48,255,255,129,249,222,10,0,99,129,59,231, - 7,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173,148,8,0, - 99,129,249,222,4,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129, - 173,148,8,0,99,129,249,222,29,255,255,130,124,239,173,148,14,0,99,129, - 173,148,6,255,255,129,40,132,8,0,99,10,255,255,129,113,173,7,0,99, - 129,113,173,5,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0, - 99,6,255,255,129,40,132,8,0,99,10,255,255,129,113,173,7,0,99,129, - 113,173,4,255,255,129,179,181,10,0,99,130,107,140,59,231,127,255,255,127, - 255,255,127,255,255,57,255,255,130,176,140,69,58,9,134,66,7,198,66,130, - 198,74,198,66,3,198,74,9,199,74,130,198,74,6,75,10,198,74,143,198, - 66,198,66,134,66,134,66,133,58,69,58,4,50,4,50,195,41,130,41,66, - 33,65,25,1,25,0,25,0,17,220,0,49,255,255,129,245,189,9,0,99, - 129,245,189,7,255,255,129,118,206,8,0,99,129,113,173,12,255,255,129,173, - 148,8,0,99,129,249,222,4,255,255,129,118,206,8,0,99,129,113,173,12, - 255,255,129,173,148,8,0,99,129,249,222,31,255,255,129,118,206,14,0,99, - 129,184,214,5,255,255,8,0,99,129,133,115,10,255,255,129,113,173,7,0, - 99,129,113,173,5,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9, - 0,99,6,255,255,8,0,99,129,133,115,10,255,255,129,113,173,7,0,99, - 129,113,173,4,255,255,129,249,222,12,0,99,130,47,165,124,239,127,255,255, - 127,255,255,127,255,255,54,255,255,130,240,140,69,58,9,134,66,11,198,66, - 130,198,74,198,74,6,199,74,131,198,74,199,74,199,74,12,198,74,143,198, - 66,198,66,134,66,134,66,133,58,69,58,68,50,4,50,195,41,131,41,130, - 33,65,25,1,25,0,25,0,17,201,0,50,255,255,129,133,115,8,0,99, - 129,113,173,7,255,255,129,249,222,8,0,99,129,173,148,12,255,255,129,173, - 148,8,0,99,129,59,231,4,255,255,129,249,222,8,0,99,129,173,148,12, - 255,255,129,173,148,8,0,99,129,59,231,32,255,255,130,124,239,173,148,12, - 0,99,129,40,132,5,255,255,27,0,99,129,245,189,5,255,255,129,40,132, - 8,0,99,129,124,239,13,255,255,9,0,99,6,255,255,27,0,99,129,245, - 189,5,255,255,129,173,148,13,0,99,130,113,173,190,247,127,255,255,127,255, - 255,127,255,255,51,255,255,130,241,148,69,58,9,134,66,9,198,66,133,198, - 74,198,66,198,66,198,74,198,74,5,199,74,131,198,74,199,74,199,74,12, - 198,74,4,198,66,140,134,66,133,58,69,58,68,58,4,50,195,41,130,41, - 130,33,65,33,1,25,0,25,0,17,207,0,50,255,255,129,179,181,8,0, - 99,129,173,148,7,255,255,129,249,222,8,0,99,129,173,148,12,255,255,129, - 40,132,8,0,99,129,124,239,4,255,255,129,249,222,8,0,99,129,173,148, - 12,255,255,129,40,132,8,0,99,129,124,239,34,255,255,129,245,189,12,0, - 99,129,249,222,3,255,255,129,124,239,27,0,99,129,245,189,5,255,255,129, - 40,132,8,0,99,129,124,239,13,255,255,9,0,99,5,255,255,129,124,239, - 27,0,99,129,245,189,5,255,255,130,124,239,133,115,13,0,99,130,133,115, - 184,214,127,255,255,127,255,255,127,255,255,49,255,255,130,50,149,69,58,8, - 134,66,132,198,66,198,66,134,66,134,66,8,198,66,5,198,74,6,199,74, - 4,198,74,129,6,75,8,198,74,4,198,66,140,134,66,133,66,69,58,68, - 58,4,50,195,41,131,41,130,33,65,33,65,25,0,25,0,17,190,0,50, - 255,255,129,184,214,8,0,99,129,107,140,7,255,255,129,124,239,8,0,99, - 129,40,132,12,255,255,129,40,132,8,0,99,5,255,255,129,124,239,8,0, - 99,129,40,132,12,255,255,129,40,132,8,0,99,36,255,255,129,249,222,11, - 0,99,129,179,181,3,255,255,129,124,239,27,0,99,129,118,206,5,255,255, - 129,40,132,8,0,99,129,124,239,13,255,255,9,0,99,5,255,255,129,124, - 239,27,0,99,129,118,206,6,255,255,129,184,214,15,0,99,129,179,181,127, - 255,255,127,255,255,127,255,255,47,255,255,130,50,157,69,58,10,134,66,13, - 198,66,3,198,74,4,199,74,130,198,74,199,74,14,198,74,143,198,66,198, - 66,134,66,134,66,133,66,69,58,68,58,4,50,196,41,131,41,130,33,65, - 25,65,25,0,25,0,25,197,0,50,255,255,129,59,231,8,0,99,129,40, - 132,7,255,255,129,190,247,8,0,99,129,40,132,12,255,255,8,0,99,129, - 133,115,5,255,255,129,190,247,8,0,99,129,40,132,12,255,255,8,0,99, - 129,133,115,37,255,255,129,249,222,10,0,99,129,107,140,3,255,255,129,124, - 239,27,0,99,129,249,222,5,255,255,129,40,132,8,0,99,129,124,239,13, - 255,255,9,0,99,5,255,255,129,124,239,27,0,99,129,249,222,7,255,255, - 129,184,214,15,0,99,129,113,173,127,255,255,127,255,255,127,255,255,45,255, - 255,130,50,157,69,58,12,134,66,8,198,66,131,198,74,198,74,198,66,5, - 198,74,130,199,74,199,74,6,198,74,129,6,75,10,198,74,3,198,66,140, - 134,66,133,66,69,58,69,58,4,50,196,41,195,41,130,33,65,33,1,25, - 0,25,0,25,196,0,50,255,255,129,124,239,8,0,99,129,40,132,8,255, - 255,129,133,115,8,0,99,11,255,255,129,190,247,8,0,99,129,107,140,6, - 255,255,129,133,115,8,0,99,11,255,255,129,190,247,8,0,99,129,107,140, - 38,255,255,129,184,214,10,0,99,3,255,255,129,124,239,27,0,99,129,124, - 239,5,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0,99,5, - 255,255,129,124,239,27,0,99,129,124,239,8,255,255,130,59,231,40,132,14, - 0,99,129,179,181,127,255,255,127,255,255,127,255,255,43,255,255,130,115,157, - 69,58,12,134,66,4,198,66,129,199,66,6,198,66,131,198,74,198,74,198, - 66,3,198,74,130,199,74,199,74,17,198,74,3,198,66,140,134,66,133,66, - 69,58,69,58,4,50,196,49,195,41,130,33,65,33,65,25,0,25,0,25, - 193,0,50,255,255,129,124,239,8,0,99,129,40,132,8,255,255,129,107,140, - 8,0,99,129,124,239,10,255,255,129,59,231,8,0,99,129,47,165,6,255, - 255,129,107,140,8,0,99,129,124,239,10,255,255,129,59,231,8,0,99,129, - 47,165,39,255,255,129,173,148,9,0,99,129,124,239,3,255,255,26,0,99, - 129,133,115,6,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0, - 99,6,255,255,26,0,99,129,133,115,11,255,255,129,179,181,14,0,99,129, - 59,231,127,255,255,127,255,255,127,255,255,41,255,255,130,115,165,69,58,13, - 134,66,9,198,66,132,198,74,198,66,198,74,198,66,5,198,74,130,199,74, - 199,74,16,198,74,3,198,66,140,134,66,134,66,133,58,69,58,4,50,4, - 50,195,41,130,33,65,33,65,25,0,25,0,25,201,0,50,255,255,129,124, - 239,8,0,99,129,40,132,8,255,255,129,47,165,8,0,99,129,249,222,10, - 255,255,129,184,214,8,0,99,129,179,181,6,255,255,129,47,165,8,0,99, - 129,249,222,10,255,255,129,184,214,8,0,99,129,179,181,39,255,255,129,245, - 189,9,0,99,129,124,239,3,255,255,8,0,99,129,113,173,24,255,255,129, - 40,132,8,0,99,129,124,239,13,255,255,9,0,99,6,255,255,8,0,99, - 129,113,173,30,255,255,130,124,239,113,173,12,0,99,129,173,148,127,255,255, - 127,255,255,127,255,255,40,255,255,132,115,165,69,58,134,66,198,66,12,134, - 66,6,198,66,129,198,74,4,198,66,131,198,74,198,74,198,66,17,198,74, - 129,199,74,4,198,74,3,198,66,140,134,66,134,66,133,58,69,58,4,50, - 4,50,195,41,131,41,66,33,65,25,1,25,0,25,211,0,50,255,255,129, - 249,222,8,0,99,129,173,148,8,255,255,129,179,181,8,0,99,129,245,189, - 10,255,255,129,245,189,8,0,99,129,118,206,6,255,255,129,179,181,8,0, - 99,129,245,189,10,255,255,129,245,189,8,0,99,129,118,206,39,255,255,129, - 249,222,9,0,99,129,59,231,3,255,255,129,40,132,7,0,99,129,47,165, - 24,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0,99,6,255, - 255,129,40,132,7,0,99,129,47,165,32,255,255,130,59,231,173,148,11,0, - 99,129,124,239,127,255,255,127,255,255,127,255,255,38,255,255,130,115,165,69, - 58,14,134,66,6,198,66,133,198,74,198,74,198,66,198,74,198,74,4,198, - 66,4,198,74,129,199,74,9,198,74,4,199,74,5,198,74,142,198,66,198, - 66,134,66,134,66,133,58,69,58,68,58,4,50,196,41,195,41,130,33,65, - 25,0,25,0,25,222,0,50,255,255,129,245,189,8,0,99,129,47,165,8, - 255,255,129,118,206,8,0,99,129,113,173,10,255,255,129,47,165,8,0,99, - 129,59,231,6,255,255,129,118,206,8,0,99,129,113,173,10,255,255,129,47, - 165,8,0,99,129,59,231,39,255,255,129,249,222,9,0,99,129,124,239,3, - 255,255,129,173,148,7,0,99,129,107,140,24,255,255,129,40,132,8,0,99, - 129,124,239,13,255,255,9,0,99,6,255,255,129,173,148,7,0,99,129,107, - 140,34,255,255,129,118,206,10,0,99,129,245,189,127,255,255,127,255,255,127, - 255,255,37,255,255,133,180,173,69,58,134,66,199,66,134,66,3,198,66,7, - 134,66,131,198,66,134,66,134,66,5,198,66,132,198,74,198,74,198,66,198, - 74,6,198,66,3,198,74,129,199,74,7,198,74,6,199,74,4,198,74,3, - 198,66,140,134,66,134,66,133,66,69,58,69,58,4,50,196,49,195,41,130, - 33,65,33,0,25,0,17,203,0,50,255,255,129,173,148,8,0,99,129,245, - 189,8,255,255,129,59,231,8,0,99,129,107,140,10,255,255,129,133,115,7, - 0,99,129,133,115,7,255,255,129,59,231,8,0,99,129,107,140,10,255,255, - 129,133,115,7,0,99,129,133,115,40,255,255,129,184,214,9,0,99,129,124, - 239,3,255,255,129,113,173,8,0,99,129,190,247,23,255,255,129,40,132,8, - 0,99,129,124,239,13,255,255,9,0,99,6,255,255,129,113,173,8,0,99, - 129,190,247,34,255,255,129,249,222,9,0,99,129,113,173,127,255,255,127,255, - 255,127,255,255,36,255,255,133,180,173,133,58,134,66,199,66,134,66,4,198, - 66,129,134,66,23,198,66,4,198,74,130,199,74,199,74,4,198,74,9,199, - 74,4,198,74,3,198,66,139,134,66,134,66,69,58,69,58,4,50,196,49, - 195,41,131,33,66,33,1,25,0,17,198,0,49,255,255,129,124,239,9,0, - 99,129,184,214,9,255,255,129,133,115,8,0,99,129,59,231,8,255,255,129, - 59,231,8,0,99,129,47,165,8,255,255,129,133,115,8,0,99,129,59,231, - 8,255,255,129,59,231,8,0,99,129,47,165,40,255,255,129,113,173,9,0, - 99,4,255,255,129,245,189,8,0,99,129,118,206,23,255,255,129,40,132,8, - 0,99,129,124,239,13,255,255,9,0,99,6,255,255,129,245,189,8,0,99, - 129,118,206,35,255,255,129,245,189,8,0,99,129,173,148,127,255,255,127,255, - 255,127,255,255,35,255,255,135,180,173,69,58,134,66,199,66,134,66,135,66, - 199,66,28,198,66,129,198,74,3,199,74,4,198,74,12,199,74,130,198,74, - 198,74,3,198,66,139,134,66,134,66,69,58,69,58,4,50,196,49,195,41, - 130,33,66,33,1,25,0,17,240,0,49,255,255,129,47,165,9,0,99,129, - 190,247,9,255,255,129,47,165,8,0,99,129,179,181,8,255,255,129,245,189, - 8,0,99,129,245,189,8,255,255,129,47,165,8,0,99,129,179,181,8,255, - 255,129,245,189,8,0,99,129,245,189,23,255,255,130,113,173,118,206,14,255, - 255,129,59,231,9,0,99,129,107,140,4,255,255,129,59,231,8,0,99,129, - 107,140,23,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0,99, - 6,255,255,129,59,231,8,0,99,129,107,140,35,255,255,129,249,222,8,0, - 99,129,173,148,127,255,255,127,255,255,127,255,255,34,255,255,134,181,173,133, - 58,134,66,135,66,134,66,135,66,3,199,66,131,198,66,198,66,199,66,12, - 198,66,132,199,66,198,66,198,74,198,74,8,198,66,133,198,74,199,74,199, - 74,198,74,198,74,3,199,74,3,198,74,131,199,74,199,74,198,74,6,199, - 74,129,198,74,5,198,66,138,134,66,133,58,69,58,4,50,4,50,195,41, - 131,33,66,33,1,25,0,17,247,0,48,255,255,129,118,206,9,0,99,129, - 47,165,10,255,255,129,118,206,8,0,99,130,133,115,124,239,6,255,255,130, - 190,247,133,115,8,0,99,129,124,239,8,255,255,129,118,206,8,0,99,130, - 133,115,124,239,6,255,255,130,190,247,133,115,8,0,99,129,124,239,22,255, - 255,133,190,247,0,99,0,99,40,132,245,189,11,255,255,130,59,231,40,132, - 9,0,99,129,179,181,5,255,255,129,133,115,8,0,99,129,245,189,22,255, - 255,129,40,132,8,0,99,129,124,239,13,255,255,9,0,99,7,255,255,129, - 133,115,8,0,99,129,245,189,34,255,255,129,184,214,8,0,99,129,173,148, - 127,255,255,127,255,255,127,255,255,33,255,255,132,181,181,134,66,134,66,199, - 74,3,199,66,134,199,74,199,66,199,66,198,66,199,66,199,66,12,198,66, - 131,199,66,198,66,198,74,8,198,66,130,198,74,198,66,3,198,74,3,199, - 74,3,198,74,10,199,74,4,198,74,140,198,66,198,66,134,66,134,66,69, - 58,4,50,4,50,195,41,131,33,66,25,1,25,0,17,15,1,47,255,255, - 129,245,189,10,0,99,129,184,214,10,255,255,130,190,247,133,115,8,0,99, - 129,173,148,6,255,255,129,47,165,8,0,99,129,173,148,9,255,255,130,190, - 247,133,115,8,0,99,129,173,148,6,255,255,129,47,165,8,0,99,129,173, - 148,23,255,255,129,118,206,5,0,99,131,47,165,245,189,59,231,5,255,255, - 130,245,189,47,165,11,0,99,129,184,214,5,255,255,129,47,165,9,0,99, - 129,184,214,10,255,255,131,184,214,173,148,190,247,8,255,255,129,40,132,8, - 0,99,129,124,239,13,255,255,9,0,99,7,255,255,129,47,165,9,0,99, - 129,184,214,10,255,255,131,184,214,173,148,190,247,8,255,255,131,249,222,47, - 165,184,214,9,255,255,129,113,173,8,0,99,129,113,173,127,255,255,127,255, - 255,127,255,255,32,255,255,133,181,181,134,66,134,66,199,74,199,74,3,199, - 66,129,199,74,4,199,66,13,198,66,129,199,66,7,198,66,129,198,74,3, - 198,66,130,198,74,198,74,6,199,74,130,198,74,198,74,10,199,74,4,198, - 74,140,198,66,198,66,134,66,134,66,69,58,4,50,196,49,195,41,131,33, - 66,25,1,25,0,17,45,1,35,255,255,132,179,181,47,165,245,189,118,206, - 6,255,255,130,245,189,107,140,10,0,99,129,40,132,12,255,255,129,113,173, - 9,0,99,134,107,140,249,222,255,255,255,255,249,222,173,148,9,0,99,129, - 118,206,10,255,255,129,113,173,9,0,99,134,107,140,249,222,255,255,255,255, - 249,222,173,148,9,0,99,129,118,206,23,255,255,129,47,165,25,0,99,129, - 133,115,6,255,255,129,184,214,10,0,99,130,173,148,245,189,5,255,255,130, - 245,189,245,189,3,0,99,129,245,189,8,255,255,129,40,132,8,0,99,129, - 124,239,13,255,255,9,0,99,7,255,255,129,184,214,10,0,99,130,173,148, - 245,189,5,255,255,130,245,189,245,189,3,0,99,129,245,189,8,255,255,129, - 113,173,3,0,99,130,245,189,245,189,4,255,255,130,59,231,47,165,9,0, - 99,129,245,189,127,255,255,127,255,255,127,255,255,31,255,255,136,245,181,134, - 66,134,66,199,74,199,74,199,66,199,74,199,74,3,199,66,3,199,74,133, - 199,66,199,74,198,66,199,74,199,66,3,198,66,129,199,66,6,198,66,129, - 199,66,9,198,66,130,198,74,198,74,6,199,74,129,198,74,11,199,74,4, - 198,74,140,198,66,198,66,134,66,134,66,69,58,5,58,196,49,195,41,131, - 33,66,33,1,25,0,17,199,0,35,255,255,129,133,115,21,0,99,129,184, - 214,12,255,255,129,59,231,23,0,99,129,40,132,11,255,255,129,59,231,23, - 0,99,129,40,132,23,255,255,129,190,247,26,0,99,129,245,189,7,255,255, - 129,40,132,21,0,99,129,40,132,8,255,255,129,40,132,8,0,99,129,124, - 239,13,255,255,9,0,99,8,255,255,129,40,132,21,0,99,129,40,132,8, - 255,255,129,133,115,20,0,99,129,59,231,127,255,255,127,255,255,127,255,255, - 30,255,255,135,245,181,134,66,134,66,199,74,199,66,199,74,199,66,3,199, - 74,138,199,66,198,66,199,66,199,66,199,74,199,74,198,66,198,66,199,66, - 199,66,21,198,66,129,198,74,5,199,74,129,198,74,13,199,74,130,198,74, - 198,74,3,198,66,138,134,66,134,66,69,58,69,58,4,50,195,41,131,33, - 66,33,1,25,0,17,187,0,34,255,255,129,59,231,21,0,99,129,47,165, - 14,255,255,129,47,165,22,0,99,129,118,206,12,255,255,129,47,165,22,0, - 99,129,118,206,23,255,255,129,245,189,25,0,99,129,40,132,8,255,255,129, - 118,206,22,0,99,129,118,206,7,255,255,129,40,132,8,0,99,129,124,239, - 13,255,255,9,0,99,8,255,255,129,118,206,22,0,99,129,118,206,6,255, - 255,129,184,214,20,0,99,129,40,132,127,255,255,127,255,255,127,255,255,30, - 255,255,131,245,181,134,66,134,66,5,199,74,129,199,66,7,199,74,132,198, - 74,198,66,198,66,199,66,23,198,66,129,199,66,3,199,74,130,198,74,198, - 74,13,199,74,130,198,74,198,74,3,198,66,138,134,66,134,66,69,58,69, - 58,4,50,196,41,131,41,66,33,1,25,0,17,189,0,34,255,255,129,179, - 181,20,0,99,130,40,132,190,247,14,255,255,130,124,239,133,115,20,0,99, - 129,173,148,13,255,255,130,124,239,133,115,20,0,99,129,173,148,24,255,255, - 129,173,148,25,0,99,129,59,231,9,255,255,129,47,165,21,0,99,129,173, - 148,7,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0,99,9, - 255,255,129,47,165,21,0,99,129,173,148,6,255,255,129,113,173,20,0,99, - 129,118,206,127,255,255,127,255,255,127,255,255,29,255,255,131,245,181,134,66, - 134,66,11,199,74,4,199,66,134,198,66,198,66,199,74,199,66,198,66,199, - 66,19,198,66,132,199,66,199,74,199,74,198,74,15,199,74,129,198,74,4, - 198,66,3,134,66,136,133,58,69,58,5,50,4,50,195,41,130,33,65,25, - 0,17,188,0,34,255,255,129,40,132,19,0,99,130,133,115,124,239,16,255, - 255,129,184,214,19,0,99,130,40,132,124,239,14,255,255,129,184,214,19,0, - 99,130,40,132,124,239,23,255,255,129,124,239,25,0,99,129,118,206,10,255, - 255,130,190,247,40,132,21,0,99,129,249,222,6,255,255,129,40,132,8,0, - 99,129,124,239,13,255,255,9,0,99,9,255,255,130,190,247,40,132,21,0, - 99,129,249,222,5,255,255,129,133,115,19,0,99,129,107,140,127,255,255,127, - 255,255,127,255,255,29,255,255,131,246,181,134,66,134,66,10,199,74,129,198, - 74,3,198,66,134,199,74,199,66,199,74,198,74,199,66,199,74,23,198,66, - 19,199,74,132,198,74,199,74,198,66,198,66,3,134,66,135,69,58,69,58, - 4,50,196,41,131,41,66,33,1,25,205,0,33,255,255,129,59,231,19,0, - 99,130,107,140,124,239,18,255,255,129,245,189,17,0,99,130,133,115,59,231, - 16,255,255,129,245,189,17,0,99,130,133,115,59,231,24,255,255,129,245,189, - 24,0,99,129,184,214,12,255,255,130,124,239,40,132,19,0,99,130,133,115, - 184,214,6,255,255,129,40,132,8,0,99,129,124,239,13,255,255,9,0,99, - 10,255,255,130,124,239,40,132,19,0,99,130,133,115,184,214,4,255,255,129, - 184,214,19,0,99,130,40,132,124,239,127,255,255,127,255,255,127,255,255,28, - 255,255,133,245,181,134,66,134,66,199,74,198,74,8,199,74,136,199,66,199, - 74,199,74,198,74,199,66,199,74,199,66,199,66,3,198,66,130,198,74,198, - 74,8,198,66,129,199,74,12,198,66,20,199,74,129,198,74,3,198,66,3, - 134,66,134,69,58,5,58,4,50,195,41,130,33,65,25,210,0,33,255,255, - 129,179,181,18,0,99,129,113,173,21,255,255,129,184,214,15,0,99,130,107, - 140,124,239,18,255,255,129,184,214,15,0,99,130,107,140,124,239,25,255,255, - 130,190,247,245,189,21,0,99,130,173,148,124,239,14,255,255,130,190,247,173, - 148,17,0,99,130,47,165,124,239,7,255,255,129,40,132,8,0,99,129,124, - 239,13,255,255,9,0,99,11,255,255,130,190,247,173,148,17,0,99,130,47, - 165,124,239,5,255,255,130,184,214,40,132,17,0,99,130,107,140,124,239,127, - 255,255,127,255,255,127,255,255,28,255,255,131,246,181,134,66,134,66,11,199, - 74,141,199,66,199,66,199,74,198,74,198,66,199,74,199,66,198,66,198,66, - 199,66,198,66,198,66,198,74,9,198,66,129,199,66,12,198,66,129,199,66, - 16,199,74,129,199,66,5,198,66,3,134,66,134,69,58,69,58,4,50,196, - 49,131,41,66,33,224,0,33,255,255,130,249,222,179,181,15,0,99,130,179, - 181,124,239,23,255,255,130,124,239,113,173,11,0,99,130,133,115,245,189,21, - 255,255,130,124,239,113,173,11,0,99,130,133,115,245,189,30,255,255,130,118, - 206,113,173,16,0,99,130,47,165,249,222,18,255,255,130,118,206,40,132,13, - 0,99,130,245,189,124,239,9,255,255,129,40,132,8,0,99,129,124,239,13, - 255,255,9,0,99,13,255,255,130,118,206,40,132,13,0,99,130,245,189,124, - 239,9,255,255,130,118,206,173,148,13,0,99,130,133,115,245,189,127,255,255, - 127,255,255,127,255,255,29,255,255,133,245,181,134,66,134,66,199,74,198,74, - 5,199,74,129,198,74,4,199,74,130,198,66,199,74,3,198,74,129,199,74, - 6,198,66,129,198,74,21,198,66,129,199,66,3,199,74,129,198,74,12,199, - 74,3,199,66,132,198,66,199,66,199,66,198,66,3,134,66,134,133,66,69, - 58,69,58,4,50,195,41,130,33,255,0,36,255,255,132,124,239,245,189,245, - 189,173,148,6,0,99,131,173,148,245,189,184,214,29,255,255,130,245,189,179, - 181,5,0,99,131,40,132,245,189,118,206,26,255,255,130,245,189,179,181,5, - 0,99,131,40,132,245,189,118,206,35,255,255,132,249,222,245,189,245,189,107, - 140,7,0,99,131,173,148,245,189,245,189,23,255,255,131,249,222,245,189,47, - 165,6,0,99,131,179,181,245,189,249,222,59,255,255,131,249,222,245,189,47, - 165,6,0,99,131,179,181,245,189,249,222,15,255,255,131,118,206,245,189,113, - 173,6,0,99,131,173,148,245,189,184,214,127,255,255,127,255,255,127,255,255, - 30,255,255,133,246,181,134,66,134,66,199,74,198,74,10,199,74,135,198,74, - 198,66,198,74,198,74,199,74,199,66,198,74,3,198,66,129,198,74,3,198, - 66,129,198,74,7,198,66,129,199,66,11,198,66,134,199,66,198,66,198,74, - 199,74,198,66,198,74,8,199,74,131,199,66,199,66,199,74,3,199,66,133, - 198,66,199,66,199,66,198,66,198,66,4,134,66,133,69,58,69,58,4,50, - 196,49,131,41,91,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,81,255,255,131,246,181,134,66,134,66,11,199,74,130,198,74,199,74,3, - 198,66,130,198,74,199,66,8,198,66,129,198,74,26,198,66,130,199,74,199, - 66,4,199,74,130,199,66,199,74,5,199,66,129,198,66,3,199,66,130,198, - 66,198,66,5,134,66,132,69,58,5,58,196,49,195,41,88,0,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,80,255,255,131,245,181,134,66, - 134,66,11,199,74,131,198,66,198,74,198,74,19,198,66,136,198,74,198,66, - 198,66,199,66,198,66,199,66,198,66,199,66,11,198,66,4,199,66,5,199, - 74,10,199,66,131,198,66,199,66,198,66,4,134,66,132,70,58,69,58,4, - 50,196,41,81,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255, - 79,255,255,131,245,181,134,66,134,66,12,199,74,131,198,66,198,74,198,74, - 23,198,66,3,199,66,11,198,66,4,199,66,130,198,66,199,66,3,199,74, - 8,199,66,130,198,66,198,66,3,199,66,129,198,66,5,134,66,131,69,58, - 5,50,196,41,100,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,78,255,255,131,245,181,134,66,134,66,13,199,74,130,198,74,198,74,6, - 198,66,129,198,74,3,198,66,129,198,74,11,198,66,133,199,74,198,66,199, - 66,199,66,199,74,11,198,66,133,199,66,198,66,199,66,199,66,198,66,12, - 199,66,132,198,66,199,66,199,74,199,74,4,198,66,3,134,66,131,70,58, - 69,58,196,49,91,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,77,255,255,131,180,173,134,66,198,66,13,199,74,132,198,74,198,74,198, - 66,198,74,5,198,66,130,199,74,198,74,15,198,66,130,199,66,199,66,4, - 198,66,129,199,66,8,198,66,131,199,66,198,66,198,66,4,199,66,129,198, - 66,12,199,66,6,198,66,3,134,66,130,69,58,4,50,87,0,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,76,255,255,131,245,181,134,66, - 198,66,14,199,74,130,198,74,198,74,7,198,66,129,198,74,17,198,66,131, - 199,66,199,66,198,66,4,199,66,10,198,66,3,199,66,3,198,66,7,199, - 66,132,198,66,198,66,199,66,199,74,7,198,66,132,134,66,134,66,69,58, - 4,50,109,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,75, - 255,255,131,181,181,134,66,198,66,14,199,74,3,198,74,131,198,66,198,74, - 134,66,3,198,66,130,134,66,134,66,20,198,66,130,199,66,199,66,11,198, - 66,131,199,66,199,66,198,66,3,199,66,131,198,66,198,66,199,66,3,198, - 66,4,199,66,141,198,66,199,66,199,66,198,74,198,74,198,66,198,66,199, - 66,198,66,134,66,134,66,69,58,4,50,104,0,127,255,255,127,255,255,127, - 255,255,127,255,255,127,255,255,74,255,255,131,180,165,133,66,198,66,15,199, - 74,130,198,74,198,74,5,198,66,130,134,66,134,66,3,198,66,130,134,66, - 134,66,6,198,66,129,134,66,22,198,66,3,199,66,129,198,66,3,199,66, - 5,198,66,135,134,66,199,66,198,66,198,66,199,66,198,66,199,66,3,198, - 74,3,199,74,133,198,66,198,66,134,66,69,58,5,50,105,0,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,73,255,255,131,180,173,133,66, - 198,66,16,199,74,136,199,66,199,74,198,74,198,66,198,66,134,66,198,66, - 198,66,6,134,66,4,198,66,130,134,66,134,66,9,198,66,129,199,66,14, - 198,66,5,199,66,136,198,66,198,66,134,66,198,66,198,66,134,66,198,66, - 134,66,5,198,66,129,199,66,6,199,74,132,198,66,134,66,134,58,5,58, - 109,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,72,255,255, - 131,180,173,134,66,198,66,12,199,74,131,199,66,199,74,199,66,4,199,74, - 3,198,66,131,199,66,198,66,198,66,4,134,66,129,198,66,8,134,66,134, - 198,66,134,66,134,66,198,66,198,66,134,66,18,198,66,4,199,66,129,198, - 66,5,134,66,130,198,66,134,66,4,198,66,130,199,66,199,66,6,199,74, - 132,199,66,134,66,134,58,5,58,101,0,127,255,255,127,255,255,127,255,255, - 127,255,255,127,255,255,71,255,255,131,179,165,133,58,198,66,12,199,74,131, - 199,66,199,66,199,74,5,199,66,132,135,66,198,66,198,66,199,66,19,134, - 66,130,198,66,134,66,13,198,66,131,134,66,198,66,198,66,4,199,66,129, - 135,66,7,134,66,131,198,66,198,66,134,66,3,198,66,3,199,66,5,199, - 74,132,199,66,134,66,134,66,69,58,113,0,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,70,255,255,131,115,165,133,66,198,74,14,199,74, - 129,199,66,3,199,74,3,199,66,133,135,66,199,66,135,66,134,66,135,66, - 20,134,66,139,198,66,198,66,134,66,198,66,134,66,134,66,198,66,134,66, - 134,66,198,66,198,66,4,134,66,130,198,66,134,66,3,199,66,129,135,66, - 9,134,66,131,198,66,134,66,198,66,4,199,66,6,199,74,131,134,66,134, - 66,69,58,87,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255, - 69,255,255,131,114,165,133,58,198,66,9,199,74,130,199,66,199,66,5,199, - 74,3,199,66,136,135,66,135,66,199,66,135,66,135,66,134,66,134,66,135, - 66,36,134,66,3,135,66,11,134,66,131,198,66,198,66,134,66,3,199,66, - 7,199,74,131,198,66,198,66,197,74,85,0,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,68,255,255,131,114,157,133,66,198,66,10,199,74, - 3,199,66,137,199,74,199,66,199,66,135,66,199,66,135,66,135,66,199,66, - 199,66,5,135,66,38,134,66,130,135,66,135,66,14,134,66,131,135,66,199, - 66,199,66,6,199,74,132,198,74,6,75,6,83,70,91,97,0,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,67,255,255,131,50,157,133,58, - 198,74,10,199,74,131,199,66,199,66,199,74,3,199,66,3,135,66,129,199, - 66,6,135,66,3,134,66,129,135,66,34,134,66,5,135,66,7,134,66,131, - 198,66,135,66,135,66,3,134,66,131,135,66,199,66,199,66,4,199,74,134, - 6,75,6,83,6,83,70,83,70,91,70,91,90,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,66,255,255,131,49,149,133,58,198,74,9, - 199,74,130,198,66,199,74,3,199,66,5,135,66,129,199,66,10,135,66,34, - 134,66,8,135,66,129,134,66,3,135,66,130,134,66,134,66,5,135,66,135, - 199,66,199,66,199,74,198,74,6,75,6,83,6,83,4,70,91,130,134,99, - 134,99,87,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,65, - 255,255,132,49,149,133,58,198,74,198,74,8,199,74,133,199,66,198,66,199, - 74,199,74,199,66,14,135,66,38,134,66,6,135,66,130,134,66,134,66,6, - 135,66,136,199,66,134,66,198,66,198,66,198,74,198,74,6,83,6,83,6, - 70,91,131,70,99,134,99,134,99,80,0,127,255,255,127,255,255,127,255,255, - 127,255,255,127,255,255,64,255,255,130,240,148,133,58,3,198,74,8,199,74, - 130,198,66,199,74,3,199,66,14,135,66,38,134,66,6,135,66,3,134,66, - 132,135,66,135,66,198,66,198,66,5,198,74,3,6,83,5,70,91,133,134, - 99,70,99,70,99,134,99,70,91,83,0,127,255,255,127,255,255,127,255,255, - 127,255,255,127,255,255,63,255,255,130,240,140,69,58,4,198,74,7,199,74, - 132,198,74,198,74,199,74,199,66,16,135,66,33,134,66,133,134,58,134,66, - 134,66,134,58,134,66,5,135,66,3,134,66,129,198,66,5,198,74,5,6, - 83,6,70,91,130,134,99,134,91,4,70,91,88,0,127,255,255,127,255,255, - 127,255,255,127,255,255,127,255,255,62,255,255,130,175,140,68,58,7,198,74, - 131,199,74,198,74,198,74,3,199,74,130,199,66,199,66,15,135,66,30,134, - 66,131,134,58,134,58,134,66,7,134,58,4,135,66,130,134,66,198,66,3, - 198,74,6,6,83,130,6,91,6,91,11,70,91,131,70,83,70,83,6,83, - 81,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,61,255,255, - 130,175,132,68,58,7,198,74,131,198,66,198,74,198,66,3,198,74,129,199, - 74,16,135,66,26,134,66,9,134,58,129,70,58,4,134,58,3,134,66,133, - 198,66,198,74,198,74,6,83,6,83,19,70,91,3,70,83,130,6,83,6, - 83,100,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,59,255, - 255,131,190,247,110,124,68,58,6,198,74,129,198,66,3,198,74,4,198,66, - 129,134,66,15,135,66,26,134,66,134,70,58,134,58,70,58,70,58,134,58, - 134,58,6,70,58,141,134,58,134,66,134,66,198,66,198,74,198,74,6,83, - 6,83,6,91,70,91,70,91,70,99,70,99,11,70,91,6,70,83,5,6, - 83,103,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,58,255, - 255,133,190,247,45,124,68,58,198,66,198,66,3,198,74,131,198,66,198,74, - 198,66,5,134,66,132,198,66,198,66,134,66,134,66,10,135,66,131,134,66, - 134,66,135,66,24,134,66,129,134,58,11,70,58,134,134,58,134,66,134,66, - 198,74,198,74,6,75,3,6,83,3,70,91,5,70,99,6,70,91,10,70, - 83,5,6,83,109,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255, - 255,57,255,255,131,190,247,45,124,68,58,3,134,66,133,198,74,198,66,198, - 74,198,66,198,66,10,134,66,7,135,66,28,134,66,129,134,58,10,70,58, - 136,134,58,134,66,134,66,198,74,198,74,6,83,6,83,70,83,7,70,91, - 4,70,99,4,70,91,3,70,83,138,6,83,70,83,6,83,70,83,70,83, - 6,83,70,83,6,83,6,83,70,83,5,6,83,101,0,127,255,255,127,255, - 255,127,255,255,127,255,255,127,255,255,56,255,255,131,125,239,204,115,68,58, - 4,134,66,129,198,66,16,134,66,131,135,66,134,66,135,66,3,134,66,129, - 135,66,3,134,66,129,135,66,18,134,66,12,70,58,135,134,66,134,66,198, - 66,198,74,198,74,6,83,6,83,4,70,91,3,70,99,9,70,91,130,70, - 83,70,83,10,6,83,130,70,83,70,83,7,6,83,80,0,127,255,255,127, - 255,255,127,255,255,127,255,255,127,255,255,55,255,255,131,189,239,203,107,68, - 58,49,134,66,11,70,58,134,134,66,134,66,198,74,198,74,6,83,6,83, - 4,70,91,4,70,99,131,134,99,70,99,70,99,4,70,91,3,70,83,11, - 6,83,129,70,83,4,6,83,3,70,83,4,6,83,84,0,127,255,255,127, - 255,255,127,255,255,127,255,255,127,255,255,54,255,255,131,124,231,139,107,68, - 58,28,134,66,3,135,66,15,134,66,131,134,58,134,58,134,66,8,70,58, - 135,134,66,134,66,198,66,198,74,198,74,6,83,6,91,4,70,91,8,70, - 99,3,70,91,129,70,83,22,6,83,130,70,83,70,83,4,6,83,82,0, - 127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,53,255,255,131,60, - 231,74,99,68,58,29,134,66,3,135,66,11,134,66,129,134,58,9,70,58, - 4,134,66,133,198,74,198,74,6,83,6,83,6,91,3,70,91,7,70,99, - 5,70,91,129,70,83,22,6,83,130,70,83,6,83,3,70,83,4,6,83, - 100,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,52,255,255, - 131,60,231,73,91,69,58,28,134,66,132,135,66,134,66,134,66,135,66,8, - 134,66,129,134,58,10,70,58,3,134,66,130,198,74,198,74,3,6,83,129, - 6,91,3,70,91,7,70,99,4,70,91,129,70,83,23,6,83,130,70,83, - 70,83,3,6,83,135,70,83,70,83,6,83,70,83,6,83,6,83,6,75, - 78,0,127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,51,255,255, - 131,59,223,73,91,69,58,38,134,66,129,70,66,9,70,58,3,134,66,135, - 198,74,198,74,198,82,6,83,6,83,6,91,6,91,5,70,91,4,70,99, - 4,70,91,8,6,83,3,6,75,18,6,83,8,70,83,3,6,83,77,0, - 127,255,255,127,255,255,127,255,255,127,255,255,127,255,255,50,255,255,131,251, - 222,8,83,69,58,19,134,66,3,70,66,13,134,66,3,70,66,6,70,58, - 4,134,66,3,198,74,130,6,83,6,83,4,6,91,10,70,91,129,6,91, - 5,6,83,10,6,75,17,6,83,8,70,83,4,6,83,95,0,127,255,255, - 127,255,255,127,255,255,127,255,255,127,255,255,49,255,255,131,250,214,8,83, - 69,58,19,134,66,5,70,66,11,134,66,130,70,66,70,66,3,70,58,133, - 70,66,70,66,134,66,134,66,134,74,3,198,74,4,6,83,4,6,91,7, - 70,91,129,6,91,4,6,83,129,198,82,5,198,74,11,6,75,15,6,83, - 10,70,83,131,6,83,6,83,5,83,79,0,127,255,255,127,255,255,127,255, - 255,127,255,255,127,255,255,48,255,255,131,185,206,199,74,69,58,16,134,66, - 12,70,66,5,134,66,6,70,66,4,134,66,131,134,74,198,74,198,82,4, - 6,83,10,6,91,3,6,83,7,198,74,129,199,74,5,198,74,9,6,75, - 16,6,83,12,70,83,1,6,83,123,0,127,255,255,127,255,255,127,255,255, - 127,255,255,127,255,255,47,255,255,133,120,206,199,74,69,58,134,66,134,66, - 4,70,66,7,134,66,131,70,66,134,66,134,66,6,70,66,135,70,58,70, - 66,70,66,70,58,70,66,70,58,70,58,4,70,66,130,134,66,70,66,6, - 134,66,133,134,74,134,74,198,74,198,74,198,82,3,6,83,6,6,91,5, - 6,83,6,198,74,129,199,74,3,198,74,5,199,74,132,198,74,6,75,6, - 75,198,74,8,6,75,15,6,83,13,70,83,131,0,45,255,255,131,124,239, - 245,189,245,189,7,0,99,132,47,165,245,189,245,189,190,247,96,255,255,131, - 118,206,245,189,173,148,6,0,99,132,133,115,245,189,245,189,249,222,127,255, - 255,127,255,255,127,255,255,127,255,255,5,255,255,131,55,198,134,66,69,58, - 3,70,66,129,70,58,4,70,66,5,134,66,5,70,66,130,70,58,70,66, - 10,70,58,129,70,66,9,134,66,129,134,74,5,198,74,10,6,83,6,198, - 74,14,199,74,130,198,74,198,74,11,6,75,12,6,83,130,70,83,6,83, - 13,70,83,139,0,42,255,255,131,190,247,245,189,133,115,15,0,99,130,245, - 189,249,222,90,255,255,130,184,214,47,165,15,0,99,130,47,165,118,206,5, - 255,255,129,40,132,8,0,99,129,249,222,127,255,255,127,255,255,80,255,255, - 129,40,132,8,0,99,129,249,222,127,255,255,23,255,255,131,246,181,134,66, - 69,58,3,70,66,4,70,58,4,70,66,129,134,66,3,70,66,13,70,58, - 130,70,66,70,66,8,134,66,129,134,74,24,198,74,13,199,74,3,198,74, - 9,6,75,130,6,83,6,75,10,6,83,5,70,83,10,70,91,130,69,91, - 69,91,149,0,41,255,255,129,245,189,20,0,99,129,47,165,87,255,255,130, - 59,231,107,140,19,0,99,129,245,189,4,255,255,129,40,132,8,0,99,129, - 249,222,127,255,255,127,255,255,80,255,255,129,40,132,8,0,99,129,249,222, - 127,255,255,22,255,255,133,246,181,70,58,69,58,70,66,70,66,4,70,58, - 131,69,58,70,58,70,58,3,70,66,131,70,58,69,58,69,58,10,70,58, - 130,70,66,70,66,6,134,66,129,134,74,30,198,74,12,199,74,3,198,74, - 9,6,75,10,6,83,3,70,83,4,70,91,131,69,91,70,91,70,91,3, - 134,91,3,133,91,129,133,99,3,133,91,149,0,39,255,255,130,124,239,107, - 140,21,0,99,129,245,189,86,255,255,129,245,189,21,0,99,129,249,222,4, - 255,255,129,40,132,8,0,99,129,249,222,127,255,255,127,255,255,80,255,255, - 129,40,132,8,0,99,129,249,222,127,255,255,21,255,255,134,180,173,69,58, - 69,58,70,66,70,58,70,58,4,69,58,129,70,58,8,69,58,4,70,58, - 4,70,66,5,134,66,130,134,74,134,74,19,198,74,4,134,74,129,198,74, - 11,199,74,131,135,66,199,66,199,66,8,199,74,4,198,74,4,6,75,8, - 6,83,4,70,83,5,70,91,132,69,91,70,91,134,91,133,91,13,133,99, - 156,0,38,255,255,130,249,222,133,115,22,0,99,129,249,222,85,255,255,129, - 113,173,22,0,99,129,190,247,4,255,255,129,40,132,8,0,99,129,249,222, - 127,255,255,127,255,255,80,255,255,129,40,132,8,0,99,129,249,222,127,255, - 255,20,255,255,132,115,165,4,50,69,58,70,58,13,69,58,131,70,58,70, - 66,70,66,10,134,66,129,134,74,20,198,74,3,134,74,5,135,66,131,135, - 74,199,74,135,74,3,199,74,136,135,66,199,74,199,74,199,66,135,66,135, - 66,199,66,199,66,5,199,74,130,198,74,199,74,3,198,74,3,6,75,7, - 6,83,130,70,83,70,83,10,70,91,6,134,99,12,133,99,157,0,37,255, - 255,129,59,231,24,0,99,129,190,247,84,255,255,129,179,181,22,0,99,129, - 107,140,5,255,255,129,40,132,8,0,99,129,249,222,127,255,255,127,255,255, - 80,255,255,129,40,132,8,0,99,129,249,222,127,255,255,19,255,255,132,50, - 157,4,50,69,58,70,58,8,69,58,132,70,58,70,58,70,66,70,66,8, - 134,66,130,134,74,134,74,20,198,74,3,134,74,129,135,74,13,135,66,132, - 135,74,135,74,135,66,135,66,5,199,66,5,199,74,4,198,74,130,6,75, - 6,75,5,6,83,3,70,83,12,70,91,129,70,99,4,134,99,130,133,99, - 134,99,8,133,99,130,134,99,134,99,4,133,99,175,0,36,255,255,130,124, - 239,133,115,23,0,99,129,107,140,84,255,255,129,245,189,23,0,99,129,113, - 173,5,255,255,129,40,132,8,0,99,129,249,222,127,255,255,41,255,255,131, - 245,189,47,165,118,206,127,255,255,36,255,255,129,40,132,8,0,99,129,249, - 222,127,255,255,18,255,255,131,241,148,196,49,5,58,3,70,58,3,69,58, - 3,70,66,7,134,66,129,134,74,23,198,74,129,134,74,3,134,66,18,135, - 66,133,199,74,199,66,199,74,199,66,199,66,5,199,74,130,198,74,199,74, - 3,198,74,4,6,83,130,70,83,70,83,12,70,91,137,134,99,70,91,70, - 99,134,99,134,99,134,91,70,91,134,91,134,91,3,134,99,11,134,91,132, - 134,99,134,99,133,99,133,99,145,0,36,255,255,129,107,140,24,0,99,129, - 179,181,83,255,255,129,124,239,24,0,99,129,245,189,5,255,255,129,40,132, - 8,0,99,129,249,222,127,255,255,37,255,255,131,190,247,245,189,107,140,3, - 0,99,129,118,206,127,255,255,36,255,255,129,40,132,8,0,99,129,249,222, - 127,255,255,17,255,255,131,176,140,196,49,70,58,10,134,66,3,134,74,17, - 198,74,131,134,74,134,74,198,74,4,134,74,3,134,66,130,135,66,134,66, - 18,135,66,7,199,74,5,198,74,129,6,75,3,6,83,129,70,83,4,70, - 91,9,134,99,6,70,91,129,134,91,26,70,91,134,0,35,255,255,129,245, - 189,25,0,99,129,184,214,83,255,255,129,173,148,24,0,99,129,59,231,5, - 255,255,129,40,132,8,0,99,129,249,222,127,255,255,34,255,255,131,59,231, - 245,189,40,132,6,0,99,129,118,206,127,255,255,36,255,255,129,40,132,8, - 0,99,129,249,222,127,255,255,15,255,255,133,190,247,111,132,4,50,134,66, - 134,74,27,198,74,129,134,74,10,134,66,20,135,66,129,135,74,4,199,74, - 3,198,74,4,6,83,129,70,83,3,70,91,15,134,99,129,133,99,26,70, - 91,6,70,83,1,70,91,185,0,34,255,255,130,190,247,133,115,12,0,99, - 130,47,165,245,189,5,255,255,131,190,247,245,189,179,181,3,0,99,129,59, - 231,82,255,255,129,249,222,13,0,99,130,245,189,249,222,5,255,255,133,245, - 189,245,189,133,115,0,99,133,115,6,255,255,129,40,132,8,0,99,129,249, - 222,127,255,255,34,255,255,129,113,173,8,0,99,129,118,206,127,255,255,36, - 255,255,129,40,132,8,0,99,129,249,222,127,255,255,14,255,255,134,190,247, - 110,132,68,58,134,74,198,74,198,74,5,6,83,12,198,74,8,134,74,11, - 134,66,3,135,66,131,71,66,135,66,71,66,13,135,66,129,135,74,3,199, - 74,131,198,74,198,74,6,75,3,6,83,4,70,91,19,134,99,129,70,99, - 22,70,91,129,70,83,3,70,91,8,70,83,176,0,34,255,255,129,245,189, - 11,0,99,130,107,140,59,231,11,255,255,130,118,206,173,148,83,255,255,129, - 173,148,11,0,99,129,113,173,11,255,255,130,184,214,47,165,6,255,255,129, - 40,132,8,0,99,129,249,222,127,255,255,34,255,255,129,113,173,8,0,99, - 129,118,206,127,255,255,36,255,255,129,40,132,8,0,99,129,249,222,127,255, - 255,13,255,255,131,190,247,45,124,68,58,3,198,74,8,6,83,6,198,74, - 130,134,74,134,74,16,134,66,131,135,66,70,66,70,66,7,71,66,11,135, - 66,129,135,74,3,199,74,3,198,74,3,6,83,4,70,91,3,134,99,129, - 133,99,13,134,99,133,133,99,134,99,133,91,69,91,69,91,5,70,91,8, - 70,83,16,70,91,6,70,83,170,0,33,255,255,130,190,247,133,115,10,0, - 99,129,113,173,97,255,255,129,249,222,11,0,99,129,245,189,20,255,255,129, - 40,132,8,0,99,129,249,222,127,255,255,34,255,255,129,113,173,8,0,99, - 129,118,206,127,255,255,36,255,255,129,40,132,8,0,99,129,249,222,127,255, - 255,12,255,255,131,189,247,204,115,133,66,3,198,74,6,6,83,4,198,74, - 129,134,74,18,134,66,132,70,66,71,66,70,66,70,66,8,71,66,10,135, - 66,130,135,74,135,74,6,198,74,132,6,75,6,83,6,83,70,83,3,70, - 91,129,134,91,3,134,99,4,133,99,7,134,99,131,134,91,134,91,133,91, - 4,70,91,4,70,83,129,6,83,10,70,83,17,70,91,5,70,83,172,0, - 33,255,255,129,245,189,10,0,99,129,173,148,98,255,255,129,113,173,10,0, - 99,129,179,181,21,255,255,129,40,132,8,0,99,129,249,222,127,255,255,34, - 255,255,129,113,173,8,0,99,129,118,206,127,255,255,36,255,255,129,40,132, - 8,0,99,129,249,222,127,255,255,11,255,255,131,124,231,203,107,133,66,11, - 198,74,129,134,74,11,134,66,4,70,66,138,71,66,71,66,70,66,71,66, - 70,66,70,66,71,66,71,66,70,66,70,66,4,71,66,11,135,66,131,135, - 74,134,74,135,74,6,198,74,5,6,83,4,70,91,131,134,91,134,91,134, - 99,4,133,99,3,134,91,6,70,91,3,70,83,14,6,83,4,70,83,130, - 70,91,70,83,16,70,91,4,70,83,175,0,33,255,255,129,107,140,9,0, - 99,130,133,115,124,239,98,255,255,129,133,115,9,0,99,129,40,132,22,255, - 255,129,40,132,8,0,99,129,249,222,127,255,255,34,255,255,129,113,173,8, - 0,99,129,118,206,127,255,255,36,255,255,129,40,132,8,0,99,129,249,222, - 127,255,255,10,255,255,131,59,223,138,99,133,66,6,198,74,130,134,74,134, - 74,6,134,66,132,70,66,70,66,70,58,70,58,6,70,66,3,70,58,139, - 71,58,70,58,71,66,71,66,70,66,71,66,70,66,71,66,70,66,70,66, - 71,66,9,135,66,131,134,66,134,74,134,74,9,198,74,6,6,83,129,70, - 83,13,70,91,5,70,83,21,6,83,4,70,83,17,70,91,132,70,83,70, - 83,71,83,71,83,181,0,32,255,255,129,124,239,10,0,99,129,245,189,98, - 255,255,129,184,214,10,0,99,129,118,206,22,255,255,129,40,132,8,0,99, - 129,249,222,127,255,255,34,255,255,129,113,173,8,0,99,129,118,206,127,255, - 255,36,255,255,129,40,132,8,0,99,129,249,222,127,255,255,9,255,255,135, - 251,222,73,91,133,66,198,74,198,74,134,74,134,74,9,134,66,129,70,66, - 12,70,58,133,71,58,70,58,71,58,71,58,70,58,5,70,66,130,134,66, - 70,66,8,134,66,130,134,74,134,74,7,198,74,130,6,75,6,75,7,6, - 83,3,70,83,8,70,91,5,70,83,13,6,83,135,6,75,6,83,6,75, - 6,83,6,83,6,75,6,75,7,6,83,130,70,83,70,83,19,70,91,131, - 70,83,71,83,71,83,155,0,32,255,255,129,245,189,9,0,99,130,133,115, - 190,247,98,255,255,129,179,181,9,0,99,129,40,132,23,255,255,129,40,132, - 8,0,99,129,249,222,127,255,255,34,255,255,129,113,173,8,0,99,129,118, - 206,127,255,255,36,255,255,129,40,132,8,0,99,129,249,222,127,255,255,8, - 255,255,132,185,206,8,83,133,66,135,74,10,134,66,130,70,66,70,66,18, - 70,58,3,70,66,7,134,66,130,134,74,134,74,7,198,74,129,6,75,11, - 6,83,10,70,83,129,70,91,4,70,83,15,6,83,129,198,74,11,197,74, - 129,5,75,4,6,83,129,70,83,11,70,91,129,134,91,7,70,91,3,70, - 83,227,1,32,255,255,129,47,165,9,0,99,129,113,173,33,255,255,132,184, - 214,245,189,245,189,40,132,6,0,99,131,133,115,245,189,118,206,17,255,255, - 131,118,206,245,189,133,115,5,0,99,132,133,115,245,189,245,189,59,231,24, - 255,255,129,107,140,9,0,99,129,245,189,23,255,255,129,40,132,8,0,99, - 129,249,222,4,255,255,130,245,189,47,165,5,0,99,130,245,189,184,214,11, - 255,255,129,40,132,6,0,99,129,59,231,4,255,255,130,118,206,173,148,3, - 0,99,130,173,148,245,189,11,255,255,131,59,231,245,189,47,165,5,0,99, - 131,133,115,245,189,245,189,14,255,255,129,40,132,6,0,99,129,249,222,5, - 255,255,131,249,222,245,189,133,115,4,0,99,130,179,181,184,214,8,255,255, - 131,59,231,245,189,133,115,4,0,99,131,47,165,245,189,190,247,16,255,255, - 132,184,214,245,189,245,189,40,132,6,0,99,131,133,115,245,189,118,206,9, - 255,255,129,173,148,19,0,99,129,113,173,11,255,255,131,59,231,245,189,47, - 165,5,0,99,131,133,115,245,189,245,189,24,255,255,131,118,206,245,189,107, - 140,7,0,99,132,47,165,245,189,245,189,249,222,10,255,255,129,40,132,6, - 0,99,129,59,231,4,255,255,130,118,206,173,148,3,0,99,130,173,148,245, - 189,9,255,255,132,184,214,245,189,245,189,40,132,6,0,99,131,133,115,245, - 189,118,206,12,255,255,129,40,132,6,0,99,5,255,255,131,190,247,245,189, - 173,148,4,0,99,131,40,132,245,189,249,222,11,255,255,129,40,132,8,0, - 99,129,249,222,4,255,255,130,245,189,47,165,5,0,99,130,245,189,184,214, - 121,255,255,131,120,206,199,74,69,58,3,135,66,8,134,66,3,70,66,8, - 70,58,8,70,66,6,134,66,130,134,74,134,74,8,198,74,131,6,75,6, - 75,6,83,3,7,83,134,6,83,6,83,70,83,6,83,70,83,70,83,4, - 71,83,5,70,83,129,70,91,4,70,83,129,70,91,6,70,83,12,6,83, - 129,6,75,16,197,74,3,6,83,129,70,83,7,70,91,5,134,91,8,70, - 91,1,70,83,173,1,32,255,255,129,133,115,9,0,99,129,184,214,30,255, - 255,130,245,189,173,148,15,0,99,129,245,189,13,255,255,129,245,189,14,0, - 99,130,179,181,59,231,20,255,255,129,190,247,10,0,99,129,59,231,23,255, - 255,129,40,132,8,0,99,132,249,222,255,255,255,255,245,189,10,0,99,130, - 107,140,124,239,9,255,255,129,40,132,6,0,99,133,118,206,255,255,255,255, - 124,239,107,140,6,0,99,129,40,132,9,255,255,130,184,214,107,140,12,0, - 99,130,113,173,124,239,11,255,255,129,40,132,6,0,99,129,245,189,3,255, - 255,130,124,239,173,148,9,0,99,130,173,148,190,247,4,255,255,130,124,239, - 47,165,10,0,99,129,245,189,12,255,255,130,245,189,173,148,15,0,99,129, - 245,189,7,255,255,129,173,148,19,0,99,129,113,173,9,255,255,130,184,214, - 107,140,12,0,99,130,113,173,124,239,18,255,255,130,190,247,179,181,16,0, - 99,131,173,148,245,189,190,247,6,255,255,129,40,132,6,0,99,133,118,206, - 255,255,255,255,124,239,107,140,6,0,99,129,40,132,6,255,255,130,245,189, - 173,148,15,0,99,129,245,189,10,255,255,129,40,132,6,0,99,129,59,231, - 3,255,255,129,245,189,10,0,99,130,173,148,59,231,9,255,255,129,40,132, - 8,0,99,132,249,222,255,255,255,255,245,189,10,0,99,130,107,140,124,239, - 118,255,255,131,55,190,135,66,70,66,7,135,66,5,134,66,129,70,66,3, - 134,66,6,70,66,8,134,66,130,134,74,134,74,9,198,74,3,6,75,130, - 6,83,6,83,3,7,83,6,71,83,135,70,83,70,83,71,83,71,83,70, - 83,71,83,71,83,5,70,83,130,70,91,70,91,10,70,83,12,6,83,130, - 198,74,198,74,5,197,74,131,133,74,197,74,133,74,9,197,74,131,6,83, - 6,83,70,83,6,70,91,7,134,91,8,70,91,162,1,31,255,255,129,124, - 239,10,0,99,129,190,247,27,255,255,130,190,247,179,181,19,0,99,129,173, - 148,10,255,255,130,190,247,107,140,17,0,99,130,47,165,190,247,18,255,255, - 129,59,231,9,0,99,129,133,115,24,255,255,129,40,132,8,0,99,131,249, - 222,190,247,173,148,12,0,99,130,40,132,124,239,8,255,255,129,40,132,6, - 0,99,132,179,181,255,255,190,247,40,132,7,0,99,129,173,148,7,255,255, - 130,190,247,173,148,16,0,99,129,245,189,10,255,255,129,40,132,6,0,99, - 133,47,165,255,255,255,255,59,231,133,115,11,0,99,129,173,148,3,255,255, - 130,59,231,133,115,12,0,99,129,245,189,8,255,255,130,190,247,179,181,19, - 0,99,129,173,148,6,255,255,129,173,148,19,0,99,129,113,173,7,255,255, - 130,190,247,173,148,16,0,99,129,245,189,16,255,255,129,118,206,21,0,99, - 129,124,239,5,255,255,129,40,132,6,0,99,132,179,181,255,255,190,247,40, - 132,7,0,99,129,173,148,3,255,255,130,190,247,179,181,19,0,99,129,173, - 148,9,255,255,129,40,132,6,0,99,132,184,214,255,255,190,247,173,148,13, - 0,99,129,249,222,8,255,255,129,40,132,8,0,99,131,249,222,190,247,173, - 148,12,0,99,130,40,132,124,239,116,255,255,131,181,181,70,58,134,66,6, - 135,66,12,134,66,129,134,74,3,134,66,131,134,74,198,74,134,74,13,198, - 74,5,6,83,3,7,83,3,71,83,135,70,83,71,83,71,83,71,91,71, - 83,71,83,71,91,5,71,83,130,71,91,71,83,5,70,83,129,70,91,10, - 70,83,11,6,83,131,6,75,198,74,198,74,4,197,74,130,133,74,133,66, - 3,132,66,3,133,74,7,197,74,131,5,83,6,83,70,83,4,70,91,3, - 134,91,129,70,91,3,134,91,9,70,91,114,1,31,255,255,129,184,214,9, - 0,99,129,107,140,28,255,255,129,179,181,21,0,99,129,47,165,9,255,255, - 129,107,140,18,0,99,129,107,140,19,255,255,129,118,206,9,0,99,129,173, - 148,24,255,255,129,40,132,8,0,99,130,184,214,107,140,14,0,99,129,173, - 148,8,255,255,129,40,132,6,0,99,131,107,140,255,255,47,165,8,0,99, - 129,113,173,6,255,255,130,124,239,40,132,18,0,99,129,113,173,9,255,255, - 129,40,132,6,0,99,132,133,115,255,255,59,231,133,115,13,0,99,132,118, - 206,255,255,59,231,133,115,14,0,99,129,124,239,7,255,255,129,179,181,21, - 0,99,129,47,165,5,255,255,129,173,148,19,0,99,129,113,173,6,255,255, - 130,124,239,40,132,18,0,99,129,113,173,14,255,255,129,113,173,22,0,99, - 129,124,239,5,255,255,129,40,132,6,0,99,131,107,140,255,255,47,165,8, - 0,99,129,113,173,3,255,255,129,179,181,21,0,99,129,47,165,8,255,255, - 129,40,132,6,0,99,131,179,181,255,255,173,148,15,0,99,129,59,231,7, - 255,255,129,40,132,8,0,99,130,184,214,107,140,14,0,99,129,173,148,115, - 255,255,131,116,165,70,58,134,66,4,135,66,5,134,66,130,134,74,134,74, - 21,198,74,130,6,75,6,83,9,7,83,8,71,83,131,71,91,71,91,71, - 83,5,71,91,5,71,83,15,70,83,11,6,83,130,198,74,198,74,3,197, - 74,130,133,74,133,74,8,132,66,130,132,74,132,74,3,133,74,3,197,74, - 131,5,75,5,83,6,83,6,70,91,5,134,91,130,70,91,134,91,7,70, - 91,92,1,31,255,255,129,245,189,9,0,99,129,113,173,28,255,255,129,59, - 231,22,0,99,129,249,222,7,255,255,129,245,189,19,0,99,129,179,181,19, - 255,255,129,245,189,9,0,99,129,179,181,24,255,255,129,40,132,8,0,99, - 129,40,132,16,0,99,129,184,214,7,255,255,129,40,132,6,0,99,130,133, - 115,249,222,9,0,99,129,245,189,5,255,255,130,190,247,40,132,20,0,99, - 129,179,181,8,255,255,129,40,132,7,0,99,130,124,239,40,132,14,0,99, - 131,40,132,190,247,40,132,15,0,99,129,179,181,7,255,255,129,59,231,22, - 0,99,129,249,222,4,255,255,129,173,148,19,0,99,129,113,173,5,255,255, - 130,190,247,40,132,20,0,99,129,179,181,12,255,255,129,113,173,23,0,99, - 129,124,239,5,255,255,129,40,132,6,0,99,130,133,115,249,222,9,0,99, - 129,245,189,3,255,255,129,59,231,22,0,99,129,249,222,7,255,255,129,40, - 132,6,0,99,130,47,165,179,181,16,0,99,130,40,132,190,247,6,255,255, - 129,40,132,8,0,99,129,40,132,16,0,99,129,184,214,113,255,255,132,51, - 157,70,58,134,66,135,66,3,134,74,7,198,74,130,198,82,198,82,8,6, - 83,4,198,82,6,6,83,11,7,83,10,71,83,6,71,91,133,71,83,71, - 83,70,83,71,83,70,91,16,70,83,11,6,83,129,198,82,5,197,74,129, - 133,74,13,132,66,130,133,74,133,74,3,197,74,131,5,83,6,83,70,83, - 6,70,91,6,134,91,7,70,91,42,1,31,255,255,129,179,181,9,0,99, - 129,245,189,29,255,255,129,40,132,21,0,99,129,173,148,6,255,255,130,190, - 247,133,115,19,0,99,129,249,222,19,255,255,129,113,173,9,0,99,129,245, - 189,24,255,255,129,40,132,25,0,99,129,47,165,7,255,255,129,40,132,17, - 0,99,129,118,206,5,255,255,129,173,148,22,0,99,129,249,222,7,255,255, - 129,40,132,7,0,99,129,40,132,16,0,99,129,107,140,16,0,99,129,133, - 115,8,255,255,129,40,132,21,0,99,129,173,148,4,255,255,129,173,148,19, - 0,99,129,113,173,5,255,255,129,173,148,22,0,99,129,249,222,10,255,255, - 129,245,189,24,0,99,129,124,239,5,255,255,129,40,132,17,0,99,129,118, - 206,4,255,255,129,40,132,21,0,99,129,173,148,7,255,255,129,40,132,25, - 0,99,129,245,189,6,255,255,129,40,132,25,0,99,129,47,165,112,255,255, - 132,241,148,133,66,198,74,199,74,4,198,74,129,198,82,21,6,83,15,7, - 83,10,71,83,7,71,91,135,71,83,70,83,70,83,70,91,70,83,70,91, - 70,91,13,70,83,10,6,83,129,5,75,6,197,74,129,133,66,14,132,66, - 130,133,74,133,74,3,197,74,131,5,83,6,83,70,83,4,70,91,9,134, - 91,5,70,91,1,71,91,35,1,31,255,255,129,113,173,9,0,99,129,118, - 206,29,255,255,129,179,181,22,0,99,129,59,231,5,255,255,129,245,189,19, - 0,99,129,133,115,20,255,255,129,47,165,9,0,99,129,118,206,24,255,255, - 129,40,132,26,0,99,129,190,247,6,255,255,129,40,132,17,0,99,129,249, - 222,4,255,255,129,118,206,23,0,99,129,40,132,7,255,255,129,40,132,42, - 0,99,129,59,231,7,255,255,129,179,181,22,0,99,129,59,231,3,255,255, - 129,173,148,19,0,99,129,113,173,4,255,255,129,118,206,23,0,99,129,40, - 132,9,255,255,129,124,239,25,0,99,129,124,239,5,255,255,129,40,132,17, - 0,99,129,249,222,4,255,255,129,179,181,22,0,99,129,59,231,6,255,255, - 129,40,132,25,0,99,129,133,115,6,255,255,129,40,132,26,0,99,129,190, - 247,110,255,255,131,175,140,133,66,198,74,24,6,83,8,7,83,129,7,75, - 9,7,83,11,71,83,7,71,91,135,71,83,70,91,70,83,70,91,70,83, - 70,91,70,91,4,70,83,129,70,91,8,70,83,7,6,83,129,6,75,7, - 197,74,129,133,74,6,132,66,3,68,66,7,132,66,130,133,74,133,74,3, - 197,74,131,5,83,6,83,6,83,5,70,91,9,134,91,5,70,91,66,1, - 31,255,255,129,173,148,9,0,99,129,249,222,29,255,255,129,249,222,22,0, - 99,129,245,189,5,255,255,129,47,165,19,0,99,129,47,165,20,255,255,129, - 173,148,9,0,99,129,249,222,24,255,255,129,40,132,26,0,99,129,249,222, - 6,255,255,129,40,132,17,0,99,129,124,239,4,255,255,129,40,132,24,0, - 99,129,118,206,6,255,255,129,40,132,42,0,99,129,118,206,7,255,255,129, - 249,222,22,0,99,129,245,189,3,255,255,129,173,148,19,0,99,129,113,173, - 4,255,255,129,40,132,24,0,99,129,118,206,8,255,255,129,113,173,25,0, - 99,129,124,239,5,255,255,129,40,132,17,0,99,129,124,239,4,255,255,129, - 249,222,22,0,99,129,245,189,6,255,255,129,40,132,26,0,99,129,184,214, - 5,255,255,129,40,132,26,0,99,129,249,222,108,255,255,131,190,247,174,132, - 197,74,9,6,83,129,6,91,12,6,83,132,7,83,7,83,6,83,6,83, - 3,7,83,129,7,75,3,7,83,129,7,75,8,7,83,10,71,83,131,71, - 91,71,91,71,83,3,71,91,133,71,83,71,91,71,91,70,83,71,83,3, - 70,83,3,70,91,12,70,83,6,6,83,131,6,75,198,74,198,74,6,197, - 74,129,132,74,5,132,66,4,68,66,8,132,66,129,133,74,4,197,74,132, - 5,83,6,83,6,83,70,83,4,70,91,9,134,91,4,70,91,1,71,91, - 238,1,31,255,255,129,173,148,9,0,99,129,249,222,30,255,255,135,133,115, - 0,99,0,99,133,115,245,189,245,189,124,239,4,255,255,130,184,214,173,148, - 9,0,99,129,47,165,5,255,255,129,40,132,8,0,99,130,133,115,118,206, - 4,255,255,130,245,189,179,181,3,0,99,129,245,189,20,255,255,129,173,148, - 9,0,99,129,59,231,24,255,255,129,40,132,10,0,99,130,133,115,245,189, - 3,255,255,129,245,189,10,0,99,129,245,189,6,255,255,129,40,132,17,0, - 99,4,255,255,129,118,206,10,0,99,134,179,181,190,247,255,255,255,255,118, - 206,40,132,9,0,99,129,107,140,6,255,255,129,40,132,10,0,99,133,47, - 165,59,231,255,255,255,255,118,206,12,0,99,134,107,140,249,222,255,255,255, - 255,59,231,173,148,9,0,99,129,245,189,8,255,255,135,133,115,0,99,0, - 99,133,115,245,189,245,189,124,239,4,255,255,130,184,214,173,148,9,0,99, - 129,47,165,7,255,255,129,113,173,8,0,99,129,118,206,10,255,255,129,118, - 206,10,0,99,134,179,181,190,247,255,255,255,255,118,206,40,132,9,0,99, - 129,107,140,7,255,255,129,124,239,10,0,99,130,47,165,59,231,3,255,255, - 130,184,214,245,189,9,0,99,129,124,239,5,255,255,129,40,132,17,0,99, - 6,255,255,135,133,115,0,99,0,99,133,115,245,189,245,189,124,239,4,255, - 255,130,184,214,173,148,9,0,99,129,47,165,6,255,255,129,40,132,10,0, - 99,134,173,148,184,214,255,255,255,255,190,247,113,173,10,0,99,129,179,181, - 5,255,255,129,40,132,10,0,99,130,133,115,245,189,3,255,255,129,245,189, - 10,0,99,129,245,189,107,255,255,133,189,239,108,132,197,74,70,91,70,91, - 17,6,83,129,7,83,4,199,82,17,7,83,11,71,83,3,71,91,130,71, - 83,71,83,4,71,91,3,71,83,129,70,83,4,70,91,12,70,83,5,6, - 83,131,6,75,6,75,198,74,5,197,74,131,133,74,133,74,132,74,3,132, - 66,8,68,66,6,132,66,129,133,74,4,197,74,132,5,83,6,83,6,83, - 70,83,5,70,91,9,134,91,4,70,91,1,5,83,206,1,31,255,255,129, - 40,132,9,0,99,129,124,239,30,255,255,131,179,181,179,181,124,239,10,255, - 255,129,107,140,8,0,99,129,107,140,5,255,255,9,0,99,129,249,222,8, - 255,255,131,118,206,173,148,190,247,20,255,255,129,40,132,9,0,99,129,124, - 239,24,255,255,129,40,132,9,0,99,130,107,140,124,239,5,255,255,129,118, - 206,9,0,99,129,179,181,6,255,255,129,40,132,10,0,99,130,107,140,245, - 189,3,255,255,130,249,222,245,189,4,255,255,129,173,148,9,0,99,129,118, - 206,5,255,255,130,190,247,107,140,9,0,99,129,59,231,5,255,255,129,40, - 132,9,0,99,129,113,173,5,255,255,129,118,206,10,0,99,129,107,140,5, - 255,255,130,190,247,133,115,8,0,99,129,113,173,8,255,255,131,179,181,179, - 181,124,239,10,255,255,129,107,140,8,0,99,129,107,140,7,255,255,129,113, - 173,8,0,99,129,118,206,10,255,255,129,173,148,9,0,99,129,118,206,5, - 255,255,130,190,247,107,140,9,0,99,129,59,231,6,255,255,129,179,181,9, - 0,99,129,245,189,7,255,255,129,40,132,8,0,99,129,124,239,5,255,255, - 129,40,132,10,0,99,130,107,140,245,189,3,255,255,130,249,222,245,189,6, - 255,255,131,179,181,179,181,124,239,10,255,255,129,107,140,8,0,99,129,107, - 140,6,255,255,129,40,132,9,0,99,129,47,165,6,255,255,129,245,189,9, - 0,99,129,107,140,5,255,255,129,40,132,9,0,99,130,107,140,124,239,5, - 255,255,129,118,206,9,0,99,129,179,181,106,255,255,134,124,239,43,124,5, - 83,70,91,6,91,6,91,17,6,83,19,7,83,13,71,83,9,71,91,4, - 71,83,134,70,91,70,83,70,91,70,83,70,83,70,91,10,70,83,5,6, - 83,130,6,75,198,74,4,197,74,130,133,74,133,74,6,132,66,11,68,66, - 3,132,66,130,132,74,132,74,4,197,74,133,5,83,6,83,6,83,70,83, - 70,83,5,70,91,8,134,91,3,70,91,130,5,83,136,99,159,1,31,255, - 255,129,40,132,9,0,99,129,124,239,43,255,255,129,184,214,8,0,99,129, - 133,115,5,255,255,9,0,99,32,255,255,129,40,132,9,0,99,129,124,239, - 24,255,255,129,40,132,8,0,99,130,133,115,124,239,7,255,255,129,40,132, - 8,0,99,129,113,173,6,255,255,129,40,132,9,0,99,129,173,148,10,255, - 255,129,190,247,9,0,99,129,113,173,7,255,255,129,249,222,9,0,99,129, - 245,189,5,255,255,129,40,132,8,0,99,129,40,132,6,255,255,129,190,247, - 10,0,99,129,124,239,6,255,255,129,47,165,8,0,99,129,173,148,21,255, - 255,129,184,214,8,0,99,129,133,115,7,255,255,129,113,173,8,0,99,129, - 118,206,9,255,255,129,190,247,9,0,99,129,113,173,7,255,255,129,249,222, - 9,0,99,129,245,189,6,255,255,129,40,132,8,0,99,129,173,148,8,255, - 255,129,40,132,8,0,99,129,124,239,5,255,255,129,40,132,9,0,99,129, - 173,148,26,255,255,129,184,214,8,0,99,129,133,115,6,255,255,129,40,132, - 8,0,99,130,133,115,190,247,7,255,255,129,40,132,9,0,99,129,190,247, - 4,255,255,129,40,132,8,0,99,130,133,115,124,239,7,255,255,129,40,132, - 8,0,99,129,113,173,105,255,255,133,59,223,201,107,5,83,70,91,6,91, - 5,6,83,130,7,83,7,83,10,6,83,18,7,83,130,71,83,7,83,12, - 71,83,6,71,91,129,71,83,4,71,91,132,71,83,71,83,70,83,70,83, - 4,70,91,10,70,83,6,6,83,130,6,75,6,75,4,197,74,130,133,74, - 133,66,5,132,66,4,68,66,129,68,58,8,68,66,4,132,66,129,132,74, - 4,197,74,129,5,83,3,6,83,129,70,83,6,70,91,6,134,91,134,70, - 91,70,91,71,91,5,83,136,99,249,214,169,1,31,255,255,129,40,132,9, - 0,99,129,124,239,6,255,255,129,173,148,15,0,99,129,245,189,20,255,255, - 129,190,247,9,0,99,4,255,255,129,190,247,9,0,99,32,255,255,129,40, - 132,9,0,99,129,124,239,24,255,255,129,40,132,8,0,99,129,245,189,8, - 255,255,129,179,181,8,0,99,129,47,165,6,255,255,129,40,132,8,0,99, - 129,40,132,11,255,255,129,184,214,9,0,99,129,124,239,8,255,255,129,107, - 140,8,0,99,129,47,165,5,255,255,129,40,132,8,0,99,129,118,206,7, - 255,255,129,107,140,8,0,99,129,47,165,7,255,255,129,245,189,8,0,99, - 129,173,148,21,255,255,129,190,247,9,0,99,7,255,255,129,113,173,8,0, - 99,129,118,206,9,255,255,129,184,214,9,0,99,129,124,239,8,255,255,129, - 107,140,8,0,99,129,47,165,5,255,255,129,59,231,9,0,99,129,249,222, - 8,255,255,129,40,132,8,0,99,129,124,239,5,255,255,129,40,132,8,0, - 99,129,40,132,27,255,255,129,190,247,9,0,99,6,255,255,129,40,132,8, - 0,99,129,245,189,8,255,255,129,245,189,9,0,99,129,59,231,4,255,255, - 129,40,132,8,0,99,129,245,189,8,255,255,129,179,181,8,0,99,129,47, - 165,104,255,255,131,250,214,136,99,5,83,4,6,83,4,7,83,133,6,83, - 6,83,7,83,6,83,6,83,15,7,83,133,71,83,71,83,7,83,71,83, - 7,83,11,71,83,131,71,91,71,83,71,83,17,71,91,3,70,83,129,70, - 91,3,70,83,129,70,91,8,70,83,6,6,83,129,6,75,5,197,74,129, - 133,74,4,132,66,5,68,66,4,67,58,129,68,58,6,68,66,4,132,66, - 129,133,74,4,197,74,129,5,83,3,6,83,4,70,83,3,70,91,5,134, - 91,135,70,91,70,91,71,91,5,83,136,99,250,214,255,255,154,1,31,255, - 255,129,40,132,9,0,99,129,124,239,6,255,255,129,173,148,15,0,99,129, - 245,189,21,255,255,9,0,99,5,255,255,9,0,99,129,245,189,31,255,255, - 129,40,132,9,0,99,129,124,239,24,255,255,129,40,132,8,0,99,129,249, - 222,8,255,255,129,245,189,8,0,99,129,173,148,6,255,255,129,40,132,8, - 0,99,129,245,189,11,255,255,129,179,181,8,0,99,129,107,140,9,255,255, - 129,245,189,8,0,99,129,133,115,5,255,255,129,40,132,8,0,99,129,249, - 222,7,255,255,129,47,165,8,0,99,129,245,189,7,255,255,129,118,206,8, - 0,99,129,173,148,22,255,255,9,0,99,7,255,255,129,113,173,8,0,99, - 129,118,206,9,255,255,129,179,181,8,0,99,129,107,140,9,255,255,129,245, - 189,8,0,99,129,133,115,5,255,255,129,245,189,8,0,99,129,133,115,9, - 255,255,129,40,132,8,0,99,129,124,239,5,255,255,129,40,132,8,0,99, - 129,245,189,28,255,255,9,0,99,6,255,255,129,40,132,8,0,99,129,59, - 231,8,255,255,129,59,231,9,0,99,129,184,214,4,255,255,129,40,132,8, - 0,99,129,249,222,8,255,255,129,245,189,8,0,99,129,173,148,103,255,255, - 134,184,206,71,91,5,83,7,83,6,83,6,83,5,7,83,3,6,83,6, - 7,83,132,6,83,7,83,7,83,70,83,6,7,83,19,71,83,130,71,91, - 71,83,15,71,91,4,70,91,12,70,83,5,6,83,130,5,83,5,75,5, - 197,74,132,133,74,133,66,132,66,132,66,8,68,66,130,68,58,67,58,3, - 68,58,7,68,66,3,132,66,130,133,66,133,74,4,197,74,5,6,83,130, - 70,83,70,83,5,70,91,129,134,91,3,70,91,134,71,91,5,83,136,99, - 250,222,255,255,255,255,154,1,31,255,255,129,40,132,9,0,99,129,124,239, - 6,255,255,129,173,148,15,0,99,129,245,189,21,255,255,129,40,132,8,0, - 99,5,255,255,129,107,140,9,0,99,129,245,189,30,255,255,129,40,132,9, - 0,99,129,124,239,24,255,255,129,40,132,8,0,99,129,249,222,8,255,255, - 129,184,214,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129,124, - 239,11,255,255,129,47,165,8,0,99,129,179,181,9,255,255,129,249,222,9, - 0,99,129,190,247,4,255,255,129,40,132,8,0,99,129,249,222,7,255,255, - 129,113,173,8,0,99,129,245,189,7,255,255,129,249,222,8,0,99,129,173, - 148,22,255,255,129,40,132,8,0,99,7,255,255,129,113,173,8,0,99,129, - 118,206,9,255,255,129,47,165,8,0,99,129,179,181,9,255,255,129,249,222, - 9,0,99,129,190,247,4,255,255,129,179,181,8,0,99,129,47,165,9,255, - 255,129,40,132,8,0,99,129,124,239,5,255,255,129,40,132,8,0,99,129, - 124,239,28,255,255,129,40,132,8,0,99,6,255,255,129,40,132,8,0,99, - 129,124,239,9,255,255,129,133,115,8,0,99,129,245,189,4,255,255,129,40, - 132,8,0,99,129,249,222,8,255,255,129,184,214,8,0,99,129,173,148,102, - 255,255,132,119,198,71,91,6,83,71,91,4,6,83,5,7,83,6,71,83, - 132,70,83,71,83,70,83,70,83,21,71,83,130,71,91,71,83,20,71,91, - 4,70,91,11,70,83,6,6,83,129,5,75,5,197,74,130,133,74,133,66, - 4,132,66,133,68,66,68,58,68,58,68,66,68,66,8,68,58,8,68,66, - 131,132,66,132,66,133,66,6,197,74,129,5,83,4,6,83,130,70,83,70, - 83,7,70,91,132,71,91,6,83,136,99,250,222,3,255,255,160,1,31,255, - 255,129,173,148,9,0,99,129,249,222,6,255,255,129,173,148,15,0,99,129, - 245,189,21,255,255,129,40,132,8,0,99,5,255,255,129,179,181,10,0,99, - 130,107,140,59,231,28,255,255,129,173,148,9,0,99,129,249,222,24,255,255, - 129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173, - 148,6,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,40,132,8, - 0,99,129,245,189,9,255,255,129,190,247,9,0,99,129,249,222,4,255,255, - 129,40,132,8,0,99,129,249,222,7,255,255,129,179,181,8,0,99,129,245, - 189,7,255,255,129,249,222,8,0,99,129,40,132,22,255,255,129,40,132,8, - 0,99,7,255,255,129,113,173,8,0,99,129,118,206,9,255,255,129,40,132, - 8,0,99,129,245,189,9,255,255,129,190,247,9,0,99,129,249,222,4,255, - 255,129,173,148,8,0,99,129,245,189,9,255,255,129,40,132,8,0,99,129, - 124,239,5,255,255,129,40,132,8,0,99,129,124,239,28,255,255,129,40,132, - 8,0,99,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,107, - 140,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,101,255,255,132,245,181,6,83,6, - 83,71,91,4,70,91,131,71,91,71,91,7,91,9,71,91,131,70,91,70, - 91,70,83,3,71,91,11,71,83,132,71,91,71,83,71,83,71,91,4,71, - 83,19,71,91,6,70,91,10,70,83,6,6,83,129,5,75,5,197,74,130, - 133,74,133,74,4,132,66,5,68,66,11,68,58,7,68,66,131,132,66,133, - 66,133,66,5,197,74,129,5,83,5,6,83,130,70,83,70,83,6,70,91, - 132,71,91,6,83,136,99,250,222,4,255,255,127,1,31,255,255,129,173,148, - 9,0,99,129,249,222,6,255,255,129,173,148,15,0,99,129,245,189,21,255, - 255,9,0,99,5,255,255,129,249,222,12,0,99,130,47,165,124,239,26,255, - 255,129,173,148,9,0,99,129,249,222,24,255,255,129,40,132,8,0,99,129, - 249,222,8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132, - 8,0,99,129,124,239,11,255,255,129,133,115,8,0,99,129,184,214,10,255, - 255,129,133,115,8,0,99,129,184,214,4,255,255,129,40,132,8,0,99,129, - 249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249,222, - 8,0,99,129,40,132,22,255,255,9,0,99,7,255,255,129,113,173,8,0, - 99,129,118,206,9,255,255,129,133,115,8,0,99,129,184,214,10,255,255,129, - 133,115,8,0,99,129,184,214,4,255,255,129,40,132,8,0,99,129,118,206, - 9,255,255,129,40,132,8,0,99,129,124,239,5,255,255,129,40,132,8,0, - 99,129,124,239,28,255,255,9,0,99,6,255,255,129,40,132,8,0,99,129, - 124,239,9,255,255,129,173,148,8,0,99,129,179,181,4,255,255,129,40,132, - 8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,100,255, - 255,131,180,173,6,83,70,83,27,71,91,4,71,83,130,71,91,71,83,29, - 71,91,6,70,91,6,70,83,130,6,83,70,83,5,6,83,130,5,83,5, - 75,5,197,74,129,133,74,4,132,66,5,68,66,14,68,58,5,68,66,133, - 132,66,132,66,133,66,133,66,133,74,4,197,74,129,5,75,5,6,83,3, - 70,83,6,70,91,131,6,83,136,99,59,223,5,255,255,165,1,31,255,255, - 129,47,165,9,0,99,129,118,206,6,255,255,129,173,148,15,0,99,129,245, - 189,12,255,255,131,245,189,245,189,107,140,14,0,99,129,133,115,6,255,255, - 129,173,148,13,0,99,130,113,173,190,247,24,255,255,129,47,165,9,0,99, - 129,118,206,24,255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249, - 222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,11, - 255,255,9,0,99,129,249,222,10,255,255,129,40,132,8,0,99,129,118,206, - 4,255,255,129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0, - 99,129,245,189,7,255,255,129,249,222,8,0,99,129,40,132,13,255,255,131, - 245,189,245,189,107,140,14,0,99,129,133,115,7,255,255,129,113,173,8,0, - 99,129,118,206,9,255,255,9,0,99,129,249,222,10,255,255,129,40,132,8, - 0,99,129,118,206,4,255,255,9,0,99,129,249,222,9,255,255,129,40,132, - 8,0,99,129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,19,255, - 255,131,245,189,245,189,107,140,14,0,99,129,133,115,6,255,255,129,40,132, - 8,0,99,129,124,239,9,255,255,129,113,173,8,0,99,129,113,173,4,255, - 255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129, - 173,148,99,255,255,131,113,157,5,83,70,91,3,71,91,129,70,91,25,71, - 91,131,71,83,71,91,71,83,31,71,91,4,70,91,6,70,83,6,6,83, - 131,5,83,5,83,5,75,5,197,74,129,133,74,4,132,66,4,68,66,5, - 68,58,129,67,58,3,68,58,130,67,58,67,58,3,68,58,130,68,66,68, - 58,5,68,66,3,132,66,130,133,74,133,74,4,197,74,7,6,83,130,70, - 83,70,83,6,70,91,131,5,83,137,99,59,223,6,255,255,173,1,31,255, - 255,129,113,173,9,0,99,129,245,189,9,255,255,129,59,231,3,245,189,129, - 133,115,8,0,99,129,245,189,9,255,255,130,184,214,173,148,18,0,99,129, - 40,132,6,255,255,130,124,239,133,115,13,0,99,130,133,115,184,214,23,255, - 255,129,113,173,9,0,99,129,245,189,24,255,255,129,40,132,8,0,99,129, - 249,222,8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132, - 8,0,99,129,124,239,10,255,255,129,124,239,9,0,99,129,124,239,10,255, - 255,129,173,148,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99,129, - 249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249,222, - 8,0,99,129,40,132,10,255,255,130,184,214,173,148,18,0,99,129,40,132, - 7,255,255,129,113,173,8,0,99,129,118,206,8,255,255,129,124,239,9,0, - 99,129,124,239,10,255,255,129,173,148,8,0,99,129,245,189,4,255,255,9, - 0,99,129,59,231,9,255,255,129,40,132,8,0,99,129,124,239,5,255,255, - 129,40,132,8,0,99,129,124,239,16,255,255,130,184,214,173,148,18,0,99, - 129,40,132,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,113, - 173,8,0,99,129,113,173,4,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,98,255,255,131,239,148,5,83,70, - 91,6,71,91,129,70,91,56,71,91,3,70,91,6,70,83,7,6,83,130, - 5,75,5,75,4,197,74,130,133,74,133,66,4,132,66,3,68,66,4,68, - 58,3,67,58,3,68,66,136,68,58,68,58,67,58,68,58,68,66,68,58, - 68,66,68,58,4,68,66,131,132,66,132,66,133,66,3,133,74,3,197,74, - 129,6,75,6,6,83,6,70,83,134,70,91,70,83,71,83,5,75,137,99, - 59,223,7,255,255,144,1,31,255,255,129,245,189,9,0,99,129,113,173,14, - 255,255,129,124,239,7,0,99,129,245,189,7,255,255,130,249,222,107,140,20, - 0,99,129,40,132,7,255,255,129,184,214,15,0,99,129,179,181,22,255,255, - 129,245,189,9,0,99,129,47,165,24,255,255,129,40,132,8,0,99,129,249, - 222,8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132,8, - 0,99,129,124,239,10,255,255,129,124,239,9,0,99,129,124,239,10,255,255, - 129,173,148,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99,129,249, - 222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249,222,8, - 0,99,129,40,132,8,255,255,130,249,222,107,140,20,0,99,129,40,132,7, - 255,255,129,113,173,8,0,99,129,118,206,8,255,255,129,124,239,9,0,99, - 129,124,239,10,255,255,129,173,148,8,0,99,129,245,189,3,255,255,129,124, - 239,9,0,99,129,124,239,9,255,255,129,40,132,8,0,99,129,124,239,5, - 255,255,129,40,132,8,0,99,129,124,239,14,255,255,130,249,222,107,140,20, - 0,99,129,40,132,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255, - 129,113,173,8,0,99,129,113,173,4,255,255,129,40,132,8,0,99,129,249, - 222,8,255,255,129,249,222,8,0,99,129,173,148,96,255,255,131,190,247,174, - 140,69,83,65,71,91,129,70,91,7,70,83,7,6,83,134,5,75,197,74, - 197,74,196,74,197,74,133,74,5,132,66,132,68,66,68,66,68,58,68,58, - 5,67,58,5,68,58,129,68,66,5,68,58,6,68,66,132,132,66,132,66, - 133,74,133,74,5,197,74,6,6,83,9,70,83,132,71,83,5,75,137,99, - 59,231,8,255,255,146,1,31,255,255,129,118,206,9,0,99,129,107,140,14, - 255,255,129,124,239,7,0,99,129,245,189,6,255,255,129,245,189,22,0,99, - 129,107,140,8,255,255,129,184,214,15,0,99,129,113,173,21,255,255,129,118, - 206,9,0,99,129,107,140,24,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99, - 129,124,239,10,255,255,129,124,239,9,0,99,129,124,239,10,255,255,129,173, - 148,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99,129,249,222,7, - 255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249,222,8,0,99, - 129,40,132,7,255,255,129,245,189,22,0,99,129,107,140,7,255,255,129,113, - 173,8,0,99,129,118,206,8,255,255,129,124,239,9,0,99,129,124,239,10, - 255,255,129,173,148,8,0,99,129,245,189,3,255,255,129,124,239,9,0,99, - 129,124,239,9,255,255,129,40,132,8,0,99,129,124,239,5,255,255,129,40, - 132,8,0,99,129,124,239,13,255,255,129,245,189,22,0,99,129,107,140,6, - 255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,113,173,8,0,99, - 129,113,173,4,255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249, - 222,8,0,99,129,173,148,95,255,255,132,124,239,108,124,69,83,134,91,62, - 71,91,3,70,91,6,70,83,7,6,83,129,5,75,3,197,74,129,196,74, - 6,132,66,132,68,66,67,66,68,66,68,58,8,67,58,134,68,58,68,66, - 68,66,68,58,68,66,68,66,4,68,58,4,68,66,132,132,66,132,66,133, - 74,133,74,4,197,74,129,198,82,6,6,83,10,70,83,132,71,83,5,75, - 201,107,59,223,9,255,255,146,1,31,255,255,129,59,231,10,0,99,129,190, - 247,13,255,255,129,124,239,7,0,99,129,245,189,5,255,255,129,245,189,23, - 0,99,129,173,148,9,255,255,130,59,231,40,132,14,0,99,129,179,181,20, - 255,255,129,59,231,10,0,99,129,190,247,23,255,255,129,40,132,8,0,99, - 129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40, - 132,8,0,99,129,124,239,10,255,255,129,124,239,9,0,99,129,124,239,10, - 255,255,129,173,148,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99, - 129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249, - 222,8,0,99,129,40,132,6,255,255,129,245,189,23,0,99,129,173,148,7, - 255,255,129,113,173,8,0,99,129,118,206,8,255,255,129,124,239,9,0,99, - 129,124,239,10,255,255,129,173,148,8,0,99,129,245,189,3,255,255,129,124, - 239,9,0,99,129,124,239,9,255,255,129,40,132,8,0,99,129,124,239,5, - 255,255,129,40,132,8,0,99,129,124,239,12,255,255,129,245,189,23,0,99, - 129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,113, - 173,8,0,99,129,113,173,4,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,94,255,255,131,59,231,107,116,69, - 83,4,135,91,57,71,91,3,70,91,6,70,83,7,6,83,130,6,75,5, - 75,4,197,74,129,132,74,3,132,66,133,68,66,67,66,67,66,67,58,67, - 66,10,67,58,4,68,58,4,68,66,129,68,58,5,68,66,131,132,66,132, - 66,133,74,3,197,74,129,198,74,7,6,83,10,70,83,133,71,83,71,83, - 5,75,202,107,59,231,10,255,255,160,1,31,255,255,129,190,247,10,0,99, - 129,184,214,13,255,255,129,124,239,7,0,99,129,245,189,4,255,255,129,124, - 239,24,0,99,129,173,148,11,255,255,129,179,181,14,0,99,129,59,231,19, - 255,255,129,190,247,10,0,99,129,118,206,23,255,255,129,40,132,8,0,99, - 129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40, - 132,8,0,99,129,124,239,10,255,255,129,124,239,9,0,99,129,124,239,10, - 255,255,129,173,148,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99, - 129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249, - 222,8,0,99,129,40,132,5,255,255,129,124,239,24,0,99,129,173,148,7, - 255,255,129,113,173,8,0,99,129,118,206,8,255,255,129,124,239,9,0,99, - 129,124,239,10,255,255,129,173,148,8,0,99,129,245,189,3,255,255,129,124, - 239,9,0,99,129,124,239,9,255,255,129,40,132,8,0,99,129,124,239,5, - 255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,124,239,24,0,99, - 129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,173, - 148,8,0,99,129,179,181,4,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,93,255,255,131,250,222,201,107,69, - 83,8,135,91,129,71,91,6,135,91,14,71,91,7,135,91,130,71,91,135, - 91,22,71,91,130,70,91,70,91,6,70,83,8,6,83,130,6,75,198,74, - 5,197,74,133,132,74,132,66,132,66,68,66,68,66,16,67,58,3,68,58, - 8,68,66,132,132,66,132,66,133,74,133,74,3,197,74,129,198,74,6,6, - 83,131,70,83,71,83,71,83,8,70,83,133,71,83,71,83,5,75,201,99, - 59,231,11,255,255,196,1,32,255,255,129,107,140,9,0,99,129,179,181,13, - 255,255,129,124,239,7,0,99,129,245,189,4,255,255,129,113,173,9,0,99, - 131,40,132,245,189,190,247,4,255,255,129,40,132,7,0,99,129,113,173,12, - 255,255,130,124,239,113,173,12,0,99,129,173,148,20,255,255,129,107,140,9, - 0,99,129,47,165,23,255,255,129,40,132,8,0,99,129,249,222,8,255,255, - 129,249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129,124, - 239,11,255,255,9,0,99,129,249,222,10,255,255,129,40,132,8,0,99,129, - 118,206,4,255,255,129,40,132,8,0,99,129,249,222,7,255,255,129,245,189, - 8,0,99,129,245,189,7,255,255,129,249,222,8,0,99,129,40,132,5,255, - 255,129,113,173,9,0,99,131,40,132,245,189,190,247,4,255,255,129,40,132, - 7,0,99,129,113,173,7,255,255,129,113,173,8,0,99,129,118,206,9,255, - 255,9,0,99,129,249,222,10,255,255,129,40,132,8,0,99,129,118,206,3, - 255,255,129,124,239,9,0,99,129,249,222,9,255,255,129,40,132,8,0,99, - 129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,113, - 173,9,0,99,131,40,132,245,189,190,247,4,255,255,129,40,132,7,0,99, - 129,113,173,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,107, - 140,8,0,99,129,245,189,4,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,92,255,255,131,184,206,200,99,69, - 83,16,135,91,11,71,91,16,135,91,17,71,91,130,70,91,70,91,4,70, - 83,5,6,83,6,6,75,5,197,74,129,196,74,3,132,66,129,68,66,18, - 67,58,3,68,58,130,68,66,68,58,5,68,66,131,132,66,133,66,133,74, - 4,197,74,129,198,74,7,6,83,133,70,83,71,83,71,83,70,83,71,83, - 5,70,83,133,71,83,71,83,197,74,202,107,59,231,12,255,255,190,1,32, - 255,255,129,179,181,9,0,99,130,133,115,190,247,12,255,255,129,124,239,7, - 0,99,129,245,189,3,255,255,129,190,247,9,0,99,129,173,148,7,255,255, - 129,40,132,7,0,99,129,113,173,14,255,255,130,59,231,173,148,11,0,99, - 129,124,239,19,255,255,129,179,181,10,0,99,129,124,239,22,255,255,129,40, - 132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,6, - 255,255,129,40,132,8,0,99,129,124,239,11,255,255,9,0,99,129,184,214, - 10,255,255,129,133,115,8,0,99,129,184,214,4,255,255,129,40,132,8,0, - 99,129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129, - 249,222,8,0,99,129,40,132,4,255,255,129,190,247,9,0,99,129,173,148, - 7,255,255,129,40,132,7,0,99,129,113,173,7,255,255,129,113,173,8,0, - 99,129,118,206,9,255,255,9,0,99,129,184,214,10,255,255,129,133,115,8, - 0,99,129,184,214,4,255,255,9,0,99,129,184,214,9,255,255,129,40,132, - 8,0,99,129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,10,255, - 255,129,190,247,9,0,99,129,173,148,7,255,255,129,40,132,7,0,99,129, - 113,173,6,255,255,129,40,132,8,0,99,129,124,239,9,255,255,129,133,115, - 8,0,99,129,118,206,4,255,255,129,40,132,8,0,99,129,249,222,8,255, - 255,129,249,222,8,0,99,129,173,148,91,255,255,131,118,198,135,91,70,91, - 20,135,91,3,71,91,132,135,91,71,91,135,91,71,91,19,135,91,12,71, - 91,3,70,91,3,70,83,6,6,83,6,6,75,5,197,74,129,196,74,4, - 132,66,129,68,66,10,67,58,130,3,58,3,58,9,67,58,129,68,58,4, - 68,66,4,132,66,130,133,74,133,74,4,197,74,130,198,74,198,74,7,6, - 83,130,71,83,71,83,6,70,83,133,6,83,7,83,197,74,202,107,124,231, - 13,255,255,214,1,32,255,255,129,184,214,10,0,99,129,118,206,12,255,255, - 129,124,239,7,0,99,129,245,189,3,255,255,129,184,214,8,0,99,130,133, - 115,190,247,7,255,255,129,40,132,7,0,99,129,113,173,16,255,255,129,118, - 206,10,0,99,129,245,189,19,255,255,129,184,214,10,0,99,129,113,173,22, - 255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99, - 129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,40, - 132,8,0,99,129,245,189,9,255,255,129,190,247,9,0,99,129,59,231,4, - 255,255,129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0,99, - 129,245,189,7,255,255,129,249,222,8,0,99,129,40,132,4,255,255,129,184, - 214,8,0,99,130,133,115,190,247,7,255,255,129,40,132,7,0,99,129,113, - 173,7,255,255,129,113,173,8,0,99,129,118,206,9,255,255,129,40,132,8, - 0,99,129,245,189,9,255,255,129,190,247,9,0,99,129,59,231,4,255,255, - 9,0,99,129,245,189,9,255,255,129,40,132,8,0,99,129,124,239,5,255, - 255,129,40,132,8,0,99,129,124,239,10,255,255,129,184,214,8,0,99,130, - 133,115,190,247,7,255,255,129,40,132,7,0,99,129,113,173,6,255,255,129, - 40,132,8,0,99,129,124,239,8,255,255,129,190,247,9,0,99,129,249,222, - 4,255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0, - 99,129,173,148,90,255,255,132,244,181,134,91,134,91,135,99,20,135,91,132, - 71,91,135,91,135,91,71,91,22,135,91,11,71,91,130,70,91,70,91,4, - 70,83,3,6,83,130,6,75,6,75,6,198,74,6,197,74,129,196,74,3, - 132,66,132,68,66,67,66,67,58,67,66,8,67,58,4,3,58,8,67,58, - 3,68,66,6,132,66,130,133,74,133,74,4,197,74,3,198,74,129,6,75, - 4,6,83,141,7,83,71,83,71,83,7,83,70,83,70,83,7,83,6,83, - 6,83,7,83,197,74,42,116,124,231,14,255,255,214,1,32,255,255,130,190, - 247,133,115,9,0,99,130,133,115,190,247,11,255,255,129,124,239,7,0,99, - 129,245,189,3,255,255,129,179,181,8,0,99,129,113,173,8,255,255,129,40, - 132,7,0,99,129,179,181,17,255,255,129,249,222,9,0,99,129,113,173,19, - 255,255,129,190,247,11,0,99,129,59,231,21,255,255,129,40,132,8,0,99, - 129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40, - 132,8,0,99,129,124,239,11,255,255,129,47,165,8,0,99,129,113,173,9, - 255,255,129,59,231,9,0,99,129,190,247,4,255,255,129,40,132,8,0,99, - 129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249, - 222,8,0,99,129,40,132,4,255,255,129,179,181,8,0,99,129,113,173,8, - 255,255,129,40,132,7,0,99,129,179,181,7,255,255,129,113,173,8,0,99, - 129,118,206,9,255,255,129,47,165,8,0,99,129,113,173,9,255,255,129,59, - 231,9,0,99,129,190,247,4,255,255,129,40,132,8,0,99,129,179,181,9, - 255,255,129,40,132,8,0,99,129,124,239,5,255,255,129,40,132,8,0,99, - 129,124,239,10,255,255,129,179,181,8,0,99,129,113,173,8,255,255,129,40, - 132,7,0,99,129,179,181,6,255,255,129,40,132,8,0,99,129,124,239,8, - 255,255,129,184,214,9,0,99,129,190,247,4,255,255,129,40,132,8,0,99, - 129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,89,255,255,131,178, - 165,69,91,134,91,3,135,99,5,135,91,130,135,99,135,99,15,135,91,129, - 71,91,20,135,91,13,71,91,129,70,91,3,70,83,132,6,83,6,83,6, - 75,6,75,4,198,74,10,197,74,129,196,74,3,132,66,130,68,66,68,66, - 9,67,58,5,3,58,7,67,58,131,67,66,68,66,68,66,5,132,66,132, - 68,66,132,66,132,66,133,66,3,133,74,129,197,74,5,198,74,129,6,75, - 3,6,83,3,7,83,4,6,83,133,7,83,7,83,196,74,169,132,188,247, - 15,255,255,229,1,33,255,255,129,47,165,10,0,99,129,47,165,11,255,255, - 129,124,239,7,0,99,129,245,189,3,255,255,129,113,173,8,0,99,129,245, - 189,8,255,255,129,40,132,7,0,99,129,245,189,18,255,255,129,245,189,8, - 0,99,129,173,148,20,255,255,129,47,165,10,0,99,130,40,132,190,247,20, - 255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99, - 129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,179, - 181,8,0,99,129,107,140,9,255,255,129,245,189,8,0,99,129,133,115,5, - 255,255,129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0,99, - 129,245,189,7,255,255,129,249,222,8,0,99,129,40,132,4,255,255,129,113, - 173,8,0,99,129,245,189,8,255,255,129,40,132,7,0,99,129,245,189,7, - 255,255,129,113,173,8,0,99,129,245,189,9,255,255,129,179,181,8,0,99, - 129,107,140,9,255,255,129,245,189,8,0,99,129,133,115,5,255,255,129,173, - 148,8,0,99,129,107,140,9,255,255,129,40,132,8,0,99,129,124,239,5, - 255,255,129,40,132,8,0,99,129,124,239,10,255,255,129,113,173,8,0,99, - 129,245,189,8,255,255,129,40,132,7,0,99,129,245,189,6,255,255,129,40, - 132,8,0,99,129,124,239,8,255,255,129,179,181,8,0,99,129,133,115,5, - 255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99, - 129,173,148,88,255,255,138,47,157,69,83,134,91,134,99,134,99,135,99,135, - 99,135,91,135,99,135,99,3,134,99,5,135,99,32,135,91,129,71,91,4, - 135,91,133,71,91,135,91,135,91,71,91,71,91,3,70,91,130,70,83,70, - 83,3,6,83,129,6,75,3,198,74,13,197,74,3,132,66,129,67,66,10, - 67,58,132,3,58,67,58,3,58,3,58,4,67,58,3,67,66,3,131,66, - 7,132,66,3,68,66,130,132,66,133,66,3,133,74,130,197,74,197,74,4, - 198,74,129,6,75,5,6,83,136,7,83,6,83,6,83,7,75,6,83,67, - 83,232,140,253,247,16,255,255,247,1,33,255,255,129,184,214,11,0,99,129, - 113,173,10,255,255,129,124,239,7,0,99,129,245,189,3,255,255,129,173,148, - 8,0,99,129,179,181,8,255,255,129,40,132,7,0,99,129,245,189,18,255, - 255,129,249,222,8,0,99,129,173,148,20,255,255,129,184,214,11,0,99,130, - 173,148,190,247,19,255,255,129,40,132,8,0,99,129,249,222,8,255,255,129, - 249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129,124,239, - 11,255,255,129,184,214,9,0,99,129,59,231,8,255,255,129,173,148,8,0, - 99,129,47,165,5,255,255,129,40,132,8,0,99,129,249,222,7,255,255,129, - 245,189,8,0,99,129,245,189,7,255,255,129,249,222,8,0,99,129,40,132, - 4,255,255,129,173,148,8,0,99,129,179,181,8,255,255,129,40,132,7,0, - 99,129,245,189,7,255,255,129,113,173,8,0,99,129,245,189,9,255,255,129, - 184,214,9,0,99,129,59,231,8,255,255,129,173,148,8,0,99,129,47,165, - 5,255,255,129,113,173,9,0,99,129,124,239,7,255,255,130,190,247,133,115, - 8,0,99,129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,10,255, - 255,129,173,148,8,0,99,129,179,181,8,255,255,129,40,132,7,0,99,129, - 245,189,6,255,255,129,40,132,8,0,99,129,124,239,8,255,255,129,40,132, - 8,0,99,129,47,165,5,255,255,129,40,132,8,0,99,129,249,222,8,255, - 255,129,249,222,8,0,99,129,173,148,86,255,255,131,190,247,238,148,69,83, - 8,134,99,129,135,99,4,134,99,4,135,99,10,135,91,129,71,91,25,135, - 91,130,71,91,135,91,4,71,91,130,70,91,70,91,3,70,83,136,6,83, - 6,75,6,75,198,74,198,74,197,74,197,74,133,74,3,133,66,129,133,74, - 6,197,74,133,196,74,132,66,132,66,68,66,68,66,11,67,58,137,3,58, - 67,58,3,58,67,58,67,58,67,66,131,66,131,66,132,74,4,195,74,5, - 196,74,131,132,74,132,66,132,66,4,68,66,131,132,66,133,66,133,66,3, - 133,74,6,198,74,139,6,75,7,83,7,83,7,75,7,83,7,75,6,75, - 69,91,97,108,167,157,189,247,17,255,255,238,1,34,255,255,129,40,132,11, - 0,99,130,47,165,190,247,8,255,255,129,245,189,7,0,99,129,245,189,3, - 255,255,129,173,148,8,0,99,129,107,140,7,255,255,129,59,231,8,0,99, - 129,245,189,18,255,255,129,184,214,8,0,99,129,173,148,21,255,255,129,40, - 132,11,0,99,130,40,132,249,222,10,255,255,131,59,231,113,173,184,214,5, - 255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99, - 129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,190, - 247,9,0,99,129,113,173,7,255,255,129,59,231,9,0,99,129,245,189,5, - 255,255,129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0,99, - 129,245,189,7,255,255,129,249,222,8,0,99,129,40,132,4,255,255,129,173, - 148,8,0,99,129,107,140,7,255,255,129,59,231,8,0,99,129,245,189,7, - 255,255,129,113,173,8,0,99,129,47,165,9,255,255,129,190,247,9,0,99, - 129,113,173,7,255,255,129,59,231,9,0,99,129,245,189,5,255,255,129,245, - 189,9,0,99,129,245,189,7,255,255,129,245,189,9,0,99,129,124,239,5, - 255,255,129,40,132,8,0,99,129,124,239,10,255,255,129,173,148,8,0,99, - 129,107,140,7,255,255,129,59,231,8,0,99,129,245,189,6,255,255,129,40, - 132,8,0,99,129,124,239,7,255,255,129,245,189,9,0,99,129,245,189,5, - 255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99, - 129,173,148,85,255,255,131,124,239,171,124,69,91,15,134,99,3,135,99,8, - 135,91,3,71,91,20,135,91,131,71,91,135,91,71,91,3,135,91,130,71, - 91,135,91,5,70,91,137,70,83,70,83,6,83,6,83,6,75,198,74,197, - 74,197,74,133,74,3,133,66,3,132,66,5,197,74,132,132,74,132,66,68, - 66,68,66,8,67,58,4,3,58,5,67,58,132,67,66,131,66,196,74,196, - 82,9,4,83,132,196,82,197,74,132,74,132,66,4,68,66,131,132,66,133, - 66,133,66,3,133,74,10,198,74,134,199,74,6,83,99,108,224,124,168,157, - 189,247,18,255,255,19,2,34,255,255,129,118,206,13,0,99,130,245,189,249, - 222,3,255,255,131,124,239,245,189,40,132,8,0,99,129,245,189,3,255,255, - 129,47,165,9,0,99,129,249,222,5,255,255,130,59,231,133,115,8,0,99, - 129,245,189,6,255,255,131,249,222,47,165,184,214,9,255,255,129,113,173,8, - 0,99,129,113,173,21,255,255,129,118,206,13,0,99,130,47,165,245,189,5, - 255,255,134,249,222,245,189,107,140,0,99,0,99,179,181,5,255,255,129,40, - 132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,6, - 255,255,129,40,132,8,0,99,129,124,239,12,255,255,129,107,140,9,0,99, - 129,184,214,5,255,255,130,190,247,107,140,9,0,99,129,124,239,5,255,255, - 129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0,99,129,245, - 189,7,255,255,129,249,222,8,0,99,129,40,132,4,255,255,129,47,165,9, - 0,99,129,249,222,5,255,255,130,59,231,133,115,8,0,99,129,245,189,7, - 255,255,129,179,181,8,0,99,130,133,115,190,247,9,255,255,129,107,140,9, - 0,99,129,184,214,5,255,255,130,190,247,107,140,9,0,99,129,124,239,5, - 255,255,129,59,231,10,0,99,129,59,231,5,255,255,130,59,231,133,115,9, - 0,99,129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,10,255,255, - 129,47,165,9,0,99,129,249,222,5,255,255,130,59,231,133,115,8,0,99, - 129,245,189,6,255,255,129,40,132,8,0,99,129,249,222,6,255,255,129,59, - 231,10,0,99,129,190,247,5,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,84,255,255,131,59,231,41,116,69, - 91,16,134,99,5,135,99,6,135,91,8,71,91,14,135,91,9,71,91,5, - 70,91,138,70,83,70,83,6,83,6,75,198,74,198,74,197,74,197,74,133, - 66,133,66,6,132,66,3,196,74,3,132,66,129,68,58,5,67,58,130,3, - 58,3,58,4,2,58,130,3,58,3,58,4,67,58,133,67,66,131,66,196, - 74,196,82,4,91,5,68,91,138,132,91,68,91,68,91,68,83,4,83,197, - 74,133,74,133,66,132,66,68,66,4,133,66,3,133,74,9,198,74,135,199, - 74,198,74,132,91,225,124,224,124,169,157,189,247,19,255,255,9,2,35,255, - 255,129,40,132,28,0,99,129,245,189,3,255,255,129,179,181,9,0,99,134, - 133,115,184,214,255,255,255,255,190,247,245,189,10,0,99,129,113,173,6,255, - 255,129,113,173,3,0,99,130,245,189,245,189,4,255,255,130,59,231,47,165, - 9,0,99,129,245,189,22,255,255,129,40,132,24,0,99,129,107,140,5,255, - 255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129, - 173,148,6,255,255,129,40,132,8,0,99,129,124,239,12,255,255,129,245,189, - 10,0,99,129,179,181,3,255,255,130,118,206,40,132,9,0,99,129,173,148, - 6,255,255,129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0, - 99,129,245,189,7,255,255,129,249,222,8,0,99,129,40,132,4,255,255,129, - 179,181,9,0,99,134,133,115,184,214,255,255,255,255,190,247,245,189,10,0, - 99,129,113,173,7,255,255,129,245,189,9,0,99,135,47,165,190,247,255,255, - 255,255,118,206,47,165,184,214,3,255,255,129,245,189,10,0,99,129,179,181, - 3,255,255,130,118,206,40,132,9,0,99,129,173,148,7,255,255,129,133,115, - 9,0,99,130,133,115,118,206,3,255,255,130,245,189,133,115,10,0,99,129, - 124,239,5,255,255,129,40,132,8,0,99,129,124,239,10,255,255,129,179,181, - 9,0,99,134,133,115,184,214,255,255,255,255,190,247,245,189,10,0,99,129, - 113,173,6,255,255,129,40,132,9,0,99,134,179,181,124,239,255,255,255,255, - 190,247,179,181,10,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129, - 249,222,8,255,255,129,249,222,8,0,99,129,173,148,83,255,255,131,249,214, - 200,107,69,91,16,134,99,6,135,99,130,135,91,135,99,5,135,91,7,71, - 91,16,135,91,131,71,91,71,91,135,91,4,71,91,4,70,91,139,70,83, - 70,83,6,83,6,83,6,75,198,74,198,74,197,74,197,74,133,66,133,66, - 10,132,66,129,67,66,3,67,58,5,3,58,5,2,58,129,3,58,5,67, - 58,133,67,66,131,74,196,82,4,91,68,91,7,132,99,134,68,91,69,91, - 5,83,197,82,197,74,133,74,3,133,66,5,133,74,8,198,74,136,199,74, - 199,74,69,91,162,116,32,133,224,124,170,165,189,247,20,255,255,123,1,35, - 255,255,129,249,222,28,0,99,129,245,189,3,255,255,129,118,206,25,0,99, - 129,113,173,6,255,255,129,133,115,20,0,99,129,59,231,22,255,255,129,184, - 214,25,0,99,129,190,247,4,255,255,129,40,132,8,0,99,129,249,222,8, - 255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99, - 129,124,239,12,255,255,130,190,247,133,115,24,0,99,129,249,222,6,255,255, - 129,40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0,99,129,245, - 189,7,255,255,129,249,222,8,0,99,129,40,132,4,255,255,129,118,206,25, - 0,99,129,113,173,7,255,255,129,118,206,15,0,99,129,245,189,3,255,255, - 130,190,247,133,115,24,0,99,129,249,222,7,255,255,129,113,173,26,0,99, - 129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,10,255,255,129,118, - 206,25,0,99,129,113,173,6,255,255,129,40,132,25,0,99,129,249,222,6, - 255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99, - 129,173,148,82,255,255,131,119,198,135,91,69,83,3,134,91,14,134,99,8, - 135,99,5,135,91,7,71,91,16,135,91,7,71,91,4,70,91,129,70,83, - 3,6,83,130,6,75,198,74,4,197,74,129,133,66,10,132,66,3,67,58, - 5,3,58,6,2,58,129,3,58,4,67,58,136,67,66,131,66,132,74,196, - 82,68,91,68,99,132,99,132,99,4,196,99,134,133,99,132,99,69,91,6, - 83,197,82,197,74,8,133,74,129,134,74,6,198,74,137,199,74,135,74,6, - 83,35,108,225,132,33,133,160,124,171,165,190,247,21,255,255,146,1,36,255, - 255,129,179,181,27,0,99,129,245,189,3,255,255,129,124,239,25,0,99,129, - 47,165,5,255,255,129,184,214,20,0,99,129,40,132,24,255,255,129,179,181, - 24,0,99,129,184,214,4,255,255,129,40,132,8,0,99,129,249,222,8,255, - 255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129, - 124,239,13,255,255,129,245,189,23,0,99,129,173,148,7,255,255,129,40,132, - 8,0,99,129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255, - 255,129,249,222,8,0,99,129,40,132,4,255,255,129,124,239,25,0,99,129, - 47,165,7,255,255,129,59,231,15,0,99,129,113,173,4,255,255,129,245,189, - 23,0,99,129,173,148,8,255,255,129,249,222,26,0,99,129,124,239,5,255, - 255,129,40,132,8,0,99,129,124,239,10,255,255,129,124,239,25,0,99,129, - 47,165,6,255,255,129,40,132,24,0,99,129,173,148,7,255,255,129,40,132, - 8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,81,255, - 255,131,245,181,70,91,69,83,8,134,91,11,134,99,7,135,99,6,135,91, - 7,71,91,14,135,91,130,71,91,135,91,6,71,91,3,70,91,135,70,83, - 70,83,6,83,6,83,6,75,198,74,198,74,4,197,74,129,133,74,3,132, - 66,130,68,66,68,66,4,132,66,131,131,66,67,58,66,58,6,3,58,133, - 2,58,66,58,2,58,2,58,66,58,5,67,58,136,67,66,67,66,131,66, - 196,74,4,83,68,91,132,99,132,99,5,196,99,133,133,99,133,99,69,91, - 5,83,197,74,3,133,74,129,134,74,11,198,74,137,134,74,69,83,35,108, - 225,124,32,133,225,132,160,116,171,165,190,247,21,255,255,1,123,231,181,1, - 37,255,255,129,173,148,26,0,99,129,245,189,4,255,255,129,173,148,24,0, - 99,129,173,148,5,255,255,129,113,173,20,0,99,129,118,206,25,255,255,129, - 173,148,23,0,99,129,179,181,4,255,255,129,40,132,8,0,99,129,249,222, - 8,255,255,129,249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0, - 99,129,124,239,14,255,255,129,40,132,22,0,99,129,59,231,7,255,255,129, - 40,132,8,0,99,129,249,222,7,255,255,129,245,189,8,0,99,129,245,189, - 7,255,255,129,249,222,8,0,99,129,40,132,5,255,255,129,173,148,24,0, - 99,129,173,148,8,255,255,129,133,115,14,0,99,129,173,148,5,255,255,129, - 40,132,22,0,99,129,59,231,9,255,255,129,173,148,25,0,99,129,124,239, - 5,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,173,148,24,0, - 99,129,173,148,6,255,255,129,40,132,24,0,99,129,59,231,7,255,255,129, - 40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173,148, - 80,255,255,131,114,165,5,83,69,83,3,70,91,6,134,91,130,134,99,134, - 91,9,134,99,7,135,99,6,135,91,131,71,91,71,91,135,91,3,71,91, - 130,135,91,71,91,7,135,91,129,71,91,4,135,91,129,71,91,3,135,91, - 5,71,91,132,70,91,70,91,70,83,70,83,3,6,83,130,6,75,198,74, - 4,197,74,130,133,74,133,74,3,132,66,129,68,66,5,132,66,132,131,66, - 67,66,67,58,67,58,3,3,58,3,67,58,130,66,58,66,58,5,67,58, - 130,67,66,67,66,3,131,66,146,196,74,4,83,68,91,132,99,132,99,196, - 99,196,107,196,99,196,99,132,99,133,99,69,91,5,91,197,82,198,74,133, - 74,133,74,134,74,11,198,74,137,134,66,132,99,224,124,32,133,224,132,225, - 132,160,116,236,173,254,247,21,255,255,130,122,231,38,141,190,1,38,255,255, - 129,173,148,24,0,99,130,107,140,124,239,4,255,255,129,249,222,16,0,99, - 130,249,222,133,115,6,0,99,129,40,132,5,255,255,129,133,115,19,0,99, - 129,107,140,26,255,255,130,190,247,107,140,22,0,99,129,107,140,4,255,255, - 129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173, - 148,6,255,255,129,40,132,8,0,99,129,124,239,14,255,255,130,59,231,133, - 115,20,0,99,129,118,206,8,255,255,129,40,132,8,0,99,129,249,222,7, - 255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249,222,8,0,99, - 129,40,132,5,255,255,129,249,222,16,0,99,130,249,222,133,115,6,0,99, - 129,40,132,8,255,255,129,113,173,14,0,99,129,133,115,5,255,255,130,59, - 231,133,115,20,0,99,129,118,206,10,255,255,129,59,231,25,0,99,129,124, - 239,5,255,255,129,40,132,8,0,99,129,124,239,11,255,255,129,249,222,16, - 0,99,130,249,222,133,115,6,0,99,129,40,132,6,255,255,129,40,132,23, - 0,99,129,245,189,8,255,255,129,40,132,8,0,99,129,249,222,8,255,255, - 129,249,222,8,0,99,129,173,148,79,255,255,131,239,148,196,74,69,83,7, - 70,91,7,134,91,8,134,99,8,135,99,5,135,91,129,71,91,17,135,91, - 132,71,91,71,91,135,91,135,91,6,71,91,137,70,91,70,91,70,83,70, - 83,6,83,6,83,6,75,197,74,198,74,3,197,74,131,133,74,133,66,133, - 66,3,132,66,129,68,66,3,132,66,135,196,74,132,74,132,66,131,66,67, - 58,67,58,3,58,5,67,58,8,67,66,4,131,66,145,195,74,4,83,68, - 91,132,99,196,99,196,99,196,107,196,99,196,99,133,99,69,91,69,91,6, - 83,198,82,198,74,134,74,134,74,10,198,74,137,134,74,198,74,195,99,32, - 133,224,132,224,124,225,124,160,124,236,173,22,255,255,131,122,231,37,141,161, - 116,166,1,39,255,255,129,47,165,22,0,99,129,47,165,7,255,255,129,179, - 181,14,0,99,131,179,181,255,255,179,181,7,0,99,129,190,247,3,255,255, - 129,184,214,19,0,99,130,40,132,124,239,28,255,255,129,47,165,22,0,99, - 129,190,247,3,255,255,129,40,132,8,0,99,129,249,222,8,255,255,129,249, - 222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129,124,239,15, - 255,255,129,249,222,19,0,99,129,118,206,9,255,255,129,40,132,8,0,99, - 129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249, - 222,8,0,99,129,40,132,6,255,255,129,179,181,14,0,99,131,179,181,255, - 255,179,181,7,0,99,129,190,247,7,255,255,129,124,239,15,0,99,129,190, - 247,5,255,255,129,249,222,19,0,99,129,118,206,12,255,255,129,245,189,24, - 0,99,129,124,239,5,255,255,129,40,132,8,0,99,129,124,239,12,255,255, - 129,179,181,14,0,99,131,179,181,255,255,179,181,7,0,99,129,190,247,5, - 255,255,129,40,132,22,0,99,129,113,173,9,255,255,129,40,132,8,0,99, - 129,249,222,8,255,255,129,249,222,8,0,99,129,173,148,77,255,255,134,125, - 239,109,132,196,74,5,83,69,83,70,83,7,70,91,6,134,91,11,134,99, - 4,135,99,26,135,91,8,71,91,141,70,91,70,91,70,83,6,83,6,83, - 6,75,198,74,198,74,197,74,197,74,133,74,133,66,133,66,3,132,66,130, - 68,66,68,66,3,132,66,4,196,74,130,132,66,67,66,6,67,58,5,67, - 66,7,131,66,133,131,74,195,82,67,83,131,91,132,99,4,196,99,133,132, - 99,133,99,69,91,5,83,198,82,13,198,74,137,134,74,68,91,161,116,32, - 133,224,132,225,124,226,132,224,124,45,182,22,255,255,132,122,231,37,141,161, - 116,226,124,209,1,40,255,255,130,184,214,40,132,18,0,99,130,107,140,249, - 222,9,255,255,129,173,148,12,0,99,132,113,173,255,255,255,255,59,231,7, - 0,99,129,184,214,3,255,255,130,184,214,40,132,17,0,99,130,107,140,124, - 239,30,255,255,130,118,206,133,115,18,0,99,130,133,115,184,214,4,255,255, - 129,40,132,8,0,99,129,249,222,8,255,255,129,249,222,8,0,99,129,173, - 148,6,255,255,129,40,132,8,0,99,129,124,239,16,255,255,130,59,231,40, - 132,15,0,99,130,133,115,249,222,10,255,255,129,40,132,8,0,99,129,249, - 222,7,255,255,129,245,189,8,0,99,129,245,189,7,255,255,129,249,222,8, - 0,99,129,40,132,7,255,255,129,173,148,12,0,99,132,113,173,255,255,255, - 255,59,231,7,0,99,129,184,214,8,255,255,129,245,189,14,0,99,129,249, - 222,6,255,255,130,59,231,40,132,15,0,99,130,133,115,249,222,14,255,255, - 129,245,189,13,0,99,130,113,173,173,148,8,0,99,129,124,239,5,255,255, - 129,40,132,8,0,99,129,124,239,13,255,255,129,173,148,12,0,99,132,113, - 173,255,255,255,255,59,231,7,0,99,129,184,214,5,255,255,129,40,132,21, - 0,99,129,245,189,10,255,255,129,40,132,8,0,99,129,249,222,8,255,255, - 129,249,222,8,0,99,129,173,148,76,255,255,138,124,231,201,107,132,66,5, - 83,5,83,69,83,69,83,70,83,69,83,70,83,6,70,91,5,134,91,131, - 134,99,134,99,135,99,7,134,99,5,135,99,25,135,91,7,71,91,129,70, - 91,3,70,83,135,6,83,6,83,6,75,198,74,197,74,197,74,133,66,4, - 132,66,4,68,66,130,132,66,132,66,5,196,74,130,132,74,131,66,4,67, - 58,3,67,66,11,131,66,132,195,74,3,83,67,91,131,91,4,196,99,133, - 132,99,133,99,69,91,5,83,5,83,12,198,74,138,134,74,5,83,34,108, - 33,133,33,133,225,132,226,124,226,132,224,124,45,182,22,255,255,133,122,231, - 228,132,161,116,226,124,226,124,239,1,42,255,255,130,245,189,107,140,14,0, - 99,130,113,173,184,214,12,255,255,129,245,189,9,0,99,130,133,115,118,206, - 4,255,255,129,40,132,6,0,99,129,179,181,5,255,255,130,118,206,173,148, - 13,0,99,130,133,115,245,189,34,255,255,130,245,189,40,132,14,0,99,130, - 40,132,245,189,6,255,255,129,40,132,8,0,99,129,249,222,8,255,255,129, - 249,222,8,0,99,129,173,148,6,255,255,129,40,132,8,0,99,129,124,239, - 18,255,255,130,245,189,133,115,12,0,99,129,245,189,12,255,255,129,40,132, - 8,0,99,129,249,222,7,255,255,129,245,189,8,0,99,129,245,189,7,255, - 255,129,249,222,8,0,99,129,40,132,8,255,255,129,245,189,9,0,99,130, - 133,115,118,206,4,255,255,129,40,132,6,0,99,129,179,181,9,255,255,129, - 118,206,11,0,99,131,40,132,245,189,190,247,8,255,255,130,245,189,133,115, - 12,0,99,129,245,189,17,255,255,130,249,222,40,132,10,0,99,131,179,181, - 255,255,173,148,8,0,99,129,124,239,5,255,255,129,40,132,8,0,99,129, - 124,239,14,255,255,129,245,189,9,0,99,130,133,115,118,206,4,255,255,129, - 40,132,6,0,99,129,179,181,5,255,255,129,40,132,8,0,99,129,133,115, - 10,0,99,130,173,148,59,231,11,255,255,129,40,132,8,0,99,129,249,222, - 8,255,255,129,249,222,8,0,99,129,173,148,75,255,255,132,250,222,71,91, - 132,66,197,74,3,5,83,4,69,83,129,70,83,6,70,91,6,134,91,130, - 134,99,135,99,6,134,99,4,135,99,25,135,91,6,71,91,3,70,91,130, - 70,83,70,83,3,6,83,135,198,74,197,74,197,74,133,74,133,66,132,66, - 132,66,6,68,66,142,132,66,132,74,196,74,196,74,4,75,4,75,196,74, - 196,74,195,74,131,66,67,66,67,58,67,58,67,66,12,131,66,133,195,74, - 3,75,67,91,131,91,132,99,3,196,99,136,132,99,133,99,69,91,69,91, - 6,83,198,74,198,74,134,74,10,198,74,137,132,99,225,124,33,133,225,132, - 226,124,226,132,33,133,160,124,239,181,22,255,255,131,122,231,228,132,161,124, - 3,226,124,172,1,44,255,255,132,190,247,245,189,245,189,133,115,6,0,99, - 131,245,189,245,189,249,222,16,255,255,131,124,239,245,189,107,140,4,0,99, - 130,113,173,245,189,13,255,255,129,190,247,8,255,255,131,118,206,245,189,113, - 173,6,0,99,131,173,148,245,189,184,214,38,255,255,131,124,239,245,189,245, - 189,7,0,99,131,113,173,245,189,245,189,73,255,255,131,184,214,245,189,173, - 148,5,0,99,131,40,132,245,189,118,206,67,255,255,131,124,239,245,189,107, - 140,4,0,99,130,113,173,245,189,13,255,255,129,190,247,10,255,255,131,190, - 247,245,189,173,148,5,0,99,131,245,189,245,189,190,247,13,255,255,131,184, - 214,245,189,173,148,5,0,99,131,40,132,245,189,118,206,21,255,255,131,184, - 214,245,189,133,115,4,0,99,134,173,148,245,189,124,239,255,255,255,255,173, - 148,8,0,99,129,124,239,30,255,255,131,124,239,245,189,107,140,4,0,99, - 130,113,173,245,189,13,255,255,129,190,247,5,255,255,129,40,132,8,0,99, - 131,124,239,245,189,113,173,5,0,99,131,47,165,245,189,124,239,115,255,255, - 133,120,206,197,74,131,66,196,74,197,74,7,5,83,4,70,83,5,70,91, - 3,134,91,129,134,99,3,135,99,3,134,99,6,135,99,24,135,91,6,71, - 91,3,70,91,3,70,83,137,6,83,6,83,6,75,198,74,197,74,133,74, - 133,66,132,66,132,66,6,68,66,3,132,66,131,196,74,196,74,4,75,3, - 4,83,135,196,74,195,74,131,66,131,66,67,58,67,66,67,66,10,131,66, - 143,131,74,195,74,3,83,67,91,131,99,132,99,196,99,196,99,132,99,133, - 99,69,91,69,91,6,83,197,82,197,74,3,134,74,7,198,74,138,5,83, - 98,108,32,133,33,133,226,132,226,124,34,133,33,133,98,116,113,173,22,255, - 255,131,122,231,228,132,160,124,4,226,124,253,0,127,255,255,127,255,255,127, - 255,255,38,255,255,129,107,140,8,0,99,129,124,239,58,255,255,129,40,132, - 8,0,99,129,124,239,124,255,255,135,245,181,132,66,131,66,196,74,196,74, - 197,74,197,74,7,5,83,129,6,83,3,70,83,5,70,91,3,134,91,3, - 135,91,131,134,91,135,99,135,99,12,135,91,130,71,91,71,91,11,135,91, - 141,134,91,134,91,135,91,135,91,71,91,71,91,70,91,71,91,71,91,70, - 91,71,91,71,91,70,91,4,70,83,133,6,83,6,75,198,74,197,74,197, - 74,3,133,66,129,132,66,7,68,66,133,132,66,132,66,196,74,196,74,4, - 75,4,4,83,141,196,74,196,74,131,66,131,66,67,58,67,58,67,66,67, - 66,131,66,67,66,131,66,67,66,67,66,3,131,66,131,195,74,3,83,67, - 91,3,132,99,139,196,99,132,99,132,99,69,91,69,83,5,83,198,82,198, - 74,133,74,134,74,134,74,7,198,74,138,35,108,225,132,33,133,225,132,226, - 124,226,132,33,133,162,124,131,99,114,165,22,255,255,131,57,223,228,132,161, - 124,5,226,124,244,0,127,255,255,127,255,255,127,255,255,38,255,255,129,133, - 115,8,0,99,59,255,255,129,40,132,8,0,99,129,124,239,123,255,255,133, - 113,165,67,66,131,66,132,74,132,74,3,196,74,129,197,74,7,5,83,129, - 6,83,3,70,83,5,70,91,3,134,91,18,135,91,7,71,91,137,135,91, - 135,91,71,91,135,91,135,91,71,91,71,91,70,91,134,91,3,70,91,134, - 71,91,70,91,70,91,71,91,70,91,70,91,3,70,83,139,6,83,6,83, - 6,75,198,74,197,74,133,74,133,74,133,66,133,66,68,66,68,66,5,68, - 58,134,68,66,132,66,132,66,196,74,196,74,4,75,5,4,83,132,196,74, - 195,74,131,66,131,66,3,67,66,129,67,58,4,67,66,134,131,66,131,66, - 195,74,3,83,67,91,67,91,4,132,99,134,133,99,69,91,69,83,5,83, - 197,74,197,74,4,134,74,4,198,74,140,134,74,68,91,161,124,33,133,225, - 132,225,132,226,132,34,133,34,133,99,116,4,83,115,165,22,255,255,131,56, - 223,227,132,161,124,6,226,124,239,0,127,255,255,127,255,255,127,255,255,37, - 255,255,129,190,247,8,0,99,129,133,115,59,255,255,129,40,132,8,0,99, - 129,124,239,122,255,255,133,175,148,66,58,132,66,132,74,132,74,7,196,74, - 130,197,74,5,75,4,5,83,130,6,83,6,83,3,70,83,4,70,91,132, - 134,91,134,91,135,91,134,91,17,135,91,8,71,91,3,135,91,129,71,91, - 11,70,91,3,70,83,3,6,83,132,198,74,198,74,197,74,133,74,3,133, - 66,130,68,66,68,66,3,68,58,136,4,58,68,58,68,58,68,66,68,66, - 132,66,196,74,196,74,5,4,83,132,4,75,196,74,195,74,132,74,3,131, - 66,130,67,66,67,66,4,131,66,143,195,74,3,83,4,83,68,91,132,91, - 132,99,132,99,133,99,69,91,69,91,5,83,5,83,198,82,197,74,133,74, - 4,134,74,143,198,74,198,74,135,74,5,83,98,116,33,133,33,133,225,132, - 226,124,226,132,33,133,163,124,133,107,5,83,179,173,22,255,255,131,56,223, - 227,132,161,124,7,226,124,230,0,127,255,255,127,255,255,127,255,255,37,255, - 255,129,245,189,8,0,99,129,107,140,59,255,255,129,40,132,8,0,99,129, - 124,239,120,255,255,134,125,239,44,124,66,58,132,66,132,74,132,74,9,196, - 74,3,197,74,3,5,83,130,6,83,6,83,4,70,83,4,70,91,132,134, - 91,135,91,134,91,134,91,13,135,91,8,71,91,135,135,91,71,91,71,91, - 135,91,71,91,70,91,71,91,9,70,91,4,70,83,3,6,83,129,198,74, - 3,197,74,3,133,66,131,68,66,68,58,68,58,5,4,58,135,68,58,68, - 66,68,66,132,66,196,74,196,74,4,75,4,4,83,129,196,82,3,196,74, - 130,132,74,132,74,3,131,66,133,131,74,195,74,195,74,196,82,4,83,5, - 68,91,133,69,91,5,83,5,83,197,74,197,74,3,133,74,6,134,74,140, - 132,99,225,124,33,133,225,132,162,124,226,132,33,133,226,132,36,116,70,91, - 5,83,244,181,22,255,255,131,55,223,227,132,161,124,8,226,124,232,0,127, - 255,255,127,255,255,127,255,255,37,255,255,129,40,132,8,0,99,129,113,173, - 59,255,255,129,40,132,8,0,99,129,124,239,119,255,255,137,124,231,137,107, - 66,58,132,66,132,66,132,74,196,74,196,74,196,82,3,4,83,4,196,74, - 6,197,74,130,6,83,5,83,3,6,83,130,70,83,70,83,5,70,91,3, - 134,91,13,135,91,9,71,91,131,70,91,71,91,134,91,11,70,91,3,70, - 83,3,6,83,130,198,74,198,74,3,197,74,132,133,74,133,66,133,66,68, - 66,3,68,58,5,4,58,133,68,58,68,58,68,66,132,74,132,74,3,196, - 74,131,4,83,4,83,196,82,5,196,74,3,132,74,3,196,74,136,4,83, - 4,83,4,91,68,91,68,91,69,91,5,91,5,83,3,197,74,130,133,74, - 133,74,4,134,74,143,134,66,134,66,68,91,162,116,33,133,33,133,226,124, - 226,124,34,133,34,133,99,124,134,99,70,91,4,75,244,181,22,255,255,131, - 247,214,226,132,160,124,9,226,124,216,0,127,255,255,127,255,255,127,255,255, - 23,255,255,131,47,165,245,189,124,239,10,255,255,129,113,173,9,0,99,129, - 245,189,59,255,255,129,40,132,8,0,99,129,124,239,118,255,255,131,185,214, - 71,91,66,58,3,132,66,131,196,74,196,74,196,82,6,4,83,130,196,74, - 196,74,7,197,74,129,6,75,5,6,83,129,70,83,6,70,91,129,134,91, - 15,135,91,5,71,91,16,70,91,3,70,83,3,6,83,129,198,74,4,197, - 74,135,133,74,133,74,133,66,133,66,68,66,68,58,68,58,6,4,58,137, - 68,58,68,58,68,66,132,66,132,66,132,74,196,74,197,74,197,74,12,196, - 74,129,196,82,5,5,83,133,197,82,197,74,197,74,133,74,133,74,5,134, - 66,143,70,66,197,74,35,108,32,133,33,133,225,132,226,124,226,132,34,133, - 163,124,197,107,70,91,5,83,196,74,245,189,22,255,255,131,246,214,227,132, - 160,124,10,226,124,247,0,127,255,255,127,255,255,127,255,255,23,255,255,134, - 133,115,0,99,0,99,107,140,245,189,249,222,4,255,255,131,190,247,245,189, - 107,140,10,0,99,129,190,247,59,255,255,129,40,132,8,0,99,129,124,239, - 117,255,255,142,119,198,196,74,66,58,132,74,132,66,132,66,132,74,196,74, - 196,74,4,83,4,83,5,83,69,83,69,83,3,5,83,9,197,74,6,6, - 83,130,70,83,70,83,6,70,91,131,134,91,135,91,134,91,11,135,91,132, - 134,91,70,91,70,91,134,91,17,70,91,130,70,83,70,83,3,6,83,130, - 198,74,198,74,4,197,74,129,133,74,3,133,66,129,69,66,4,68,58,5, - 4,58,3,68,58,129,68,66,3,132,66,129,133,74,3,196,74,131,197,74, - 196,74,196,74,3,132,74,4,196,74,5,197,74,3,133,74,149,133,66,69, - 66,133,66,69,66,134,66,70,66,133,66,132,91,161,124,32,133,225,132,226, - 124,226,132,34,133,226,132,100,116,134,99,70,91,5,75,197,82,54,190,22, - 255,255,131,246,214,226,124,160,124,11,226,124,223,0,127,255,255,127,255,255, - 127,255,255,22,255,255,129,59,231,22,0,99,129,173,148,60,255,255,129,40, - 132,8,0,99,129,124,239,116,255,255,131,180,181,131,66,131,66,5,132,74, - 132,195,74,196,74,4,83,68,83,3,69,91,129,69,83,3,5,83,9,197, - 74,6,6,83,3,70,83,5,70,91,3,134,91,6,135,91,131,71,91,135, - 91,135,91,3,134,91,131,70,91,134,91,134,91,16,70,91,130,70,83,70, - 83,3,6,83,129,198,74,4,197,74,130,133,74,133,74,3,133,66,131,69, - 66,68,66,68,66,3,68,58,5,4,58,131,68,58,68,58,69,58,3,68, - 66,131,132,66,132,66,133,66,5,133,74,130,132,74,132,74,8,133,74,4, - 133,66,3,69,66,145,70,66,70,66,197,82,98,116,33,133,32,133,161,124, - 162,124,226,132,34,133,164,124,133,107,70,91,70,83,196,74,68,91,183,206, - 22,255,255,132,246,214,226,124,160,124,225,124,11,226,124,223,0,127,255,255, - 127,255,255,127,255,255,22,255,255,129,245,189,22,0,99,129,249,222,60,255, - 255,129,40,132,8,0,99,129,124,239,115,255,255,133,48,157,66,66,131,74, - 132,74,132,74,6,196,74,130,4,83,68,91,4,69,91,129,69,83,3,5, - 83,8,197,74,130,6,75,6,75,6,6,83,3,70,83,5,70,91,132,134, - 91,134,91,135,91,134,91,5,135,91,7,134,91,16,70,91,133,70,83,70, - 83,6,83,6,83,6,75,5,197,74,130,133,74,133,74,4,133,66,130,69, - 66,68,66,4,68,58,141,4,58,68,58,4,58,4,58,68,58,69,58,68, - 58,69,58,69,66,69,66,68,66,69,66,69,66,19,133,66,147,69,66,69, - 66,70,66,133,74,131,99,226,124,33,133,225,132,226,124,226,132,34,133,226, - 132,36,116,134,91,70,91,6,83,3,75,35,108,246,214,22,255,255,133,245, - 206,225,124,161,124,225,124,225,124,3,226,124,129,225,124,7,226,124,218,0, - 127,255,255,127,255,255,127,255,255,22,255,255,129,47,165,21,0,99,129,47, - 165,61,255,255,129,40,132,8,0,99,129,124,239,113,255,255,133,190,247,173, - 140,65,66,131,74,195,74,7,196,74,139,4,83,68,83,69,91,69,91,133, - 91,133,91,69,91,69,91,69,83,5,83,5,83,9,197,74,129,198,74,7, - 6,83,130,70,83,70,83,8,70,91,4,134,91,130,135,91,135,91,6,134, - 91,10,70,91,4,134,91,3,70,91,129,70,83,3,6,83,129,198,74,4, - 197,74,130,133,74,133,74,5,133,66,130,69,66,68,66,12,68,58,129,69, - 58,13,69,66,129,133,66,7,69,66,148,133,66,133,66,69,66,70,66,68, - 91,161,124,33,133,225,132,161,124,226,124,34,133,34,133,100,116,134,99,70, - 91,69,83,5,83,66,91,163,124,56,231,22,255,255,131,180,206,161,124,161, - 124,4,226,124,132,225,124,226,124,226,124,225,124,6,226,124,213,0,127,255, - 255,127,255,255,127,255,255,22,255,255,129,133,115,20,0,99,130,40,132,190, - 247,61,255,255,129,40,132,8,0,99,129,124,239,112,255,255,131,124,239,42, - 124,129,66,3,195,74,7,196,74,132,4,83,68,83,68,91,132,91,3,133, - 91,132,69,91,69,83,5,83,5,83,10,197,74,130,6,75,6,75,6,6, - 83,130,70,83,70,83,9,70,91,4,134,91,129,70,91,4,134,91,11,70, - 91,5,134,99,131,134,91,70,91,70,83,3,6,83,129,198,74,3,197,74, - 130,133,74,133,74,5,133,66,3,68,66,10,68,58,130,69,58,69,58,22, - 69,66,147,70,66,70,66,197,74,35,108,33,133,33,133,225,132,162,124,226, - 132,34,133,163,124,197,107,70,91,69,83,5,83,4,91,32,108,227,132,56, - 223,22,255,255,132,180,206,161,124,225,124,225,124,3,226,124,131,225,124,226, - 124,226,124,3,225,124,5,226,124,230,0,127,255,255,127,255,255,127,255,255, - 21,255,255,129,59,231,20,0,99,130,40,132,124,239,62,255,255,129,40,132, - 8,0,99,129,124,239,111,255,255,131,250,222,136,99,130,74,3,196,82,130, - 196,74,196,82,5,196,74,132,4,83,68,83,68,91,132,91,3,132,99,133, - 133,91,133,91,69,83,5,83,5,83,10,197,74,129,198,74,8,6,83,3, - 70,83,12,70,91,4,134,91,5,70,91,129,71,91,4,70,91,144,134,91, - 134,99,134,99,198,99,198,99,197,99,133,99,134,99,70,91,70,83,6,83, - 6,83,198,74,197,74,197,74,133,74,3,133,66,132,132,66,133,66,132,66, - 132,66,3,68,66,10,68,58,3,69,58,21,69,66,146,133,66,195,99,225, - 132,33,133,225,132,162,124,226,132,33,133,226,132,197,107,70,99,70,91,5, - 83,4,83,194,107,160,116,36,141,122,231,22,255,255,137,114,198,161,124,225, - 124,226,124,225,124,226,124,225,124,225,124,226,124,6,225,124,4,226,124,240, - 0,127,255,255,127,255,255,127,255,255,21,255,255,129,245,189,19,0,99,130, - 47,165,190,247,63,255,255,129,40,132,8,0,99,129,124,239,110,255,255,131, - 119,206,70,91,195,74,3,4,83,132,196,82,4,83,4,83,196,82,4,196, - 74,140,4,83,68,83,132,91,132,99,132,99,196,99,132,99,133,91,133,91, - 69,91,5,83,5,83,5,197,74,130,133,74,133,74,3,197,74,129,198,74, - 9,6,83,3,70,83,8,70,91,130,134,91,70,91,5,134,91,3,70,91, - 5,70,83,3,70,91,131,134,99,134,99,198,99,4,197,99,136,133,99,69, - 91,70,83,6,83,6,83,197,74,197,74,133,74,3,133,66,130,132,66,133, - 66,5,68,66,14,68,58,14,69,66,5,69,58,146,4,83,161,124,33,133, - 33,133,226,124,226,124,34,133,34,133,100,124,134,99,70,83,69,91,133,74, - 3,83,160,116,160,124,101,149,123,239,22,255,255,130,114,198,160,116,6,226, - 124,132,225,124,225,124,226,124,225,124,3,226,124,129,225,124,4,226,124,12, - 1,127,255,255,127,255,255,127,255,255,22,255,255,130,59,231,179,181,15,0, - 99,130,107,140,184,214,65,255,255,129,40,132,8,0,99,129,124,239,109,255, - 255,131,244,181,4,83,3,83,8,4,83,3,196,74,133,3,83,4,83,68, - 91,132,91,132,99,3,196,99,135,133,91,133,91,69,91,5,83,5,83,197, - 74,197,74,6,133,74,131,197,74,197,74,5,75,10,6,83,130,70,83,70, - 83,7,70,91,138,134,91,134,91,134,99,134,99,134,91,134,99,134,91,134, - 91,70,91,70,91,3,70,83,137,6,83,70,83,70,83,6,83,70,91,70, - 91,134,91,134,99,134,99,5,197,99,135,133,99,69,91,6,83,5,83,5, - 83,197,74,133,74,3,133,66,129,132,66,6,68,66,7,68,58,129,4,58, - 5,68,58,3,69,58,5,69,66,132,69,58,69,58,69,66,69,66,3,69, - 58,3,5,58,147,132,66,34,108,33,133,33,133,226,124,163,124,226,132,33, - 133,163,124,197,107,70,91,70,91,197,74,195,49,65,25,96,116,224,124,102, - 149,123,239,22,255,255,130,113,190,160,116,8,226,124,4,225,124,131,226,124, - 226,124,225,124,4,226,124,1,1,127,255,255,127,255,255,127,255,255,25,255, - 255,132,249,222,245,189,245,189,133,115,7,0,99,131,179,181,245,189,124,239, - 127,255,255,58,255,255,133,113,165,3,83,3,83,68,91,4,91,7,4,83, - 135,196,74,196,74,4,83,4,83,68,91,132,91,132,99,4,196,99,134,133, - 91,69,91,69,83,5,83,197,74,197,74,7,133,74,131,197,74,197,74,5, - 75,11,6,83,130,70,83,70,83,5,70,91,130,134,91,70,91,4,134,99, - 130,134,91,134,91,5,70,91,130,70,83,70,83,4,6,83,132,70,83,70, - 91,70,91,133,91,3,133,99,137,197,99,197,107,197,99,133,99,69,91,69, - 83,5,83,5,75,197,74,3,133,66,129,132,66,6,68,66,5,68,58,134, - 4,58,4,58,68,58,68,58,4,58,4,58,3,68,58,12,69,58,151,5, - 58,5,58,5,50,4,58,66,91,225,124,33,133,225,132,226,124,163,124,34, - 133,226,132,36,116,70,91,70,83,5,83,68,58,2,58,0,83,33,108,224, - 124,104,157,188,239,22,255,255,131,48,182,160,116,225,124,8,226,124,4,225, - 124,7,226,124,230,0,127,255,255,127,255,255,127,255,255,127,255,255,95,255, - 255,134,190,247,237,148,2,75,4,83,68,91,68,91,7,4,83,136,196,74, - 196,74,4,75,3,83,68,91,68,91,132,99,132,99,3,196,99,135,133,99, - 133,91,69,91,5,83,5,83,197,74,197,74,6,133,74,3,197,74,129,5, - 83,4,6,83,129,5,83,7,6,83,130,70,83,70,83,4,70,91,130,134, - 91,134,91,3,134,99,130,134,91,134,91,6,70,91,130,70,83,6,83,6, - 7,83,134,6,83,6,83,69,91,133,91,133,99,133,99,3,197,107,138,133, - 99,69,91,5,83,5,83,197,74,133,74,133,66,133,66,132,66,132,66,6, - 68,66,4,68,58,130,4,58,68,58,9,4,58,11,5,58,133,197,49,195, - 74,97,116,32,133,33,133,3,226,132,141,34,133,164,124,134,99,70,91,70, - 83,197,74,195,82,0,83,160,124,32,141,96,108,41,141,189,247,22,255,255, - 130,47,182,160,116,10,226,124,4,225,124,7,226,124,232,0,127,255,255,127, - 255,255,127,255,255,127,255,255,94,255,255,134,125,239,171,140,66,83,67,91, - 68,91,68,91,7,4,83,129,196,82,3,4,83,132,68,91,132,91,132,99, - 132,99,3,196,99,135,132,99,133,91,69,91,69,83,5,83,197,74,197,74, - 6,133,74,4,197,74,129,5,83,4,6,83,6,5,83,132,6,83,6,83, - 70,83,70,83,4,70,91,129,134,91,3,134,99,129,134,91,6,70,91,130, - 71,83,71,83,3,7,83,4,199,74,3,198,74,133,197,74,5,83,69,91, - 133,99,133,99,3,197,107,137,133,99,69,91,5,83,5,83,197,74,133,74, - 133,66,133,66,132,66,6,68,66,5,68,58,12,4,58,3,5,58,129,5, - 50,3,5,58,150,197,49,68,58,194,99,33,133,33,133,225,132,226,124,226, - 132,33,133,226,132,37,108,134,91,70,91,197,74,196,74,194,107,224,124,32, - 133,224,132,160,124,106,157,125,239,22,255,255,130,47,182,160,116,11,226,124, - 5,225,124,6,226,124,249,0,127,255,255,127,255,255,127,255,255,127,255,255, - 93,255,255,136,58,223,167,124,130,91,132,99,131,99,67,91,68,91,68,91, - 8,4,83,133,67,83,68,91,132,91,132,99,132,99,4,196,99,135,133,99, - 69,91,70,91,5,83,197,82,197,74,197,74,4,133,74,5,197,74,131,5, - 83,5,83,6,83,9,5,83,132,6,83,6,83,70,83,70,83,3,70,91, - 130,134,91,134,91,3,134,99,133,69,91,69,91,69,83,6,83,6,83,5, - 7,83,4,199,74,139,135,74,134,74,198,74,198,74,134,74,133,74,197,74, - 5,75,69,91,133,99,133,99,3,197,107,133,133,99,69,91,6,83,197,82, - 197,74,3,133,66,6,68,66,5,68,58,6,4,58,3,4,50,129,196,49, - 4,4,50,154,196,49,196,49,5,50,197,49,5,50,3,83,161,124,32,133, - 225,132,226,132,226,132,34,133,34,133,163,124,133,99,70,91,5,83,132,74, - 66,91,160,124,32,133,33,108,195,99,224,124,170,165,254,247,22,255,255,131, - 238,173,160,116,162,124,11,226,124,6,225,124,5,226,124,6,1,127,255,255, - 127,255,255,127,255,255,127,255,255,92,255,255,143,183,214,101,116,194,99,195, - 107,195,107,131,99,131,99,131,91,67,91,67,91,67,83,67,83,3,83,3, - 83,67,83,3,67,91,3,132,99,3,196,99,134,133,99,133,99,69,91,69, - 91,5,83,5,83,4,197,74,130,133,74,133,74,5,197,74,129,197,82,12, - 5,83,136,6,83,6,83,70,83,70,83,70,91,70,91,134,91,134,91,3, - 134,99,134,69,91,69,91,5,83,5,83,6,75,6,83,3,7,83,131,199, - 74,199,74,135,74,5,135,66,3,134,66,134,133,66,133,66,133,74,5,75, - 69,91,133,99,4,197,107,136,133,99,5,83,5,83,197,74,197,74,133,66, - 133,66,132,66,6,68,66,3,68,58,5,4,58,130,4,50,4,50,9,196, - 49,151,197,49,197,49,132,66,33,108,32,133,33,133,225,132,226,132,226,132, - 33,133,163,124,197,107,134,99,69,83,197,74,195,82,33,108,224,132,224,132, - 224,124,225,132,194,66,44,149,23,255,255,131,237,173,160,116,162,124,12,226, - 124,134,225,124,225,124,226,124,226,124,225,124,225,124,5,226,124,247,0,127, - 255,255,127,255,255,127,255,255,127,255,255,91,255,255,139,52,190,195,107,195, - 107,36,108,35,108,195,107,195,107,195,99,131,99,131,99,131,91,5,67,91, - 129,132,91,4,132,99,138,196,99,196,99,132,99,133,99,133,91,69,91,69, - 91,5,83,5,83,198,74,12,197,74,13,5,83,134,6,83,70,83,70,83, - 70,91,134,91,134,91,3,134,99,135,133,91,69,91,5,83,5,83,197,74, - 198,74,198,74,3,199,74,132,135,66,135,66,71,66,71,66,4,71,58,131, - 70,58,70,66,70,66,3,69,66,132,132,66,5,83,70,91,133,99,4,197, - 107,136,133,91,5,83,197,74,197,74,133,74,133,66,132,66,132,66,4,68, - 66,3,68,58,4,4,58,12,196,49,152,132,49,4,58,130,91,225,132,33, - 133,225,132,226,124,226,132,34,133,226,132,36,116,134,99,70,91,5,83,196, - 74,130,99,224,124,224,132,224,124,224,132,225,132,96,116,46,157,191,247,21, - 255,255,131,254,247,171,165,160,116,14,226,124,3,225,124,4,226,124,129,225, - 124,3,226,124,0,1,127,255,255,127,255,255,127,255,255,127,255,255,90,255, - 255,138,112,165,131,91,196,107,36,108,36,108,35,108,35,108,195,107,196,107, - 196,99,3,132,99,3,131,99,7,132,99,137,133,99,133,99,133,91,69,91, - 69,91,5,83,6,83,198,82,198,74,12,197,74,13,5,83,149,6,83,70, - 83,70,91,70,91,134,91,134,91,134,99,134,99,133,99,69,91,69,91,5, - 83,197,74,197,74,134,74,134,74,135,74,135,66,135,66,71,66,71,66,7, - 71,58,131,70,58,70,58,70,66,3,69,66,132,132,66,5,83,69,99,133, - 107,4,197,107,137,69,91,5,83,197,74,197,74,133,74,133,66,133,66,68, - 66,68,66,3,68,58,4,4,58,129,4,50,5,196,49,130,196,41,196,41, - 4,196,49,152,196,41,196,49,195,74,161,124,33,141,33,133,225,132,163,124, - 34,133,34,133,163,124,197,107,134,91,69,91,196,82,66,91,160,124,224,132, - 224,132,224,124,225,132,161,124,192,107,176,165,22,255,255,132,190,247,170,157, - 160,116,162,124,14,226,124,5,225,124,131,226,124,226,124,225,124,3,226,124, - 254,0,127,255,255,127,255,255,127,255,255,127,255,255,88,255,255,137,189,247, - 237,140,68,83,133,99,197,99,197,99,196,107,196,107,195,107,3,196,107,129, - 196,99,9,132,99,3,133,99,4,69,91,3,6,83,130,198,82,198,82,3, - 198,74,130,197,74,198,74,7,197,74,13,5,83,130,70,83,70,83,3,70, - 91,140,133,99,133,99,134,99,133,99,69,91,5,83,197,74,197,74,134,74, - 134,66,134,66,135,66,3,71,66,6,71,58,131,7,58,7,58,71,58,3, - 70,58,3,69,66,132,133,66,5,83,134,99,133,107,3,197,107,136,133,99, - 69,91,198,82,197,74,197,74,133,66,133,66,68,66,3,68,58,3,4,58, - 129,4,50,4,196,49,129,132,41,3,131,41,156,132,41,132,41,196,49,132, - 41,132,41,67,58,33,108,33,133,33,133,225,132,161,124,162,124,34,133,226, - 132,37,116,134,99,133,91,5,83,3,83,33,108,224,124,224,132,224,124,225, - 132,225,124,97,116,32,108,48,182,22,255,255,131,189,247,170,157,160,116,9, - 226,124,129,162,124,6,226,124,3,225,124,8,226,124,240,0,127,255,255,127, - 255,255,127,255,255,127,255,255,87,255,255,133,124,231,43,116,4,83,70,91, - 133,91,4,133,99,5,196,99,7,132,99,131,133,99,133,99,133,91,3,69, - 91,130,69,83,5,83,4,6,83,4,198,82,3,198,74,7,197,74,129,197, - 82,11,5,83,134,6,83,70,83,70,83,70,91,70,91,134,91,3,133,99, - 135,69,91,69,91,5,83,197,74,133,74,134,66,134,66,6,71,66,5,71, - 58,3,7,58,3,70,58,4,69,58,132,133,66,5,83,133,99,133,107,3, - 197,107,138,133,99,5,83,197,74,197,74,133,74,133,66,69,66,68,58,4, - 58,4,58,3,4,50,131,196,49,196,49,195,49,7,131,41,154,132,41,132, - 41,196,49,2,83,225,124,33,133,225,132,225,124,160,124,160,124,96,116,97, - 116,197,99,70,91,5,83,196,74,130,99,160,124,224,132,224,132,225,132,225, - 132,161,124,33,108,32,108,113,190,22,255,255,131,189,247,105,149,160,116,10, - 226,124,129,162,124,6,226,124,3,225,124,8,226,124,220,0,127,255,255,127, - 255,255,127,255,255,127,255,255,86,255,255,131,185,214,136,99,5,83,5,70, - 91,129,69,91,12,133,99,5,69,91,129,5,83,7,6,83,3,198,82,4, - 198,74,6,197,74,129,197,82,12,5,83,3,70,83,141,70,91,70,91,134, - 91,133,99,134,99,134,99,70,91,5,83,197,74,133,74,133,74,134,66,134, - 66,7,71,66,5,71,58,3,7,58,130,6,58,70,58,4,69,58,133,69, - 66,132,74,69,91,133,99,133,107,3,197,107,138,133,99,5,83,197,74,133, - 74,133,66,69,58,68,58,4,58,4,58,4,50,4,196,49,8,131,41,135, - 132,41,131,74,97,116,33,133,33,133,225,132,160,124,3,224,124,143,160,124, - 32,116,131,99,196,74,2,83,96,116,224,132,224,132,224,124,225,132,161,124, - 33,116,32,108,161,124,179,206,22,255,255,131,188,239,104,149,160,116,19,226, - 124,3,225,124,4,226,124,131,225,124,225,124,226,124,242,0,127,255,255,127, - 255,255,127,255,255,127,255,255,85,255,255,131,53,190,70,91,5,83,8,70, - 91,13,69,91,129,70,83,12,6,83,132,198,82,198,82,198,74,198,74,6, - 197,74,129,197,82,10,5,83,130,6,83,6,83,3,70,83,3,70,91,139, - 133,99,133,99,134,99,69,91,70,91,5,83,197,74,133,74,133,66,70,66, - 134,66,5,71,66,131,71,58,71,58,71,66,4,71,58,3,7,58,131,6, - 58,70,58,6,58,3,69,58,133,69,66,69,66,197,74,69,91,134,99,3, - 197,107,137,133,107,69,91,197,74,133,74,133,74,69,66,4,58,4,58,4, - 50,4,196,49,130,131,41,132,41,5,131,41,154,68,41,195,49,129,99,33, - 133,33,133,225,132,161,124,224,124,224,124,224,132,160,124,128,99,32,116,160, - 124,160,124,32,116,224,124,224,132,224,124,225,132,224,132,97,116,32,108,96, - 116,225,132,245,214,22,255,255,131,123,239,39,149,160,116,16,226,124,132,162, - 124,162,124,226,124,226,124,4,225,124,3,226,124,3,225,124,241,0,127,255, - 255,127,255,255,127,255,255,127,255,255,84,255,255,130,113,165,69,91,20,70, - 91,130,6,83,70,83,13,6,83,5,198,82,5,197,74,4,197,82,8,5, - 83,130,6,83,6,83,3,70,83,3,70,91,139,133,99,133,99,134,99,69, - 91,5,83,197,74,133,74,133,66,133,66,70,66,70,66,4,71,66,132,71, - 58,71,58,71,66,71,66,5,71,58,130,7,58,7,58,3,6,58,137,70, - 58,70,58,69,58,69,66,69,66,133,66,5,83,69,91,133,99,3,197,107, - 135,133,99,69,91,197,74,133,74,133,66,68,58,4,50,5,196,49,130,196, - 41,132,41,3,131,41,155,67,41,131,41,2,83,161,124,33,133,33,133,161, - 124,33,108,160,116,32,133,224,124,32,108,64,91,128,74,0,83,160,124,224, - 132,160,124,160,124,224,132,224,132,161,124,32,116,96,116,160,124,226,132,55, - 223,22,255,255,131,122,231,38,141,160,116,6,226,124,129,225,124,8,226,124, - 4,162,124,130,226,124,226,124,3,225,124,4,226,124,3,225,124,233,0,127, - 255,255,127,255,255,127,255,255,127,255,255,82,255,255,131,190,247,238,140,4, - 83,19,70,91,130,6,91,70,91,17,6,83,130,198,82,198,82,6,197,74, - 3,197,82,5,5,83,6,6,83,130,70,83,70,83,3,70,91,139,134,91, - 133,99,133,99,70,91,6,91,5,83,133,74,133,66,69,66,69,66,70,66, - 9,71,66,6,71,58,130,7,58,7,58,3,6,58,137,70,58,69,66,70, - 66,69,66,133,74,197,74,5,83,133,99,133,99,3,197,107,134,133,99,5, - 83,133,74,133,74,69,66,4,58,6,196,49,158,196,41,195,41,131,41,67, - 41,67,58,33,108,33,133,33,133,225,132,225,124,160,124,160,116,224,132,96, - 116,0,91,192,74,128,74,192,74,0,83,128,99,160,124,224,132,224,132,224, - 124,96,116,33,108,161,124,225,124,37,124,248,214,22,255,255,131,57,231,37, - 141,160,116,15,226,124,5,162,124,130,226,124,226,124,4,225,124,134,226,124, - 225,124,225,124,226,124,225,124,225,124,232,0,127,255,255,127,255,255,127,255, - 255,127,255,255,81,255,255,132,124,231,107,124,68,83,134,99,23,70,91,129, - 6,83,3,70,91,129,6,91,10,6,83,130,198,82,197,74,3,197,82,3, - 197,74,130,197,82,197,82,5,5,83,5,6,83,4,70,83,3,70,91,134, - 69,91,134,91,69,91,5,91,5,83,197,74,3,69,66,132,70,66,70,66, - 71,66,71,58,6,71,66,8,71,58,129,7,58,3,6,58,138,70,58,70, - 66,70,66,134,66,133,74,197,74,197,74,69,91,133,99,134,99,3,197,107, - 134,69,91,5,83,133,74,133,74,69,66,4,58,6,196,49,156,132,41,195, - 49,66,91,225,132,33,133,225,132,160,124,160,124,224,124,224,132,224,132,192, - 107,128,74,64,66,0,83,192,74,0,83,64,91,64,91,96,108,224,124,160, - 124,32,108,96,116,33,133,98,116,71,99,122,214,22,255,255,131,56,223,36, - 133,160,124,15,226,124,6,162,124,130,226,124,226,124,8,225,124,130,226,124, - 226,124,231,0,127,255,255,127,255,255,127,255,255,127,255,255,80,255,255,131, - 185,214,201,107,69,83,6,134,99,24,70,91,11,6,83,129,198,82,3,197, - 82,4,197,74,4,5,83,5,6,83,130,70,83,6,83,4,70,83,3,70, - 91,3,69,91,139,5,83,197,74,133,66,69,66,69,58,69,58,70,58,70, - 58,71,66,71,66,71,58,5,71,66,9,71,58,129,70,58,3,6,58,147, - 70,58,70,66,134,74,134,74,197,74,197,74,5,83,69,91,133,99,133,99, - 197,107,197,107,133,99,70,91,197,74,133,74,133,74,69,66,4,58,3,4, - 50,157,196,49,196,49,194,74,161,116,33,141,33,133,225,124,160,124,224,124, - 224,124,32,133,32,116,192,82,64,66,128,74,192,74,64,83,64,91,128,91, - 32,100,96,116,160,124,96,116,194,107,161,124,226,132,67,99,201,90,186,214, - 22,255,255,131,56,223,227,132,160,124,11,226,124,3,162,124,129,226,124,8, - 162,124,129,226,124,8,225,124,130,226,124,226,124,225,0,127,255,255,127,255, - 255,127,255,255,127,255,255,79,255,255,131,54,190,134,99,69,91,9,134,99, - 21,70,91,129,6,91,11,6,83,129,5,83,3,197,82,4,197,74,4,5, - 83,4,6,83,129,70,83,6,6,83,137,70,83,6,83,70,91,69,91,69, - 91,5,83,198,82,133,74,69,66,3,69,58,130,70,58,70,58,5,71,58, - 5,71,66,7,71,58,130,70,58,70,58,3,6,58,137,70,66,134,66,134, - 74,198,74,197,74,5,83,69,83,133,99,197,99,3,197,107,165,133,99,69, - 91,197,82,197,74,133,74,133,66,4,58,4,58,196,49,67,66,33,108,33, - 133,33,133,225,132,161,124,224,124,224,124,32,133,160,124,64,91,64,66,128, - 74,192,74,192,74,64,83,128,91,192,99,96,116,160,116,160,124,97,116,97, - 116,226,132,99,124,4,66,137,82,251,222,22,255,255,131,246,214,227,132,161, - 124,14,226,124,10,162,124,129,226,124,8,225,124,130,226,124,226,124,220,0, - 127,255,255,127,255,255,127,255,255,127,255,255,78,255,255,133,178,165,69,83, - 69,91,134,91,134,91,9,134,99,20,70,91,12,6,83,135,5,83,197,82, - 197,82,5,83,5,83,197,82,5,75,3,5,83,4,6,83,132,70,83,6, - 83,70,83,70,83,7,6,83,134,70,91,70,91,5,83,197,82,197,74,133, - 66,3,69,58,130,70,58,70,58,10,71,58,129,71,66,9,71,58,140,70, - 58,6,58,6,58,70,58,70,66,134,74,198,74,6,83,6,83,69,91,133, - 91,197,99,4,197,107,139,133,99,69,91,197,82,197,74,198,74,69,66,68, - 58,66,91,224,124,33,133,225,132,5,224,124,147,192,107,129,74,64,66,128, - 66,192,74,0,75,64,83,192,99,96,108,160,116,160,116,96,116,97,116,162, - 124,163,132,69,99,131,41,201,82,59,231,22,255,255,131,246,214,226,124,161, - 124,13,226,124,12,162,124,129,226,124,8,225,124,130,226,124,226,124,212,0, - 127,255,255,127,255,255,127,255,255,127,255,255,76,255,255,131,189,247,238,140, - 4,83,3,70,91,4,134,91,7,134,99,129,70,91,3,134,91,15,70,91, - 13,6,83,6,5,83,16,6,83,129,198,82,3,6,83,132,5,83,197,74, - 133,74,69,66,3,69,58,130,70,58,70,58,10,71,58,130,71,66,71,66, - 3,71,58,129,71,66,5,71,58,139,70,58,6,58,6,58,70,58,134,66, - 198,74,6,83,70,91,70,91,133,99,197,99,3,197,107,163,37,108,197,107, - 133,99,70,91,198,82,198,74,67,91,161,116,32,133,32,133,225,132,161,124, - 224,124,224,124,224,132,160,116,64,91,64,66,128,66,128,74,192,74,64,83, - 128,91,32,108,160,116,160,124,96,116,32,108,161,124,226,132,196,115,5,66, - 67,33,74,91,124,239,22,255,255,131,181,206,225,124,225,124,14,226,124,13, - 162,124,8,225,124,130,226,124,226,124,210,0,127,255,255,127,255,255,127,255, - 255,127,255,255,75,255,255,132,59,231,43,116,197,74,70,83,9,70,91,3, - 134,91,5,70,91,129,134,91,15,70,91,129,6,91,12,6,83,6,5,83, - 12,6,83,5,198,74,3,6,83,131,197,74,197,74,133,66,3,69,66,134, - 70,66,70,58,71,58,71,58,7,58,7,58,8,71,58,8,71,66,3,71, - 58,3,6,58,135,70,66,198,74,6,83,70,91,70,99,133,99,197,99,5, - 37,108,137,197,107,133,99,68,91,34,108,32,133,32,133,225,132,225,124,224, - 132,3,224,124,148,192,107,0,91,0,83,192,74,128,66,192,74,64,91,32, - 100,160,116,160,124,160,116,33,108,34,116,226,132,99,124,133,82,133,49,66, - 33,140,107,190,247,22,255,255,131,179,198,161,116,225,124,12,226,124,133,162, - 124,226,124,162,124,162,124,226,124,11,162,124,8,225,124,130,226,124,226,124, - 222,0,127,255,255,127,255,255,127,255,255,127,255,255,74,255,255,131,185,206, - 72,91,197,74,4,6,83,130,71,83,71,83,27,70,91,16,6,83,3,5, - 83,129,197,82,11,6,83,129,198,82,6,198,74,139,6,83,6,83,197,82, - 197,74,197,74,133,66,133,66,134,66,70,66,70,58,70,58,5,7,58,6, - 71,58,11,71,66,175,70,58,70,58,6,58,6,50,70,58,134,66,6,83, - 70,91,134,99,133,99,197,107,36,108,36,116,100,116,37,116,37,108,36,108, - 97,116,224,124,33,133,225,132,224,132,224,132,224,124,96,116,192,107,96,116, - 128,99,192,82,128,74,192,74,192,74,64,83,192,99,96,108,160,116,160,124, - 96,116,34,108,161,124,226,132,69,99,197,57,132,41,66,33,205,115,190,247, - 22,255,255,131,114,190,160,124,225,124,9,226,124,129,225,124,5,226,124,131, - 162,124,162,124,226,124,12,162,124,130,225,124,226,124,5,225,124,130,226,124, - 225,124,247,0,127,255,255,127,255,255,127,255,255,127,255,255,73,255,255,129, - 180,173,4,198,74,130,6,75,6,75,5,7,83,133,6,83,6,83,70,83, - 71,91,71,91,4,70,91,3,71,91,129,70,91,3,70,83,5,70,91,10, - 6,83,7,198,82,5,197,74,14,198,74,5,134,74,140,198,74,198,82,197, - 82,197,74,197,74,198,74,134,74,134,74,134,66,134,66,70,58,71,58,4, - 7,58,4,71,58,8,71,66,3,135,66,176,71,66,71,66,135,66,71,66, - 70,58,6,58,6,58,6,50,70,58,134,74,6,83,70,91,134,99,197,107, - 37,108,36,108,100,116,100,116,98,116,224,124,32,133,33,133,225,124,160,124, - 160,124,192,107,128,99,192,107,192,107,0,91,128,74,64,66,192,74,0,83, - 128,91,32,108,160,116,160,124,96,116,33,108,98,116,226,132,196,115,69,74, - 132,49,196,41,66,33,112,140,23,255,255,132,47,182,160,116,225,124,225,124, - 10,226,124,129,225,124,6,226,124,13,162,124,132,161,124,226,124,225,124,225, - 124,3,226,124,130,225,124,225,124,232,0,127,255,255,127,255,255,127,255,255, - 127,255,255,72,255,255,131,241,148,133,66,134,74,5,198,74,134,199,74,199, - 74,198,74,199,74,6,75,7,75,14,7,83,11,6,83,129,198,82,11,198, - 74,6,197,74,11,198,74,130,134,74,134,74,4,134,66,141,133,74,197,74, - 197,82,198,82,197,74,197,74,198,74,198,74,134,74,134,66,134,66,70,58, - 71,58,4,7,58,5,71,58,5,71,66,8,135,66,172,71,66,70,66,70, - 58,6,58,6,50,6,58,70,66,198,74,70,91,134,99,134,107,197,107,37, - 108,99,116,161,124,224,132,33,133,225,132,161,124,96,116,32,116,32,108,129, - 99,96,116,128,99,64,66,64,66,128,74,64,83,128,91,192,99,96,116,160, - 124,160,116,33,108,34,108,226,124,163,124,133,82,133,49,132,41,131,41,66, - 33,177,148,23,255,255,134,46,182,160,116,226,124,226,124,225,124,225,124,16, - 226,124,13,162,124,134,161,124,226,124,226,124,225,124,225,124,226,124,3,225, - 124,244,0,127,255,255,127,255,255,127,255,255,127,255,255,70,255,255,134,125, - 239,45,124,69,66,134,74,135,74,135,74,3,134,74,4,198,74,130,199,74, - 198,74,5,199,74,129,199,82,7,7,83,7,199,74,8,198,74,10,134,74, - 6,133,74,11,134,74,130,134,66,134,66,3,70,66,131,69,66,133,74,197, - 74,3,197,82,136,198,82,198,74,198,74,134,74,134,66,70,66,70,58,6, - 58,3,7,58,6,71,58,4,71,66,8,135,66,172,71,66,71,66,70,66, - 70,58,6,58,6,50,197,49,5,58,69,66,198,74,70,83,70,99,133,99, - 99,116,225,124,33,133,225,132,224,132,224,124,224,124,160,124,224,124,224,124, - 32,116,192,82,64,66,128,74,192,74,64,83,192,99,96,108,160,116,160,124, - 96,116,194,107,162,124,226,132,132,107,198,65,132,41,132,41,131,41,66,33, - 242,156,23,255,255,135,237,173,160,124,225,124,226,124,226,124,225,124,225,124, - 15,226,124,12,162,124,134,161,124,162,124,162,124,161,124,226,124,226,124,4, - 225,124,1,226,124,245,0,127,255,255,127,255,255,127,255,255,127,255,255,69, - 255,255,131,250,214,74,99,134,66,3,199,74,130,135,74,135,74,3,134,74, - 130,198,74,198,74,16,199,74,7,198,74,5,134,74,5,134,66,132,70,66, - 70,66,69,66,70,66,4,69,66,133,133,66,69,66,133,66,69,66,69,66, - 10,134,66,7,70,66,142,134,66,197,74,197,74,6,83,5,83,6,83,198, - 82,198,74,198,74,134,74,134,66,70,66,70,58,6,58,3,7,58,5,71, - 58,6,71,66,7,135,66,146,71,66,70,66,70,58,70,58,6,58,6,58, - 197,49,197,49,5,50,69,58,134,74,69,91,161,116,32,133,32,133,224,124, - 97,116,160,124,3,224,124,150,32,108,128,74,128,74,192,74,0,83,64,83, - 128,91,32,108,96,108,160,116,96,116,33,108,98,116,226,132,36,116,69,74, - 132,49,132,41,132,41,67,33,67,33,181,173,22,255,255,132,254,255,235,165, - 160,124,225,124,3,226,124,3,225,124,15,226,124,4,162,124,129,161,124,9, - 162,124,130,161,124,162,124,6,226,124,251,0,127,255,255,127,255,255,127,255, - 255,127,255,255,68,255,255,131,55,190,8,83,134,66,4,199,74,3,135,74, - 139,134,66,134,74,198,74,198,74,199,74,199,74,135,74,135,74,135,66,135, - 74,135,74,8,199,74,129,134,74,10,134,66,6,70,66,129,69,66,3,69, - 58,129,69,66,5,69,58,133,69,66,69,66,69,58,69,66,69,66,9,70, - 66,4,70,58,3,69,66,131,134,74,198,74,198,82,3,6,83,135,198,82, - 198,74,198,74,134,74,70,66,70,58,6,58,3,7,58,5,71,58,6,71, - 66,8,135,66,144,71,66,70,66,70,66,70,58,6,58,6,58,5,50,197, - 49,133,41,197,49,67,91,225,124,32,133,224,124,160,124,160,124,3,224,124, - 151,160,124,128,99,64,74,0,83,64,91,64,91,128,91,32,100,96,108,160, - 116,160,124,32,116,33,108,225,124,163,132,197,90,133,49,68,41,131,41,131, - 41,66,33,67,41,182,181,22,255,255,131,190,247,170,165,160,124,3,226,132, - 3,226,124,3,225,124,13,226,124,19,162,124,132,226,124,162,124,226,124,226, - 124,242,0,127,255,255,127,255,255,127,255,255,127,255,255,67,255,255,129,115, - 165,11,199,74,4,198,74,131,135,74,135,66,135,66,9,135,74,130,135,66, - 135,66,9,134,66,134,70,66,70,66,70,58,70,58,69,58,69,58,13,5, - 58,4,69,58,129,70,58,5,70,66,3,70,58,4,6,58,134,69,58,69, - 66,70,66,133,74,197,74,198,82,4,6,83,137,198,74,198,74,134,66,70, - 66,6,58,6,50,7,50,7,58,7,58,3,71,58,131,71,66,71,58,71, - 58,5,71,66,8,135,66,142,71,66,70,66,70,66,70,58,6,58,6,58, - 5,50,133,41,4,50,194,99,32,133,33,133,160,124,160,124,4,224,124,151, - 32,108,192,82,32,108,32,108,192,99,128,91,192,99,96,108,160,116,160,124, - 96,116,32,108,161,124,227,132,132,107,5,66,68,41,67,33,67,33,67,41, - 2,25,196,49,55,198,22,255,255,131,189,247,168,157,160,124,4,226,132,3, - 226,124,3,225,124,7,226,124,129,225,124,5,226,124,5,162,124,129,161,124, - 17,162,124,229,0,127,255,255,127,255,255,127,255,255,127,255,255,65,255,255, - 133,124,231,110,132,134,66,199,74,7,83,10,199,74,130,198,74,198,74,4, - 199,74,3,135,74,129,135,66,3,135,74,4,135,66,5,134,66,4,70,66, - 4,70,58,129,69,58,16,5,58,132,69,58,69,58,70,58,70,66,5,70, - 58,6,6,58,133,70,58,69,66,133,66,197,74,197,82,4,6,83,137,198, - 74,198,74,134,74,70,66,70,58,6,58,6,50,6,50,7,58,6,71,58, - 6,71,66,8,135,66,140,71,66,71,66,70,58,6,58,6,58,5,50,197, - 49,131,66,161,116,33,141,225,132,160,124,5,224,124,144,192,107,0,83,32, - 108,160,116,32,108,192,99,32,108,96,116,160,124,160,116,33,108,97,116,225, - 132,100,124,133,82,68,41,4,67,33,131,2,25,197,49,121,206,22,255,255, - 131,123,239,103,149,224,124,5,226,132,4,226,124,130,225,124,225,124,8,226, - 124,130,225,124,225,124,3,226,124,23,162,124,227,0,127,255,255,127,255,255, - 127,255,255,127,255,255,65,255,255,132,251,222,110,132,199,74,198,74,17,199, - 74,9,135,74,130,135,66,135,66,6,134,66,3,70,66,3,70,58,129,6, - 58,6,5,58,3,5,50,8,5,58,130,69,58,69,58,5,70,58,6,6, - 58,134,5,58,6,58,70,58,70,66,134,74,197,74,5,6,83,137,198,74, - 198,74,134,66,70,58,6,58,6,50,6,50,6,58,7,58,5,71,58,7, - 71,66,9,135,66,138,70,66,70,58,6,58,5,50,198,57,68,91,33,133, - 33,133,225,132,160,124,3,224,124,146,160,124,32,108,64,91,192,99,96,108, - 96,116,96,108,32,108,96,108,160,116,160,124,96,116,34,108,162,124,227,132, - 69,107,133,57,68,41,4,67,33,131,193,24,7,66,186,214,22,255,255,132, - 122,231,101,149,224,124,226,132,3,225,132,3,226,132,134,225,124,226,124,226, - 124,225,124,226,124,225,124,8,226,124,129,225,124,3,226,124,23,162,124,238, - 0,127,255,255,127,255,255,127,255,255,127,255,255,67,255,255,132,185,206,110, - 124,199,74,198,74,15,199,74,9,135,74,130,135,66,135,66,6,134,66,3, - 70,66,4,70,58,3,5,58,130,5,50,5,58,4,5,50,7,5,58,3, - 69,58,4,70,58,4,6,58,138,5,58,5,50,5,58,6,58,70,58,70, - 66,70,66,198,74,198,82,5,83,4,6,83,137,198,74,198,74,70,66,70, - 58,6,58,6,50,6,50,6,58,6,58,7,71,58,5,71,66,8,135,66, - 159,70,66,70,58,70,58,6,58,6,58,196,107,33,141,224,132,97,116,161, - 124,224,124,32,133,224,124,32,108,0,91,64,91,32,108,96,108,96,108,32, - 108,32,108,160,116,160,124,160,116,33,108,97,116,226,132,36,124,134,82,133, - 49,131,41,4,67,33,131,193,16,72,74,251,222,22,255,255,133,57,231,36, - 141,224,124,226,132,226,132,4,225,132,133,226,132,226,132,225,124,225,124,226, - 124,3,225,124,9,226,124,131,225,124,226,124,226,124,23,162,124,254,0,127, - 255,255,127,255,255,127,255,255,127,255,255,69,255,255,132,120,198,203,107,134, - 66,199,74,4,7,75,129,7,83,8,199,74,6,135,74,129,135,66,3,135, - 74,6,134,66,4,70,66,3,70,58,129,6,58,6,5,58,129,5,50,8, - 5,58,129,70,58,3,69,58,3,70,58,142,6,58,6,58,5,58,5,58, - 5,50,6,50,5,50,5,58,6,58,6,58,70,66,133,66,197,74,198,82, - 4,6,83,133,198,82,198,74,134,74,70,66,6,58,3,198,49,130,6,50, - 6,58,8,71,58,130,71,66,71,58,5,71,66,4,135,66,166,71,66,70, - 66,70,58,6,58,70,74,99,124,33,133,225,132,97,124,97,116,224,124,224, - 124,192,107,192,82,128,74,128,91,160,116,96,108,96,108,32,108,96,108,160, - 124,160,124,32,116,33,116,226,132,163,132,198,98,198,57,132,49,131,41,131, - 41,67,41,67,33,67,33,193,16,201,82,125,239,22,255,255,131,56,223,35, - 133,224,124,4,226,132,3,225,132,134,226,132,226,132,225,132,225,124,226,124, - 226,124,3,225,124,11,226,124,23,162,124,247,0,127,255,255,127,255,255,127, - 255,255,127,255,255,70,255,255,132,190,247,180,173,73,91,198,74,7,7,83, - 129,7,75,6,199,74,8,135,74,5,134,66,131,70,66,134,66,70,66,5, - 70,58,14,5,58,129,69,58,4,70,58,132,69,58,70,58,6,58,6,58, - 3,5,58,140,5,50,197,49,197,49,5,50,6,58,6,58,6,66,70,66, - 134,66,133,74,197,74,198,82,3,6,83,136,198,82,134,74,134,66,70,58, - 6,50,198,49,198,49,6,50,3,6,58,3,70,58,6,71,58,5,71,66, - 169,135,66,135,66,71,66,71,66,70,66,70,58,6,58,134,82,163,124,33, - 133,225,132,97,116,32,116,96,116,32,108,192,82,0,58,0,58,128,74,64, - 91,32,108,32,108,96,108,160,116,224,124,96,116,34,108,162,124,226,132,132, - 107,6,66,132,49,196,49,131,41,131,41,67,41,67,33,67,33,193,16,75, - 99,190,247,22,255,255,131,246,214,226,132,225,124,4,226,132,5,225,132,130, - 226,132,226,132,4,226,124,130,225,124,225,124,12,226,124,22,162,124,227,0, - 127,255,255,127,255,255,127,255,255,127,255,255,72,255,255,132,124,231,175,140, - 198,74,199,74,6,7,83,5,199,74,8,135,74,129,134,74,5,134,66,130, - 70,66,70,66,3,70,58,130,69,58,69,58,13,5,58,131,69,58,5,58, - 69,58,3,70,58,4,6,58,4,5,58,3,197,49,144,5,50,6,58,70, - 66,70,66,69,66,134,66,133,74,198,74,198,74,6,83,6,83,198,82,198, - 74,134,66,70,66,5,58,3,197,49,130,198,49,6,50,5,6,58,129,70, - 58,6,71,58,8,71,66,154,70,66,7,58,5,91,226,132,33,133,161,124, - 33,108,192,99,0,91,192,74,192,74,64,58,64,58,192,74,64,83,32,108, - 96,108,160,116,224,124,160,124,32,108,98,116,226,132,100,124,70,74,68,41, - 5,131,41,132,67,41,67,33,1,25,206,123,23,255,255,131,180,206,225,132, - 225,124,5,226,132,6,225,132,130,226,132,225,124,3,226,124,3,225,124,11, - 226,124,22,162,124,232,0,127,255,255,127,255,255,127,255,255,127,255,255,74, - 255,255,131,119,198,137,99,198,74,6,7,83,129,199,82,4,199,74,5,135, - 74,130,134,66,134,74,5,134,66,135,70,66,70,66,70,58,69,58,70,58, - 69,58,69,58,14,5,58,4,69,58,129,70,58,4,6,58,130,5,58,5, - 50,6,197,49,129,5,58,3,70,66,133,69,66,134,66,133,74,134,74,198, - 74,3,198,82,132,134,74,70,66,6,58,5,50,3,197,49,130,198,49,6, - 50,6,6,58,130,70,58,70,58,5,71,58,7,71,66,155,6,58,69,99, - 33,133,33,133,98,124,194,107,64,91,0,83,0,83,192,74,0,75,192,74, - 64,91,64,91,32,108,160,116,160,116,160,124,96,116,97,116,225,132,163,132, - 197,90,133,49,68,33,67,33,67,33,4,67,41,131,67,33,1,25,112,140, - 23,255,255,132,178,198,225,124,225,124,225,132,5,226,132,6,225,132,130,226, - 132,226,132,4,226,124,130,225,124,225,124,12,226,124,21,162,124,225,0,127, - 255,255,127,255,255,127,255,255,127,255,255,75,255,255,131,125,239,239,140,198, - 74,7,7,83,129,199,82,3,199,74,4,135,74,129,134,74,6,134,66,131, - 70,66,70,66,70,58,3,69,58,13,5,58,6,69,58,5,5,58,7,197, - 49,130,5,50,70,58,5,70,66,142,134,66,134,74,198,74,198,82,198,82, - 198,74,134,74,70,66,5,58,197,49,197,41,197,49,197,49,5,50,3,6, - 50,8,6,58,129,70,58,3,71,58,157,70,58,71,58,70,58,71,66,71, - 58,6,58,68,91,33,133,225,132,34,116,129,99,64,91,0,83,0,75,0, - 75,64,83,64,91,128,91,128,91,32,108,160,116,160,124,96,116,96,116,161, - 124,226,132,68,107,132,49,3,33,6,67,33,132,67,41,67,33,66,33,242, - 148,23,255,255,131,113,190,225,124,224,132,3,225,132,4,226,132,6,225,132, - 134,226,132,226,132,226,124,225,124,226,124,226,124,3,225,124,11,226,124,21, - 162,124,215,0,127,255,255,127,255,255,127,255,255,127,255,255,77,255,255,131, - 55,198,137,99,198,74,5,7,83,129,199,82,4,199,74,132,135,74,135,74, - 134,74,134,74,5,134,66,4,70,66,3,69,58,12,5,58,5,69,58,5, - 5,58,8,197,49,130,197,57,6,58,5,134,74,141,70,66,70,66,134,74, - 199,74,199,82,199,74,135,74,70,66,6,58,197,49,197,41,133,41,197,41, - 3,197,49,4,6,50,11,6,58,156,70,58,70,58,6,58,69,66,34,108, - 32,133,162,124,194,107,33,108,64,91,0,83,192,74,64,83,128,91,64,83, - 128,91,192,99,96,108,160,124,96,116,33,108,161,124,34,133,36,116,4,66, - 3,25,3,25,2,25,4,67,33,3,131,41,130,195,49,180,173,23,255,255, - 131,46,182,224,124,224,132,5,225,132,3,226,132,7,225,132,130,226,132,226, - 132,3,226,124,131,225,124,226,124,225,124,12,226,124,20,162,124,235,0,127, - 255,255,127,255,255,127,255,255,127,255,255,78,255,255,131,60,231,174,132,198, - 74,6,7,83,129,199,82,3,199,74,4,134,74,5,134,66,132,70,66,70, - 66,69,66,69,66,3,69,58,11,5,58,130,69,58,69,58,7,5,58,129, - 5,50,8,197,49,145,5,58,70,66,135,74,199,82,135,74,134,74,134,74, - 70,66,70,66,134,74,199,74,199,74,135,74,134,66,70,58,6,50,197,49, - 3,132,41,3,197,49,129,5,50,3,6,50,6,6,58,129,7,58,6,6, - 58,141,4,83,162,124,32,133,34,116,194,107,32,108,192,82,64,66,128,74, - 64,83,128,91,64,91,128,99,4,96,116,145,161,124,226,132,163,124,197,90, - 68,41,3,33,66,33,131,33,131,41,131,41,195,49,195,49,3,50,4,58, - 3,58,133,74,54,190,23,255,255,130,236,173,224,124,4,225,132,129,226,132, - 3,225,132,130,226,132,226,132,8,225,132,131,226,132,226,124,225,124,3,226, - 124,130,225,124,225,124,11,226,124,20,162,124,243,0,127,255,255,127,255,255, - 127,255,255,127,255,255,80,255,255,131,180,173,7,83,198,74,4,7,83,134, - 199,82,199,82,199,74,199,74,198,74,198,74,4,134,74,4,134,66,129,70, - 66,5,69,66,132,69,58,69,58,5,58,69,58,4,5,58,131,69,58,5, - 58,69,58,6,5,58,3,5,50,9,197,49,130,5,58,134,74,3,199,82, - 132,135,74,134,74,70,66,70,66,4,135,74,131,70,66,6,58,197,49,4, - 132,41,129,197,41,4,197,49,131,198,49,6,50,6,50,9,6,58,164,198, - 49,6,58,195,99,33,133,225,132,34,108,97,116,32,108,65,66,0,58,192, - 74,64,83,64,91,128,91,32,108,96,116,32,116,97,116,160,124,226,132,164, - 124,69,99,5,66,196,49,3,50,3,58,68,58,68,58,68,66,132,66,133, - 74,196,74,196,74,195,74,70,99,184,214,22,255,255,131,254,247,235,165,224, - 124,10,225,132,129,226,132,3,225,132,129,226,132,4,225,132,131,226,132,226, - 132,225,124,4,226,124,129,225,124,12,226,124,19,162,124,217,0,127,255,255, - 127,255,255,127,255,255,127,255,255,81,255,255,131,185,206,203,107,197,74,4, - 7,83,131,199,82,199,82,199,74,3,198,74,5,134,74,3,134,66,129,70, - 66,7,69,66,6,69,58,7,5,58,129,5,50,12,197,49,130,6,58,134, - 74,3,199,82,139,135,74,134,66,70,66,134,66,135,74,135,74,135,66,70, - 66,6,58,197,49,133,41,4,132,41,130,133,41,197,41,3,197,49,130,198, - 49,198,49,3,6,50,3,6,58,159,6,50,6,58,198,49,198,49,4,83, - 162,124,33,133,97,116,33,116,160,124,128,99,0,58,64,58,192,74,128,91, - 192,99,32,108,32,108,32,116,97,116,162,124,226,132,100,116,69,99,198,82, - 69,66,132,74,196,74,197,74,5,83,4,83,3,68,91,133,68,99,132,99, - 66,91,103,124,58,223,22,255,255,131,189,247,169,157,224,124,21,225,132,131, - 226,132,225,124,225,124,17,226,124,18,162,124,228,0,127,255,255,127,255,255, - 127,255,255,127,255,255,52,255,255,130,124,239,190,247,28,255,255,134,125,239, - 175,140,198,74,199,82,7,83,7,83,4,199,82,3,198,74,5,134,74,3, - 134,66,129,70,66,8,69,66,3,69,58,6,5,58,129,5,50,13,197,49, - 144,5,58,6,58,134,74,135,74,135,82,135,74,135,74,70,66,70,66,135, - 74,135,74,135,66,71,66,70,58,6,50,197,41,5,132,41,131,133,41,197, - 41,197,41,3,197,49,4,198,49,130,6,50,6,50,3,198,49,152,69,66, - 35,108,33,133,225,132,97,124,160,116,224,124,128,99,64,91,0,75,64,91, - 128,91,32,108,32,108,33,108,97,116,161,124,162,124,36,116,69,99,5,91, - 69,91,69,91,133,99,3,132,99,129,196,107,3,195,107,133,34,108,34,108, - 192,107,231,140,123,239,22,255,255,131,188,239,168,157,160,124,8,225,132,130, - 226,132,226,132,12,225,132,131,226,132,226,124,225,124,18,226,124,17,162,124, - 226,0,127,255,255,127,255,255,127,255,255,127,255,255,52,255,255,133,172,140, - 41,116,112,157,119,206,189,247,27,255,255,132,180,173,7,83,198,74,7,83, - 3,199,82,129,198,82,4,198,74,6,134,74,130,134,66,70,66,9,69,66, - 129,69,58,5,5,58,129,5,50,15,197,49,145,5,58,6,58,70,66,134, - 74,135,74,135,74,70,66,70,66,71,66,71,74,71,66,71,66,71,58,6, - 58,197,49,133,41,68,41,4,132,41,3,197,41,130,197,49,197,49,9,198, - 49,151,4,83,225,124,33,133,98,124,97,116,224,124,160,116,1,83,0,83, - 32,108,96,108,96,108,33,108,193,107,97,116,162,124,163,124,36,116,133,99, - 132,99,196,107,196,107,195,107,3,35,108,131,34,116,34,116,33,116,4,97, - 116,131,32,108,104,149,188,247,22,255,255,131,122,231,102,149,224,124,9,225, - 132,3,226,132,11,225,132,131,226,132,226,132,225,124,19,226,124,10,162,124, - 129,162,116,5,162,124,242,0,127,255,255,127,255,255,127,255,255,127,255,255, - 52,255,255,135,106,132,68,91,69,91,69,91,137,107,115,165,60,231,26,255, - 255,131,185,206,73,99,134,74,3,199,82,6,198,74,5,134,74,131,134,66, - 70,66,70,66,8,69,66,129,69,58,4,5,58,129,5,50,16,197,49,130, - 5,58,6,58,5,70,66,139,71,66,71,66,71,74,71,66,71,58,6,58, - 198,49,133,41,69,41,68,33,68,33,3,132,41,131,133,41,197,41,197,41, - 3,197,49,131,198,49,6,50,6,50,3,6,58,152,133,74,98,116,33,141, - 162,124,34,116,161,116,224,124,129,99,66,66,67,66,65,91,32,108,160,116, - 34,108,35,108,162,124,163,124,36,116,196,107,35,108,35,108,35,116,98,116, - 98,116,3,97,116,3,96,116,129,96,124,3,160,124,131,96,116,170,165,254, - 255,22,255,255,131,56,223,35,141,224,124,6,225,132,8,226,132,10,225,132, - 3,226,132,129,225,124,10,226,124,129,225,124,7,226,124,9,162,124,131,162, - 116,162,124,162,116,4,162,124,237,0,127,255,255,127,255,255,127,255,255,127, - 255,255,52,255,255,137,171,140,133,99,134,107,70,99,70,91,5,83,72,91, - 50,157,60,231,25,255,255,133,124,239,44,124,133,66,198,74,199,74,5,198, - 74,6,134,74,3,70,66,5,69,66,130,69,58,69,58,5,5,58,17,197, - 49,132,197,57,5,58,6,58,6,58,4,71,66,129,135,66,3,71,66,169, - 6,58,6,50,197,41,133,41,133,41,132,41,132,41,196,41,196,49,196,49, - 4,50,5,50,5,50,69,58,70,58,70,66,134,66,134,66,198,74,198,74, - 6,83,195,107,33,133,33,133,98,116,97,116,160,124,224,124,32,108,131,66, - 196,74,130,99,96,116,33,116,195,107,163,124,227,132,100,124,35,116,98,116, - 98,116,3,97,116,129,96,116,10,160,124,130,96,116,237,173,23,255,255,131, - 55,223,35,133,224,124,6,225,132,10,226,132,10,225,132,131,226,132,226,132, - 225,124,9,226,124,3,225,124,7,226,124,10,162,124,133,162,116,162,124,162, - 116,162,124,162,124,233,0,127,255,255,127,255,255,127,255,255,127,255,255,52, - 255,255,139,236,148,132,99,198,107,134,99,70,99,70,91,6,91,197,74,8, - 91,115,165,190,247,25,255,255,135,176,148,133,66,134,74,199,74,198,74,135, - 74,135,74,6,134,74,4,70,66,130,69,66,69,66,3,69,58,5,5,58, - 17,197,49,129,5,58,5,6,58,145,70,66,71,66,135,66,135,74,135,74, - 135,66,135,66,71,66,70,58,5,58,5,50,5,50,5,58,68,58,69,66, - 133,66,133,74,3,197,74,131,5,83,6,83,6,83,3,70,91,150,133,99, - 196,107,226,132,33,133,161,124,97,124,160,124,224,124,224,124,129,99,131,74, - 67,91,33,108,97,116,35,116,99,124,227,132,163,124,98,116,97,116,97,124, - 161,124,14,160,124,130,160,116,48,190,23,255,255,133,245,214,225,132,224,124, - 225,132,225,132,16,226,132,9,225,132,133,226,132,226,132,226,124,225,124,225, - 124,6,226,124,130,225,124,225,124,10,226,124,9,162,124,5,162,116,219,0, - 127,255,255,127,255,255,127,255,255,127,255,255,52,255,255,140,176,173,196,99, - 197,107,198,107,134,99,70,99,70,91,7,91,198,82,133,74,74,99,246,189, - 25,255,255,131,181,181,134,74,134,74,3,135,74,5,134,74,4,70,66,129, - 69,66,9,5,58,15,197,49,140,5,50,5,58,5,58,6,58,6,58,70, - 58,70,66,70,66,134,66,134,74,198,74,199,82,4,7,83,131,6,83,198, - 74,198,74,3,5,83,131,69,91,69,91,133,91,3,133,99,129,197,99,3, - 197,107,148,37,108,36,108,35,116,161,124,33,133,225,132,160,124,160,124,224, - 124,224,124,97,116,195,82,195,82,33,108,97,116,195,107,35,116,227,132,162, - 124,161,124,19,160,124,129,179,198,23,255,255,131,178,198,225,124,225,124,13, - 226,132,129,225,132,5,226,132,10,225,132,133,226,132,226,132,225,124,226,124, - 225,124,13,226,124,129,225,124,3,226,124,10,162,124,4,162,116,235,0,127, - 255,255,127,255,255,127,255,255,127,255,255,52,255,255,142,116,198,195,107,37, - 108,198,107,198,107,134,99,70,99,70,91,6,91,6,83,198,74,134,74,45, - 124,59,231,24,255,255,131,120,206,200,82,69,66,5,134,74,129,70,74,5, - 70,66,9,5,58,8,197,49,130,5,50,5,50,5,5,58,140,69,58,70, - 66,70,66,134,66,134,74,198,74,198,74,198,82,6,83,6,83,70,91,70, - 91,5,134,99,134,133,99,133,99,197,99,197,107,196,107,196,107,3,36,108, - 132,36,116,36,116,100,116,100,116,3,99,116,134,98,116,161,124,33,133,225, - 132,161,124,160,124,3,224,124,137,130,99,195,82,194,99,160,124,33,116,196, - 107,227,124,226,132,161,124,18,160,124,131,160,116,161,124,245,214,23,255,255, - 131,112,190,224,124,224,132,13,226,132,130,225,132,225,132,7,226,132,8,225, - 132,132,226,132,226,132,225,124,225,124,12,226,124,129,225,124,6,226,124,131, - 162,124,162,124,226,124,9,162,124,1,162,116,221,0,127,255,255,127,255,255, - 127,255,255,127,255,255,52,255,255,143,248,222,35,108,36,116,37,108,197,107, - 197,107,134,99,134,99,70,91,70,91,6,83,6,83,133,74,7,83,115,165, - 24,255,255,131,251,222,139,107,69,58,4,134,74,4,70,66,129,69,58,16, - 5,58,130,69,58,69,58,3,69,66,138,133,66,133,74,133,74,197,74,198, - 82,6,83,5,83,70,91,70,91,69,91,3,133,99,135,197,99,197,107,197, - 107,37,108,37,108,36,108,36,108,3,36,116,129,100,116,4,99,116,132,98, - 116,98,124,162,124,162,124,5,161,124,132,224,132,34,133,225,132,160,124,3, - 224,124,137,33,116,66,99,34,108,162,124,161,124,195,107,163,124,226,132,161, - 124,19,160,124,131,160,116,227,132,55,223,23,255,255,131,45,182,224,124,224, - 132,14,226,132,129,225,132,8,226,132,8,225,132,3,226,132,129,225,124,11, - 226,124,130,225,124,225,124,12,226,124,7,162,124,225,0,127,255,255,127,255, - 255,127,255,255,127,255,255,52,255,255,145,124,239,101,124,100,116,100,116,36, - 116,37,108,197,107,198,107,134,99,134,99,70,99,70,91,6,91,6,83,133, - 74,44,124,251,222,23,255,255,131,125,239,46,124,4,58,7,70,66,129,6, - 58,4,5,58,129,197,57,5,5,58,129,69,58,3,69,66,138,133,66,133, - 74,197,74,198,74,198,82,6,83,6,83,6,91,70,91,69,91,3,133,99, - 129,197,99,3,197,107,131,36,108,36,108,36,116,7,99,116,133,99,124,98, - 124,162,124,161,124,162,124,3,161,124,8,160,124,132,225,132,225,132,225,124, - 160,124,4,224,124,135,33,116,98,124,33,133,34,133,226,132,161,124,225,124, - 20,160,124,131,96,116,37,141,121,231,22,255,255,131,254,255,236,173,224,124, - 16,226,132,129,225,132,9,226,132,7,225,132,3,226,132,130,225,124,225,124, - 9,226,124,4,225,124,4,226,124,129,225,124,7,226,124,6,162,124,229,0, - 127,255,255,127,255,255,127,255,255,127,255,255,53,255,255,134,232,140,99,116, - 100,116,100,116,37,116,37,116,3,197,107,129,134,107,3,134,99,132,70,99, - 5,83,71,99,244,181,23,255,255,131,190,247,176,140,4,58,5,70,66,129, - 70,58,7,5,58,137,69,58,69,66,133,66,134,74,133,74,198,74,198,82, - 5,83,5,83,3,69,91,3,133,99,135,196,107,197,107,196,107,196,107,36, - 108,36,108,35,116,4,99,116,133,98,116,98,116,162,124,161,124,162,124,7, - 161,124,14,160,124,130,96,116,160,124,3,224,124,134,160,124,161,124,99,124, - 227,132,34,133,161,132,22,160,124,131,96,116,38,149,123,239,22,255,255,131, - 189,247,169,165,224,124,10,226,132,3,225,132,4,226,132,4,225,132,3,226, - 132,131,225,132,226,132,226,132,7,225,132,3,226,132,130,226,124,225,124,4, - 226,124,134,225,124,226,124,227,124,226,124,226,124,225,124,7,226,124,129,225, - 124,9,226,124,4,162,124,219,0,127,255,255,127,255,255,127,255,255,127,255, - 255,53,255,255,132,239,173,34,116,100,116,100,116,3,37,116,129,37,108,3, - 197,107,136,198,107,198,107,134,107,134,107,133,99,69,91,238,148,124,239,23, - 255,255,131,115,165,69,66,69,66,3,70,66,132,70,58,5,58,69,58,69, - 58,3,69,66,138,133,74,197,74,198,82,6,83,5,83,69,91,69,91,133, - 99,133,99,132,99,4,196,107,138,35,108,35,108,35,116,35,116,98,116,99, - 116,98,116,97,116,97,116,161,116,9,161,124,19,160,124,140,161,124,97,124, - 160,124,160,124,224,124,224,132,160,124,129,99,161,124,225,132,160,124,32,116, - 21,160,124,131,96,116,105,157,188,247,22,255,255,131,123,239,168,157,224,124, - 9,226,132,6,225,132,14,226,132,7,225,132,3,226,132,136,226,124,225,124, - 226,124,226,124,162,124,225,124,226,124,162,124,7,226,124,130,225,124,225,124, - 12,226,124,3,162,124,250,0,127,255,255,127,255,255,127,255,255,127,255,255, - 36,255,255,130,125,239,180,173,15,255,255,131,247,214,98,116,99,124,3,100, - 116,132,36,116,36,116,37,108,37,108,4,197,107,134,198,107,198,107,134,107, - 68,91,41,116,183,206,23,255,255,131,246,181,134,66,69,66,4,70,66,147, - 134,66,134,74,197,74,197,82,5,83,5,91,70,91,69,91,133,99,132,99, - 196,99,196,107,196,107,36,108,35,108,35,108,35,116,35,116,98,116,3,97, - 116,131,96,116,160,124,161,124,31,160,124,141,224,124,160,116,33,108,160,124, - 224,132,224,124,96,116,193,107,33,116,224,132,96,116,128,99,0,83,20,160, - 124,131,96,108,172,173,254,255,22,255,255,131,122,231,102,149,224,124,6,226, - 132,131,225,132,226,132,226,132,4,225,132,131,33,133,225,132,225,132,8,226, - 132,135,225,132,225,132,226,132,226,132,225,132,226,132,226,132,7,225,132,132, - 226,132,226,132,226,124,225,124,4,226,124,131,161,124,162,124,162,124,7,226, - 124,129,225,124,11,226,124,132,163,124,162,124,162,124,163,124,238,0,127,255, - 255,127,255,255,127,255,255,127,255,255,35,255,255,132,250,214,202,107,6,75, - 124,231,14,255,255,136,124,239,164,124,98,124,99,124,99,124,99,116,100,116, - 100,116,4,36,116,137,37,108,37,108,197,107,197,107,198,107,198,107,133,99, - 133,99,179,181,23,255,255,148,120,206,199,82,133,66,198,74,198,82,198,82, - 6,83,6,91,69,91,69,91,69,99,132,99,132,99,196,107,195,107,35,108, - 35,108,34,116,34,116,98,116,4,97,116,130,96,116,96,116,36,160,124,142, - 224,124,224,124,32,108,32,108,33,108,129,99,65,99,163,124,225,132,96,124, - 128,99,0,83,128,99,224,132,17,160,124,131,96,116,96,116,238,181,23,255, - 255,131,57,223,36,141,224,124,10,226,132,4,225,132,133,33,133,225,132,225, - 132,226,132,226,132,5,225,132,4,226,132,132,225,132,225,132,226,132,226,132, - 7,225,132,3,226,132,137,226,124,225,124,226,124,226,124,162,124,161,124,161, - 124,162,124,227,124,16,226,124,5,162,124,1,163,124,220,0,127,255,255,127, - 255,255,127,255,255,127,255,255,34,255,255,133,118,198,135,91,6,75,6,75, - 184,206,15,255,255,133,40,149,97,116,98,124,98,124,98,116,5,99,116,140, - 100,116,100,116,36,116,36,116,37,116,37,116,37,108,197,107,197,107,132,99, - 237,148,124,239,22,255,255,144,250,214,137,107,4,83,70,91,69,91,69,99, - 133,99,132,99,196,107,195,107,194,107,34,108,34,108,34,116,97,116,97,116, - 4,96,116,42,160,124,140,224,124,224,124,128,91,130,74,128,91,32,116,161, - 124,192,107,96,116,96,116,64,83,96,116,14,160,124,134,96,124,160,124,160, - 124,96,116,96,116,49,190,23,255,255,131,246,214,35,133,224,124,11,226,132, - 8,225,132,134,33,133,33,133,225,132,33,133,225,132,225,132,3,226,132,130, - 225,132,225,132,4,226,132,6,225,132,4,226,132,3,225,124,132,226,124,162, - 124,161,124,162,124,14,226,124,8,162,124,1,163,124,225,0,127,255,255,127, - 255,255,127,255,255,127,255,255,32,255,255,135,254,247,175,173,196,99,70,91, - 71,83,197,66,179,165,15,255,255,132,47,182,96,116,160,124,97,124,4,98, - 116,7,99,116,136,100,116,100,116,36,116,36,116,37,116,196,107,104,124,249, - 222,22,255,255,138,124,239,106,132,131,99,196,107,196,107,194,107,34,108,34, - 116,33,116,32,116,4,96,116,47,160,124,140,224,124,224,124,32,100,64,83, - 128,91,64,91,0,83,64,91,160,124,160,116,192,99,224,124,14,160,124,133, - 96,116,96,124,96,116,161,124,180,206,23,255,255,132,179,206,225,124,224,124, - 225,132,11,226,132,7,225,132,138,33,133,33,133,225,132,225,132,33,133,225, - 132,225,132,226,132,226,132,225,132,6,226,132,6,225,132,140,226,132,226,132, - 225,132,226,132,226,124,225,124,225,124,226,124,162,124,162,124,161,124,162,124, - 11,226,124,5,162,124,134,162,116,162,124,162,124,162,116,163,116,163,116,210, - 0,127,255,255,127,255,255,127,255,255,127,255,255,31,255,255,136,123,239,106, - 157,99,108,37,108,134,91,71,83,198,74,174,132,15,255,255,137,122,231,160, - 124,96,124,160,124,96,124,96,124,97,124,97,124,98,124,6,98,116,5,99, - 116,132,100,116,35,108,36,116,117,198,22,255,255,133,189,247,42,149,192,107, - 33,116,97,116,5,96,116,51,160,124,138,224,124,160,116,192,107,0,83,192, - 99,32,108,192,99,160,124,96,116,32,108,12,160,124,135,96,124,160,124,96, - 124,96,116,96,116,163,124,247,222,23,255,255,132,114,198,225,124,225,124,225, - 132,13,226,132,5,225,132,129,33,133,5,225,132,132,226,132,226,132,225,132, - 225,132,4,226,132,130,225,132,226,132,8,225,132,141,226,132,226,132,225,132, - 226,132,225,124,225,124,226,124,226,124,162,124,161,124,162,124,162,124,163,124, - 8,226,124,4,162,124,8,162,116,187,0,127,255,255,127,255,255,127,255,255, - 127,255,255,30,255,255,138,245,214,36,141,161,124,164,124,37,108,134,99,70, - 83,6,75,137,91,189,247,15,255,255,130,38,149,96,116,10,160,124,134,161, - 124,161,124,162,124,98,124,99,124,99,124,4,99,116,131,34,108,174,165,254, - 255,21,255,255,134,190,247,171,165,32,108,96,116,96,124,96,124,54,160,124, - 137,224,124,160,124,192,99,64,91,128,91,64,91,129,107,225,132,96,116,16, - 160,124,131,96,116,229,140,122,231,23,255,255,132,46,182,161,124,225,124,225, - 132,15,226,132,3,225,132,129,33,133,4,225,132,4,226,132,129,225,132,8, - 226,132,8,225,132,4,226,132,137,225,124,226,124,226,124,162,124,162,124,161, - 124,161,124,162,124,227,124,7,226,124,6,162,124,6,162,116,189,0,127,255, - 255,127,255,255,127,255,255,127,255,255,29,255,255,139,112,190,225,124,225,124, - 227,132,164,124,101,116,198,99,70,91,71,83,198,74,55,198,15,255,255,130, - 47,182,96,116,13,160,124,129,161,124,3,162,124,135,99,124,98,124,98,116, - 99,116,33,108,41,149,124,239,22,255,255,130,237,173,96,116,57,160,124,135, - 224,124,96,116,0,83,0,58,0,58,129,107,33,133,16,160,124,131,96,116, - 39,149,123,239,22,255,255,133,254,255,236,173,160,124,225,132,225,132,17,226, - 132,131,225,132,225,132,33,133,4,225,132,3,226,132,129,225,132,10,226,132, - 8,225,132,140,226,132,225,132,226,132,226,124,225,124,226,124,226,124,162,124, - 161,124,161,124,162,124,162,124,4,226,124,129,225,124,5,226,124,7,162,124, - 130,162,116,162,124,191,0,127,255,255,127,255,255,127,255,255,127,255,255,27, - 255,255,141,188,239,170,165,224,124,225,132,226,132,227,132,164,124,101,116,198, - 99,134,91,71,83,197,74,49,149,15,255,255,130,123,231,161,124,15,160,124, - 3,161,124,135,160,124,161,124,97,124,98,124,32,108,230,132,57,223,22,255, - 255,130,46,182,96,116,57,160,124,133,224,124,160,124,96,108,96,116,224,132, - 16,160,124,131,96,116,105,157,189,247,22,255,255,133,189,247,170,157,160,124, - 226,132,225,132,18,226,132,131,225,132,33,133,33,133,4,225,132,14,226,132, - 5,225,132,130,226,132,226,132,3,225,132,129,226,132,3,225,124,135,226,124, - 162,124,162,124,161,124,161,124,162,124,162,124,4,226,124,129,225,124,6,226, - 124,135,227,124,163,124,163,124,162,124,162,124,163,124,162,124,174,0,127,255, - 255,127,255,255,127,255,255,127,255,255,26,255,255,132,55,223,101,149,224,124, - 34,133,3,226,132,135,164,124,101,116,37,108,134,91,71,83,6,75,203,107, - 16,255,255,130,103,149,96,116,22,160,124,131,96,116,162,124,180,206,22,255, - 255,130,113,190,96,116,58,160,124,130,224,132,224,132,16,160,124,131,96,116, - 237,173,254,247,22,255,255,132,123,239,104,149,160,124,225,132,20,226,132,139, - 33,133,33,133,225,132,225,132,33,133,33,133,225,132,225,132,226,132,226,132, - 225,132,11,226,132,4,225,132,7,226,132,139,226,124,225,124,225,124,226,124, - 162,124,162,124,161,124,161,124,162,124,162,124,227,124,10,226,124,134,227,124, - 226,124,226,124,162,124,163,124,162,124,163,0,127,255,255,127,255,255,127,255, - 255,127,255,255,25,255,255,131,113,198,225,132,224,124,3,34,133,138,226,132, - 226,132,164,124,101,116,37,108,198,99,70,83,71,83,6,75,184,206,15,255, - 255,130,113,190,96,116,23,160,124,131,160,116,160,124,113,190,22,255,255,131, - 114,198,96,116,160,116,73,160,124,130,96,116,48,190,23,255,255,133,122,231, - 101,149,224,124,225,132,225,132,21,226,132,131,225,132,226,132,225,132,3,33, - 133,130,225,132,226,132,3,225,132,10,226,132,5,225,132,4,226,132,142,225, - 132,226,132,226,132,225,124,225,124,226,124,226,124,162,124,162,124,161,124,161, - 124,162,124,162,124,227,124,14,226,124,1,227,124,170,0,127,255,255,127,255, - 255,127,255,255,127,255,255,23,255,255,132,188,239,235,173,224,124,225,132,4, - 34,133,138,226,132,226,132,164,124,164,124,37,108,198,99,134,91,71,83,197, - 74,49,149,15,255,255,131,124,239,162,124,96,116,24,160,124,130,96,116,237, - 173,22,255,255,131,179,206,161,124,96,116,54,160,124,130,224,124,224,124,14, - 160,124,131,160,116,161,124,179,198,23,255,255,131,55,223,36,141,224,124,18, - 226,132,3,225,132,130,226,132,225,132,3,226,132,132,225,132,225,132,33,133, - 225,132,3,226,132,3,225,132,9,226,132,5,225,132,6,226,132,129,225,132, - 3,225,124,131,226,124,162,124,162,124,3,161,124,131,162,124,162,124,163,124, - 14,226,124,183,0,127,255,255,127,255,255,127,255,255,127,255,255,22,255,255, - 132,56,223,101,149,224,124,33,133,5,34,133,138,225,132,226,132,227,124,164, - 124,101,116,198,99,134,91,71,83,6,75,203,107,16,255,255,130,171,165,96, - 116,25,160,124,131,96,116,170,157,189,247,21,255,255,131,245,214,161,124,160, - 116,36,160,124,131,224,124,160,124,160,124,8,224,124,6,160,124,130,224,124, - 224,124,13,160,124,131,96,116,227,132,246,214,23,255,255,131,245,206,226,132, - 225,124,23,226,132,130,225,132,225,132,3,226,132,3,225,132,4,226,132,8, - 225,132,3,226,132,3,225,132,129,226,132,3,225,132,3,226,132,131,225,132, - 226,132,225,132,3,225,124,131,226,124,162,124,162,124,3,161,124,4,162,124, - 11,226,124,1,225,124,174,0,127,255,255,127,255,255,127,255,255,127,255,255, - 21,255,255,131,178,198,226,132,224,124,7,34,133,139,226,132,226,132,227,132, - 164,124,101,116,38,108,134,91,71,83,7,83,7,75,250,214,15,255,255,131, - 246,214,96,116,96,124,25,160,124,131,96,116,39,149,123,239,21,255,255,131, - 245,214,162,124,160,116,24,160,124,22,224,124,6,160,124,132,224,124,160,124, - 224,124,224,124,10,160,124,131,96,116,228,132,57,231,23,255,255,131,178,198, - 225,124,225,124,29,226,132,131,225,132,33,133,225,132,10,226,132,130,225,132, - 225,132,3,226,132,7,225,132,3,226,132,131,225,132,225,132,226,132,3,225, - 124,130,226,124,226,124,3,162,124,4,161,124,130,162,124,162,124,11,226,124, - 189,0,127,255,255,127,255,255,127,255,255,127,255,255,19,255,255,132,189,247, - 236,173,224,124,225,132,9,34,133,138,226,132,227,132,164,124,101,116,37,108, - 198,99,70,91,71,83,197,66,240,148,16,255,255,130,38,149,96,116,26,160, - 124,131,96,116,228,132,57,231,21,255,255,131,246,214,226,132,160,116,19,160, - 124,131,224,124,160,124,160,124,27,224,124,129,160,124,5,224,124,9,160,124, - 131,96,116,39,149,123,239,23,255,255,133,112,190,224,124,225,132,226,132,225, - 132,3,226,132,130,225,132,225,132,22,226,132,4,225,132,11,226,132,132,225, - 132,225,132,226,132,226,132,6,225,132,3,226,132,3,225,132,130,226,132,225, - 132,3,225,124,130,226,124,226,124,6,162,124,3,161,124,5,162,124,133,226, - 124,226,124,225,124,226,124,225,124,187,0,127,255,255,127,255,255,127,255,255, - 127,255,255,18,255,255,131,57,223,102,149,224,124,11,34,133,139,226,132,226, - 132,163,124,164,116,101,108,198,99,134,91,71,83,6,75,137,99,190,247,15, - 255,255,130,113,190,32,108,27,160,124,131,96,116,162,124,247,214,21,255,255, - 131,55,223,226,132,160,116,15,160,124,39,224,124,8,160,124,131,96,116,169, - 157,190,247,22,255,255,139,254,247,236,173,224,124,225,132,226,132,225,132,225, - 132,226,132,226,132,225,132,225,132,23,226,132,3,225,132,130,33,133,225,132, - 11,226,132,131,225,132,226,132,226,132,7,225,132,130,226,132,226,132,5,225, - 132,134,225,124,225,124,226,124,225,124,226,124,226,124,3,162,124,129,163,124, - 3,162,124,5,161,124,131,162,124,162,124,226,124,3,225,124,211,0,127,255, - 255,127,255,255,127,255,255,127,255,255,17,255,255,131,179,198,34,133,224,124, - 12,34,133,139,226,132,226,132,163,124,164,124,101,116,198,99,134,91,71,83, - 7,83,198,74,119,198,15,255,255,132,188,239,163,132,96,116,96,124,3,160, - 124,129,96,124,22,160,124,131,96,116,161,116,181,206,21,255,255,131,56,223, - 226,132,160,116,14,160,124,33,224,124,132,160,124,224,124,160,124,224,124,9, - 160,124,130,96,116,236,173,23,255,255,143,189,247,169,157,224,124,225,132,226, - 132,226,132,225,132,225,132,226,132,225,132,225,132,226,132,226,132,225,132,225, - 132,22,226,132,129,225,132,3,33,133,130,225,132,226,132,4,225,132,7,226, - 132,3,225,132,129,226,132,3,225,132,130,226,132,226,132,4,225,132,130,226, - 132,226,124,4,225,124,132,226,124,226,124,162,124,162,124,3,163,124,3,162, - 124,5,161,124,4,226,124,202,0,127,255,255,127,255,255,127,255,255,127,255, - 255,15,255,255,132,189,247,44,174,224,124,225,132,13,34,133,139,226,132,226, - 132,227,124,164,124,101,116,37,108,134,91,71,83,7,83,198,74,109,124,16, - 255,255,130,237,173,96,108,3,96,116,130,160,124,96,124,23,160,124,131,160, - 116,160,116,114,198,21,255,255,131,56,223,227,132,160,116,14,160,124,25,224, - 124,19,160,124,130,96,116,47,182,23,255,255,143,187,239,103,149,224,124,33, - 133,33,133,34,133,34,133,225,132,225,132,226,132,225,132,226,132,226,132,225, - 132,225,132,3,226,132,133,225,132,225,132,226,132,225,132,225,132,15,226,132, - 130,225,132,33,133,8,225,132,131,226,132,226,132,225,132,3,226,132,4,225, - 132,130,226,132,226,132,8,225,132,130,226,132,226,132,4,225,124,3,226,124, - 11,162,124,4,226,124,1,225,124,195,0,127,255,255,127,255,255,127,255,255, - 127,255,255,14,255,255,132,56,223,102,149,224,124,33,133,14,34,133,140,226, - 132,226,132,227,132,164,124,101,116,37,108,198,99,70,91,7,83,7,75,71, - 83,124,231,15,255,255,129,56,223,5,96,116,129,160,124,3,96,124,22,160, - 124,130,96,116,48,190,21,255,255,131,57,231,227,132,160,116,55,160,124,131, - 160,116,161,124,179,206,23,255,255,131,57,231,36,141,224,124,3,34,133,130, - 33,133,33,133,4,225,132,133,226,132,226,132,225,132,225,132,226,132,4,225, - 132,131,226,132,225,132,225,132,15,226,132,134,225,132,225,132,226,132,225,132, - 33,133,225,132,5,226,132,129,225,132,3,226,132,4,225,132,3,226,132,8, - 225,132,130,226,132,226,132,3,225,124,130,226,124,225,124,3,226,124,8,162, - 124,7,226,124,176,0,127,255,255,127,255,255,127,255,255,127,255,255,13,255, - 255,131,178,198,34,133,224,124,16,34,133,140,226,132,226,132,227,132,164,124, - 164,116,37,108,198,99,134,91,71,83,7,83,5,75,244,181,16,255,255,131, - 105,157,96,116,96,124,3,96,116,4,96,124,22,160,124,130,96,116,237,181, - 21,255,255,131,57,231,227,132,160,116,53,160,124,131,96,116,162,132,246,222, - 23,255,255,131,246,214,35,141,224,124,4,34,133,129,33,133,5,225,132,129, - 226,132,3,225,132,5,226,132,4,225,132,14,226,132,129,225,132,3,226,132, - 129,225,132,9,226,132,4,225,132,3,226,132,9,225,132,131,226,132,226,132, - 225,132,3,225,124,130,226,124,225,124,14,226,124,131,225,124,226,124,226,124, - 202,0,127,255,255,127,255,255,127,255,255,127,255,255,11,255,255,132,189,247, - 235,173,224,124,225,132,17,34,133,141,226,132,226,132,227,132,163,124,164,124, - 101,116,38,108,134,91,70,83,7,83,6,75,41,108,190,247,15,255,255,137, - 246,214,96,116,96,124,96,116,96,124,96,124,96,116,96,124,96,124,24,160, - 124,130,96,116,236,173,21,255,255,131,122,231,227,132,160,116,51,160,124,131, - 96,116,37,141,121,231,23,255,255,132,179,206,226,132,224,124,225,132,4,33, - 133,133,225,132,225,132,226,132,225,132,226,132,7,225,132,5,226,132,133,225, - 132,225,132,226,132,225,132,225,132,17,226,132,130,225,132,225,132,4,226,132, - 6,225,132,129,226,132,9,225,132,3,226,132,130,225,132,225,132,3,225,124, - 131,226,124,225,124,225,124,9,226,124,132,225,124,226,124,226,124,225,124,3, - 226,124,213,0,127,255,255,127,255,255,127,255,255,127,255,255,10,255,255,132, - 56,223,102,149,224,124,33,133,18,34,133,3,226,132,138,163,124,164,124,101, - 116,37,108,198,99,70,83,71,83,7,83,69,83,183,206,15,255,255,132,254, - 255,38,149,96,116,160,124,3,96,124,131,96,116,96,116,96,124,24,160,124, - 131,96,116,170,165,254,255,20,255,255,131,57,231,227,132,160,116,49,160,124, - 131,96,116,104,157,188,239,23,255,255,137,112,190,225,124,225,124,226,132,226, - 132,225,132,33,133,225,132,225,132,5,226,132,131,225,132,225,132,226,132,7, - 225,132,132,226,132,226,132,225,132,225,132,5,226,132,133,225,132,225,132,226, - 132,226,132,225,132,8,226,132,3,225,132,4,226,132,6,225,132,130,226,132, - 226,132,9,225,132,132,226,132,226,132,225,132,225,132,4,225,124,131,226,124, - 226,124,225,124,7,226,124,130,225,124,225,124,7,226,124,218,0,127,255,255, - 127,255,255,127,255,255,127,255,255,9,255,255,131,178,198,34,133,224,124,20, - 34,133,3,226,132,138,227,124,164,124,101,116,37,108,198,99,134,91,71,83, - 7,83,68,83,236,148,16,255,255,130,179,206,96,116,3,160,124,5,96,124, - 130,96,116,96,124,22,160,124,131,96,116,169,157,190,247,20,255,255,131,56, - 223,226,132,160,116,47,160,124,131,96,116,170,165,190,247,23,255,255,131,45, - 174,160,116,225,124,4,226,132,136,225,132,225,132,226,132,225,132,225,132,226, - 132,226,132,225,132,4,34,133,10,225,132,132,226,132,225,132,226,132,226,132, - 3,225,132,133,226,132,225,132,33,133,225,132,225,132,3,226,132,3,225,132, - 5,226,132,7,225,132,4,226,132,129,225,132,3,226,132,3,225,132,132,226, - 132,226,132,225,132,225,132,5,225,124,132,226,124,226,124,225,124,225,124,6, - 226,124,129,225,124,6,226,124,130,226,132,226,132,221,0,127,255,255,127,255, - 255,127,255,255,127,255,255,7,255,255,132,188,239,236,173,224,124,225,132,21, - 34,133,3,226,132,139,227,132,164,124,101,116,37,108,198,99,134,91,71,83, - 70,83,133,91,36,108,58,231,15,255,255,131,189,247,227,132,96,116,3,160, - 124,5,96,124,133,96,116,96,116,96,124,160,124,96,124,19,160,124,131,96, - 116,104,157,189,247,20,255,255,131,56,223,227,132,96,116,44,160,124,131,160, - 116,160,116,46,182,23,255,255,136,189,247,170,165,160,116,225,124,225,124,226, - 124,226,132,226,132,8,225,132,5,34,133,131,33,133,34,133,226,132,9,225, - 132,132,226,132,225,132,225,132,226,132,5,225,132,129,33,133,3,226,132,130, - 225,132,225,132,6,226,132,4,225,132,131,226,132,226,132,225,132,4,226,132, - 3,225,132,6,226,132,129,225,132,6,225,124,129,226,124,3,225,124,5,226, - 124,130,225,124,225,124,6,226,124,130,226,132,226,132,221,0,127,255,255,127, - 255,255,127,255,255,127,255,255,6,255,255,131,55,223,101,149,224,124,22,34, - 133,4,226,132,139,227,132,163,124,164,124,101,116,37,108,134,99,70,83,70, - 83,197,99,193,107,237,173,16,255,255,130,113,190,96,116,4,160,124,133,96, - 124,160,124,96,124,96,116,96,124,5,96,116,129,96,124,18,160,124,131,96, - 116,103,149,188,239,20,255,255,131,56,223,163,132,96,116,42,160,124,131,160, - 116,161,124,178,198,23,255,255,132,123,239,104,149,160,116,226,124,3,225,124, - 131,226,124,226,124,225,124,4,225,132,3,226,132,8,34,133,132,226,132,34, - 133,225,132,226,132,8,225,132,130,226,132,226,132,3,225,132,130,226,132,225, - 132,3,226,132,130,225,132,225,132,5,226,132,4,225,132,132,226,132,226,132, - 225,132,225,132,4,226,132,4,225,132,5,226,132,129,225,132,9,225,124,9, - 226,124,131,225,124,226,124,226,124,3,226,132,1,225,132,217,0,127,255,255, - 127,255,255,127,255,255,127,255,255,5,255,255,131,177,198,34,133,224,124,23, - 34,133,4,226,132,140,227,132,163,124,164,124,101,116,37,108,198,99,134,91, - 70,91,196,99,33,116,162,124,188,239,15,255,255,130,188,247,162,132,5,160, - 124,130,96,124,96,124,8,96,116,129,96,124,18,160,124,131,96,116,38,149, - 123,239,20,255,255,131,55,223,227,132,96,116,40,160,124,131,160,116,227,132, - 245,214,23,255,255,133,57,231,37,141,160,124,226,132,226,132,5,226,124,129, - 225,124,3,225,132,3,226,132,9,34,133,129,226,132,3,34,133,130,226,132, - 226,132,6,225,132,131,33,133,225,132,226,132,4,225,132,3,226,132,129,225, - 132,4,226,132,5,225,132,6,226,132,3,225,132,3,225,124,130,225,132,225, - 132,4,226,132,130,225,132,225,132,8,225,124,5,226,124,129,225,124,5,226, - 124,133,225,132,226,132,226,132,225,132,225,132,193,0,127,255,255,127,255,255, - 127,255,255,127,255,255,3,255,255,132,188,239,170,165,224,124,225,132,24,34, - 133,4,226,132,140,227,132,163,124,164,124,101,116,37,108,198,99,134,91,133, - 91,36,108,97,116,96,116,114,198,16,255,255,130,47,190,96,116,5,160,124, - 129,96,124,10,96,116,129,96,124,17,160,124,131,96,116,37,141,123,239,20, - 255,255,131,247,222,162,124,160,116,38,160,124,131,160,116,37,141,121,231,23, - 255,255,131,246,214,227,132,225,124,7,226,132,129,225,132,4,226,132,130,225, - 132,226,132,12,34,133,6,226,132,8,225,132,130,33,133,33,133,8,226,132, - 5,225,132,8,226,132,129,225,132,5,225,124,3,225,132,132,226,132,226,132, - 225,132,225,132,8,225,124,8,226,124,130,225,124,225,124,3,226,132,131,225, - 132,226,132,225,132,223,0,127,255,255,127,255,255,127,255,255,127,255,255,133, - 255,255,255,255,55,223,100,141,224,124,25,34,133,4,226,132,142,227,132,227, - 132,163,124,164,124,101,116,37,116,37,108,198,99,197,99,35,108,96,124,160, - 124,37,149,190,247,15,255,255,130,188,239,162,132,5,160,124,130,96,124,96, - 124,3,96,116,129,32,116,7,96,116,17,160,124,131,96,116,37,141,123,239, - 20,255,255,131,247,214,162,124,160,116,36,160,124,131,160,116,103,149,187,239, - 23,255,255,134,179,198,225,124,225,124,226,132,225,132,225,132,9,226,132,129, - 225,132,16,34,133,134,226,132,34,133,34,133,33,133,33,133,226,132,7,225, - 132,8,226,132,7,225,132,137,226,132,226,132,225,132,226,132,226,132,225,132, - 226,132,225,132,225,132,4,226,124,4,225,132,131,226,132,226,132,225,132,7, - 225,124,6,226,124,139,225,124,226,124,225,124,226,124,226,132,226,132,225,132, - 225,132,226,132,226,132,225,132,218,0,127,255,255,127,255,255,127,255,255,127, - 255,255,132,255,255,112,190,225,132,225,132,26,34,133,4,226,132,138,227,132, - 227,132,163,124,164,124,101,116,101,116,37,108,197,99,36,108,98,116,3,160, - 124,129,244,214,16,255,255,130,236,173,96,116,5,160,124,129,96,124,4,96, - 116,6,32,116,131,96,116,96,116,96,124,16,160,124,131,96,116,229,140,123, - 239,20,255,255,131,246,214,161,116,160,116,25,160,124,7,224,124,133,160,124, - 160,124,160,116,171,165,190,247,23,255,255,134,113,190,160,116,226,124,226,124, - 226,132,225,132,8,226,132,129,225,132,21,34,133,3,226,132,5,225,132,133, - 33,133,225,132,226,132,226,132,225,132,5,226,132,8,225,132,4,226,132,137, - 225,132,226,132,225,132,225,132,226,132,226,124,226,124,225,124,225,124,4,225, - 132,130,226,132,225,132,7,225,124,5,226,124,133,225,124,225,124,226,124,225, - 124,226,132,7,225,132,230,0,127,255,255,127,255,255,127,255,255,126,255,255, - 132,123,239,168,157,224,124,225,132,27,34,133,3,226,132,3,227,132,136,163, - 124,164,124,101,124,101,116,37,108,37,108,36,108,97,116,3,160,124,130,167, - 157,254,255,15,255,255,130,123,239,225,132,5,160,124,130,96,124,96,124,5, - 96,116,5,32,116,4,96,116,3,96,124,12,160,124,131,96,116,228,140,123, - 239,20,255,255,131,245,214,160,116,160,116,14,160,124,129,224,124,3,160,124, - 130,224,124,160,124,11,224,124,131,160,124,160,116,47,190,23,255,255,131,254, - 247,236,165,160,116,3,226,124,9,226,132,23,34,133,132,226,132,33,133,34, - 133,226,132,4,225,132,133,33,133,225,132,226,132,226,132,225,132,5,226,132, - 7,225,132,4,226,132,136,225,132,226,132,225,132,225,132,226,132,226,132,226, - 124,226,124,5,225,124,132,225,132,225,124,225,132,225,132,5,225,124,6,226, - 124,3,225,124,132,226,132,225,132,225,132,226,132,5,225,132,204,0,127,255, - 255,127,255,255,127,255,255,125,255,255,131,245,214,35,141,224,124,28,34,133, - 3,226,132,3,227,132,142,163,132,163,124,164,124,100,124,101,116,37,108,37, - 108,100,116,96,116,160,124,224,124,224,132,224,124,246,214,16,255,255,130,236, - 173,96,116,6,160,124,129,96,124,5,96,116,6,32,116,4,96,116,3,96, - 124,11,160,124,131,96,116,228,140,122,231,20,255,255,130,180,206,96,116,13, - 160,124,4,224,124,129,160,124,12,224,124,131,160,124,160,124,179,206,23,255, - 255,131,189,247,170,157,160,116,4,226,124,4,226,132,129,225,132,27,34,133, - 133,33,133,33,133,226,132,226,132,33,133,5,225,132,131,226,132,226,132,225, - 132,4,226,132,8,225,132,5,226,132,3,225,132,131,226,132,226,124,226,124, - 15,225,124,5,226,124,3,225,124,130,226,132,225,132,4,226,132,4,225,132, - 208,0,127,255,255,127,255,255,127,255,255,123,255,255,132,189,247,45,182,225, - 132,225,132,29,34,133,130,226,132,226,132,3,227,132,3,163,124,140,164,124, - 100,124,101,116,101,116,100,116,99,116,160,124,160,124,224,132,224,132,224,124, - 233,165,16,255,255,130,187,239,226,132,6,160,124,3,96,124,5,96,116,9, - 32,116,3,96,116,129,96,124,10,160,124,131,96,116,227,132,57,231,20,255, - 255,130,180,206,160,116,11,160,124,15,224,124,133,160,124,224,124,160,116,227, - 132,55,223,23,255,255,133,122,231,39,141,161,116,227,124,227,124,4,226,124, - 131,226,132,226,132,225,132,28,34,133,132,33,133,34,133,34,133,226,132,6, - 225,132,131,226,132,226,132,225,132,3,226,132,10,225,132,3,226,132,131,225, - 132,226,132,226,132,3,226,124,16,225,124,4,226,124,3,225,124,130,225,132, - 225,132,6,226,132,3,225,132,211,0,127,255,255,127,255,255,127,255,255,122, - 255,255,132,57,223,103,149,224,124,225,132,29,34,133,3,226,132,142,227,132, - 227,132,163,132,163,124,163,124,164,124,164,124,100,124,101,116,101,116,100,116, - 162,116,160,124,160,124,4,224,132,129,56,223,16,255,255,130,45,182,96,116, - 7,160,124,132,96,124,96,124,96,116,96,124,5,96,116,7,32,116,3,96, - 116,130,96,124,96,124,9,160,124,131,96,116,227,132,122,231,20,255,255,130, - 113,198,160,116,8,160,124,17,224,124,132,160,124,160,116,37,149,122,231,23, - 255,255,133,55,223,36,133,160,116,226,124,227,124,4,226,124,129,225,124,3, - 226,132,31,34,133,131,33,133,33,133,226,132,4,225,132,131,226,132,226,132, - 225,132,3,226,132,10,225,132,4,226,132,131,226,124,226,132,226,124,18,225, - 124,3,226,124,132,225,124,225,124,225,132,225,132,8,226,132,3,225,132,207, - 0,127,255,255,127,255,255,127,255,255,121,255,255,131,178,198,34,133,224,124, - 30,34,133,3,226,132,3,227,132,130,163,124,163,124,3,164,124,135,100,124, - 101,124,100,116,163,116,161,124,160,124,160,124,3,224,132,130,160,124,234,173, - 16,255,255,130,188,239,226,132,9,160,124,3,96,124,13,96,116,5,96,124, - 8,160,124,131,96,116,228,140,123,231,20,255,255,130,112,190,160,116,7,160, - 124,7,224,124,130,160,124,160,124,7,224,124,132,160,124,160,116,104,157,188, - 247,23,255,255,131,180,206,226,124,225,124,7,226,124,132,225,124,225,124,226, - 132,226,132,31,34,133,131,33,133,34,133,226,132,6,225,132,3,226,132,10, - 225,132,5,226,132,129,226,124,3,225,124,132,226,124,225,124,225,124,226,124, - 13,225,124,133,226,124,226,124,225,124,225,124,225,132,3,226,132,129,225,132, - 6,226,132,3,225,132,225,0,127,255,255,127,255,255,127,255,255,119,255,255, - 132,188,239,236,173,224,124,225,132,31,34,133,3,226,132,132,227,132,227,132, - 163,132,163,124,4,164,124,135,100,124,101,124,100,124,163,124,160,124,160,124, - 224,124,4,224,132,130,225,132,57,231,16,255,255,130,45,182,160,116,11,160, - 124,3,96,124,130,160,124,160,124,9,96,124,129,160,124,4,96,124,131,160, - 124,96,124,96,124,5,160,124,131,96,116,228,140,122,231,20,255,255,132,46, - 182,160,116,160,124,224,124,3,160,124,134,224,124,224,124,160,124,224,124,160, - 124,224,124,4,160,124,6,224,124,132,160,124,160,116,237,173,190,247,23,255, - 255,131,113,190,225,124,225,124,9,226,124,130,225,124,225,132,3,226,132,31, - 34,133,129,226,132,4,225,132,4,226,132,8,225,132,8,226,132,134,225,124, - 225,124,226,124,226,124,225,124,225,124,5,226,124,13,225,124,129,225,132,4, - 226,132,129,225,132,6,226,132,3,225,132,231,0,127,255,255,127,255,255,127, - 255,255,118,255,255,131,55,223,101,149,224,124,33,34,133,3,226,132,133,227, - 132,227,132,163,124,164,124,164,124,3,100,124,134,164,124,100,124,164,124,162, - 124,160,124,160,124,5,224,132,130,160,124,234,173,16,255,255,130,124,239,226, - 132,28,160,124,129,96,124,4,160,124,130,96,124,96,124,4,160,124,131,96, - 116,229,140,123,239,20,255,255,130,237,173,160,116,4,224,124,5,160,124,130, - 224,124,224,124,10,160,124,129,113,198,23,255,255,133,254,255,45,182,160,124, - 226,124,226,132,7,226,124,135,227,124,227,124,226,124,226,124,226,132,226,132, - 225,132,29,34,133,134,33,133,33,133,226,132,225,132,225,132,33,133,5,226, - 132,8,225,132,130,226,132,225,132,5,226,132,136,225,124,225,124,226,124,225, - 124,226,124,226,124,225,124,162,124,4,226,124,5,225,124,129,226,124,4,225, - 124,131,224,124,225,124,225,132,3,226,132,4,225,132,6,226,132,130,225,132, - 225,132,225,0,127,255,255,127,255,255,127,255,255,117,255,255,131,112,190,225, - 132,224,124,34,34,133,3,226,132,133,227,132,227,132,163,124,164,124,164,124, - 4,100,124,132,164,124,163,124,161,124,160,124,7,224,132,130,225,132,122,231, - 16,255,255,130,46,190,160,116,3,224,124,132,160,124,224,124,160,124,224,124, - 32,160,124,131,96,116,229,140,123,239,20,255,255,130,235,165,160,116,4,224, - 124,4,160,124,3,224,124,6,160,124,131,160,116,226,124,244,206,23,255,255, - 135,189,247,170,165,160,124,225,132,225,132,226,132,226,132,6,226,124,136,227, - 124,163,124,226,124,226,124,225,124,225,132,226,132,226,132,18,34,133,129,33, - 133,9,34,133,130,33,133,33,133,4,225,132,5,226,132,4,225,132,133,226, - 132,225,132,225,132,226,132,225,132,6,226,132,130,225,124,225,124,3,226,124, - 131,162,124,161,124,162,124,3,226,124,11,225,124,130,225,132,225,132,4,226, - 132,5,225,132,7,226,132,225,0,127,255,255,127,255,255,127,255,255,115,255, - 255,132,122,231,169,165,224,124,225,132,34,34,133,4,226,132,132,227,132,163, - 132,163,124,164,124,5,100,124,132,164,124,163,124,160,124,160,124,7,224,132, - 130,160,124,235,173,16,255,255,131,188,247,35,141,160,124,9,224,124,30,160, - 124,131,96,116,38,149,124,239,19,255,255,133,190,247,169,157,160,116,224,124, - 224,124,5,160,124,3,224,124,5,160,124,131,160,116,36,141,56,223,23,255, - 255,137,123,231,104,149,224,124,226,132,226,132,225,132,225,132,226,132,226,132, - 6,226,124,135,163,124,163,124,226,124,225,124,225,124,226,132,226,132,13,34, - 133,7,33,133,5,34,133,5,33,133,3,225,132,4,226,132,6,225,132,133, - 226,132,226,132,225,132,226,132,225,132,5,226,132,137,226,124,225,124,225,124, - 226,124,162,124,161,124,162,124,161,124,162,124,3,226,124,10,225,124,130,225, - 132,225,132,5,226,132,6,225,132,6,226,132,216,0,127,255,255,127,255,255, - 127,255,255,114,255,255,131,244,206,35,133,224,124,36,34,133,4,226,132,133, - 227,132,163,132,163,124,164,124,164,124,4,100,124,131,163,124,162,124,160,124, - 9,224,132,130,225,132,122,231,16,255,255,130,113,198,160,124,5,224,132,6, - 224,124,29,160,124,131,96,116,38,149,188,239,19,255,255,131,189,247,103,157, - 160,116,13,160,124,131,160,116,103,149,188,239,23,255,255,131,56,223,36,141, - 224,124,4,226,132,132,225,132,225,132,226,132,226,132,6,226,124,135,163,124, - 163,124,226,124,225,124,225,124,225,132,226,132,11,34,133,140,33,133,33,133, - 225,132,33,133,225,132,225,132,226,132,225,132,225,132,226,132,33,133,226,132, - 4,33,133,3,225,132,5,226,132,6,225,132,11,226,132,131,225,124,225,124, - 226,124,6,162,124,3,226,124,8,225,124,130,224,124,225,132,8,226,132,5, - 225,132,5,226,132,1,225,132,222,0,127,255,255,127,255,255,127,255,255,112, - 255,255,132,189,247,45,182,224,124,225,132,37,34,133,3,226,132,134,227,132, - 227,132,163,124,163,124,164,124,164,124,4,100,124,131,163,124,162,124,160,132, - 9,224,132,130,160,124,234,173,16,255,255,131,189,247,36,141,224,124,5,224, - 132,6,224,124,29,160,124,131,96,116,103,149,189,247,19,255,255,131,188,247, - 38,149,160,116,11,160,124,131,160,116,171,165,190,247,23,255,255,131,245,206, - 226,132,225,124,6,226,132,3,225,132,130,226,132,226,132,5,226,124,135,163, - 124,163,124,226,124,225,124,225,132,226,132,226,132,10,34,133,129,33,133,9, - 225,132,129,33,133,4,225,132,131,33,133,225,132,225,132,6,226,132,6,225, - 132,10,226,132,132,226,124,225,124,225,124,226,124,3,161,124,130,162,124,162, - 124,3,226,124,8,225,124,130,225,132,225,132,3,226,132,4,225,132,3,226, - 132,3,225,132,6,226,132,1,225,132,225,0,127,255,255,127,255,255,127,255, - 255,111,255,255,132,56,223,102,149,224,124,33,133,37,34,133,3,226,132,3, - 227,132,131,163,132,163,124,164,124,5,100,124,132,163,124,162,124,160,132,160, - 132,9,224,132,130,225,132,122,231,16,255,255,130,179,206,224,124,8,224,132, - 3,224,124,130,160,124,224,124,28,160,124,131,160,116,103,149,190,247,19,255, - 255,131,188,239,36,141,160,116,9,160,124,130,160,116,48,190,24,255,255,131, - 112,190,225,124,225,124,13,226,132,4,226,124,136,162,124,163,124,163,124,226, - 124,225,124,225,124,226,132,226,132,9,34,133,129,33,133,3,225,132,130,33, - 133,225,132,4,226,132,3,225,132,131,226,132,225,132,225,132,7,226,132,6, - 225,132,10,226,132,129,226,124,3,225,124,129,162,124,3,161,124,132,162,124, - 162,124,226,124,226,124,7,225,124,130,224,124,225,132,4,226,132,3,225,132, - 129,33,133,3,226,132,5,225,132,5,226,132,1,225,132,220,0,127,255,255, - 127,255,255,127,255,255,110,255,255,131,112,190,34,133,224,124,39,34,133,3, - 226,132,3,227,132,131,163,132,163,124,164,124,5,100,124,132,99,124,161,124, - 160,124,160,132,9,224,132,130,160,124,233,165,16,255,255,131,254,247,102,149, - 224,124,8,224,132,6,224,124,27,160,124,131,160,116,168,157,254,247,19,255, - 255,130,122,231,227,132,7,160,124,131,160,116,161,124,180,206,24,255,255,131, - 237,173,224,124,225,132,15,226,132,4,226,124,3,163,124,133,226,124,225,124, - 225,132,226,132,226,132,3,34,133,133,33,133,34,133,226,132,33,133,33,133, - 3,225,132,130,33,133,225,132,18,226,132,8,225,132,8,226,132,135,225,124, - 226,124,225,124,226,124,162,124,162,124,161,124,3,162,124,130,226,124,226,124, - 6,225,124,130,224,124,225,132,3,226,132,4,225,132,131,33,133,33,133,225, - 132,3,226,132,4,225,132,4,226,132,130,225,132,225,132,232,0,127,255,255, - 127,255,255,127,255,255,108,255,255,132,188,239,169,165,224,124,225,132,39,34, - 133,4,226,132,134,227,132,227,132,163,132,163,124,164,124,164,124,3,100,124, - 134,101,124,100,124,100,124,161,124,160,124,160,132,11,224,132,129,122,231,16, - 255,255,130,245,214,224,124,7,224,132,11,224,124,129,160,124,8,224,124,11, - 160,124,129,161,124,3,224,124,130,160,116,170,165,20,255,255,130,56,223,161, - 124,5,160,124,131,160,116,227,132,56,223,23,255,255,131,189,247,169,157,224, - 124,17,226,132,5,226,124,3,163,124,139,225,124,225,124,225,132,226,132,226, - 132,34,133,34,133,226,132,33,133,226,132,226,132,5,225,132,131,226,132,226, - 132,225,132,5,226,132,17,225,132,9,226,132,133,226,124,225,124,226,124,225, - 124,226,124,6,162,124,129,226,124,7,225,124,129,225,132,3,226,132,130,225, - 132,33,133,3,225,132,131,33,133,225,132,225,132,3,226,132,130,225,132,225, - 132,7,226,132,1,225,132,221,0,127,255,255,127,255,255,127,255,255,107,255, - 255,131,179,206,35,141,224,124,41,34,133,4,226,132,143,227,132,227,132,163, - 132,163,124,164,124,100,124,100,124,101,124,101,124,37,124,37,124,100,124,161, - 124,160,124,160,132,10,224,132,130,160,124,234,165,17,255,255,130,169,165,224, - 124,4,224,132,130,224,124,224,124,3,160,124,18,224,124,4,160,124,11,224, - 124,130,160,124,235,173,20,255,255,130,246,214,161,124,3,160,124,131,96,116, - 104,157,123,239,23,255,255,131,122,231,102,149,224,124,20,226,132,4,226,124, - 3,163,124,133,225,124,225,124,225,132,226,132,226,132,10,225,132,5,226,132, - 6,225,132,129,226,132,14,225,132,4,226,132,132,225,132,225,132,226,132,226, - 132,4,225,124,129,226,124,6,162,124,4,226,124,3,225,124,131,225,132,226, - 132,226,132,4,225,132,130,33,133,33,133,5,225,132,130,226,132,226,132,4, - 225,132,5,226,132,1,225,132,233,0,127,255,255,127,255,255,127,255,255,105, - 255,255,132,189,247,172,165,160,124,224,132,42,34,133,4,226,132,136,227,132, - 227,132,163,124,164,124,164,124,100,124,101,124,101,124,3,37,124,132,99,124, - 97,124,160,124,160,132,8,224,132,4,160,124,129,56,223,16,255,255,130,56, - 223,224,124,4,224,132,22,224,124,6,225,124,130,161,124,161,124,4,225,124, - 5,225,132,130,224,124,237,181,20,255,255,134,180,206,160,124,160,124,96,116, - 236,173,190,247,23,255,255,131,246,214,36,141,225,124,13,226,132,129,225,132, - 4,226,132,132,225,132,225,132,226,132,226,132,4,226,124,133,163,124,163,124, - 226,124,225,124,225,124,3,226,132,9,225,132,5,226,132,5,225,132,6,226, - 132,10,225,132,4,226,132,132,225,132,226,132,226,132,226,124,3,225,124,3, - 226,124,5,162,124,3,226,124,3,225,124,131,225,132,226,132,226,132,6,225, - 132,129,33,133,5,225,132,4,226,132,130,225,132,225,132,5,226,132,1,225, - 132,237,0,127,255,255,127,255,255,127,255,255,104,255,255,133,247,214,165,132, - 192,107,224,124,33,133,42,34,133,3,226,132,144,227,132,227,132,163,132,164, - 124,164,124,100,124,100,124,101,124,37,124,37,124,37,116,37,124,99,124,97, - 124,160,124,160,132,5,224,132,131,160,124,224,124,225,132,4,160,124,129,168, - 157,17,255,255,131,235,173,224,124,225,132,4,224,132,130,224,124,224,132,13, - 224,124,129,225,124,9,160,124,6,161,124,7,162,124,130,96,116,47,182,20, - 255,255,131,113,198,161,124,48,190,24,255,255,131,178,198,225,132,224,124,13, - 226,132,8,225,132,130,226,132,226,132,4,226,124,3,163,124,131,226,124,225, - 124,225,124,3,226,132,8,225,132,5,226,132,6,225,132,6,226,132,9,225, - 132,4,226,132,135,225,132,226,132,226,132,225,132,225,124,226,124,225,124,3, - 226,124,131,162,124,162,124,161,124,3,162,124,135,226,124,225,124,224,124,225, - 132,225,132,226,132,226,132,10,225,132,13,226,132,130,225,132,225,132,253,0, - 127,255,255,127,255,255,127,255,255,102,255,255,135,254,255,240,181,32,108,192, - 107,32,116,224,132,33,133,41,34,133,3,226,132,151,227,132,227,132,163,132, - 163,124,164,124,100,124,100,124,101,124,37,124,37,124,37,116,197,115,37,116, - 35,124,97,124,160,124,160,132,160,124,161,132,161,124,161,124,97,124,160,124, - 3,161,124,3,160,124,130,96,116,247,214,16,255,255,130,123,239,225,132,7, - 224,132,14,224,124,129,160,124,3,224,124,8,160,124,131,161,124,161,124,160, - 124,7,161,124,131,160,124,96,116,48,190,20,255,255,129,122,231,24,255,255, - 131,46,182,160,124,225,124,8,225,132,130,226,132,226,132,13,225,132,130,226, - 132,226,132,4,226,124,3,163,124,133,226,124,225,124,225,124,226,132,226,132, - 6,225,132,130,33,133,225,132,5,226,132,8,225,132,6,226,132,8,225,132, - 5,226,132,129,226,124,4,225,124,4,226,124,139,162,124,161,124,161,124,162, - 124,162,124,225,124,224,124,225,132,225,132,226,132,226,132,9,225,132,130,33, - 133,225,132,13,226,132,130,225,132,225,132,4,1,127,255,255,127,255,255,127, - 255,255,101,255,255,130,122,231,104,157,3,32,108,131,32,116,224,132,33,133, - 41,34,133,141,225,132,226,132,226,132,227,132,227,132,163,124,164,124,164,124, - 100,124,101,124,37,124,37,124,37,116,3,197,115,139,35,124,96,124,160,132, - 160,124,192,107,34,116,129,99,128,99,192,99,32,108,32,108,3,96,116,133, - 160,124,160,124,96,116,103,149,254,255,16,255,255,130,111,190,224,124,6,224, - 132,20,224,124,10,160,124,132,161,124,161,124,160,124,160,124,3,161,124,131, - 160,124,160,116,114,198,42,255,255,131,189,247,235,165,160,124,3,226,132,10, - 225,132,7,226,132,5,225,132,130,226,132,226,132,5,226,124,3,163,124,130, - 226,124,225,124,3,226,132,5,225,132,10,226,132,7,225,132,4,226,132,7, - 225,132,130,226,132,225,132,4,226,132,133,226,124,225,124,225,124,226,124,225, - 124,3,226,124,138,162,124,162,124,161,124,161,124,162,124,224,124,224,124,225, - 132,226,132,226,132,5,225,132,129,33,133,3,225,132,132,33,133,225,132,33, - 133,225,132,13,226,132,130,225,132,225,132,239,0,127,255,255,127,255,255,127, - 255,255,100,255,255,137,180,206,227,132,96,116,96,116,32,108,32,108,32,116, - 224,132,33,133,40,34,133,5,226,132,147,227,132,163,124,164,124,100,124,101, - 124,37,124,37,116,197,115,197,115,198,115,134,115,197,115,35,124,96,124,160, - 124,160,132,32,116,192,107,192,107,3,128,99,132,192,99,192,99,192,107,32, - 108,3,96,116,130,96,108,181,206,16,255,255,131,189,247,35,141,224,124,3, - 224,132,20,224,124,10,160,124,4,161,124,130,160,124,160,124,5,161,124,130, - 160,116,180,206,40,255,255,131,123,239,104,149,160,124,11,226,132,129,225,132, - 17,226,132,4,226,124,129,162,124,3,163,124,130,225,124,225,124,3,226,132, - 4,225,132,4,226,132,129,225,132,6,226,132,8,225,132,3,226,132,5,225, - 132,8,226,132,4,225,124,4,226,124,136,162,124,161,124,225,124,224,124,224, - 124,225,132,226,132,226,132,6,225,132,130,33,133,33,133,3,225,132,129,33, - 133,4,225,132,10,226,132,3,225,132,39,1,56,255,255,140,254,255,124,239, - 249,222,119,206,244,197,177,181,47,165,237,156,172,148,171,148,106,140,106,140, - 5,105,140,137,170,148,171,148,236,156,46,173,176,181,243,197,118,214,249,222, - 124,239,127,255,255,127,255,255,127,255,255,16,255,255,138,188,247,171,165,160, - 116,160,124,160,124,96,116,96,116,32,108,32,116,224,132,42,34,133,129,225, - 132,3,226,132,148,163,132,163,124,164,124,100,124,37,124,37,116,198,115,198, - 115,134,115,134,115,70,107,197,115,35,124,96,124,160,124,160,132,224,132,32, - 133,225,132,160,124,3,224,132,130,224,124,161,124,4,162,124,131,161,116,38, - 141,190,247,16,255,255,132,178,198,160,124,224,132,224,132,15,224,124,130,160, - 124,224,124,19,160,124,130,161,124,160,124,3,161,124,132,160,124,160,124,161, - 124,245,214,38,255,255,131,56,223,36,141,224,124,31,226,132,4,226,124,134, - 162,124,163,124,163,124,226,124,225,124,225,124,3,226,132,129,225,132,4,226, - 132,4,225,132,6,226,132,7,225,132,11,226,132,133,225,132,226,132,226,124, - 226,132,226,132,4,225,124,4,226,124,132,162,124,225,124,224,124,224,124,3, - 226,132,9,225,132,4,33,133,130,225,132,225,132,3,226,132,129,225,132,8, - 226,132,3,225,132,12,1,51,255,255,135,190,247,58,231,118,206,177,181,237, - 156,106,140,200,131,8,199,123,130,199,131,199,131,11,39,132,136,38,132,38, - 132,103,140,170,156,109,173,51,198,248,222,189,247,127,255,255,127,255,255,127, - 255,255,10,255,255,131,246,214,228,140,160,116,3,160,124,133,96,116,96,116, - 32,108,32,116,224,132,41,34,133,129,225,132,3,226,132,150,227,132,163,132, - 164,124,100,124,101,124,37,124,197,115,198,115,134,115,134,115,70,107,70,107, - 133,115,35,116,96,124,160,124,160,132,224,132,224,132,161,124,67,99,193,99, - 4,96,116,135,160,116,161,124,161,124,160,124,160,124,160,116,114,198,17,255, - 255,131,101,149,224,124,224,132,12,224,124,31,160,124,131,160,116,161,124,247, - 222,36,255,255,131,244,206,226,132,225,124,16,226,132,3,225,132,13,226,132, - 5,226,124,3,163,124,131,226,124,225,124,225,132,4,226,132,7,225,132,6, - 226,132,7,225,132,10,226,132,129,225,132,5,226,132,5,225,124,3,162,124, - 131,225,124,224,124,225,132,3,226,132,6,225,132,129,33,133,3,225,132,129, - 33,133,6,225,132,12,226,132,130,225,132,225,132,49,1,47,255,255,135,190, - 247,249,222,243,189,237,156,41,132,134,115,198,123,12,199,123,130,199,131,199, - 131,11,39,132,130,38,132,38,132,4,38,140,133,37,140,103,148,44,173,51, - 198,58,231,127,255,255,127,255,255,127,255,255,5,255,255,141,254,247,47,182, - 96,116,160,116,160,124,161,124,160,124,160,124,96,116,96,116,32,116,32,116, - 224,132,41,34,133,166,226,132,225,132,226,132,227,132,227,132,163,132,164,124, - 101,124,37,124,37,116,198,115,134,115,134,115,70,107,6,107,70,107,133,115, - 195,115,96,124,160,124,160,132,224,132,224,132,224,124,194,99,130,99,194,107, - 33,108,32,116,160,124,225,132,33,133,162,124,33,116,160,124,160,116,35,141, - 188,239,16,255,255,132,246,214,224,124,224,132,160,124,5,224,124,131,160,124, - 160,124,224,124,35,160,124,131,96,116,163,132,122,231,34,255,255,131,112,190, - 224,124,225,124,16,226,132,131,225,132,226,132,225,132,14,226,132,6,226,124, - 133,163,124,163,124,226,124,225,124,225,124,9,226,132,130,225,132,225,132,7, - 226,132,7,225,132,14,226,132,5,225,124,136,226,124,226,124,225,124,224,124, - 224,124,225,132,226,132,226,132,12,225,132,129,33,133,3,225,132,134,226,132, - 226,132,225,132,226,132,226,132,225,132,9,226,132,130,225,124,161,116,35,1, - 44,255,255,132,124,239,53,206,46,165,40,132,5,134,115,129,198,123,12,199, - 123,130,199,131,199,131,11,39,132,130,38,132,38,132,4,38,140,130,37,140, - 37,140,3,101,140,131,233,164,50,198,58,239,127,255,255,127,255,255,127,255, - 255,132,255,255,57,223,38,141,96,116,3,160,124,132,161,124,160,124,160,124, - 96,116,3,32,116,130,224,132,33,133,40,34,133,3,226,132,138,227,132,227, - 132,163,124,164,124,101,124,37,124,198,115,198,115,134,115,70,107,3,6,107, - 133,70,107,195,115,96,124,160,124,160,132,3,224,132,142,131,99,67,91,194, - 99,33,108,32,108,160,124,33,133,33,133,163,124,33,116,96,116,160,124,160, - 124,47,190,17,255,255,131,169,165,160,124,160,124,5,224,124,30,160,124,129, - 160,116,8,160,124,131,96,116,228,132,123,239,31,255,255,132,190,247,171,165, - 160,124,225,124,15,226,132,3,225,132,16,226,132,6,226,124,3,163,124,131, - 162,124,225,124,225,124,19,226,132,7,225,132,5,226,132,130,225,132,225,132, - 5,226,132,140,225,124,225,124,226,124,225,124,225,124,226,124,225,124,224,124, - 225,124,225,132,226,132,226,132,20,225,132,7,226,132,135,225,132,225,124,161, - 124,161,116,98,108,194,99,195,99,63,1,41,255,255,132,123,239,52,198,171, - 148,198,123,3,133,115,5,134,115,129,198,123,12,199,123,130,199,131,199,131, - 11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140,3,101,140,3, - 100,140,131,43,173,181,214,254,255,127,255,255,127,255,255,124,255,255,131,113, - 198,97,124,96,116,4,160,124,132,161,124,160,124,96,124,96,116,3,32,116, - 130,224,132,33,133,40,34,133,4,226,132,137,227,132,163,124,100,124,101,124, - 37,116,198,115,134,115,70,107,70,107,3,7,107,133,70,107,195,115,96,124, - 160,124,160,132,3,224,132,143,131,99,2,83,193,107,33,108,97,116,224,132, - 33,133,33,133,163,124,34,116,96,116,160,124,160,124,227,132,123,239,16,255, - 255,130,57,231,161,132,32,160,124,133,160,116,160,124,160,124,96,116,96,116, - 4,160,124,136,160,116,160,124,160,124,96,116,160,124,96,116,229,140,188,239, - 29,255,255,133,123,239,104,149,160,124,225,132,226,132,3,225,132,13,226,132, - 129,225,132,17,226,132,6,226,124,4,163,124,131,226,124,225,124,225,124,19, - 226,132,6,225,132,5,226,132,129,225,132,4,226,132,141,225,132,226,132,225, - 124,225,124,226,124,226,124,225,124,225,124,224,124,224,124,225,132,226,132,226, - 132,19,225,132,6,226,132,138,225,132,225,124,225,124,161,116,162,116,162,124, - 99,116,195,99,195,107,35,108,68,1,38,255,255,133,190,247,118,206,236,156, - 133,115,132,115,5,133,115,5,134,115,129,198,123,12,199,123,130,199,131,199, - 131,11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140,3,101,140, - 4,100,140,132,99,140,231,156,114,206,189,247,127,255,255,127,255,255,120,255, - 255,130,122,231,105,157,3,96,116,6,160,124,135,96,116,96,116,32,116,33, - 108,32,116,224,132,33,133,39,34,133,4,226,132,138,227,132,163,132,164,124, - 100,124,101,124,37,116,198,115,134,115,70,107,71,107,3,7,107,133,70,107, - 195,115,96,124,160,124,160,132,3,224,132,143,131,99,2,83,193,107,96,116, - 96,116,224,132,225,132,33,133,163,132,34,116,96,116,160,116,161,124,96,116, - 171,165,17,255,255,130,46,182,96,116,30,160,124,129,96,116,4,160,124,131, - 160,116,160,124,96,124,9,96,116,130,39,149,189,247,27,255,255,134,55,223, - 36,141,160,124,225,132,226,132,225,132,3,226,132,131,226,124,226,132,225,132, - 28,226,132,5,226,124,137,162,124,163,124,162,124,163,124,163,124,162,124,225, - 124,225,124,226,124,19,226,132,5,225,132,11,226,132,6,225,124,133,224,124, - 225,132,225,132,226,132,226,132,10,225,132,3,33,133,5,225,132,129,33,133, - 3,226,132,142,225,132,225,124,225,124,224,124,161,124,161,116,162,116,163,116, - 163,124,99,116,195,99,195,99,35,108,35,108,91,1,36,255,255,135,59,231, - 176,181,199,123,68,107,68,107,68,115,132,115,5,133,115,5,134,115,129,198, - 123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4,38,140, - 130,37,140,37,140,3,101,140,4,100,140,3,99,140,131,166,156,114,206,190, - 247,127,255,255,127,255,255,117,255,255,135,181,206,164,124,160,116,160,124,96, - 124,96,116,96,124,4,160,124,3,96,116,133,32,116,33,108,32,116,224,132, - 33,133,39,34,133,129,225,132,3,226,132,146,227,132,163,132,164,124,100,124, - 37,124,198,115,198,115,134,115,70,107,6,107,7,107,199,106,7,107,133,115, - 34,116,96,124,160,124,160,132,3,224,132,144,131,99,2,83,193,107,96,116, - 96,116,225,132,225,132,33,133,163,132,34,116,96,116,96,116,161,124,161,124, - 97,116,247,222,16,255,255,130,189,247,228,140,35,160,124,12,96,116,131,96, - 108,105,157,189,247,25,255,255,131,180,206,226,132,225,124,3,226,132,131,226, - 124,226,132,226,132,3,226,124,130,226,132,225,132,27,226,132,6,226,124,137, - 163,124,163,124,162,124,163,124,163,124,162,124,225,124,225,124,226,124,19,226, - 132,4,225,132,9,226,132,129,225,132,3,225,124,136,226,124,225,124,224,124, - 225,124,225,132,225,132,226,132,226,132,12,225,132,133,33,133,225,132,225,132, - 33,133,225,132,3,226,132,142,225,132,225,124,225,124,161,124,162,124,162,124, - 163,124,163,124,163,116,163,116,163,124,99,116,131,99,195,107,3,35,108,94, - 1,34,255,255,137,248,222,236,156,132,115,67,107,67,107,68,107,68,107,68, - 115,132,115,5,133,115,5,134,115,129,198,123,12,199,123,130,199,131,199,131, - 11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140,3,101,140,4, - 100,140,3,99,140,132,98,140,98,140,230,164,181,222,127,255,255,127,255,255, - 114,255,255,137,189,247,174,165,35,116,98,116,160,124,160,124,96,124,96,116, - 96,124,3,160,124,137,160,116,160,116,96,116,96,116,32,116,33,108,32,116, - 224,132,33,133,38,34,133,130,226,132,225,132,3,226,132,146,227,132,163,132, - 164,124,100,124,37,124,197,115,198,115,134,107,70,107,6,107,7,107,199,106, - 6,107,133,115,33,124,96,124,160,124,160,132,3,224,132,133,195,107,194,74, - 193,99,33,108,96,116,3,225,132,136,226,132,34,116,33,116,96,116,161,124, - 162,124,96,116,40,149,17,255,255,130,179,206,160,116,33,160,124,130,160,116, - 160,124,11,96,116,131,96,108,163,132,123,239,24,255,255,131,47,182,160,124, - 225,124,6,226,132,129,226,124,5,226,132,129,225,132,24,226,132,8,226,124, - 137,163,124,163,124,162,124,163,124,163,124,163,116,162,124,225,124,225,124,10, - 226,132,129,225,132,8,226,132,3,225,132,10,226,132,3,225,124,129,226,124, - 3,225,124,131,225,132,226,132,226,132,10,225,132,129,33,133,5,225,132,3, - 226,132,129,225,132,3,225,124,129,162,124,3,163,124,4,163,116,132,163,124, - 99,116,131,99,195,99,4,35,108,124,1,32,255,255,132,183,214,170,148,66, - 107,66,107,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134, - 115,129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132, - 4,38,140,130,37,140,37,140,3,101,140,4,100,140,3,99,140,134,98,140, - 98,140,98,148,97,148,106,181,123,239,127,255,255,127,255,255,111,255,255,137, - 246,214,232,140,195,115,100,124,98,124,160,124,160,124,96,124,96,116,4,160, - 124,137,96,116,96,116,160,116,96,116,96,116,33,108,33,116,160,132,33,133, - 38,34,133,130,33,133,225,132,3,226,132,146,227,132,163,124,164,124,100,124, - 37,124,197,115,134,115,70,107,70,107,6,107,199,106,199,106,70,107,196,115, - 33,124,96,124,160,124,160,132,3,224,132,145,194,107,194,74,193,99,192,107, - 96,116,33,133,225,132,225,132,226,132,35,116,33,116,96,116,161,124,162,124, - 96,124,32,116,181,206,17,255,255,129,105,157,6,160,124,130,224,124,224,124, - 27,160,124,130,96,124,96,124,8,96,116,131,96,108,105,157,124,239,23,255, - 255,132,188,239,235,165,160,116,225,124,37,226,132,9,226,124,130,163,124,162, - 124,3,163,124,133,163,116,163,116,162,124,225,124,225,124,9,226,132,130,225, - 132,225,132,7,226,132,4,225,132,131,226,132,225,132,225,132,4,226,132,139, - 226,124,225,132,226,132,225,124,226,124,225,124,224,124,225,132,225,132,226,132, - 226,132,12,225,132,131,33,133,226,132,226,132,3,225,132,3,225,124,132,162, - 124,162,116,163,124,163,124,6,163,116,137,163,124,99,108,131,91,195,99,35, - 108,35,108,99,108,99,116,163,124,127,1,30,255,255,130,249,222,170,148,4, - 66,107,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134,115, - 129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4, - 38,140,130,37,140,37,140,3,101,140,4,100,140,3,99,140,135,98,140,98, - 140,98,148,97,148,97,148,162,148,115,214,127,255,255,127,255,255,108,255,255, - 135,254,247,46,182,225,124,99,124,99,124,163,124,98,124,3,160,124,130,96, - 116,96,124,3,160,124,137,161,124,160,124,160,124,96,124,96,116,33,108,193, - 107,160,124,33,133,38,34,133,5,226,132,145,227,132,163,124,164,124,100,124, - 37,116,198,115,134,115,70,107,6,107,7,107,199,106,199,106,70,107,195,115, - 32,124,96,124,160,132,4,224,132,146,34,108,194,74,193,99,32,108,160,116, - 33,133,225,132,225,132,226,132,195,115,34,108,96,116,161,124,162,124,97,124, - 32,116,228,132,254,247,16,255,255,130,56,223,161,124,3,160,124,5,224,124, - 22,160,124,130,96,124,96,124,3,160,124,131,96,124,160,124,96,124,6,96, - 116,129,237,173,25,255,255,130,171,165,160,116,3,226,132,129,226,124,32,226, - 132,12,226,124,3,162,124,129,162,116,3,163,116,132,162,116,161,124,225,124, - 226,124,8,226,132,130,225,132,225,132,6,226,132,4,225,132,3,226,132,130, - 225,132,226,124,4,226,132,129,225,132,3,225,124,134,224,124,225,132,225,132, - 226,132,225,132,33,133,10,225,132,130,226,132,226,132,3,225,132,3,225,124, - 133,162,124,162,124,163,124,162,116,162,116,7,163,116,135,163,124,99,108,195, - 99,35,108,99,116,163,124,226,124,3,226,132,166,1,28,255,255,132,124,239, - 45,165,65,107,65,107,4,66,107,3,67,107,132,68,107,68,107,68,115,132, - 115,5,133,115,5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39, - 132,130,38,132,38,132,4,38,140,130,37,140,37,140,3,101,140,4,100,140, - 3,99,140,137,98,140,98,140,98,148,97,148,97,148,96,148,96,148,171,181, - 189,247,127,255,255,127,255,255,105,255,255,136,56,223,103,157,160,124,225,132, - 163,124,161,132,161,124,98,124,3,160,124,130,96,116,96,124,3,160,124,137, - 161,124,161,124,160,124,96,124,96,116,33,116,193,107,160,124,33,133,38,34, - 133,4,226,132,146,227,132,163,132,164,124,164,124,101,124,37,116,197,115,134, - 115,71,107,7,107,7,107,199,106,7,107,133,115,194,115,96,124,160,124,160, - 132,4,224,132,146,34,116,130,74,194,99,193,107,160,124,33,133,225,132,225, - 132,226,132,195,115,194,107,97,116,161,124,162,124,97,124,96,116,32,108,48, - 182,17,255,255,131,237,181,160,116,160,124,6,224,132,129,224,124,19,160,124, - 132,96,124,160,124,96,124,96,124,6,160,124,134,96,124,96,124,160,124,96, - 116,161,124,114,198,26,255,255,133,55,223,227,132,225,124,226,132,226,132,3, - 226,124,130,226,132,226,132,4,226,124,132,226,132,226,132,226,124,226,124,19, - 226,132,13,226,124,131,162,124,162,124,163,124,5,163,116,131,162,116,161,124, - 225,124,6,226,132,130,225,132,225,132,8,226,132,3,225,132,3,226,132,129, - 225,132,4,226,132,130,225,124,226,124,3,225,124,133,224,132,225,132,226,132, - 226,132,225,132,3,33,133,5,225,132,3,226,132,130,225,132,225,132,3,225, - 124,134,162,124,162,124,163,124,162,124,162,124,162,116,9,163,116,132,162,124, - 162,124,162,116,226,124,5,226,132,130,226,124,226,124,188,1,27,255,255,130, - 117,206,132,123,3,65,107,4,66,107,3,67,107,132,68,107,68,107,68,115, - 132,115,5,133,115,5,134,115,156,198,123,199,123,199,123,40,132,107,140,237, - 156,112,173,178,181,52,198,118,206,184,214,249,222,250,222,58,231,250,222,249, - 222,183,214,118,206,52,198,242,189,112,173,45,165,171,148,105,140,39,132,39, - 132,38,132,38,132,4,38,140,130,37,140,37,140,3,101,140,4,100,140,3, - 99,140,133,98,140,98,140,98,148,97,148,97,148,3,96,148,130,229,164,122, - 239,127,255,255,127,255,255,102,255,255,143,254,255,113,190,225,132,224,124,225, - 132,225,132,226,132,163,124,163,124,99,124,160,124,224,124,160,124,96,116,96, - 124,3,160,124,137,161,124,161,124,160,124,96,124,96,116,33,116,193,107,160, - 124,33,133,37,34,133,130,226,132,225,132,3,226,132,145,227,132,163,132,163, - 124,100,124,101,124,37,116,198,115,134,115,71,107,7,107,7,107,199,106,6, - 107,133,115,33,116,96,124,160,124,5,224,132,147,34,116,195,74,193,107,193, - 107,160,124,33,133,225,132,225,132,226,132,195,107,194,107,97,116,161,124,162, - 124,97,124,96,116,32,116,98,116,124,239,16,255,255,131,188,239,228,140,160, - 124,5,224,132,16,160,124,4,96,124,133,160,124,96,124,160,124,160,124,96, - 124,6,160,124,133,96,124,96,124,96,116,228,132,247,222,28,255,255,132,245, - 214,225,124,225,124,226,132,15,226,124,6,226,132,129,226,124,8,226,132,8, - 226,124,129,225,124,6,226,124,131,162,124,162,124,163,124,5,163,116,132,162, - 116,161,116,224,124,225,124,6,226,132,129,225,132,8,226,132,3,225,132,6, - 226,132,6,225,124,132,225,132,225,132,226,132,226,132,6,225,132,3,226,132, - 3,225,132,3,225,124,133,162,124,162,124,163,124,162,124,162,124,7,163,116, - 3,162,116,131,162,124,226,124,226,124,9,226,132,130,226,124,226,124,159,1, - 25,255,255,132,189,247,44,165,1,107,1,107,3,65,107,4,66,107,3,67, - 107,132,68,107,68,107,68,115,132,115,5,133,115,3,134,115,134,41,140,237, - 156,178,189,119,214,58,231,189,247,19,255,255,139,189,247,59,239,248,222,51, - 198,111,181,235,156,103,140,38,140,38,140,37,140,37,140,3,101,140,4,100, - 140,3,99,140,133,98,140,98,140,98,148,97,148,97,148,4,96,148,130,162, - 156,246,222,127,255,255,127,255,255,100,255,255,144,122,231,168,157,224,124,225, - 132,226,132,225,132,225,132,226,132,101,124,100,124,100,124,160,124,224,124,160, - 124,96,116,96,116,3,160,124,3,161,124,134,97,116,96,116,33,116,194,107, - 160,124,33,133,37,34,133,130,226,132,225,132,3,226,132,145,227,132,163,124, - 164,124,100,124,37,124,198,115,198,115,134,107,71,107,7,107,199,106,199,106, - 6,107,132,115,32,124,96,124,160,132,5,224,132,134,98,116,131,74,129,99, - 33,108,160,124,33,133,3,225,132,138,196,107,194,107,96,116,161,124,98,124, - 97,116,32,116,32,116,192,107,172,165,17,255,255,134,179,206,160,116,224,124, - 224,132,224,124,224,124,19,160,124,4,96,124,131,160,124,160,124,96,124,6, - 160,124,132,96,116,96,116,40,149,124,239,30,255,255,132,114,198,160,124,225, - 124,226,132,15,226,124,130,226,132,226,124,9,226,132,18,226,124,131,162,124, - 163,124,163,124,6,163,116,132,162,116,161,116,225,124,225,124,13,226,132,3, - 225,132,4,226,132,3,226,124,5,225,124,132,225,132,225,132,226,132,226,132, - 5,225,132,135,226,132,226,132,225,132,225,132,224,124,224,124,225,124,3,162, - 124,8,163,116,138,162,116,163,116,162,124,161,124,161,124,225,124,226,132,226, - 132,225,132,225,132,10,226,132,130,226,124,226,124,149,1,24,255,255,133,58, - 231,38,132,0,99,1,107,1,107,3,65,107,4,66,107,3,67,107,132,68, - 107,68,107,68,115,132,115,4,133,115,133,105,140,47,165,117,206,59,231,254, - 255,30,255,255,133,124,239,247,222,241,189,43,165,102,140,3,101,140,4,100, - 140,3,99,140,133,98,140,98,140,98,148,97,148,97,148,5,96,148,130,97, - 148,180,214,127,255,255,127,255,255,98,255,255,145,115,198,98,124,160,124,33, - 133,225,132,225,132,226,132,225,132,226,132,101,124,36,124,99,124,160,124,224, - 124,160,124,96,116,96,116,3,160,124,4,161,124,133,96,116,33,116,194,107, - 96,124,33,133,37,34,133,129,225,132,4,226,132,145,227,132,163,124,164,124, - 100,124,37,124,198,115,134,115,70,107,71,107,7,107,199,106,199,106,70,107, - 195,115,32,124,96,124,160,132,5,224,132,134,98,116,195,74,130,99,194,107, - 160,124,33,133,3,225,132,139,35,116,193,107,96,116,162,124,98,124,97,116, - 32,116,32,116,32,108,192,107,248,222,16,255,255,131,254,255,103,149,160,124, - 3,224,132,129,224,124,18,160,124,4,96,124,6,160,124,134,96,124,160,124, - 96,116,96,116,172,173,254,247,32,255,255,131,46,182,160,116,226,132,21,226, - 124,132,226,132,226,124,226,132,226,132,20,226,124,130,162,124,163,124,5,163, - 116,133,99,116,99,116,162,116,160,124,225,124,13,226,132,3,225,132,144,226, - 132,226,132,225,132,226,132,226,124,225,124,225,124,226,124,226,124,225,124,225, - 124,225,132,225,132,226,132,225,132,225,132,3,226,132,3,225,132,134,224,124, - 225,124,225,124,162,124,162,124,162,116,8,163,116,134,162,116,162,116,161,124, - 225,124,225,124,225,132,4,226,132,5,225,132,6,226,132,4,226,124,131,1, - 23,255,255,134,183,214,131,115,0,99,0,99,1,107,1,107,3,65,107,4, - 66,107,3,67,107,137,68,107,68,107,68,115,132,115,133,115,170,148,178,189, - 250,222,254,255,38,255,255,132,124,239,117,214,109,173,102,148,4,100,140,3, - 99,140,133,98,140,98,140,98,148,97,148,97,148,7,96,148,129,114,214,127, - 255,255,127,255,255,95,255,255,135,123,231,41,149,192,107,32,116,224,132,33, - 133,34,133,3,225,132,132,227,132,101,124,36,124,163,124,3,160,124,130,96, - 116,96,116,4,160,124,3,161,124,133,96,116,97,116,33,108,96,124,33,133, - 36,34,133,130,226,132,225,132,4,226,132,145,227,132,163,124,164,124,101,124, - 37,124,198,115,134,115,70,107,7,107,7,107,199,106,7,107,69,107,195,115, - 32,124,160,124,160,132,5,224,132,134,161,124,4,91,130,99,194,107,160,124, - 34,133,3,225,132,139,35,116,193,107,96,116,162,124,98,124,97,116,32,116, - 32,116,32,108,192,107,231,140,17,255,255,134,57,231,161,124,224,124,224,132, - 224,132,224,124,18,160,124,5,96,124,131,160,124,96,124,96,124,3,160,124, - 131,96,116,97,124,114,198,35,255,255,130,235,165,160,124,30,226,124,133,225, - 124,226,124,226,124,225,124,225,124,10,226,124,130,163,124,163,124,5,163,116, - 3,99,116,131,161,116,224,124,225,124,6,226,132,9,225,132,3,226,132,129, - 225,132,5,225,124,130,225,132,225,132,5,226,132,3,225,132,138,224,124,225, - 124,226,124,162,124,163,124,163,124,162,116,162,116,163,116,99,116,3,163,116, - 134,162,116,162,116,161,124,225,124,225,124,225,132,8,226,132,6,225,132,6, - 226,132,3,226,124,162,1,22,255,255,130,182,214,66,107,3,0,99,130,1, - 107,1,107,3,65,107,4,66,107,3,67,107,133,68,107,68,107,40,132,177, - 181,58,231,16,255,255,134,190,247,124,239,58,231,249,222,183,214,117,206,3, - 52,198,135,53,198,118,206,183,214,249,222,59,231,189,247,254,255,13,255,255, - 133,188,247,117,214,43,173,100,140,100,140,3,99,140,133,98,140,98,140,98, - 148,97,148,97,148,8,96,148,129,114,206,127,255,255,127,255,255,93,255,255, - 136,116,198,99,116,192,99,33,108,97,116,160,124,225,132,34,133,3,225,132, - 132,226,132,100,124,36,124,162,124,3,160,124,130,96,116,96,116,4,160,124, - 3,161,124,133,96,124,97,116,193,107,96,124,32,133,37,34,133,129,225,132, - 4,226,132,145,227,132,163,124,164,124,101,124,37,116,198,115,134,115,70,107, - 7,107,7,107,199,106,7,107,133,115,194,115,96,124,160,124,160,132,5,224, - 132,134,161,124,4,91,130,99,194,107,161,124,34,133,3,225,132,140,35,116, - 194,107,96,116,162,124,98,124,97,116,32,116,32,116,32,108,32,108,192,99, - 115,198,17,255,255,132,46,182,160,124,224,132,224,132,17,160,124,10,96,124, - 133,160,124,160,124,96,116,163,132,247,222,36,255,255,131,189,247,102,149,161, - 124,28,226,124,134,225,124,226,124,226,124,225,124,226,124,225,124,10,226,124, - 132,163,124,162,124,162,116,162,116,3,163,116,3,99,116,132,163,116,161,116, - 224,124,225,124,4,226,132,9,225,132,3,226,132,135,226,124,225,124,225,124, - 226,124,225,124,224,124,225,124,4,226,132,3,225,132,131,224,124,225,124,225, - 124,4,162,124,129,163,124,3,163,116,136,99,116,163,116,162,116,161,124,225, - 124,225,124,225,132,225,132,11,226,132,6,225,132,6,226,132,131,226,124,226, - 132,226,132,180,1,21,255,255,130,184,214,65,107,4,0,99,130,1,107,1, - 107,3,65,107,4,66,107,134,67,107,67,107,68,107,236,156,183,214,254,255, - 12,255,255,136,124,239,249,222,53,198,178,181,46,165,171,148,106,140,40,132, - 4,199,123,130,199,131,199,131,6,39,132,135,104,140,170,148,45,165,176,181, - 52,206,249,222,124,239,11,255,255,138,58,231,239,189,165,148,99,140,99,140, - 98,140,98,140,98,148,97,148,97,148,9,96,148,129,114,214,127,255,255,127, - 255,255,90,255,255,150,189,239,107,157,192,99,192,107,32,108,32,108,32,116, - 160,124,224,132,33,133,225,132,226,132,225,132,227,132,100,124,36,124,163,124, - 161,124,224,124,160,124,96,116,96,116,4,160,124,3,161,124,133,96,116,96, - 116,194,107,96,124,225,132,36,34,133,130,33,133,225,132,4,226,132,145,227, - 132,163,124,164,124,100,124,37,116,198,115,134,115,70,107,7,107,199,106,199, - 106,6,107,133,115,34,116,96,124,160,124,160,132,5,224,132,134,161,124,3, - 91,130,99,193,107,161,124,34,133,3,225,132,141,35,116,193,107,96,116,162, - 124,98,124,97,116,32,116,32,116,32,108,32,108,192,107,99,116,188,239,16, - 255,255,133,189,247,35,141,160,124,224,132,160,132,16,160,124,9,96,124,133, - 160,124,160,124,96,116,39,149,123,239,38,255,255,131,123,231,228,132,225,124, - 11,226,124,130,225,124,225,124,3,226,124,130,225,124,225,124,4,226,124,133, - 225,124,226,124,226,124,225,124,225,124,16,226,124,131,163,124,162,124,162,124, - 4,163,116,4,99,116,132,162,116,160,124,225,124,226,124,3,226,132,5,225, - 132,8,226,132,3,225,124,132,224,124,225,132,226,132,226,132,4,224,124,130, - 225,124,226,124,7,162,124,139,163,124,162,116,162,116,161,116,161,124,224,124, - 225,124,225,132,226,132,226,132,225,132,13,226,132,5,225,132,9,226,132,149, - 1,20,255,255,130,59,231,67,107,5,0,99,130,1,107,1,107,3,65,107, - 4,66,107,131,132,115,46,165,58,231,10,255,255,134,190,247,250,222,52,198, - 47,165,107,148,200,123,11,199,123,130,199,131,199,131,11,39,132,134,38,132, - 104,140,235,156,176,181,182,214,124,239,9,255,255,136,188,247,50,198,166,156, - 98,140,98,140,98,148,97,148,97,148,10,96,148,129,181,222,127,255,255,127, - 255,255,88,255,255,131,181,206,164,124,192,99,4,32,108,145,33,108,96,116, - 224,132,33,133,33,133,226,132,226,132,227,132,100,124,99,124,163,124,161,124, - 224,124,160,124,96,124,96,116,96,124,3,160,124,3,161,124,133,96,116,96, - 116,193,107,32,116,224,132,36,34,133,130,225,132,225,132,4,226,132,144,227, - 132,163,124,100,124,101,124,37,116,198,115,134,115,71,107,7,107,199,106,199, - 106,6,107,133,115,33,124,96,124,160,124,6,224,132,134,161,124,67,91,130, - 99,193,107,160,124,34,133,3,225,132,134,99,116,33,108,96,116,162,124,98, - 124,97,116,3,32,116,132,32,108,32,108,192,99,174,173,17,255,255,131,180, - 206,160,124,224,132,16,160,124,131,96,124,160,124,160,124,7,96,124,132,96, - 116,96,116,237,173,190,247,40,255,255,131,56,223,226,124,225,124,10,226,124, - 129,225,124,9,226,124,129,225,124,3,226,124,4,225,124,14,226,124,131,162, - 124,163,124,163,124,4,163,116,5,99,116,132,162,116,161,124,225,124,226,124, - 3,226,132,4,225,132,8,226,132,138,226,124,225,124,225,124,225,132,226,132, - 226,132,226,124,225,124,225,124,226,124,3,225,124,130,161,124,161,124,8,225, - 124,3,225,132,133,226,132,225,132,225,132,33,133,225,132,13,226,132,5,225, - 132,9,226,132,135,1,19,255,255,130,254,255,39,132,6,0,99,130,1,107, - 1,107,3,65,107,133,66,107,66,107,67,107,46,165,59,231,9,255,255,132, - 59,231,53,198,46,165,41,132,3,134,115,129,198,123,12,199,123,130,199,131, - 199,131,11,39,132,130,38,132,38,132,3,38,140,132,102,140,235,164,50,198, - 57,231,8,255,255,134,189,247,49,198,164,148,98,148,97,148,97,148,10,96, - 148,130,161,148,57,231,127,255,255,127,255,255,85,255,255,130,189,247,172,165, - 7,32,108,140,33,108,96,116,224,132,33,133,225,132,226,132,226,132,227,132, - 100,124,99,124,163,124,161,124,3,160,124,130,96,116,96,124,3,160,124,3, - 161,124,133,96,116,96,116,32,108,32,124,224,132,35,34,133,130,33,133,225, - 132,5,226,132,144,163,132,164,124,100,124,37,124,197,115,134,115,70,107,7, - 107,7,107,199,106,199,106,70,107,196,115,32,124,96,124,160,132,6,224,132, - 134,160,124,131,99,130,99,194,99,96,116,33,133,3,225,132,134,99,116,193, - 107,96,116,162,124,162,124,97,116,3,32,116,3,32,108,130,33,108,57,223, - 17,255,255,129,168,157,19,160,124,130,96,124,96,116,5,96,124,131,96,116, - 97,124,114,198,43,255,255,130,179,198,161,124,11,226,124,131,225,124,226,124, - 226,124,3,225,124,131,226,124,226,124,225,124,5,226,124,129,225,124,17,226, - 124,130,163,124,163,124,6,163,116,4,99,116,132,162,116,225,124,225,124,226, - 124,3,226,132,130,225,132,225,132,5,226,132,131,225,132,226,132,226,132,4, - 225,132,130,226,132,226,132,3,226,124,130,226,132,226,132,11,225,132,130,226, - 132,226,132,8,225,132,13,226,132,5,225,132,9,226,132,160,1,19,255,255, - 129,111,173,7,0,99,130,1,107,1,107,3,65,107,131,66,107,171,148,249, - 222,8,255,255,133,59,231,242,189,171,148,134,115,133,115,5,134,115,129,198, - 123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4,38,140, - 134,37,140,37,140,101,140,233,156,241,197,58,231,7,255,255,132,124,247,237, - 189,97,148,97,148,11,96,148,130,228,164,189,247,127,255,255,127,255,255,83, - 255,255,142,182,206,165,132,192,99,33,108,33,108,32,108,32,108,32,116,32, - 108,32,116,32,116,96,124,224,132,33,133,3,226,132,133,163,132,100,124,163, - 124,163,124,98,124,3,160,124,130,96,124,96,124,3,160,124,136,162,124,161, - 124,161,124,96,124,96,116,32,116,32,116,224,132,35,34,133,130,33,133,225, - 132,5,226,132,144,163,132,163,124,100,124,37,124,198,115,134,115,70,107,7, - 107,7,107,199,106,199,106,70,107,196,115,32,124,96,124,160,132,6,224,132, - 134,161,124,131,99,130,99,194,99,97,116,33,133,3,225,132,134,99,124,193, - 107,96,116,162,124,162,124,97,116,3,32,116,3,32,108,131,192,99,41,149, - 254,255,16,255,255,130,122,231,226,132,9,160,124,130,96,124,96,124,5,160, - 124,130,96,124,160,124,6,96,124,131,96,116,228,132,246,222,24,255,255,130, - 246,214,56,223,19,255,255,130,47,182,160,116,10,226,124,129,225,124,31,226, - 124,3,163,124,7,163,116,134,99,116,99,116,163,116,161,116,225,124,226,124, - 3,226,132,3,225,132,3,226,132,129,225,132,3,226,132,3,225,132,138,226, - 132,226,132,226,124,226,124,225,124,225,124,225,132,226,132,33,133,34,133,6, - 226,132,8,225,132,133,33,133,225,132,225,132,226,132,225,132,14,226,132,5, - 225,132,4,226,132,3,225,132,1,225,124,234,1,18,255,255,130,59,231,1, - 99,7,0,99,134,1,107,1,107,65,107,65,107,197,123,117,206,7,255,255, - 131,189,247,52,198,171,148,5,133,115,5,134,115,129,198,123,12,199,123,130, - 199,131,199,131,11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140, - 3,101,140,132,100,140,42,165,116,206,189,247,6,255,255,130,56,231,39,165, - 12,96,148,129,170,181,10,255,255,130,176,181,170,148,35,171,148,130,170,148, - 183,214,5,255,255,130,52,198,170,148,4,171,148,130,236,156,189,247,8,255, - 255,130,52,198,170,148,4,171,148,129,45,165,71,255,255,130,111,173,170,148, - 3,171,148,130,170,148,178,189,127,255,255,53,255,255,132,189,247,174,173,192, - 107,192,107,4,32,108,144,32,116,32,108,32,108,32,116,96,116,96,124,224, - 132,226,132,226,132,225,132,226,132,163,124,100,124,163,124,100,116,98,124,3, - 160,124,130,96,124,96,124,3,160,124,137,162,124,162,124,161,124,96,124,96, - 116,32,116,32,116,224,132,33,133,34,34,133,130,33,133,225,132,5,226,132, - 144,163,132,164,124,100,124,37,124,198,115,134,115,70,107,7,107,7,107,199, - 106,199,106,70,107,196,115,32,124,96,124,160,132,6,224,132,134,225,132,131, - 99,129,99,194,107,97,116,33,133,3,225,132,134,163,124,193,107,96,116,161, - 124,98,124,97,124,3,32,116,3,32,108,131,33,108,192,99,116,198,17,255, - 255,129,112,190,8,160,124,3,96,124,130,160,124,160,124,3,96,124,129,160, - 124,5,96,124,132,96,116,32,116,105,157,123,239,24,255,255,132,178,198,225, - 124,36,133,123,239,19,255,255,130,236,165,160,124,27,226,124,130,225,124,225, - 124,12,226,124,3,163,124,8,163,116,136,99,116,99,116,162,116,161,124,225, - 124,226,124,226,132,226,132,3,225,132,3,226,132,130,225,132,226,132,4,225, - 132,137,226,132,226,132,225,124,225,124,162,124,224,124,225,132,34,133,34,133, - 5,33,133,134,225,132,226,132,225,132,225,132,226,132,226,132,5,225,132,130, - 33,133,225,132,16,226,132,7,225,132,129,226,132,4,225,132,130,224,124,226, - 132,204,1,18,255,255,129,236,156,8,0,99,133,1,107,1,107,65,107,110, - 173,189,247,6,255,255,133,58,231,111,173,198,123,68,115,132,115,5,133,115, - 5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132, - 38,132,4,38,140,130,37,140,37,140,3,101,140,3,100,140,131,166,148,239, - 189,123,239,5,255,255,130,254,255,48,198,12,96,148,129,180,222,9,255,255, - 129,39,132,37,192,98,129,242,189,5,255,255,129,237,164,6,192,98,129,124, - 239,8,255,255,129,45,165,5,192,98,130,67,107,254,255,70,255,255,129,198, - 123,5,192,98,129,106,148,127,255,255,52,255,255,134,247,214,166,132,192,99, - 32,108,32,116,33,116,4,32,108,143,32,116,32,108,32,108,32,116,96,124, - 224,132,225,132,226,132,225,132,225,132,163,124,100,124,100,124,37,116,97,116, - 4,160,124,129,96,124,3,160,124,3,161,124,134,96,124,96,116,32,116,32, - 116,224,132,33,133,33,34,133,131,33,133,225,132,225,132,4,226,132,137,227, - 132,163,124,164,124,101,124,37,124,198,115,134,115,70,107,7,107,3,199,106, - 133,70,107,195,115,32,124,96,124,160,124,7,224,132,133,195,107,193,107,194, - 107,97,116,34,133,3,225,132,134,162,124,194,107,96,116,161,124,162,124,98, - 116,4,32,116,134,32,108,32,108,33,108,192,107,165,124,189,247,16,255,255, - 130,254,255,38,149,6,160,124,14,96,124,131,96,116,96,116,237,181,24,255, - 255,135,254,255,46,182,160,124,226,124,225,124,104,149,189,247,18,255,255,131, - 190,247,103,149,160,124,7,226,124,3,225,124,30,226,124,4,163,124,8,163, - 116,133,99,116,163,116,162,116,161,124,225,124,3,226,132,132,225,132,225,132, - 226,132,226,132,5,225,132,3,226,132,135,225,124,225,124,162,124,225,124,224, - 132,226,132,226,132,5,33,133,133,34,133,226,132,226,132,33,133,33,133,9, - 225,132,16,226,132,6,225,132,129,226,132,4,225,132,131,224,124,35,133,246, - 214,239,1,17,255,255,130,124,239,1,99,8,0,99,131,1,107,196,123,182, - 214,6,255,255,130,248,222,236,156,3,68,107,130,68,115,132,115,5,133,115, - 5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132, - 38,132,4,38,140,130,37,140,37,140,3,101,140,4,100,140,132,99,140,100, - 148,173,181,58,231,5,255,255,130,247,230,228,164,10,96,148,130,228,164,189, - 247,8,255,255,129,104,140,37,192,98,129,243,189,5,255,255,129,46,165,5, - 192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254, - 255,50,255,255,6,189,247,14,255,255,129,39,132,5,192,98,129,171,148,127, - 255,255,50,255,255,136,190,247,239,181,192,107,192,99,32,108,32,116,33,116, - 33,108,7,32,108,141,33,116,96,116,224,132,225,132,226,132,226,132,225,132, - 227,132,100,124,100,124,37,108,161,124,224,124,3,160,124,129,96,124,3,160, - 124,3,161,124,134,96,124,96,116,96,116,32,116,224,132,33,133,32,34,133, - 132,33,133,33,133,225,132,225,132,5,226,132,136,163,124,164,124,101,124,37, - 116,198,115,134,115,70,107,6,107,3,199,106,133,70,107,196,115,32,124,96, - 124,160,132,7,224,132,133,194,107,193,99,193,107,97,116,33,133,3,225,132, - 134,162,124,33,108,96,116,161,124,162,124,98,116,4,32,116,134,32,108,32, - 108,33,108,33,108,192,99,174,173,17,255,255,130,246,214,161,124,4,160,124, - 130,96,124,160,124,4,96,124,129,160,124,7,96,124,131,96,116,162,124,115, - 198,24,255,255,131,188,239,169,157,160,124,3,226,132,131,160,124,171,165,254, - 247,18,255,255,131,122,231,36,133,225,124,6,226,124,130,225,124,225,124,31, - 226,124,134,162,124,162,124,163,124,163,124,163,116,162,116,7,163,116,137,99, - 116,163,116,161,116,225,124,226,124,226,132,226,132,225,132,225,132,3,226,132, - 3,225,132,3,226,132,135,225,124,225,124,163,124,162,124,224,124,225,132,226, - 132,6,33,133,132,226,132,227,132,33,133,33,133,6,225,132,130,33,133,225, - 132,18,226,132,10,225,132,132,224,124,36,141,56,223,255,255,236,1,17,255, - 255,130,178,189,192,98,8,0,99,130,170,148,124,239,5,255,255,130,248,222, - 171,148,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134,115, - 129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4, - 38,140,130,37,140,37,140,3,101,140,4,100,140,3,99,140,131,99,148,173, - 181,122,239,4,255,255,130,188,247,105,181,10,96,148,129,48,206,8,255,255, - 129,104,140,37,192,98,129,243,189,5,255,255,129,46,165,5,192,98,130,1, - 99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,49,255,255, - 130,249,222,67,107,4,67,115,130,67,107,183,214,13,255,255,129,39,132,5, - 192,98,129,171,148,127,255,255,49,255,255,131,248,222,166,132,192,99,4,32, - 108,130,33,116,33,116,4,32,108,144,192,107,32,108,32,108,32,116,96,116, - 160,124,225,132,225,132,226,132,225,132,227,132,100,124,101,116,197,107,160,124, - 224,132,3,160,124,129,96,124,3,160,124,3,161,124,3,96,116,131,32,116, - 160,132,33,133,32,34,133,131,33,133,33,133,225,132,5,226,132,137,227,132, - 163,124,164,124,101,124,37,116,198,115,134,115,70,107,7,107,3,199,106,134, - 70,107,196,115,33,124,96,124,160,132,160,132,6,224,132,133,33,116,193,107, - 194,107,97,116,33,133,3,225,132,134,162,124,194,107,96,116,161,124,98,124, - 98,116,3,32,116,3,32,108,3,33,108,130,34,108,249,222,17,255,255,130, - 236,173,96,116,4,160,124,5,96,124,129,160,124,6,96,124,131,96,116,229, - 140,57,231,24,255,255,131,56,223,37,141,224,124,5,226,132,130,160,116,46, - 182,19,255,255,131,55,223,226,124,225,124,5,226,124,129,225,124,31,226,124, - 4,162,124,129,163,124,9,163,116,134,99,116,99,116,162,116,161,116,225,124, - 226,124,4,226,132,4,225,132,3,226,132,136,224,124,225,124,163,124,162,124, - 224,124,225,132,226,132,226,132,3,33,133,134,34,133,34,133,33,133,34,133, - 226,132,226,132,8,225,132,19,226,132,7,225,132,135,226,132,226,132,224,124, - 102,149,123,231,255,255,255,255,248,1,17,255,255,130,104,140,192,98,7,0, - 99,129,176,181,5,255,255,132,59,231,236,156,66,107,66,107,3,67,107,132, - 68,107,68,107,68,115,132,115,5,133,115,5,134,115,129,198,123,12,199,123, - 130,199,131,199,131,11,39,132,130,38,132,38,132,4,38,140,130,37,140,37, - 140,3,101,140,4,100,140,3,99,140,133,98,140,98,140,99,148,239,197,189, - 247,4,255,255,129,238,197,9,96,148,130,163,156,189,247,7,255,255,129,104, - 140,6,192,98,129,0,99,29,1,99,130,0,99,243,197,5,255,255,129,46, - 165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132, - 115,254,255,49,255,255,129,249,222,6,192,98,129,182,214,13,255,255,129,39, - 132,5,192,98,129,170,148,127,255,255,47,255,255,132,254,255,240,181,193,107, - 192,99,3,32,108,130,192,107,32,108,4,32,116,6,32,108,144,32,116,160, - 124,224,132,225,132,226,132,226,132,227,132,164,124,38,116,196,107,160,124,224, - 124,160,124,160,124,96,124,96,124,3,160,124,3,161,124,3,96,116,131,32, - 116,160,132,33,133,32,34,133,130,33,133,225,132,6,226,132,137,163,132,163, - 124,100,124,101,124,37,116,134,115,70,107,71,107,7,107,3,199,106,134,70, - 107,132,115,33,124,96,124,160,124,160,132,6,224,132,133,33,116,193,107,194, - 107,97,116,33,133,3,225,132,135,162,124,194,107,32,116,161,124,162,124,98, - 116,33,116,3,32,116,3,32,108,132,33,108,33,108,32,108,41,149,17,255, - 255,131,189,247,228,140,96,124,3,160,124,4,96,124,3,160,124,3,96,124, - 132,96,116,96,116,105,157,188,247,24,255,255,131,179,206,226,132,224,124,7, - 226,132,130,224,124,178,198,19,255,255,130,179,198,160,124,3,226,124,3,225, - 124,3,226,124,129,225,124,27,226,124,4,162,124,3,163,124,7,163,116,3, - 99,116,132,162,116,161,124,226,124,226,124,3,226,132,3,225,132,3,226,132, - 134,225,124,225,124,163,124,163,124,224,124,225,132,3,226,132,129,34,133,5, - 33,133,4,226,132,9,225,132,17,226,132,4,225,132,135,226,132,225,132,226, - 132,164,124,160,124,103,149,188,239,3,255,255,24,2,16,255,255,131,189,247, - 67,107,192,98,5,0,99,130,65,107,52,198,4,255,255,131,190,247,176,181, - 131,115,3,66,107,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115, - 5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132, - 38,132,4,38,140,130,37,140,37,140,3,101,140,4,100,140,3,99,140,134, - 98,140,98,140,98,148,97,148,228,156,180,214,4,255,255,129,114,206,9,96, - 148,129,180,214,7,255,255,129,104,140,6,192,98,130,176,181,59,231,29,58, - 231,129,189,247,5,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255, - 255,129,46,165,5,192,98,130,132,115,254,255,49,255,255,129,249,222,6,192, - 98,129,183,214,13,255,255,129,106,148,5,67,107,129,237,156,127,255,255,46, - 255,255,136,57,223,166,132,192,99,192,107,192,107,32,108,32,116,32,116,3, - 32,108,132,96,116,96,116,32,116,32,116,4,32,108,133,33,108,32,108,96, - 124,224,132,225,132,3,226,132,131,164,124,38,116,196,107,4,160,124,130,96, - 124,96,124,3,160,124,131,161,124,162,116,98,116,3,96,116,131,32,116,160, - 124,33,133,31,34,133,131,33,133,225,132,225,132,6,226,132,146,163,132,163, - 124,100,124,101,124,197,115,134,115,70,107,6,107,199,106,199,106,199,98,199, - 106,6,107,132,115,33,116,96,124,160,124,160,132,6,224,132,133,33,116,193, - 99,194,107,33,116,33,133,3,225,132,137,162,132,33,116,96,116,161,124,162, - 124,98,116,33,116,32,116,32,116,4,32,108,133,33,108,33,116,97,116,32, - 108,114,190,17,255,255,130,180,206,96,116,4,160,124,3,96,124,136,160,124, - 160,124,96,124,96,124,160,124,96,116,96,116,48,190,25,255,255,133,46,182, - 224,124,225,124,225,132,225,132,6,226,132,131,225,124,225,124,245,206,19,255, - 255,134,47,182,160,116,226,124,225,124,226,124,225,124,3,226,124,129,225,124, - 27,226,124,132,162,124,163,124,162,124,162,124,4,163,124,7,163,116,4,99, - 116,135,162,116,162,124,226,124,226,124,226,132,226,132,225,132,3,226,132,135, - 225,132,225,124,226,124,163,124,163,124,161,124,224,124,4,226,132,6,33,133, - 13,225,132,18,226,132,137,227,124,226,132,163,124,227,124,226,132,163,124,160, - 124,234,165,190,247,4,255,255,29,2,16,255,255,131,58,231,0,99,192,98, - 4,0,99,130,67,115,183,214,4,255,255,131,183,214,38,132,65,107,4,66, - 107,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134,115,129, - 198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4,38, - 140,130,37,140,37,140,3,101,140,4,100,140,3,99,140,136,98,140,98,140, - 98,148,97,148,97,148,96,148,106,181,123,239,3,255,255,129,180,214,8,96, - 148,129,105,181,7,255,255,129,104,140,6,192,98,129,52,198,36,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,49,255,255,129,249,222,6,192,98,129,183,214,13,255,255,130, - 190,247,189,247,3,190,247,130,189,247,190,247,127,255,255,45,255,255,131,240, - 181,33,108,192,99,4,32,108,134,32,116,32,108,32,108,192,107,32,108,32, - 108,3,32,116,6,32,108,138,33,116,160,124,224,132,225,132,225,132,226,132, - 163,132,38,116,197,107,97,124,3,160,124,129,96,124,4,160,124,137,161,124, - 162,116,97,116,97,116,96,116,96,116,32,116,160,124,33,133,30,34,133,132, - 33,133,33,133,225,132,225,132,6,226,132,146,163,132,163,124,100,124,37,124, - 197,115,134,115,70,107,7,107,199,106,199,106,199,98,199,98,6,107,133,115, - 194,115,32,124,160,124,160,132,6,224,132,133,97,116,194,107,194,99,33,116, - 33,133,3,225,132,137,226,132,34,116,96,116,161,124,162,124,98,116,33,116, - 32,116,32,116,4,32,108,134,33,108,34,116,97,116,97,116,163,132,188,239, - 17,255,255,130,170,165,96,116,4,160,124,129,96,124,5,160,124,131,96,116, - 162,132,245,214,24,255,255,131,188,239,169,157,224,124,6,225,132,5,226,132, - 131,225,124,35,133,122,231,18,255,255,131,254,255,170,165,160,124,5,226,124, - 130,225,124,225,124,22,226,124,5,162,124,129,163,124,4,162,124,132,163,124, - 163,124,162,124,163,124,6,163,116,4,99,116,132,162,116,162,116,161,124,225, - 124,5,226,132,140,225,132,224,124,162,124,163,124,163,124,161,124,224,124,226, - 132,225,132,225,132,226,132,226,132,6,33,133,10,225,132,130,226,132,225,132, - 15,226,132,139,227,124,225,132,225,132,163,124,226,132,227,124,226,124,226,132, - 226,124,160,124,236,173,6,255,255,38,2,16,255,255,131,184,214,192,98,192, - 98,3,0,99,130,132,115,249,222,3,255,255,130,190,247,110,173,3,65,107, - 4,66,107,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134, - 115,129,198,123,3,199,123,146,40,132,106,140,237,156,111,173,178,181,52,198, - 118,206,183,214,248,222,249,222,249,222,184,214,53,206,178,189,111,173,237,156, - 170,148,104,140,4,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140, - 3,101,140,4,100,140,3,99,140,137,98,140,98,140,98,148,97,148,97,148, - 96,148,96,148,163,156,181,222,3,255,255,129,180,222,7,96,148,130,162,156, - 188,247,6,255,255,129,104,140,6,192,98,129,243,197,36,255,255,129,46,165, - 5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115, - 254,255,49,255,255,129,249,222,6,192,98,129,183,214,127,255,255,63,255,255, - 132,58,231,232,140,192,99,192,107,9,32,108,134,192,107,32,108,96,116,96, - 116,32,116,32,116,3,32,108,3,32,116,129,160,124,3,225,132,136,226,132, - 227,132,101,124,198,107,34,116,160,124,160,124,96,124,5,160,124,137,161,116, - 161,124,162,116,98,116,34,108,34,108,33,108,160,124,33,133,30,34,133,3, - 33,133,129,225,132,6,226,132,137,163,132,163,124,100,124,37,124,197,115,134, - 115,70,107,7,107,199,106,3,199,98,134,6,107,69,115,194,115,32,124,96, - 124,160,132,6,224,132,133,97,116,193,107,194,107,34,116,33,133,3,225,132, - 137,226,132,33,116,32,108,161,124,162,124,98,124,33,116,32,116,32,116,4, - 32,108,134,33,108,34,116,97,116,97,116,96,116,172,165,17,255,255,130,122, - 231,162,124,9,160,124,131,96,116,38,149,122,231,24,255,255,131,57,231,101, - 141,224,124,7,225,132,6,226,132,131,225,124,38,141,188,239,18,255,255,131, - 188,239,37,141,160,124,11,226,124,132,225,124,226,124,225,124,225,124,11,226, - 124,6,162,124,129,226,124,4,162,124,6,163,124,6,163,116,4,99,116,132, - 162,116,224,124,225,124,225,132,4,226,132,137,224,124,162,124,163,124,163,124, - 162,124,224,124,226,132,225,132,225,132,4,226,132,130,34,133,226,132,3,33, - 133,10,225,132,12,226,132,131,225,132,227,124,226,124,3,226,132,137,225,132, - 163,124,226,124,226,132,227,124,226,132,163,124,224,124,47,182,7,255,255,31, - 2,16,255,255,135,183,214,192,98,192,98,0,99,0,99,132,115,58,231,3, - 255,255,131,57,231,39,132,1,107,3,65,107,4,66,107,3,67,107,132,68, - 107,68,107,68,115,132,115,5,133,115,4,134,115,135,40,132,172,148,113,181, - 117,206,249,222,124,239,254,255,14,255,255,136,254,255,125,239,58,231,118,214, - 242,189,45,165,169,148,38,132,4,38,140,130,37,140,37,140,3,101,140,4, - 100,140,3,99,140,133,98,140,98,140,98,148,97,148,97,148,4,96,148,129, - 238,197,3,255,255,129,180,214,7,96,148,129,246,222,6,255,255,129,104,140, - 6,192,98,129,243,197,36,255,255,129,46,165,5,192,98,130,1,99,124,239, - 8,255,255,129,46,165,5,192,98,130,132,115,254,255,49,255,255,129,249,222, - 6,192,98,129,183,214,127,255,255,62,255,255,135,240,181,34,108,128,99,192, - 107,32,108,32,108,192,107,7,32,108,130,192,107,32,108,3,96,116,129,33, - 116,3,32,108,3,32,116,130,160,124,224,132,3,33,133,135,226,132,164,124, - 198,107,197,107,96,116,160,124,96,124,5,160,124,137,161,116,161,124,161,124, - 99,116,195,107,195,107,194,107,96,124,225,132,30,34,133,129,33,133,3,225, - 132,5,226,132,138,227,132,163,132,163,124,100,124,37,124,197,115,134,115,70, - 107,7,107,199,106,3,199,98,134,199,106,69,107,195,115,32,124,96,124,160, - 124,6,224,132,145,97,116,194,107,194,107,33,108,33,133,226,132,225,132,225, - 132,226,132,33,116,32,108,161,124,162,124,98,124,33,116,32,116,32,116,4, - 32,108,135,34,108,34,116,97,116,97,116,162,124,161,124,246,214,17,255,255, - 130,114,198,96,116,7,160,124,131,96,116,236,173,189,247,24,255,255,131,179, - 198,35,133,225,124,8,225,132,3,226,132,129,225,132,3,226,132,131,160,124, - 168,157,254,247,18,255,255,131,57,231,227,132,225,124,15,226,124,132,225,124, - 226,124,226,124,225,124,5,226,124,6,162,124,6,226,124,129,162,124,5,163, - 124,6,163,116,4,99,116,131,160,116,224,124,225,124,3,226,132,140,225,132, - 224,124,162,116,163,116,163,116,162,116,224,124,225,132,225,132,33,133,33,133, - 226,132,8,33,133,11,225,132,10,226,132,3,226,124,140,226,132,227,124,225, - 132,226,132,163,124,226,124,227,124,226,124,226,132,162,124,225,124,178,198,8, - 255,255,57,2,16,255,255,134,184,214,192,98,192,98,0,99,131,115,58,231, - 3,255,255,132,52,198,66,107,1,107,1,107,3,65,107,4,66,107,3,67, - 107,132,68,107,68,107,68,115,132,115,5,133,115,133,199,123,172,148,242,189, - 248,222,189,247,26,255,255,136,190,247,59,231,117,206,175,181,234,156,38,140, - 37,140,37,140,3,101,140,4,100,140,3,99,140,133,98,140,98,140,98,148, - 97,148,97,148,5,96,148,133,105,181,189,247,255,255,255,255,114,206,6,96, - 148,129,113,206,6,255,255,129,104,140,6,192,98,129,243,197,36,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,49,255,255,129,249,222,6,192,98,129,183,214,127,255,255,60, - 255,255,133,58,223,232,140,128,99,192,99,193,107,10,32,108,153,192,107,32, - 108,32,108,96,116,96,116,97,116,33,116,32,108,32,108,192,107,32,108,96, - 116,32,116,96,124,224,132,34,133,33,133,33,133,226,132,164,124,38,108,134, - 99,98,116,160,124,96,124,6,160,124,136,161,124,160,124,98,116,196,107,194, - 107,194,107,96,116,224,132,29,34,133,132,33,133,33,133,225,132,225,132,7, - 226,132,147,163,132,164,124,100,124,37,124,197,115,134,115,70,107,7,107,199, - 106,199,106,199,98,199,98,199,106,70,107,131,115,32,116,96,124,160,124,160, - 132,5,224,132,133,96,116,194,107,194,107,33,108,33,133,3,225,132,138,226, - 132,34,116,32,116,161,124,162,124,98,124,33,116,32,116,32,108,32,116,3, - 32,108,136,34,108,34,116,97,116,97,124,162,124,161,116,37,141,254,247,16, - 255,255,131,254,255,104,157,96,116,4,160,124,131,96,116,161,124,114,198,25, - 255,255,131,47,182,224,124,225,124,4,226,132,6,225,132,7,226,132,130,160, - 124,236,173,19,255,255,131,246,214,161,124,225,124,9,226,124,131,225,124,226, - 124,225,124,4,226,124,129,225,124,5,226,124,6,162,124,8,226,124,134,162, - 124,163,124,163,124,162,124,163,124,163,124,6,163,116,133,99,116,162,116,160, - 116,224,124,225,124,3,226,132,140,225,124,224,124,162,116,163,116,163,116,162, - 116,224,124,225,132,226,132,33,133,225,132,225,132,7,33,133,131,225,132,225, - 132,33,133,10,225,132,5,226,132,147,225,132,226,132,226,132,227,124,226,124, - 226,132,226,132,226,124,227,124,226,132,225,132,163,124,226,132,227,124,226,124, - 225,132,162,124,226,132,244,206,9,255,255,62,2,16,255,255,133,58,231,0, - 99,192,98,66,107,249,222,3,255,255,133,110,173,0,99,0,99,1,107,1, - 107,3,65,107,4,66,107,3,67,107,138,68,107,68,107,68,115,132,115,133, - 115,133,115,199,123,237,156,117,206,124,239,35,255,255,134,59,239,116,206,109, - 173,103,148,101,140,101,140,4,100,140,3,99,140,133,98,140,98,140,98,148, - 97,148,97,148,6,96,148,133,38,165,123,239,255,255,255,255,238,197,5,96, - 148,129,236,189,6,255,255,129,104,140,6,192,98,129,243,197,36,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,49,255,255,129,58,231,6,192,98,129,184,214,38,255,255,141, - 123,239,183,214,52,198,178,189,112,181,111,173,111,173,176,181,177,181,52,198, - 183,214,59,231,190,247,127,255,255,7,255,255,135,254,255,241,181,34,108,128, - 99,193,107,193,107,192,107,10,32,108,136,192,107,32,108,32,108,32,116,96, - 116,96,116,33,116,33,116,3,32,108,143,32,116,32,116,96,116,224,132,34, - 133,34,133,33,133,226,132,227,132,101,116,198,99,36,108,160,124,96,124,96, - 124,5,160,124,137,161,124,161,124,162,116,35,108,195,107,194,107,32,116,224, - 132,33,133,28,34,133,129,33,133,3,225,132,7,226,132,137,163,132,164,124, - 100,124,37,124,197,115,134,115,70,107,7,107,199,106,3,199,98,135,199,106, - 6,107,132,115,193,115,96,124,160,124,160,132,5,224,132,143,97,124,34,108, - 194,107,34,108,33,133,226,132,225,132,225,132,226,132,34,116,32,116,161,124, - 162,124,99,124,33,116,3,32,116,3,32,108,136,33,116,34,116,98,116,97, - 124,162,124,162,124,160,116,112,190,17,255,255,130,58,231,161,124,3,160,124, - 131,96,116,37,141,247,222,24,255,255,132,123,239,169,165,224,124,225,132,4, - 226,132,7,225,132,5,226,132,3,227,124,130,162,116,114,190,19,255,255,130, - 113,190,160,116,7,226,124,130,225,124,225,124,13,226,124,3,162,124,12,226, - 124,133,162,124,163,124,162,124,163,124,163,124,6,163,116,132,162,116,224,124, - 225,124,226,124,3,226,132,137,226,124,224,124,162,116,99,116,99,116,162,116, - 224,124,225,132,226,132,3,33,133,3,226,132,130,33,133,33,133,4,225,132, - 131,226,132,33,133,33,133,6,225,132,12,226,132,142,226,124,227,124,226,132, - 227,124,226,132,225,132,227,124,226,132,227,124,226,124,226,124,161,124,35,141, - 246,222,10,255,255,112,2,16,255,255,136,190,247,66,107,0,99,182,214,255, - 255,255,255,190,247,170,148,3,0,99,130,1,107,1,107,3,65,107,4,66, - 107,3,67,107,135,68,107,68,107,68,115,132,115,171,148,52,198,124,239,41, - 255,255,132,189,247,182,214,109,173,102,148,3,100,140,3,99,140,133,98,140, - 98,140,98,148,97,148,97,148,7,96,148,133,228,164,122,239,255,255,255,255, - 105,181,4,96,148,129,170,181,6,255,255,129,104,140,6,192,98,129,243,197, - 36,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165, - 5,192,98,130,132,115,254,255,8,255,255,130,177,181,170,148,4,171,148,130, - 45,165,254,255,16,255,255,129,58,231,6,171,148,129,58,231,4,255,255,130, - 183,214,170,148,3,171,148,129,105,140,6,192,98,129,40,132,4,171,148,130, - 170,148,117,206,7,255,255,129,111,173,4,171,148,130,170,148,178,189,14,255, - 255,133,189,247,53,198,171,156,133,115,1,99,10,192,98,133,0,99,132,115, - 170,148,243,197,189,247,127,255,255,3,255,255,132,57,223,232,140,128,99,192, - 99,3,193,107,14,32,108,139,32,116,32,116,96,116,97,116,33,116,32,108, - 32,116,32,116,32,108,32,116,160,124,4,33,133,136,225,132,227,132,165,124, - 198,107,197,107,160,124,160,124,96,124,5,160,124,137,161,124,161,124,162,124, - 35,116,195,107,194,107,32,116,224,132,33,133,27,34,133,3,33,133,130,225, - 132,225,132,7,226,132,137,163,132,164,124,100,124,37,124,197,115,134,115,70, - 107,7,107,199,106,4,199,98,134,6,107,132,115,193,115,32,124,96,124,160, - 132,5,224,132,129,161,124,3,194,107,141,225,132,226,132,225,132,225,132,226, - 132,98,116,32,116,161,124,162,124,99,124,33,116,32,116,32,116,3,32,108, - 138,33,108,34,116,98,116,98,116,161,124,162,124,162,124,161,124,225,124,122, - 231,17,255,255,134,48,190,96,116,160,124,96,116,170,165,188,239,24,255,255, - 132,56,223,36,141,224,124,225,132,5,226,132,4,225,132,142,226,132,225,132, - 225,132,226,132,228,124,228,124,165,124,165,124,166,116,166,124,166,124,165,116, - 164,116,182,206,19,255,255,132,171,165,160,116,225,124,225,124,3,226,124,130, - 225,124,225,124,30,226,124,3,163,124,129,162,124,5,163,116,131,161,116,224, - 124,225,124,4,226,132,131,225,124,224,124,162,116,3,99,116,136,224,124,225, - 132,34,133,33,133,33,133,226,132,33,133,33,133,3,226,132,129,33,133,3, - 225,132,131,33,133,225,132,226,132,6,225,132,9,226,132,129,226,124,4,226, - 132,140,226,124,227,124,225,132,226,132,227,124,226,132,226,132,226,124,226,132, - 161,124,37,141,57,231,11,255,255,103,2,15,255,255,136,246,222,188,247,199, - 123,242,189,255,255,255,255,124,239,39,132,4,0,99,130,1,107,1,107,3, - 65,107,4,66,107,3,67,107,132,68,107,198,123,111,173,250,222,13,255,255, - 137,189,247,59,231,184,214,118,206,244,189,178,181,112,173,111,173,47,165,3, - 46,165,137,47,173,112,173,177,181,242,189,53,206,184,222,58,231,124,239,254, - 255,13,255,255,132,124,239,115,206,233,164,100,140,3,99,140,133,98,140,98, - 140,98,148,97,148,97,148,8,96,148,133,228,156,123,239,255,255,188,247,228, - 164,3,96,148,129,170,181,6,255,255,129,104,140,6,192,98,129,243,197,36, - 255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5, - 192,98,130,132,115,254,255,8,255,255,129,105,140,5,192,98,130,66,107,190, - 247,16,255,255,129,183,214,6,192,98,129,183,214,4,255,255,129,178,189,17, - 192,98,129,111,173,7,255,255,129,198,123,5,192,98,129,106,148,12,255,255, - 131,190,247,112,181,67,115,18,192,98,131,67,107,112,181,190,247,127,255,255, - 132,49,190,34,108,192,99,192,107,4,193,107,13,32,108,133,32,116,32,116, - 96,116,96,116,33,116,5,32,116,142,96,116,225,132,33,133,225,132,33,133, - 33,133,225,132,226,132,164,124,37,116,197,107,160,124,160,124,96,124,5,160, - 124,137,161,124,161,124,162,116,35,116,196,107,194,107,32,116,224,132,33,133, - 27,34,133,129,33,133,4,225,132,3,226,132,141,225,132,226,132,226,132,227, - 132,163,124,164,124,101,124,37,124,198,115,134,115,70,107,7,107,199,106,4, - 199,98,134,6,107,133,115,194,115,32,124,96,124,160,132,5,224,132,143,161, - 124,34,108,195,107,194,107,225,132,226,132,225,132,225,132,226,132,98,116,32, - 116,161,124,162,124,98,124,33,116,3,32,116,140,32,108,32,108,33,116,34, - 116,98,116,98,116,162,124,162,124,161,124,161,124,160,124,168,157,17,255,255, - 132,254,255,38,149,96,116,47,182,25,255,255,134,179,206,226,132,225,124,227, - 132,227,124,227,124,3,228,124,130,227,124,227,132,4,226,132,131,227,124,228, - 124,165,124,8,166,116,131,165,116,166,124,58,231,18,255,255,131,190,247,102, - 149,160,124,5,225,124,31,226,124,129,163,124,4,162,124,134,163,116,163,116, - 162,116,161,116,224,124,225,124,4,226,132,131,225,124,224,124,162,116,3,99, - 116,138,161,116,225,132,226,132,33,133,33,133,226,132,226,132,33,133,33,133, - 225,132,3,33,133,129,226,132,13,225,132,10,226,132,141,227,124,226,124,227, - 124,225,132,226,132,227,124,226,132,227,124,226,132,226,132,160,124,102,149,123, - 239,12,255,255,86,2,15,255,255,135,237,189,48,206,58,231,255,255,255,255, - 124,239,198,123,5,0,99,130,1,107,1,107,3,65,107,4,66,107,133,67, - 107,67,107,199,123,242,189,125,239,10,255,255,134,123,239,183,214,178,189,46, - 165,107,140,40,132,9,199,123,130,199,131,199,131,7,39,132,135,104,140,170, - 148,45,165,176,181,116,206,249,222,188,247,11,255,255,137,248,222,108,181,100, - 148,99,140,98,140,98,140,98,148,97,148,97,148,9,96,148,132,229,164,188, - 247,255,255,55,231,3,96,148,129,106,181,6,255,255,129,104,140,6,192,98, - 129,243,197,36,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255, - 129,46,165,5,192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98, - 130,132,115,190,247,16,255,255,129,248,222,6,192,98,129,184,214,4,255,255, - 129,242,189,17,192,98,129,112,181,7,255,255,129,39,132,5,192,98,129,171, - 148,11,255,255,130,249,222,197,123,22,192,98,130,198,123,249,222,124,255,255, - 134,57,223,41,149,192,99,192,107,32,108,32,108,4,193,107,13,32,108,130, - 32,116,32,116,3,96,116,148,32,116,96,116,96,116,32,116,96,116,160,124, - 33,133,33,133,225,132,225,132,33,133,33,133,226,132,164,124,37,124,37,116, - 97,124,160,124,96,124,96,124,5,160,124,136,161,116,161,116,162,116,98,116, - 34,108,192,107,160,124,33,133,27,34,133,129,33,133,3,225,132,4,226,132, - 129,225,132,3,226,132,138,163,124,164,124,101,124,37,116,198,115,134,115,70, - 107,7,107,199,106,199,106,3,199,98,135,6,107,69,107,194,115,32,124,96, - 124,160,124,160,132,4,224,132,134,161,124,34,108,195,107,34,108,225,132,226, - 132,3,225,132,134,98,124,32,116,161,124,162,124,98,124,33,116,3,32,116, - 141,32,108,33,108,33,116,34,116,98,116,98,124,162,124,162,124,161,124,225, - 124,225,132,160,124,179,206,17,255,255,130,57,223,180,206,24,255,255,133,254, - 247,47,182,161,124,227,124,229,124,9,165,124,132,229,124,228,124,228,124,165, - 124,5,166,116,129,102,116,5,166,116,131,164,116,40,141,188,239,18,255,255, - 132,122,231,227,132,160,124,225,124,35,226,124,3,162,124,134,163,124,163,116, - 162,116,224,124,224,124,226,124,4,226,132,139,225,124,224,124,163,116,100,116, - 99,116,99,116,161,116,224,132,226,132,226,132,34,133,3,226,132,131,33,133, - 33,133,226,132,3,33,133,129,226,132,14,225,132,8,226,132,132,226,124,226, - 132,226,124,225,132,4,226,132,133,226,124,226,132,161,116,168,157,188,247,13, - 255,255,98,2,15,255,255,134,171,181,227,156,255,255,255,255,58,231,197,123, - 6,0,99,130,1,107,1,107,3,65,107,4,66,107,131,39,132,243,189,189, - 247,8,255,255,135,124,239,118,206,111,173,106,140,199,123,134,115,198,123,12, - 199,123,130,199,131,199,131,11,39,132,135,38,132,38,132,103,140,235,156,176, - 181,182,214,123,239,9,255,255,135,58,231,173,189,99,148,98,140,98,148,97, - 148,97,148,10,96,148,135,104,173,254,255,255,255,47,198,96,148,96,148,171, - 189,6,255,255,129,104,140,6,192,98,129,243,197,36,255,255,129,46,165,5, - 192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254, - 255,8,255,255,129,170,148,5,192,98,130,132,115,190,247,16,255,255,129,248, - 222,6,192,98,129,184,214,4,255,255,129,178,181,17,192,98,129,111,173,7, - 255,255,129,39,132,5,192,98,129,171,148,10,255,255,130,249,222,66,107,7, - 192,98,137,132,115,104,140,236,156,237,164,45,165,236,156,170,148,40,132,132, - 115,8,192,98,130,67,107,58,231,122,255,255,139,49,190,33,108,192,99,32, - 108,32,108,193,107,33,108,32,108,33,108,193,107,193,107,13,32,108,3,32, - 116,131,96,116,96,116,96,124,3,96,116,130,160,124,225,132,5,33,133,137, - 225,132,226,132,163,124,37,124,100,124,98,124,160,124,160,124,96,124,5,160, - 124,136,96,116,160,116,160,124,96,116,33,116,32,108,160,124,32,133,26,34, - 133,130,33,133,33,133,4,225,132,3,226,132,129,225,132,3,226,132,138,163, - 124,164,124,100,124,37,116,198,115,134,107,70,107,7,107,199,106,199,106,3, - 199,98,145,199,106,70,107,131,115,32,116,96,124,96,124,160,132,224,132,160, - 132,224,132,224,132,161,124,34,108,195,107,34,108,225,132,226,132,3,225,132, - 134,98,124,32,116,161,116,162,124,99,124,34,116,3,32,116,142,32,108,33, - 108,33,116,34,116,98,116,98,124,162,124,162,124,161,124,225,124,225,132,224, - 124,227,132,123,239,41,255,255,133,124,239,106,149,163,116,165,124,165,124,3, - 166,124,10,165,124,6,166,116,130,102,116,103,116,4,166,116,132,165,124,163, - 116,107,157,190,247,18,255,255,133,246,214,161,124,225,124,226,124,225,124,20, - 226,124,129,225,124,12,226,124,4,162,124,131,161,124,224,124,225,124,5,226, - 132,131,225,124,224,124,162,116,3,163,116,130,160,124,225,132,3,226,132,3, - 33,133,131,225,132,33,133,34,133,3,226,132,13,225,132,8,226,132,143,226, - 124,226,132,227,124,226,132,226,132,225,132,226,132,227,124,225,132,226,132,226, - 132,226,124,160,124,235,173,254,255,14,255,255,108,2,15,255,255,133,170,181, - 96,148,113,206,255,255,51,198,7,0,99,130,1,107,1,107,3,65,107,133, - 66,107,66,107,133,123,242,189,189,247,7,255,255,132,124,239,52,198,172,148, - 198,123,5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132,130, - 38,132,38,132,4,38,140,133,102,140,234,164,241,197,57,231,254,255,7,255, - 255,133,58,239,172,181,98,148,97,148,97,148,11,96,148,134,237,197,255,255, - 254,255,38,173,96,148,238,197,6,255,255,129,104,140,6,192,98,129,243,197, - 36,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165, - 5,192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115, - 190,247,16,255,255,129,248,222,6,192,98,129,184,214,4,255,255,134,249,222, - 177,181,178,189,178,189,242,189,46,165,6,192,98,130,237,164,242,189,3,178, - 189,130,177,181,248,222,7,255,255,129,39,132,5,192,98,129,171,148,9,255, - 255,130,189,247,132,115,6,192,98,131,105,140,183,214,190,247,7,255,255,132, - 190,247,249,222,112,173,67,107,6,192,98,129,39,132,120,255,255,130,58,231, - 232,140,6,32,108,130,33,108,32,108,4,33,108,12,32,108,3,32,116,129, - 33,116,4,96,116,129,160,124,8,225,132,133,226,132,227,132,101,124,100,124, - 99,124,7,160,124,132,160,116,96,116,161,116,97,116,3,96,116,130,160,124, - 224,132,26,34,133,129,33,133,4,225,132,4,226,132,129,225,132,3,226,132, - 137,163,124,164,124,100,124,37,116,198,115,70,107,70,107,7,107,199,106,4, - 199,98,135,199,106,70,107,133,115,194,115,32,124,96,124,96,124,4,160,132, - 133,161,124,34,108,195,107,33,108,224,132,4,225,132,134,98,116,32,108,161, - 116,162,124,98,124,34,116,3,32,116,142,32,108,33,108,34,116,34,116,98, - 116,98,124,162,124,162,124,161,124,225,132,225,132,224,132,160,124,236,173,40, - 255,255,131,248,214,231,132,164,116,4,165,124,139,166,124,166,116,166,116,166, - 124,166,116,165,124,165,124,166,116,165,116,165,124,165,124,6,166,116,131,102, - 116,103,116,103,116,3,166,116,133,166,124,165,124,165,124,163,116,239,173,19, - 255,255,131,113,190,160,116,225,124,35,226,124,133,163,124,162,124,161,124,224, - 124,225,124,5,226,132,149,226,124,225,124,162,116,163,116,163,116,162,116,224, - 124,225,132,226,132,34,133,33,133,225,132,33,133,33,133,225,132,33,133,226, - 132,226,132,33,133,226,132,33,133,9,225,132,134,33,133,225,132,225,132,226, - 132,225,132,225,132,5,226,132,129,226,124,6,226,132,135,227,124,226,132,226, - 132,225,132,226,124,161,124,46,182,16,255,255,68,2,15,255,255,134,105,181, - 96,148,162,156,188,247,255,255,177,181,6,0,99,130,1,107,1,107,3,65, - 107,131,66,107,110,173,124,239,6,255,255,132,190,247,118,206,237,156,134,115, - 3,133,115,5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132, - 130,38,132,38,132,4,38,140,135,37,140,37,140,101,140,101,140,233,156,240, - 189,57,231,7,255,255,131,56,231,40,173,97,148,12,96,148,133,246,222,255, - 255,56,231,96,148,179,214,6,255,255,129,104,140,6,192,98,129,52,198,36, - 255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5, - 192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190, - 247,16,255,255,129,248,222,6,192,98,129,184,214,9,255,255,129,58,231,6, - 192,98,129,248,222,13,255,255,129,39,132,5,192,98,129,171,148,9,255,255, - 129,112,173,6,192,98,129,112,173,13,255,255,130,124,239,39,132,6,192,98, - 129,183,214,118,255,255,131,49,190,34,108,192,99,7,32,108,3,33,108,130, - 32,108,33,108,3,32,108,129,32,116,5,32,108,7,32,116,133,33,108,33, - 108,96,116,160,124,224,124,3,225,132,139,226,132,226,132,225,132,225,132,226, - 132,225,132,226,132,100,124,100,124,163,124,98,124,6,160,124,138,160,116,160, - 116,97,116,98,116,97,116,96,116,96,116,96,124,224,132,33,133,24,34,133, - 130,33,133,33,133,3,225,132,9,226,132,138,163,124,164,124,100,124,37,116, - 198,115,70,107,71,107,7,107,199,106,199,106,3,199,98,134,199,106,6,107, - 70,107,132,115,194,115,32,124,3,96,124,3,160,124,131,34,116,195,107,34, - 108,5,225,132,146,99,116,32,108,160,124,162,124,98,124,35,116,33,108,32, - 116,32,116,32,108,33,108,33,116,34,116,98,116,98,124,162,124,162,124,161, - 124,3,224,132,131,225,132,160,124,245,214,38,255,255,131,117,198,166,116,165, - 116,3,166,124,137,165,124,165,124,166,124,165,124,165,124,166,116,166,116,165, - 124,165,124,9,166,116,129,102,116,4,103,116,3,166,116,133,166,124,165,124, - 165,124,163,116,180,198,19,255,255,130,171,165,160,116,34,226,124,130,162,124, - 162,124,3,225,124,5,226,132,140,225,124,225,124,162,124,163,116,163,116,162, - 116,224,124,225,132,226,132,33,133,33,133,34,133,3,226,132,3,33,133,132, - 226,132,225,132,225,132,33,133,14,225,132,12,226,132,135,227,124,226,132,227, - 124,226,132,226,124,161,124,112,190,17,255,255,95,2,15,255,255,135,106,181, - 96,148,96,148,170,181,255,255,255,255,176,181,5,0,99,134,1,107,1,107, - 65,107,65,107,105,140,249,222,6,255,255,132,124,239,242,189,40,132,132,115, - 5,133,115,5,134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132, - 130,38,132,38,132,4,38,140,130,37,140,37,140,3,101,140,133,100,140,100, - 140,233,164,115,206,124,247,6,255,255,130,114,206,163,156,11,96,148,133,228, - 164,189,247,255,255,237,189,247,230,6,255,255,129,104,140,6,192,98,130,236, - 156,52,198,26,243,197,130,52,198,190,247,7,255,255,129,46,165,5,192,98, - 130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,8, - 255,255,129,170,148,5,192,98,130,132,115,190,247,16,255,255,129,248,222,6, - 192,98,129,184,214,9,255,255,129,249,222,6,192,98,129,183,214,13,255,255, - 129,39,132,5,192,98,129,171,148,8,255,255,130,190,247,132,115,5,192,98, - 129,171,156,15,255,255,130,123,239,66,107,5,192,98,129,111,173,116,255,255, - 132,57,223,232,140,192,99,192,107,8,32,108,3,33,108,5,32,108,129,96, - 116,4,32,108,5,32,116,3,96,116,135,34,116,34,108,97,116,160,124,224, - 132,225,132,225,132,5,226,132,3,225,132,136,163,132,37,124,163,124,100,116, - 160,124,224,124,160,124,96,124,3,160,124,137,96,116,160,116,97,116,97,116, - 160,116,160,124,160,124,224,132,33,133,23,34,133,130,33,133,33,133,3,225, - 132,10,226,132,138,163,124,164,124,100,124,37,116,198,115,70,107,7,107,7, - 107,199,106,199,106,3,199,98,135,199,106,7,107,70,107,133,115,196,115,194, - 115,33,124,4,96,124,132,160,124,34,116,195,107,194,107,5,225,132,153,99, - 116,33,108,160,116,162,124,162,124,35,116,194,107,32,116,32,116,32,108,33, - 108,33,116,34,116,98,116,98,124,162,124,161,124,161,124,225,124,224,132,224, - 132,225,132,225,124,36,141,188,239,35,255,255,134,190,247,175,157,101,108,102, - 116,166,116,166,116,3,166,124,4,165,124,4,166,116,131,102,116,103,116,103, - 116,3,166,116,129,102,116,4,103,116,129,103,108,3,103,116,3,166,116,133, - 165,124,165,124,164,124,164,124,247,214,18,255,255,131,189,247,103,149,160,116, - 32,226,124,133,162,124,226,124,225,124,225,124,225,132,5,226,132,139,225,124, - 225,124,162,124,163,124,163,124,162,124,224,124,225,132,34,133,34,133,33,133, - 4,226,132,5,33,133,130,225,132,33,133,12,225,132,12,226,132,137,33,133, - 226,132,227,132,226,132,227,132,226,132,225,124,226,132,245,206,18,255,255,113, - 2,15,255,255,129,171,189,3,96,148,132,180,222,255,255,255,255,176,181,4, - 0,99,132,1,107,1,107,131,115,242,189,6,255,255,134,124,239,112,173,198, - 123,68,107,68,115,132,115,5,133,115,5,134,115,129,198,123,12,199,123,130, - 199,131,199,131,11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140, - 3,101,140,4,100,140,131,165,148,174,189,57,231,5,255,255,130,123,239,105, - 181,11,96,148,132,238,197,255,255,190,247,190,247,6,255,255,129,104,140,35, - 192,98,129,124,239,7,255,255,129,46,165,5,192,98,130,1,99,124,239,8, - 255,255,129,46,165,5,192,98,130,132,115,254,255,8,255,255,129,170,148,5, - 192,98,130,132,115,190,247,16,255,255,129,248,222,6,192,98,129,184,214,9, - 255,255,129,249,222,6,192,98,129,183,214,13,255,255,129,39,132,5,192,98, - 129,171,148,8,255,255,129,249,222,5,192,98,130,1,99,123,239,16,255,255, - 129,105,140,5,192,98,129,236,156,115,255,255,131,49,182,34,116,192,107,11, - 32,108,132,33,108,33,108,32,108,33,108,8,32,108,135,32,116,96,116,96, - 116,32,116,32,116,96,116,96,116,3,97,116,133,98,116,161,124,224,132,225, - 132,225,132,7,226,132,137,225,132,226,132,101,124,100,124,99,124,97,124,224, - 124,160,124,96,124,4,160,124,132,160,116,97,116,96,116,160,116,3,160,124, - 129,33,133,23,34,133,130,33,133,33,133,4,225,132,8,226,132,136,163,132, - 163,124,164,124,100,124,37,116,198,115,70,107,6,107,3,199,106,3,199,98, - 143,199,106,199,106,6,107,70,107,133,115,196,115,195,115,34,124,33,124,33, - 124,96,124,97,124,34,108,195,107,194,107,5,225,132,153,99,124,194,107,97, - 116,162,124,162,124,35,116,195,107,193,107,32,116,32,108,32,108,32,116,97, - 116,98,116,98,124,162,124,162,124,161,124,225,132,225,132,224,132,225,132,226, - 132,160,124,45,182,34,255,255,138,123,231,43,141,37,108,102,116,166,116,166, - 116,166,124,166,116,166,116,165,116,3,165,124,3,166,116,132,103,116,103,108, - 103,108,103,116,3,166,116,4,103,116,129,103,108,5,103,116,137,102,116,166, - 116,166,116,166,124,165,124,165,124,164,116,231,132,123,231,18,255,255,131,58, - 231,227,132,161,124,4,226,124,131,162,124,226,124,226,124,5,162,124,130,226, - 124,162,124,7,226,124,129,225,124,10,226,124,131,225,124,225,124,225,132,5, - 226,132,136,225,124,224,124,162,124,163,124,163,124,162,124,224,124,225,132,4, - 33,133,130,226,132,225,132,3,33,133,129,225,132,3,33,133,15,225,132,10, - 226,132,137,225,132,226,132,227,124,226,132,227,124,225,132,224,124,35,133,55, - 223,19,255,255,108,2,15,255,255,129,238,197,3,96,148,133,162,156,122,239, - 255,255,255,255,177,181,3,0,99,131,1,107,170,148,59,231,5,255,255,136, - 190,247,177,181,197,123,67,107,68,107,68,107,68,115,132,115,5,133,115,5, - 134,115,129,198,123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38, - 132,4,38,140,130,37,140,37,140,3,101,140,4,100,140,133,99,140,99,140, - 99,148,107,181,56,231,5,255,255,130,113,206,97,148,9,96,148,130,161,148, - 123,239,8,255,255,129,104,140,34,192,98,130,66,107,124,239,7,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190,247,16,255, - 255,129,248,222,6,192,98,129,184,214,9,255,255,129,249,222,6,192,98,129, - 183,214,13,255,255,129,39,132,5,192,98,129,171,148,8,255,255,129,243,197, - 5,192,98,129,105,140,17,255,255,129,171,156,5,192,98,129,236,156,113,255, - 255,131,248,222,231,140,192,107,24,32,108,3,32,116,139,96,116,32,116,32, - 116,96,116,96,116,97,116,96,116,97,116,97,116,161,124,161,124,3,225,132, - 129,226,132,3,225,132,136,226,132,226,132,225,132,226,132,163,124,100,124,100, - 124,98,124,8,160,124,131,162,116,97,116,97,116,3,160,124,130,224,132,33, - 133,22,34,133,129,33,133,3,225,132,130,226,132,225,132,8,226,132,138,163, - 132,163,124,100,124,100,124,37,116,198,115,70,107,70,107,7,107,199,106,4, - 199,98,143,199,106,199,106,6,107,70,107,70,107,133,115,197,115,197,115,36, - 116,36,124,35,124,98,124,34,116,34,108,194,107,5,225,132,136,163,124,34, - 108,96,116,162,124,162,124,35,116,195,107,194,107,3,32,108,135,33,116,98, - 116,98,116,98,124,162,124,161,124,161,124,4,225,132,132,226,132,225,132,225, - 124,246,214,32,255,255,132,183,206,105,116,38,100,103,108,8,166,116,138,166, - 124,166,116,166,116,103,116,103,108,40,108,103,108,103,116,166,116,166,116,4, - 103,116,4,103,108,5,103,116,3,166,116,134,166,124,165,124,165,124,163,116, - 105,149,190,247,18,255,255,130,245,214,161,124,4,226,124,131,162,124,226,124, - 226,124,9,162,124,12,226,124,133,163,124,162,124,225,124,224,124,225,124,6, - 226,132,130,225,124,225,124,3,163,124,135,161,124,225,124,226,132,34,133,33, - 133,226,132,226,132,5,33,133,132,225,132,226,132,33,133,33,133,8,225,132, - 134,33,133,225,132,225,132,33,133,225,132,225,132,5,226,132,129,227,124,5, - 226,132,137,33,133,226,132,226,132,225,132,226,132,225,132,160,124,102,149,121, - 231,20,255,255,104,2,15,255,255,129,115,214,4,96,148,136,38,165,189,247, - 255,255,255,255,51,198,1,99,66,107,243,189,6,255,255,130,118,206,39,132, - 3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134,115,129,198, - 123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4,38,140, - 130,37,140,37,140,3,101,140,4,100,140,3,99,140,132,98,140,98,140,107, - 181,57,231,4,255,255,130,56,231,228,156,9,96,148,129,237,189,8,255,255, - 129,104,140,34,192,98,130,66,107,124,239,7,255,255,129,46,165,5,192,98, - 130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,8, - 255,255,129,170,148,5,192,98,130,132,115,190,247,16,255,255,129,248,222,6, - 192,98,129,184,214,9,255,255,129,249,222,6,192,98,129,183,214,13,255,255, - 129,39,132,5,192,98,129,171,148,8,255,255,129,58,231,5,52,198,129,249, - 222,17,255,255,129,39,132,5,192,98,129,236,156,111,255,255,137,254,247,239, - 181,33,116,32,108,32,116,32,116,32,108,32,108,33,108,14,32,108,129,32, - 116,4,32,108,4,32,116,143,96,116,96,116,32,116,96,116,97,124,161,124, - 161,124,98,116,98,116,161,124,161,124,224,132,225,132,225,132,226,132,4,225, - 132,135,226,132,226,132,225,132,227,132,100,124,100,124,99,124,7,160,124,132, - 160,116,161,116,162,116,162,116,3,160,124,130,224,132,33,133,22,34,133,5, - 225,132,5,226,132,129,225,132,4,226,132,140,163,124,100,124,100,124,37,116, - 198,115,70,107,70,107,7,107,199,106,199,106,199,98,199,98,4,199,106,132, - 6,107,70,107,70,107,134,115,3,197,115,156,37,116,99,124,98,116,195,107, - 194,107,225,132,226,132,226,132,225,132,225,132,163,124,34,108,96,116,162,124, - 162,124,35,116,195,107,194,107,33,108,32,108,32,116,34,116,98,116,97,116, - 98,124,162,124,161,124,161,124,6,225,132,131,224,124,102,149,189,247,30,255, - 255,135,242,181,39,108,39,100,103,108,103,116,102,116,103,116,8,166,116,134, - 103,116,103,108,40,108,40,108,103,108,166,116,11,103,108,4,103,116,3,166, - 116,134,165,124,165,124,228,124,228,124,162,116,173,165,19,255,255,130,112,190, - 160,116,7,226,124,9,162,124,130,163,124,163,124,7,226,124,3,162,124,3, - 225,124,6,226,132,144,225,124,225,124,162,124,163,124,163,124,161,124,224,124, - 225,132,34,133,34,133,226,132,226,132,225,132,225,132,33,133,33,133,3,225, - 132,130,226,132,226,132,13,225,132,129,33,133,11,226,132,137,33,133,226,132, - 226,132,225,132,226,132,225,132,160,124,168,157,123,239,20,255,255,1,59,231, - 116,2,15,255,255,129,56,231,5,96,148,129,105,181,3,255,255,130,183,214, - 58,231,5,255,255,132,124,239,236,156,66,107,66,107,3,67,107,132,68,107, - 68,107,68,115,132,115,5,133,115,5,134,115,129,198,123,12,199,123,130,199, - 131,199,131,11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140,3, - 101,140,4,100,140,3,99,140,134,98,140,98,140,98,148,98,148,237,189,188, - 247,3,255,255,130,188,247,40,173,8,96,148,130,162,156,188,247,7,255,255, - 129,104,140,34,192,98,130,0,99,124,239,7,255,255,129,46,165,5,192,98, - 130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,8, - 255,255,129,170,148,5,192,98,130,132,115,190,247,16,255,255,129,248,222,6, - 192,98,129,184,214,9,255,255,129,249,222,6,192,98,129,183,214,13,255,255, - 129,39,132,5,192,98,129,171,148,31,255,255,130,118,206,0,99,5,192,98, - 129,236,156,110,255,255,134,248,222,231,140,32,108,96,116,97,116,97,116,3, - 32,116,129,33,116,20,32,108,3,32,116,130,96,116,161,116,3,98,116,134, - 97,124,98,116,98,116,98,124,161,124,161,124,9,225,132,135,33,133,33,133, - 226,132,100,124,36,124,163,124,97,124,6,160,124,129,96,116,4,161,116,132, - 160,124,160,124,224,132,33,133,11,34,133,131,226,132,34,133,34,133,3,33, - 133,130,34,133,34,133,4,33,133,3,225,132,6,226,132,129,225,132,3,226, - 132,139,162,132,163,124,100,124,100,124,37,116,198,115,70,107,6,107,7,107, - 199,106,199,106,3,199,98,3,199,106,140,6,107,6,107,70,107,134,107,134, - 115,198,115,197,115,37,116,100,124,98,116,195,107,194,107,3,225,132,148,226, - 132,225,132,163,124,195,107,96,116,162,124,162,124,35,116,195,107,194,107,33, - 108,32,108,32,116,33,116,97,116,97,116,98,124,162,124,161,124,161,124,7, - 225,132,130,160,124,46,182,28,255,255,133,189,239,110,149,38,100,39,108,103, - 108,4,103,116,6,166,116,139,103,116,103,108,103,108,40,108,40,108,103,108, - 103,116,103,108,39,108,40,108,40,108,9,103,108,130,103,116,103,116,3,166, - 116,136,166,124,166,124,165,124,165,124,228,124,164,124,163,116,114,190,19,255, - 255,130,170,157,160,116,8,226,124,10,162,124,131,226,124,162,124,162,124,3, - 163,124,133,162,124,161,124,224,124,224,124,225,124,6,226,132,136,225,124,225, - 124,162,124,163,124,163,124,225,124,224,132,226,132,3,33,133,136,225,132,33, - 133,225,132,225,132,33,133,33,133,225,132,33,133,16,225,132,7,226,132,129, - 227,124,3,226,132,129,33,133,4,226,132,132,225,132,160,116,170,165,189,247, - 20,255,255,130,249,222,69,115,153,2,15,255,255,130,189,247,162,156,5,96, - 148,129,172,189,8,255,255,130,118,206,197,123,3,66,107,3,67,107,132,68, - 107,68,107,68,115,132,115,5,133,115,5,134,115,129,198,123,12,199,123,130, - 199,131,199,131,11,39,132,130,38,132,38,132,4,38,140,130,37,140,37,140, - 3,101,140,4,100,140,3,99,140,135,98,140,98,140,98,148,97,148,97,148, - 164,156,180,214,3,255,255,130,254,255,171,181,8,96,148,129,114,214,7,255, - 255,129,104,140,6,192,98,129,236,156,28,52,198,129,190,247,7,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190,247,16,255, - 255,129,248,222,6,192,98,129,184,214,9,255,255,129,249,222,6,192,98,129, - 183,214,13,255,255,129,39,132,5,192,98,129,171,148,27,255,255,133,189,247, - 59,231,248,222,111,173,1,99,6,192,98,129,236,156,108,255,255,132,189,247, - 239,181,97,116,32,108,7,96,116,129,32,116,14,32,108,148,33,108,32,108, - 32,108,32,116,32,116,96,116,32,116,96,116,96,116,160,124,225,132,225,132, - 225,124,162,124,162,124,161,124,161,124,162,124,162,124,161,124,3,225,132,132, - 33,133,225,132,226,132,225,132,4,33,133,148,226,132,164,124,37,124,99,124, - 99,124,160,124,160,124,96,124,96,116,160,124,160,124,160,116,160,116,161,116, - 162,116,98,116,161,116,160,124,160,124,225,132,14,34,133,7,33,133,3,225, - 132,8,226,132,129,225,132,3,226,132,139,162,132,163,124,100,124,101,124,37, - 116,198,115,70,107,6,107,7,107,199,106,199,106,4,199,98,142,199,106,199, - 106,6,107,6,107,70,107,70,107,134,115,198,115,197,115,197,115,100,124,99, - 116,195,107,194,107,5,225,132,149,163,124,195,107,96,116,161,124,162,124,35, - 116,195,107,195,107,34,108,32,108,32,116,33,116,97,116,97,116,98,124,162, - 124,161,124,161,124,225,132,225,132,224,132,3,225,132,132,226,132,225,132,225, - 124,247,222,26,255,255,137,56,223,41,141,37,108,103,116,102,116,102,116,103, - 116,103,108,103,116,3,166,116,4,103,116,129,103,108,4,40,108,133,103,108, - 103,108,39,108,40,108,40,108,8,103,108,133,39,108,103,108,103,116,103,116, - 102,116,3,166,116,129,166,124,5,165,124,130,164,124,247,214,18,255,255,131, - 188,239,37,141,160,124,8,226,124,12,162,124,135,163,124,162,124,162,124,161, - 124,224,124,224,124,225,132,6,226,132,140,225,124,225,124,162,124,163,124,163, - 124,225,124,225,132,225,132,34,133,33,133,226,132,226,132,3,33,133,131,225, - 132,226,132,33,133,16,225,132,129,33,133,5,226,132,135,227,124,226,132,227, - 124,226,132,227,124,226,132,33,133,3,226,132,133,227,132,225,132,160,124,45, - 174,254,247,20,255,255,131,118,206,3,107,128,90,150,2,16,255,255,129,105, - 181,6,96,148,129,172,189,5,255,255,131,189,247,111,173,65,107,4,66,107, - 3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5,134,115,129,198, - 123,12,199,123,130,199,131,199,131,11,39,132,130,38,132,38,132,4,38,140, - 130,37,140,37,140,3,101,140,4,100,140,3,99,140,137,98,140,98,140,98, - 148,97,148,97,148,96,148,96,148,170,181,188,247,3,255,255,129,237,189,7, - 96,148,129,104,173,7,255,255,129,104,140,6,192,98,129,52,198,36,255,255, - 129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98, - 130,132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190,247,16, - 255,255,129,248,222,6,192,98,129,184,214,9,255,255,129,249,222,6,192,98, - 129,183,214,13,255,255,129,39,132,5,192,98,129,171,148,16,255,255,141,254, - 255,124,239,58,231,248,222,118,206,51,198,177,181,46,165,171,148,39,132,133, - 123,67,107,1,99,9,192,98,129,236,156,107,255,255,132,247,222,230,140,32, - 108,32,116,8,96,116,130,32,116,32,116,12,32,108,130,33,108,32,108,3, - 32,116,136,96,116,96,116,160,116,97,116,97,116,160,124,225,132,225,132,3, - 161,124,7,225,132,131,226,132,34,133,33,133,4,225,132,3,33,133,136,227, - 132,101,124,100,124,99,124,160,124,160,124,96,116,96,116,4,160,124,136,161, - 116,161,116,98,116,97,116,160,124,160,124,224,132,33,133,12,34,133,131,33, - 133,33,133,225,132,4,33,133,5,225,132,7,226,132,129,225,132,3,226,132, - 138,162,132,163,124,100,124,101,124,37,116,198,115,70,107,70,107,7,107,199, - 106,5,199,98,142,199,106,199,106,6,107,6,107,70,107,70,107,134,115,134, - 115,197,115,197,115,100,124,98,116,195,107,194,107,5,225,132,149,163,124,195, - 107,96,116,161,124,162,124,35,116,195,107,195,107,34,108,32,108,32,116,33, - 116,97,116,97,116,98,124,162,124,161,124,161,124,225,132,224,132,224,132,3, - 225,132,132,226,132,160,124,36,141,246,222,25,255,255,141,179,206,34,133,224, - 124,227,124,164,124,102,116,103,108,103,108,103,116,102,116,166,116,103,116,103, - 116,4,103,108,137,40,108,40,108,40,100,40,108,39,108,103,108,39,108,40, - 108,39,108,8,103,108,131,39,108,103,108,103,108,5,103,116,130,102,116,102, - 116,5,166,124,131,165,116,230,124,123,231,18,255,255,131,57,231,226,124,225, - 124,8,226,124,12,162,124,132,162,116,161,116,224,124,224,124,7,226,132,130, - 225,124,225,124,3,163,124,138,225,124,224,132,226,132,34,133,34,133,33,133, - 225,132,226,132,33,133,33,133,3,225,132,129,33,133,16,225,132,7,226,132, - 129,227,132,3,226,132,136,33,133,227,132,226,124,226,132,226,132,225,132,225, - 124,112,190,21,255,255,132,244,197,193,98,128,90,193,98,190,2,16,255,255, - 129,179,214,7,96,148,130,171,181,254,255,3,255,255,131,116,206,65,107,65, - 107,4,66,107,3,67,107,132,68,107,68,107,68,115,132,115,5,133,115,5, - 134,115,129,198,123,3,199,123,136,200,123,41,132,171,148,237,156,46,165,112, - 173,177,181,178,181,4,243,189,140,178,181,177,181,112,173,46,165,237,164,171, - 148,105,148,40,140,39,132,39,132,38,132,38,132,4,38,140,130,37,140,37, - 140,3,101,140,4,100,140,3,99,140,133,98,140,98,140,98,148,97,148,97, - 148,3,96,148,130,228,156,246,222,3,255,255,129,237,189,6,96,148,130,162, - 156,188,247,6,255,255,129,104,140,6,192,98,129,243,197,36,255,255,129,46, - 165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130,132, - 115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190,247,16,255,255, - 129,248,222,6,192,98,129,184,214,9,255,255,129,249,222,6,192,98,129,183, - 214,13,255,255,129,39,132,5,192,98,129,171,148,13,255,255,133,183,214,111, - 173,105,140,132,115,2,107,20,192,98,129,236,156,105,255,255,134,189,247,238, - 181,96,116,32,108,97,116,33,116,9,96,116,129,32,116,4,32,108,131,33, - 108,32,108,32,116,5,32,108,143,33,108,32,108,32,108,32,116,96,116,160, - 124,161,124,162,124,162,124,161,124,162,124,98,124,98,116,161,124,160,124,4, - 225,132,129,226,132,3,225,132,146,33,133,34,133,33,133,226,132,225,132,226, - 132,225,132,33,133,33,133,225,132,226,132,101,124,36,124,100,124,161,124,224, - 124,160,124,96,124,3,160,124,137,160,116,161,124,161,124,162,116,98,116,160, - 124,160,124,224,132,33,133,12,34,133,4,33,133,131,225,132,225,132,33,133, - 5,225,132,6,226,132,130,225,132,225,132,3,226,132,138,162,132,163,124,100, - 124,101,124,37,116,198,115,70,107,6,107,199,106,199,106,5,199,98,3,199, - 106,139,6,107,70,107,70,107,134,115,134,115,197,115,197,115,36,124,98,116, - 195,107,194,107,5,225,132,149,162,124,195,107,96,116,161,124,162,124,35,116, - 195,107,195,107,34,108,33,108,32,116,33,116,97,116,97,116,98,124,162,124, - 161,124,161,124,225,132,224,132,224,132,3,225,132,131,160,124,169,157,123,239, - 24,255,255,140,190,247,46,182,224,124,225,132,34,133,33,133,33,133,226,132, - 164,124,166,116,103,116,103,116,5,103,108,3,40,108,136,40,100,40,108,40, - 108,39,108,39,108,40,108,40,108,39,108,8,103,108,131,39,108,103,108,103, - 108,7,103,116,137,102,116,166,116,102,116,103,116,166,116,166,116,101,116,42, - 141,189,247,18,255,255,131,179,198,160,124,225,124,8,226,124,10,162,124,132, - 161,116,160,124,224,124,225,124,7,226,132,130,225,124,225,124,3,163,124,131, - 225,124,225,132,226,132,3,34,133,132,226,132,225,132,33,133,33,133,20,225, - 132,7,226,132,129,227,124,3,226,132,129,33,133,4,226,132,131,225,124,226, - 132,179,198,21,255,255,133,178,181,128,90,192,90,193,98,193,98,177,2,16, - 255,255,130,189,247,162,156,7,96,148,130,104,173,188,247,3,255,255,130,117, - 206,132,123,4,66,107,3,67,107,132,68,107,68,107,68,115,132,115,5,133, - 115,3,134,115,136,199,123,106,140,46,165,178,181,118,206,249,222,124,239,190, - 247,16,255,255,140,190,247,124,239,249,230,182,214,242,189,110,173,234,156,103, - 140,38,140,38,140,37,140,37,140,3,101,140,4,100,140,3,99,140,133,98, - 140,98,140,98,148,97,148,97,148,5,96,148,129,113,206,3,255,255,129,172, - 189,6,96,148,129,246,222,6,255,255,129,104,140,6,192,98,129,243,197,36, - 255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5, - 192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190, - 247,16,255,255,129,248,222,6,192,98,129,184,214,9,255,255,129,249,222,6, - 192,98,129,183,214,13,255,255,129,39,132,5,192,98,129,171,148,10,255,255, - 131,190,247,178,189,197,123,18,192,98,130,1,107,1,99,5,192,98,129,236, - 156,104,255,255,138,246,214,229,132,96,116,160,124,96,116,96,116,33,116,96, - 116,96,116,96,124,5,96,116,130,32,116,32,116,4,32,108,150,33,108,32, - 116,32,116,32,108,32,108,32,116,32,116,32,108,33,108,32,108,32,116,96, - 116,160,124,161,124,162,124,162,124,225,124,225,124,161,124,162,124,161,124,225, - 124,5,225,132,6,34,133,144,33,133,226,132,226,132,225,132,225,132,33,133, - 34,133,225,132,226,132,164,124,37,124,163,124,161,124,160,124,160,124,96,124, - 3,160,124,137,160,116,161,116,161,116,161,124,98,116,161,124,160,124,224,132, - 33,133,11,34,133,3,33,133,129,225,132,3,33,133,5,225,132,7,226,132, - 130,225,132,225,132,3,226,132,138,162,132,163,124,100,124,101,124,37,116,198, - 115,70,107,6,107,199,106,199,106,5,199,98,3,199,106,140,6,107,6,107, - 70,107,70,107,134,115,197,115,197,115,36,124,98,116,195,107,194,107,224,132, - 4,225,132,153,162,132,35,108,96,116,161,124,162,124,35,116,195,107,195,107, - 34,108,33,108,32,116,33,116,97,116,98,116,98,124,162,124,161,124,161,124, - 225,132,225,132,224,132,225,132,224,124,225,124,112,190,25,255,255,132,123,239, - 168,157,224,124,225,132,4,34,133,134,33,133,33,133,225,132,226,124,164,124, - 103,116,6,40,108,135,200,99,200,99,40,100,40,108,39,108,40,108,200,99, - 4,39,108,7,40,108,5,103,108,131,40,108,40,108,39,116,3,103,116,135, - 39,116,103,116,39,108,40,108,103,116,37,108,110,157,19,255,255,130,237,173, - 160,116,8,226,124,10,162,124,131,224,124,224,124,225,124,7,226,132,130,225, - 124,161,124,3,163,124,130,225,124,225,132,3,226,132,3,33,133,130,225,132, - 33,133,20,225,132,6,226,132,135,225,132,227,132,226,132,226,132,225,132,33, - 133,227,132,3,226,132,131,225,124,228,132,246,214,21,255,255,131,238,164,128, - 82,193,90,3,193,98,150,2,17,255,255,129,237,189,8,96,148,130,228,164, - 56,231,3,255,255,130,124,239,236,156,3,66,107,3,67,107,132,68,107,68, - 107,68,115,132,115,4,133,115,133,198,123,171,148,177,181,183,214,123,239,30, - 255,255,133,124,239,248,222,50,198,44,173,167,148,3,101,140,4,100,140,3, - 99,140,133,98,140,98,140,98,148,97,148,97,148,6,96,148,129,237,189,3, - 255,255,129,105,181,5,96,148,129,113,206,6,255,255,129,104,140,6,192,98, - 129,243,197,36,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255, - 129,46,165,5,192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98, - 130,132,115,190,247,16,255,255,129,248,222,6,192,98,129,184,214,9,255,255, - 129,249,222,6,192,98,129,183,214,13,255,255,129,39,132,5,192,98,129,171, - 148,9,255,255,130,249,222,198,123,15,192,98,135,2,107,132,115,40,140,45, - 165,51,198,123,239,39,132,5,192,98,129,236,156,102,255,255,137,189,247,173, - 173,96,116,96,116,161,124,161,124,96,116,96,116,97,116,8,96,116,130,32, - 116,32,116,5,32,108,4,32,116,137,96,116,32,116,32,116,32,108,32,108, - 96,116,96,116,97,116,161,124,8,225,132,131,226,132,225,132,225,132,9,34, - 133,4,225,132,136,34,133,33,133,225,132,226,132,163,124,37,124,99,124,162, - 124,3,160,124,129,96,124,3,160,124,136,160,116,161,116,162,116,98,116,161, - 124,160,124,160,124,225,132,11,34,133,4,33,133,132,225,132,225,132,33,133, - 33,133,3,225,132,8,226,132,130,225,132,225,132,3,226,132,138,163,132,163, - 124,100,124,100,124,37,116,198,115,70,107,70,107,7,107,199,106,5,199,98, - 3,199,106,140,6,107,6,107,70,107,70,107,134,115,134,115,197,115,36,124, - 98,116,195,107,194,99,225,124,4,225,132,152,226,132,35,108,96,116,161,124, - 162,124,99,116,196,107,195,107,34,108,33,108,33,116,33,116,97,116,98,116, - 98,124,162,124,161,124,161,124,161,132,225,132,224,132,160,124,35,141,246,214, - 25,255,255,131,246,214,36,141,224,124,9,34,133,151,33,133,33,133,226,132, - 163,124,102,116,39,108,40,108,200,107,200,99,136,99,200,99,200,99,40,100, - 40,108,200,99,200,99,39,108,39,108,40,108,40,108,200,99,200,99,40,100, - 7,40,108,129,103,108,3,40,108,140,103,116,103,116,102,116,39,108,40,108, - 40,108,103,116,102,116,166,124,166,124,100,116,114,190,18,255,255,131,254,255, - 104,149,160,116,7,226,124,8,162,124,132,161,124,224,124,224,124,225,124,4, - 226,132,133,225,132,226,132,226,132,225,124,161,124,3,163,124,130,225,124,225, - 132,3,226,132,4,33,133,23,225,132,130,226,132,227,124,6,226,132,130,225, - 132,33,133,3,226,132,132,225,132,224,124,37,141,57,231,20,255,255,131,190, - 247,172,156,128,82,5,193,98,144,2,17,255,255,130,123,239,161,148,8,96, - 148,130,97,148,113,206,4,255,255,131,117,206,198,131,66,107,3,67,107,137, - 68,107,68,107,68,115,132,115,133,115,198,123,237,156,53,198,123,239,38,255, - 255,132,189,247,248,222,241,189,233,156,4,100,140,3,99,140,133,98,140,98, - 140,98,148,97,148,97,148,7,96,148,133,170,181,254,255,255,255,190,247,38, - 173,4,96,148,129,172,189,6,255,255,129,104,140,6,192,98,129,243,197,36, - 255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5, - 192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190, - 247,16,255,255,129,248,222,6,192,98,129,184,214,9,255,255,129,249,222,6, - 192,98,129,183,214,13,255,255,129,39,132,5,192,98,129,171,148,8,255,255, - 130,184,214,2,107,8,192,98,138,1,99,133,115,105,140,236,156,112,181,51, - 198,182,214,249,222,124,239,254,255,4,255,255,129,198,131,5,192,98,129,236, - 156,101,255,255,138,246,214,229,132,32,116,97,124,161,124,160,124,97,124,96, - 124,96,116,97,116,8,96,116,132,32,116,32,108,32,108,32,116,3,32,108, - 6,32,116,129,96,116,3,32,116,130,96,116,160,124,3,225,132,7,226,132, - 129,225,132,8,34,133,3,33,133,143,225,132,33,133,33,133,34,133,33,133, - 225,132,226,132,227,132,37,124,197,115,162,124,160,124,224,132,160,124,96,124, - 3,160,124,137,96,116,161,116,98,116,98,116,161,116,161,124,160,124,224,132, - 33,133,9,34,133,4,33,133,4,225,132,129,33,133,3,225,132,8,226,132, - 130,225,132,225,132,3,226,132,138,163,132,163,124,100,124,100,124,37,116,197, - 115,70,107,70,107,199,106,199,106,5,199,98,3,199,106,141,6,107,6,107, - 70,107,70,107,134,115,134,115,197,115,36,124,98,116,35,108,194,99,225,124, - 226,132,4,225,132,141,35,116,96,116,161,124,162,124,99,124,195,107,195,107, - 34,108,33,108,33,116,33,116,97,116,98,116,5,161,124,132,225,124,160,124, - 168,157,123,239,25,255,255,132,254,255,104,149,160,116,226,132,11,34,133,3, - 33,133,145,226,132,164,116,39,108,200,99,73,91,136,91,200,99,200,99,39, - 108,200,99,200,99,39,108,40,108,200,99,200,99,137,91,137,91,3,200,99, - 9,40,108,134,103,116,166,116,165,116,39,108,39,116,166,116,4,165,124,131, - 164,124,163,124,247,214,18,255,255,131,123,239,228,132,161,124,5,226,124,130, - 162,124,163,124,6,162,124,131,161,124,224,124,225,124,8,226,132,135,225,124, - 161,124,163,124,163,124,162,124,224,124,225,132,3,226,132,131,225,132,33,133, - 33,133,3,225,132,129,33,133,18,225,132,11,226,132,136,225,132,226,132,225, - 132,226,132,226,132,160,124,104,149,123,239,20,255,255,131,125,239,41,140,128, - 82,6,193,98,127,2,15,255,255,132,179,214,255,255,255,255,237,197,10,96, - 148,130,105,173,122,239,3,255,255,139,190,247,177,181,197,123,67,107,67,107, - 68,107,68,107,68,115,171,148,53,198,124,239,45,255,255,132,57,231,241,197, - 232,156,100,140,3,99,140,133,98,140,98,140,98,148,97,148,97,148,8,96, - 148,133,170,181,255,255,255,255,123,239,163,156,3,96,148,129,170,181,6,255, - 255,129,104,140,6,192,98,129,243,197,36,255,255,129,46,165,5,192,98,130, - 1,99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,8,255, - 255,129,170,148,5,192,98,130,132,115,190,247,16,255,255,129,183,214,6,192, - 98,129,184,214,9,255,255,129,249,222,6,192,98,129,183,214,13,255,255,129, - 39,132,5,192,98,129,171,148,7,255,255,130,125,239,67,107,6,192,98,132, - 0,99,170,148,52,198,123,239,13,255,255,129,198,131,5,192,98,129,236,156, - 99,255,255,140,188,239,171,165,96,116,96,116,97,124,97,124,160,124,161,124, - 96,124,160,124,96,116,33,116,8,96,116,129,32,116,7,32,108,138,32,116, - 32,108,32,108,32,116,97,116,97,124,98,124,97,124,97,124,161,124,3,225, - 132,133,34,133,225,132,33,133,33,133,225,132,3,33,133,129,225,132,8,34, - 133,6,33,133,141,225,132,225,132,33,133,33,133,226,132,101,124,134,115,99, - 124,161,124,160,132,224,124,160,124,96,124,3,160,124,136,161,124,98,116,98, - 116,161,116,161,124,160,124,224,132,33,133,9,34,133,3,33,133,8,225,132, - 9,226,132,130,225,132,225,132,3,226,132,138,162,132,163,124,100,124,37,124, - 37,116,197,115,70,107,70,107,7,107,199,106,6,199,98,130,199,106,199,106, - 3,6,107,137,70,107,70,107,134,115,198,115,36,124,98,124,35,108,195,99, - 225,124,4,225,132,143,161,132,34,116,96,116,161,124,162,124,99,124,195,107, - 195,107,34,108,34,108,33,116,33,116,97,116,97,116,97,124,3,161,124,131, - 160,124,160,124,47,190,28,255,255,131,122,231,227,132,225,124,3,226,132,11, - 34,133,145,33,133,33,133,225,132,163,124,37,108,199,99,136,99,200,99,200, - 99,136,91,199,99,39,100,200,99,200,99,136,99,137,91,137,91,4,200,99, - 8,40,108,136,103,116,165,124,165,124,103,116,102,116,102,116,166,116,165,124, - 3,228,124,131,227,124,229,132,122,231,18,255,255,133,246,214,161,124,162,124, - 226,124,226,124,9,162,124,131,225,124,224,124,225,124,4,226,132,139,225,132, - 225,132,226,132,226,132,224,124,161,124,163,124,163,124,162,124,224,124,225,132, - 5,226,132,23,225,132,7,226,132,132,227,124,226,132,226,132,225,132,4,226, - 132,132,225,132,160,124,171,165,189,247,20,255,255,131,59,231,133,115,128,90, - 7,193,98,109,2,15,255,255,133,228,164,246,222,255,255,189,247,163,156,10, - 96,148,131,162,148,49,206,254,255,3,255,255,134,124,239,177,181,198,123,133, - 115,46,165,249,222,50,255,255,138,254,255,248,222,173,181,100,148,99,140,98, - 140,98,140,98,148,97,148,97,148,9,96,148,132,172,189,255,255,255,255,246, - 222,3,96,148,129,170,181,6,255,255,129,104,140,6,192,98,129,243,197,36, - 255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5, - 192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98,130,132,115,190, - 247,16,255,255,129,243,197,6,192,98,129,184,214,9,255,255,129,249,222,6, - 192,98,129,183,214,13,255,255,129,39,132,5,192,98,129,171,148,7,255,255, - 129,111,173,6,192,98,130,198,131,249,222,16,255,255,129,198,131,5,192,98, - 129,236,156,98,255,255,141,179,206,164,132,96,116,161,124,98,124,97,124,161, - 124,161,124,97,124,97,124,96,124,96,116,97,116,8,96,116,130,32,116,32, - 116,4,32,108,6,32,116,135,160,124,225,132,225,132,224,132,224,132,225,132, - 225,132,3,34,133,8,225,132,11,34,133,3,33,133,4,225,132,137,226,132, - 100,124,134,115,35,124,161,124,160,124,224,132,160,124,96,124,3,160,124,136, - 161,124,162,116,98,116,96,116,160,124,160,124,224,132,225,132,8,34,133,129, - 33,133,10,225,132,10,226,132,130,225,132,225,132,3,226,132,138,162,132,163, - 124,100,124,101,124,37,116,197,115,70,107,6,107,199,106,199,106,6,199,98, - 142,199,106,199,106,7,107,6,107,6,107,70,107,70,107,134,115,134,115,196, - 115,98,124,35,108,131,99,161,124,5,225,132,147,34,116,96,116,161,124,162, - 124,99,124,196,107,195,107,34,108,34,116,33,116,33,116,98,116,97,116,98, - 124,162,124,161,124,160,124,227,132,246,214,30,255,255,130,179,198,161,116,3, - 226,124,130,226,132,226,132,11,34,133,3,33,133,141,226,132,164,116,38,108, - 136,99,72,83,136,91,199,99,200,99,200,99,136,99,73,91,73,91,136,99, - 4,200,99,6,40,108,144,39,108,103,116,165,124,102,116,39,108,103,116,103, - 116,166,116,166,124,165,124,165,124,164,124,229,124,164,116,106,149,190,247,18, - 255,255,130,48,182,160,116,3,226,124,7,162,124,131,225,124,224,124,225,124, - 3,226,132,129,225,132,4,226,132,140,224,124,161,124,163,124,163,124,162,124, - 224,124,225,132,226,132,34,133,33,133,33,133,226,132,9,225,132,129,226,132, - 3,225,132,129,226,132,9,225,132,5,226,132,131,227,124,226,132,227,132,7, - 226,132,132,225,132,160,124,238,173,254,255,20,255,255,131,248,222,68,107,128, - 90,8,193,98,92,2,15,255,255,133,161,156,229,164,254,255,255,255,181,222, - 11,96,148,131,97,148,230,164,181,222,4,255,255,130,189,247,124,239,55,255, - 255,135,123,239,49,198,165,156,98,140,98,148,97,148,97,148,10,96,148,135, - 47,198,255,255,255,255,238,197,96,148,96,148,170,181,6,255,255,129,104,140, - 6,192,98,129,243,197,36,255,255,129,46,165,5,192,98,130,1,99,124,239, - 8,255,255,129,46,165,5,192,98,130,132,115,254,255,8,255,255,129,170,148, - 5,192,98,130,132,115,190,247,16,255,255,129,236,156,6,192,98,129,184,214, - 9,255,255,129,249,222,6,192,98,129,183,214,13,255,255,129,39,132,5,192, - 98,129,171,148,6,255,255,130,190,247,132,115,5,192,98,130,133,115,189,247, - 17,255,255,129,198,131,5,192,98,129,236,156,96,255,255,143,123,239,106,157, - 96,116,96,116,161,124,161,124,98,124,97,124,161,124,161,124,97,124,96,124, - 96,124,97,116,97,116,10,96,116,131,32,116,33,108,32,108,3,96,116,3, - 32,116,137,96,116,224,132,224,132,225,132,225,132,224,132,224,132,225,132,33, - 133,4,225,132,130,226,132,226,132,3,225,132,5,34,133,3,33,133,5,34, - 133,130,33,133,33,133,5,225,132,132,163,124,134,115,196,115,161,124,8,160, - 124,131,161,116,97,116,97,116,3,160,124,130,224,132,33,133,6,34,133,132, - 33,133,33,133,225,132,33,133,8,225,132,10,226,132,130,225,132,225,132,3, - 226,132,143,162,132,163,124,100,124,100,124,37,116,197,115,70,107,6,107,7, - 107,199,106,199,98,199,98,135,98,199,98,199,98,4,199,106,139,6,107,6, - 107,70,107,70,107,134,115,134,115,197,115,98,124,35,108,195,99,161,124,5, - 225,132,146,98,116,96,116,161,124,162,124,99,124,35,116,194,107,195,107,34, - 108,33,116,33,116,97,116,97,116,98,124,161,124,96,116,104,157,123,239,32, - 255,255,134,107,157,163,116,164,124,227,124,227,124,226,124,3,226,132,11,34, - 133,142,33,133,33,133,226,132,163,124,38,108,135,91,136,91,72,91,136,91, - 136,91,72,91,73,83,136,99,136,99,4,200,99,5,40,108,136,39,108,103, - 116,166,116,166,116,102,116,39,108,103,116,166,116,6,165,124,130,163,116,238, - 173,19,255,255,132,170,157,161,116,227,124,226,124,6,162,124,3,225,124,133, - 225,132,226,132,226,132,225,132,225,132,3,226,132,136,225,124,161,124,163,116, - 163,124,163,124,224,124,225,132,226,132,6,225,132,129,33,133,20,225,132,6, - 226,132,129,225,132,8,226,132,131,225,124,224,124,49,190,21,255,255,131,118, - 206,2,99,128,90,9,193,98,99,2,15,255,255,134,162,156,96,148,47,198, - 255,255,255,255,236,189,10,96,148,133,97,148,97,148,98,148,41,173,246,222, - 61,255,255,133,189,247,49,206,165,156,97,148,97,148,11,96,148,134,246,222, - 255,255,254,255,37,165,96,148,170,181,6,255,255,129,104,140,6,192,98,129, - 243,197,36,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129, - 46,165,5,192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98,130, - 67,115,190,247,15,255,255,130,190,247,67,115,6,192,98,129,184,214,9,255, - 255,129,249,222,6,192,98,129,183,214,13,255,255,129,39,132,5,192,98,129, - 171,148,6,255,255,129,58,231,6,192,98,129,177,181,18,255,255,129,132,115, - 5,192,98,129,236,156,95,255,255,131,49,190,163,132,96,116,4,161,124,137, - 98,124,97,124,160,124,161,124,97,124,160,124,160,124,96,116,32,116,8,96, - 116,133,32,116,96,116,32,116,32,108,32,108,5,32,116,130,33,116,96,124, - 5,224,132,136,160,132,224,132,225,132,161,124,161,132,225,132,225,132,33,133, - 9,34,133,3,33,133,6,34,133,131,225,132,33,133,33,133,3,225,132,132, - 227,132,38,116,134,115,99,124,4,160,124,129,96,124,4,160,124,130,161,116, - 97,116,3,160,124,130,224,132,33,133,7,34,133,129,33,133,11,225,132,9, - 226,132,130,225,132,225,132,3,226,132,138,162,132,163,124,100,124,100,124,37, - 116,197,115,70,107,70,107,7,107,199,106,5,199,98,4,199,106,139,6,107, - 6,107,70,107,70,107,70,115,134,115,133,115,98,124,35,108,195,99,161,124, - 5,225,132,145,97,124,160,124,161,124,162,124,99,124,195,115,194,107,195,107, - 34,108,33,116,33,116,97,116,97,116,96,116,96,116,47,182,254,247,33,255, - 255,140,124,239,168,124,101,108,102,116,102,116,165,124,164,124,227,124,226,124, - 226,132,226,132,225,132,10,34,133,146,33,133,33,133,34,133,163,124,198,99, - 71,83,200,74,200,74,8,75,201,74,136,91,136,91,200,99,200,99,201,99, - 200,99,200,99,40,100,4,40,108,144,103,108,103,108,102,116,102,116,103,108, - 40,108,103,108,165,116,228,124,165,124,166,124,165,124,165,124,228,124,163,116, - 115,190,18,255,255,132,123,239,37,141,161,116,226,124,5,162,124,131,225,124, - 225,124,225,132,3,226,132,3,225,132,139,226,132,225,132,224,124,161,124,163, - 116,163,124,162,124,224,124,225,132,226,132,226,132,6,225,132,130,33,133,33, - 133,15,225,132,129,33,133,3,225,132,5,226,132,129,227,132,8,226,132,131, - 224,124,226,124,180,206,21,255,255,131,178,189,193,98,192,90,10,193,98,93, - 2,15,255,255,135,162,156,96,148,96,148,56,231,255,255,254,255,39,173,9, - 96,148,136,97,148,97,148,98,148,98,140,98,140,41,165,181,214,190,247,55, - 255,255,129,123,239,4,255,255,131,189,247,48,198,162,148,11,96,148,134,163, - 156,188,247,255,255,56,231,96,148,106,181,6,255,255,129,104,140,6,192,98, - 129,243,197,36,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255, - 129,46,165,5,192,98,130,132,115,254,255,8,255,255,129,170,148,5,192,98, - 130,1,99,124,239,15,255,255,129,242,189,7,192,98,129,184,214,9,255,255, - 129,249,222,6,192,98,129,183,214,13,255,255,129,39,132,5,192,98,129,171, - 148,6,255,255,129,183,214,6,192,98,129,117,206,17,255,255,129,118,206,6, - 192,98,129,236,156,93,255,255,132,57,231,105,157,96,116,96,116,5,161,124, - 135,97,124,161,124,160,124,97,124,97,124,160,124,160,124,9,96,116,133,32, - 116,32,116,32,108,33,108,32,108,4,32,116,136,96,116,32,116,33,116,96, - 124,160,124,224,132,224,132,160,132,3,161,124,134,97,124,225,132,33,133,33, - 133,225,132,33,133,6,34,133,129,33,133,11,34,133,129,33,133,3,225,132, - 134,226,132,225,132,226,132,101,124,134,115,36,124,9,160,124,130,161,116,97, - 116,3,160,124,130,224,132,33,133,6,34,133,129,33,133,4,225,132,131,226, - 132,226,132,225,132,14,226,132,129,225,132,4,226,132,138,163,132,163,124,100, - 124,100,124,37,116,197,115,70,107,70,107,7,107,199,106,5,199,98,4,199, - 106,3,6,107,156,70,107,70,107,134,115,133,115,99,124,35,108,131,99,161, - 124,226,132,225,132,225,132,224,132,225,132,98,124,97,116,161,124,162,124,99, - 124,35,116,194,107,194,107,34,108,33,116,33,116,97,116,32,108,164,132,245, - 214,36,255,255,141,181,206,164,116,166,116,102,116,103,116,103,116,102,116,164, - 124,164,124,227,124,226,124,226,132,225,132,10,34,133,137,33,133,33,133,163, - 124,38,108,71,91,199,74,72,58,7,50,8,75,3,136,91,129,136,99,5, - 200,99,3,40,108,3,103,108,133,39,108,39,108,40,100,200,99,102,108,5, - 165,124,131,164,124,228,124,56,223,18,255,255,129,247,222,5,162,124,3,225, - 124,131,225,132,226,132,226,132,3,225,132,3,226,132,135,225,124,161,124,163, - 116,163,124,162,124,224,124,225,132,3,226,132,23,225,132,130,33,133,33,133, - 5,226,132,134,227,132,226,132,227,132,226,132,226,132,225,132,3,226,132,132, - 227,132,224,124,227,132,248,222,21,255,255,131,111,173,128,90,192,90,10,193, - 98,1,192,98,96,2,15,255,255,136,162,156,96,148,96,148,228,164,189,247, - 255,255,188,247,228,164,8,96,148,138,97,148,97,148,98,148,98,140,98,140, - 99,140,99,140,231,156,49,198,123,239,51,255,255,133,183,214,236,156,132,115, - 105,140,118,206,4,255,255,130,123,239,171,181,11,96,148,133,171,189,255,255, - 255,255,171,189,171,189,6,255,255,129,104,140,6,192,98,129,243,197,36,255, - 255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192, - 98,130,132,115,254,255,8,255,255,129,235,156,6,192,98,129,117,206,14,255, - 255,130,124,239,66,107,7,192,98,129,184,214,9,255,255,129,249,222,6,192, - 98,129,183,214,13,255,255,129,39,132,5,192,98,129,171,148,6,255,255,129, - 118,206,6,192,98,129,242,189,16,255,255,130,124,239,132,115,6,192,98,129, - 236,156,91,255,255,134,190,247,48,182,162,124,96,116,97,124,97,124,5,161, - 124,135,97,124,97,124,160,124,97,124,160,124,96,124,160,124,8,96,116,138, - 32,116,32,116,32,108,33,108,33,108,32,108,96,116,96,116,32,116,32,116, - 4,96,116,137,160,124,161,124,97,124,97,124,98,116,97,116,96,124,224,132, - 33,133,4,225,132,6,34,133,129,33,133,11,34,133,129,33,133,3,225,132, - 135,226,132,225,132,225,132,164,124,134,115,196,115,161,124,8,160,124,130,161, - 124,161,124,4,160,124,129,224,132,6,34,133,130,33,133,33,133,4,225,132, - 15,226,132,130,225,132,225,132,4,226,132,138,163,132,163,124,100,124,100,124, - 37,116,197,115,70,107,70,107,7,107,199,106,5,199,98,3,199,106,129,198, - 106,3,6,107,136,70,107,70,107,134,115,133,115,99,124,35,108,195,99,161, - 124,3,225,132,144,224,132,225,132,162,124,34,108,161,124,162,124,99,124,195, - 115,194,107,34,108,34,108,33,116,32,116,32,108,105,157,123,231,38,255,255, - 132,174,165,164,116,165,124,165,116,3,102,116,134,166,116,165,116,164,124,227, - 124,226,124,226,124,3,226,132,9,34,133,135,163,124,101,116,198,99,7,75, - 7,50,198,49,7,75,3,136,91,3,136,99,132,201,99,201,99,200,99,201, - 99,9,40,108,131,103,108,166,116,165,124,3,229,124,131,164,124,39,141,124, - 239,18,255,255,132,114,190,160,116,163,124,162,124,3,225,124,3,226,132,4, - 225,132,137,226,132,225,132,225,124,161,116,163,116,163,116,162,124,224,124,225, - 132,3,226,132,25,225,132,131,226,132,226,132,227,132,7,226,132,129,225,132, - 4,226,132,131,224,124,102,149,57,231,20,255,255,132,190,247,237,156,128,90, - 193,90,9,193,98,131,192,98,192,98,193,98,88,2,15,255,255,129,162,156, - 3,96,148,133,170,181,255,255,255,255,122,239,163,156,7,96,148,133,97,148, - 97,148,98,148,98,140,98,140,3,99,140,133,100,140,100,148,43,173,116,206, - 124,239,45,255,255,133,59,231,178,189,105,140,68,107,68,107,3,67,107,130, - 105,148,183,214,4,255,255,130,181,222,228,156,10,96,148,132,247,230,255,255, - 123,239,181,222,6,255,255,129,104,140,6,192,98,129,52,198,36,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,8,255,255,129,177,181,6,192,98,129,104,140,13,255,255,130, - 189,247,39,132,8,192,98,129,184,214,9,255,255,129,249,222,6,192,98,129, - 183,214,13,255,255,129,39,132,5,192,98,129,171,148,6,255,255,129,249,222, - 6,192,98,129,105,140,15,255,255,130,249,222,197,123,7,192,98,129,236,156, - 90,255,255,132,247,222,39,149,32,108,97,116,3,97,124,4,161,124,3,97, - 124,3,160,124,132,96,124,160,124,96,116,32,116,6,96,116,130,32,116,32, - 108,3,33,108,132,32,108,96,116,32,116,32,116,5,96,116,136,160,124,96, - 124,96,116,160,124,96,124,160,124,224,132,224,132,4,225,132,131,224,132,225, - 132,33,133,16,34,133,130,33,133,33,133,5,225,132,132,227,132,198,115,133, - 115,98,124,9,160,124,129,161,124,4,160,124,130,224,132,33,133,5,34,133, - 3,33,133,130,225,132,225,132,17,226,132,129,225,132,4,226,132,138,163,132, - 163,124,100,124,100,124,37,116,197,115,134,115,70,107,6,107,199,106,6,199, - 98,3,199,106,3,6,107,3,70,107,150,134,115,99,124,35,108,131,99,161, - 124,226,132,225,132,225,132,224,132,224,132,162,124,34,108,161,124,162,124,99, - 124,195,107,194,107,34,108,34,116,32,108,33,116,239,181,40,255,255,132,189, - 239,233,132,165,116,166,116,4,165,124,3,166,116,132,165,124,164,124,227,124, - 227,124,3,226,132,8,34,133,140,226,132,164,124,38,108,135,91,131,41,130, - 8,199,66,137,91,136,91,136,91,137,91,137,91,3,137,99,4,201,99,129, - 200,107,7,40,108,130,103,108,166,116,3,165,124,130,163,116,107,157,19,255, - 255,133,171,165,160,116,225,124,225,124,225,132,4,226,132,129,225,132,3,226, - 132,137,225,132,224,124,161,116,163,116,163,116,162,116,224,124,225,132,226,132, - 24,225,132,131,226,132,225,132,225,132,4,226,132,129,225,132,5,226,132,136, - 225,132,226,132,225,132,226,132,226,132,224,124,168,157,188,239,20,255,255,131, - 124,239,41,140,128,82,13,193,98,1,192,98,90,2,15,255,255,129,227,164, - 4,96,148,133,48,206,255,255,255,255,57,239,228,156,6,96,148,133,97,148, - 97,148,98,148,98,140,98,140,3,99,140,4,100,140,133,102,148,44,173,51, - 206,58,231,254,255,38,255,255,136,58,231,243,189,171,148,133,115,132,115,68, - 115,68,107,68,107,3,67,107,132,66,107,66,107,236,156,123,239,3,255,255, - 130,188,247,170,181,9,96,148,129,39,173,9,255,255,129,104,140,6,192,98, - 129,176,181,30,58,231,129,59,231,5,255,255,129,46,165,5,192,98,130,1, - 99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,8,255,255, - 129,249,222,7,192,98,129,112,173,11,255,255,130,248,222,197,123,9,192,98, - 129,184,214,9,255,255,129,249,222,6,192,98,129,111,173,13,255,255,129,39, - 132,5,192,98,129,171,148,6,255,255,130,190,247,67,107,6,192,98,129,117, - 206,12,255,255,131,189,247,176,181,2,107,8,192,98,129,236,156,88,255,255, - 132,189,247,239,181,97,116,96,116,4,97,124,5,161,124,3,97,124,3,160, - 124,132,96,124,160,124,96,116,97,116,6,96,116,132,32,116,32,108,33,108, - 33,108,4,32,108,6,96,116,135,96,124,160,124,96,124,160,124,160,124,224, - 132,224,132,7,225,132,3,33,133,14,34,133,130,33,133,33,133,5,225,132, - 134,226,132,37,124,70,115,35,124,161,124,160,132,7,160,124,129,161,124,4, - 160,124,130,224,132,33,133,4,34,133,130,33,133,33,133,4,225,132,16,226, - 132,130,225,132,225,132,4,226,132,138,163,132,163,124,100,124,100,124,37,116, - 197,115,134,115,70,107,6,107,199,106,5,199,98,4,199,106,3,6,107,3, - 70,107,133,134,115,99,124,35,108,131,99,161,124,4,225,132,140,224,132,162, - 124,34,108,161,124,162,124,99,124,195,115,194,107,34,108,192,107,100,124,182, - 206,42,255,255,131,248,214,165,116,165,116,9,166,116,137,165,124,165,124,164, - 124,227,124,227,124,226,132,226,132,33,133,33,133,5,34,133,137,226,132,227, - 124,100,116,130,41,0,0,130,8,71,58,73,83,73,83,3,73,91,130,137, - 91,137,91,4,137,99,131,201,99,200,99,200,99,4,40,108,137,103,108,103, - 108,103,116,102,116,166,116,166,116,165,124,163,116,48,182,18,255,255,132,188, - 247,36,141,224,124,225,132,3,226,132,3,225,132,3,226,132,136,224,124,161, - 116,163,116,163,116,162,116,224,124,225,132,226,132,25,225,132,14,226,132,134, - 225,132,226,132,226,124,224,124,236,165,190,247,20,255,255,131,59,231,134,123, - 128,82,8,193,98,129,192,98,3,193,98,3,192,98,157,2,15,255,255,129, - 39,173,5,96,148,133,180,214,255,255,255,255,123,239,229,164,5,96,148,133, - 97,148,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3,101,140,134, - 37,140,169,156,175,181,117,206,58,231,189,247,29,255,255,133,190,247,59,231, - 117,206,111,173,105,140,4,133,115,132,132,115,68,115,68,107,68,107,3,67, - 107,3,66,107,130,132,115,51,198,4,255,255,129,113,206,9,96,148,129,247, - 230,8,255,255,129,104,140,7,192,98,129,0,99,29,192,98,130,132,115,254, - 255,4,255,255,129,46,165,5,192,98,130,1,99,124,239,8,255,255,129,46, - 165,5,192,98,130,132,115,254,255,9,255,255,129,105,140,7,192,98,130,171, - 148,249,222,6,255,255,131,189,247,183,214,171,148,4,192,98,130,132,115,67, - 107,5,192,98,129,184,214,9,255,255,130,124,239,1,99,6,192,98,134,237, - 156,183,214,58,231,59,231,59,231,189,247,7,255,255,129,39,132,5,192,98, - 129,171,148,7,255,255,129,111,173,6,192,98,131,1,99,177,181,125,239,7, - 255,255,132,190,247,248,222,111,173,132,115,10,192,98,129,39,132,87,255,255, - 132,246,214,230,140,32,108,97,116,4,97,124,130,160,124,160,124,5,161,124, - 130,97,124,97,124,3,160,124,130,96,124,160,124,7,96,116,131,32,116,32, - 116,32,108,3,33,108,3,32,108,134,33,116,96,116,97,116,97,116,33,116, - 96,116,4,160,124,3,224,132,130,225,132,225,132,3,224,132,5,225,132,129, - 33,133,4,34,133,130,33,133,33,133,3,34,133,130,33,133,33,133,3,34, - 133,130,33,133,33,133,4,225,132,135,226,132,100,124,133,115,36,116,161,124, - 160,124,224,132,11,160,124,130,224,132,225,132,4,34,133,130,33,133,33,133, - 4,225,132,17,226,132,129,225,132,4,226,132,138,163,132,163,124,100,124,37, - 124,37,116,197,115,70,115,70,107,6,107,199,106,6,199,98,3,199,106,3, - 6,107,4,70,107,132,99,124,35,108,131,99,161,116,3,225,132,140,224,132, - 224,132,99,124,194,107,160,124,162,124,99,124,35,116,194,107,192,99,41,149, - 123,231,25,255,255,129,59,231,18,255,255,131,49,182,100,108,165,124,12,166, - 116,147,165,124,165,124,164,124,227,124,226,132,226,132,33,133,33,133,34,133, - 34,133,226,132,34,133,195,107,3,58,64,33,64,0,65,0,198,41,9,75, - 3,9,83,3,73,91,3,137,91,133,137,99,137,99,201,99,201,99,200,99, - 3,40,108,131,39,108,103,116,102,116,3,103,116,131,102,116,101,108,183,206, - 18,255,255,133,56,223,225,124,225,132,226,132,226,132,4,225,132,138,226,132, - 226,132,224,124,161,116,163,116,163,116,162,116,224,124,225,132,226,132,26,225, - 132,129,33,133,10,226,132,3,225,132,132,226,132,226,124,224,124,46,182,21, - 255,255,131,248,222,68,115,128,90,9,193,98,130,192,98,193,98,4,192,98, - 1,0,99,201,2,15,255,255,129,172,189,5,96,148,134,97,148,246,222,255, - 255,255,255,189,247,105,181,4,96,148,133,97,148,97,148,98,148,98,140,98, - 140,3,99,140,4,100,140,3,101,140,130,37,140,37,140,3,38,140,136,168, - 148,236,164,176,181,52,198,248,222,59,231,189,247,254,255,16,255,255,135,189, - 247,123,239,249,222,53,198,177,181,237,156,41,132,3,134,115,5,133,115,132, - 132,115,68,115,68,107,68,107,3,67,107,4,66,107,131,65,107,235,156,124, - 239,3,255,255,130,246,222,162,156,7,96,148,129,170,181,8,255,255,129,104, - 140,37,192,98,130,132,115,254,255,4,255,255,129,46,165,5,192,98,130,1, - 99,124,239,8,255,255,129,46,165,5,192,98,130,132,115,254,255,9,255,255, - 130,59,231,67,107,8,192,98,135,133,115,105,148,236,156,236,156,171,148,40, - 132,67,107,5,192,98,131,132,115,58,231,198,123,5,192,98,129,184,214,10, - 255,255,129,198,123,9,192,98,131,1,99,0,99,176,181,7,255,255,129,39, - 132,5,192,98,129,171,148,7,255,255,130,189,247,197,123,7,192,98,137,67, - 107,105,140,110,173,177,181,177,181,111,173,237,156,105,140,67,115,6,192,98, - 130,171,148,176,181,6,192,98,132,170,148,177,181,46,165,45,165,81,255,255, - 133,124,239,172,165,96,116,96,116,98,124,5,97,124,7,161,124,131,97,124, - 97,124,161,124,4,160,124,7,96,116,149,32,116,32,108,33,108,33,108,32, - 108,32,108,33,108,32,108,32,108,33,116,96,116,160,124,97,116,97,116,33, - 116,96,124,160,124,160,124,224,132,160,124,160,124,4,224,132,129,160,132,4, - 224,132,131,225,132,225,132,33,133,3,34,133,10,33,133,131,34,133,33,133, - 33,133,4,225,132,135,226,132,163,124,197,115,36,116,98,124,160,124,224,132, - 11,160,124,130,160,132,224,132,4,34,133,132,33,133,33,133,225,132,225,132, - 18,226,132,130,225,132,225,132,4,226,132,138,163,124,163,124,100,124,37,124, - 37,116,197,115,134,115,70,107,6,107,199,106,6,199,98,132,199,106,199,106, - 198,106,198,106,3,6,107,3,70,107,133,36,124,35,108,131,99,97,116,33, - 133,4,225,132,136,99,124,194,107,160,116,162,124,162,124,194,107,194,107,241, - 181,25,255,255,132,254,255,242,181,101,108,182,206,17,255,255,131,190,247,42, - 141,100,116,17,166,116,148,165,124,228,124,226,124,226,132,226,132,227,124,162, - 124,196,74,67,66,66,58,64,33,64,0,0,0,4,25,136,66,9,83,201, - 74,9,83,9,83,73,83,4,73,91,145,137,91,137,91,137,99,201,99,200, - 99,40,108,200,107,40,108,40,108,103,108,103,116,103,116,166,116,166,116,102, - 108,103,116,59,231,18,255,255,130,179,198,224,124,5,225,132,132,226,132,226, - 132,224,124,161,116,3,163,116,131,224,124,225,132,226,132,21,225,132,129,33, - 133,4,225,132,130,226,132,227,124,4,226,132,140,225,132,226,132,226,132,225, - 132,226,132,33,133,33,133,225,132,226,132,225,124,225,124,178,198,21,255,255, - 131,118,206,2,99,128,90,11,193,98,5,192,98,1,0,99,159,2,15,255, - 255,129,179,214,6,96,148,130,161,148,246,222,3,255,255,129,47,198,3,96, - 148,133,97,148,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3,101, - 140,130,37,140,37,140,4,38,140,130,38,132,38,132,3,39,132,135,104,140, - 170,148,236,156,46,165,111,173,177,181,178,181,5,243,189,135,178,181,177,181, - 112,173,46,165,236,156,107,140,41,132,3,199,123,129,198,123,5,134,115,5, - 133,115,132,132,115,68,115,68,107,68,107,3,67,107,4,66,107,132,65,107, - 65,107,132,123,124,239,3,255,255,130,122,239,228,164,6,96,148,130,161,156, - 124,247,7,255,255,129,104,140,37,192,98,130,132,115,254,255,4,255,255,129, - 46,165,5,192,98,130,1,99,124,239,8,255,255,129,46,165,5,192,98,130, - 132,115,254,255,10,255,255,130,248,222,67,107,18,192,98,132,198,123,59,231, - 255,255,132,115,5,192,98,129,184,214,10,255,255,129,52,198,11,192,98,129, - 112,173,7,255,255,129,39,132,5,192,98,129,171,148,8,255,255,130,123,239, - 198,123,19,192,98,132,67,107,242,189,255,255,123,239,9,192,98,129,132,115, - 80,255,255,134,116,206,164,124,32,108,97,116,98,116,98,124,4,97,124,132, - 161,124,161,124,160,124,160,124,4,161,124,4,97,124,131,160,124,160,124,96, - 124,6,96,116,145,32,116,32,116,33,108,33,108,32,108,32,116,32,108,33, - 108,32,116,97,116,33,116,97,116,34,116,33,116,96,116,96,116,96,124,5, - 160,124,131,224,132,224,132,160,132,5,160,124,3,225,132,129,33,133,3,34, - 133,3,33,133,130,225,132,225,132,7,33,133,4,225,132,137,226,132,225,132, - 227,132,37,124,196,115,99,124,161,124,160,132,224,132,11,160,124,130,224,132, - 33,133,3,34,133,129,33,133,3,225,132,18,226,132,3,225,132,3,226,132, - 141,163,132,163,124,100,124,100,124,37,116,197,115,134,115,70,107,6,107,199, - 106,199,98,199,98,135,98,3,199,98,3,199,106,129,198,106,3,6,107,3, - 70,107,133,36,116,35,108,131,99,97,116,33,133,4,225,132,135,99,124,194, - 107,160,116,162,124,97,116,102,124,183,214,25,255,255,134,124,239,109,149,37, - 108,102,108,169,132,189,247,17,255,255,131,58,223,166,116,165,116,9,166,116, - 5,166,124,5,166,116,144,165,116,165,116,165,124,37,108,198,82,197,74,133, - 74,68,58,67,41,129,16,0,0,66,8,199,49,137,66,201,74,201,74,4, - 9,83,3,73,91,135,137,91,137,99,137,99,201,99,201,99,200,99,200,107, - 5,40,108,132,103,116,38,108,235,132,190,247,18,255,255,137,234,165,224,124, - 225,132,225,132,226,132,226,132,225,132,224,124,162,116,3,163,116,131,161,124, - 225,132,226,132,15,225,132,129,226,132,10,225,132,11,226,132,3,33,133,132, - 226,132,224,124,35,133,246,214,21,255,255,131,242,189,193,90,192,90,10,193, - 98,3,192,98,5,0,99,169,2,15,255,255,130,123,239,161,148,6,96,148, - 130,161,148,246,222,3,255,255,136,246,222,228,164,96,148,97,148,97,148,98, - 148,98,140,98,140,3,99,140,4,100,140,3,101,140,130,37,140,37,140,4, - 38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12,199,123,129,198, - 123,5,134,115,5,133,115,132,132,115,68,115,68,107,68,107,3,67,107,4, - 66,107,132,65,107,66,107,242,189,254,255,4,255,255,130,123,239,229,164,6, - 96,148,129,179,214,7,255,255,129,39,132,37,192,98,130,67,107,254,255,4, - 255,255,129,45,165,6,192,98,129,124,239,8,255,255,129,46,165,5,192,98, - 130,67,107,254,255,11,255,255,130,59,231,105,140,15,192,98,134,1,99,46, - 165,190,247,255,255,255,255,132,115,5,192,98,129,183,214,11,255,255,129,45, - 165,10,192,98,129,111,173,7,255,255,129,198,131,5,192,98,129,170,148,9, - 255,255,131,190,247,46,165,1,99,15,192,98,131,68,115,111,173,124,239,3, - 255,255,129,46,165,8,192,98,129,133,123,78,255,255,136,58,231,42,149,33, - 108,33,116,98,116,98,116,98,124,98,124,4,97,124,132,161,124,161,124,160, - 124,160,124,4,161,124,3,97,124,133,161,124,160,124,160,124,97,116,97,116, - 4,96,116,3,32,116,142,33,108,33,108,32,108,33,108,33,108,33,116,96, - 116,96,116,33,116,160,124,97,116,33,116,96,116,96,116,3,160,124,129,224, - 124,3,224,132,132,160,132,160,124,160,124,161,124,3,160,124,3,224,132,129, - 33,133,3,34,133,130,33,133,33,133,3,225,132,130,33,133,225,132,5,33, - 133,6,225,132,135,226,132,100,124,196,115,99,124,161,124,160,132,224,132,11, - 160,124,130,224,132,225,132,3,34,133,131,33,133,33,133,225,132,19,226,132, - 130,225,132,225,132,3,226,132,140,162,132,163,132,163,124,100,124,100,124,37, - 116,197,115,134,115,70,107,6,107,199,106,199,98,4,135,98,133,199,98,199, - 98,199,106,199,106,198,106,3,6,107,3,70,107,133,36,116,99,116,131,99, - 97,116,33,133,4,225,132,134,99,124,194,107,96,116,96,116,107,165,188,239, - 25,255,255,135,183,206,169,124,38,108,103,116,103,116,37,108,110,157,18,255, - 255,130,117,198,100,108,10,166,116,6,166,124,8,166,116,150,167,116,103,116, - 103,116,39,108,135,99,6,83,69,66,68,41,70,41,9,58,73,66,137,66, - 138,66,138,74,201,74,201,74,9,83,73,83,73,91,73,91,137,91,137,91, - 3,137,99,137,201,99,201,99,200,107,40,108,200,107,40,108,40,108,198,99, - 112,165,18,255,255,142,189,247,101,149,224,124,226,132,226,132,225,132,224,124, - 162,116,163,116,163,116,162,116,161,124,225,124,226,132,25,225,132,132,226,132, - 226,132,226,124,225,132,8,226,132,3,225,132,132,226,132,224,124,37,141,57, - 231,21,255,255,131,46,165,128,90,192,90,10,193,98,133,192,98,192,98,193, - 98,192,98,192,98,4,0,99,184,2,16,255,255,129,39,173,7,96,148,130, - 97,148,180,214,3,255,255,135,189,247,237,189,97,148,97,148,98,148,98,140, - 98,140,3,99,140,4,100,140,3,101,140,130,37,140,37,140,4,38,140,130, - 38,132,38,132,11,39,132,130,199,131,199,131,12,199,123,129,198,123,5,134, - 115,5,133,115,132,132,115,68,115,68,107,68,107,3,67,107,4,66,107,130, - 38,132,249,222,7,255,255,130,123,239,228,164,5,96,148,129,171,181,7,255, - 255,129,237,164,37,198,131,129,106,148,5,255,255,129,177,181,5,198,131,130, - 40,132,124,239,8,255,255,129,242,189,5,198,131,129,170,148,14,255,255,131, - 182,214,171,148,67,107,10,192,98,131,133,123,111,173,59,231,4,255,255,129, - 170,148,5,198,131,129,249,222,12,255,255,139,182,214,171,148,133,115,1,107, - 0,99,192,98,1,99,1,107,67,107,132,115,243,189,7,255,255,129,236,156, - 5,198,131,129,111,173,11,255,255,131,58,231,45,165,132,115,10,192,98,132, - 132,115,171,148,52,198,189,247,6,255,255,131,242,189,133,123,0,99,4,192, - 98,130,1,107,105,140,77,255,255,132,50,190,99,116,33,108,34,116,3,98, - 116,3,97,124,11,161,124,3,97,124,3,160,124,130,97,116,97,116,4,96, - 116,131,32,116,32,116,33,116,4,33,108,147,33,116,96,116,96,116,97,116, - 98,116,160,124,98,116,97,124,161,124,97,124,96,124,160,124,224,124,225,132, - 160,132,224,132,224,132,160,132,160,124,4,161,124,134,160,124,160,124,224,132, - 225,132,225,132,33,133,3,34,133,129,33,133,3,225,132,131,33,133,225,132, - 225,132,5,33,133,3,225,132,137,226,132,225,132,225,132,163,124,197,115,35, - 124,161,124,160,124,224,132,11,160,124,130,160,132,224,132,3,34,133,131,33, - 133,225,132,225,132,19,226,132,130,225,132,225,132,4,226,132,140,163,124,163, - 124,100,124,100,124,37,116,197,115,134,115,70,107,6,107,199,106,199,98,199, - 98,3,135,98,133,199,98,199,98,199,106,199,106,198,106,3,6,107,3,70, - 107,141,36,116,99,116,130,99,97,116,33,133,225,132,226,132,225,132,225,132, - 163,124,193,99,97,116,114,198,26,255,255,131,51,182,39,108,38,108,4,103, - 108,130,38,108,117,198,18,255,255,130,174,165,100,116,9,166,116,131,166,124, - 166,116,166,116,4,166,124,3,165,124,4,166,124,5,166,116,150,167,124,167, - 124,103,116,199,107,72,91,73,74,201,74,73,91,136,99,73,91,73,91,9, - 83,9,83,10,83,9,83,73,83,73,91,73,91,137,91,137,91,137,99,137, - 99,3,201,99,133,200,107,40,108,40,108,199,99,53,190,18,255,255,134,56, - 223,226,132,225,132,225,132,224,124,162,116,3,163,116,131,161,124,225,124,226, - 132,8,225,132,129,33,133,11,225,132,129,226,132,5,225,132,132,226,132,226, - 124,226,132,227,124,7,226,132,135,225,132,226,132,225,132,226,132,160,124,168, - 157,123,239,20,255,255,132,190,255,171,148,128,90,192,98,11,193,98,4,192, - 98,5,0,99,110,2,16,255,255,129,179,214,9,96,148,129,48,206,4,255, - 255,133,247,230,40,173,98,148,98,140,98,140,3,99,140,4,100,140,3,101, - 140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132,130,199,131, - 199,131,12,199,123,129,198,123,5,134,115,5,133,115,132,132,115,68,115,68, - 107,68,107,3,67,107,3,66,107,130,45,165,189,247,5,255,255,134,183,214, - 124,239,255,255,255,255,122,239,163,156,4,96,148,130,228,164,254,255,89,255, - 255,140,189,247,184,214,242,189,46,165,236,156,171,148,171,148,236,156,111,173, - 52,198,249,222,254,255,27,255,255,136,254,255,124,239,58,231,250,230,59,231, - 124,239,189,247,254,255,28,255,255,140,190,247,248,222,243,189,46,165,236,156, - 171,148,171,156,45,165,176,181,52,198,249,222,190,247,11,255,255,134,58,231, - 183,214,117,206,117,206,248,222,124,239,76,255,255,133,57,223,40,149,33,108, - 34,116,34,116,3,98,116,131,98,124,97,124,97,124,12,161,124,135,98,124, - 98,124,97,124,160,124,160,124,96,124,97,116,4,96,116,3,32,116,129,33, - 116,4,33,108,146,32,116,97,116,97,124,161,124,97,116,97,116,33,116,160, - 124,97,124,97,124,224,124,224,124,160,124,160,124,161,124,160,132,160,124,160, - 124,3,161,124,132,97,124,161,124,161,124,224,132,3,225,132,131,33,133,34, - 133,34,133,4,33,133,5,225,132,132,33,133,34,133,34,133,33,133,6,225, - 132,135,163,124,197,115,196,115,162,124,160,124,224,132,160,132,11,160,124,132, - 224,132,33,133,34,133,34,133,3,225,132,18,226,132,3,225,132,4,226,132, - 139,163,132,163,124,100,124,100,124,37,116,197,115,134,115,70,107,6,107,199, - 106,199,98,4,135,98,133,199,98,199,98,199,106,199,106,198,106,4,6,107, - 135,70,107,70,107,36,116,99,116,131,99,33,108,33,133,4,225,132,131,97, - 116,102,124,247,214,25,255,255,131,189,239,109,149,38,100,4,39,108,133,103, - 108,103,108,38,108,104,116,124,239,17,255,255,131,124,239,168,124,101,116,11, - 166,116,132,165,124,165,124,166,124,166,124,7,165,124,129,166,124,9,166,116, - 130,103,116,103,116,3,166,116,134,103,116,103,116,40,108,40,108,200,99,73, - 91,3,10,83,133,73,91,73,91,137,91,137,99,137,99,4,201,99,131,200, - 99,200,99,250,222,18,255,255,132,113,190,160,116,224,124,162,116,3,163,116, - 131,161,124,225,124,226,132,20,225,132,136,226,132,225,132,225,132,226,132,225, - 132,225,132,226,132,227,124,8,226,132,136,225,132,226,132,225,132,33,133,226, - 132,160,124,170,165,189,247,20,255,255,131,124,239,40,140,128,90,10,193,98, - 5,192,98,7,0,99,50,2,16,255,255,130,189,247,163,156,9,96,148,130, - 171,189,190,247,4,255,255,131,180,214,230,156,98,140,3,99,140,4,100,140, - 3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132,130, - 199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,132,132,115,68, - 115,68,107,68,107,3,67,107,131,66,107,40,140,183,214,5,255,255,137,254, - 255,111,173,0,99,197,123,123,239,255,255,255,255,55,231,161,148,3,96,148, - 130,161,148,123,239,127,255,255,127,255,255,13,255,255,132,189,247,239,181,99, - 124,32,116,3,34,116,134,98,116,97,116,98,116,98,124,97,124,97,124,12, - 161,124,133,98,124,98,124,97,124,160,124,160,124,3,97,116,3,96,116,3, - 32,116,5,33,108,138,33,116,160,124,160,124,162,124,98,124,97,124,96,116, - 160,124,160,124,96,124,4,160,124,3,161,124,132,160,124,161,124,162,124,98, - 124,3,161,124,130,225,132,225,132,3,34,133,130,225,132,225,132,4,33,133, - 5,225,132,145,33,133,33,133,34,133,33,133,225,132,225,132,226,132,226,132, - 225,132,225,132,226,132,37,116,133,115,98,124,160,124,160,124,160,132,11,160, - 124,135,224,132,33,133,34,133,33,133,33,133,225,132,225,132,7,226,132,130, - 225,132,225,132,9,226,132,3,225,132,4,226,132,139,163,124,163,124,100,124, - 101,124,37,116,197,115,134,115,70,107,6,107,198,106,199,98,5,135,98,132, - 199,98,199,106,199,106,198,106,4,6,107,141,70,107,70,107,196,115,99,116, - 131,99,34,108,33,133,225,132,225,132,224,124,160,124,237,173,125,239,25,255, - 255,134,248,214,169,124,38,100,39,108,40,108,40,108,4,39,108,131,103,108, - 38,108,45,149,18,255,255,136,248,214,102,108,102,116,166,116,166,116,102,116, - 166,116,166,124,3,166,116,130,166,124,166,116,7,166,124,5,165,124,132,166, - 124,166,124,165,124,166,124,14,166,116,137,103,116,103,116,40,108,137,91,9, - 83,202,74,202,82,10,83,74,83,3,73,91,134,137,99,201,99,201,99,136, - 91,107,116,125,239,18,255,255,136,170,157,96,108,163,116,163,116,162,116,161, - 124,225,124,226,132,9,225,132,129,33,133,7,225,132,132,226,132,225,132,226, - 132,226,132,4,225,132,129,33,133,10,226,132,3,225,132,132,226,132,226,132, - 224,124,47,182,21,255,255,132,250,230,133,123,128,90,193,98,3,192,98,6, - 193,98,5,192,98,8,0,99,40,2,17,255,255,129,48,206,10,96,148,130, - 38,165,57,231,4,255,255,133,190,255,115,206,231,156,99,140,99,140,4,100, - 140,3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132, - 130,199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,137,132,115, - 68,115,68,107,68,107,67,107,67,107,198,123,243,189,254,255,5,255,255,130, - 58,231,104,140,3,0,99,133,197,123,58,231,255,255,255,255,114,214,4,96, - 148,129,56,231,127,255,255,127,255,255,12,255,255,142,246,214,230,140,33,116, - 98,116,98,116,35,116,34,116,34,116,98,116,97,116,98,116,98,124,98,124, - 97,124,12,161,124,135,97,124,97,124,161,124,160,124,96,124,97,116,97,116, - 5,96,116,145,32,116,32,116,33,116,33,116,33,108,32,108,33,108,97,116, - 160,124,160,124,161,124,162,124,161,124,98,124,96,124,160,124,96,124,3,160, - 124,5,161,124,135,224,132,225,132,225,132,225,124,162,124,225,132,226,132,4, - 34,133,132,226,132,34,133,33,133,33,133,7,225,132,4,33,133,6,225,132, - 135,226,132,37,124,70,107,36,124,161,124,160,124,160,132,3,160,124,129,96, - 124,7,160,124,135,160,132,224,132,34,133,34,133,33,133,225,132,225,132,8, - 226,132,129,225,132,9,226,132,3,225,132,4,226,132,139,163,124,163,124,100, - 124,100,124,37,116,197,115,134,115,70,107,6,107,198,106,199,98,5,135,98, - 132,199,98,199,106,199,106,198,106,4,6,107,139,70,107,70,107,197,115,99, - 116,131,99,33,108,33,133,225,132,160,124,226,132,179,206,26,255,255,134,243, - 181,199,99,199,99,39,108,39,108,200,107,7,39,108,130,198,99,52,182,18, - 255,255,133,242,173,37,108,103,116,102,116,102,116,3,166,116,136,166,124,166, - 116,166,116,103,116,102,116,166,116,166,124,166,116,9,166,124,130,165,124,166, - 124,16,166,116,135,102,116,103,116,103,116,40,108,200,99,73,91,202,82,3, - 202,74,135,10,83,73,91,73,91,137,91,137,99,197,99,172,165,18,255,255, - 133,188,239,230,132,98,116,162,116,160,124,17,225,132,7,226,132,132,33,133, - 225,132,225,132,33,133,11,226,132,134,33,133,225,132,225,132,225,124,225,124, - 178,198,21,255,255,131,183,214,67,107,128,90,3,193,98,3,192,98,137,193, - 98,192,98,192,98,193,98,192,98,0,99,192,98,0,99,192,98,9,0,99, - 55,2,15,255,255,132,189,247,255,255,189,247,228,164,10,96,148,130,97,148, - 113,206,5,255,255,131,254,255,181,214,41,165,4,100,140,3,101,140,130,37, - 140,37,140,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12, - 199,123,129,198,123,5,134,115,5,133,115,135,132,115,68,115,68,107,68,107, - 198,123,242,189,189,247,6,255,255,131,242,189,67,115,1,107,4,0,99,133, - 132,115,58,231,255,255,255,255,170,181,3,96,148,129,181,222,127,255,255,127, - 255,255,10,255,255,135,188,239,237,173,161,124,97,116,99,124,99,116,98,116, - 3,34,116,134,98,116,97,116,97,116,97,124,98,124,98,124,12,161,124,141, - 97,124,97,124,160,124,160,124,97,124,98,116,97,116,96,116,96,116,32,116, - 96,116,32,116,32,116,3,33,116,134,32,116,33,116,96,116,97,116,96,116, - 160,124,3,224,132,130,161,124,161,124,4,160,124,130,224,132,161,132,8,225, - 132,129,33,133,4,34,133,131,225,132,34,133,34,133,15,33,133,129,225,132, - 3,226,132,140,225,132,225,132,100,124,70,107,36,116,161,124,160,124,160,132, - 160,132,160,124,160,124,96,124,8,160,124,131,224,132,33,133,33,133,3,225, - 132,5,226,132,5,225,132,8,226,132,3,225,132,4,226,132,139,162,124,163, - 124,100,124,100,124,37,116,197,115,134,115,70,107,6,107,199,106,199,98,5, - 135,98,132,199,98,199,98,199,106,198,106,4,6,107,138,70,107,70,107,197, - 115,99,124,131,99,193,107,33,133,160,124,103,149,57,231,25,255,255,134,125, - 239,111,149,198,99,199,107,40,108,199,107,11,39,108,129,58,223,17,255,255, - 153,190,247,235,132,38,108,103,116,103,116,166,116,102,116,102,116,166,124,166, - 116,166,124,103,116,103,116,166,116,166,124,166,116,166,116,166,124,166,116,166, - 116,166,124,166,124,166,116,166,116,166,124,5,166,116,131,166,124,166,116,102, - 116,5,166,116,3,102,116,131,103,116,103,116,102,116,5,103,116,140,39,108, - 200,99,137,91,73,91,73,83,9,83,73,83,73,91,38,108,226,124,160,116, - 114,190,18,255,255,133,248,214,162,116,160,124,225,132,226,132,4,225,132,131, - 33,133,225,132,226,132,9,225,132,133,226,132,226,132,225,132,225,132,226,132, - 3,225,132,130,33,133,225,132,4,226,132,130,227,132,227,132,4,226,132,4, - 225,132,131,225,124,227,132,245,214,21,255,255,132,52,198,193,98,192,90,193, - 98,12,192,98,12,0,99,42,2,15,255,255,132,47,198,245,222,255,255,180, - 222,12,96,148,130,104,173,57,231,6,255,255,132,248,230,174,181,166,148,100, - 140,3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132, - 130,199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,133,132,115, - 68,115,105,140,51,198,189,247,6,255,255,133,248,222,104,140,65,107,1,107, - 1,107,5,0,99,136,132,115,58,231,255,255,188,247,163,156,96,148,96,148, - 179,214,127,255,255,127,255,255,9,255,255,136,179,206,36,141,96,116,162,124, - 162,124,98,124,98,116,98,116,3,34,116,134,98,116,97,116,97,116,97,124, - 98,124,98,124,12,161,124,136,97,124,97,124,160,124,96,124,97,116,97,116, - 96,116,96,116,4,32,116,3,33,116,145,97,116,33,116,33,116,160,124,97, - 116,33,116,160,124,224,124,161,124,160,124,160,124,97,124,160,124,224,132,161, - 124,160,124,224,132,3,225,132,129,33,133,3,34,133,131,225,132,33,133,33, - 133,6,34,133,4,33,133,129,225,132,8,33,133,132,225,132,33,133,33,133, - 225,132,3,226,132,135,225,132,225,132,164,124,134,115,196,115,162,124,96,124, - 13,160,124,131,224,132,33,133,33,133,3,225,132,4,226,132,6,225,132,8, - 226,132,3,225,132,4,226,132,139,162,132,163,124,100,124,100,124,37,116,197, - 115,134,115,70,107,6,107,198,106,199,106,5,135,98,132,199,98,199,98,199, - 106,198,106,4,6,107,137,70,107,70,107,133,115,99,124,131,99,129,99,225, - 124,45,182,190,247,25,255,255,133,248,214,170,124,198,99,39,108,40,108,12, - 39,108,131,198,99,172,132,190,247,17,255,255,131,58,223,103,116,102,108,4, - 103,116,3,166,116,134,103,116,40,108,103,116,166,116,166,116,103,116,9,166, - 116,131,166,124,166,124,102,116,3,166,116,144,102,116,166,116,102,116,102,116, - 166,116,166,116,103,116,103,116,166,116,102,116,103,116,102,116,103,116,103,116, - 102,116,102,116,3,166,116,139,167,116,103,116,103,116,39,108,40,108,39,108, - 102,116,164,116,162,124,226,124,55,223,18,255,255,131,112,190,160,116,226,132, - 6,225,132,131,226,132,226,132,33,133,7,225,132,6,226,132,129,33,133,5, - 225,132,8,226,132,3,225,132,132,226,132,161,124,101,141,56,223,21,255,255, - 131,112,181,192,90,192,90,7,192,98,3,0,99,130,192,98,192,98,14,0, - 99,64,2,15,255,255,133,105,181,228,164,254,255,255,255,170,181,11,96,148, - 132,97,148,98,148,239,197,189,247,6,255,255,135,189,247,117,214,108,173,102, - 140,101,140,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132,130,199, - 131,199,131,12,199,123,129,198,123,5,134,115,4,133,115,131,198,123,46,165, - 183,214,7,255,255,135,124,239,45,165,66,107,65,107,65,107,1,107,1,107, - 6,0,99,135,132,115,59,231,255,255,180,214,96,148,96,148,179,214,127,255, - 255,127,255,255,7,255,255,137,121,231,169,165,160,124,160,124,161,124,162,124, - 162,124,98,124,98,124,5,98,116,136,97,116,97,124,97,124,98,124,98,124, - 161,124,161,124,162,124,9,161,124,4,97,124,3,97,116,4,32,116,3,33, - 116,139,34,116,97,116,97,116,33,116,33,116,33,108,97,116,161,124,97,124, - 97,124,96,124,3,160,124,132,160,132,160,124,160,124,224,132,3,225,132,135, - 33,133,34,133,34,133,33,133,33,133,34,133,225,132,5,34,133,4,33,133, - 132,225,132,225,132,33,133,225,132,6,33,133,4,225,132,129,226,132,4,225, - 132,135,163,124,198,115,196,115,97,124,97,124,33,124,96,124,3,160,124,129, - 96,124,7,160,124,131,224,132,225,132,33,133,3,225,132,4,226,132,5,225, - 132,9,226,132,3,225,132,4,226,132,139,162,132,163,124,100,124,100,124,37, - 116,197,115,134,115,70,107,6,107,198,106,199,98,6,135,98,131,199,98,199, - 106,198,106,5,6,107,134,70,107,133,115,99,124,66,91,36,116,245,214,26, - 255,255,131,244,181,40,108,199,99,7,39,108,129,199,107,5,39,108,133,199, - 99,199,99,39,108,133,91,178,165,18,255,255,140,117,190,38,108,103,108,103, - 116,39,108,40,108,103,116,103,116,102,116,166,116,40,108,103,108,6,103,116, - 130,166,116,166,116,3,103,116,147,166,116,166,124,166,116,103,116,166,116,166, - 116,103,116,103,116,102,116,103,116,103,116,166,116,166,116,103,116,102,116,102, - 116,166,116,166,116,102,116,3,103,116,129,102,116,3,103,116,129,102,116,5, - 166,116,134,103,116,103,116,166,116,163,116,37,141,189,247,17,255,255,131,254, - 255,169,165,224,124,4,225,132,6,226,132,5,225,132,5,226,132,4,225,132, - 131,33,133,226,132,225,132,4,226,132,129,225,132,3,226,132,135,225,132,225, - 132,33,133,225,132,160,124,168,157,123,239,20,255,255,133,254,255,237,156,128, - 90,192,98,193,98,3,192,98,3,0,99,3,192,98,17,0,99,86,2,15, - 255,255,134,38,173,96,148,48,206,255,255,188,247,227,156,10,96,148,134,97, - 148,97,148,98,148,165,156,114,206,190,247,7,255,255,132,124,239,117,214,109, - 173,168,148,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12, - 199,123,129,198,123,5,134,115,133,133,115,199,123,237,156,117,206,124,239,7, - 255,255,132,189,247,177,181,132,115,66,107,3,65,107,130,1,107,1,107,7, - 0,99,134,132,115,123,239,255,255,103,173,96,148,179,214,9,255,255,134,125, - 239,52,198,112,181,176,181,117,206,190,247,3,255,255,131,59,231,183,214,250, - 230,96,255,255,131,249,222,183,214,123,239,21,255,255,133,249,222,242,189,111, - 173,178,189,248,222,13,255,255,131,58,231,183,214,58,231,16,255,255,131,123, - 239,183,214,249,222,78,255,255,139,190,247,113,198,226,132,160,124,225,132,161, - 132,161,124,162,124,162,124,98,124,98,124,5,98,116,133,97,116,97,124,97, - 124,161,124,162,124,12,161,124,5,97,124,130,97,116,33,116,4,32,116,3, - 33,116,145,34,116,33,116,33,116,97,116,97,116,96,116,160,124,97,116,96, - 124,32,116,96,116,96,116,96,124,160,124,160,124,161,124,224,132,4,225,132, - 135,33,133,34,133,33,133,225,132,225,132,33,133,225,132,4,34,133,8,33, - 133,3,225,132,132,33,133,34,133,33,133,33,133,4,225,132,3,226,132,137, - 225,132,225,132,227,132,37,116,133,115,97,124,96,124,34,124,96,124,3,160, - 124,129,96,124,7,160,124,131,160,132,224,132,33,133,3,225,132,4,226,132, - 4,225,132,10,226,132,3,225,132,4,226,132,139,163,132,163,124,164,124,100, - 124,37,124,197,115,134,115,70,107,6,107,199,106,199,106,6,135,98,131,199, - 98,199,106,198,106,4,6,107,134,70,107,70,107,133,107,97,116,170,132,59, - 231,25,255,255,134,124,239,47,149,134,91,200,99,200,99,200,107,10,39,108, - 136,199,107,39,108,39,108,199,99,39,108,199,99,198,99,184,206,18,255,255, - 133,110,157,198,99,103,116,39,108,40,108,3,103,116,131,102,116,39,108,39, - 108,11,103,116,134,102,116,166,116,103,116,103,116,102,116,102,116,10,103,116, - 129,102,116,11,103,116,8,166,116,130,163,116,172,165,18,255,255,131,123,239, - 36,141,224,124,8,226,132,131,225,132,225,132,226,132,3,225,132,9,226,132, - 132,225,132,33,133,226,132,227,124,6,226,132,4,225,132,131,224,124,235,165, - 189,247,20,255,255,134,124,239,106,148,128,82,192,98,192,98,193,98,3,192, - 98,130,0,99,192,98,4,0,99,129,192,98,16,0,99,112,2,15,255,255, - 135,163,156,96,148,161,148,57,231,255,255,56,231,97,148,9,96,148,136,97, - 148,97,148,98,148,98,140,98,140,231,156,115,206,189,247,8,255,255,135,189, - 247,248,222,242,189,44,165,104,148,38,132,38,132,11,39,132,130,199,131,199, - 131,12,199,123,136,198,123,134,115,134,115,199,123,171,148,112,173,183,214,189, - 247,8,255,255,131,189,247,242,189,197,123,3,66,107,3,65,107,130,1,107, - 1,107,7,0,99,134,104,140,189,247,255,255,56,231,96,148,181,222,8,255, - 255,130,51,198,67,107,4,192,98,135,132,115,183,214,255,255,255,255,237,164, - 192,98,105,140,46,255,255,132,249,222,45,165,111,173,254,255,46,255,255,131, - 133,123,192,98,176,181,20,255,255,129,237,164,5,192,98,130,105,140,189,247, - 11,255,255,131,236,156,192,98,105,140,11,255,255,136,118,206,45,165,178,189, - 255,255,255,255,112,173,192,98,132,115,77,255,255,131,56,223,102,149,160,124, - 3,225,132,134,161,132,161,124,162,124,162,124,98,124,98,124,5,98,116,134, - 97,116,97,124,98,124,161,124,161,124,162,124,12,161,124,134,97,124,97,124, - 96,124,97,116,97,116,33,116,4,32,116,129,33,116,3,97,116,133,33,116, - 33,116,160,124,97,124,97,116,7,96,116,132,160,124,225,132,224,132,224,132, - 4,225,132,4,33,133,130,225,132,33,133,3,34,133,10,33,133,3,225,132, - 134,33,133,34,133,33,133,33,133,225,132,225,132,5,226,132,138,225,132,225, - 132,226,132,37,124,70,107,34,124,96,124,96,124,160,132,160,132,11,160,124, - 129,224,132,4,225,132,4,226,132,5,225,132,9,226,132,3,225,132,4,226, - 132,139,162,132,163,124,163,124,100,124,37,124,197,115,134,115,70,107,6,107, - 6,107,199,106,6,135,98,132,199,98,199,106,199,106,198,106,3,6,107,132, - 70,107,5,107,69,107,48,190,26,255,255,131,249,214,42,116,134,91,4,200, - 99,129,200,107,3,40,108,6,39,108,129,199,99,5,39,108,131,198,99,41, - 108,124,239,17,255,255,141,189,239,170,124,38,108,40,108,40,108,39,108,39, - 108,103,108,103,116,39,108,39,108,103,108,39,108,3,103,108,129,39,108,3, - 103,108,8,103,116,135,103,108,103,116,103,116,40,108,103,108,39,108,40,108, - 12,103,116,129,39,116,3,103,116,138,103,108,103,116,103,116,103,108,103,108, - 103,116,166,116,166,116,100,108,50,190,18,255,255,132,246,214,224,124,225,132, - 225,132,13,226,132,131,225,132,226,132,225,132,4,226,132,130,225,132,33,133, - 5,226,132,131,225,132,226,132,226,132,4,225,132,130,225,124,112,190,21,255, - 255,131,58,231,134,123,128,90,3,192,98,130,0,99,192,98,25,0,99,115, - 2,15,255,255,135,162,156,96,148,96,148,38,165,190,255,255,255,179,214,9, - 96,148,138,97,148,97,148,98,148,98,140,98,140,99,140,99,140,167,156,49, - 198,124,239,10,255,255,135,189,247,58,231,117,206,176,181,45,165,170,148,40, - 132,7,39,132,130,199,131,199,131,10,199,123,134,40,132,171,148,46,165,243, - 189,184,214,124,239,10,255,255,132,124,239,177,181,198,123,67,107,4,66,107, - 3,65,107,130,1,107,1,107,6,0,99,135,105,140,190,247,255,255,190,247, - 189,247,104,181,246,222,7,255,255,142,52,198,192,98,192,98,67,107,171,148, - 170,148,1,99,192,98,1,99,58,231,255,255,45,165,192,98,105,140,46,255, - 255,132,52,198,192,98,2,107,254,255,46,255,255,131,198,123,192,98,177,181, - 19,255,255,137,177,181,192,98,192,98,236,156,176,181,171,148,192,98,192,98, - 235,156,11,255,255,131,236,156,192,98,106,148,11,255,255,136,111,173,192,98, - 198,123,255,255,255,255,118,206,171,148,111,173,75,255,255,142,188,247,46,182, - 225,132,224,124,225,132,226,132,225,132,225,132,161,132,161,124,162,124,162,124, - 98,124,98,124,5,98,116,134,97,116,97,124,98,124,161,124,161,124,162,124, - 12,161,124,3,97,124,130,97,116,97,116,5,32,116,136,97,116,97,116,33, - 116,34,116,97,116,97,116,96,116,97,116,4,96,116,3,160,124,131,224,132, - 225,132,161,132,4,225,132,129,33,133,3,225,132,133,33,133,33,133,225,132, - 33,133,34,133,6,33,133,129,225,132,4,33,133,3,225,132,4,33,133,130, - 225,132,225,132,6,226,132,138,225,132,225,132,226,132,101,124,70,107,195,115, - 96,124,96,124,224,132,160,132,11,160,124,129,224,132,3,225,132,5,226,132, - 6,225,132,7,226,132,5,225,132,3,226,132,139,162,132,163,124,163,124,100, - 124,37,124,197,115,134,115,70,107,6,107,6,107,199,106,7,135,98,131,199, - 106,199,106,198,106,3,6,107,131,197,98,137,123,184,214,26,255,255,131,243, - 173,199,99,199,99,5,200,99,3,200,107,3,200,99,133,199,99,199,107,199, - 107,199,99,199,99,3,39,108,3,199,99,130,134,91,47,149,18,255,255,132, - 248,214,39,108,199,107,200,107,4,39,108,130,200,107,200,107,9,39,108,6, - 103,116,3,40,108,129,103,116,4,40,108,9,103,116,131,39,116,103,116,103, - 116,9,40,108,135,39,108,102,116,166,116,166,116,165,116,165,116,57,223,18, - 255,255,130,46,182,224,124,16,226,132,129,225,132,3,226,132,130,225,132,225, - 132,5,226,132,131,225,132,226,132,226,132,3,225,132,131,225,124,226,132,179, - 206,21,255,255,137,184,222,68,107,128,90,0,99,0,99,192,98,0,99,0, - 99,192,98,25,0,99,111,3,15,255,255,129,162,156,3,96,148,132,236,189, - 255,255,255,255,113,206,8,96,148,133,97,148,97,148,98,148,98,140,98,140, - 3,99,140,133,100,140,101,148,173,181,247,222,254,255,12,255,255,137,190,247, - 124,239,249,222,183,214,53,206,243,189,177,181,112,173,47,173,5,46,165,136, - 47,165,112,173,178,181,244,189,118,206,248,222,59,231,189,247,13,255,255,131, - 249,222,46,165,133,115,3,67,107,4,66,107,3,65,107,130,1,107,1,107, - 5,0,99,136,171,156,254,255,255,255,255,255,235,156,176,181,57,231,122,239, - 6,255,255,162,189,247,67,107,192,98,198,123,124,239,255,255,255,255,248,222, - 1,99,192,98,106,148,255,255,45,165,192,98,170,148,255,255,184,214,117,206, - 58,231,255,255,255,255,254,255,59,231,59,231,255,255,124,239,118,206,189,247, - 255,255,255,255,249,222,117,206,182,214,124,239,3,255,255,140,189,247,58,231, - 125,239,255,255,184,214,118,206,59,231,255,255,255,255,183,214,118,206,59,231, - 4,255,255,141,190,247,248,222,117,206,118,206,59,231,255,255,255,255,124,239, - 178,181,192,98,67,107,249,222,125,239,3,255,255,132,249,222,117,206,183,214, - 189,247,5,255,255,158,58,231,117,206,248,222,255,255,124,239,59,231,190,247, - 255,255,123,239,59,231,255,255,190,247,118,206,59,231,255,255,255,255,58,231, - 118,206,117,206,248,222,254,255,255,255,255,255,125,239,58,231,189,247,190,247, - 182,214,118,206,123,239,3,255,255,139,198,123,192,98,242,189,190,247,118,206, - 118,206,124,239,255,255,189,247,58,231,59,231,3,255,255,132,254,255,59,231, - 59,231,254,255,4,255,255,131,39,132,192,98,170,148,3,255,255,132,236,156, - 192,98,66,107,189,247,3,255,255,132,248,222,117,206,183,214,189,247,3,255, - 255,150,236,156,192,98,106,148,255,255,189,247,58,231,124,239,255,255,255,255, - 254,255,59,231,59,231,190,247,124,239,237,164,192,98,198,131,59,231,189,247, - 190,247,124,239,189,247,4,255,255,132,248,222,117,206,183,214,189,247,3,255, - 255,135,124,239,58,231,190,247,254,255,183,214,118,206,123,239,4,255,255,132, - 59,231,118,206,117,206,249,222,48,255,255,131,246,214,101,141,224,124,6,225, - 132,134,161,132,161,124,162,124,162,124,98,124,98,124,5,98,116,130,97,124, - 97,124,16,161,124,3,97,124,131,97,116,97,116,33,116,3,32,116,130,33, - 116,33,116,4,34,116,131,96,116,97,116,33,116,3,96,116,133,160,124,161, - 124,161,124,225,132,224,132,4,225,132,129,33,133,5,225,132,131,33,133,33, - 133,225,132,3,33,133,8,225,132,130,33,133,33,133,4,225,132,129,33,133, - 5,225,132,129,226,132,3,225,132,139,226,132,225,132,225,132,226,132,164,124, - 134,107,196,115,97,124,96,124,160,132,224,132,11,160,124,129,160,132,3,225, - 132,4,226,132,8,225,132,7,226,132,4,225,132,3,226,132,139,162,132,163, - 124,99,124,100,124,36,124,197,115,133,115,70,107,6,107,6,107,199,106,7, - 135,98,3,198,106,133,6,107,6,107,197,98,174,148,125,239,25,255,255,132, - 125,239,238,140,134,91,199,99,10,200,99,131,199,99,200,99,200,99,11,199, - 99,130,134,91,53,190,18,255,255,137,243,181,134,91,200,99,40,108,39,108, - 40,108,39,108,200,107,200,99,10,39,108,132,103,108,39,108,103,116,103,116, - 9,40,108,132,103,116,40,108,103,116,39,116,13,40,108,133,200,107,40,108, - 40,108,103,116,103,116,4,166,116,131,165,116,233,132,189,239,17,255,255,131, - 254,247,103,149,224,124,6,226,132,129,225,132,4,226,132,129,34,133,6,226, - 132,132,225,132,33,133,226,132,227,132,6,226,132,134,33,133,225,132,225,132, - 224,124,36,133,55,223,21,255,255,131,52,198,1,99,192,90,4,0,99,129, - 192,98,27,0,99,80,3,15,255,255,129,162,156,4,96,148,132,179,214,255, - 255,255,255,113,206,7,96,148,133,97,148,97,148,98,148,98,140,98,140,3, - 99,140,4,100,140,132,233,156,241,189,57,231,254,255,41,255,255,134,124,239, - 52,198,106,148,68,115,68,107,68,107,3,67,107,4,66,107,3,65,107,130, - 1,107,1,107,4,0,99,129,46,165,3,255,255,131,178,189,192,98,106,148, - 8,255,255,132,52,198,192,98,192,98,183,214,4,255,255,150,243,197,236,156, - 111,173,255,255,45,165,192,98,40,140,105,140,192,98,192,98,1,99,242,189, - 255,255,58,231,1,99,67,115,243,189,2,107,192,98,249,222,124,239,105,140, - 3,192,98,149,66,107,177,181,255,255,255,255,177,181,1,99,105,140,105,140, - 192,98,192,98,1,107,243,189,104,140,192,98,192,98,1,99,242,189,255,255, - 255,255,183,214,133,115,3,192,98,132,1,99,236,156,255,255,105,140,4,192, - 98,132,236,156,255,255,58,231,39,132,3,192,98,130,67,107,51,198,3,255, - 255,145,111,173,0,99,192,98,192,98,105,140,198,123,1,99,118,206,255,255, - 197,123,1,99,242,189,197,123,192,98,177,181,190,247,170,148,4,192,98,159, - 198,123,58,231,255,255,46,165,0,99,105,140,197,123,192,98,192,98,2,107, - 242,189,255,255,255,255,198,123,192,98,235,156,132,115,192,98,192,98,67,107, - 249,222,59,231,1,99,1,99,182,214,255,255,255,255,242,189,1,99,133,115, - 190,247,4,255,255,141,39,132,192,98,132,115,182,214,190,247,255,255,254,255, - 249,222,249,222,254,255,255,255,249,222,39,132,3,192,98,146,68,115,52,198, - 255,255,255,255,236,156,192,98,106,148,255,255,111,173,1,99,105,140,255,255, - 255,255,123,239,1,107,1,99,248,222,197,123,4,192,98,136,243,189,243,197, - 1,99,198,131,255,255,255,255,249,222,198,131,3,192,98,144,132,115,117,206, - 255,255,255,255,171,148,1,99,236,156,197,123,192,98,192,98,2,107,52,198, - 255,255,254,255,236,156,0,99,3,192,98,130,40,140,124,239,44,255,255,133, - 123,231,234,165,224,124,224,132,226,132,4,225,132,134,224,132,225,132,161,132, - 161,124,162,124,162,124,3,98,124,3,98,116,131,97,116,97,124,98,124,3, - 161,124,131,162,124,161,124,162,124,10,161,124,3,97,124,133,97,116,97,116, - 33,116,32,116,96,116,3,33,116,132,34,116,34,116,98,116,34,116,5,97, - 116,132,160,124,225,124,161,124,160,124,9,225,132,133,224,132,224,132,225,132, - 225,132,33,133,6,225,132,129,226,132,4,225,132,3,33,133,10,225,132,129, - 226,132,3,225,132,129,226,132,3,225,132,135,164,124,134,115,133,115,97,124, - 96,124,160,124,224,132,11,160,124,132,160,132,224,132,225,132,225,132,5,226, - 132,7,225,132,7,226,132,3,225,132,4,226,132,140,162,132,162,124,163,124, - 100,124,36,124,197,115,133,115,70,107,70,107,6,107,199,106,199,98,6,135, - 98,134,198,98,198,106,198,106,197,98,6,107,244,189,26,255,255,131,184,206, - 41,108,134,91,5,200,99,134,136,99,200,99,200,99,199,99,200,99,200,99, - 15,199,99,131,134,99,199,99,250,222,18,255,255,136,238,140,135,91,200,107, - 200,107,40,108,39,108,200,99,200,99,5,39,108,129,199,107,6,39,108,131, - 103,108,39,108,39,108,4,40,108,3,200,107,18,40,108,140,39,116,39,116, - 103,116,39,116,40,116,40,108,103,116,103,116,165,116,229,124,100,108,109,157, - 18,255,255,131,122,231,34,133,225,132,10,226,132,129,226,124,6,226,132,129, - 225,132,7,226,132,135,225,132,33,133,225,132,225,132,224,124,102,149,122,231, - 21,255,255,131,112,173,192,90,192,98,33,0,99,121,3,15,255,255,129,228, - 164,4,96,148,133,161,148,55,231,255,255,255,255,114,214,6,96,148,133,97, - 148,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3,101,140,132,233, - 156,176,189,247,222,189,247,35,255,255,137,124,239,53,198,236,156,198,123,133, - 115,132,115,68,115,68,107,68,107,3,67,107,4,66,107,3,65,107,134,1, - 107,1,107,0,99,0,99,1,99,242,189,3,255,255,132,52,198,0,99,192, - 98,39,132,8,255,255,132,46,165,192,98,66,107,189,247,8,255,255,244,45, - 165,192,98,192,98,39,132,111,173,133,123,192,98,66,107,190,247,59,231,192, - 98,0,99,192,98,66,107,198,123,250,230,104,140,192,98,133,115,177,181,45, - 165,192,98,192,98,52,198,255,255,177,181,192,98,192,98,197,123,110,173,132, - 115,192,98,192,98,132,115,111,173,198,123,192,98,2,107,189,247,189,247,1, - 99,192,98,235,156,183,214,178,189,0,99,192,98,183,214,118,206,171,148,192, - 98,2,107,112,173,183,214,189,247,132,115,192,98,198,131,177,181,236,156,192, - 98,192,98,183,214,255,255,117,206,192,98,192,98,236,156,177,181,132,115,192, - 98,192,98,118,206,255,255,132,115,192,98,1,99,0,99,198,123,117,206,45, - 165,192,98,67,115,118,206,182,214,197,123,192,98,171,148,255,255,45,165,192, - 98,192,98,198,131,177,181,170,148,192,98,192,98,248,222,255,255,198,123,192, - 98,192,98,171,148,46,173,66,107,192,98,105,140,255,255,40,132,192,98,236, - 156,255,255,255,255,40,140,192,98,46,165,5,255,255,129,51,198,3,192,98, - 194,68,115,170,148,242,189,124,239,255,255,255,255,189,247,132,115,192,98,39, - 132,178,181,171,156,192,98,192,98,184,214,255,255,236,156,192,98,106,148,255, - 255,46,165,192,98,105,140,255,255,255,255,59,231,192,98,192,98,248,222,52, - 198,40,140,192,98,132,115,177,181,58,231,178,181,192,98,197,123,255,255,125, - 239,67,115,192,98,39,132,178,181,171,148,192,98,192,98,248,222,255,255,170, - 148,192,98,192,98,105,140,111,173,132,115,192,98,132,115,255,255,117,206,192, - 98,66,107,182,214,183,214,198,131,192,98,171,156,43,255,255,134,113,198,35, - 133,224,124,33,133,225,132,226,132,4,225,132,136,224,132,225,132,161,132,161, - 124,161,124,162,124,98,124,98,124,4,98,116,131,97,116,97,124,98,124,3, - 162,124,13,161,124,130,97,124,97,124,3,97,116,145,33,116,32,116,96,116, - 32,116,33,116,97,116,98,116,34,116,97,116,34,116,33,116,97,116,161,124, - 97,124,97,124,161,124,161,124,4,225,132,129,33,133,6,225,132,130,224,132, - 224,132,9,225,132,129,226,132,8,225,132,129,224,132,7,225,132,130,226,132, - 226,132,7,225,132,136,163,124,134,115,133,115,99,124,97,124,96,124,224,132, - 160,132,11,160,124,130,224,132,225,132,6,226,132,8,225,132,5,226,132,5, - 225,132,3,226,132,140,162,132,163,124,163,124,100,124,37,124,197,115,133,115, - 70,107,70,107,6,107,199,106,199,98,6,135,98,133,199,98,198,98,133,90, - 203,131,250,222,26,255,255,139,179,173,135,99,135,91,135,99,135,99,199,99, - 199,99,200,99,199,99,199,99,136,99,6,199,99,131,135,99,136,91,135,99, - 11,199,99,130,134,91,172,124,18,255,255,136,60,231,41,108,199,99,200,107, - 40,108,39,108,200,99,200,99,3,39,108,131,199,107,200,107,200,107,9,39, - 108,129,200,107,3,40,108,139,200,99,200,107,200,99,200,107,40,108,201,107, - 201,107,200,107,40,108,200,107,200,107,12,40,108,139,40,116,40,116,40,108, - 40,108,39,116,103,116,103,116,165,124,228,124,162,124,178,198,18,255,255,130, - 179,198,224,124,9,226,132,129,226,124,6,226,132,129,225,132,8,226,132,3, - 225,132,131,224,124,169,157,189,247,21,255,255,131,236,156,128,90,192,98,34, - 0,99,138,3,15,255,255,129,39,173,5,96,148,134,163,156,122,239,255,255, - 255,255,245,222,162,148,4,96,148,133,97,148,97,148,98,148,98,140,98,140, - 3,99,140,4,100,140,3,101,140,136,37,140,37,140,38,140,103,148,44,165, - 242,197,248,222,124,239,27,255,255,133,189,247,248,222,178,181,171,148,198,123, - 4,133,115,132,132,115,68,115,68,107,68,107,3,67,107,4,66,107,3,65, - 107,133,1,107,1,107,0,99,132,115,183,214,3,255,255,133,118,206,1,99, - 192,98,192,98,198,123,8,255,255,131,235,156,192,98,132,115,9,255,255,244, - 45,165,192,98,132,115,254,255,255,255,183,214,192,98,192,98,59,231,123,239, - 0,99,192,98,105,140,189,247,255,255,183,214,192,98,1,99,58,231,255,255, - 255,255,46,165,192,98,197,123,255,255,177,181,192,98,66,107,189,247,255,255, - 52,198,192,98,0,99,249,222,255,255,248,222,192,98,192,98,58,231,189,247, - 177,181,242,189,255,255,255,255,124,239,66,107,192,98,52,198,255,255,118,206, - 192,98,68,115,255,255,255,255,51,198,192,98,67,107,189,247,255,255,255,255, - 171,148,192,98,105,140,255,255,105,140,192,98,170,148,255,255,255,255,58,231, - 1,99,192,98,118,206,255,255,132,115,192,98,68,115,58,231,255,255,255,255, - 52,198,178,189,250,230,255,255,255,255,171,148,192,98,105,140,255,255,46,165, - 192,98,132,115,190,247,255,255,255,255,39,132,192,98,236,156,255,255,198,123, - 192,98,171,148,255,255,255,255,111,173,192,98,132,115,255,255,51,198,192,98, - 67,107,254,255,124,239,1,99,192,98,249,222,6,255,255,130,51,198,197,123, - 4,192,98,191,2,107,243,189,255,255,242,189,192,98,68,115,190,247,255,255, - 255,255,170,148,192,98,170,148,255,255,236,156,192,98,106,148,255,255,46,165, - 192,98,105,140,255,255,255,255,59,231,1,99,192,98,249,222,255,255,112,181, - 192,98,40,132,255,255,255,255,177,181,192,98,198,123,255,255,178,189,192,98, - 132,115,190,247,255,255,255,255,105,140,192,98,171,148,255,255,170,148,192,98, - 198,131,255,255,255,255,52,198,192,98,1,99,190,247,242,189,192,98,66,107, - 118,214,190,247,124,239,117,206,183,214,41,255,255,136,55,223,167,157,224,124, - 225,132,34,133,33,133,225,132,226,132,6,225,132,135,161,132,161,132,161,124, - 161,124,162,124,98,124,98,124,4,98,116,130,97,124,98,124,3,162,124,131, - 161,124,161,124,162,124,10,161,124,130,97,124,97,124,4,97,116,133,32,116, - 96,116,32,116,97,116,97,116,3,34,116,133,34,108,97,116,161,124,160,124, - 160,124,3,225,132,5,33,133,4,225,132,132,224,132,225,132,225,132,224,132, - 24,225,132,132,224,132,225,132,225,132,226,132,7,225,132,136,227,132,198,115, - 133,115,36,124,99,124,97,124,160,132,224,132,11,160,124,130,224,132,224,132, - 6,226,132,6,225,132,130,226,132,225,132,5,226,132,4,225,132,4,226,132, - 140,162,132,163,124,163,124,100,124,36,124,37,116,197,115,134,107,70,107,6, - 107,199,106,199,98,6,135,98,132,134,98,134,98,49,173,190,247,25,255,255, - 134,59,231,173,132,134,91,135,99,135,99,135,91,3,135,99,3,199,99,130, - 136,99,135,99,5,199,99,132,135,99,72,91,136,91,135,99,11,199,99,130, - 133,91,177,165,18,255,255,142,184,206,135,99,199,107,40,108,39,108,200,99, - 200,99,199,107,39,108,39,108,199,107,199,107,200,99,199,107,3,39,108,129, - 199,107,4,39,108,129,200,99,3,200,107,136,200,99,200,107,200,99,200,99, - 200,107,201,99,201,99,201,107,4,200,107,136,40,108,200,107,40,108,40,108, - 200,107,40,108,40,108,39,108,9,40,108,134,103,116,103,116,165,124,227,124, - 225,132,56,223,18,255,255,130,236,173,224,124,7,226,132,131,226,124,226,132, - 225,132,12,226,132,4,225,132,131,224,124,46,182,254,255,20,255,255,131,124, - 247,40,140,128,90,36,0,99,148,3,15,255,255,129,236,189,6,96,148,134, - 228,164,124,247,255,255,255,255,57,231,229,164,3,96,148,133,97,148,97,148, - 98,148,98,140,98,140,3,99,140,4,100,140,3,101,140,130,37,140,37,140, - 4,38,140,136,38,132,104,140,235,156,111,173,52,198,248,222,59,239,190,247, - 16,255,255,134,189,247,250,222,118,206,177,181,172,148,40,132,3,134,115,5, - 133,115,132,132,115,68,115,68,107,68,107,3,67,107,4,66,107,3,65,107, - 132,1,107,1,107,105,140,123,239,3,255,255,134,182,214,1,107,0,99,192, - 98,192,98,198,131,8,255,255,132,45,165,192,98,66,107,189,247,4,255,255, - 150,124,239,183,214,184,214,255,255,45,165,192,98,105,140,255,255,255,255,59, - 231,192,98,192,98,58,231,123,239,192,98,192,98,183,214,255,255,255,255,177, - 181,192,98,198,123,3,255,255,164,183,214,192,98,1,107,190,247,178,189,192, - 98,198,123,255,255,255,255,182,214,192,98,66,107,189,247,255,255,58,231,192, - 98,192,98,249,222,255,255,190,247,52,198,171,156,198,131,1,99,192,98,192, - 98,52,198,255,255,52,198,192,98,67,115,190,247,255,255,45,165,192,98,105, - 140,3,255,255,135,52,198,192,98,132,115,190,247,197,123,192,98,242,189,3, - 255,255,135,133,123,192,98,118,206,255,255,132,115,192,98,112,181,4,255,255, - 139,183,214,110,173,40,140,68,115,192,98,192,98,105,140,255,255,46,165,192, - 98,170,148,3,255,255,148,176,181,192,98,199,131,255,255,198,123,192,98,177, - 181,255,255,255,255,51,198,192,98,132,115,255,255,189,247,66,107,192,98,248, - 222,53,198,192,98,199,131,9,255,255,138,249,222,177,181,105,140,0,99,192, - 98,192,98,123,239,237,156,192,98,170,148,3,255,255,158,242,189,192,98,133, - 115,255,255,237,156,192,98,106,148,255,255,46,165,192,98,105,140,255,255,255, - 255,123,239,1,99,192,98,249,222,255,255,111,173,192,98,39,132,255,255,255, - 255,177,181,192,98,198,123,255,255,235,156,192,98,171,148,3,255,255,148,242, - 189,192,98,133,123,255,255,170,148,192,98,236,156,255,255,255,255,248,222,192, - 98,1,99,124,239,123,239,132,115,192,98,192,98,1,107,104,140,242,189,40, - 255,255,138,188,247,45,182,225,132,224,124,33,133,34,133,34,133,33,133,225, - 132,226,132,7,225,132,134,161,132,161,124,162,124,162,124,98,124,98,124,4, - 98,116,130,97,124,98,124,3,161,124,130,162,124,162,124,11,161,124,3,97, - 124,131,97,116,97,116,33,116,3,96,116,135,97,116,97,116,33,116,98,116, - 98,116,161,124,160,124,3,224,132,135,33,133,225,132,225,132,33,133,34,133, - 33,133,33,133,7,225,132,132,224,132,224,132,225,132,225,132,3,224,132,129, - 225,132,4,224,132,3,225,132,129,224,132,11,225,132,131,224,132,225,132,226, - 132,7,225,132,136,227,132,37,116,70,115,36,116,99,124,98,124,160,124,224, - 132,11,160,124,131,160,132,224,132,225,132,5,226,132,8,225,132,6,226,132, - 3,225,132,144,226,132,226,132,225,132,226,132,162,132,163,124,163,124,100,124, - 36,124,37,116,197,115,134,115,70,107,6,107,199,106,199,98,5,135,98,131, - 69,90,8,115,55,206,26,255,255,131,119,198,41,108,70,91,8,135,99,129, - 199,99,4,135,99,5,199,99,3,135,91,131,199,99,198,99,198,99,8,199, - 99,131,198,99,198,99,183,206,18,255,255,135,179,173,134,91,39,108,39,108, - 200,99,136,99,199,99,3,199,107,135,200,99,136,99,199,99,199,99,39,108, - 39,108,199,107,3,39,108,133,199,107,200,99,39,108,199,107,200,107,5,200, - 99,3,201,99,6,200,107,4,40,108,132,39,108,39,108,40,108,200,107,8, - 40,108,134,103,116,166,116,228,124,225,124,102,149,189,247,17,255,255,131,189, - 247,101,141,225,124,12,226,132,129,225,132,4,226,132,129,227,132,3,226,132, - 133,225,132,225,132,225,124,225,124,178,198,21,255,255,131,58,231,198,123,128, - 90,37,0,99,189,3,15,255,255,129,180,214,7,96,148,141,229,164,188,247, - 255,255,255,255,189,247,172,189,96,148,96,148,97,148,97,148,98,148,98,140, - 98,140,3,99,140,4,100,140,3,101,140,130,37,140,37,140,4,38,140,130, - 38,132,38,132,5,39,132,149,105,140,236,156,111,173,243,189,117,206,184,214, - 249,222,58,231,249,222,249,222,184,214,118,206,53,198,243,189,112,173,237,156, - 107,140,40,132,199,123,199,123,198,123,5,134,115,5,133,115,132,132,115,68, - 115,68,107,68,107,3,67,107,4,66,107,3,65,107,130,66,107,177,181,4, - 255,255,135,118,206,65,107,0,99,0,99,192,98,192,98,198,123,8,255,255, - 132,52,198,192,98,192,98,118,214,4,255,255,150,235,156,192,98,132,115,255, - 255,46,165,192,98,105,140,255,255,255,255,59,231,0,99,192,98,58,231,123, - 239,192,98,192,98,58,231,255,255,255,255,176,181,192,98,198,131,3,255,255, - 164,183,214,192,98,1,99,190,247,242,189,192,98,198,123,255,255,255,255,118, - 214,192,98,66,107,189,247,255,255,58,231,192,98,192,98,58,231,124,239,132, - 115,192,98,132,115,236,156,177,181,67,107,192,98,52,198,255,255,52,198,192, - 98,67,115,190,247,255,255,45,165,192,98,105,140,3,255,255,135,52,198,192, - 98,68,115,254,255,198,123,192,98,176,181,3,255,255,135,132,115,192,98,118, - 206,255,255,132,115,192,98,243,197,3,255,255,140,237,164,192,98,192,98,105, - 140,176,181,106,148,192,98,105,140,255,255,46,165,192,98,171,148,3,255,255, - 148,177,181,192,98,198,123,255,255,198,123,192,98,177,181,255,255,255,255,243, - 197,192,98,132,115,190,247,255,255,171,156,192,98,46,165,171,148,192,98,242, - 189,5,255,255,132,59,231,171,156,235,156,58,231,3,255,255,135,118,206,0, - 99,192,98,53,198,45,165,192,98,171,148,3,255,255,158,243,189,192,98,132, - 115,255,255,237,156,192,98,106,148,255,255,46,165,192,98,105,140,255,255,255, - 255,59,231,0,99,192,98,249,222,255,255,111,173,192,98,39,132,255,255,255, - 255,177,181,192,98,198,123,255,255,171,156,192,98,171,148,3,255,255,149,242, - 189,192,98,133,123,255,255,170,148,192,98,236,156,255,255,255,255,184,214,192, - 98,1,99,123,239,255,255,255,255,52,198,235,156,132,115,192,98,192,98,105, - 140,38,255,255,132,244,206,101,149,224,124,225,132,4,34,133,131,33,133,225, - 132,226,132,7,225,132,133,161,132,161,124,162,124,98,124,98,124,5,98,116, - 131,98,124,98,124,162,124,3,161,124,129,162,124,9,161,124,129,160,124,4, - 97,124,133,97,116,97,116,33,116,96,116,96,116,3,97,116,135,96,116,160, - 124,161,124,97,124,161,124,160,132,224,132,4,225,132,3,34,133,131,225,132, - 225,132,224,132,5,225,132,130,224,132,224,132,3,225,132,130,224,132,224,132, - 4,225,132,3,224,132,130,225,132,224,132,14,225,132,129,226,132,6,225,132, - 136,227,132,37,124,134,115,196,115,99,124,99,124,97,124,96,124,12,160,124, - 130,224,132,225,132,4,226,132,10,225,132,5,226,132,4,225,132,143,226,132, - 225,132,226,132,162,124,163,124,163,124,100,124,36,124,37,116,197,115,134,115, - 70,107,6,107,198,106,199,98,3,135,98,132,70,98,69,90,45,140,59,231, - 26,255,255,135,177,173,134,91,134,91,199,99,135,99,135,99,135,91,8,135, - 99,4,199,99,130,135,99,135,99,4,199,99,130,198,99,198,99,10,199,99, - 131,198,99,40,108,124,239,17,255,255,148,190,247,173,132,198,99,39,108,200, - 99,136,99,199,99,199,107,199,99,200,99,136,99,136,99,199,99,199,107,39, - 108,199,107,199,99,199,107,39,108,39,108,4,199,107,131,200,99,200,99,200, - 107,3,200,99,131,136,99,137,99,200,99,5,200,107,3,40,108,135,200,107, - 40,108,39,108,103,108,39,108,200,107,200,107,7,40,108,134,103,116,103,116, - 165,124,226,132,224,124,44,174,18,255,255,131,56,223,225,132,225,132,3,226, - 132,129,226,124,10,226,132,138,225,132,226,132,226,132,225,132,225,132,33,133, - 33,133,224,124,227,132,246,214,21,255,255,131,183,214,67,107,192,90,38,0, - 99,130,3,15,255,255,130,124,247,161,156,7,96,148,130,38,165,123,247,3, - 255,255,135,180,214,163,156,97,148,97,148,98,148,98,140,98,140,3,99,140, - 4,100,140,3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11, - 39,132,130,199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,132, - 132,115,68,115,68,107,68,107,3,67,107,4,66,107,132,65,107,65,107,104, - 140,249,222,4,255,255,130,52,198,1,99,3,0,99,131,192,98,192,98,40, - 132,8,255,255,182,189,247,67,107,192,98,197,123,59,231,255,255,255,255,183, - 214,1,99,192,98,237,164,255,255,45,165,192,98,105,140,255,255,255,255,59, - 231,0,99,192,98,58,231,123,239,192,98,192,98,249,222,255,255,255,255,118, - 206,192,98,2,107,124,239,255,255,255,255,112,173,192,98,133,115,255,255,177, - 181,192,98,198,123,255,255,255,255,118,214,192,98,66,107,189,247,255,255,58, - 231,192,98,192,98,123,239,51,198,192,98,132,115,3,255,255,175,66,107,192, - 98,52,198,255,255,52,198,192,98,67,107,255,255,255,255,242,189,192,98,68, - 115,190,247,255,255,255,255,236,156,192,98,40,132,255,255,171,156,192,98,197, - 123,124,239,255,255,242,189,192,98,192,98,118,206,255,255,132,115,192,98,243, - 189,255,255,255,255,124,239,1,99,192,98,118,206,255,255,255,255,236,156,192, - 98,105,140,255,255,46,165,192,98,132,115,3,255,255,148,105,140,192,98,170, - 148,255,255,198,123,192,98,177,181,255,255,255,255,243,197,192,98,132,115,190, - 247,255,255,183,214,192,98,66,107,1,107,1,99,124,239,5,255,255,132,123, - 239,192,98,192,98,236,156,3,255,255,135,58,231,1,99,192,98,182,214,243, - 189,192,98,132,115,3,255,255,158,171,148,192,98,105,140,255,255,236,156,192, - 98,106,148,255,255,46,173,192,98,198,123,255,255,255,255,183,214,192,98,192, - 98,249,222,255,255,111,173,192,98,39,132,255,255,255,255,177,181,192,98,198, - 123,255,255,177,181,192,98,133,115,3,255,255,149,170,148,192,98,105,148,255, - 255,170,148,192,98,236,156,255,255,255,255,184,214,192,98,1,99,124,239,117, - 206,110,173,184,214,255,255,255,255,177,181,192,98,1,107,36,255,255,132,121, - 231,235,165,224,124,225,132,6,34,133,129,33,133,9,225,132,133,161,132,161, - 124,162,124,98,124,98,124,5,98,116,130,98,124,98,124,3,161,124,130,162, - 124,162,124,9,161,124,129,160,124,3,97,124,131,96,124,97,116,97,116,3, - 96,116,140,97,116,33,116,33,116,97,116,96,116,33,116,96,116,160,124,160, - 132,224,132,225,132,33,133,4,34,133,133,33,133,225,132,225,132,224,132,224, - 132,17,225,132,129,224,132,23,225,132,137,226,132,101,124,134,115,196,115,99, - 124,99,124,98,124,96,124,96,124,11,160,124,130,224,132,225,132,5,226,132, - 9,225,132,3,226,132,6,225,132,3,226,132,145,162,132,163,124,163,124,100, - 124,36,124,37,116,197,115,134,115,70,107,6,107,6,107,199,106,135,98,135, - 98,70,90,135,98,115,181,26,255,255,134,122,231,169,157,196,99,199,99,135, - 99,135,99,4,135,91,130,135,99,135,91,4,135,99,6,199,99,131,135,99, - 199,99,199,99,4,198,99,129,199,99,4,198,99,6,199,99,130,133,91,237, - 140,18,255,255,134,124,231,40,116,38,108,199,99,136,99,199,107,3,199,99, - 131,136,99,73,91,200,99,3,39,108,129,199,107,3,39,108,4,199,107,132, - 200,99,200,99,199,99,136,99,3,200,99,132,136,99,200,99,200,107,200,99, - 7,200,107,132,40,108,39,108,103,116,39,108,3,200,107,6,40,108,135,39, - 108,103,116,165,124,164,124,162,124,160,124,179,206,18,255,255,133,112,190,224, - 124,226,132,226,132,226,124,9,226,132,129,227,132,4,226,132,3,225,132,131, - 224,124,102,149,57,231,21,255,255,131,243,197,2,99,192,90,39,0,99,119, - 3,16,255,255,129,105,181,8,96,148,130,228,164,122,239,3,255,255,134,188, - 247,172,189,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3,101,140, - 130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199, - 131,12,199,123,129,198,123,5,134,115,5,133,115,132,132,115,68,115,68,107, - 68,107,3,67,107,4,66,107,130,132,115,242,189,5,255,255,129,177,181,5, - 0,99,131,192,98,192,98,236,156,9,255,255,255,53,206,192,98,192,98,66, - 107,105,140,105,140,1,99,192,98,66,107,123,239,255,255,45,165,192,98,105, - 140,255,255,255,255,59,231,192,98,192,98,58,231,123,239,192,98,192,98,249, - 222,255,255,255,255,190,247,198,123,192,98,39,132,52,198,176,181,1,99,192, - 98,242,189,255,255,177,181,192,98,197,123,255,255,255,255,118,214,192,98,66, - 107,189,247,255,255,58,231,192,98,192,98,123,239,52,198,192,98,66,107,118, - 206,249,222,236,156,192,98,192,98,53,198,255,255,53,198,192,98,0,99,236, - 156,117,206,189,247,67,107,192,98,105,140,52,198,111,173,192,98,192,98,117, - 206,255,255,248,222,0,99,192,98,67,107,133,123,192,98,1,99,192,98,118, - 206,255,255,132,115,192,98,243,189,255,255,255,255,189,247,2,107,192,98,46, - 165,250,230,52,198,1,99,192,98,105,140,255,255,46,165,192,98,192,98,105, - 140,52,198,45,165,192,98,192,98,118,206,255,255,198,123,192,98,177,181,255, - 255,255,255,243,197,192,98,132,115,190,247,255,255,254,255,132,115,192,98,192, - 98,170,148,255,255,255,255,5,255,255,198,236,156,192,98,192,98,40,140,111, - 173,237,164,67,107,192,98,67,115,189,247,124,239,66,107,192,98,105,148,52, - 198,46,165,192,98,192,98,118,214,255,255,236,156,192,98,105,148,255,255,243, - 197,192,98,192,98,45,165,178,181,132,115,192,98,192,98,249,222,255,255,111, - 173,192,98,1,107,45,165,249,222,242,189,192,98,198,123,255,255,124,239,66, - 107,192,98,170,148,52,198,46,165,192,98,192,98,183,214,255,255,170,148,192, - 98,236,156,255,255,255,255,184,214,192,98,1,99,189,247,177,181,192,98,66, - 107,118,206,58,231,236,156,192,98,197,123,34,255,255,133,190,247,113,190,34, - 133,224,124,33,133,8,34,133,131,33,133,225,132,226,132,6,225,132,133,161, - 132,161,124,162,124,98,124,98,124,5,98,116,129,98,124,4,161,124,130,162, - 124,162,124,10,161,124,3,97,124,131,96,124,97,116,97,116,3,96,116,129, - 33,116,3,97,116,135,33,116,32,116,96,124,160,124,224,132,224,132,225,132, - 5,34,133,129,33,133,3,225,132,129,224,132,10,225,132,129,224,132,9,225, - 132,132,224,132,224,132,225,132,224,132,17,225,132,137,226,132,100,124,134,115, - 132,115,98,124,99,124,98,124,97,124,96,124,11,160,124,130,160,132,224,132, - 4,226,132,10,225,132,129,226,132,7,225,132,4,226,132,144,162,132,163,124, - 163,124,100,124,36,124,37,116,197,115,134,115,70,107,6,107,6,107,199,106, - 134,98,69,90,74,123,185,214,26,255,255,135,244,206,35,133,160,116,38,108, - 199,99,199,99,135,99,4,135,91,132,135,99,135,91,135,91,135,99,4,199, - 99,129,135,99,6,199,99,6,198,99,131,199,99,199,99,198,99,6,199,99, - 131,198,99,133,91,244,181,18,255,255,133,183,206,198,99,135,99,136,99,199, - 107,3,199,99,132,136,99,136,99,200,99,199,107,6,39,108,129,199,99,3, - 199,107,135,200,99,136,99,199,99,136,99,200,99,200,107,200,107,3,200,99, - 8,200,107,129,40,108,3,39,108,4,200,107,6,40,108,135,103,116,165,124, - 164,116,163,116,162,116,227,132,122,231,18,255,255,131,168,157,224,124,226,124, - 14,226,132,3,225,132,131,224,124,169,157,188,239,21,255,255,131,111,173,192, - 90,192,98,40,0,99,91,3,16,255,255,129,246,222,9,96,148,130,163,156, - 247,230,4,255,255,132,247,222,40,165,98,140,98,140,3,99,140,4,100,140, - 3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132,130, - 199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,132,132,115,68, - 115,68,107,68,107,3,67,107,3,66,107,130,45,165,124,239,4,255,255,130, - 190,247,44,165,6,0,99,131,192,98,192,98,243,189,10,255,255,130,53,206, - 132,115,4,192,98,145,198,123,249,222,255,255,255,255,45,165,192,98,105,140, - 255,255,255,255,59,231,192,98,192,98,58,231,123,239,192,98,192,98,249,222, - 3,255,255,130,58,231,39,132,3,192,98,148,1,99,110,173,255,255,255,255, - 177,181,192,98,197,123,255,255,255,255,118,206,192,98,66,107,189,247,255,255, - 58,231,192,98,192,98,58,231,189,247,199,131,3,192,98,141,133,115,68,115, - 192,98,242,189,255,255,124,239,133,123,192,98,192,98,171,156,255,255,248,222, - 197,123,3,192,98,130,2,107,177,181,3,255,255,140,248,222,105,140,67,107, - 133,123,51,198,198,123,192,98,118,206,255,255,132,115,192,98,243,189,3,255, - 255,129,112,181,3,192,98,137,1,99,198,131,192,98,198,131,255,255,46,165, - 192,98,198,123,197,123,3,192,98,146,111,173,255,255,255,255,197,123,192,98, - 177,181,255,255,255,255,243,197,192,98,132,115,190,247,255,255,255,255,112,173, - 192,98,192,98,117,206,7,255,255,131,190,247,236,156,1,99,4,192,98,134, - 198,123,249,222,255,255,255,255,184,214,133,115,3,192,98,138,66,107,242,189, - 255,255,255,255,236,156,192,98,105,148,255,255,189,247,198,131,3,192,98,145, - 170,148,67,107,192,98,249,222,255,255,249,222,67,107,192,98,192,98,242,189, - 243,189,192,98,197,123,255,255,255,255,183,214,133,115,3,192,98,143,66,107, - 242,189,255,255,255,255,170,148,192,98,236,156,255,255,255,255,184,214,192,98, - 1,99,123,239,254,255,171,148,4,192,98,130,132,115,183,214,33,255,255,132, - 55,223,167,149,224,124,225,132,11,34,133,129,33,133,7,225,132,133,161,132, - 162,124,162,124,98,124,98,124,5,98,116,129,98,124,4,161,124,129,162,124, - 11,161,124,132,97,124,96,124,97,124,96,124,5,96,116,139,33,116,96,116, - 97,116,33,116,33,116,96,116,160,124,160,132,224,132,225,132,33,133,4,34, - 133,16,225,132,129,224,132,10,225,132,129,224,132,6,225,132,129,224,132,3, - 225,132,129,224,132,9,225,132,137,163,124,197,115,132,115,35,124,99,124,99, - 124,98,124,96,124,96,124,11,160,124,130,224,132,225,132,3,226,132,17,225, - 132,3,226,132,145,225,132,226,132,162,132,163,124,163,124,100,124,100,124,37, - 116,197,115,133,115,70,107,70,107,6,107,198,98,134,98,176,156,189,247,25, - 255,255,136,189,247,46,182,224,124,224,132,226,124,38,108,199,99,199,99,3, - 135,99,135,135,91,135,91,135,99,135,91,135,91,135,99,199,99,4,135,99, - 5,199,99,4,198,99,133,134,99,198,99,199,99,135,99,199,99,3,198,99, - 5,199,99,131,198,99,198,99,249,214,18,255,255,131,178,173,70,91,136,99, - 4,199,99,132,136,99,199,99,199,99,199,107,3,39,108,129,199,107,3,39, - 108,3,199,107,135,200,99,200,99,199,99,200,99,199,107,39,108,199,107,3, - 200,99,8,200,107,131,40,108,39,108,39,108,5,200,107,6,40,108,136,102, - 116,164,124,163,124,162,124,162,124,160,116,104,149,190,247,17,255,255,131,122, - 231,228,132,225,124,6,226,132,129,227,124,6,226,132,134,33,133,33,133,225, - 132,224,124,237,173,254,247,20,255,255,132,189,247,172,156,128,90,192,98,40, - 0,99,1,64,99,38,3,17,255,255,129,38,173,9,96,148,130,97,148,114, - 214,5,255,255,130,180,214,231,164,3,99,140,4,100,140,3,101,140,130,37, - 140,37,140,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12, - 199,123,129,198,123,5,134,115,5,133,115,132,132,115,68,115,68,107,68,107, - 4,67,107,130,236,156,249,222,5,255,255,130,59,231,39,132,7,0,99,131, - 192,98,1,99,59,231,11,255,255,133,190,247,182,214,242,189,242,189,183,214, - 4,255,255,141,123,239,248,222,59,231,255,255,255,255,254,255,249,222,249,222, - 190,247,254,255,249,222,249,222,190,247,5,255,255,132,183,214,243,189,52,198, - 59,231,3,255,255,164,124,239,248,222,58,231,255,255,255,255,189,247,249,222, - 249,222,255,255,255,255,190,247,249,222,249,222,190,247,255,255,190,247,118,206, - 243,189,118,214,254,255,59,231,248,222,123,239,255,255,255,255,190,247,248,222, - 182,214,59,231,255,255,255,255,190,247,183,214,243,189,53,198,123,239,3,255, - 255,131,184,214,52,198,183,214,3,255,255,135,67,107,192,98,183,214,255,255, - 58,231,248,222,125,239,4,255,255,143,249,222,243,197,52,198,123,239,190,247, - 249,222,249,222,255,255,46,165,192,98,170,148,190,247,117,206,243,197,249,222, - 3,255,255,136,58,231,248,222,124,239,255,255,255,255,125,239,248,222,250,230, - 3,255,255,132,177,181,192,98,67,107,190,247,9,255,255,133,58,231,52,198, - 177,181,242,189,184,214,5,255,255,133,190,247,182,214,243,189,117,206,124,239, - 3,255,255,150,123,239,248,222,59,231,255,255,255,255,190,247,118,206,243,189, - 248,222,255,255,250,230,249,222,190,247,255,255,255,255,124,239,183,214,182,214, - 124,239,125,239,248,222,58,231,3,255,255,133,190,247,118,206,243,189,117,206, - 124,239,3,255,255,144,59,231,248,222,123,239,255,255,255,255,190,247,249,222, - 249,222,254,255,255,255,255,255,249,222,52,198,243,189,118,206,189,247,32,255, - 255,132,188,239,44,174,225,124,224,124,13,34,133,129,33,133,7,225,132,133, - 161,124,162,124,162,124,98,124,98,124,5,98,116,130,98,124,162,124,15,161, - 124,133,96,124,96,124,97,124,96,124,96,124,3,96,116,130,97,116,33,116, - 3,97,116,135,33,116,96,124,160,124,224,132,224,132,225,132,33,133,4,34, - 133,18,225,132,129,224,132,9,225,132,129,224,132,5,225,132,129,224,132,13, - 225,132,137,226,132,37,116,197,115,35,116,99,124,99,124,98,124,98,124,96, - 124,11,160,124,130,224,132,225,132,3,226,132,18,225,132,145,226,132,226,132, - 225,132,226,132,162,132,163,124,163,124,100,124,100,124,37,116,197,115,133,115, - 134,115,70,107,197,98,72,115,55,206,26,255,255,137,57,231,102,149,224,124, - 226,132,226,132,226,124,38,108,199,99,199,99,8,135,99,129,199,99,4,135, - 99,7,135,91,133,134,91,135,99,135,99,134,99,134,99,3,135,99,130,199, - 99,198,99,6,199,99,132,198,99,198,91,105,116,189,239,18,255,255,130,109, - 124,71,91,7,199,99,129,199,107,3,39,108,129,199,107,3,39,108,132,199, - 99,199,107,199,107,200,99,3,199,99,130,39,108,39,108,4,200,99,8,200, - 107,131,40,108,39,108,39,108,5,200,107,6,40,108,136,166,116,164,124,226, - 124,226,124,225,124,226,124,160,116,238,173,18,255,255,130,179,206,224,124,12, - 226,132,133,225,132,33,133,224,132,225,124,113,190,21,255,255,131,123,239,39, - 132,128,90,41,0,99,130,64,99,128,99,21,2,17,255,255,129,246,222,11, - 96,148,130,172,189,189,247,4,255,255,132,254,255,116,214,232,164,99,140,4, - 100,140,3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39, - 132,130,199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,136,132, - 115,68,115,68,107,68,107,67,107,132,115,237,156,249,222,6,255,255,130,52, - 198,131,115,8,0,99,130,192,98,40,140,85,255,255,137,242,189,192,98,192, - 98,242,189,183,214,171,148,192,98,132,115,190,247,16,255,255,131,45,165,192, - 98,105,140,16,255,255,133,176,181,197,123,1,99,192,98,46,165,108,255,255, - 132,179,206,35,141,224,124,225,132,14,34,133,129,33,133,7,225,132,133,161, - 124,162,124,162,124,98,124,98,124,5,98,116,130,98,124,98,124,15,161,124, - 129,160,124,4,96,124,3,96,116,131,97,116,97,116,33,116,3,96,116,139, - 160,124,160,124,224,132,225,132,33,133,33,133,34,133,34,133,33,133,34,133, - 33,133,17,225,132,132,224,132,225,132,225,132,224,132,20,225,132,143,224,132, - 224,132,225,132,224,132,224,132,225,132,226,132,100,124,197,115,196,115,35,124, - 99,124,98,124,98,124,33,124,11,160,124,132,224,132,224,132,225,132,226,132, - 19,225,132,4,226,132,140,162,132,163,124,163,124,100,124,100,124,37,124,197, - 115,197,115,69,107,5,99,108,148,124,239,26,255,255,138,179,198,226,132,225, - 124,226,132,226,132,225,132,226,124,38,108,199,99,199,99,3,135,99,4,199, - 99,3,135,99,137,135,91,135,91,135,99,135,91,135,91,71,91,71,91,71, - 83,71,91,6,135,91,133,134,91,134,91,135,99,199,99,199,99,3,135,99, - 4,199,99,131,198,99,133,91,47,149,18,255,255,130,60,231,201,107,6,199, - 99,133,200,99,199,99,39,108,39,108,199,107,3,39,108,133,199,99,199,99, - 199,107,199,99,200,99,3,199,99,129,39,108,4,200,99,4,200,107,130,39, - 108,40,108,3,200,107,131,40,108,39,108,199,107,5,200,107,5,40,108,133, - 39,108,165,116,164,124,163,124,163,124,3,226,124,130,161,124,246,214,18,255, - 255,132,236,173,224,124,226,132,225,132,8,226,132,133,33,133,33,133,224,124, - 35,133,246,214,21,255,255,131,249,222,132,115,128,90,41,0,99,131,64,99, - 128,107,128,99,20,2,18,255,255,129,106,181,11,96,148,130,229,164,247,230, - 5,255,255,131,254,255,181,214,42,165,3,100,140,3,101,140,130,37,140,37, - 140,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12,199,123, - 129,198,123,5,134,115,5,133,115,134,132,115,68,115,68,107,198,123,111,173, - 58,231,6,255,255,132,124,239,236,156,1,107,1,107,8,0,99,130,192,98, - 117,206,86,255,255,130,46,165,1,99,3,192,98,130,39,132,249,222,17,255, - 255,131,46,165,1,99,170,148,16,255,255,133,46,165,192,98,2,107,170,148, - 189,247,106,255,255,132,121,231,169,157,224,124,225,132,16,34,133,129,33,133, - 6,225,132,129,161,132,3,162,124,130,98,124,99,124,4,98,116,131,98,124, - 97,124,162,124,13,161,124,131,160,124,161,124,160,124,3,96,124,4,96,116, - 3,97,116,135,96,116,96,124,96,124,160,124,224,132,225,132,33,133,6,34, - 133,129,33,133,20,225,132,133,224,132,224,132,225,132,224,132,224,132,6,225, - 132,134,224,132,224,132,225,132,225,132,224,132,224,132,6,225,132,129,224,132, - 3,225,132,138,226,132,100,124,197,115,196,115,35,124,99,124,99,124,98,124, - 33,124,96,124,10,160,124,132,160,132,224,132,225,132,226,132,18,225,132,5, - 226,132,138,162,132,163,124,163,124,100,124,100,124,37,124,197,115,132,107,134, - 115,179,181,26,255,255,132,189,247,236,165,160,116,225,124,3,226,132,131,225, - 132,226,124,38,108,10,199,99,130,135,99,135,99,4,135,91,137,71,91,71, - 83,7,83,7,75,199,74,7,75,7,83,7,83,71,83,3,71,91,3,135, - 91,129,135,99,4,135,91,5,199,99,130,133,91,53,190,18,255,255,129,183, - 206,3,199,99,136,200,99,199,99,200,99,200,99,199,107,39,108,199,107,199, - 99,3,39,108,133,199,99,199,99,199,107,199,99,200,99,4,199,99,132,200, - 99,200,107,200,99,200,99,9,200,107,131,40,108,39,108,200,99,5,200,107, - 144,40,108,40,108,200,107,200,107,40,108,102,116,101,116,37,108,100,116,100, - 116,163,116,163,124,163,124,161,124,228,132,188,239,17,255,255,131,188,239,37, - 141,224,124,8,226,132,133,33,133,33,133,224,124,101,141,57,231,21,255,255, - 131,118,206,2,107,192,90,40,0,99,129,64,99,4,128,99,5,2,18,255, - 255,130,123,247,162,156,11,96,148,131,97,148,238,189,189,247,6,255,255,131, - 57,231,175,181,167,148,3,101,140,130,37,140,37,140,4,38,140,130,38,132, - 38,132,11,39,132,130,199,131,199,131,12,199,123,129,198,123,5,134,115,6, - 133,115,131,171,148,53,198,189,247,7,255,255,133,52,198,132,115,65,107,1, - 107,1,107,8,0,99,129,198,131,88,255,255,132,124,239,182,214,118,206,249, - 222,19,255,255,131,189,247,123,239,124,239,16,255,255,131,189,247,123,239,124, - 239,106,255,255,132,189,247,47,182,34,133,224,124,18,34,133,129,33,133,6, - 225,132,129,161,132,3,162,124,137,98,124,98,124,98,116,99,116,98,116,98, - 116,98,124,97,124,162,124,7,161,124,4,160,124,134,161,124,160,124,160,124, - 161,124,161,124,160,124,3,96,124,3,96,116,3,97,116,133,96,116,96,124, - 160,124,224,132,224,132,3,33,133,5,34,133,129,33,133,7,225,132,129,226, - 132,5,225,132,129,224,132,6,225,132,5,224,132,23,225,132,137,164,124,197, - 115,196,115,35,124,99,124,99,124,98,124,34,124,32,124,9,160,124,131,160, - 132,160,124,224,132,20,225,132,4,226,132,138,162,132,162,124,163,124,163,124, - 100,124,100,124,36,116,131,107,106,140,250,222,26,255,255,133,247,214,37,141, - 160,116,226,124,226,124,4,226,132,130,226,124,38,108,10,199,99,130,135,99, - 135,91,5,199,99,145,135,91,71,91,71,91,7,83,199,74,71,66,71,58, - 7,50,6,58,71,66,71,66,135,66,199,74,7,75,7,83,71,83,71,91, - 5,135,91,133,135,99,135,99,134,91,199,99,250,222,18,255,255,130,178,165, - 134,91,5,199,99,140,199,107,199,99,199,107,199,99,199,107,39,108,199,107, - 199,99,199,99,199,107,199,99,200,99,3,199,99,133,200,99,200,99,200,107, - 200,99,200,99,5,200,107,129,39,108,4,200,107,132,39,108,199,99,136,99, - 136,99,5,200,107,136,40,108,39,108,103,108,103,116,102,116,164,124,163,124, - 99,116,4,100,116,130,98,108,106,149,18,255,255,131,55,223,225,124,226,124, - 6,226,132,133,225,132,225,132,224,124,169,157,188,239,21,255,255,131,177,181, - 192,98,192,90,41,0,99,4,128,99,1,64,99,251,1,19,255,255,129,245, - 222,11,96,148,132,97,148,97,148,229,156,180,214,7,255,255,134,189,247,181, - 214,108,173,102,148,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132, - 130,199,131,199,131,12,199,123,129,198,123,5,134,115,134,133,115,133,115,134, - 115,171,148,243,189,59,231,8,255,255,130,248,222,169,148,3,65,107,130,1, - 107,1,107,8,0,99,129,184,222,127,255,255,111,255,255,132,245,214,101,149, - 224,124,225,132,19,34,133,7,225,132,140,161,132,162,124,162,124,98,124,98, - 124,99,116,98,116,98,116,98,124,98,116,98,124,97,124,7,161,124,130,160, - 124,161,124,9,160,124,4,96,124,6,96,116,136,160,124,224,132,224,132,225, - 132,225,132,33,133,225,132,33,133,3,34,133,131,33,133,225,132,226,132,13, - 225,132,129,224,132,5,225,132,6,224,132,8,225,132,129,224,132,3,225,132, - 131,226,132,225,132,33,133,7,225,132,138,163,124,197,115,196,115,36,116,35, - 124,99,124,98,124,98,124,33,124,96,124,8,160,124,132,160,132,160,124,224, - 132,224,132,19,225,132,4,226,132,137,162,132,162,124,163,124,99,124,100,124, - 35,116,35,116,176,173,190,247,26,255,255,131,112,190,225,124,160,124,4,226, - 124,3,226,132,130,226,124,38,108,7,199,99,133,135,99,199,99,199,99,135, - 99,135,99,5,199,99,143,135,99,135,99,71,91,7,83,7,83,199,74,135, - 66,71,58,199,49,198,49,6,50,7,58,71,58,71,58,135,66,3,71,58, - 129,135,66,3,199,74,134,7,83,71,83,135,91,134,91,171,124,190,247,17, - 255,255,133,254,247,173,132,134,91,199,99,200,99,7,199,99,129,199,107,5, - 199,99,129,200,99,3,199,99,135,200,99,200,99,200,107,200,99,200,99,200, - 107,200,99,3,200,107,129,39,108,5,200,107,151,199,107,136,91,72,91,136, - 91,136,99,200,99,200,99,199,107,39,108,39,108,103,116,103,116,102,116,228, - 124,33,133,34,133,226,132,226,132,226,124,226,124,162,124,161,116,113,190,18, - 255,255,130,48,182,160,124,5,226,132,133,225,132,225,132,224,124,237,173,254, - 255,21,255,255,131,237,156,192,90,192,98,41,0,99,5,128,99,1,64,99, - 234,1,20,255,255,129,47,198,10,96,148,134,97,148,97,148,98,148,98,140, - 41,173,247,222,8,255,255,132,124,239,117,214,109,173,168,148,3,38,140,130, - 38,132,38,132,11,39,132,130,199,131,199,131,12,199,123,129,198,123,4,134, - 115,132,41,132,46,165,117,206,124,239,9,255,255,132,58,231,237,156,66,107, - 66,107,3,65,107,130,1,107,1,107,7,0,99,129,46,165,127,255,255,110, - 255,255,132,123,239,235,165,225,124,225,124,20,34,133,129,33,133,6,225,132, - 141,161,132,161,124,162,124,162,124,98,124,99,124,98,124,98,116,98,116,98, - 124,98,116,98,124,97,124,6,161,124,12,160,124,4,96,124,5,96,116,143, - 160,124,160,124,224,132,224,132,225,132,225,132,33,133,225,132,225,132,33,133, - 34,133,33,133,33,133,225,132,226,132,6,225,132,129,226,132,6,225,132,129, - 224,132,3,225,132,8,224,132,8,225,132,129,224,132,4,225,132,129,33,133, - 5,225,132,141,224,132,224,132,225,132,163,132,37,116,196,115,35,116,35,124, - 35,124,99,124,98,124,34,116,96,124,10,160,124,130,160,132,224,132,18,225, - 132,4,226,132,136,225,132,162,132,162,124,163,124,99,124,34,116,102,132,182, - 206,26,255,255,132,124,239,169,157,160,116,225,124,4,226,124,4,226,132,130, - 163,124,38,108,15,199,99,135,199,107,39,108,199,99,199,99,135,91,135,91, - 71,91,5,71,83,3,71,91,136,71,83,71,83,7,83,199,74,135,66,135, - 66,71,66,71,58,3,7,58,132,71,58,135,66,134,66,241,148,18,255,255, - 135,124,231,137,99,7,83,8,83,72,91,135,91,135,99,10,199,99,131,200, - 99,200,99,199,99,3,200,99,3,199,99,131,200,107,200,99,200,99,5,200, - 107,131,200,99,200,107,200,107,5,200,99,137,199,99,199,107,39,108,39,108, - 39,116,39,116,103,116,103,116,228,124,7,226,132,131,225,132,226,132,121,231, - 17,255,255,138,190,247,39,149,224,124,226,132,226,132,225,132,33,133,224,132, - 225,124,113,190,21,255,255,132,189,247,105,140,128,90,192,98,40,0,99,129, - 64,99,5,128,99,130,64,99,64,99,216,1,21,255,255,129,172,189,9,96, - 148,136,97,148,97,148,98,148,98,140,98,140,99,140,106,173,247,222,9,255, - 255,134,189,247,248,222,242,189,44,165,104,148,38,132,11,39,132,130,199,131, - 199,131,12,199,123,134,200,131,171,148,111,173,53,198,58,231,190,247,10,255, - 255,131,249,222,45,165,67,107,3,66,107,3,65,107,130,1,107,1,107,6, - 0,99,130,104,140,254,255,127,255,255,108,255,255,133,254,255,113,190,35,141, - 224,124,33,133,21,34,133,129,33,133,6,225,132,137,161,132,161,124,162,124, - 162,124,98,124,99,124,98,124,99,116,99,124,3,98,124,129,97,124,5,161, - 124,14,160,124,5,96,124,130,96,116,96,116,3,160,124,129,224,132,5,225, - 132,4,33,133,130,225,132,226,132,18,225,132,11,224,132,5,225,132,129,224, - 132,5,225,132,132,226,132,226,132,225,132,225,132,3,224,132,141,225,132,226, - 132,36,124,132,115,196,115,35,124,99,124,99,124,98,124,98,124,33,116,96, - 124,96,124,8,160,124,130,160,132,224,132,18,225,132,4,226,132,135,225,132, - 226,132,162,124,162,124,97,116,109,165,124,239,26,255,255,131,245,206,36,133, - 160,116,7,226,124,138,226,132,225,132,225,132,163,124,38,108,39,108,199,107, - 199,99,199,99,199,107,8,199,99,129,199,107,3,39,108,132,199,107,199,107, - 39,108,39,108,11,199,99,3,135,91,139,71,91,71,91,71,83,7,83,7, - 75,199,74,199,74,135,66,135,66,70,58,181,181,18,255,255,140,56,190,71, - 58,72,66,136,66,136,66,136,74,200,74,200,74,8,83,71,91,135,91,135, - 99,6,199,99,4,200,99,3,199,99,3,200,99,132,199,99,199,107,199,107, - 200,107,6,200,99,132,199,99,199,99,199,107,38,108,5,39,108,131,39,116, - 103,116,164,124,8,226,132,131,225,124,102,149,189,247,17,255,255,136,57,231, - 226,132,225,124,226,132,225,132,224,124,35,133,246,214,21,255,255,131,249,222, - 198,123,128,90,41,0,99,129,64,99,4,128,99,132,64,99,64,99,65,99, - 65,91,242,1,22,255,255,129,105,181,8,96,148,133,97,148,97,148,98,148, - 98,140,98,140,3,99,140,131,41,165,116,206,189,247,10,255,255,135,189,247, - 57,231,117,206,176,181,237,164,170,148,40,132,6,39,132,130,199,131,199,131, - 5,199,123,136,40,132,106,140,172,148,47,165,178,181,118,206,249,222,125,239, - 12,255,255,133,254,255,183,214,171,148,67,107,67,107,4,66,107,3,65,107, - 130,1,107,1,107,5,0,99,130,197,123,124,239,127,255,255,108,255,255,132, - 55,223,167,149,224,124,225,132,23,34,133,130,33,133,226,132,5,225,132,129, - 161,132,3,162,124,132,98,124,99,124,98,124,99,124,5,98,124,5,161,124, - 16,160,124,137,96,124,160,124,224,132,160,124,96,116,160,124,160,124,224,132, - 224,132,5,225,132,129,33,133,23,225,132,5,224,132,129,225,132,5,224,132, - 6,225,132,129,224,132,3,225,132,3,226,132,3,225,132,143,224,132,224,132, - 225,132,226,132,100,124,132,115,196,115,35,124,98,124,99,124,98,124,98,124, - 34,116,32,116,96,124,9,160,124,130,224,132,224,132,18,225,132,136,226,132, - 225,132,226,132,225,132,162,132,161,124,163,132,115,198,26,255,255,132,190,247, - 46,174,160,124,161,124,8,226,124,3,226,132,141,163,124,39,108,39,108,199, - 107,199,107,39,108,199,107,199,107,199,99,199,99,200,99,200,99,136,99,4, - 199,99,133,199,107,199,107,39,108,199,107,199,107,4,39,108,130,199,107,199, - 107,6,39,108,5,199,99,138,135,99,135,99,135,91,135,91,71,91,71,91, - 71,83,6,75,8,83,250,222,18,255,255,133,115,165,134,66,8,83,8,83, - 8,75,7,200,74,3,8,83,130,72,91,136,91,4,136,99,136,200,99,200, - 99,199,99,200,99,200,99,199,99,200,99,200,99,3,136,99,138,136,91,136, - 99,136,99,135,99,135,99,199,99,199,107,199,107,38,108,38,108,4,39,108, - 131,39,116,103,116,164,124,9,226,132,130,224,124,45,182,18,255,255,134,114, - 198,224,124,225,132,224,124,102,149,57,231,21,255,255,131,118,206,67,107,192, - 90,41,0,99,130,64,99,128,107,3,128,99,3,64,99,130,64,91,1,91, - 235,1,22,255,255,130,254,255,105,181,7,96,148,133,97,148,97,148,98,148, - 98,140,98,140,3,99,140,134,100,140,100,140,167,148,175,189,248,222,254,255, - 12,255,255,145,190,247,124,239,58,231,183,214,118,206,52,198,243,189,242,189, - 242,189,243,189,52,198,53,206,183,214,249,222,59,231,124,239,190,247,16,255, - 255,132,58,231,177,181,40,132,68,107,3,67,107,4,66,107,3,65,107,130, - 1,107,1,107,4,0,99,130,197,123,123,239,127,255,255,107,255,255,132,123, - 239,45,174,225,132,224,124,25,34,133,130,225,132,226,132,5,225,132,129,161, - 124,3,162,124,5,99,124,3,98,124,129,97,124,6,161,124,3,160,124,129, - 160,132,12,160,124,135,160,132,224,132,160,124,96,116,96,124,160,124,224,132, - 19,225,132,130,226,132,226,132,12,225,132,132,224,132,224,132,225,132,225,132, - 7,224,132,3,225,132,130,224,132,224,132,3,225,132,130,226,132,226,132,3, - 225,132,142,224,132,224,132,225,132,225,132,163,124,196,115,196,115,35,124,98, - 124,99,124,99,124,98,124,34,116,33,116,10,160,124,130,160,132,224,132,17, - 225,132,4,226,132,132,225,124,160,124,105,157,57,231,26,255,255,132,57,223, - 103,149,160,116,225,124,9,226,124,135,226,132,226,124,226,132,164,116,39,108, - 39,108,199,99,3,199,107,134,39,108,199,107,200,99,199,99,200,99,200,99, - 5,199,99,129,200,99,5,199,99,129,199,107,15,39,108,138,199,107,199,107, - 199,99,199,99,135,99,135,91,135,91,6,83,43,116,190,247,17,255,255,136, - 254,255,174,140,6,83,72,91,72,91,72,83,71,83,71,91,3,71,83,134, - 7,83,8,83,7,83,8,83,200,74,200,82,3,8,83,129,200,74,3,8, - 83,129,72,83,6,72,91,132,136,91,72,91,136,99,200,99,4,199,99,138, - 199,107,38,108,38,108,39,108,199,107,39,108,39,108,39,116,103,116,228,124, - 10,226,132,130,224,124,246,214,18,255,255,132,168,157,160,116,234,165,188,239, - 21,255,255,131,178,189,1,99,192,90,41,0,99,130,64,99,128,107,3,128, - 99,3,64,99,131,64,91,1,91,1,91,144,1,23,255,255,130,254,255,170, - 181,6,96,148,133,97,148,97,148,98,148,98,140,98,140,3,99,140,4,100, - 140,133,101,140,233,156,240,189,248,222,190,247,39,255,255,135,250,222,242,189, - 170,148,132,115,68,115,68,107,68,107,3,67,107,4,66,107,3,65,107,130, - 1,107,1,107,3,0,99,130,39,132,124,239,127,255,255,107,255,255,132,178, - 198,35,141,224,124,225,132,25,34,133,130,226,132,226,132,5,225,132,130,161, - 132,161,124,3,162,124,5,99,124,3,98,124,7,161,124,16,160,124,133,224, - 132,160,124,96,116,96,116,160,124,4,224,132,129,225,132,3,224,132,20,225, - 132,130,224,132,224,132,6,225,132,9,224,132,5,225,132,130,224,132,224,132, - 8,225,132,136,224,132,224,132,225,132,162,124,196,115,132,115,35,116,34,124, - 3,98,124,130,34,124,33,116,11,160,124,129,224,132,19,225,132,132,226,132, - 160,124,161,124,47,190,27,255,255,131,114,198,226,124,160,116,14,226,124,131, - 101,116,39,108,39,108,3,199,107,3,39,108,6,200,99,132,199,99,199,99, - 136,99,200,99,5,199,99,19,39,108,4,199,99,131,135,99,69,83,48,149, - 18,255,255,133,125,239,106,116,134,91,135,99,135,99,6,135,91,4,71,91, - 146,72,83,8,83,71,91,71,91,71,83,72,91,71,91,72,91,71,91,135, - 91,71,91,135,91,136,91,72,91,136,99,136,99,136,91,136,99,3,199,99, - 130,199,107,199,107,3,39,108,3,199,107,132,39,108,39,108,103,116,227,124, - 10,226,132,131,225,124,36,141,124,239,17,255,255,130,122,231,47,182,21,255, - 255,132,254,255,237,164,128,90,192,98,41,0,99,129,64,99,4,128,99,3, - 64,99,132,65,91,1,91,1,91,193,82,174,1,25,255,255,129,172,189,5, - 96,148,133,97,148,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3, - 101,140,134,37,140,168,148,109,173,116,206,58,231,189,247,30,255,255,133,254, - 255,59,231,118,206,111,173,105,140,3,133,115,132,132,115,68,115,68,107,68, - 107,3,67,107,4,66,107,3,65,107,134,1,107,1,107,0,99,0,99,170, - 148,189,247,127,255,255,106,255,255,132,56,223,169,157,224,124,225,132,27,34, - 133,136,226,132,226,132,225,132,225,132,226,132,225,132,225,132,161,132,3,162, - 124,4,99,124,5,98,124,3,161,124,129,160,124,3,161,124,18,160,124,134, - 96,116,160,124,160,132,224,132,224,132,225,132,3,224,132,130,160,132,224,132, - 8,225,132,130,224,132,224,132,17,225,132,11,224,132,5,225,132,130,224,132, - 224,132,4,225,132,139,224,132,225,132,225,132,224,132,225,132,225,132,162,132, - 36,124,196,115,195,115,34,124,4,98,124,129,33,124,11,160,124,129,224,132, - 17,225,132,133,226,132,225,132,160,124,37,149,247,222,26,255,255,132,188,239, - 235,165,160,116,225,124,12,226,124,132,225,124,225,124,226,124,102,116,8,39, - 108,132,200,107,200,107,200,99,200,99,4,199,99,132,136,99,136,99,199,99, - 200,99,3,199,99,131,39,108,199,99,199,107,6,39,108,130,199,107,199,107, - 8,39,108,130,199,99,199,107,3,199,99,131,198,99,134,91,118,190,18,255, - 255,131,249,222,198,99,198,99,6,199,99,4,135,99,132,135,91,71,91,72, - 83,71,91,3,135,91,130,135,99,135,91,5,135,99,5,136,99,4,199,99, - 131,199,107,39,108,39,108,5,199,107,130,39,108,165,116,9,226,132,3,226, - 124,130,161,124,171,165,39,255,255,131,125,247,105,140,128,90,42,0,99,129, - 64,99,3,128,99,3,64,99,134,64,91,65,91,1,91,1,91,1,83,193, - 82,190,1,26,255,255,129,47,198,4,96,148,133,97,148,97,148,98,148,98, - 140,98,140,3,99,140,4,100,140,3,101,140,130,37,140,37,140,3,38,140, - 135,168,148,45,165,177,189,118,206,249,222,124,239,190,247,19,255,255,136,189, - 247,59,231,183,214,243,189,238,164,105,140,134,115,134,115,5,133,115,132,132, - 115,68,115,68,107,68,107,3,67,107,4,66,107,3,65,107,132,1,107,1, - 107,65,107,177,181,127,255,255,106,255,255,132,188,239,47,182,225,132,224,124, - 29,34,133,140,225,132,226,132,225,132,225,132,226,132,225,132,225,132,161,132, - 161,124,162,124,162,124,98,124,3,99,124,4,98,124,129,97,124,3,161,124, - 131,160,124,161,124,161,124,21,160,124,4,224,132,133,160,132,160,124,161,124, - 160,132,224,132,8,225,132,129,224,132,18,225,132,6,224,132,130,225,132,225, - 132,4,224,132,5,225,132,129,224,132,11,225,132,133,99,124,196,115,35,116, - 34,124,97,124,3,98,124,130,33,124,96,124,10,160,124,129,160,132,17,225, - 132,132,224,124,225,124,236,173,188,247,26,255,255,131,246,214,37,141,160,116, - 15,226,124,130,225,124,163,124,12,39,108,135,199,99,199,99,39,108,39,108, - 199,99,199,99,199,107,5,199,99,132,199,107,199,99,199,107,199,107,4,39, - 108,141,199,107,199,99,39,108,199,107,199,107,199,99,199,107,39,108,39,108, - 199,107,199,99,199,99,199,107,4,199,99,131,134,99,199,107,59,231,18,255, - 255,130,52,190,197,99,3,199,107,130,39,108,199,107,6,199,99,131,135,99, - 135,91,135,99,7,199,99,4,135,99,132,199,99,199,99,136,99,200,99,5, - 199,99,130,199,107,39,108,5,199,107,130,102,116,227,124,5,226,132,129,227, - 124,6,226,124,131,226,132,224,124,178,198,37,255,255,131,58,231,198,123,128, - 90,42,0,99,129,64,99,4,128,99,131,64,99,64,99,64,91,3,1,91, - 131,1,83,193,82,193,82,213,1,27,255,255,137,180,214,162,148,96,148,96, - 148,97,148,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3,101,140, - 130,37,140,37,140,4,38,140,141,38,132,38,132,39,132,39,132,104,140,170, - 148,236,156,111,173,178,181,52,198,118,206,248,222,249,222,4,58,231,139,249, - 222,184,214,118,206,53,198,242,189,112,173,237,156,107,148,41,132,199,123,198, - 123,5,134,115,5,133,115,132,132,115,68,115,68,107,68,107,3,67,107,4, - 66,107,3,65,107,131,1,107,38,132,248,222,127,255,255,106,255,255,132,244, - 206,36,141,224,124,225,132,29,34,133,137,225,132,226,132,225,132,225,132,226, - 132,226,132,225,132,225,132,161,132,3,162,124,129,163,124,4,99,124,4,98, - 124,4,161,124,130,160,124,161,124,21,160,124,134,224,132,224,132,161,132,162, - 124,97,124,160,132,11,225,132,133,224,132,224,132,225,132,225,132,226,132,7, - 225,132,130,224,132,224,132,6,225,132,4,224,132,4,225,132,5,224,132,15, - 225,132,132,99,124,35,124,34,124,34,124,5,97,124,130,32,124,96,124,9, - 160,124,130,160,132,224,132,15,225,132,131,224,124,36,141,245,214,26,255,255, - 132,254,247,47,182,225,124,225,124,16,226,124,130,226,132,164,116,5,39,108, - 137,200,107,200,107,200,99,200,107,199,107,200,107,200,99,136,99,200,99,13, - 199,99,3,39,108,129,199,107,10,199,99,129,199,107,3,199,99,129,199,107, - 4,199,99,131,134,91,171,124,190,247,18,255,255,130,112,157,198,99,4,39, - 108,129,199,107,4,39,108,130,38,108,199,107,4,199,99,130,199,107,199,107, - 16,199,99,143,199,107,199,107,199,99,135,99,199,99,199,107,38,108,164,124, - 226,132,227,132,227,132,226,132,227,124,163,124,227,124,3,226,124,135,227,124, - 226,124,226,132,226,132,225,132,226,132,57,231,35,255,255,131,182,214,66,107, - 192,90,39,0,99,132,0,107,0,99,64,99,64,99,4,128,99,131,64,99, - 64,91,64,91,3,1,91,132,1,83,193,82,193,82,194,82,161,1,28,255, - 255,136,57,239,38,165,96,148,97,148,97,148,98,148,98,140,98,140,3,99, - 140,4,100,140,3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132, - 11,39,132,130,199,131,199,131,12,199,123,129,198,123,5,134,115,5,133,115, - 132,132,115,68,115,68,107,68,107,3,67,107,4,66,107,133,65,107,65,107, - 67,115,176,181,190,247,127,255,255,105,255,255,135,121,231,169,165,224,124,225, - 132,225,132,33,133,33,133,28,34,133,142,225,132,226,132,225,132,225,132,226, - 132,226,132,225,132,225,132,161,132,161,124,162,124,162,124,163,124,99,124,7, - 98,124,4,161,124,7,160,124,130,160,132,160,132,13,160,124,129,224,132,3, - 225,132,132,161,124,224,132,225,132,33,133,9,225,132,129,224,132,11,225,132, - 3,224,132,6,225,132,4,224,132,4,225,132,5,224,132,15,225,132,133,163, - 124,98,124,34,124,34,124,33,124,4,97,124,130,194,115,32,124,10,160,124, - 129,224,132,13,225,132,132,224,132,224,124,169,165,123,239,26,255,255,131,122, - 231,168,157,160,124,18,226,124,130,226,132,101,116,4,39,108,129,200,107,3, - 200,99,130,200,107,200,107,4,200,99,4,199,107,8,199,99,5,39,108,129, - 199,107,19,199,99,130,133,91,112,157,18,255,255,135,190,247,171,132,198,99, - 199,107,199,107,39,108,199,107,5,39,108,129,38,108,6,39,108,3,199,107, - 4,199,99,129,199,107,8,199,99,135,199,107,199,107,199,99,135,99,199,99, - 38,108,228,124,3,227,132,136,227,124,227,124,163,124,163,124,226,132,226,124, - 227,124,227,124,5,226,132,131,224,124,168,157,254,255,33,255,255,131,242,189, - 192,98,192,98,42,0,99,129,64,99,3,128,99,3,64,99,132,1,91,1, - 91,1,83,1,83,3,193,82,130,129,74,65,74,176,1,29,255,255,135,254, - 255,239,197,97,148,97,148,98,148,98,140,98,140,3,99,140,4,100,140,3, - 101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132,130,199, - 131,199,131,12,199,123,129,198,123,5,134,115,5,133,115,132,132,115,68,115, - 68,107,68,107,3,67,107,5,66,107,130,236,156,59,231,127,255,255,105,255, - 255,132,189,247,46,182,225,132,224,124,3,225,132,130,33,133,33,133,27,34, - 133,134,226,132,225,132,226,132,225,132,225,132,226,132,3,225,132,129,161,132, - 4,162,124,8,98,124,4,161,124,5,160,124,132,160,132,160,132,160,124,160, - 132,13,160,124,4,225,132,130,224,132,224,132,11,225,132,129,224,132,3,225, - 132,129,226,132,8,225,132,129,224,132,8,225,132,130,224,132,224,132,5,225, - 132,4,224,132,11,225,132,129,224,132,4,225,132,133,162,132,99,124,35,116, - 34,124,34,124,4,97,124,130,34,116,32,116,10,160,124,130,224,132,224,132, - 11,225,132,131,224,124,226,132,179,206,27,255,255,131,179,198,226,132,224,124, - 9,226,124,129,162,124,8,226,124,131,225,124,226,124,102,116,4,39,108,129, - 200,107,3,200,99,3,200,107,129,200,99,4,200,107,131,199,107,39,108,199, - 107,4,199,99,129,135,99,16,199,99,129,135,99,10,199,99,131,198,107,133, - 91,118,198,18,255,255,134,59,231,201,107,135,99,136,99,199,107,199,107,9, - 39,108,129,38,108,5,39,108,129,199,107,3,199,99,132,199,107,199,107,199, - 99,199,107,5,199,99,3,199,107,131,199,99,38,108,228,124,5,227,124,131, - 163,124,227,124,226,124,3,227,124,7,226,132,130,224,124,47,182,32,255,255, - 131,45,165,192,90,192,98,38,0,99,135,64,99,0,107,0,99,0,99,64, - 99,64,99,128,99,4,64,99,131,0,91,1,83,1,83,4,193,82,131,129, - 74,66,66,1,58,215,1,31,255,255,133,56,231,40,173,98,148,98,140,98, - 140,3,99,140,4,100,140,3,101,140,130,37,140,37,140,4,38,140,130,38, - 132,38,132,11,39,132,130,199,131,199,131,12,199,123,129,198,123,5,134,115, - 5,133,115,132,132,115,68,115,68,107,68,107,3,67,107,3,66,107,130,235, - 156,249,222,127,255,255,106,255,255,138,244,206,36,141,160,124,224,132,224,132, - 225,132,225,132,226,132,225,132,33,133,27,34,133,143,225,132,226,132,226,132, - 225,132,225,132,226,132,226,132,225,132,225,132,161,132,161,124,162,124,162,124, - 99,124,99,124,7,98,124,132,161,124,160,124,161,124,161,124,6,160,124,130, - 160,132,160,132,13,160,124,130,224,132,224,132,3,225,132,129,224,132,13,225, - 132,129,224,132,7,225,132,3,224,132,10,225,132,3,224,132,3,225,132,133, - 224,132,225,132,225,132,224,132,224,132,6,225,132,129,224,132,4,225,132,129, - 224,132,5,225,132,139,99,124,35,116,34,116,34,124,33,124,96,124,97,124, - 96,124,34,124,194,115,96,124,8,160,124,131,96,124,160,132,224,132,9,225, - 132,132,224,132,224,124,167,157,122,231,26,255,255,132,189,247,235,165,224,124, - 225,124,7,226,124,129,163,124,3,162,124,129,163,124,8,226,124,129,163,124, - 5,39,108,3,200,99,3,200,107,130,199,107,199,107,5,200,107,4,199,107, - 14,199,99,135,135,99,199,99,199,99,135,99,199,99,136,91,135,99,10,199, - 99,131,135,91,200,99,58,223,18,255,255,131,183,206,198,99,199,99,11,39, - 108,129,38,108,6,39,108,136,199,107,199,99,39,108,39,108,199,107,199,99, - 199,107,200,99,3,199,99,135,199,107,199,107,199,99,198,107,101,116,228,124, - 228,124,3,164,124,135,163,124,163,116,227,124,226,124,227,124,227,124,226,124, - 9,226,132,130,226,124,247,214,29,255,255,131,124,239,105,140,192,90,40,0, - 99,131,0,107,0,107,0,99,5,64,99,132,64,91,64,91,0,91,1,91, - 3,193,82,134,193,74,129,74,129,74,66,66,1,66,1,58,236,1,33,255, - 255,131,180,214,230,156,98,140,3,99,140,4,100,140,3,101,140,130,37,140, - 37,140,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12,199, - 123,129,198,123,5,134,115,5,133,115,132,132,115,68,115,68,107,68,107,3, - 67,107,131,132,115,46,165,58,231,127,255,255,106,255,255,132,122,231,169,165, - 160,124,224,124,5,225,132,131,226,132,225,132,33,133,27,34,133,146,225,132, - 226,132,226,132,225,132,225,132,226,132,226,132,225,132,226,132,161,132,162,124, - 162,124,163,124,162,124,99,124,98,124,98,124,99,124,4,98,124,132,161,124, - 161,124,160,124,161,124,6,160,124,3,160,132,10,160,124,131,96,124,160,124, - 224,132,3,225,132,129,224,132,4,225,132,3,224,132,15,225,132,3,224,132, - 6,225,132,129,224,132,3,225,132,4,224,132,133,225,132,224,132,224,132,225, - 132,225,132,5,224,132,14,225,132,139,162,124,35,116,195,115,35,116,33,124, - 96,124,97,124,96,124,97,124,195,115,32,116,10,160,124,129,224,132,8,225, - 132,132,224,124,224,124,111,190,254,255,26,255,255,132,247,222,101,141,224,124, - 225,132,7,226,124,6,162,124,7,226,124,130,226,132,163,124,4,39,108,131, - 200,107,136,99,136,99,4,200,99,131,200,107,199,107,199,107,4,200,107,131, - 200,99,199,99,199,107,6,199,99,4,135,99,143,199,99,199,99,135,99,199, - 99,135,99,135,99,135,91,199,99,135,91,135,99,135,91,135,99,199,99,199, - 99,135,99,8,199,99,131,134,91,107,124,189,247,18,255,255,130,242,173,197, - 99,11,39,108,130,102,108,102,108,5,39,108,135,199,107,199,107,39,108,39, - 108,199,107,200,99,200,107,3,200,99,3,199,99,133,38,108,164,124,228,124, - 164,124,165,124,3,164,124,129,163,116,4,227,124,129,226,124,9,226,132,132, - 227,132,225,124,102,149,190,247,27,255,255,131,249,230,133,123,192,90,39,0, - 99,151,0,107,64,99,0,107,64,107,64,99,64,99,64,91,64,99,64,99, - 64,91,64,91,1,91,1,83,193,82,193,82,193,74,129,74,129,74,65,74, - 66,66,1,66,1,58,1,58,215,1,34,255,255,133,190,247,114,206,231,156, - 99,140,99,140,4,100,140,3,101,140,130,37,140,37,140,4,38,140,130,38, - 132,38,132,11,39,132,130,199,131,199,131,12,199,123,129,198,123,5,134,115, - 5,133,115,136,132,115,68,115,68,107,68,107,67,107,104,140,242,189,124,239, - 127,255,255,106,255,255,134,189,247,46,182,226,132,160,124,224,132,224,132,5, - 225,132,131,226,132,225,132,33,133,26,34,133,131,226,132,225,132,226,132,3, - 225,132,133,226,132,226,132,225,132,226,132,161,132,3,162,124,131,163,124,99, - 124,99,124,5,98,124,133,97,124,161,124,161,124,160,124,161,124,7,160,124, - 130,160,132,160,132,10,160,124,135,96,124,160,124,224,132,224,132,225,132,225, - 132,224,132,5,225,132,130,224,132,224,132,17,225,132,3,224,132,6,225,132, - 130,224,132,225,132,6,224,132,132,225,132,224,132,225,132,225,132,4,224,132, - 14,225,132,139,161,132,99,124,35,116,34,124,34,124,97,124,97,124,96,124, - 96,124,35,116,194,115,10,160,124,129,224,132,7,225,132,131,160,124,102,149, - 55,223,26,255,255,133,254,255,46,182,225,132,224,124,226,132,6,226,124,8, - 162,124,7,226,124,130,226,132,164,124,4,39,108,129,200,99,6,136,99,4, - 200,99,134,200,107,200,99,200,107,200,99,200,99,199,107,10,199,99,129,135, - 99,3,199,99,129,135,99,4,135,91,134,199,99,135,99,135,91,135,99,199, - 99,135,99,9,199,99,130,69,91,239,148,19,255,255,130,46,149,197,99,9, - 39,108,3,102,108,129,103,108,4,39,108,129,199,99,3,199,107,5,200,99, - 140,199,99,199,99,198,99,101,116,164,124,228,124,165,124,102,116,101,116,164, - 124,164,124,100,116,5,227,124,9,226,132,133,227,132,226,132,226,132,224,124, - 237,173,26,255,255,131,117,206,67,107,192,90,38,0,99,133,0,107,0,99, - 0,107,64,107,0,107,3,64,99,134,1,91,65,91,65,91,1,91,1,91, - 1,83,3,193,82,133,129,74,129,74,66,74,66,66,1,66,3,1,58,192, - 1,36,255,255,131,190,247,116,214,41,165,4,100,140,3,101,140,130,37,140, - 37,140,4,38,140,130,38,132,38,132,11,39,132,130,199,131,199,131,12,199, - 123,129,198,123,5,134,115,5,133,115,133,132,115,68,115,39,132,111,173,248, - 222,127,255,255,108,255,255,132,180,206,37,149,160,124,160,124,3,224,132,137, - 225,132,225,132,224,132,225,132,225,132,226,132,226,132,33,133,33,133,25,34, - 133,133,226,132,225,132,226,132,225,132,225,132,3,226,132,131,225,132,226,132, - 161,132,4,162,124,130,99,124,99,124,6,98,124,4,161,124,20,160,124,129, - 160,132,3,224,132,133,225,132,224,132,224,132,225,132,225,132,4,224,132,7, - 225,132,129,224,132,9,225,132,130,224,132,224,132,9,225,132,9,224,132,130, - 225,132,225,132,4,224,132,7,225,132,129,224,132,6,225,132,133,99,124,195, - 115,34,116,34,124,32,124,3,96,124,131,33,124,195,115,96,124,9,160,124, - 129,224,132,5,225,132,132,224,124,224,124,45,182,189,247,26,255,255,133,57, - 231,168,157,160,124,225,124,226,132,6,226,124,9,162,124,7,226,124,135,226, - 132,164,116,39,108,199,107,39,108,39,108,200,99,7,136,99,7,200,99,130, - 199,99,200,99,14,199,99,129,135,99,4,135,91,129,135,99,4,135,91,141, - 135,99,199,99,135,99,199,99,199,99,135,99,199,99,135,99,135,99,199,99, - 135,99,70,83,244,181,18,255,255,131,125,239,170,124,198,99,16,39,108,132, - 199,99,199,99,199,107,200,107,3,200,99,3,199,99,135,135,99,38,116,228, - 124,164,124,101,116,38,108,38,108,3,164,124,129,163,124,4,227,124,8,226, - 132,130,227,132,227,124,3,226,132,131,225,132,225,124,245,214,24,255,255,131, - 176,181,192,98,192,98,39,0,99,130,64,107,0,99,3,64,107,131,0,99, - 64,91,64,91,4,1,91,129,1,83,3,193,82,133,129,74,129,74,65,74, - 66,66,1,66,4,1,58,173,1,39,255,255,132,248,222,173,181,166,148,100, - 140,3,101,140,130,37,140,37,140,4,38,140,130,38,132,38,132,11,39,132, - 130,199,131,199,131,12,199,123,129,198,123,5,134,115,4,133,115,132,41,140, - 112,173,184,214,190,247,127,255,255,108,255,255,133,122,231,170,165,160,124,160, - 124,160,132,4,224,132,6,225,132,131,226,132,225,132,33,133,25,34,133,131, - 225,132,225,132,226,132,3,225,132,133,226,132,226,132,225,132,225,132,161,132, - 4,162,124,129,99,124,7,98,124,4,161,124,5,160,124,3,160,132,12,160, - 124,4,224,132,132,225,132,224,132,224,132,225,132,3,224,132,130,225,132,224, - 132,15,225,132,4,224,132,13,225,132,11,224,132,8,225,132,129,224,132,5, - 225,132,133,163,124,196,115,195,115,34,124,34,124,3,96,124,131,33,124,195, - 115,96,116,9,160,124,130,160,132,224,132,3,225,132,131,160,124,36,141,245, - 214,27,255,255,133,178,198,227,132,161,124,226,132,226,132,7,226,124,9,162, - 124,5,226,124,133,226,132,226,132,226,124,100,116,39,108,3,199,99,129,200, - 99,4,136,99,129,200,99,4,136,99,130,200,99,200,99,3,136,99,129,200, - 99,14,199,99,130,198,99,199,99,10,135,91,3,199,99,131,135,99,135,99, - 199,99,4,135,99,131,71,91,199,99,249,214,18,255,255,135,250,222,40,108, - 198,107,39,108,39,108,199,107,199,107,10,39,108,130,199,107,199,99,4,200, - 99,139,199,99,199,99,135,99,135,99,71,91,71,91,101,116,165,124,102,116, - 198,107,38,108,3,164,124,130,163,124,163,124,3,227,124,15,226,132,131,160, - 124,101,141,190,247,21,255,255,131,254,255,237,164,192,90,42,0,99,4,64, - 107,129,0,99,5,1,91,142,194,82,193,82,193,82,193,74,129,74,129,74, - 65,74,65,66,2,66,2,58,1,58,1,58,1,50,1,50,192,1,41,255, - 255,135,188,247,117,206,108,173,102,148,101,140,37,140,37,140,4,38,140,130, - 38,132,38,132,11,39,132,130,199,131,199,131,12,199,123,129,198,123,5,134, - 115,132,40,132,237,156,243,189,58,231,127,255,255,110,255,255,135,189,247,48, - 190,226,132,160,124,160,124,224,132,160,132,4,224,132,5,225,132,132,226,132, - 225,132,225,132,33,133,25,34,133,131,225,132,225,132,226,132,3,225,132,133, - 226,132,225,132,225,132,162,132,161,132,4,162,124,130,99,124,99,124,6,98, - 124,130,161,124,161,124,22,160,124,129,160,132,9,224,132,132,225,132,225,132, - 224,132,224,132,15,225,132,3,224,132,9,225,132,132,224,132,224,132,225,132, - 225,132,11,224,132,14,225,132,134,163,124,196,115,195,115,34,116,34,116,33, - 124,3,96,124,130,194,115,193,115,8,160,124,136,160,132,224,132,224,132,225, - 132,224,124,224,124,235,173,123,239,26,255,255,132,123,239,235,165,161,124,225, - 124,4,226,124,129,225,124,3,226,124,10,162,124,129,163,124,5,226,124,133, - 226,132,226,124,160,116,35,108,39,108,3,199,99,129,135,99,4,136,91,130, - 136,99,136,99,3,136,91,133,136,99,136,99,199,99,136,99,136,99,12,199, - 99,130,198,99,135,99,3,198,99,131,134,99,135,91,135,99,6,135,91,130, - 135,99,135,99,5,199,99,3,135,99,133,199,99,135,91,134,91,42,116,124, - 239,18,255,255,131,118,198,198,99,199,107,12,39,108,146,199,107,199,107,199, - 99,199,99,200,99,200,99,199,99,135,99,135,91,71,91,7,83,7,83,71, - 83,38,116,38,108,198,99,198,107,165,124,3,164,124,129,163,124,3,227,124, - 15,226,132,131,224,124,101,141,246,214,21,255,255,131,59,239,104,140,192,90, - 41,0,99,129,0,107,5,64,107,129,64,99,4,1,91,138,1,83,194,82, - 193,82,193,74,129,74,129,74,65,74,65,66,65,66,2,58,3,1,58,130, - 1,50,193,49,216,1,44,255,255,132,124,247,182,214,175,181,169,156,4,38, - 140,130,38,132,38,132,11,39,132,130,199,131,199,131,12,199,123,135,198,123, - 199,123,106,140,46,165,243,189,249,222,189,247,127,255,255,112,255,255,133,245, - 214,37,149,160,116,160,124,160,124,3,160,132,4,224,132,6,225,132,131,226, - 132,225,132,33,133,24,34,133,145,33,133,225,132,226,132,226,132,225,132,225, - 132,226,132,226,132,225,132,225,132,162,132,161,132,162,124,162,124,163,124,162, - 124,99,124,7,98,124,129,161,124,25,160,124,134,224,132,224,132,160,132,224, - 132,160,132,224,132,5,225,132,129,224,132,10,225,132,136,224,132,225,132,225, - 132,224,132,225,132,225,132,224,132,224,132,14,225,132,11,224,132,13,225,132, - 140,226,132,36,124,132,115,194,115,34,116,34,116,32,124,96,124,32,124,33, - 124,131,115,96,124,8,160,124,133,160,132,224,132,160,124,35,141,179,206,27, - 255,255,131,246,214,36,141,160,116,9,226,124,11,162,124,129,163,124,4,226, - 124,139,227,124,226,124,160,116,32,108,196,99,38,108,199,99,199,99,135,99, - 136,99,72,91,3,136,91,134,135,99,135,99,136,91,72,91,72,91,136,91, - 3,136,99,129,135,99,11,199,99,132,198,99,198,99,135,99,134,99,5,198, - 99,131,134,99,134,99,135,91,3,135,99,143,199,99,135,99,199,99,198,99, - 135,99,199,99,199,99,135,99,135,99,199,99,199,99,135,99,199,99,134,91, - 237,140,19,255,255,130,177,165,134,91,10,39,108,150,199,107,199,107,199,99, - 199,107,199,99,200,99,199,99,135,99,135,91,71,91,71,91,7,83,7,83, - 199,74,7,83,198,99,134,99,198,107,164,124,100,116,100,116,164,124,3,227, - 124,129,226,124,8,226,132,131,227,132,226,132,163,124,4,226,132,131,224,124, - 168,157,188,239,21,255,255,131,248,222,132,115,192,90,41,0,99,129,0,107, - 6,64,107,132,0,91,1,91,1,91,193,82,3,194,82,134,194,74,129,74, - 129,74,65,74,65,66,65,66,5,1,58,130,193,49,193,49,156,1,47,255, - 255,135,254,255,58,231,117,206,176,181,235,156,104,140,38,132,11,39,132,130, - 199,131,199,131,8,199,123,134,41,132,171,148,47,165,243,189,184,214,123,239, - 127,255,255,115,255,255,133,122,231,171,165,160,124,160,124,160,132,4,160,124, - 129,160,132,4,224,132,6,225,132,131,226,132,225,132,33,133,24,34,133,145, - 33,133,225,132,226,132,226,132,225,132,225,132,226,132,226,132,225,132,225,132, - 161,132,161,132,162,124,163,124,163,124,99,124,99,124,7,98,124,129,161,124, - 22,160,124,129,160,132,28,224,132,15,225,132,131,224,132,224,132,225,132,11, - 224,132,14,225,132,134,99,124,132,115,131,115,195,115,195,115,33,124,3,96, - 124,130,194,115,33,116,3,160,124,129,224,124,6,160,124,130,169,165,123,231, - 26,255,255,132,189,247,46,182,161,124,225,124,9,226,124,12,162,124,6,226, - 124,146,225,124,96,108,194,99,131,99,198,107,199,107,135,99,135,99,135,91, - 72,91,72,91,136,91,135,91,135,99,135,99,136,91,135,91,135,91,7,135, - 99,8,199,99,11,198,99,130,134,99,134,91,3,198,99,133,134,99,198,99, - 199,99,199,99,135,99,6,199,99,133,135,99,199,99,199,99,134,91,242,173, - 18,255,255,131,190,247,237,140,197,99,6,39,108,130,199,107,39,108,3,199, - 99,3,135,99,130,135,91,135,91,4,71,91,142,7,83,199,74,71,66,7, - 83,134,91,197,107,164,124,100,116,100,116,164,124,227,124,226,124,227,124,227, - 124,8,226,132,129,227,124,5,226,132,132,225,124,225,124,237,173,190,247,22, - 255,255,130,52,198,192,90,40,0,99,9,64,107,140,0,91,1,91,193,82, - 193,82,130,82,194,82,130,74,129,74,129,74,65,74,65,66,65,66,5,1, - 58,131,1,50,193,49,193,49,155,1,52,255,255,137,189,247,58,231,183,214, - 51,198,176,181,46,165,236,156,170,148,106,148,5,105,140,138,106,140,106,140, - 171,148,237,156,47,173,178,181,53,198,184,214,59,231,189,247,127,255,255,118, - 255,255,134,189,247,47,190,225,132,160,124,161,132,160,132,6,160,124,133,160, - 132,224,132,225,132,224,132,224,132,5,225,132,132,226,132,225,132,33,133,33, - 133,22,34,133,146,33,133,33,133,225,132,226,132,226,132,225,132,225,132,226, - 132,226,132,225,132,225,132,161,132,162,132,162,124,163,124,163,124,99,124,99, - 124,7,98,124,129,161,124,23,160,124,130,224,132,160,132,26,224,132,4,225, - 132,129,224,132,12,225,132,10,224,132,16,225,132,139,163,124,196,115,68,107, - 195,115,195,115,34,116,33,124,96,124,96,124,33,124,193,115,3,160,124,130, - 224,132,224,132,3,160,124,130,225,132,114,198,27,255,255,132,56,223,38,141, - 160,116,225,124,9,226,124,13,162,124,6,226,124,139,161,124,32,108,195,99, - 195,99,196,99,198,107,135,99,135,91,135,99,135,91,72,91,3,135,91,13, - 135,99,3,199,99,14,198,99,130,134,99,135,91,5,198,99,130,135,99,198, - 99,6,199,99,130,198,99,135,99,3,199,99,130,198,99,119,198,18,255,255, - 133,125,239,105,116,198,99,39,108,199,107,3,199,99,129,135,99,11,135,91, - 143,71,91,71,83,199,74,7,58,70,66,70,91,197,107,101,116,37,116,100, - 116,164,124,227,124,226,124,227,124,227,124,8,226,132,129,227,132,5,226,132, - 131,225,124,225,132,178,198,25,255,255,130,170,148,192,90,37,0,99,132,0, - 107,0,99,64,107,0,107,7,64,107,139,0,91,193,82,193,82,194,82,130, - 74,130,74,129,74,129,74,65,74,65,66,65,66,5,1,58,4,193,49,156, - 1,127,255,255,127,255,255,66,255,255,146,246,214,37,149,160,124,160,124,161, - 132,160,132,160,132,160,124,160,124,161,124,161,124,160,124,160,124,160,132,160, - 132,225,132,224,132,224,132,5,225,132,132,226,132,226,132,33,133,33,133,11, - 34,133,129,226,132,9,34,133,129,226,132,3,225,132,133,226,132,226,132,225, - 132,225,132,226,132,3,225,132,129,161,132,4,162,124,3,99,124,6,98,124, - 129,161,124,25,160,124,11,224,132,12,225,132,3,224,132,136,225,132,225,132, - 224,132,224,132,225,132,225,132,224,132,224,132,9,225,132,10,224,132,3,225, - 132,129,224,132,12,225,132,148,163,124,36,116,132,115,132,115,195,115,195,115, - 33,124,96,124,96,124,32,124,194,115,96,124,160,124,160,124,224,132,224,132, - 160,124,96,116,103,149,57,231,27,255,255,131,113,190,226,124,160,124,10,226, - 124,12,162,124,130,163,124,163,124,6,226,124,135,161,124,32,108,194,99,195, - 99,131,99,197,99,199,99,3,135,99,3,135,91,7,135,99,129,135,91,3, - 135,99,6,135,91,133,135,99,134,99,198,99,134,99,134,99,21,198,99,134, - 199,99,199,99,198,99,38,100,199,99,135,99,3,199,99,130,40,108,59,231, - 18,255,255,131,250,222,135,99,71,91,4,72,91,136,71,91,71,91,135,91, - 135,99,135,99,199,99,135,99,135,99,3,135,91,139,71,91,71,91,7,83, - 7,58,198,49,6,83,37,108,101,116,37,108,100,116,164,124,3,227,124,129, - 227,132,11,226,132,134,225,132,226,132,226,132,161,124,36,141,247,214,26,255, - 255,131,124,239,67,107,192,98,33,0,99,132,0,107,0,99,0,99,0,107, - 10,64,107,132,1,91,194,82,194,82,130,74,3,129,74,131,65,66,65,66, - 1,66,6,1,58,3,193,49,1,192,49,171,1,127,255,255,127,255,255,64, - 255,255,145,122,231,170,165,160,124,160,124,225,132,161,132,161,132,160,132,160, - 132,160,124,160,124,161,124,161,124,160,124,160,124,160,132,160,132,3,224,132, - 5,225,132,132,226,132,226,132,225,132,33,133,21,34,133,133,226,132,34,133, - 225,132,225,132,226,132,3,225,132,129,226,132,3,225,132,129,161,132,4,162, - 124,130,99,124,99,124,7,98,124,129,161,124,23,160,124,129,160,132,9,224, - 132,15,225,132,3,224,132,3,225,132,131,224,132,225,132,225,132,4,224,132, - 8,225,132,10,224,132,132,225,132,225,132,224,132,224,132,6,225,132,130,224, - 132,224,132,3,225,132,147,162,124,99,124,98,124,35,124,196,115,195,115,33, - 124,32,124,96,124,96,124,194,115,193,115,160,124,160,124,224,132,160,124,161, - 124,46,182,254,255,26,255,255,132,123,239,170,157,160,116,225,124,10,226,124, - 13,162,124,130,163,124,163,124,6,226,124,130,161,124,33,108,4,195,99,130, - 198,99,199,99,3,135,99,131,199,99,135,91,135,91,7,135,99,137,135,91, - 135,99,135,91,135,91,135,99,135,99,135,91,135,91,135,99,3,134,99,131, - 198,99,198,99,134,99,17,198,99,130,38,108,38,100,5,198,99,130,199,99, - 135,99,3,199,99,131,134,99,171,124,190,247,18,255,255,133,54,190,7,83, - 72,91,72,91,135,91,5,135,99,3,199,99,142,135,99,135,91,135,91,71, - 91,71,91,7,83,71,66,197,49,6,83,198,107,37,116,101,116,164,124,163, - 124,3,227,124,129,226,124,8,226,132,137,227,132,226,132,227,132,226,132,226, - 132,225,132,160,124,167,149,123,239,28,255,255,130,243,197,192,90,32,0,99, - 131,0,107,0,107,0,99,12,64,107,133,0,99,194,82,129,74,129,74,65, - 74,3,65,66,7,1,58,133,1,50,193,49,193,49,192,49,192,41,150,1, - 127,255,255,127,255,255,62,255,255,142,190,247,47,182,226,132,160,124,224,132, - 225,132,225,132,161,132,161,132,160,132,160,132,160,124,160,124,161,124,4,160, - 124,129,160,132,3,224,132,6,225,132,132,226,132,225,132,225,132,33,133,8, - 34,133,129,226,132,10,34,133,130,225,132,33,133,3,225,132,131,226,132,225, - 132,225,132,3,226,132,131,225,132,226,132,162,132,4,162,124,130,99,124,99, - 124,7,98,124,129,161,124,23,160,124,129,160,132,9,224,132,5,225,132,129, - 224,132,3,225,132,129,224,132,5,225,132,3,224,132,3,225,132,129,224,132, - 5,225,132,129,224,132,8,225,132,14,224,132,6,225,132,140,224,132,224,132, - 225,132,225,132,224,132,161,132,162,124,97,124,98,124,196,115,195,115,34,116, - 3,32,124,130,32,116,193,115,3,160,124,130,102,149,56,223,27,255,255,131, - 179,206,227,132,160,124,12,226,124,14,162,124,129,163,124,6,226,124,130,97, - 116,194,99,5,195,99,129,198,107,5,199,99,7,135,99,7,135,91,131,135, - 99,135,91,135,99,13,198,99,129,38,108,6,198,99,132,38,108,198,99,198, - 99,38,108,6,198,99,6,199,99,130,134,91,48,149,19,255,255,132,178,165, - 70,83,136,99,136,99,3,135,99,4,199,99,142,135,99,135,91,135,91,71, - 91,71,91,71,83,135,66,197,49,6,83,198,107,37,108,101,116,164,124,163, - 124,3,227,124,9,226,132,129,227,132,4,226,132,132,225,124,161,124,45,174, - 190,247,30,255,255,130,170,148,192,90,28,0,99,135,0,107,0,107,64,107, - 0,107,0,107,64,107,64,99,11,64,107,135,64,99,129,82,129,74,66,74, - 65,66,65,66,1,66,5,1,58,130,193,57,1,58,3,193,49,131,192,49, - 192,49,192,41,165,1,127,255,255,127,255,255,61,255,255,142,245,214,101,149, - 160,124,225,132,225,132,224,132,225,132,225,132,161,132,161,132,160,132,160,132, - 160,124,160,124,3,161,124,131,160,124,160,124,160,132,3,224,132,6,225,132, - 132,226,132,225,132,225,132,33,133,10,34,133,129,226,132,7,34,133,130,226, - 132,226,132,3,225,132,132,226,132,226,132,225,132,225,132,3,226,132,131,225, - 132,226,132,162,132,4,162,124,3,99,124,6,98,124,129,161,124,8,160,124, - 129,160,132,16,160,124,3,160,132,5,224,132,4,225,132,130,224,132,224,132, - 9,225,132,5,224,132,4,225,132,133,224,132,224,132,225,132,224,132,224,132, - 7,225,132,14,224,132,10,225,132,132,224,132,225,132,162,124,99,124,4,195, - 115,129,33,124,4,32,124,132,96,116,96,124,46,182,190,247,26,255,255,132, - 189,247,236,173,224,124,225,124,13,226,124,13,162,124,129,163,124,4,226,124, - 133,227,124,226,124,161,116,33,108,194,99,3,195,99,142,194,99,194,107,35, - 108,37,108,199,99,199,99,135,99,135,99,199,99,198,99,199,99,135,99,135, - 91,135,99,3,135,91,129,135,99,6,135,91,131,134,99,134,91,134,91,7, - 198,99,131,38,100,38,100,38,108,7,198,99,3,38,108,9,198,99,6,199, - 99,130,70,91,244,181,19,255,255,136,173,140,70,91,136,99,135,99,199,99, - 135,99,199,99,199,99,3,135,99,129,135,91,3,71,91,136,199,74,197,49, - 6,83,198,107,37,108,101,116,164,124,163,124,3,227,124,14,226,132,131,225, - 124,225,124,178,198,32,255,255,130,124,239,66,107,26,0,99,134,0,107,0, - 99,0,99,0,107,64,107,0,107,15,64,107,129,193,82,3,66,66,130,1, - 58,193,57,3,1,58,131,193,57,1,58,1,58,3,193,49,132,192,49,192, - 49,192,41,192,41,161,1,127,255,255,127,255,255,59,255,255,139,57,231,169, - 165,224,124,224,124,226,132,225,132,225,132,224,132,225,132,225,132,161,132,3, - 160,132,129,160,124,3,161,124,3,160,124,129,160,132,4,224,132,5,225,132, - 129,226,132,3,225,132,129,33,133,16,34,133,129,226,132,3,225,132,140,33, - 133,225,132,226,132,226,132,225,132,225,132,226,132,226,132,225,132,225,132,226, - 132,162,132,4,162,124,130,98,124,99,124,7,98,124,129,96,124,8,160,124, - 132,160,132,160,124,160,124,160,132,10,160,124,11,224,132,4,225,132,130,224, - 132,224,132,9,225,132,10,224,132,11,225,132,15,224,132,11,225,132,141,162, - 124,36,124,196,115,196,115,195,115,195,115,35,116,34,124,32,124,32,124,192, - 107,165,140,246,214,27,255,255,131,245,214,37,141,160,124,14,226,124,11,162, - 124,132,163,124,162,124,162,124,163,124,5,226,124,131,161,124,97,108,194,99, - 3,195,99,135,194,99,194,99,194,107,34,108,34,108,36,108,198,99,6,135, - 99,130,135,91,135,99,10,135,91,129,134,91,3,134,99,131,134,91,134,99, - 134,99,6,198,99,129,38,100,3,38,108,133,198,107,38,108,198,107,38,108, - 38,100,3,198,99,5,38,108,132,198,107,38,108,38,108,39,108,4,199,99, - 131,135,99,135,99,248,214,18,255,255,131,125,239,43,116,134,91,5,199,99, - 141,135,99,135,99,135,91,135,91,71,91,71,91,199,74,5,58,6,83,198, - 107,37,108,101,116,164,124,4,227,124,8,226,132,129,227,132,5,226,132,131, - 224,124,36,141,246,222,34,255,255,130,242,189,192,90,24,0,99,3,0,107, - 19,64,107,147,1,91,66,66,66,66,1,66,1,58,193,49,193,57,1,58, - 193,57,193,49,1,58,193,49,192,49,192,49,192,41,192,41,192,49,192,41, - 192,41,162,1,127,255,255,127,255,255,57,255,255,132,189,247,46,182,226,132, - 160,124,5,225,132,132,224,132,225,132,225,132,161,132,3,160,132,129,160,124, - 3,161,124,3,160,124,132,160,132,224,132,225,132,224,132,7,225,132,132,226, - 132,225,132,33,133,33,133,14,34,133,130,226,132,34,133,6,225,132,130,226, - 132,226,132,3,225,132,129,226,132,3,225,132,129,162,132,4,162,124,130,99, - 124,99,124,6,98,124,129,97,124,9,160,124,132,160,132,160,124,160,124,160, - 132,9,160,124,11,224,132,5,225,132,129,224,132,9,225,132,9,224,132,133, - 160,132,224,132,224,132,225,132,224,132,5,225,132,129,224,132,3,225,132,16, - 224,132,9,225,132,140,162,124,100,124,197,115,133,115,132,115,196,115,195,115, - 35,116,32,116,192,115,173,173,189,247,26,255,255,133,190,247,46,182,225,124, - 225,124,226,132,13,226,124,15,162,124,129,163,124,3,226,124,133,227,124,225, - 124,97,116,34,108,194,99,4,195,99,141,194,99,195,107,34,108,34,108,98, - 116,99,116,198,107,199,99,198,99,135,99,135,91,135,91,135,99,8,135,91, - 4,71,91,129,134,91,3,135,91,3,70,91,139,71,83,7,83,71,83,71, - 83,7,83,7,83,71,83,134,91,134,99,198,99,198,99,3,38,108,129,38, - 100,7,38,108,6,39,108,134,199,99,199,99,199,107,198,99,41,116,124,231, - 18,255,255,133,59,223,200,107,135,99,199,99,135,99,3,199,99,140,135,99, - 135,91,135,91,71,91,199,74,5,58,5,83,38,108,37,108,101,116,164,124, - 163,124,3,227,124,14,226,132,131,160,124,104,157,123,239,36,255,255,130,104, - 140,192,90,24,0,99,129,0,107,19,64,107,136,128,107,1,99,193,57,1, - 66,1,58,1,58,193,57,193,49,3,1,58,130,193,49,193,49,7,192,41, - 191,1,127,255,255,127,255,255,56,255,255,131,180,206,101,149,160,124,4,225, - 132,132,226,132,225,132,225,132,224,132,3,225,132,3,160,132,129,160,124,4, - 161,124,134,160,124,160,124,160,132,160,132,224,132,224,132,7,225,132,134,226, - 132,225,132,225,132,33,133,34,133,226,132,12,34,133,131,226,132,34,133,33, - 133,5,225,132,138,226,132,226,132,225,132,225,132,226,132,226,132,225,132,225, - 132,161,132,161,132,4,162,124,130,99,124,99,124,6,98,124,129,97,124,9, - 160,124,132,160,132,160,124,160,124,160,132,9,160,124,11,224,132,5,225,132, - 129,224,132,4,225,132,130,224,132,225,132,11,224,132,129,160,132,9,224,132, - 133,225,132,224,132,224,132,225,132,225,132,25,224,132,138,160,132,161,124,98, - 124,35,124,99,124,99,124,35,124,193,115,101,132,182,214,27,255,255,133,57, - 223,103,149,160,116,226,124,226,132,14,226,124,14,162,124,130,163,124,163,124, - 4,226,124,132,161,116,34,108,195,99,194,99,4,195,99,138,194,99,195,107, - 35,108,34,108,98,116,98,116,99,116,198,99,134,99,198,99,3,134,99,129, - 134,91,4,135,91,129,135,99,4,135,91,4,71,91,5,71,83,134,7,83, - 7,83,7,75,199,74,199,74,135,74,3,135,66,131,199,74,199,74,7,75, - 6,7,83,133,71,83,71,83,71,91,71,83,71,83,3,71,91,131,135,91, - 135,91,71,91,3,71,83,131,198,74,45,116,190,247,18,255,255,146,118,198, - 134,91,199,99,199,99,135,99,199,99,135,99,135,91,135,91,71,91,7,75, - 70,58,6,83,38,108,101,116,165,116,164,124,163,124,3,227,124,129,226,124, - 7,226,132,129,227,132,4,226,132,132,225,124,160,124,237,173,190,247,37,255, - 255,130,58,231,66,107,21,0,99,130,64,107,0,107,20,64,107,141,128,107, - 0,99,0,33,192,24,1,58,1,58,193,57,193,49,193,49,1,50,1,58, - 1,50,193,49,8,192,41,194,1,127,255,255,127,255,255,54,255,255,132,56, - 223,169,165,224,124,224,124,4,225,132,129,226,132,3,225,132,132,224,132,225, - 132,225,132,161,132,3,160,132,132,160,124,160,124,161,124,161,124,3,160,124, - 133,160,132,224,132,225,132,224,132,224,132,6,225,132,132,226,132,226,132,225, - 132,225,132,7,34,133,137,226,132,34,133,226,132,34,133,226,132,226,132,225, - 132,226,132,33,133,5,225,132,132,226,132,226,132,225,132,225,132,3,226,132, - 132,225,132,225,132,162,132,161,132,3,162,124,131,163,124,99,124,99,124,6, - 98,124,130,97,124,96,124,21,160,124,129,160,132,12,224,132,130,225,132,225, - 132,7,224,132,5,160,132,3,224,132,130,160,132,160,124,5,224,132,10,161, - 124,131,160,124,160,132,160,124,8,161,124,133,160,132,160,124,161,124,161,124, - 160,124,3,161,124,134,160,124,160,124,161,124,161,124,160,124,97,124,9,160, - 124,130,172,173,124,239,26,255,255,136,254,255,113,190,227,132,224,124,225,132, - 225,132,226,132,226,132,13,226,124,15,162,124,129,163,124,4,226,124,132,97, - 116,35,108,194,99,194,99,5,195,99,135,195,107,35,108,35,108,34,108,98, - 116,162,116,100,116,3,198,99,131,134,99,134,91,134,91,7,135,91,129,71, - 91,4,135,91,141,71,91,71,91,135,91,135,91,71,91,71,83,71,91,71, - 91,71,83,7,83,7,83,7,75,7,75,14,199,74,129,7,75,11,7,83, - 130,197,74,48,149,19,255,255,144,179,173,134,91,199,99,135,99,135,99,135, - 91,135,91,71,91,199,74,70,66,70,91,38,108,101,116,164,116,164,124,163, - 124,3,227,124,8,226,132,129,227,124,4,226,132,131,225,124,226,132,114,198, - 22,255,255,129,189,247,17,255,255,130,176,181,192,90,17,0,99,3,0,107, - 21,64,107,135,128,107,192,90,0,33,64,8,128,41,129,74,193,49,3,1, - 58,134,193,49,193,49,64,33,193,41,193,49,193,49,6,192,41,204,1,127, - 255,255,127,255,255,52,255,255,132,188,239,46,182,225,132,224,124,6,225,132, - 129,226,132,3,225,132,135,224,132,225,132,225,132,161,132,161,132,160,132,160, - 132,3,160,124,129,161,124,3,160,124,133,160,132,160,132,225,132,225,132,224, - 132,6,225,132,132,226,132,226,132,225,132,225,132,5,34,133,129,226,132,5, - 34,133,131,225,132,225,132,226,132,7,225,132,132,226,132,226,132,225,132,225, - 132,3,226,132,132,225,132,225,132,162,132,161,132,3,162,124,131,163,124,99, - 124,99,124,6,98,124,129,97,124,11,160,124,129,160,132,22,160,124,5,160, - 132,5,160,124,5,160,132,11,224,132,5,225,132,130,224,132,224,132,3,225, - 132,130,224,132,224,132,7,225,132,4,224,132,148,225,132,224,132,224,132,225, - 132,225,132,224,132,224,132,225,132,224,132,160,132,160,124,160,124,160,132,160, - 132,224,132,224,132,160,124,160,124,227,140,180,206,27,255,255,132,122,231,169, - 157,160,116,226,124,4,226,132,12,226,124,6,162,124,132,163,124,162,124,162, - 124,163,124,8,162,124,3,226,124,133,161,124,97,108,195,107,194,99,194,99, - 5,195,99,129,195,107,3,34,108,133,98,116,98,116,161,116,36,108,198,99, - 4,134,99,129,134,91,3,135,91,130,135,99,135,99,11,135,91,132,71,91, - 71,91,71,83,7,83,6,71,83,130,7,83,71,83,7,70,83,3,71,83, - 131,71,91,71,91,70,91,9,71,91,131,70,91,5,83,245,181,19,255,255, - 139,47,149,69,91,135,99,135,91,135,91,71,91,199,74,69,58,134,91,37, - 108,101,116,3,164,124,3,227,124,6,226,132,131,225,132,226,132,227,124,4, - 226,132,131,224,124,36,141,247,214,21,255,255,131,254,255,237,164,104,140,17, - 255,255,130,190,247,38,132,17,0,99,129,0,107,22,64,107,138,128,107,129, - 82,128,24,64,8,192,57,128,107,64,107,65,66,1,58,1,58,3,193,49, - 133,128,33,193,41,1,50,193,49,193,49,4,192,41,1,128,41,241,1,127, - 255,255,127,255,255,51,255,255,132,179,206,36,141,160,124,224,132,4,225,132, - 132,226,132,225,132,225,132,226,132,6,225,132,134,161,132,161,132,160,132,160, - 132,160,124,161,124,5,160,124,133,160,132,161,132,225,132,224,132,224,132,6, - 225,132,134,226,132,226,132,225,132,225,132,33,133,226,132,3,34,133,130,225, - 132,33,133,4,34,133,131,225,132,225,132,33,133,7,225,132,132,226,132,226, - 132,225,132,225,132,3,226,132,132,225,132,226,132,161,132,161,132,3,162,124, - 131,163,124,99,124,99,124,6,98,124,130,97,124,96,124,9,160,124,130,160, - 132,160,132,19,160,124,4,161,124,4,160,132,7,224,132,137,32,133,32,133, - 33,133,224,132,224,132,32,133,33,133,32,133,32,133,4,224,132,129,32,133, - 4,33,133,130,32,133,32,133,3,33,133,6,32,133,130,33,133,33,133,18, - 32,133,3,224,132,132,224,124,160,124,234,165,123,239,27,255,255,133,179,198, - 227,132,160,124,226,132,225,132,4,226,132,12,226,124,6,162,124,133,163,124, - 163,124,162,124,163,124,163,124,6,162,124,4,226,124,132,161,124,98,108,194, - 107,194,99,6,195,99,129,194,107,3,34,108,144,98,116,98,116,97,116,98, - 116,37,108,198,99,134,99,134,91,134,91,134,99,134,99,135,91,135,91,135, - 99,135,91,135,91,10,135,99,132,135,91,135,91,71,83,71,83,3,71,91, - 3,70,91,129,71,91,3,70,91,129,71,83,4,70,91,139,71,91,71,83, - 71,91,135,91,135,91,71,91,71,91,135,91,135,91,134,91,134,91,5,135, - 91,131,70,91,135,91,185,214,18,255,255,140,189,239,107,124,70,83,135,99, - 71,91,70,58,69,58,134,99,101,116,101,116,164,124,164,124,3,227,124,129, - 227,132,6,226,132,129,225,132,6,226,132,131,160,124,168,157,123,239,21,255, - 255,133,124,239,105,140,192,90,192,90,243,189,17,255,255,129,248,222,12,0, - 99,132,0,107,0,99,0,99,0,107,23,64,107,138,128,107,65,66,128,16, - 128,16,65,66,128,107,64,107,64,107,64,99,1,58,5,193,49,132,192,41, - 193,49,1,50,193,49,3,192,41,130,128,41,128,41,217,1,127,255,255,127, - 255,255,49,255,255,132,56,223,169,157,160,124,224,124,9,225,132,129,226,132, - 3,225,132,135,224,132,225,132,225,132,161,132,161,132,160,132,160,132,7,160, - 124,130,160,132,161,132,3,224,132,7,225,132,134,226,132,225,132,225,132,33, - 133,34,133,34,133,3,226,132,133,225,132,34,133,34,133,225,132,226,132,9, - 225,132,3,226,132,137,225,132,225,132,226,132,226,132,225,132,225,132,226,132, - 161,132,161,124,3,162,124,131,163,124,99,124,99,124,6,98,124,129,97,124, - 9,160,124,3,160,132,130,160,124,160,132,10,160,124,130,224,124,224,124,13, - 224,132,11,32,133,132,224,132,224,132,32,133,32,133,5,224,132,7,32,133, - 132,224,132,224,132,32,133,32,133,27,224,132,131,160,124,226,140,178,206,27, - 255,255,136,123,239,171,165,160,116,225,124,226,124,226,132,226,124,225,132,3, - 226,132,12,226,124,8,162,124,130,163,124,163,124,6,162,124,129,163,124,4, - 226,124,132,161,116,34,108,194,99,194,99,6,195,99,129,195,107,3,34,108, - 139,98,116,98,116,97,116,97,116,99,116,198,99,198,99,134,91,134,91,198, - 99,135,99,7,135,91,132,199,99,198,99,199,99,198,99,3,199,99,3,135, - 91,130,71,91,71,91,3,135,91,3,134,91,133,135,91,135,91,134,91,71, - 91,71,83,8,71,91,135,135,91,71,91,71,91,135,91,135,91,134,91,135, - 91,3,134,91,134,135,91,135,99,135,99,134,91,201,107,124,231,18,255,255, - 138,59,231,201,107,6,83,197,49,5,58,197,99,101,116,101,116,164,124,164, - 124,3,227,124,129,227,132,6,226,132,131,225,132,226,132,227,124,3,226,132, - 132,225,124,224,124,237,173,190,247,21,255,255,135,57,223,102,124,128,82,0, - 99,0,99,66,107,59,239,17,255,255,130,110,173,192,90,3,0,99,129,0, - 107,4,0,99,132,0,107,0,99,0,99,0,107,25,64,107,133,192,57,64, - 8,192,24,129,82,128,107,3,64,107,130,128,107,0,91,4,193,49,4,192, - 41,129,192,49,5,192,41,171,1,127,255,255,127,255,255,47,255,255,132,123, - 239,236,173,224,124,160,124,11,225,132,129,226,132,3,225,132,132,224,132,225, - 132,225,132,161,132,3,160,132,130,160,124,161,124,5,160,124,130,160,132,161, - 132,3,224,132,7,225,132,129,226,132,3,225,132,136,33,133,34,133,34,133, - 33,133,225,132,226,132,33,133,33,133,8,225,132,6,226,132,132,225,132,225, - 132,226,132,226,132,3,225,132,133,161,132,162,132,162,124,162,124,163,124,4, - 99,124,5,98,124,129,97,124,9,160,124,133,160,132,160,132,224,132,224,132, - 160,132,9,160,124,130,224,124,224,124,70,224,132,132,160,132,160,124,105,165, - 123,239,27,255,255,131,245,206,228,132,160,116,6,226,124,3,226,132,11,226, - 124,9,162,124,130,163,124,163,124,7,162,124,3,226,124,133,162,124,98,116, - 35,108,194,99,130,99,5,195,99,130,194,99,195,107,3,34,108,134,98,116, - 97,116,97,116,161,116,98,116,196,99,4,198,99,130,135,99,135,99,7,135, - 91,129,199,99,4,135,99,130,199,99,135,99,6,135,91,132,135,99,134,99, - 134,99,135,99,4,135,91,131,71,91,135,91,134,91,5,135,91,4,71,91, - 130,135,91,135,91,3,134,99,137,135,91,135,91,198,99,198,99,199,99,199, - 99,69,83,172,124,254,247,18,255,255,136,185,206,196,41,68,66,38,108,101, - 116,101,116,164,124,164,124,3,227,124,9,226,132,135,227,124,226,132,227,124, - 226,132,225,124,226,132,179,198,22,255,255,136,51,198,2,99,32,108,64,99, - 0,99,0,99,192,90,105,140,17,255,255,130,189,247,197,123,4,0,99,129, - 0,107,3,0,99,130,0,107,0,99,24,64,107,145,128,107,64,99,128,49, - 64,8,0,33,0,91,128,107,64,107,0,99,0,99,1,99,64,107,128,107, - 0,91,193,49,193,41,193,49,9,192,41,1,128,41,167,1,127,255,255,127, - 255,255,45,255,255,133,254,247,115,198,227,132,160,124,224,132,15,225,132,129, - 224,132,3,225,132,132,161,132,160,132,160,132,160,124,5,161,124,132,160,124, - 160,124,160,132,160,132,3,224,132,7,225,132,136,226,132,226,132,225,132,225, - 132,33,133,225,132,34,133,33,133,4,225,132,129,33,133,6,225,132,7,226, - 132,131,225,132,225,132,226,132,4,225,132,130,162,132,162,132,3,162,124,130, - 99,124,99,124,7,98,124,130,97,124,96,124,7,160,124,130,160,132,160,132, - 3,224,132,129,160,132,13,160,124,129,160,132,65,224,132,132,160,132,96,124, - 162,132,114,198,27,255,255,132,189,247,237,173,161,116,161,124,6,226,124,4, - 226,132,12,226,124,16,162,124,4,226,124,133,161,116,34,108,35,108,194,99, - 131,99,6,195,99,142,195,107,35,108,34,108,34,108,98,116,97,116,161,116, - 161,116,162,116,196,99,5,75,134,91,198,99,198,99,3,199,99,131,135,91, - 135,99,135,99,3,135,91,131,135,99,135,99,135,91,5,135,99,130,135,91, - 135,91,3,199,99,5,135,99,9,135,91,132,71,91,135,91,135,91,71,91, - 3,135,91,3,135,99,132,198,99,135,99,135,99,199,99,3,198,99,131,135, - 91,69,83,48,157,19,255,255,137,245,181,196,99,101,116,101,116,164,124,164, - 124,227,124,227,124,227,132,9,226,132,135,227,124,226,132,226,132,225,132,160, - 124,36,141,56,223,22,255,255,138,111,173,192,98,192,90,130,107,33,108,192, - 98,0,99,0,99,192,98,53,198,17,255,255,129,118,206,3,0,99,130,64, - 107,0,99,28,64,107,148,128,107,1,99,1,41,64,8,64,41,64,99,128, - 107,64,107,64,107,0,99,64,107,64,107,0,99,64,107,128,107,64,99,1, - 58,193,41,193,49,193,49,5,192,41,131,128,41,128,41,128,33,152,1,127, - 255,255,127,255,255,44,255,255,133,246,214,38,149,160,116,160,124,224,132,12, - 225,132,136,226,132,225,132,225,132,224,132,225,132,225,132,161,132,161,132,3, - 160,132,3,160,124,130,161,124,161,124,3,160,124,133,160,132,224,132,225,132, - 224,132,224,132,7,225,132,133,226,132,226,132,225,132,225,132,33,133,6,225, - 132,130,33,133,33,133,5,225,132,7,226,132,3,225,132,3,226,132,132,225, - 132,162,132,161,132,161,132,3,162,124,3,99,124,5,98,124,131,97,124,97, - 124,96,124,6,160,124,130,160,132,160,132,5,224,132,13,160,124,130,160,132, - 160,132,5,224,132,26,160,132,30,224,132,3,160,132,131,96,124,104,165,122, - 239,27,255,255,131,246,214,37,141,161,116,10,226,124,130,226,132,226,132,12, - 226,124,15,162,124,3,226,124,134,227,124,161,124,97,108,35,108,194,107,194, - 99,7,195,99,129,195,107,3,34,108,138,98,116,97,116,97,116,161,116,162, - 116,34,108,4,75,5,75,199,99,38,108,6,199,99,10,135,99,130,135,91, - 135,91,7,135,99,130,135,91,135,91,3,135,99,15,135,91,130,135,99,135, - 99,3,199,99,3,198,99,132,135,99,135,91,134,91,244,181,19,255,255,132, - 241,181,99,108,164,124,163,124,3,227,124,8,226,132,129,227,132,3,226,132, - 132,225,132,160,124,169,165,188,239,21,255,255,136,124,247,105,148,192,90,0, - 99,0,99,2,99,98,116,64,99,3,0,99,130,66,107,124,239,17,255,255, - 130,235,156,192,90,3,64,107,131,0,107,64,99,0,107,24,64,107,133,128, - 107,193,90,193,32,64,8,192,49,5,64,107,139,193,90,64,107,128,107,64, - 99,64,107,64,107,128,107,128,107,129,82,193,49,129,41,5,192,41,131,128, - 41,128,33,64,33,154,1,127,255,255,127,255,255,42,255,255,135,123,231,107, - 165,97,116,160,124,160,124,224,132,224,132,12,225,132,129,226,132,3,225,132, - 9,224,132,4,160,124,7,224,132,7,225,132,132,226,132,226,132,225,132,33, - 133,14,225,132,7,226,132,4,225,132,134,226,132,225,132,225,132,226,132,161, - 132,161,124,3,162,124,129,163,124,7,98,124,131,97,124,97,124,96,124,6, - 160,124,129,160,132,5,224,132,3,160,132,8,160,124,130,160,132,160,132,7, - 224,132,14,160,132,38,224,132,6,160,132,131,160,124,161,132,113,198,27,255, - 255,133,190,247,238,173,161,116,161,116,163,124,20,226,124,129,225,124,3,226, - 124,15,162,124,4,226,124,133,161,124,34,108,36,108,194,99,194,99,7,195, - 99,129,194,107,3,34,108,138,98,116,98,116,97,116,97,116,161,116,98,116, - 67,91,2,50,134,91,39,108,4,199,99,129,39,108,3,199,99,130,135,99, - 135,99,4,199,99,130,135,99,135,99,5,135,91,3,135,99,129,199,99,7, - 135,99,4,135,91,137,135,99,135,99,135,91,135,99,135,99,135,91,135,91, - 71,91,71,91,3,135,99,138,198,99,199,99,199,99,198,99,199,99,135,99, - 135,91,198,99,134,99,249,214,19,255,255,130,173,165,162,116,3,227,124,12, - 226,132,132,225,124,161,124,46,182,254,255,21,255,255,131,249,222,132,123,192, - 90,3,0,99,136,192,98,130,107,33,108,192,98,0,99,0,99,192,90,171, - 148,17,255,255,134,124,239,66,107,0,99,64,107,64,107,64,99,25,64,107, - 134,128,107,65,74,192,16,64,8,0,58,128,107,5,64,107,147,1,99,2, - 91,64,99,64,107,64,99,128,107,64,107,64,107,128,107,64,99,129,74,192, - 49,192,41,193,49,192,41,192,41,128,41,128,33,64,33,29,0,129,133,82, - 127,192,98,127,192,98,127,192,98,127,192,98,127,192,98,127,192,98,36,192, - 98,1,133,82,147,0,32,243,148,44,243,156,129,51,157,3,51,165,35,52, - 165,15,52,173,9,116,173,10,117,173,73,117,181,12,116,181,9,116,173,31, - 52,173,16,51,173,8,51,165,22,243,164,21,242,164,8,242,156,20,178,156, - 20,177,156,14,177,148,7,113,148,30,112,148,9,112,140,129,48,140,34,47, - 140,5,47,132,4,46,132,33,206,131,129,206,123,9,205,123,32,141,123,129, - 141,115,15,140,115,129,141,115,37,141,123,13,205,123,130,205,131,205,131,35, - 206,131,12,46,132,129,46,140,37,47,140,10,111,140,130,112,140,112,140,38, - 112,148,7,176,148,12,177,148,9,177,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 -}; -const GuiConst_INT8U GuiBitmap_6[176] = +const GuiConst_INT8U GuiBitmap_5[176] = { 40,0,20,0,5,0,40,77,115,0,0,11,0,19,77,115,129,124,255,20, 77,115,11,0,18,77,115,3,124,255,19,77,115,11,0,17,77,115,5,124, @@ -9368,7 +3211,7 @@ 9,77,115,11,0,7,77,115,25,124,255,8,77,115,11,0,6,77,115,27, 124,255,7,77,115,5,0,40,77,115,0,0,0,0,0,0 }; -const GuiConst_INT8U GuiBitmap_7[176] = +const GuiConst_INT8U GuiBitmap_6[176] = { 40,0,20,0,5,0,40,77,115,0,0,0,0,0,0,11,0,6,77,115, 27,124,255,7,77,115,11,0,7,77,115,25,124,255,8,77,115,11,0,8, @@ -9380,7 +3223,7 @@ 115,5,124,255,18,77,115,11,0,18,77,115,3,124,255,19,77,115,11,0, 19,77,115,129,124,255,20,77,115,5,0,40,77,115,0,0 }; -const GuiConst_INT8U GuiBitmap_8[11982] = +const GuiConst_INT8U GuiBitmap_7[11982] = { 143,0,71,0,103,0,9,255,255,135,188,222,183,181,53,165,116,165,116,157, 52,157,52,157,56,52,165,4,116,157,132,52,157,52,157,116,157,116,165,6, @@ -9983,7 +3826,7 @@ 137,44,92,109,92,109,92,44,84,138,75,9,67,74,83,205,99,184,198,6, 255,255 }; -const GuiConst_INT8U GuiBitmap_9[7544] = +const GuiConst_INT8U GuiBitmap_8[7544] = { 143,0,71,0,71,0,9,255,255,131,250,222,182,181,52,173,9,52,165,3, 52,173,4,52,165,20,52,173,4,52,165,4,52,173,3,52,165,19,52,173, @@ -10364,7 +4207,7 @@ 98,204,98,10,203,98,135,12,107,12,107,203,98,138,82,73,82,12,99,207, 131,7,255,255 }; -const GuiConst_INT8U GuiBitmap_10[4343] = +const GuiConst_INT8U GuiBitmap_9[4343] = { 153,0,76,0,8,0,127,192,98,26,192,98,46,0,131,12,99,121,206,121, 206,14,242,164,8,242,156,20,178,156,20,177,156,14,177,148,7,113,148,30, @@ -10585,7 +4428,7 @@ 47,140,131,12,99,121,206,121,206,0,0,0,0,0,0,0,0,0,0,0, 0,0,0 }; -const GuiConst_INT8U GuiBitmap_11[4001] = +const GuiConst_INT8U GuiBitmap_10[4001] = { 153,0,76,0,8,0,127,192,98,26,192,98,46,0,131,12,99,121,206,121, 206,14,242,164,8,242,156,20,178,156,20,177,156,14,177,148,7,113,148,30, @@ -10801,8 +4644,7 @@ (GuiConst_PTR)&GuiBitmap_7, (GuiConst_PTR)&GuiBitmap_8, (GuiConst_PTR)&GuiBitmap_9, - (GuiConst_PTR)&GuiBitmap_10, - (GuiConst_PTR)&GuiBitmap_11 + (GuiConst_PTR)&GuiBitmap_10 }; const GuiConst_INTCOLOR GuiStruct_ColorTable[GuiStruct_ColorTableCnt] =
diff -r f0e645cf73a2 -r 26e49e6955bd easyGUIUpdated/GuiStruct.h --- a/easyGUIUpdated/GuiStruct.h Fri Jul 28 15:53:40 2017 +0000 +++ b/easyGUIUpdated/GuiStruct.h Mon Jul 31 15:37:57 2017 +0000 @@ -222,7 +222,7 @@ extern const GuiConst_PTR const GuiStruct_StructPtrList[GuiStruct_StructCnt]; extern const GuiConst_INT16U GuiStruct_StructNdxList[GuiStruct_StructCnt]; -#define GuiStruct_VarPtrCnt 261 +#define GuiStruct_VarPtrCnt 267 extern const GuiConst_PTR const GuiStruct_VarPtrList[GuiStruct_VarPtrCnt]; extern const GuiConst_INT8U GuiStruct_VarTypeList[GuiStruct_VarPtrCnt]; @@ -232,15 +232,14 @@ #define GuiStruct_Bitmap_HomeButton 2 #define GuiStruct_Bitmap_SettingsButton 3 #define GuiStruct_Bitmap_BlankBackground 4 -#define GuiStruct_Bitmap_BootScreen 5 -#define GuiStruct_Bitmap_UpArrow 6 -#define GuiStruct_Bitmap_DownArrow 7 -#define GuiStruct_Bitmap_RunButtonGreen 8 -#define GuiStruct_Bitmap_RunButtonBlank 9 -#define GuiStruct_Bitmap_HeatOff 10 -#define GuiStruct_Bitmap_HeatOn 11 +#define GuiStruct_Bitmap_UpArrow 5 +#define GuiStruct_Bitmap_DownArrow 6 +#define GuiStruct_Bitmap_RunButtonGreen 7 +#define GuiStruct_Bitmap_RunButtonBlank 8 +#define GuiStruct_Bitmap_HeatOff 9 +#define GuiStruct_Bitmap_HeatOn 10 -#define GuiStruct_BitmapCnt 12 +#define GuiStruct_BitmapCnt 11 extern const GuiConst_PTR const GuiStruct_BitmapPtrList[GuiStruct_BitmapCnt]; #define GuiStruct_ColorTableCnt 1
diff -r f0e645cf73a2 -r 26e49e6955bd easyGUIUpdated/GuiVar.c --- a/easyGUIUpdated/GuiVar.c Fri Jul 28 15:53:40 2017 +0000 +++ b/easyGUIUpdated/GuiVar.c Mon Jul 31 15:37:57 2017 +0000 @@ -66,6 +66,7 @@ GuiConst_TEXT GuiVar_columnMethodInitialHold[41]; GuiConst_TEXT GuiVar_columnMethodInitialTemp[41]; GuiConst_TEXT GuiVar_columnMethodRampCount[41]; +GuiConst_INTCOLOR GuiVar_columnMethodRampEvenRowsColour; GuiConst_TEXT GuiVar_columnMethodRampHold1[41]; GuiConst_TEXT GuiVar_columnMethodRampHold2[41]; GuiConst_TEXT GuiVar_columnMethodRampHold3[41]; @@ -76,6 +77,7 @@ GuiConst_TEXT GuiVar_columnMethodRampNumber3[41]; GuiConst_TEXT GuiVar_columnMethodRampNumber4[41]; GuiConst_TEXT GuiVar_columnMethodRampNumber5[41]; +GuiConst_INTCOLOR GuiVar_columnMethodRampOddRowsColour; GuiConst_TEXT GuiVar_columnMethodRampRate1[41]; GuiConst_TEXT GuiVar_columnMethodRampRate2[41]; GuiConst_TEXT GuiVar_columnMethodRampRate3[41]; @@ -219,6 +221,7 @@ GuiConst_TEXT GuiVar_gasMethodInitialHold[41]; GuiConst_TEXT GuiVar_gasMethodInitialPressure[41]; GuiConst_TEXT GuiVar_gasMethodRampCount[41]; +GuiConst_INTCOLOR GuiVar_gasMethodRampEvenRowsColour; GuiConst_TEXT GuiVar_gasMethodRampHold1[41]; GuiConst_TEXT GuiVar_gasMethodRampHold2[41]; GuiConst_TEXT GuiVar_gasMethodRampHold3[41]; @@ -229,6 +232,7 @@ GuiConst_TEXT GuiVar_gasMethodRampNumber3[41]; GuiConst_TEXT GuiVar_gasMethodRampNumber4[41]; GuiConst_TEXT GuiVar_gasMethodRampNumber5[41]; +GuiConst_INTCOLOR GuiVar_gasMethodRampOddRowsColour; GuiConst_TEXT GuiVar_gasMethodRampRate1[41]; GuiConst_TEXT GuiVar_gasMethodRampRate2[41]; GuiConst_TEXT GuiVar_gasMethodRampRate3[41]; @@ -260,6 +264,7 @@ GuiConst_TEXT GuiVar_injectorMethodInitialHold[41]; GuiConst_TEXT GuiVar_injectorMethodInitialTemp[41]; GuiConst_TEXT GuiVar_injectorMethodRampCount[41]; +GuiConst_INTCOLOR GuiVar_injectorMethodRampEvenRowsColour; GuiConst_TEXT GuiVar_injectorMethodRampHold1[41]; GuiConst_TEXT GuiVar_injectorMethodRampHold2[41]; GuiConst_TEXT GuiVar_injectorMethodRampHold3[41]; @@ -270,6 +275,7 @@ GuiConst_TEXT GuiVar_injectorMethodRampNumber3[41]; GuiConst_TEXT GuiVar_injectorMethodRampNumber4[41]; GuiConst_TEXT GuiVar_injectorMethodRampNumber5[41]; +GuiConst_INTCOLOR GuiVar_injectorMethodRampOddRowsColour; GuiConst_TEXT GuiVar_injectorMethodRampRate1[41]; GuiConst_TEXT GuiVar_injectorMethodRampRate2[41]; GuiConst_TEXT GuiVar_injectorMethodRampRate3[41];
diff -r f0e645cf73a2 -r 26e49e6955bd easyGUIUpdated/GuiVar.h --- a/easyGUIUpdated/GuiVar.h Fri Jul 28 15:53:40 2017 +0000 +++ b/easyGUIUpdated/GuiVar.h Mon Jul 31 15:37:57 2017 +0000 @@ -207,6 +207,11 @@ extern GuiConst_TEXT GuiVar_columnMethodRampCount[41]; +// The colour of the even numbered rows (2, 4) on the column, injector and +// gas method pages +extern GuiConst_INTCOLOR GuiVar_columnMethodRampEvenRowsColour; + + // The hold time for the first ramp displayed on the Column Method page extern GuiConst_TEXT GuiVar_columnMethodRampHold1[41]; @@ -247,6 +252,11 @@ extern GuiConst_TEXT GuiVar_columnMethodRampNumber5[41]; +// The colour of the odd numbered rows (1, 3, 5) on the column, injector +// and gas method pages +extern GuiConst_INTCOLOR GuiVar_columnMethodRampOddRowsColour; + + // The temperature rate of the first ramp displayed on the Column Method // page extern GuiConst_TEXT GuiVar_columnMethodRampRate1[41]; @@ -853,6 +863,11 @@ extern GuiConst_TEXT GuiVar_gasMethodRampCount[41]; +// The colour of the even numbered rows (2, 4) on the column, injector and +// gas method pages +extern GuiConst_INTCOLOR GuiVar_gasMethodRampEvenRowsColour; + + // The hold time for the first ramp displayed on the Gas Method page extern GuiConst_TEXT GuiVar_gasMethodRampHold1[41]; @@ -893,6 +908,11 @@ extern GuiConst_TEXT GuiVar_gasMethodRampNumber5[41]; +// The colour of the odd numbered rows (1, 3, 5) on the column, injector +// and gas method pages +extern GuiConst_INTCOLOR GuiVar_gasMethodRampOddRowsColour; + + // The temperature rate of the first ramp displayed on the Gas Method page extern GuiConst_TEXT GuiVar_gasMethodRampRate1[41]; @@ -1029,6 +1049,11 @@ extern GuiConst_TEXT GuiVar_injectorMethodRampCount[41]; +// The colour of the even numbered rows (2, 4) on the column, injector and +// gas method pages +extern GuiConst_INTCOLOR GuiVar_injectorMethodRampEvenRowsColour; + + // The hold time for the first ramp displayed on the Injector Method page extern GuiConst_TEXT GuiVar_injectorMethodRampHold1[41]; @@ -1069,6 +1094,11 @@ extern GuiConst_TEXT GuiVar_injectorMethodRampNumber5[41]; +// The colour of the odd numbered rows (1, 3, 5) on the column, injector +// and gas method pages +extern GuiConst_INTCOLOR GuiVar_injectorMethodRampOddRowsColour; + + // The temperature rate of the first ramp displayed on the Injector Method // page extern GuiConst_TEXT GuiVar_injectorMethodRampRate1[41];
diff -r f0e645cf73a2 -r 26e49e6955bd easyGUIUpdated/VarInit.h --- a/easyGUIUpdated/VarInit.h Fri Jul 28 15:53:40 2017 +0000 +++ b/easyGUIUpdated/VarInit.h Mon Jul 31 15:37:57 2017 +0000 @@ -41,6 +41,7 @@ strcpy(GuiVar_columnMethodInitialHold, "999"); strcpy(GuiVar_columnMethodInitialTemp, "999"); strcpy(GuiVar_columnMethodRampCount, "6"); +GuiVar_columnMethodRampEvenRowsColour = 33808; strcpy(GuiVar_columnMethodRampHold1, "1.0"); strcpy(GuiVar_columnMethodRampHold2, "2.0"); strcpy(GuiVar_columnMethodRampHold3, "3.0"); @@ -51,6 +52,7 @@ strcpy(GuiVar_columnMethodRampNumber3, "3"); strcpy(GuiVar_columnMethodRampNumber4, "4"); strcpy(GuiVar_columnMethodRampNumber5, "5"); +GuiVar_columnMethodRampOddRowsColour = 0; strcpy(GuiVar_columnMethodRampRate1, "10"); strcpy(GuiVar_columnMethodRampRate2, "20"); strcpy(GuiVar_columnMethodRampRate3, "30"); @@ -194,6 +196,7 @@ strcpy(GuiVar_gasMethodInitialHold, "999"); strcpy(GuiVar_gasMethodInitialPressure, "999"); strcpy(GuiVar_gasMethodRampCount, "6"); +GuiVar_gasMethodRampEvenRowsColour = 33808; strcpy(GuiVar_gasMethodRampHold1, "1.0"); strcpy(GuiVar_gasMethodRampHold2, "2.0"); strcpy(GuiVar_gasMethodRampHold3, "3.0"); @@ -203,7 +206,8 @@ strcpy(GuiVar_gasMethodRampNumber2, "2"); strcpy(GuiVar_gasMethodRampNumber3, "3"); strcpy(GuiVar_gasMethodRampNumber4, "4"); -strcpy(GuiVar_gasMethodRampNumber5, "4"); +strcpy(GuiVar_gasMethodRampNumber5, "5"); +GuiVar_gasMethodRampOddRowsColour = 0; strcpy(GuiVar_gasMethodRampRate1, "10"); strcpy(GuiVar_gasMethodRampRate2, "10"); strcpy(GuiVar_gasMethodRampRate3, "10"); @@ -235,6 +239,7 @@ strcpy(GuiVar_injectorMethodInitialHold, "999"); strcpy(GuiVar_injectorMethodInitialTemp, "999"); strcpy(GuiVar_injectorMethodRampCount, "6"); +GuiVar_injectorMethodRampEvenRowsColour = 33808; strcpy(GuiVar_injectorMethodRampHold1, "1.0"); strcpy(GuiVar_injectorMethodRampHold2, "2.0"); strcpy(GuiVar_injectorMethodRampHold3, "3.0"); @@ -245,6 +250,7 @@ strcpy(GuiVar_injectorMethodRampNumber3, "3"); strcpy(GuiVar_injectorMethodRampNumber4, "4"); strcpy(GuiVar_injectorMethodRampNumber5, "5"); +GuiVar_injectorMethodRampOddRowsColour = 0; strcpy(GuiVar_injectorMethodRampRate1, "10"); strcpy(GuiVar_injectorMethodRampRate2, "20"); strcpy(GuiVar_injectorMethodRampRate3, "30");
diff -r f0e645cf73a2 -r 26e49e6955bd main.cpp --- a/main.cpp Fri Jul 28 15:53:40 2017 +0000 +++ b/main.cpp Mon Jul 31 15:37:57 2017 +0000 @@ -39,7 +39,7 @@ #include "USBHostGCUtilities.h" -#define BUILD_DATE "28 July 2017" // Copied to easyGUI variable "GuiVar_buildDate", displayed on both Settings pages (normal and Running). +#define BUILD_DATE "31 July 2017" // Copied to easyGUI variable "GuiVar_buildDate", displayed on both Settings pages (normal and Running). // *** MUST update for each 'delivered' build, MUST correspond with date on 'delivered' binary file *** // This should be updated first thing every morning, and immediately after every 'delivery' // (to e.g. "dd mmm yyyy #2"), so that it is ready for the next one. @@ -162,7 +162,11 @@ #define USE_QSPI_BITMAPS #ifdef USE_QSPI_BITMAPS + QSPIBitmaps qspiBitmaps; + +#define USE_QSPI_BACKGROUND_BITMAPS + #endif // USE_QSPI_BITMAPS //#define WANT_STATUS_RECTANGLE_ON_COLUMN_AUTO_CALIB_PAGE @@ -590,7 +594,11 @@ */ void DrawBackgroundBitmapWithLogo(void) { +#ifdef USE_QSPI_BACKGROUND_BITMAPS + qspiBitmaps.DisplayBootScreenBitmap(); +#else DrawSpecifiedBackgroundBitmap(GuiStruct_Bitmap_BootScreen); +#endif // USE_QSPI_BACKGROUND_BITMAPS } /* @@ -2206,6 +2214,11 @@ DrawHeatOnOffButton(); #endif +#ifdef USE_QSPI_BITMAPS + // Before we display the first page - needs BootScreen + qspiBitmaps.SetupArray(); +#endif + GuiDisplay_Lock(); GuiLib_Init(); @@ -2213,10 +2226,6 @@ DisplayEasyGuiStructure(initialEasyGUIPage, NULL, NULL); GuiDisplay_Unlock(); - -#ifdef USE_QSPI_BITMAPS - qspiBitmaps.SetupArray(); -#endif } void InitialiseLPC4088(DMBoard* board, void **frameBufferAddress1, void **frameBufferAddress2)