Browse Source

+ changed to png and eps

michael 24 years ago
parent
commit
efe9ed5836

+ 852 - 0
docs/pics/idedlg.eps

@@ -0,0 +1,852 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (idedlg.eps)
+%%CreationDate: (Fri Dec  8 22:19:36 2000)
+%%BoundingBox: 0 0 573 251
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image.  The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+  %
+  % Get a DirectClass packet.
+  %
+  % Parameters:
+  %   red.
+  %   green.
+  %   blue.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+  %
+  % Display a DirectClass image.
+  %
+  systemdict /colorimage known
+  {
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { DirectClassPacket } false 3 colorimage
+  }
+  {
+    %
+    % No colorimage operator;  convert to grayscale.
+    %
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { GrayDirectClassPacket } image
+  } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+  %
+  % Get a DirectClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   red
+  %   green
+  %   blue
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+  %
+  % Display a PseudoClass image.
+  %
+  % Parameters:
+  %   class: 0-PseudoClass or 1-Grayscale.
+  %
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  class 0 gt
+  {
+    currentfile buffer readline pop
+    token pop /depth exch def pop
+    /grays columns 8 add depth sub depth mul 8 idiv string def
+    columns rows depth
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { currentfile grays readhexstring pop } image
+  }
+  {
+    %
+    % Parameters:
+    %   colors: number of colors in the colormap.
+    %   colormap: red, green, blue color packets.
+    %
+    currentfile buffer readline pop
+    token pop /colors exch def pop
+    /colors colors 3 mul def
+    /colormap colors string def
+    currentfile colormap readhexstring pop pop
+    systemdict /colorimage known
+    {
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { PseudoClassPacket } false 3 colorimage
+    }
+    {
+      %
+      % No colorimage operator;  convert to grayscale.
+      %
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { GrayPseudoClassPacket } image
+    } ifelse
+  } ifelse
+} bind def
+
+/DisplayImage
+{
+  %
+  % Display a DirectClass or PseudoClass image.
+  %
+  % Parameters:
+  %   x & y translation.
+  %   x & y scale.
+  %   label pointsize.
+  %   image label.
+  %   image columns & rows.
+  %   class: 0-DirectClass or 1-PseudoClass.
+  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+  %   hex color packets.
+  %
+  gsave
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  x y translate
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  currentfile buffer readline pop
+  token pop /pointsize exch def pop
+  /Helvetica findfont pointsize scalefont setfont
+  x y scale
+  currentfile buffer readline pop
+  token pop /columns exch def
+  token pop /rows exch def pop
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  currentfile buffer readline pop
+  token pop /compression exch def pop
+  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+  grestore
+} bind def
+%%EndProlog
+%%Page:  1 1
+%%PageBoundingBox: 0 0 574 252
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+574 252
+12.000000
+574 252
+1
+0
+0
+9
+000080
+f8fcf8
+c0c0c0
+00fc00
+000000
+808080
+f8fc00
+008080
+008000
+00b001030094010100010101000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+000002000000020100000201000002000000020100000201000002000000020100000201
+0000020000000201000002ff02ff023d02120103020b010302b30103021c010102030103
+021b0103020d01010212010202f102120101020503030205010102b2010102010101021b
+010102050101021a010102010101020c010102040100020d010102f10212010102050303
+0205010102b101010202010102230101021a01010201010102120101020d010102f10201
+010e020101010205030302050101020101a7020701010206010302020105020101010200
+010202020103020501010203010302020102020001010209010102050101020201010201
+0103020201050202010302030101020001010202010302030103020a01d402010101020e
+0101020503030205010102b1010102050101020101010201010102000100020001010201
+010102010101020301010205010102020101020101010202010102000102020901020203
+010102020101020301010203010102040101020101010202010202000101020001010201
+0101020101010201010102de02010101020e0101020503030205010102b1010102050101
+020101010201010102000100020001010201010102010101020301010205010102020105
+0202010202000101020b0101020201010200010002000101020301010203010102040101
+0206010102010101020001050202010102e1020101010201010a02010101020503030205
+0101020101a7020701010202010102000101020101010201010102000100020001010201
+01010201010102030101020501010202010102060101020c010102010101020101010200
+01000200010102030101020301010204010102060101020101010200010102080101020a
+01d202010201010102010101020a0101020503030205010102b201010201010102000101
+020101010201010102000100020001010201010102010101020301010205010102020101
+0201010102020101020c0101020101010202010102000101020401010203010102000101
+020101010201010102020101020101010200010102010101020101010201010102da0101
+02010201010102010101020a0103020303030203010302b3010302020103020201010202
+01010201010402020105020101050201010302020103020c010302030101020001010202
+010502020102020301030202010202010101020101030203010302db0101020102010101
+0201010102e9010102ff024501010201020101010201010102e8010302ff024401010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff0231010102010201010102010101020b04490202048c0202
+044c0202044c0202045c024b010102010201010102010101020b040102450401028d0401
+024d0401024d0401025d0401024b010102010201010102010101020b040102450401028d
+0401024d0401024d0401025d0401024b010102010201010102010101020b040102450401
+028d0401024d0401024d0401025d0401024b010102010201010102010101020b04010245
+0401028d0401024d0401024d0401025d0401024b010102010201010102010101020b0401
+02450401028d0401024d0401024d0401025d0401024b010102010201010102010101020b
+040102450401028d0401024d0401024d0401025d0401024b010102010201010102010101
+020b040102450401028d0401024d0401024d0401025d0401024b01010201020101010201
+0101020b0401020b050302350401020c0503020c0502024c0501021d0401020a06010201
+06010211050202270401020a0605023c0401020c06010223050202050503021d0401024b
+010102010201010102010101020b0401020a05010201050102130500021f0401020b0501
+02010501020c05010243050002070501021d0401020a0601020106010212050102270401
+020b060102010601023b0401020b06030223050102070501021d0401024b010102010201
+010102010101020b0401020a05010201050102120501021f0401020a050102020501020c
+05010242050102270401020a0601020106010212050102270401020b060102010601023b
+0401020a0601020106010222050102070501021d0401024b010102010201010102010101
+020b0401020a050102060601020106010200050402020505020205030202050102020501
+020b0401020a0501020605030203050402020503020b0602020006010201050302020504
+0203050302020502020005010202050302020505020205030203050302020504020d0401
+020a06010201060102020503020205020200050102020504020205030203050302030503
+020d0401020b060102010601020005020200050102020503020205010202050102010503
+020305030202050202000501020c0401020a060102010601020205030203050302030503
+020205050202050402040501020305030202050202000501020c0401024b010102010201
+010102010101020b0401020b050202040601020106010200050102010501020205010208
+05010202050102000501020c0401020a0501020505010201050102010501020105010201
+050102010501020906010201060102010501020105010201050102010501020105010201
+050102020501020005020204050102020501020705010202050102010501020105010201
+0501020c0401020a06010201060102010501020105010202050102000502020105010201
+0501020005010201050102010501020105010201050102010501020c0401020b06040202
+050102000502020005010201050102010501020205010200050102010501020105010201
+05010202050102000502020b0401020a0601020106010201050102010501020105010201
+050102010501020105010201050102000500020005010201050102010501020305010202
+0501020105010202050102000502020b0401024b010102010201010102010101020b0401
+020d050102030601020106010200050102010501020205010205050402030502020d0401
+020a05010205050102010501020105010201050102010505020906010201060102010505
+020105010201050102010505020205020200050102010504020205010207050102020501
+020105010201050102010501020c0401020a060102010601020105050202050202000501
+020105010201050102000501020105010202050102040505020c0401020b060102010601
+020105020200050102000501020105010201050102000500020005010201050102040505
+0202050202000501020b0401020a06050202050102050501020405050201050102000500
+02000501020105010201050102030501020205050202050202000501020b0401024b0101
+02010201010102010101020b0401020a0501020105010202060102010601020005010201
+050102020501020405010201050102030502020d0401020a050102020501020005010201
+0501020105010201050102010501020d0601020106010201050102050501020105010201
+050102060501020405010201050102020501020705010202050102010501020105010201
+0501020c0401020a06010201060102010501020605010205050102010501020005010201
+0501020405010202050102100401020b0601020106010201050102040501020105010201
+05010200050002000501020305010202050102060501020f0401020a0601020106010204
+050102050501020205010205050102000500020005010201050102010501020305010202
+050102060501020f0401024b010102010201010102010101020b0401020a050102010501
+020306030201050102010501020205010200050102010501020105010202050102000501
+020c0401020b050102010501020005010201050102010501020105010201050102010501
+020a06040201050102010501020105010201050102010501020105010202050102040501
+0201050102020501020005010204050102020501020105010201050102010501020c0401
+020b06030202050102010501020205010205050102010501020005010201050102010501
+020105010201050102010501020c0401020b060102010601020105010204050102010501
+02020501020005010201050102010501020105010201050102020501020f0401020a0601
+020106010201050102010501020105010201050102010501020105010201050102000500
+02000501020105010201050102030501020205010201050102020501020f0401024b0101
+02010201010102010101020b0401020b0503020606010201050102010501020305020203
+0502020005010200050102020501020b0401020c05030202050302030502020005010201
+0503020e0601020205030202050102010501020205030202050302040502020005010202
+050202030505020105030202050102010501020c0401020c060102040503020205030203
+050102000502020205030203050302030503020d0401020a060502010503020405030203
+050102000501020205030203050302020503020e0401020a060102010601020205030203
+05030203050302020501020205010200050102000502020205050201050302020503020e
+0401024b010102010201010102010101020b040102150601022d04010232060102010601
+02540401024d0401024d0401025d0401024b010102010201010102010101020b04010212
+0603022e04010233060302550401024d0401024d0401025d0401024b0101020102010101
+02010101020b04010245040102ff02db010102010201010102010101020b040102450401
+02ff02db010102010201010102010101020b04010245040102ff02db0101020102010101
+02010101020b04010245040102ff02db010102010201010102010101020b040102450401
+02ff02db010102010201010102010101020b0401024504ff04d1020b0101020102010101
+02010101020b040102ff02ff02150401020b010102010201010102010101020b040102ff
+02ff02150401020b010102010201010102010101020b040102ff02ff02150401020b0101
+02010201010102010101020b040102ff02ff02150401020b010102010201010102010101
+020b040102ff02ff02150401020b010102010201010102010101020b040102ff02ff0215
+0401020b010102010201010102010101020b040102ff02ff02150401020b010102010201
+010102010101020b04010213040302330403020d04010212040202ff029f0401020b0101
+02010201010102010101020b0401021204010201040102130400021c040102010401020c
+040102040400020d040102ff029f0401020b010102010201010102010101020b04010212
+04010201040102120401021c04010201040102120401020d040102ff029f0401020b0101
+02010201010102010101020b040102120401020604010201040102000404020204050202
+040302020401020204010208040102050401020204010201040302020405020204030203
+040102000401020204030203040302ff028d0401020b010102010201010102010101020b
+040102130402020404010201040102000401020104010202040102080401020204010200
+0401020a0402020304010202040102030401020304010204040102010401020204020200
+04010200040102010401020104010201040102ff028c0401020b01010201020101010201
+0101020b0401021504010203040102010401020004010201040102020401020504040203
+0402020d0401020204010200040002000401020304010203040102040401020604010201
+0401020004050202040102ff028f0401020b010102010201010102010101020b04010212
+040102010401020204010201040102000401020104010202040102040401020104010203
+0402020a0401020104010201040102000400020004010203040102030401020404010206
+040102010401020004010208040102ff028d0401020b010102010201010102010101020b
+040102120401020104010203040302010401020104010202040102000401020104010201
+040102020401020004010209040102010401020204010200040102040401020304010200
+0401020104010201040102020401020104010200040102010401020104010201040102ff
+028c0401020b010102010201010102010101020b04010213040302060401020104010201
+040102030402020304020200040102000401020204010209040302030401020004010202
+040502020402020304030202040202010401020104030203040302ff028d0401020b0101
+02010201010102010101020b0401021d040102ff02f50401020b01010201020101010201
+0101020b0401021a040302ff02f60401020b010102010201010102010101020b0401020a
+07ff07ff020a0401020b010102010201010102010101020b0401020a07090403070b0403
+07090604070b0403070a040207070401070b0403073d040107440403070b040307090405
+0701040507090405070104050709060607090404073c0401070204020707040107030403
+070504010752020a0401020b010102010201010102010101020b0401020a07090401070f
+0401070a060107000601070c0401070b040107070401070a040107010401071b0400071f
+040107440401070f04010709040007000401070004000702040107010401070604000701
+040107010401070104010701040107080601070206010708040107020401073204000707
+04010703040107070401070504010705040107040400074c020a0401020b010102010201
+010102010101020b0401020a07090401070f0401070a060107010601070b0401070b0401
+0714040107010401071a040107660401070f0401070b0401070404010701040107050401
+070104010701040107010401070104010708060107020601070804010701040207310401
+070d0401070f0401070b0401074c020a0401020b010102010201010102010101020b0401
+020a07090401070f0401070a060107010601070104030705040107020401070004020702
+04010700040107020403070e0401070a0403070204010702040107000405070204030702
+04040703040307030403070304030702040407030403070b04030702040407140401070f
+0401070b040107040401070104010704040107020401070104010701040107010401070d
+060107080401070004030709040307030403070204050701040107000402070204030702
+040507020403070304040702040307050401070304030702040507020401070104010740
+020a0401020b010102010201010102010101020b0401020a07090401070f0401070a0601
+070106010700040107010401070404010703040107010401070104020700040107030401
+070d0401070a040107010401070204010700040107020401070404010701040107010401
+070104010701040107010401070404010702040107010401070104010701040107010401
+070104010709040107010401070104010701040107130401070f0401070b040107040404
+070404010703040407020404070d06010709040107000400070004010708040107010401
+070104010701040107010401070004000700040107010401070104010704040107020401
+070704010703040107010401070304010705040107050401070304010705040107010401
+0740020a0401020b010102010201010102010101020b0401020a07090401070f0401070a
+06010701060107000405070404010703040107010401070104010701040107030401070c
+0401070b0405070304020703040107040405070104010701040107020401070704010702
+040107010401070104010701040107020401070c04010701040107010401070104010713
+0401070f0401070b04010704040107060401070404010701040107010401070f0601070a
+040307000401070804010705040107010401070104010700040007000401070104010701
+040107010404070204010707040107030401070104010703040107050401070504010703
+040107050401070104010740020a0401020b010102010201010102010101020b0401020a
+07090401070f0401070a0601070106010700040107080401070304010701040107010401
+0701040107030401070b0401070c04010707040207030401070404010705040107010401
+07040401070504010702040107010401070104010701040107040401070a040107010401
+070104010701040107130401070f0401070b040107040401070504010705040107010401
+07010401070e0601070b0402070104010708040107050401070104010701040107000400
+070004010701040107010401070004010701040107020401070704010703040107010401
+0703040107050401070504010703040107050401070104010740020a0401020b01010201
+0201010102010101020b0401020a07090401070f0401070a060107000601070104010701
+0401070404010703040107010401070104010701040107030401070a0401070104010709
+040107010401070204010700040107020401070004010701040107010401070104010701
+040107010401070104010704040107020401070104010701040107010401070104010701
+04010709040107010401070104010701040107130401070f0401070b0401070404010704
+0401070604010701040107010401070e0601070504020702040107020401070804010701
+040107010401070104010701040107000400070004010701040107010401070004010701
+040107020401070004010704040107030401070104010703040107050401070504010703
+040107000401070304030741020a0401020b010102010201010102010101020b0401020a
+07090403070b040307090604070304030703040507010404070104020701040107010405
+07080405070a040307020401070204010702040207030403070204010701040107020403
+0703040507010403070204010701040107020403070b0403070204010701040107130403
+070b0403070a040307020403070304000706040507010403070d06010705040207030404
+070a04030703040307020401070204010701040407020402070004010702040207030405
+070004010700040207020405070104050701040507020402070604010741020a0401020b
+010102010201010102010101020b0401020a0740040107ff072d0401074704010742020a
+0401020b010102010201010102010101020b0401020a073f040307ff072b040307430403
+0743020a0401020b010102010201010102010101020b0401020a07ff07ff020a0401020b
+010102010201010102010101020b0401020a07090403070b0403070b0603070a04030705
+040107020402079e0403070b040307090404070b0403070a040207070401073d04010702
+0402070704010703040307050401076a020a0401020b010102010201010102010101020b
+0401020a07090401070f0401070a060107010601070b04010705040107030401073e0400
+075e0401070f0401070a040107000401070c0401070b0401070704010734040007070401
+07030401070704010705040107050401070404000764020a0401020b0101020102010101
+02010101020b0401020a07090401070f04010709060107020601070b0401070b0401073d
+0401075e0401070f0401070a040107010401070b0401070b0401073d0401070d0401070f
+0401070b04010764020a0401020b010102010201010102010101020b0401020a07090401
+070f0401070906010710040107030403070304010701040107010403070b040307020401
+070004020702040307020402070004010702040307020405070204030702040207000401
+0702040307440401070f0401070a04010701040107010403070504010702060107000602
+070204010700040107020403070b04030703040307020405070104010700040207020403
+070204050702040307030404070204030705040107030403070204050702040107010401
+0758020a0401020b010102010201010102010101020b0401020a07090401070f04010709
+060107050406070304010705040107030401070004010701040107010401070904010701
+040107020401070104010700040107010401070204010700040207040401070204010704
+0401070104010702040107000402070004010701040107430401070f0401070a04010701
+04010700040107010401070404010703060107010601070104020700040107030401070a
+040107010401070104010701040107010401070004000700040107010401070104010704
+040107020401070704010703040107010401070304010705040107050401070304010705
+0401070104010758020a0401020b010102010201010102010101020b0401020a07090401
+070f04010709060107100401070504010703040307020405070904010701040107020401
+070104010700040507020402070004010701040407020401070404010701040107020402
+070004010701040107460401070f0401070a040107010401070004050704040107030601
+07010601070104010701040107030401070a040107050401070104010701040107000400
+070004010701040107010401070104040702040107070401070304010701040107030401
+07050401070504010703040107050401070104010758020a0401020b0101020102010101
+02010101020b0401020a07090401070f04010709060107020601070b0401070504010703
+04010700040107010401070d040107010401070204010701040107000401070604010704
+040107010401070204010704040107010401070204010707040107440401070f0401070a
+04010701040107000401070804010703060107010601070104010701040107030401070a
+040107050401070104010701040107000400070004010701040107010401070004010701
+040107020401070704010703040107010401070304010705040107050401070304010705
+0401070104010758020a0401020b010102010201010102010101020b0401020a07090401
+070f0401070a060107010601070b04010705040107030401070104010700040107010401
+070904010701040107020401070104010700040107010401070204010704040107010401
+0702040107000401070104010701040107020401070404010701040107430401070f0401
+070a04010700040107010401070104010704040107030601070106010701040107010401
+07030401070a040107010401070104010701040107010401070004000700040107010401
+070104010700040107010401070204010700040107040401070304010701040107030401
+07050401070504010703040107000401070304030759020a0401020b0101020102010101
+02010101020b0401020a07090403070b0403070b0603070a040507010405070004020701
+040107010403070b04030703040407020403070204030704040207000401070204020703
+0403070204030704040307440403070b0403070904040703040307030405070106040701
+040207010401070104050709040307030403070204010702040107010404070204020700
+040107020402070304050700040107000402070204050701040507010405070204020706
+04010759020a0401020b010102010201010102010101020b0401020a0768040107b50601
+0735040107470401075a020a0401020b010102010201010102010101020b0401020a0767
+040307b306030733040307430403075b020a0401020b010102010201010102010101020b
+0401020a07ff07ff020a0401020b010102010201010102010101020b0401020a07090403
+070b0403070a0403072c04020724040207050401075c0403070b0403070b040107040603
+07030403071b04030702040507030401070304050702040307040403070c0401071a0402
+070804010761020a0401020b010102010201010102010101020b0401020a07090401070f
+0401070904010701040107030600072504010700040107030400071d0401070004010704
+04010714040007460401070f0401070a04030705060107050401071a0401070104010701
+040007000401070004000702040307020400070004010700040007030401070404010701
+0401070b0401071b04010708040107130400074c020a0401020b01010201020101010201
+0101020b0401020a07090401070f04010709040107010401070206010725040107050401
+071d0401071d040107460401070f040107090401070104010704060107050401071a0401
+070104010703040107030401070104010703040107050401070304010702040107290401
+071d0401074c020a0401020b010102010201010102010101020b0401020a07090401070f
+04010709040107050605070204030702040107000402070a040307030401070404050702
+04030702040207000401070a04010705040307020402070004010702040307020405070a
+04030702040207000401070104020700040107020403070204020700040107130401070f
+040107090401070104010704060107050401070304030702040107020401070804010707
+04010703040107010401070304010705040107030401070e040307020404070b04030703
+040407030403070204030703040307020405070204030742020a0401020b010102010201
+010102010101020b0401020a07090401070f0401070a0402070406010704040107010401
+0702040107010401070c0401070104040703040107040401070104010702040107000402
+07080404070504010703040107000402070004010701040107020401070c040107010401
+070204010700040207010401070004020700040107010401070204010700040207120401
+070f04010709040107010401070406010705040107020401070104010701040107020401
+070904020705040107030401070104010703040107050401070304010710040107020401
+070104010709040107010401070204010701040107040401070104010701040107010401
+070104010702040107040401070104010741020a0401020b010102010201010102010101
+020b0401020a07090401070f0401070c0401070306010704040107010401070204010701
+040107090404070204010705040107040405070204020700040107090401070704010703
+0402070004010701040107050401070c0405070204020700040107010402070004010700
+040107010401070204020700040107120401070f04010709040507040601070504010702
+040107010401070104010700040007000401070b04010704040107030405070304010705
+040107030401071004010702040107010401070904010701040107020401070104010704
+0401070104050701040107060401070504010744020a0401020b01010201020101010201
+0101020b0401020a07090401070f04010709040107010401070206010704040107010401
+0702040107010401070804010701040107020401070504010704040107060401070d0401
+07070401070304010707040107030401070c040107060401070504010704040107010401
+0702040107160401070f0401070904010701040107040601070504010702040107010401
+070104010700040007000401070804010701040107030401070304010701040107030401
+070504010703040107020401070b04010702040107010401070904010701040107020401
+0701040107040401070104010705040107060401070704010742020a0401020b01010201
+0201010102010101020b0401020a07090401070f04010709040107010401070206010700
+060107010401070104010702040107010401070804010701040107020401070504010700
+0401070104010701040107020401070d0401070704010703040107040401070104010702
+040107000401070904010701040107020401070504010704040107010401070204010716
+0401070f0401070904010701040107040601070504010702040107010401070204010700
+040107090401070104010703040107030401070104010703040107050401070404010701
+0401070b0401070204010701040107090401070104010702040107010401070404010701
+0401070104010701040107010401070204010700040107010401070104010741020a0401
+020b010102010201010102010101020b0401020a07090403070b0403070a040307040602
+0703040307030404070a04020700040107000403070504020703040307020403070b0403
+07040405070004030704040307040402070b040307020403070304030704040307020403
+07150403070b040307090401070104010702060507010405070104030703040107000401
+070a0403070304030702040107010401070204030703040307040403070a040507000401
+07010401070a040307020401070004020701040107010401070204030703040307040402
+070304030742020a0401020b010102010201010102010101020b0401020a0740040107ff
+07540401070104010761020a0401020b010102010201010102010101020b0401020a073f
+040307ff075404030762020a0401020b010102010201010102010101020b0401020a07ff
+07ff020a0401020b010102010201010102010101020b0401020a07090403070104010701
+040107030403070b04010704040307030403071a04030705040107030405070104060700
+0403071e0402070b040307030402070204050703040207240403070b0403070a04030715
+0401075504010782020a0401020b010102010201010102010101020b0401020a07090401
+070304010701040107050401070a04030705040107050401071b04010705040307030401
+0701040107010401070204000701040107200401070a0401070104010701040107000401
+070104000700040107000400070204010700040107230401070f04010709040107010401
+07030400070f0401070c040007360400070f04010782020a0401020b0101020102010101
+02010101020b0401020a0709040107030401070104010705040107090401070104010704
+040107050401071b04010704040107010401070204010701040107010401070504010720
+04010709040107020401070004010702040107020401070304010702040107220401070f
+0401070904010701040107020401071d0401073504010794020a0401020b010102010201
+010102010101020b0401020a070904010704040307060401070904010701040107040401
+070504010703040307020601070206010709040107040401070104010702040107010401
+070104010701040007020401070d04030702040407030404070904010705040107020401
+07020401070304010702040107220401070f040107090401070504050701040207000401
+0702040307030403070204050709060107010601070204030702040207000401070a0403
+0702040507010402070004010702040307020404070304020700040107010403076a020a
+0401020b010102010201010102010101020b0401020a0709040107050401070704010709
+040107010401070404010705040107020401070104010701060107020601070904010704
+040107010401070204040702040407020401071004010701040107010401070104010701
+040107090401070504010702040107020401070304010702040107220401070f0401070a
+040207040401070504010700040207030401070204010701040107020401070c06010701
+060107050401070204010700040207000406070004010701040107020401070504010700
+0402070304010702040107010401070104010701040107010401070104010769020a0401
+020b010102010201010102010101020b0401020a07090401070404030706040107090405
+070404010705040107020401070104010701060107000600070006010709040107020400
+070004050702040107010401070104010701040007020401070204000709040407010401
+070104010701040107010401070904010701040207000401070204010702040107030401
+0702040107220401070f0401070c04010703040107050402070004010703040107020401
+07060401070c060107010601070204040702040207000401070904010705040107050402
+07000401070304010702040107010401070104010701040107020401076c020a0401020b
+010102010201010102010101020b0401020a070904010703040107010401070504010709
+040107010401070404010705040107020401070104010701060107000600070006010709
+040107010401070004010701040107020401070104010701040107050401070104010708
+040107010401070104010701040107010401070104010709040107020401070004010702
+040107020401070304010702040107220401070f04010709040107010401070204010705
+0401070704010702040107060401070c060107010601070104010701040107020401070f
+04010703040107050401070704010702040107010401070104010701040107040401076a
+020a0401020b010102010201010102010101020b0401020a070904010703040107010401
+070504010709040107010401070404010705040107020401070104010702060107000601
+070a04010701040107000401070104010702040107010401070104010702040007010401
+07010401070804010701040107010401070104010701040107010401070a040107010401
+070104010700040107030401070404010700040107230401070f04010709040107010401
+0702040107000401070204010707040107020401070104010702040107000401070a0603
+070204010701040107020401070c04010701040107020401070004010702040107070401
+07020401070104010702040407010401070104010769020a0401020b0101020102010101
+02010101020b0401020a0709040307010401070104010703040307090401070104010702
+040507010405070104030703060107000601070904060700040107010401070104050701
+040607000406070904020700040107000401070104010702040207000401070a04040702
+0402070304030704040207240403070b0403070a04030704040207020403070404050701
+040307040402070c0601070404020700040107000403070c040307040402070204030704
+040507000401070104010705040107020403076a020a0401020b01010201020101010201
+0101020b0401020a07ff07870401070104010771020a0401020b01010201020101010201
+0101020b0401020a07ff078804030772020a0401020b010102010201010102010101020b
+0401020a07ff07ff020a0401020b010102010201010102010101020b0401020a07090403
+070b0403070b040307320403070d0402070c0601070b040307050401074c0403070b0403
+0709040607230402070c040207b9020a0401020b010102010201010102010101020b0401
+020a07090401070f0401070a04010701040107220400070f0401070e0401070c0601070d
+040107050401074c0401070f0401070a040107020400070a040007180401070d04010723
+04000794020a0401020b010102010201010102010101020b0401020a07090401070f0401
+0709040107020401070304010705040107130401070f0401070e0401071c040107540401
+070f0401070a0401070d040107180401070d0401072204010794020a0401020b01010201
+0201010102010101020b0401020a07090401070f0401070904010708040107050401070b
+0403070204050702040107010401070304010703040307030404070a0603070204040705
+0401070304030702040407030403073c0401070f0401070a040107010400070106010702
+0601070004050702040307020404070304040702040307030404070a0403070304010701
+040107000404070204050702040307020401070204010780020a0401020b010102010201
+010102010101020b0401020a07090401070f040107090401070604050701040507080401
+070104010702040107050401070104010703040107020401070104010701040107010401
+070c06010702040107010401070404010705040107020401070104010701040107010401
+073b0401070f0401070a0404070206010700060107020401070404010701040107010401
+070104010701040107010401070104010701040107010401070104010709040107010401
+07020401070104010700040107010401070204010708040107020401070004010781020a
+0401020b010102010201010102010101020b0401020a07090401070f0401070904010708
+040107050401070b04010705040107050401070104010703040107020405070104010701
+0401070c060107020401070104010704040107050401070204010701040107010405073b
+0401070f0401070a04010701040007030602070304010704040507010401070104010701
+040107010401070104050701040107010401070a04010705040107010401070004010701
+04010702040107050404070304020782020a0401020b010102010201010102010101020b
+0401020a07090401070f040107090401070204010703040107050401070d040107030401
+070504010701040107030401070204010705040107010401070c06010702040107010401
+0704040107050401070204010701040107010401073f0401070f0401070a040107060602
+070304010704040107050401070104010701040107010401070104010705040107010401
+070c04010703040107010401070004010701040107020401070404010701040107030402
+0782020a0401020b010102010201010102010101020b0401020a07090401070f0401070a
+040107010401071804010701040107020401070004010703040307040401070204010701
+04010701040107010401070c060107020401070104010704040107050401070204010701
+04010701040107010401073b0401070f0401070a04010702040007010601070006010702
+040107000401070104010701040107010401070104010701040107010401070104010701
+040107010401070104010709040107010401070304030701040107010401070204010700
+0401070104010701040107020401070004010781020a0401020b01010201020101010201
+0101020b0401020a07090403070b0403070b0403071a0403070404020706040107020405
+070104030703040207000401070906050700040107010401070204050701040507000401
+0701040107020403073c0403070b04030709040607000601070206010702040207030403
+070204010701040107020402070004010701040307030402070004010709040307060401
+070104010701040107030402070304020700040107000401070204010780020a0401020b
+010102010201010102010101020b0401020a075a040107fd040107a2020a0401020b0101
+02010201010102010101020b0401020a0757040307fb040307a3020a0401020b01010201
+0201010102010101020b0401020a07ff07ff020a0401020b010102010201010102010101
+020b0401020a07090403070b0403070b040307020403070a0402070d0403070c04030783
+0403070b0403070b04010704040307030403071a04010702040107000401070204010700
+040107010401073c04010772020a0401020b010102010201010102010101020b0401020a
+07090401070f0401070a04010701040107030401070b0401070f0401070b040107010401
+07820401070f0401070a04030705040107050401071a0402070004020700040207000402
+070004010701040107330400070704010772020a0401020b010102010201010102010101
+020b0401020a07090401070f0401070904010702040107030401070b0401070f0401070a
+04010702040107820401070f040107090401070104010704040107050401071a04060700
+0406070004010701040107320401077c020a0401020b010102010201010102010101020b
+0401020a07090401070f0401070904010708040107030403070304040702040307050401
+070a0401070d0605070204030703040307020402070004010702040307030403074c0401
+070f04010709040107010401070404010705040107030403070204010702040107080406
+0700040607010403070b0403070204010700040207020603070204020700040107020403
+0702040507020403070304030702040407030403075a020a0401020b0101020102010101
+02010101020b0401020a07090401070f0401070904010708040107020401070104010702
+0401070104010704040107040401070a0401070d06010700060007000601070404010701
+040107010401070204010700040207000401070104010701040107010401074b0401070f
+040107090401070104010704040107050401070204010701040107010401070204010708
+0401070004000700040107000401070004000700040107020401070b0401070104010702
+040107010401070006010701060107020401070004020704040107020401070704010702
+040107010401070104010701040107010401070104010759020a0401020b010102010201
+010102010101020b0401020a07090401070f040107090401070104020703040107020401
+0701040107020401070104010701040407040401070a0401070d06010700060007000601
+07010404070104010706040207000401070004010701040107020401074e0401070f0401
+070904050704040107050401070204010701040107010401070004000700040107080401
+07020401070004010702040107010403070a040107010401070204010701040107000605
+070204020700040107010404070204010707040107020401070104010701040107010401
+07020401075c020a0401020b010102010201010102010101020b0401020a07090401070f
+040107090401070204010703040107020401070104010702040107010401070004010701
+040107040401070a04010702040107080601070006000700060107000401070104010701
+040107060401070404010701040107040401074c0401070f040107090401070104010704
+040107050401070204010701040107010401070004000700040107080401070204010700
+040107020401070004010701040107090401070104010702040107010401070006010706
+040107040401070104010702040107070401070204010701040107010401070104010704
+0401075a020a0401020b010102010201010102010101020b0401020a07090401070f0401
+070a04010701040107030401070204010701040107020401070104010700040107010401
+07040401070b040107010401070806010700060007000601070004010701040107010401
+070104010702040107040401070104010701040107010401074b0401070f040107090401
+070104010704040107050401070204010701040107020401070004010709040107020401
+070004010702040107000401070104010709040107010401070204010701040107000601
+070106010702040107040401070104010702040107000401070404010702040107010401
+070104010701040107010401070104010759020a0401020b010102010201010102010101
+020b0401020a07090403070b0403070b0404070104050701040307020401070004020702
+04020700040107010405070a040307090601070206010701040207000401070104030702
+04030704040307030403074c0403070b0403070904010701040107020405070104050701
+04030703040107000401070904010702040107000401070204010700040107010401070a
+040307030404070206030702040307040402070004010702040207030405070104030702
+04010701040107020403075a020a0401020b010102010201010102010101020b0401020a
+07ff07600401079c020a0401020b010102010201010102010101020b0401020a07ff075f
+0403079b020a0401020b010102010201010102010101020b040102ff02ff02150401020b
+010102010201010102010101020b040102ff02ff02150401020b01010201020101010201
+0101020b040102ff02ff02150401020b010102010201010102010101020b040102ff02ff
+02150401020b010102010201010102010101020b040102ff02ff02150401020b01010201
+0201010102010101020b040102ff02ff02150401020b010102010201010102010101020b
+040102ff02ff02150401020b010102010201010102010101020b040102ff02ff02150401
+020b010102010201010102010101020b040102ff02ff02150401020b0101020102010101
+02010101020b040102ff02ff02150401020b010102010201010102010101020b040102ff
+02ff02150401020b010102010201010102010101020b040102ff02ff02150401020b0101
+02010201010102010101020b040102ff02ff02150401020b010102010201010102010101
+020b040102ff02ff02150401020b010102010201010102010101020b040102ff02ff0215
+0401020b010102010201010102010101020b040102ff02ff02150401020b010102010201
+010102010101020b040102ff02ff02150401020b010102010201010102010101020b0401
+02ff02ff02150401020b010102010201010102010101020b040102ff02ff02150401020b
+010102010201010102010101020b040102ff02ff02150401020b01010201020101010201
+0101020b040102ff02ff02150401020b010102010201010102010101020b040102ff02ff
+02150401020b010102010201010102010101020b040102ff02ff02150401020b01010201
+0201010102010101020b040102ff02ff02150401020b010102010201010102010101020b
+040102ff02ff02150401020b010102010201010102010101020b040102ff02ff02150401
+020b010102010201010102010101020b040102ff02ff02150401020b0101020102010101
+02010101020b040102ff02ff02150401020b010102010201010102010101020b040102ff
+02ff02150401020b010102010201010102010101020b040102ff02ff02150401020b0101
+02010201010102010101020b040102ff02ff02150401020b010102010201010102010101
+020b040102ff02ff02150401020b010102010201010102010101020b040102ff02ff0215
+0401020b010102010201010102010101020b040102ff02ff02150401020b010102010201
+010102010101020b040102ff02ff02150401020b010102010201010102010101020b0401
+02ff02ff02150401020b010102010201010102010101020b040102ff02ff02150401020b
+010102010201010102010101020b040102ff02ff02150401020b01010201020101010201
+0101020b040102ff02ff02150401020b010102010201010102010101020b040102ff02ff
+02150401020b010102010201010102010101020b040102ff02ff02150401020b01010201
+0201010102010101020b04ff04ff0419020b01010201020101010201010102ff02ff0231
+01010201020101010201010102ff02ff023101010201020101010201010102ff02ff0231
+01010201020101010201010102ff02ff023101010201020101010201010102ff02ff0231
+01010201020101010201010102ff02ff023101010201020101010201010102ff02ff0231
+010102010201010102010101021204030214040202040401020d0401021b0403020d0402
+020b04020205040102ff02a3010102010201010102010101021104010201040102140401
+020404010204040002070401021d0401020e0401020a0401020004010204040102ff02a3
+010102010201010102010101021004010202040102140401020a040102270401020e0401
+020a040102ff02ad01010201020101010201010102100401020604030202040402030404
+02020403020204050202040302030403020206040203040302050401020b040402020403
+020304010205040302020404020304030203040302ff028b010102010201010102010101
+021004010205040102010401020104010201040102010401020104010204040102030401
+02070401020204010201040102010601020106010205040102040401020a040102010401
+020104010201040102010404020504010202040102010401020104010201040102010401
+0201040102ff028a01010201020101010201010102100401020504010201040102010401
+020104010201040102010401020404010203040102070401020204010201040102010601
+020106010202040402040401020a04010201040102010405020204010207040102020401
+02010401020104050202040102ff028d0101020102010101020101010210040102020401
+020004010201040102010401020104010201040102010401020404010203040102070401
+02020401020104010201060102010601020104010201040102040401020a040102010401
+0201040102060401020704010202040102010401020104010208040102ff028b01010201
+020101010201010102110401020104010200040102010401020104010201040102010401
+020104010204040102030401020004010204040102020401020104010201060102010601
+020104010201040102040401020a04010201040102010401020104010202040102070401
+02020401020104010201040102010401020104010201040102ff028a0101020102010101
+020101010212040302020403020204010201040102020402020004010201040502020402
+020304050201040302020601020106010202040202000401020104050209040202000401
+0201040302020403020404050200040102010401020204030203040302ff028b01010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+0201010102010101020800ff00ff020708170208010102010201010102010101020800ff
+00ff020708010403080404010804040308010208010102010201010102010101020800ff
+00ff020708010401080604010806040108010208010102010201010102010101020800ff
+00ff020708010401080604010806040108010208010102010201010102010101020800ff
+00ff020708010401080604010806040108010208010102010201010102010101020800ff
+00ff020708010401080604010806040108010208010102010201010102010101020800ff
+00ff020708010401080604010806040108010208010102010201010102010101020800ff
+00ff020708010401080404050804040108010208010102010201010102010101020800ff
+00ff020708010401080504030805040108010208010102010201010102010101020800ff
+00ff020708010403080404010804040308010208010102010201010102010101020800ff
+00ff020708170208010102010201010102010101020800ff00ff02070817020801010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+020101010201010102ff02ff023101010201020101010201010102ff02ff023101010201
+02010101020101010280083f02b7083f0278010102010201010102010101028008190102
+0802060208010601081802b70809040308220403080a0278010102010201010102010101
+028008180101080001010802060108010601081802b7080804010801040108230401080a
+0278010102010201010102010101028008170101080201010801060108000601081902b7
+080704010802040108230401080a02780101020102010101020101010280081701010802
+01010801060108000601081902b708070401080604030802040408030403080304030805
+0401080a02780101020102010101020101010280081701010802010108010603081a02b7
+080704010809040108010401080104010801040108010401080104010801040108040401
+080a02780101020102010101020101010280081701010802010108010601080006010819
+040702af08070401080604040801040108010401080104010805040508040401080a0407
+027001010201020101010201010102800817010108020101080106010800060108190407
+02af08070401080204010800040108010401080104010801040108010401080504010808
+0401080a0407027001010201020101010201010102800818010108000101080206010801
+06010818040702af08080401080104010800040108010401080104010801040108010401
+08010401080104010801040108040401080a040702700101020102010101020101010280
+0819010208020602080106010818040702af080904030802040208000401080004010801
+04010802040308030403080304050808040702700101020102010101020101010280083f
+040702af083f040702700101020102010101020101010280083f040702af083f04070270
+0101020102010101020101010288043f02b7043f02700101020102010101020101010288
+043f02b7043f02700101020102010101020101010288043f02b7043f0270010102010201
+0101020101010288043f02b7043f02700101020102010101020101010288043f02b7043f
+02700101020102010101020101010288043f02b7043f0270010102010201010102010101
+02ff02ff023101010201020101010201010102ff02ff0231010102010201010102010101
+02ff02ff023101010201020101010201010102ff02ff0231010102010201010102010101
+02ff02ff023101010201020101010201010102ff02ff0231010102010201010102010101
+02ff02ff023101010201020101010201010102ff02ff0231010102010201010102010101
+02ff02ff023101010201020101010201010102ff02ff02310101020102010101020101ff
+01ff013502010201010102ff02ff02390201010102ff02ff0239020101ff01ff013b02ff
+02ff023d02ff02ff023d02ff02ff023d
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 573 251
+%%EOF

BIN
docs/pics/idedlg.gif


BIN
docs/pics/idedlg.png


+ 6789 - 0
docs/pics/idestart.eps

@@ -0,0 +1,6789 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (idestart.eps)
+%%CreationDate: (Sun Nov 12 11:13:02 2000)
+%%BoundingBox: 0 0 880 450
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image.  The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+  %
+  % Get a DirectClass packet.
+  %
+  % Parameters:
+  %   red.
+  %   green.
+  %   blue.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+  %
+  % Display a DirectClass image.
+  %
+  systemdict /colorimage known
+  {
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { DirectClassPacket } false 3 colorimage
+  }
+  {
+    %
+    % No colorimage operator;  convert to grayscale.
+    %
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { GrayDirectClassPacket } image
+  } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+  %
+  % Get a DirectClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   red
+  %   green
+  %   blue
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+  %
+  % Display a PseudoClass image.
+  %
+  % Parameters:
+  %   class: 0-PseudoClass or 1-Grayscale.
+  %
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  class 0 gt
+  {
+    currentfile buffer readline pop
+    token pop /depth exch def pop
+    /grays columns 8 add depth sub depth mul 8 idiv string def
+    columns rows depth
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { currentfile grays readhexstring pop } image
+  }
+  {
+    %
+    % Parameters:
+    %   colors: number of colors in the colormap.
+    %   colormap: red, green, blue color packets.
+    %
+    currentfile buffer readline pop
+    token pop /colors exch def pop
+    /colors colors 3 mul def
+    /colormap colors string def
+    currentfile colormap readhexstring pop pop
+    systemdict /colorimage known
+    {
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { PseudoClassPacket } false 3 colorimage
+    }
+    {
+      %
+      % No colorimage operator;  convert to grayscale.
+      %
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { GrayPseudoClassPacket } image
+    } ifelse
+  } ifelse
+} bind def
+
+/DisplayImage
+{
+  %
+  % Display a DirectClass or PseudoClass image.
+  %
+  % Parameters:
+  %   x & y translation.
+  %   x & y scale.
+  %   label pointsize.
+  %   image label.
+  %   image columns & rows.
+  %   class: 0-DirectClass or 1-PseudoClass.
+  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+  %   hex color packets.
+  %
+  gsave
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  x y translate
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  currentfile buffer readline pop
+  token pop /pointsize exch def pop
+  /Helvetica findfont pointsize scalefont setfont
+  x y scale
+  currentfile buffer readline pop
+  token pop /columns exch def
+  token pop /rows exch def pop
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  currentfile buffer readline pop
+  token pop /compression exch def pop
+  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+  grestore
+} bind def
+%%EndProlog
+%%Page:  1 1
+%%PageBoundingBox: 0 0 881 451
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+881 451
+12.000000
+881 451
+1
+0
+0
+16
+a1a1a1
+000099
+000000
+505050
+e4e4e4
+990000
+787878
+666666
+868686
+996666
+939393
+000000
+000000
+000000
+000000
+000000
+020100250201000402050037020100050201005c03010085020100040205003b02010055
+0205004a0201004a02010016020100430205007002010025020100040205003702010005
+0201005c03010085020100040205003b020100550205004a0201004a0201001602010043
+0205001d06000700020000050700030002020700000f0206000206000300020203000600
+000f07000300020207000005060003000201030007000000020100170507001002010026
+050700080201000e0201001d0a000600030206010800002d0301001e0505090000310800
+09000502090100310201002505040901000e020100330509001b02010026080009000501
+0900080000100201004705000900000609000500001d0201002d05010004050100100201
+001b07000203000502050300000e0206000202060600000e020503000003060002050000
+020100170507001002010026050700080201000e0201001c08000307002d0301001e0506
+0900002f0800050600310201002505060900000d020100330509001b0201002509000505
+0900000f02010047090100060901001d0201002d05010004050100100201001b07000600
+00000201000507000600000107000201000e02010007030006000001060003000201000e
+070006000001070002010003020103000600000006000700000002010017050100080204
+000802010006070003000201030006000019050100090300020103000600020100020204
+0004020700180301080000020a010800000308000600030106000a000003080006000302
+06000a000003030100000800030200040800060003010600080000020301000008000301
+06000a000018050100020900050100020201000302010002020100000700020103000600
+001905010900080000010800090000030300020203000002020100000300020006000000
+030002000700000102010000070002010300060000030204000802010006070003000201
+030006000018050100010800090005010900000307000300020103000600000202010000
+07000201030006000002020100030201000403000201030006000201001a050100070300
+020203000005030002020300000702010005070002020300070000180800050109000001
+090005010800000102010000070002010300060000020207000302040006030002020300
+000302010000070002010300060000030700020203000700001809000500000609010001
+020400040201000007000201030006000004030002010300060002010003030002020300
+000202000300000607000200001605010004050100030700030002010300060000060201
+000402010000070002010300060000110201000a02010005020200050201000d02010005
+0202000a0201000207000201000502010017050100080204000802010005030002050600
+001805010008030002060002020400040207001803010a000008060003050a0000020305
+060000030301060003030003060003050002030106000303060000180501000305010002
+020100030201000202010300020303000018090005000900000803000204030000010201
+030002010301020200010201030002040600000202040008020100050300020506000017
+050100030900050009000002030002050600000102010300020406000001020100030201
+000303000206001a05010006030002040300000303000204030000060201000403000205
+001809000500090000030900050009000001020103000204060000010207000302040005
+030002040300000202010300020303000002030002050018090005000001090005000900
+000109010001020400040201030002030300000303000206000203000204030000010300
+020000010700020003000001030100160501000405010002030002050600000502010004
+020103000204060000100201000806000300020006000005020200050201000c06000200
+0300000502020008060003000200060000020300020007000005020100170501000b0201
+000802010004070002000300060000010300020003000018050100070700020106000000
+0600030002010005020100060201001c0600030108000a0000050800030006000a000001
+06000300060000060800030100030302080000010300000208000301080000010a000800
+000203020a00000008000301001805010001080009000500090000020201000302010002
+020206000000070002010018090005000800000707000200030006000000060003000200
+070000000201030006000201030006000201000102020700000103000200030000050201
+000802010004070002000300060000010300020003000017050100030800050100010700
+020003000600000103000200030000010202070000010300020003000001020100030201
+00020700020106000000060003000201001a050100050700020003000600000006000300
+020007000001070002000300060000000600030002000700000502010004020106000001
+06000700001805010800000308000501000102020700000103000200030000030201000a
+020100040700020003000600000006000300020007000001020206000000070002010002
+020106000001060007000018080005000800000009000500090000010500080000040201
+000402020600000007000201000207000201060000000600030002010001070002000300
+060000000600030002000700000007000200000103000200030000010300070000160501
+000405010001070002000300060000010300020003000005020100040202070000010300
+020003000010020100060202030006000006020200050203070000090300020006000005
+020200060202030006000003020106000700020103000600000002010017050600060201
+000802010004030002000600000302010018050600020300020006000003020100050201
+00060201001d06000302060008000003060003000a000003030100070301000303010a00
+0006060003000800000703010a0000020301001805060800000202010003020100020201
+060000020201001805010008020106000002060002010000020106000000020106000000
+020100010201060000020600020100050201000802010004030002000600000302010017
+050100040501000103000200060000030201000102010600000206000201000102010003
+0201000203000200060000030201001a0501000502010600000206000201000102010600
+000206000201000502010004020103000600001b05010005050100010201060000020600
+020100030201000a02010004020106000002060002010001020106000002020100020201
+03000600001b080005000800000009000501000105000800000402010004020106000002
+020100020300020006000003020100010201060000020600020100000700020006000000
+020007000200000102000600001605080001030002000600000302010005020100040201
+060000020600020100100201000602030700000f02050600000603000200070000100203
+070000030201070002040600020100170506000602010008020100040208001805060002
+0201000402010005020100060201001e0a000800060003020a000001030800020a000600
+030400030301000703010008030100030301001805050800000302010003020100020201
+000302010018050100080201000402010000020100010201000102010001020100040201
+000502010008020100040208001705010004050100010208000102010004020100010201
+000302010002020100040201001a05010005020100040201000102010004020100050201
+000406000203070006000018050100050501000102010004020100030201000a02010004
+020100040201000102010003020100020600020307000600001905000900000005000900
+050008000000050000050201000402010003020100020201000402010001020100040201
+000006000200070006000200000002000601020006000016050800010208000502010004
+020100040201001002010008060003000200070000110600030002000300000503000200
+060000130600030002000700000202010300060000000600030002000300020100170501
+000b02010008020100040208001805010007020100040201000502010006020100210a00
+0600030006000001030800010a00030006000a0000010301000303010007030100080301
+000303010018050100010900050009000003020100030201000202010003020100180501
+080000070201000402010000020100010201000102010001020100040201000502010008
+020100040208001705010003080005000900000102080001020100040201000102010003
+02010002020100040201001a050100050201000402010001020100040201000502010006
+0600030002020700001705010800000308000501000102010004020100030201000a0201
+000402010004020100010201000302010004060003000202070000180500090000000500
+000005000900080009000005020100040201000302010002020100040201000102010004
+020100010200070103000000030007010200001705010004050100010208000502010004
+02010004020100100201000a020100130201000306000200030000170201000202010600
+00030201020100170501000b020100080201000402010600001e05010007020106000003
+0201000502010006020100230301000103010a0000070301000303010003030100070301
+080000070301000303010018050100010800050109000002020100020600020100020201
+000302010018090005000900000702010600000206000201000002010001020100010201
+0001020100030600020003000005020100080201000402010600001d0501000309000500
+090000010201060000070201000306000200030000010201000206000201000202010600
+000206000201001a05010005020106000002060002010001020106000002060002010005
+020100090700020100170900050009000003090005000900000102010003060002000300
+00030201000a020100040201060000020600020100010201000302010007070002010018
+090108000900000009010800090000050201000402010003020100020201060000030201
+000102010600000206000201000103020700000007000300070003000017050100040501
+000102010600000b020100040201000306000200030000100201000a0201001302010003
+0300020000180201000203000200060000030201020100170501000b0201000802010004
+070002000300060000020601001805010007030002000300000106000300020100050201
+000602010700000106000018030008000a0000010a000800030100010800030006000a00
+00020a0100010301080000000a00080003010a0000020301000708000301080000010a00
+080000020301000303010018050100020800050108000001020107000000060002020002
+020100030201001808000501090008000001080009000001070002000300060000000600
+030002000700000002010001020100010201000102010300060000000600020107000005
+020100080201000407000200030006000002060100170501000108000900050108000001
+070002000300060000020601000102010300060000000600020107000001020107000000
+0600020200020300020003000600000006000202001a0501000507000200030006000000
+060003000200070000010700020003000600000006000300020007000005020100040300
+060000020600020100170800050109000001090005010800000102010300060000000600
+020107000003020107000001060000060201000407000200030006000000060003000200
+070000010201000302010002030006000002060002010018090005000901000009000500
+090100050201000402010003020100020300020003000001060003000201000107000200
+030006000000060003000200070000010300020106000000060002000300070000170501
+000405010001070002000300060000020601000502010004020103000600000006000201
+070000100201000507000600000006000300020003000005020200050700060000000600
+0300020003000002030002000700000a0202000507000600000006000300020003000002
+0700020106000001030002000300020100170501000b0201000802010005030002060018
+05070001060002040300020100050201000603000204001803070a000002060003060001
+060003080001030100080600030500020301000303010018050100030900050108000000
+030002030300020100020201000302010019080005060002030002040300000102010001
+020100010201000102060300000602010008020100050300020600170506090000030300
+02060001020603000002030002030300020100020600020403000201001a050100060300
+020403000003030002040300000602010004020607000018090005050900000202060300
+000403000204000602010005030002040300000202010003020100020206070000180900
+050108000000080005010800000502010004020100030201000206000204030002010002
+030002040300000207000201000202010600001705010004050100020300020600050201
+000402060300000e02070002020506000005020200050205060000020207000502020005
+020506000003030002050600020100170501000b02010008020100060700030002020300
+060000180507000206000300020107000000020100050201000606000300020203000018
+0a0008000600030206000a00000408000600030206000a0000020600030106000a010301
+060000010301000908000600030106000800000203010003030100180501000409000500
+090000000600030002010700000002010002020100030201001a08000900050209010003
+030002020300000202010001020100010201000102010600030002010300000702010008
+020100060700030002020300060000170504090008000005070003000202030006000001
+020003000600030002010300000306000300020107000000020100030600030002010700
+00000201001a050100070300020203000005030002020300000702010004060003000202
+03000700001a080009000501090008000003020106000300020103000005060003000202
+030000060201000603000202030000030201000302010002060003000202030007000019
+080005010002050108000005020100040201000302010003060003000201070000000201
+000303000202030000030600020003000002020106000017050100040501000307000300
+02020300060000050201000402010600030002010300000f020700020300020203000600
+000602020005030002020300060000030207000502020005030002020300060000050700
+0202030006000000020100ff004a0201006c06010002070002000300006f020100ce0201
+0069020100ff004a0201006c02060600006f020100ce02010069020100ff004a0201006c
+070003000202030006000070020100ce02010069020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010000020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000002010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+00ff00ff00ff006e02010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100000201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e0201
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010000020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010000020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000002010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010000020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e020100ff00ff00ff006e02010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100000201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff
+00ff006e0201010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010000020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010000020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e020101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000002010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010000020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100000201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020100ff00ff00ff006e0201010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010000
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0001010100010101000001010001010100010101000001010000020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e
+020101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000002010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010000020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100000201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010000020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+0101000001010001010100010101000001010001010100010101000001010000020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e020100ff
+00ff00ff006e020101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000101010001
+010100000101000101010001010100000101000101010001010100000101000002010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+00010101000001010001010100010101000001010000020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff006e02010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100010101000101010000010100010101
+000101010000010100010101000101010000010100000201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020100ff00ff00ff006e0201010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010001010100010101000001010001010100010101000001010001
+010100010101000001010000020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+0000020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e020100ff00ff00ff006e020101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000101010001010100000101000101010001010100000101000101010001010100000101
+000002010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+01010001010100010101000001010001010100010101000001010000020100ff00ff00ff
+006e02010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100010101000101010000
+010100010101000101010000010100010101000101010000010100000201010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010001010100010101000001010001010100010101
+000001010001010100010101000001010000020100ff00ff00ff006e020100ff00ff00ff
+006e02010042020500930305006b030100040305005c0301003405050072020500ff0201
+0019080009000500002502050031090105020900005b030500260a00060003020800003e
+03010004030500310a000600030208000024030100340505002808000900050000060900
+05020900003a020500c20600070002000005060003000202070000050600030002010300
+07000002020700160201000c0507000209000503000f0201000402010010020100260507
+000205050900000e06000300020103000600003d060003000a0000080301000603010012
+030700010a0003050600000f0a000600030206000800003103010026030700010a000305
+0600000c030200030302000c0301002c0900050008000008050100060501001205070002
+090005030005090005040900000d0201002d020100c00700020300040600020503000003
+060002050002020700020201000302010300000a0201000c050700020900080000000501
+000f0201000402010010020100260507000209000800000109000501000d070002050700
+003c03010600000803010006030100120307000106000300060000010a0003010800000d
+0a0003060031030100260307000106000300060000010a0003010800000b03020a000001
+0a000302000c0301002c0501090000080501000605010012050700020900080000000501
+00040800050108000000080005010800000c0201002d020100c007000600000002010004
+030002000300000106000201070000020201030006000000060007000008020007000002
+02010002030002000300000b0201000c0501000b0501000f020100040201000307000300
+02010300060000060201000402010000070002010300060000190501000d0501000c0600
+020107000001070002010600000102010000070002010300060000040700030002010300
+06000002020100000700020103000600001a080003000600030000080301000403070005
+0301000603010007030100030a0003000600000d030106000a0000010a00060000030600
+03020600000203010000060003000a000000060003000800000103010000080003010600
+0a000003030400080301000608000600030106000a00001903010007030100030a000300
+0600000b030106010001080006000301000208000600030206000a000002030100020800
+03010600000308000600030106000a00001a090005000900050000080501000405070005
+050100060501000b050100040900050009000002090005000900000c0201000a03000202
+030000050700030002010300070000030700030002020300060000060201000e02010000
+030002000600000003000200070000030700030002010300060000020201000007000201
+030006000002020100030201008a0201000402010003060002000300000107000201000c
+07000200000302010001070002000300000c0201000c0501000b0501000f020100040201
+0002030002050600000502010004020103000204060000180501000b0800090005000800
+000c03000200070000030700020003000001020103000204060000020300020506000001
+0201030002030300001a06010a0003000800000703010004030700050301000603010007
+030100030a000301000c0800030006000008060003040600000103010600030106010302
+00010301060003040a0000020304000803010005060003050a0000180301000703010003
+0a000301000b03010800030000010600080003010002030506000002030100010a000301
+06000003060003050a000019090108000500090000070501000405070005050100060501
+000b050100040900050008000002080005000900000c0201000903000204030000030300
+020500030205030000060201000e02010300020103010202000203000205060000010201
+0300020303000002020100030201008a0201000402010003060002010001030002000700
+000b06000200070000030201000006000201000d0201000c0501000b0501000f02010004
+020100010700020003000600000103000200030000050201000402020700000103000200
+0300001805010009050209000800000d0201060000030600020100010202070000010300
+020003000001070002000300060000010300020003000001020206000000070002010019
+0a0003000a00000003010007030100060301000903010006030100070600030006000a00
+00000a0006000301000c060003000a0000070800030006000a0000000a00060003000800
+0000030106000a00030106000a0003010001030208000001060003000600000503010008
+030100040800030006000a0000010600030006000018030100070600030006000a000000
+0a0006000301000b03010a0003000a010300000003010006080003010002030100000a00
+0301060000030800030006000a0000010600030006000018080005000800000005010007
+0501000605010009050100060501000b05010004050100040501000c0201000807000200
+030006000000060003000200070000010700020107000001060007000007070002010006
+0201000e0201030006000201030006000201000107000200030006000001030002000300
+0001020206000000070002010002020100030201008a0201000403000200030006000000
+060003000201000102010600070002010300060000060300020000040201000002010600
+000d0201000c050600060501000f02080001030002000600000302010005020100040201
+060000020600020100180506000405030900000d02010005020100010201060000020600
+020100010300020006000003020100010201060000020201001908000300000108000300
+0a000006030100060301000903010006030600020a00030408000301000c030100080301
+0a0000020a000301000003010a00000003010a0000000301000103010a0000020a000301
+00050301000803010004060003000a00000303010018030600020a00030408000301000b
+030100000600080106000000030100070301000203010000060003000600000406000300
+0a0000030301001809000500000109000500080000060501000605010009050100060506
+000605010004050100040501000c02010008020106000002060002010001030002000700
+000d020100060201000e0201060000000201060000000201000103000200060000030201
+000102010600000202010002020100030201008a02010004060002040700020100010201
+070002040600000406000200070000040201030002000600000e0201000c050600060501
+000f0208000102080005020100040201000402010018050600060800090005000900000c
+020100050201000102010004020100010208000102010003020100190300060000010a00
+030006000006030100060301000503090002030600030a000600030108000a000301000c
+030100080301000403010000030100010301000103010001030100040301000503010008
+0301000403080018030600030a000600030108000a000301000b03010000080003000600
+08000000030100020a000600030400020301060003000600000503080018050009000001
+08000500090000060501000605010005050900020506000605010004050100040501000c
+0201000802010004020100010201000906000300020400060201000e0201000102010001
+02010001020800010201000302010002020100030201008a020100050600030002010700
+060002010001020103000600000006000300020003000004030002000005020107000200
+0300000e0201000c0501000b0501000f0201000402010001020800050201000402010004
+020100180501000d0501000c020106000003060002010001020100040201000102080001
+02010003020100180a0003060a0000050301000603010005030900020301000d08000300
+0600000c03010a0000070301000403010000030100010301000103010001030100040301
+00050301000803010004030800180301000d080003000600000b030100000a0003010a00
+0000030100010a00030006000a0000010301000203010800030100050308001708000506
+080000050501000605010005050900020501000b05010004090005000800000208000500
+0900000c0201000802010004020100010201000806000200030006000001020100060201
+000e020100010201000102010001020800010201000302010002020100030201008a0201
+000a07000200030000010201060000030201000307000200070000050201000003000200
+0300000d0201000c0501000b0501000f020100040201000102010600000b020100040201
+000306000200030000180501000d0501000c030002000700000307000200030000010201
+000306000200030000010201060000070201000302010018060003060800000503010006
+03010009030100060301000d03010800000c060003000600000703010a0000020a000301
+0000030100010301000103010001030100030a0003000600000503010008030100040301
+0a00001e0301000d03010800000b03010001060100010301000103010003030100020301
+0000080003000600000403010a00001d0900050609000005050100060501000905010006
+0501000b050100040900050009000002090005000900000c020100080201060000020600
+0201000102010700000702010003020100060201000e0201000102010001020100010201
+0600000702010003020100020201000206000201008a0201000a02010700000103000200
+06000003020100030201000602010001030002000300000c0201000c0501000b0501000f
+020100040201000107000200030006000002060100050201000402010300060000000600
+020107000018050100080900080000000800090005000900000c06000201070000010700
+020106000001020103000600000006000201070000010700020003000600000206010001
+0201000302010018030100030a0003010005030100060301080000010a00000503010006
+0301000808000a0000000a0006000301000d0a00030106000a0000010a00080000010800
+030006000a0000000a000600030008000000030100010301000103010001030106000a00
+00000a0003010800000503010008030100040800030006000a0000020a01001803010008
+08000a0000000a0006000301000c03010005030100010301080000000a00080003010a00
+00010301000106000300060000030800030006000a0000020a0100170501000308000501
+00050501000605010900000108000005050100060501000b050100040800050108000000
+080005010800000c02010008070002000300060000000600030002000700000107000201
+07000001060007000002020107000000060007000201060000050201000e020100010201
+000102010001070002000300060000020601000102010003020100020201070000000600
+0202008a0201000507000600000006000300020100020700020106000001030002000300
+0002070002000300000602010002030002000300000b0201000c050100080507000c0201
+000402010002030002060005020100040206030000190501000805050800000d07000205
+070000020206030000030300020600010201000302010017080003000800000406000300
+0800000403010006060003040005030100060301000803050a00000e0a00030600020600
+030406000001030100010301000103010001030606000006030100080301000506000306
+00180301000803050a00000c030100050301000106000308000003010002060003000600
+000306000306001609000500090000040900050009000004050100060900050400050501
+00060501000805070002090005040900000d020700030300020403000003030002050002
+0300020800040201000e0201000102010001020100020300020600010201000302010002
+030002030300020100870207000202050600000303000205060000020300020006000006
+02010002060002010300000a0201000c050100080507000c020100040201000307000300
+02020300060000050201000402010600030002010300001a050100080900050209000800
+000f06000300020103000600000302010600030002010300000507000300020203000600
+00010201000302010017060003000a0000040800030006000004030100060a0006000302
+06000005030100060301000808000600030106000a0000100a0006000302060008000003
+060003020600000203010001030100010301000103010a00060003010600000703010008
+0301000608000600030206000a0000180301000808000600030106000a00000d03010005
+030100020600030106000a01030106000000030100020a00030106000003080006000302
+06000a000016090005000800000409000500090000040501000608000900050209000005
+050100060501000805070003090005020900000e02070004030002020300000507000300
+020103000700000303000201030006010201030000040201000e02010001020100010201
+000307000300020203000600000102010003020100020600030002010700000002010087
+020700020700030002010300060000050700020203000600000302010007020100030600
+0201030000090201004d0201004a020100a2030100ff00ff002c0201004d0201004a0201
+00a2030100ff00ff002c0201004d0201004a020100a2030100ff00ff002c020100ff00ff
+00ff006e04ff04ff04ff0470
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 880 450
+%%EOF

BIN
docs/pics/idestart.gif


BIN
docs/pics/idestart.png


+ 800 - 0
docs/pics/idewin.eps

@@ -0,0 +1,800 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (idewin.eps)
+%%CreationDate: (Sun Nov 12 11:15:00 2000)
+%%BoundingBox: 0 0 725 305
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image.  The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+  %
+  % Get a DirectClass packet.
+  %
+  % Parameters:
+  %   red.
+  %   green.
+  %   blue.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+  %
+  % Display a DirectClass image.
+  %
+  systemdict /colorimage known
+  {
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { DirectClassPacket } false 3 colorimage
+  }
+  {
+    %
+    % No colorimage operator;  convert to grayscale.
+    %
+    columns rows 8
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { GrayDirectClassPacket } image
+  } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+  %
+  % Get a DirectClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   red
+  %   green
+  %   blue
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile color_packet readhexstring pop pop
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet;  convert to grayscale.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  color_packet 0 get 0.299 mul
+  color_packet 1 get 0.587 mul add
+  color_packet 2 get 0.114 mul add
+  cvi
+  /gray_packet exch def
+  compression 0 gt
+  {
+    /number_pixels 1 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add def
+  } ifelse
+  0 1 number_pixels 1 sub
+  {
+    pixels exch gray_packet put
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+  %
+  % Get a PseudoClass packet.
+  %
+  % Parameters:
+  %   index: index into the colormap.
+  %   length: number of pixels minus one of this color (optional).
+  %
+  currentfile byte readhexstring pop 0 get
+  /offset exch 3 mul def
+  /color_packet colormap offset 3 getinterval def
+  compression 0 gt
+  {
+    /number_pixels 3 def
+  }
+  {
+    currentfile byte readhexstring pop 0 get
+    /number_pixels exch 1 add 3 mul def
+  } ifelse
+  0 3 number_pixels 1 sub
+  {
+    pixels exch color_packet putinterval
+  } for
+  pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+  %
+  % Display a PseudoClass image.
+  %
+  % Parameters:
+  %   class: 0-PseudoClass or 1-Grayscale.
+  %
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  class 0 gt
+  {
+    currentfile buffer readline pop
+    token pop /depth exch def pop
+    /grays columns 8 add depth sub depth mul 8 idiv string def
+    columns rows depth
+    [
+      columns 0 0
+      rows neg 0 rows
+    ]
+    { currentfile grays readhexstring pop } image
+  }
+  {
+    %
+    % Parameters:
+    %   colors: number of colors in the colormap.
+    %   colormap: red, green, blue color packets.
+    %
+    currentfile buffer readline pop
+    token pop /colors exch def pop
+    /colors colors 3 mul def
+    /colormap colors string def
+    currentfile colormap readhexstring pop pop
+    systemdict /colorimage known
+    {
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { PseudoClassPacket } false 3 colorimage
+    }
+    {
+      %
+      % No colorimage operator;  convert to grayscale.
+      %
+      columns rows 8
+      [
+        columns 0 0
+        rows neg 0 rows
+      ]
+      { GrayPseudoClassPacket } image
+    } ifelse
+  } ifelse
+} bind def
+
+/DisplayImage
+{
+  %
+  % Display a DirectClass or PseudoClass image.
+  %
+  % Parameters:
+  %   x & y translation.
+  %   x & y scale.
+  %   label pointsize.
+  %   image label.
+  %   image columns & rows.
+  %   class: 0-DirectClass or 1-PseudoClass.
+  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+  %   hex color packets.
+  %
+  gsave
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  x y translate
+  currentfile buffer readline pop
+  token pop /x exch def
+  token pop /y exch def pop
+  currentfile buffer readline pop
+  token pop /pointsize exch def pop
+  /Helvetica findfont pointsize scalefont setfont
+  x y scale
+  currentfile buffer readline pop
+  token pop /columns exch def
+  token pop /rows exch def pop
+  currentfile buffer readline pop
+  token pop /class exch def pop
+  currentfile buffer readline pop
+  token pop /compression exch def pop
+  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+  grestore
+} bind def
+%%EndProlog
+%%Page:  1 1
+%%PageBoundingBox: 0 0 726 306
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+726 306
+12.000000
+726 306
+1
+0
+0
+16
+000099
+009999
+ffffff
+66ff66
+c9c9c9
+6666cc
+9999cc
+006699
+336666
+339966
+33cc66
+000000
+000000
+000000
+000000
+000000
+001a0204000e020400ff00ff006f0204000e02040018001a0204000e020400ff003a0600
+02020600000605000600020000ff000f0500060002000012020400060901000502040018
+001a02010014020100ff003906000204060000030600020300ff000d0600020300120201
+0008080003010800000702010018001a02010014020100ff003805000201050000000500
+020105000002060005000000020100ff000d060005000000020100120201000708000303
+0800000602010018001a0201000503080005020100f60201000006000201040005000004
+040002020400000302010000060002010400050000030600040002020400050000010201
+000004000200050000000400020006000003060004000201040005000002040002000600
+000206000200040000050201000f02010000060002010400050000030600040002020400
+05000003060002020400060000e302010012020100070a000800030108000a0000060201
+0018001a0201000503080005020100f60201040002030400000304000204040000020201
+040002030400000302050400000102010400020104010202000204000205050000010400
+02000500000205000200040000050201000f020104000204050000020205040000020400
+020500e30201001202010009030100080201001800030212000302010005030800050201
+000302e6000b020205000000060002010002060002000400050000000500040002000600
+000102020500000006000201000706000201000102010400050002010400050002010001
+06000200040005000001040002000400000102010004020100050201000f020206000001
+040002000400000606000201000202010500000105000600000d02d0000402010003020a
+000302010009030100080201000302120001000302120003020100050308000502010003
+02e6000b0201050000020201000202010500000205000201000102010500000202010008
+020100010201050000000201050000000201000104000200050000030201000102010004
+020100050201000f02010500000205000201000702010002020104000500001002d00004
+02010003020a000302010009030100080201000302120001000302010014020100050308
+0005020100f6020100030201000202010004020100010201000302010003050004000204
+00010201000102010001020100010208000102010004020100050201000f020100040201
+00020500040002040002050002030600050000e302010012020100090301000802010014
+02010001000302010000020f000302010005030800050201000302e6000b020100030201
+000202010004020100010201000302010002050002000400050000010201000102010001
+020100010201000102080001040002000500000205000200040000050201000f02010004
+0201000105000200040005000001020100040500040002020600000c02d0000402010003
+020a0003020100090301000802010003020f000002010001000302010000020f00030201
+0005030800050201000302e6000b02010003020100020201050000020500020100010201
+000302010002020100030201000102010001020100010201000102010500000704000200
+0600000206000200040000050201000f0201000305000200040000010201000302010007
+06000201000c02d0000402010003020a0003020100090301000802010003020f00000201
+0001000302010000020100110201000503080005020100f6020100030201000206000200
+040005000000050004000200060000010201000302010002020106000000050006000201
+050000000201000102010001020100010600020004000500000205010001050002010500
+000005000201050000050201000702020004020104000500000005000201060000010201
+06000000050006000201050000010400050000020500020100e202010012020100090301
+0008020100110201000002010001000302010000020100110201000503080005020100f6
+0201000302010003040002040400000202010003020100020400020a0001020100010201
+000204000206000206000204060000030207000402020004020604000002040002080000
+0206060000df0207000f0201000903010008020100110201000002010001000302010000
+020100110201000503080005020100f60201000302010004040002020400000302010003
+020100030400020104000501020104000201000102010001020100030600040002020400
+050000030600020206000004020700040202000402010500040002010400000404000201
+040005010201040000000500040002020400060000e00207000f02010009030100080201
+001102010000020100010003020100000201001102010014020100ff0059020100ff0013
+0201000903010008020100110201000002010001000302010000020100110204000e0204
+00ff0059020100ff00130204000603010005020400110201000002010001000302010000
+020100110204000e020400ff0059020100ff001302040006030100050204001102010000
+02010001000302010000020100ff00ff00c50201000002010001000302010000020100ff
+00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff00ff00c2
+0109000302010000020100ff00ff00c20109000302010000020100ff00ff00c201050700
+0102000302010000020100ff00ff00c201040700000007000101000302010000020100ff
+00ff00c20104000107000101000302010000020100ff00ff00c201030700000207000100
+000302010000020100ff00ff00c20103000307000100000302010000020100ff00ff00c2
+0102070000040100000302010000020100ff00ff00c20101070000050700000302010000
+020100ff00ff00c2010107000006000302010000020100ff00ff00c20100070000070003
+02010000020100ff00ff00c2010007000007000302010000020100ff00ff00c201090003
+02010000020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000
+020100ff00ff00c20109000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00cc000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00cc000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00cc000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00cc0003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc00030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00cc000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00cc0003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00cc000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00cc000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00cc000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00cc000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+0109000302010000020100ff00ff00c20109000302010000020100ff00ff00c201090003
+02010000020100ff00ff00c20109000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20100000800030201
+0000020100ff00ff00c201000008000302010000020100ff00ff00c20109000302010000
+020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff
+00ff00c20109000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00cc000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00cc0003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00cc00030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00cc000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00c20101000101000001010100000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00cc0003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00cc000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00c2010100010100000101010000000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00cc000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c2010100010100000101010000000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201010001
+0100000101010000000302010000020100ff00ff00cc000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c2010100010100000101010000
+000302010000020100ff00ff00c2010100010100000101010000000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00c20101000101000001010100000003020100000201
+00ff00ff00c2010100010100000101010000000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00cc000302010000020100ff00ff00c20101
+00010100000101010000000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c401010001010000010100000302010000020100ff00ff00c2
+010100010100000101010000000302010000020100ff00ff00c201010001010000010101
+0000000302010000020100ff00ff00c401010001010000010100000302010000020100ff
+00ff00c401010001010000010100000302010000020100ff00ff00c20101000101000001
+01010000000302010000020100ff00ff00cc000302010000020100ff00ff00c401010001
+010000010100000302010000020100ff00ff00c201010001010000010101000000030201
+0000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff00c4
+01010001010000010100000302010000020100ff00ff00c4010100010100000101000003
+02010000020100ff00ff00c2010100010100000101010000000302010000020100ff00ff
+00c2010100010100000101010000000302010000020100ff00ff00c40101000101000001
+0100000302010000020100ff00ff00cc000302010000020100ff00ff00c2010100010100
+000101010000000302010000020100ff00ff00c401010001010000010100000302010000
+020100ff00ff00c401010001010000010100000302010000020100ff00ff00c201090003
+02010000020100ff00ff00c20109000302010000020100ff00ff00c20109000302010000
+020100ff00ff00c20109000302010000020100ff00ff00c2010007000007000302010000
+020100ff00ff00c2010007000007000302010000020100ff00ff00c20101070000060003
+02010000020100ff00ff00c20101070000050700000302010000020100ff00ff00c20102
+070000040100000302010000020100ff00ff00c201030003070001000003020100000201
+00ff00ff00c201030700000207000100000302010000020100ff00ff00c2010400010700
+0101000302010000020100ff00ff00c201040700000007000101000302010000020100ff
+00ff00c2010507000102000302010000020100ff00ff00c20109000302010000020100ff
+00ff00c20109000302010000020100ff00ff00c20109000302010000020100ff00ff00c2
+010900030201000002010091010c00010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010c00010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010a0004030100020003020100000201001c020100320206
+00040500040002010400060000100500060002000019010c000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+00010100000101010001010c000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+00010100000101010001010100010100000101010001010a000403010002000302010000
+0201001c040100320206000305000205000e060002030019010a00010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010c00010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010c00040301000200030201
+00000201001906010500040105000601002f02010008020104000500000005000600000e
+06000500000002010019010a000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010100010101000101000001010100010101000101000001010c
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010c000403010002000302010000020100190400020100010201
+0400002f0201000706000201000a02020008020100190108070101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101000008010200010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010007010107
+0004030100020003020100000201001b050000010500003102010007040002000600000a
+020200080201001901060700009c01000008010000ff0075010000020700010500040301
+0002000302010000021a000204030003022b000102030600000402010500060002010400
+05000005020200080201000e020a01030701000601010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010102000801000001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101020004070101020004030100020003
+02010000021a0001060002000501020006000002022b0001020505000002020106000204
+050000100201000e020a0101070100060101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010100000801020001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101000006070101000306000200030201
+001d05000400000104000500003305000400020004000002020104000500000005000400
+020004000010020100190100070000080101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010100000801020001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+0100000101010001010100010100000101010001010000080700030600020003021d000a
+022b000602010002020105000003020100100201000e020a010107000009010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101020008010000010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010200070700
+010000090003021d000a022b0006020100020400020005000003020100100201000e020a
+010307000007010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101020008010000010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+000101000001010100010101000101000001010100010101000101000001010100010101
+00010100000101020005070001020009005a060005000000050004000200040000020600
+020105000001040002000400000402020008020100190105070000030101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010100000801020001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101000003
+070001040009005a02050500000304000205050000040202000502070016010607010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010100010100000101010001
+010100010100000101010001010100010100000101010001010000080102000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+0101000101000001070101050009005a0400020204000500000506000202040005000005
+020200050207001601080701000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010102
+000801000001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+000101010001010100010100000101010001010100010100000101010001010100010100
+00010101000101010001010000010102070101070009009a010a0099010a00ff0075010a
+0009009a010c000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+01010001010100010100000101010001010100010100000101010001010c000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+010100010101000101000001010100010101000101000001010100010101000101000001
+01010001010a0009009a010a000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010100010101000101000001010100010101000101000001010c
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+000101010001010000010101000101010001010000010101000101010001010000010101
+00010101000101000001010c0009009a010a000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+01000001010c000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+010000010101000101010001010000010101000101010001010000010101000101010001
+01000001010100010101000101000001010c0009
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 725 305
+%%EOF

BIN
docs/pics/idewin.gif


BIN
docs/pics/idewin.png


BIN
docs/pics/install.gif


BIN
docs/pics/install.pdf


BIN
docs/pics/install.png


BIN
docs/pics/install1.gif


BIN
docs/pics/install1.pdf


BIN
docs/pics/install1.png


BIN
docs/pics/install2.gif


BIN
docs/pics/install2.pdf


BIN
docs/pics/install2.png