home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 February / PCO_0299.ISO / filesbbs / linux / mikmod-3.000 / mikmod-3 / mikmod-3.1.2 / drivers / drv_sun.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-07  |  92.5 KB  |  2,410 lines

  1. /*    MikMod sound library
  2.     (c) 1998 Miodrag Vallat and others - see file AUTHORS for complete list
  3.  
  4.     This library is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU Library General Public License as
  6.     published by the Free Software Foundation; either version 2 of
  7.     the License, or (at your option) any later version.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU Library General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU Library General Public
  15.     License along with this library; if not, write to the Free Software
  16.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18.  
  19. /*==============================================================================
  20.  
  21.   $Id: drv_sun.c,v 1.18 1998/12/07 06:01:50 miod Exp $
  22.  
  23.   Mikmod driver for output on the Sun audio device (/dev/audio).
  24.   Also works under NetBSD and OpenBSD
  25.  
  26. ==============================================================================*/
  27.  
  28. /*
  29.  
  30.     Written by Valtteri Vuorikoski <vuori@sci.fi>
  31.  
  32. */
  33.  
  34. #ifdef HAVE_CONFIG_H
  35. #include "config.h"
  36. #endif
  37.  
  38. #ifdef HAVE_UNISTD_H
  39. #include <unistd.h>
  40. #endif
  41. #ifdef HAVE_FCNTL_H
  42. #include <fcntl.h>
  43. #endif
  44. #include <stdlib.h>
  45. #if !defined(SUNOS)&&!defined(__NetBSD__)
  46. #include <string.h>
  47. #endif
  48. #ifdef HAVE_SYS_IOCTL_H
  49. #include <sys/ioctl.h>
  50. #endif
  51. #include <sys/types.h>
  52.  
  53. #ifdef SUNOS
  54. #include <sun/audioio.h>
  55. #else /* Solaris, *BSD */
  56. #include <sys/audioio.h>
  57. #endif
  58.  
  59. #include <mikmod_internals.h>
  60.  
  61. #define DEFAULT_FRAGSIZE 4096
  62.  
  63. static    int sndfd=-1;
  64. static    int play_encoding;
  65. static    int play_precision;
  66. static    int fragsize=DEFAULT_FRAGSIZE;
  67. static    SBYTE *audiobuffer=NULL;
  68.  
  69. /*
  70. This is modified from the SOX package (libst.h and raw.c) by Lance Norskog.
  71. Parts of this are...
  72. ** Copyright (C) 1989 by Jef Poskanzer.
  73. **
  74. ** Permission to use, copy, modify, and distribute this software and its
  75. ** documentation for any purpose and without fee is hereby granted, provided
  76. ** that the above copyright notice appear in all copies and that both that
  77. ** copyright notice and this permission notice appear in supporting
  78. ** documentation.  This software is provided "as is" without express or
  79. ** implied warranty.
  80. */
  81. #define st_linear_to_ulaw(linearword) ulaw_comp_table[(linearword/4)&0x3fff]
  82.  
  83. static unsigned char ulaw_comp_table[];
  84.  
  85. /* this converts unsigned linear data from VC_WriteBytes() to ulaw or signed
  86.    linear */
  87. static void unsignedtoulaw(char *buf,int nsamp)
  88. {
  89.     while(nsamp--) {
  90.         register long datum=(long)*((unsigned char*)buf);
  91.  
  92.         datum^=128; /* convert to signed */
  93.         datum<<=8;
  94.         /* round up to 12 bits of data */
  95.         datum+=0x8;    /* + 0b1000 */
  96.         datum=st_linear_to_ulaw(datum);
  97.         *buf++=(char)datum;
  98.     }
  99. }
  100. /* end of soxism */
  101.  
  102. static BOOL Sun_IsThere(void)
  103. {
  104. #ifdef __OpenBSD__
  105.     return (access("/dev/sound",W_OK)==0);
  106. #else
  107.     return (access("/dev/audio",W_OK)==0);
  108. #endif
  109. }
  110.  
  111. static BOOL Sun_Init(void)
  112. {
  113.     int play_stereo,play_rate;
  114. #ifdef SUNOS
  115.     int audiotype;
  116. #else
  117.     audio_device_t audiotype;    
  118. #endif
  119.     struct audio_info audioinfo;
  120.     char *env;
  121.  
  122. #ifdef __OpenBSD__
  123.     if((sndfd=open("/dev/sound",O_WRONLY))<0) {
  124. #else
  125.     if((sndfd=open("/dev/audio",O_WRONLY))<0) {
  126. #endif
  127.         _mm_errno=MMERR_OPENING_AUDIO;
  128.         return 1;
  129.     }
  130.  
  131.     if((env=getenv("MM_FRAGSIZE"))) fragsize=atoi(env);
  132.     if(fragsize<128) fragsize=DEFAULT_FRAGSIZE;
  133.  
  134.     if(!(audiobuffer=(SBYTE*)_mm_malloc(fragsize)))
  135.         return 1;
  136.  
  137.     play_precision=(md_mode&DMODE_16BITS)?16:8;
  138.     play_stereo=(md_mode&DMODE_STEREO)?2:1;
  139.     play_rate=md_mixfreq;
  140.     /* attempt to guess the encoding */
  141.     play_encoding=-1;
  142.  
  143.     if(ioctl(sndfd,AUDIO_GETDEV,&audiotype)<0) {
  144. #ifdef MIKMOD_DEBUG
  145.         fputs("\rSun driver warning: could not determine audio device type\n",stderr);
  146. #endif
  147.     } else {
  148. #if !defined(__NetBSD__)&&!defined(__OpenBSD__) /* SunOS 4, Solaris */
  149. #ifdef SUNOS /* SunOS 4 */
  150.         switch(audiotype) {
  151.             case AUDIO_DEV_AMD:
  152.                 /* AMD 79C30 */
  153.                 /* 8bit mono ulaw 8kHz */
  154.                 if((play_precision==8)&&(play_stereo==1)&&(play_rate==8000))
  155.                     play_encoding=AUDIO_ENCODING_ULAW;
  156.                 else {
  157.                     _mm_errno=MMERR_SUN_INIT;
  158.                     return 1;
  159.                 }
  160.                 break;
  161.             case AUDIO_DEV_SPEAKERBOX:
  162.             case AUDIO_DEV_CODEC:
  163.                 /* CS 4231 or DBRI or speaker box */
  164.                 /* 16bit mono/stereo linear 8kHz - 48kHz */
  165.                 if(play_precision==16)
  166.                     play_encoding=AUDIO_ENCODING_LINEAR;
  167.                 /* 8bit mono ulaw 8kHz - 48kHz */
  168.                 else if((play_precision==8)&&(play_stereo==1))
  169.                     play_encoding=AUDIO_ENCODING_ULAW;
  170.                 else {
  171.                     _mm_errno=MMERR_SUN_INIT;
  172.                     return 1;
  173.                 }
  174.                 break;
  175.         }
  176. #else /* Solaris */
  177.         if (!strcmp(audiotype.name,"SUNW,am79c30")) {
  178.             /* AMD 79C30 */
  179.             /* 8bit mono ulaw 8kHz */
  180.             if((play_precision==8)&&(play_stereo==1)&&(play_rate==8000))
  181.                 play_encoding=AUDIO_ENCODING_ULAW;
  182.             else {
  183.                 _mm_errno=MMERR_SUN_INIT;
  184.                 return 1;
  185.             }
  186.         } else
  187.           if ((!strcmp(audiotype.name,"SUNW,CS4231"))||
  188.               (!strcmp(audiotype.name,"SUNW,dbri"))||
  189.               (!strcmp(audiotype.name,"speakerbox"))) {
  190.             /* CS 4231 or DBRI or speaker box */
  191.             /* 16bit mono/stereo linear 8kHz - 48kHz */
  192.             if(play_precision==16)
  193.                 play_encoding=AUDIO_ENCODING_LINEAR;
  194.             /* 8bit mono ulaw 8kHz - 48kHz */
  195.             else if((play_precision==8)&&(play_stereo==1))
  196.                 play_encoding=AUDIO_ENCODING_ULAW;
  197.             else {
  198.                 _mm_errno=MMERR_SUN_INIT;
  199.                 return 1;
  200.             }
  201.         }
  202. #endif
  203. #else /* NetBSD, OpenBSD */
  204.         if (!strcmp(audiotype.name,"amd7930")) {
  205.             /* AMD 79C30 */
  206.             /* 8bit mono ulaw 8kHz */
  207.             if((play_precision==8)&&(play_stereo==1)&&(play_rate==8000))
  208.                 play_encoding=AUDIO_ENCODING_ULAW;
  209.             else {
  210.                 _mm_errno=MMERR_SUN_INIT;
  211.                 return 1;
  212.             }
  213.         }
  214. #endif
  215.     }
  216.  
  217.     /* Sound devices which were not handled above don't have specific
  218.        limitations, so try and guess optimal settings */
  219.     if(play_encoding==-1) {
  220.         if((play_precision==8)&&(play_stereo==1)&&(play_rate<=8000))
  221.             play_encoding = AUDIO_ENCODING_ULAW;
  222.         else
  223. #ifdef __OpenBSD__
  224.             play_encoding = (play_precision==16)? AUDIO_ENCODING_PCM16:AUDIO_ENCODING_PCM8;
  225. #else
  226.             play_encoding = AUDIO_ENCODING_LINEAR;
  227. #endif
  228.     }
  229.  
  230.     AUDIO_INITINFO(&audioinfo);
  231.     audioinfo.play.precision=play_precision;
  232.     audioinfo.play.channels=play_stereo;
  233.     audioinfo.play.sample_rate=play_rate;
  234.     audioinfo.play.encoding=play_encoding;
  235. #if !defined(__NetBSD__)&&!defined(__OpenBSD__) /* SunOS 4, Solaris */
  236. #ifdef USE_HEADPHONE
  237.     audioinfo.play.port=AUDIO_HEADPHONE;
  238. #else
  239.     audioinfo.play.port=AUDIO_SPEAKER;
  240. #endif
  241. #endif
  242. #if defined(__NetBSD__)||defined(__OpenBSD__)
  243.     audioinfo.mode=AUMODE_PLAY;
  244. #endif
  245.     
  246.     if(ioctl(sndfd,AUDIO_SETINFO,&audioinfo)<0) {
  247.         _mm_errno=MMERR_SUN_INIT;
  248.         return 1;
  249.     }
  250.  
  251.     /* Check if our changes were accepted */
  252.     if(ioctl(sndfd,AUDIO_GETINFO,&audioinfo)<0) {
  253.         _mm_errno=MMERR_SUN_INIT;
  254.         return 1;
  255.     }
  256.     if ((audioinfo.play.precision!=play_precision)||
  257.         (audioinfo.play.channels!=play_stereo)||
  258.         (audioinfo.play.encoding!=play_encoding)||
  259.         (audioinfo.play.sample_rate!=play_rate)) {
  260.         _mm_errno=MMERR_SUN_INIT;
  261.         return 1;
  262.     }
  263.  
  264.     return VC_Init();
  265. }
  266.  
  267. static void Sun_Exit(void)
  268. {
  269.     VC_Exit();
  270.     if (audiobuffer) {
  271.         free(audiobuffer);
  272.         audiobuffer=NULL;
  273.     }
  274.     if (sndfd>=0) {
  275.         close(sndfd);
  276.         sndfd=-1;
  277.     }
  278. }
  279.  
  280. static void Sun_Update(void)
  281. {
  282.     int done;
  283.  
  284.     done=VC_WriteBytes((signed char *)audiobuffer,fragsize);
  285.     if(play_encoding==AUDIO_ENCODING_ULAW) unsignedtoulaw(audiobuffer,done);
  286.     write(sndfd,audiobuffer,done);
  287. }
  288.  
  289. static BOOL Sun_Reset(void)
  290. {
  291.     Sun_Exit();
  292.     return Sun_Init();
  293. }
  294.  
  295. static BOOL Sun_PlayStart(void)
  296. {
  297.     struct audio_info audioinfo;
  298.  
  299.     if(ioctl(sndfd,AUDIO_GETINFO,&audioinfo)<0)
  300.         return 1;
  301.     audioinfo.play.pause=0;
  302.     if(ioctl(sndfd,AUDIO_SETINFO,&audioinfo)<0)
  303.         return 1;
  304.  
  305.     return VC_PlayStart();
  306. }
  307.  
  308. static void Sun_PlayStop(void)
  309. {
  310.     struct audio_info audioinfo;
  311.  
  312.     VC_PlayStop();
  313.  
  314.     if(ioctl(sndfd,AUDIO_DRAIN)<0)
  315.         return;
  316.     if(ioctl(sndfd,AUDIO_GETINFO,&audioinfo)<0)
  317.         return;
  318.     audioinfo.play.pause=1;
  319.     ioctl(sndfd,AUDIO_SETINFO,&audioinfo);
  320. }
  321.  
  322. MDRIVER drv_sun={
  323.     NULL,
  324. #ifdef __OpenBSD__
  325.     "OpenBSD Audio",
  326.     "OpenBSD Audio driver v0.2",
  327. #else
  328. #ifdef __NetBSD__
  329.     "NetBSD Audio",
  330.     "NetBSD Audio driver v0.2",
  331. #else
  332.     "Sun Audio",
  333.     "MikMod Sun Audio driver v1.2",
  334. #endif
  335. #endif
  336.     0,255,
  337.     Sun_IsThere,
  338.     VC_SampleLoad,
  339.     VC_SampleUnload,
  340.     VC_SampleSpace,
  341.     VC_SampleLength,
  342.     Sun_Init,
  343.     Sun_Exit,
  344.     Sun_Reset,
  345.     VC_SetNumVoices,
  346.     Sun_PlayStart,
  347.     Sun_PlayStop,
  348.     Sun_Update,
  349.     VC_VoiceSetVolume,
  350.     VC_VoiceSetFrequency,
  351.     VC_VoiceSetPanning,
  352.     VC_VoicePlay,
  353.     VC_VoiceStop,
  354.     VC_VoiceStopped,
  355.     VC_VoiceGetPosition,
  356.     VC_VoiceRealVolume
  357. };
  358.  
  359. /* this table is used to convert signed linear data to ulaw 
  360.    this is part of libst.c from the SOX package by Lance Norskog. */
  361. static unsigned char ulaw_comp_table[16384] = {
  362.     0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfb,
  363.     0xfb,0xfa,0xfa,0xf9,0xf9,0xf8,0xf8,0xf7,
  364.     0xf7,0xf6,0xf6,0xf5,0xf5,0xf4,0xf4,0xf3,
  365.     0xf3,0xf2,0xf2,0xf1,0xf1,0xf0,0xf0,0xef,
  366.     0xef,0xef,0xef,0xee,0xee,0xee,0xee,0xed,
  367.     0xed,0xed,0xed,0xec,0xec,0xec,0xec,0xeb,
  368.     0xeb,0xeb,0xeb,0xea,0xea,0xea,0xea,0xe9,
  369.     0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe8,0xe7,
  370.     0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe6,0xe5,
  371.     0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xe4,0xe3,
  372.     0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe2,0xe1,
  373.     0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xe0,0xdf,
  374.     0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xdf,0xde,
  375.     0xde,0xde,0xde,0xde,0xde,0xde,0xde,0xdd,
  376.     0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdd,0xdc,
  377.     0xdc,0xdc,0xdc,0xdc,0xdc,0xdc,0xdc,0xdb,
  378.     0xdb,0xdb,0xdb,0xdb,0xdb,0xdb,0xdb,0xda,
  379.     0xda,0xda,0xda,0xda,0xda,0xda,0xda,0xd9,
  380.     0xd9,0xd9,0xd9,0xd9,0xd9,0xd9,0xd9,0xd8,
  381.     0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd8,0xd7,
  382.     0xd7,0xd7,0xd7,0xd7,0xd7,0xd7,0xd7,0xd6,
  383.     0xd6,0xd6,0xd6,0xd6,0xd6,0xd6,0xd6,0xd5,
  384.     0xd5,0xd5,0xd5,0xd5,0xd5,0xd5,0xd5,0xd4,
  385.     0xd4,0xd4,0xd4,0xd4,0xd4,0xd4,0xd4,0xd3,
  386.     0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd3,0xd2,
  387.     0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd2,0xd1,
  388.     0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd0,
  389.     0xd0,0xd0,0xd0,0xd0,0xd0,0xd0,0xd0,0xcf,
  390.     0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,
  391.     0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xce,
  392.     0xce,0xce,0xce,0xce,0xce,0xce,0xce,0xce,
  393.     0xce,0xce,0xce,0xce,0xce,0xce,0xce,0xcd,
  394.     0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,
  395.     0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcc,
  396.     0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
  397.     0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcb,
  398.     0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,
  399.     0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xcb,0xca,
  400.     0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xca,
  401.     0xca,0xca,0xca,0xca,0xca,0xca,0xca,0xc9,
  402.     0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,
  403.     0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc9,0xc8,
  404.     0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,
  405.     0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc8,0xc7,
  406.     0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,
  407.     0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc7,0xc6,
  408.     0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,
  409.     0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc5,
  410.     0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,
  411.     0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc5,0xc4,
  412.     0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,
  413.     0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc4,0xc3,
  414.     0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,
  415.     0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc2,
  416.     0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,
  417.     0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc2,0xc1,
  418.     0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,
  419.     0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc1,0xc0,
  420.     0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
  421.     0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xbf,
  422.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
  423.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
  424.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,
  425.     0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbf,0xbe,
  426.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,
  427.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,
  428.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,
  429.     0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbe,0xbd,
  430.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,
  431.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,
  432.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,
  433.     0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbd,0xbc,
  434.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,
  435.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,
  436.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,
  437.     0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbc,0xbb,
  438.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,
  439.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,
  440.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,
  441.     0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xbb,0xba,
  442.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,
  443.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,
  444.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xba,
  445.     0xba,0xba,0xba,0xba,0xba,0xba,0xba,0xb9,
  446.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,
  447.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,
  448.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,
  449.     0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb9,0xb8,
  450.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,
  451.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,
  452.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,
  453.     0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb8,0xb7,
  454.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
  455.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
  456.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
  457.     0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb6,
  458.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,
  459.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,
  460.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,
  461.     0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb6,0xb5,
  462.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,
  463.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,
  464.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,
  465.     0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb5,0xb4,
  466.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,
  467.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,
  468.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,
  469.     0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb4,0xb3,
  470.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,
  471.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,
  472.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,
  473.     0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb3,0xb2,
  474.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,
  475.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,
  476.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,
  477.     0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb1,
  478.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,
  479.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,
  480.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,
  481.     0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb1,0xb0,
  482.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,
  483.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,
  484.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,
  485.     0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xaf,
  486.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  487.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  488.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  489.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  490.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  491.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  492.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,
  493.     0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xaf,0xae,
  494.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  495.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  496.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  497.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  498.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  499.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  500.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
  501.     0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xad,
  502.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  503.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  504.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  505.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  506.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  507.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  508.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xad,
  509.     0xad,0xad,0xad,0xad,0xad,0xad,0xad,0xac,
  510.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  511.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  512.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  513.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  514.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  515.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  516.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xac,
  517.     0xac,0xac,0xac,0xac,0xac,0xac,0xac,0xab,
  518.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  519.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  520.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  521.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  522.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  523.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  524.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,
  525.     0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xaa,
  526.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  527.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  528.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  529.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  530.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  531.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  532.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
  533.     0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xa9,
  534.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  535.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  536.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  537.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  538.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  539.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  540.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,
  541.     0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa8,
  542.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  543.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  544.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  545.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  546.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  547.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  548.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,
  549.     0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa7,
  550.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  551.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  552.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  553.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  554.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  555.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  556.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,
  557.     0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa7,0xa6,
  558.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  559.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  560.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  561.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  562.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  563.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  564.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,
  565.     0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa6,0xa5,
  566.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  567.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  568.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  569.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  570.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  571.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  572.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,
  573.     0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa4,
  574.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  575.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  576.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  577.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  578.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  579.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  580.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,
  581.     0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa3,
  582.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  583.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  584.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  585.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  586.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  587.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  588.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,
  589.     0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa2,
  590.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  591.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  592.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  593.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  594.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  595.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  596.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,
  597.     0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa1,
  598.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  599.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  600.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  601.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  602.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  603.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  604.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,
  605.     0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa1,0xa0,
  606.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  607.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  608.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  609.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  610.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  611.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  612.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,
  613.     0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x9f,
  614.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  615.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  616.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  617.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  618.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  619.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  620.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  621.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  622.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  623.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  624.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  625.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  626.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  627.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  628.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
  629.     0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9e,
  630.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  631.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  632.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  633.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  634.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  635.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  636.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  637.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  638.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  639.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  640.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  641.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  642.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  643.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  644.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,
  645.     0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9e,0x9d,
  646.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  647.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  648.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  649.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  650.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  651.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  652.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  653.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  654.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  655.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  656.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  657.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  658.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  659.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  660.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,
  661.     0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9d,0x9c,
  662.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  663.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  664.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  665.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  666.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  667.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  668.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  669.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  670.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  671.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  672.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  673.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  674.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  675.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  676.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,
  677.     0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9c,0x9b,
  678.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  679.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  680.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  681.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  682.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  683.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  684.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  685.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  686.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  687.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  688.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  689.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  690.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  691.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  692.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,
  693.     0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9b,0x9a,
  694.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  695.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  696.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  697.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  698.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  699.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  700.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  701.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  702.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  703.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  704.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  705.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  706.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  707.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  708.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,
  709.     0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x9a,0x99,
  710.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  711.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  712.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  713.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  714.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  715.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  716.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  717.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  718.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  719.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  720.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  721.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  722.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  723.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  724.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
  725.     0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x98,
  726.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  727.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  728.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  729.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  730.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  731.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  732.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  733.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  734.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  735.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  736.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  737.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  738.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  739.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  740.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x98,
  741.     0x98,0x98,0x98,0x98,0x98,0x98,0x98,0x97,
  742.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  743.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  744.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  745.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  746.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  747.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  748.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  749.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  750.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  751.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  752.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  753.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  754.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  755.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  756.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x97,
  757.     0x97,0x97,0x97,0x97,0x97,0x97,0x97,0x96,
  758.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  759.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  760.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  761.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  762.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  763.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  764.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  765.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  766.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  767.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  768.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  769.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  770.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  771.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  772.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x96,
  773.     0x96,0x96,0x96,0x96,0x96,0x96,0x96,0x95,
  774.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  775.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  776.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  777.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  778.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  779.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  780.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  781.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  782.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  783.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  784.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  785.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  786.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  787.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  788.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x95,
  789.     0x95,0x95,0x95,0x95,0x95,0x95,0x95,0x94,
  790.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  791.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  792.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  793.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  794.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  795.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  796.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  797.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  798.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  799.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  800.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  801.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  802.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  803.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  804.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x94,
  805.     0x94,0x94,0x94,0x94,0x94,0x94,0x94,0x93,
  806.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  807.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  808.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  809.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  810.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  811.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  812.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  813.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  814.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  815.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  816.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  817.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  818.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  819.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  820.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x93,
  821.     0x93,0x93,0x93,0x93,0x93,0x93,0x93,0x92,
  822.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  823.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  824.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  825.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  826.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  827.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  828.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  829.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  830.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  831.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  832.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  833.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  834.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  835.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  836.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,
  837.     0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x91,
  838.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  839.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  840.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  841.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  842.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  843.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  844.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  845.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  846.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  847.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  848.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  849.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  850.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  851.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  852.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,
  853.     0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x90,
  854.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  855.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  856.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  857.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  858.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  859.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  860.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  861.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  862.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  863.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  864.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  865.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  866.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  867.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  868.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,
  869.     0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x8f,
  870.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  871.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  872.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  873.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  874.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  875.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  876.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  877.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  878.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  879.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  880.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  881.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  882.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  883.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  884.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  885.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  886.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  887.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  888.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  889.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  890.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  891.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  892.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  893.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  894.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  895.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  896.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  897.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  898.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  899.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  900.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,
  901.     0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8f,0x8e,
  902.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  903.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  904.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  905.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  906.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  907.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  908.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  909.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  910.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  911.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  912.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  913.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  914.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  915.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  916.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  917.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  918.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  919.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  920.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  921.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  922.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  923.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  924.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  925.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  926.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  927.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  928.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  929.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  930.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  931.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  932.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,
  933.     0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8d,
  934.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  935.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  936.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  937.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  938.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  939.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  940.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  941.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  942.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  943.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  944.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  945.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  946.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  947.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  948.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  949.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  950.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  951.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  952.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  953.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  954.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  955.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  956.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  957.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  958.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  959.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  960.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  961.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  962.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  963.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  964.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,
  965.     0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8d,0x8c,
  966.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  967.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  968.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  969.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  970.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  971.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  972.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  973.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  974.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  975.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  976.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  977.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  978.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  979.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  980.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  981.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  982.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  983.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  984.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  985.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  986.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  987.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  988.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  989.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  990.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  991.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  992.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  993.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  994.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  995.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  996.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,
  997.     0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8c,0x8b,
  998.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  999.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1000.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1001.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1002.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1003.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1004.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1005.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1006.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1007.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1008.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1009.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1010.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1011.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1012.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1013.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1014.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1015.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1016.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1017.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1018.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1019.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1020.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1021.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1022.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1023.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1024.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1025.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1026.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1027.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1028.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,
  1029.     0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8b,0x8a,
  1030.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1031.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1032.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1033.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1034.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1035.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1036.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1037.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1038.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1039.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1040.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1041.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1042.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1043.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1044.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1045.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1046.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1047.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1048.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1049.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1050.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1051.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1052.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1053.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1054.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1055.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1056.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1057.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1058.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1059.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1060.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,
  1061.     0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x89,
  1062.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1063.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1064.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1065.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1066.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1067.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1068.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1069.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1070.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1071.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1072.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1073.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1074.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1075.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1076.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1077.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1078.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1079.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1080.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1081.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1082.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1083.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1084.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1085.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1086.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1087.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1088.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1089.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1090.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1091.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1092.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,
  1093.     0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x88,
  1094.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1095.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1096.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1097.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1098.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1099.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1100.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1101.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1102.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1103.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1104.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1105.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1106.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1107.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1108.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1109.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1110.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1111.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1112.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1113.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1114.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1115.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1116.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1117.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1118.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1119.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1120.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1121.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1122.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1123.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1124.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
  1125.     0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x87,
  1126.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1127.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1128.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1129.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1130.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1131.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1132.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1133.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1134.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1135.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1136.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1137.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1138.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1139.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1140.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1141.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1142.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1143.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1144.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1145.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1146.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1147.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1148.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1149.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1150.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1151.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1152.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1153.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1154.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1155.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1156.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x87,
  1157.     0x87,0x87,0x87,0x87,0x87,0x87,0x87,0x86,
  1158.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1159.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1160.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1161.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1162.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1163.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1164.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1165.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1166.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1167.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1168.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1169.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1170.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1171.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1172.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1173.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1174.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1175.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1176.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1177.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1178.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1179.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1180.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1181.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1182.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1183.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1184.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1185.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1186.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1187.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1188.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x86,
  1189.     0x86,0x86,0x86,0x86,0x86,0x86,0x86,0x85,
  1190.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1191.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1192.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1193.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1194.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1195.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1196.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1197.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1198.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1199.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1200.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1201.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1202.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1203.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1204.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1205.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1206.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1207.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1208.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1209.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1210.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1211.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1212.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1213.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1214.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1215.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1216.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1217.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1218.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1219.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1220.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x85,
  1221.     0x85,0x85,0x85,0x85,0x85,0x85,0x85,0x84,
  1222.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1223.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1224.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1225.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1226.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1227.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1228.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1229.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1230.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1231.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1232.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1233.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1234.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1235.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1236.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1237.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1238.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1239.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1240.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1241.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1242.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1243.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1244.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1245.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1246.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1247.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1248.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1249.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1250.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1251.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1252.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,
  1253.     0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,
  1254.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1255.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1256.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1257.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1258.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1259.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1260.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1261.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1262.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1263.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1264.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1265.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1266.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1267.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1268.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1269.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1270.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1271.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1272.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1273.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1274.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1275.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1276.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1277.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1278.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1279.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1280.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1281.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1282.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1283.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1284.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,
  1285.     0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x82,
  1286.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1287.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1288.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1289.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1290.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1291.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1292.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1293.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1294.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1295.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1296.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1297.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1298.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1299.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1300.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1301.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1302.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1303.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1304.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1305.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1306.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1307.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1308.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1309.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1310.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1311.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1312.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1313.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1314.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1315.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1316.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,
  1317.     0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,
  1318.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1319.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1320.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1321.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1322.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1323.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1324.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1325.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1326.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1327.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1328.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1329.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1330.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1331.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1332.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1333.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1334.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1335.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1336.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1337.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1338.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1339.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1340.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1341.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1342.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1343.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1344.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1345.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1346.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1347.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1348.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
  1349.     0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,
  1350.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1351.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1352.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1353.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1354.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1355.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1356.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1357.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1358.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1359.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1360.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1361.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1362.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1363.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1364.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1365.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1366.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1367.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1368.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1369.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1370.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1371.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1372.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1373.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1374.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1375.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1376.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1377.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1378.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1379.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1380.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1381.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1382.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1383.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1384.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1385.     0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
  1386.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1387.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1388.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1389.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1390.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1391.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1392.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1393.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1394.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1395.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1396.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1397.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1398.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1399.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1400.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1401.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1402.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1403.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1404.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1405.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1406.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1407.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1408.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1409.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1410.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1411.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1412.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1413.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1414.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1415.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1416.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1417.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1418.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1419.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1420.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1421.     0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  1422.     0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,
  1423.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1424.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1425.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1426.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1427.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1428.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1429.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1430.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1431.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1432.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1433.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1434.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1435.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1436.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1437.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1438.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1439.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1440.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1441.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1442.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1443.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1444.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1445.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1446.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1447.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1448.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1449.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1450.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1451.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1452.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1453.     0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
  1454.     0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,
  1455.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1456.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1457.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1458.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1459.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1460.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1461.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1462.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1463.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1464.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1465.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1466.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1467.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1468.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1469.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1470.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1471.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1472.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1473.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1474.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1475.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1476.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1477.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1478.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1479.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1480.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1481.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1482.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1483.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1484.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1485.     0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,
  1486.     0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,
  1487.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1488.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1489.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1490.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1491.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1492.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1493.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1494.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1495.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1496.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1497.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1498.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1499.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1500.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1501.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1502.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1503.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1504.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1505.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1506.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1507.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1508.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1509.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1510.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1511.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1512.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1513.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1514.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1515.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1516.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1517.     0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,
  1518.     0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,
  1519.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1520.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1521.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1522.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1523.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1524.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1525.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1526.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1527.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1528.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1529.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1530.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1531.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1532.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1533.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1534.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1535.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1536.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1537.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1538.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1539.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1540.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1541.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1542.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1543.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1544.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1545.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1546.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1547.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1548.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1549.     0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,
  1550.     0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,
  1551.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1552.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1553.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1554.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1555.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1556.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1557.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1558.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1559.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1560.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1561.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1562.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1563.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1564.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1565.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1566.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1567.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1568.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1569.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1570.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1571.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1572.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1573.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1574.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1575.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1576.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1577.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1578.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1579.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1580.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1581.     0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,
  1582.     0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x06,
  1583.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1584.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1585.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1586.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1587.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1588.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1589.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1590.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1591.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1592.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1593.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1594.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1595.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1596.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1597.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1598.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1599.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1600.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1601.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1602.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1603.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1604.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1605.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1606.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1607.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1608.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1609.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1610.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1611.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1612.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1613.     0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,
  1614.     0x06,0x06,0x07,0x07,0x07,0x07,0x07,0x07,
  1615.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1616.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1617.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1618.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1619.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1620.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1621.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1622.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1623.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1624.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1625.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1626.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1627.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1628.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1629.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1630.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1631.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1632.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1633.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1634.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1635.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1636.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1637.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1638.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1639.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1640.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1641.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1642.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1643.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1644.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1645.     0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,
  1646.     0x07,0x07,0x08,0x08,0x08,0x08,0x08,0x08,
  1647.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1648.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1649.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1650.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1651.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1652.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1653.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1654.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1655.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1656.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1657.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1658.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1659.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1660.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1661.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1662.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1663.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1664.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1665.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1666.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1667.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1668.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1669.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1670.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1671.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1672.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1673.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1674.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1675.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1676.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1677.     0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,
  1678.     0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x09,
  1679.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1680.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1681.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1682.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1683.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1684.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1685.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1686.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1687.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1688.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1689.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1690.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1691.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1692.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1693.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1694.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1695.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1696.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1697.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1698.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1699.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1700.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1701.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1702.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1703.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1704.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1705.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1706.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1707.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1708.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1709.     0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,
  1710.     0x09,0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1711.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1712.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1713.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1714.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1715.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1716.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1717.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1718.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1719.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1720.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1721.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1722.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1723.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1724.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1725.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1726.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1727.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1728.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1729.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1730.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1731.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1732.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1733.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1734.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1735.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1736.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1737.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1738.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1739.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1740.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1741.     0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,
  1742.     0x0a,0x0a,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1743.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1744.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1745.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1746.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1747.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1748.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1749.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1750.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1751.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1752.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1753.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1754.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1755.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1756.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1757.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1758.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1759.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1760.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1761.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1762.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1763.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1764.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1765.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1766.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1767.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1768.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1769.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1770.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1771.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1772.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1773.     0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,
  1774.     0x0b,0x0b,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1775.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1776.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1777.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1778.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1779.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1780.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1781.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1782.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1783.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1784.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1785.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1786.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1787.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1788.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1789.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1790.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1791.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1792.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1793.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1794.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1795.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1796.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1797.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1798.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1799.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1800.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1801.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1802.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1803.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1804.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1805.     0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,
  1806.     0x0c,0x0c,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1807.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1808.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1809.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1810.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1811.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1812.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1813.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1814.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1815.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1816.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1817.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1818.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1819.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1820.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1821.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1822.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1823.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1824.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1825.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1826.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1827.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1828.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1829.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1830.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1831.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1832.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1833.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1834.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1835.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1836.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1837.     0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,
  1838.     0x0d,0x0d,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1839.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1840.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1841.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1842.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1843.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1844.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1845.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1846.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1847.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1848.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1849.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1850.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1851.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1852.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1853.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1854.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1855.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1856.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1857.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1858.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1859.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1860.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1861.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1862.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1863.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1864.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1865.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1866.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1867.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1868.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1869.     0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,
  1870.     0x0e,0x0e,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1871.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1872.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1873.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1874.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1875.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1876.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1877.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1878.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1879.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1880.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1881.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1882.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1883.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1884.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1885.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1886.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1887.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1888.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1889.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1890.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1891.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1892.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1893.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1894.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1895.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1896.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1897.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1898.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1899.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1900.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1901.     0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,
  1902.     0x0f,0x0f,0x10,0x10,0x10,0x10,0x10,0x10,
  1903.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1904.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1905.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1906.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1907.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1908.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1909.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1910.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1911.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1912.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1913.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1914.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1915.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1916.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1917.     0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,
  1918.     0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,
  1919.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1920.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1921.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1922.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1923.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1924.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1925.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1926.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1927.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1928.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1929.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1930.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1931.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1932.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1933.     0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
  1934.     0x11,0x11,0x12,0x12,0x12,0x12,0x12,0x12,
  1935.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1936.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1937.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1938.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1939.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1940.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1941.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1942.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1943.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1944.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1945.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1946.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1947.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1948.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1949.     0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,
  1950.     0x12,0x12,0x13,0x13,0x13,0x13,0x13,0x13,
  1951.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1952.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1953.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1954.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1955.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1956.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1957.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1958.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1959.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1960.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1961.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1962.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1963.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1964.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1965.     0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  1966.     0x13,0x13,0x14,0x14,0x14,0x14,0x14,0x14,
  1967.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1968.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1969.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1970.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1971.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1972.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1973.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1974.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1975.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1976.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1977.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1978.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1979.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1980.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1981.     0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
  1982.     0x14,0x14,0x15,0x15,0x15,0x15,0x15,0x15,
  1983.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1984.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1985.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1986.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1987.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1988.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1989.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1990.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1991.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1992.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1993.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1994.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1995.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1996.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1997.     0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,
  1998.     0x15,0x15,0x16,0x16,0x16,0x16,0x16,0x16,
  1999.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2000.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2001.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2002.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2003.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2004.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2005.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2006.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2007.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2008.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2009.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2010.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2011.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2012.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2013.     0x16,0x16,0x16,0x16,0x16,0x16,0x16,0x16,
  2014.     0x16,0x16,0x17,0x17,0x17,0x17,0x17,0x17,
  2015.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2016.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2017.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2018.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2019.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2020.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2021.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2022.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2023.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2024.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2025.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2026.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2027.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2028.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2029.     0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,
  2030.     0x17,0x17,0x18,0x18,0x18,0x18,0x18,0x18,
  2031.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2032.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2033.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2034.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2035.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2036.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2037.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2038.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2039.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2040.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2041.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2042.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2043.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2044.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2045.     0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,
  2046.     0x18,0x18,0x19,0x19,0x19,0x19,0x19,0x19,
  2047.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2048.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2049.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2050.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2051.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2052.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2053.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2054.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2055.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2056.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2057.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2058.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2059.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2060.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2061.     0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
  2062.     0x19,0x19,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2063.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2064.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2065.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2066.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2067.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2068.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2069.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2070.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2071.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2072.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2073.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2074.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2075.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2076.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2077.     0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,
  2078.     0x1a,0x1a,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2079.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2080.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2081.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2082.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2083.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2084.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2085.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2086.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2087.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2088.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2089.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2090.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2091.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2092.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2093.     0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,
  2094.     0x1b,0x1b,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2095.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2096.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2097.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2098.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2099.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2100.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2101.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2102.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2103.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2104.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2105.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2106.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2107.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2108.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2109.     0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,
  2110.     0x1c,0x1c,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2111.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2112.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2113.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2114.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2115.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2116.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2117.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2118.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2119.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2120.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2121.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2122.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2123.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2124.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2125.     0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,
  2126.     0x1d,0x1d,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2127.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2128.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2129.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2130.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2131.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2132.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2133.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2134.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2135.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2136.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2137.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2138.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2139.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2140.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2141.     0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,
  2142.     0x1e,0x1e,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2143.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2144.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2145.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2146.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2147.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2148.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2149.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2150.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2151.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2152.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2153.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2154.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2155.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2156.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2157.     0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,
  2158.     0x1f,0x1f,0x20,0x20,0x20,0x20,0x20,0x20,
  2159.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2160.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2161.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2162.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2163.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2164.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2165.     0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
  2166.     0x20,0x20,0x21,0x21,0x21,0x21,0x21,0x21,
  2167.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2168.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2169.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2170.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2171.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2172.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2173.     0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,
  2174.     0x21,0x21,0x22,0x22,0x22,0x22,0x22,0x22,
  2175.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2176.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2177.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2178.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2179.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2180.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2181.     0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,
  2182.     0x22,0x22,0x23,0x23,0x23,0x23,0x23,0x23,
  2183.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2184.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2185.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2186.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2187.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2188.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2189.     0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,
  2190.     0x23,0x23,0x24,0x24,0x24,0x24,0x24,0x24,
  2191.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2192.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2193.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2194.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2195.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2196.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2197.     0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,
  2198.     0x24,0x24,0x25,0x25,0x25,0x25,0x25,0x25,
  2199.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2200.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2201.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2202.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2203.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2204.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2205.     0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,
  2206.     0x25,0x25,0x26,0x26,0x26,0x26,0x26,0x26,
  2207.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2208.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2209.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2210.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2211.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2212.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2213.     0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  2214.     0x26,0x26,0x27,0x27,0x27,0x27,0x27,0x27,
  2215.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2216.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2217.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2218.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2219.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2220.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2221.     0x27,0x27,0x27,0x27,0x27,0x27,0x27,0x27,
  2222.     0x27,0x27,0x28,0x28,0x28,0x28,0x28,0x28,
  2223.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2224.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2225.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2226.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2227.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2228.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2229.     0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,
  2230.     0x28,0x28,0x29,0x29,0x29,0x29,0x29,0x29,
  2231.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2232.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2233.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2234.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2235.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2236.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2237.     0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,
  2238.     0x29,0x29,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2239.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2240.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2241.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2242.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2243.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2244.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2245.     0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
  2246.     0x2a,0x2a,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2247.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2248.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2249.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2250.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2251.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2252.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2253.     0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
  2254.     0x2b,0x2b,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2255.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2256.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2257.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2258.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2259.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2260.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2261.     0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,
  2262.     0x2c,0x2c,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2263.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2264.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2265.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2266.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2267.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2268.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2269.     0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
  2270.     0x2d,0x2d,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2271.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2272.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2273.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2274.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2275.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2276.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2277.     0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,0x2e,
  2278.     0x2e,0x2e,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2279.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2280.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2281.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2282.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2283.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2284.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2285.     0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,0x2f,
  2286.     0x2f,0x2f,0x30,0x30,0x30,0x30,0x30,0x30,
  2287.     0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  2288.     0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  2289.     0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,
  2290.     0x30,0x30,0x31,0x31,0x31,0x31,0x31,0x31,
  2291.     0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  2292.     0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  2293.     0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x31,
  2294.     0x31,0x31,0x32,0x32,0x32,0x32,0x32,0x32,
  2295.     0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  2296.     0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  2297.     0x32,0x32,0x32,0x32,0x32,0x32,0x32,0x32,
  2298.     0x32,0x32,0x33,0x33,0x33,0x33,0x33,0x33,
  2299.     0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  2300.     0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  2301.     0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  2302.     0x33,0x33,0x34,0x34,0x34,0x34,0x34,0x34,
  2303.     0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  2304.     0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  2305.     0x34,0x34,0x34,0x34,0x34,0x34,0x34,0x34,
  2306.     0x34,0x34,0x35,0x35,0x35,0x35,0x35,0x35,
  2307.     0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  2308.     0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  2309.     0x35,0x35,0x35,0x35,0x35,0x35,0x35,0x35,
  2310.     0x35,0x35,0x36,0x36,0x36,0x36,0x36,0x36,
  2311.     0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  2312.     0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  2313.     0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
  2314.     0x36,0x36,0x37,0x37,0x37,0x37,0x37,0x37,
  2315.     0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  2316.     0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  2317.     0x37,0x37,0x37,0x37,0x37,0x37,0x37,0x37,
  2318.     0x37,0x37,0x38,0x38,0x38,0x38,0x38,0x38,
  2319.     0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  2320.     0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  2321.     0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,
  2322.     0x38,0x38,0x39,0x39,0x39,0x39,0x39,0x39,
  2323.     0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  2324.     0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  2325.     0x39,0x39,0x39,0x39,0x39,0x39,0x39,0x39,
  2326.     0x39,0x39,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2327.     0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2328.     0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2329.     0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,
  2330.     0x3a,0x3a,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2331.     0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2332.     0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2333.     0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,0x3b,
  2334.     0x3b,0x3b,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2335.     0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2336.     0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2337.     0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,0x3c,
  2338.     0x3c,0x3c,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2339.     0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2340.     0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2341.     0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,0x3d,
  2342.     0x3d,0x3d,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2343.     0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2344.     0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2345.     0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,
  2346.     0x3e,0x3e,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2347.     0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2348.     0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2349.     0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,0x3f,
  2350.     0x3f,0x3f,0x40,0x40,0x40,0x40,0x40,0x40,
  2351.     0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,
  2352.     0x40,0x40,0x41,0x41,0x41,0x41,0x41,0x41,
  2353.     0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,
  2354.     0x41,0x41,0x42,0x42,0x42,0x42,0x42,0x42,
  2355.     0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,
  2356.     0x42,0x42,0x43,0x43,0x43,0x43,0x43,0x43,
  2357.     0x43,0x43,0x43,0x43,0x43,0x43,0x43,0x43,
  2358.     0x43,0x43,0x44,0x44,0x44,0x44,0x44,0x44,
  2359.     0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,
  2360.     0x44,0x44,0x45,0x45,0x45,0x45,0x45,0x45,
  2361.     0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,
  2362.     0x45,0x45,0x46,0x46,0x46,0x46,0x46,0x46,
  2363.     0x46,0x46,0x46,0x46,0x46,0x46,0x46,0x46,
  2364.     0x46,0x46,0x47,0x47,0x47,0x47,0x47,0x47,
  2365.     0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,
  2366.     0x47,0x47,0x48,0x48,0x48,0x48,0x48,0x48,
  2367.     0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,
  2368.     0x48,0x48,0x49,0x49,0x49,0x49,0x49,0x49,
  2369.     0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,
  2370.     0x49,0x49,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,
  2371.     0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,
  2372.     0x4a,0x4a,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,
  2373.     0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,
  2374.     0x4b,0x4b,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,
  2375.     0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,
  2376.     0x4c,0x4c,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,
  2377.     0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,
  2378.     0x4d,0x4d,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,
  2379.     0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4e,
  2380.     0x4e,0x4e,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,
  2381.     0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,0x4f,
  2382.     0x4f,0x4f,0x50,0x50,0x50,0x50,0x50,0x50,
  2383.     0x50,0x50,0x51,0x51,0x51,0x51,0x51,0x51,
  2384.     0x51,0x51,0x52,0x52,0x52,0x52,0x52,0x52,
  2385.     0x52,0x52,0x53,0x53,0x53,0x53,0x53,0x53,
  2386.     0x53,0x53,0x54,0x54,0x54,0x54,0x54,0x54,
  2387.     0x54,0x54,0x55,0x55,0x55,0x55,0x55,0x55,
  2388.     0x55,0x55,0x56,0x56,0x56,0x56,0x56,0x56,
  2389.     0x56,0x56,0x57,0x57,0x57,0x57,0x57,0x57,
  2390.     0x57,0x57,0x58,0x58,0x58,0x58,0x58,0x58,
  2391.     0x58,0x58,0x59,0x59,0x59,0x59,0x59,0x59,
  2392.     0x59,0x59,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
  2393.     0x5a,0x5a,0x5b,0x5b,0x5b,0x5b,0x5b,0x5b,
  2394.     0x5b,0x5b,0x5c,0x5c,0x5c,0x5c,0x5c,0x5c,
  2395.     0x5c,0x5c,0x5d,0x5d,0x5d,0x5d,0x5d,0x5d,
  2396.     0x5d,0x5d,0x5e,0x5e,0x5e,0x5e,0x5e,0x5e,
  2397.     0x5e,0x5e,0x5f,0x5f,0x5f,0x5f,0x5f,0x5f,
  2398.     0x5f,0x5f,0x60,0x60,0x60,0x60,0x61,0x61,
  2399.     0x61,0x61,0x62,0x62,0x62,0x62,0x63,0x63,
  2400.     0x63,0x63,0x64,0x64,0x64,0x64,0x65,0x65,
  2401.     0x65,0x65,0x66,0x66,0x66,0x66,0x67,0x67,
  2402.     0x67,0x67,0x68,0x68,0x68,0x68,0x69,0x69,
  2403.     0x69,0x69,0x6a,0x6a,0x6a,0x6a,0x6b,0x6b,
  2404.     0x6b,0x6b,0x6c,0x6c,0x6c,0x6c,0x6d,0x6d,
  2405.     0x6d,0x6d,0x6e,0x6e,0x6e,0x6e,0x6f,0x6f,
  2406.     0x6f,0x6f,0x70,0x70,0x71,0x71,0x72,0x72,
  2407.     0x73,0x73,0x74,0x74,0x75,0x75,0x76,0x76,
  2408.     0x77,0x77,0x78,0x78,0x79,0x79,0x7a,0x7a,
  2409.     0x7b,0x7b,0x7c,0x7c,0x7d,0x7d,0x7e,0x7e};
  2410.