Procházet zdrojové kódy

+ Converted to eps for PostScript

michael před 25 roky
rodič
revize
4da7443dbb

+ 1445 - 0
docs/pics/ide/brklist.eps

@@ -0,0 +1,1445 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (brklist.eps)
+%%CreationDate: (Wed Nov 15 21:35:58 2000)
+%%BoundingBox: 0 0 757 360
+%%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 758 361
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+758 361
+12.000000
+758 361
+1
+0
+0
+9
+000080
+c0c0c0
+00fc00
+f8fcf8
+000000
+008000
+008080
+f8fc00
+00fcf8
+00ff00ff00f501ff01ff01f501ff01ff01f501ff01ff01d40201011e0120020501ff014f
+0301012f030101ff01280203011d01170303010402050104030301fd030501210301011e
+03010110030101100303010703010110030101ff010b0303010402050104030301130117
+0303010402050104030301fd0306012003010131030101100303011a030101ff010b0303
+0103020701030303011301170301010602050106030101fd030101030301011f03010131
+030101120301011a030101ff010b03010108020101080301011301010312010203010106
+020501060301010203ef010a030101030301010103010100030401030303010403040103
+03010102030101020301010003020105030301040303010403010100030201040305010f
+0301010503030106030301040305010b03f9010203010108020101080301010203100101
+0312010203010106020501060301010203ef010a03010103030101010307010203050103
+030501020301010103010103030601030305010303030104030601030305010f03010105
+03030105030501030305010b03f901020301010802010108030101020310010103020112
+0301010602050106030101fd030601020303010503020101030201070301010103010100
+030101040302010103020101030201010302010403010104030201010302010303010112
+03010107030101040301010303010103030101ff010b0301010802010108030101120300
+0101030201120301010602050106030101fd030601020302010603010103030101020306
+010103030105030101030301010103010103030101040301010403010103030101030301
+0112030101070301010403020108030101ff010b03010108020101080301011203000101
+03020101030d010203010106020501060301010203ef010a030101030301010103010107
+030701010307010103020106030101030301010103010103030101040301010403010103
+03010103030101120301010703010105030501040301010e03f901020301010802010108
+03010102030d01010300010103020101030d010203010106020501060301010203ef010a
+030101030301010103010107030701010301010303010101030401040301010303010101
+030101030301010403010104030101030301010303010112030101070301010903020103
+0301010e03f90102030101080201010803010102030d010103000101030201010302010d
+0301010602050106030101fd030101030301010103010107030201060301010303010101
+030101010301010303020101030201010302010103020104030101040301010303010103
+0301011203010107030101040301010303010103030101ff010b03010108020101080301
+010d0302010103000101030201010302010d0301010602050106030101fd030601020301
+010803050102030701010301010203010102030601030305010303050102030101030301
+01030304010d030501030305010303050104030401ff010803010108020101080301010d
+0302010103000101030201010302010d0301010602050106030101fd0305010303010109
+030301040306010103010103030101010301010003020105030301040305010203010103
+030101040303010d030501030305010403030106030301ff010803010108020101080301
+010d0302010103000101030201010302010d03010113030101ff012f030101ff01670301
+0108020101080301010d0302010103000101030201010302010d0303010f030301ff012f
+030101ff01670303010f0303010d0302010103000101030201010302010d0303010f0303
+01ff012f030101ff01670303010f0303010d030201010300010103020101030201ff0155
+030101ff018d030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff010804010111040101ff0115040101110401019a030201010300
+0101030201010302010b0407015e040101100403010504010111040101300401010e0405
+011a04010106040101080401017f0401010f04050141040101100403011d040101040401
+0106040101080401019a0302010103000101030201010302010b0407015e0401010f0405
+010404010111040101300401010e040601220401018a0401010f040501410401010f0405
+011c0401010d040101a50302010103000101030201010302010e040101610401010e0402
+01010402010304010111040101300401010e04010102040201210401018a040101110401
+01430401010e040201010402011b0401010d040101a50302010103000101030201010302
+010e0401010404010103040101010401010004020105040301420401010e040201070405
+01030404010404050104040301240401010e040101030401010304030105040301040403
+0105040501030403010604030103040101000402016a0401011104010106040301030401
+010004020105040301030401010004040103040301100401010e04010109040301030401
+010004020105040201000401010204030105040501030403010604030103040101000402
+01050403017b0302010103000101030201010302010e0401010404010103040101010406
+0103040501410401010f04020106040501030405010304050103040501230401010e0401
+010304010102040501030405010304030105040501030403010504050102040601690401
+011104010105040501020406010304050102040701020405010f0401010e040101080405
+0102040601030406010204030105040501030403010504050102040601030405017a0302
+010103000101030201010302010e04010104040101030401010104020101040201010402
+01010402014004010110040201060401010b040101030401010504020101040201220401
+010e04010102040201010402010104020101040101030401010404010106040101080401
+010404020101040201010402010104020168040101110401010404020101040201010402
+010104020101040201010402010104030105040201010402010e0401010e040101070402
+010104020101040201010402010104020101040201040401010604010108040101040402
+010104020101040201010402010104010103040101790302010103000101030201010302
+010e04010104040101030401010104010103040101010401010304010140040101120401
+010504010106040601030401010504010103040101220401010e04060102040101030401
+010104020109040101060401010804010104040101030401010104010103040101680401
+011104010104040101030401010104010103040101010401010304010101040201060401
+01030401010e0401010e0401010704010103040101010401010304010101040101030401
+0104040101060401010804010104040101030401010104010103040101010402017e0302
+010103000101030201010302010e04010104040101030401010104010103040101010407
+01400401011304010104040101050407010304010105040701220401010e040501030401
+010304010102040501050401010604010108040101040401010304010101040101030401
+016804010111040101040401010304010101040101030401010104010103040101010401
+01070407010e0401010e0401010704010103040101010401010304010101040101030401
+0104040101060401010804010104040101030401010104010103040101020405017a0302
+010103000101030201010302010e04010104040101030401010104010103040101010407
+0140040101130402010304010105040101030401010304010105040701220401010e0401
+010704010103040101060402010404010106040101080401010404010103040101010401
+010304010168040101110401010404010103040101010401010304010101040101030401
+0101040101070407010e0401010e04010107040101030401010104010103040101010401
+010304010104040101060401010804010104040101030401010104010103040101060402
+01790302010103000101030201010302010e040101040402010104020101040201010402
+0101040201450401010e0402010104020103040101050401010304010103040101050402
+01270401010e040101070402010104020101040101030401010404010106040101080401
+010404020101040201010401010304010168040101110401010404020101040201010401
+010304010101040201010402010104010107040201130401010e04020101040201010402
+010104020101040101030401010104020101040201040401010604010108040101040402
+010104020101040101030401010104010103040101790302010103000101030201010302
+010e040101050406010104060103040501410401010f0405010404040102040701030404
+0103040501230401010e0401010804050103040501030405010404040103040501030405
+010204010103040101680401010f04050103040601010401010304010102040501020401
+01080405010f0401010f0405010304050102040101030401010204060102040501040404
+0103040501030405010204010103040101020405017a0302010103000101030201010302
+010e04010106040201000401010104010100040201050403014204010110040301060403
+01030406010404030104040301240401010e040101090403010504030104040501050403
+0103040501040403010304010103040101680401010f0405010404020100040101010401
+010304010103040301030401010904030110040101100403010504030103040101030401
+010304020100040101020405010504030103040501040403010304010103040101030403
+017b0302010103000101030201010302011b040101010401015004010161040101c50401
+011e04010136040101ea0302010103000101030201010302011b04010101040101ff019c
+040201ff01230302010103000101030201010302011604050102040101ff0198040501ff
+01240302010103000101030201010302011604040103040101ff0198040401ff01250302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e50302010103000101030201010302010004ff04ff04e3
+01000302010103000101030201010302010004ff04ff04e3010003020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e50302010103000101030201010302010005ff05ff05e300060101
+030201010302010005ff05ff05e300060101030201010302010005ff05ff05e300060101
+030201010302010005170301052f030105ff05ff0597000601010302010103020100050d
+030405040301050503030519030305070301052503010522030105080303051403010518
+030105040301051203030505030305410301055903010557030105e90006010103020101
+03020100050c0305050c030305190303052f030105220301050803030514030105180301
+0504030105120303050503030541030105010301055503010557030105e9000601010302
+010103020100050c030105120301051b0301052f030105220301050a0301051403010518
+03010504030105140301050703010541030105010301055503010557030105e900060101
+0302010103020100050c0301050603030507030105060303051003010505030305040301
+050003020505030305100301050603030503030105000302050403040503030105000302
+050603010506030305050302050003010518030105040301050003020505030305060301
+0507030105060303050d0301050003020504030405050303050e03010501030105550301
+0557030105e9000601010302010103020100050a03070502030305070301050503050503
+030505050301050503030504030605030305050f03010505030505020306050303050502
+030605050301050503050503030605180301050403060503030505050301050703010505
+0305050c03060503030505030305050d030105010301055503010557030105e900060101
+0302010103020100050a0307050403010507030105040302050103020502030505050301
+0507030105040302050103020501030205010302050e0301050403020501030205010302
+050103020507030105010302050103020504030105040302050103020501030205010302
+051803010504030205010302050103020501030205040301050703010504030205010302
+050b03020501030205070301050103010503030105040301050403010502030105550301
+0557030105e900030601000001010302010103020100050c030105080301050703010504
+030105030301050e03010507030105040301050303010501030105030301050e03010504
+030105030301050103010503030105020306050103010503030105040301050403010503
+030105010301050303010518030105040301050303010501030105030301050403010507
+03010504030105030301050b030105030301050203060501030205090301050403070554
+03010557030105e90002060301010302010103020100050c030105080301050703010504
+0307050e030105070301050403010503030105010307050e030105040307050103010503
+030105010307050103010503030105040301050403070501030105030301051803010504
+0301050303010501030705040301050703010504030105030301050b0301050303010501
+030705020305050c0307055403010557030105e90001060401010302010103020100050c
+0301050803010507030105040307050e030105070301050403010503030105010307050e
+030105040307050103010503030105010301050303010501030105030301050403010504
+030705010301050303010518030105040301050303010501030705040301050703010504
+030105030301050b03010503030105010301050303010506030205100301055503010557
+030105e90000060501010302010103020100050c03010508030105070301050403020513
+030105070301050403010503030105010302051303010504030205060301050303010501
+030105030301050103020501030205040301050403020506030205010302051803010504
+0301050303010501030205090301050703010504030205010302050b0302050103020501
+030105030301050103010503030105100301055503010557030105e90006010103020101
+03020100050c0301050603050503030505030305050d0305050303050502030105030301
+05020305050f030105050305050203010503030105010307050103060503030505030305
+050303060518030105040301050303010502030505030305050303050503030505050301
+0504030605020307050203050505030105090301055503010557030105e9000601010302
+010103020100050c0301050603050503030505040303050e030505030305050203010503
+030105030303051003010506030305030301050303010502030605010301050003020504
+030505040303050503020500030105180301050403010503030105030303050403050503
+030505040303050603010504030105000302050403060503030305060301050903010555
+03010557030105e900060101030201010302010005710301056103010540030105820301
+0557030105e900060101030201010302010005ff0518030105ff05c80006010103020101
+0302010005ff0518030105ff05c800060101030201010302010005ff0518030105ff05c8
+0006010103020101030201ff01ff01e40000060300000600010103020101030201ff01ff
+01e4060300000601010103020101030201ff01ff01e40602000006020101030201010302
+01ff01ff01e4060100000603010103020101030201ff01ff01e406000000060300000101
+03020101030201ff01ff01e40000060300000600010103020101030201ff01ff01e40603
+00000601010103020101030201ff01ff01e4060200000602010103020101030201ff01ff
+01e4060100000603010103020101030201ff01ff01e40600000006030000010103020101
+030201ff01ff01e40000060300000600010103020101030201ff01ff01e4060300000601
+010103020101030201ff01ff01e4060200000602010103020101030201ff01ff01e40601
+00000603010103020101030201ff01ff01e40600000006030000010103020101030201ff
+01ff01e40000060300000600010103020101030201ff01ff01e406030000060101010302
+0101030201ff01ff01e4060200000602010103020101030201ff01ff01e4060100000603
+010103020101030201ff01ff01e40600000006030000010103020101030201ff01ff01e4
+0000060300000600010103020101030201ff01ff01e40603000006010101030201010302
+01ff01ff01e4060200000602010103020101030201ff01ff01e406010000060301010302
+0101030201ff01ff01e40600000006030000010103020101030201ff01ff01e400000603
+00000600010103020101030201ff01ff01e4060300000601010103020101030201ff01ff
+01e4060200000602010103020101030201ff01ff01e40601000006030101030201010302
+01ff01ff01e40600000006030000010103020101030201ff01ff01e40000060300000600
+010103020101030201ff01ff01e4060300000601010103020101030201ff01ff01e40602
+00000602010103020101030201ff01ff01e4060100000603010103020101030201ff01ff
+01e40600000006030000010103020101030201ff01ff01e4000006030000060001010302
+0101030201ff01ff01e4060300000601010103020101030201ff01ff01e4060200000602
+010103020101030201ff01ff01e4060100000603010103020101030201ff01ff01e40600
+000006030000010103020101030201ff01ff01e400000603000006000101030201010302
+01ff01ff01e4060300000601010103020101030201ff01ff01e406020000060201010302
+0101030201ff01ff01e4060100000603010103020101030201ff01ff01e4060000000603
+0000010103020101030201ff01ff01e40000060300000600010103020101030201ff01ff
+01e4060300000601010103020101030201ff01ff01e40602000006020101030201010302
+01ff01ff01e4060100000603010103020101030201ff01ff01e406000000060300000101
+03020101030201ff01ff01e40000060300000600010103020101030201ff01ff01e40603
+00000601010103020101030201ff01ff01e4060200000602010103020101030201ff01ff
+01e4060100000603010103020101030201ff01ff01e40600000006030000010103020101
+030201ff01ff01e40000060300000600010103020101030201ff01ff01e4060300000601
+010103020101030201ff01ff01e4060200000602010103020101030201ff01ff01e40601
+00000603010103020101030201ff01ff01e40600000006030000010103020101030201ff
+01ff01e40000060300000600010103020101030201ff01ff01e406030000060101010302
+0101030201ff01ff01e4060200000602010103020101030201ff01ff01e4060100000603
+010103020101030201ff01ff01e40600000006030000010103020101030201ff01ff01e4
+0000060300000600010103020101030201ff01ff01e40603000006010101030201010302
+01ff01ff01e4060200000602010103020101030201ff01ff01e406010000060301010302
+0101030201ff01ff01e40600000006030000010103020101030201ff01ff01e400000603
+00000600010103020101030201ff01ff01e4060300000601010103020101030201ff01ff
+01e4060200000602010103020101030201ff01ff01e40601000006030101030201010302
+01ff01ff01e40600000006030000010103020101030201ff01ff01e40000060300000600
+010103020101030201ff01ff01e4060300000601010103020101030201ff01ff01e40602
+00000602010103020101030201ff01ff01e4060100000603010103020101030201ff01ff
+01e40600000006030000010103020101030201ff01ff01e4000006030000060001010302
+0101030201ff01ff01e4060300000601010103020101030201ff01ff01e4060200000602
+010103020101030201ff01ff01e4060100000603010103020101030201ff01ff01e40600
+000006030000010103020101030201ff01ff01e400000603000006000101030201010302
+01ff01ff01e4060300000601010103020101030201ff01ff01e406020000060201010302
+0101030201ff01ff01e4060100000603010103020101030201ff01ff01e4060000000603
+0000010103020101030201ff01ff01e40000060300000600010103020101030201ff01ff
+01e4060300000601010103020101030201ff01ff01e40602000006020101030201010302
+01ff01ff01e4060100000603010103020101030201ff01ff01e406000000060300000101
+03020101030201ff01ff01e40000060300000600010103020101030201ff01ff01e40603
+00000601010103020101030201ff01ff01e4060200000602010103020101030201ff01ff
+01e4060100000603010103020101030201ff01ff01e40600000006030000010103020101
+030201ff01ff01e40000060300000600010103020101030201ff01ff01e4060300000601
+010103020101030201ff01ff01e4060200000602010103020101030201ff01ff01e40601
+00000603010103020101030201ff01ff01e40600000006030000010103020101030201ff
+01ff01e40000060300000600010103020101030201ff01ff01e406030000060101010302
+0101030201ff01ff01e4060200000602010103020101030201ff01ff01e4060100000603
+010103020101030201ff01ff01e40600000006030000010103020101030201ff01ff01e4
+0000060300000600010103020101030201ff01ff01e40603000006010101030201010302
+01ff01ff01e4060200000602010103020101030201ff01ff01e406010000060301010302
+0101030201ff01ff01e40600000006030000010103020101030201ff01ff01e400000603
+00000600010103020101030201ff01ff01e4060300000601010103020101030201ff01ff
+01e4060200000602010103020101030201ff01ff01e40601000006030101030201010302
+01ff01ff01e40600000006030000010103020101030201ff01ff01e40000060300000600
+010103020101030201ff01ff01e4060300000601010103020101030201ff01ff01e40602
+00000602010103020101030201ff01ff01e4060100000603010103020101030201ff01ff
+01e40600000006030000010103020101030201ff01ff01e4000006030000060001010302
+0101030201ff01ff01e4060300000601010103020101030201ff01ff01e4060200000602
+010103020101030201ff01ff01e4060100000603010103020101030201ff01ff01e40600
+000006030000010103020101030201ff01ff01e400000603000006000101030201010302
+01ff01ff01e4060300000601010103020101030201ff01ff01e406020000060201010302
+0101030201ff01ff01e4060100000603010103020101030201ff01ff01e4060000000603
+0000010103020101030201ff01ff01e40000060300000600010103020101030201ff01ff
+01e4060300000601010103020101030201ff01ff01e40602000006020101030201010302
+01ff01ff01e4060100000603010103020101030201ff01ff01e406000000060300000101
+03020101030201ff01ff01e40006010103020101030201ff01ff01e40006010103020101
+030201ff01ff01e40006010103020101030201ff01ff01e40006010103020101030201ff
+01ff01e40006010103020101030201ff01ff01e40006010103020101030201ff01ff01e4
+0006010103020101030201ff01ff01e40006010103020101030201ff01ff01e400060101
+03020101030201ff01ff01e400000605010103020101030201ff01ff01e4000106040101
+03020101030201ff01ff01e400020603010103020101030201ff01ff01e4000306010000
+010103020101030201ff01ff01e40006010103020101030201ff01ff01e4000601010302
+0101030201ff01ff01e40006010103020101030201ff01ff01e400060101030201010302
+01ff01ff01e40006010103020101030201ff01ff01e40006010103020101030201ff01ff
+01e400060101030201010302010000140600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000901000302
+010103000101030201010302010000130600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000a01000302
+010103000101030201010302010000070600000b06000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000070100030201010300010103020101030201000006060100020605000106000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000001060100060100030201010300010103020101030201000005
+060200020605000206000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060200050100030201010300
+010103020101030201000004060300020605000106000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000001
+060300040100030201010300010103020101030201000003060400020605000206000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060400030100030201010300010103020101030201000002
+060500020605000106000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000001060500020100030201010300
+010103020101030201000001060600020605000206000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060600010100030201010300010103020101030201000000060700020605000106000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000001060700000100030201010300010103020101030201000001
+060600020605000206000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060600010100030201010300
+010103020101030201000002060500020605000106000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000001
+060500020100030201010300010103020101030201000003060400020605000206000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060400030100030201010300010103020101030201000004
+060300020605000106000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000001060300040100030201010300
+010103020101030201000005060200020605000206000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060200050100030201010300010103020101030201000006060100020605000106000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000001060100060100030201010300010103020101030201000007
+0600000b0600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000007010003020101030001010302
+010103020100001306000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+06000000060000000600000006000000060000000600000a010003020101030001010302
+010103020100001406000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000009010003020101030001010302
+010103020100001306000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+060000000600000006000000060000000600000006000000060000000600000006000000
+06000000060000000600000006000000060000000600000a010003020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+01010302010103020146054f016d054f016d054f016d054f011403020101030001010302
+010103020146054f016d054f016d054f016d054f01140302010103000101030201010302
+0146054f016d054f016d054f016d054f011403020101030001010302010103020146054f
+016d054f016d052b04010521016d054f011403020101030001010302010103020146050c
+0703050408030535016d05140701050307010532016d0514070705070401050404010506
+04010518016d050a0705050e040305100401051801140302010103000101030201010302
+0146050b0705050308030535016d05140702050207010532016d0514070705070401050d
+04010518016d050a0706050d040305100401051801140302010103000101030201010302
+0146050a070205010702050408010535016d05140702050207010532016d05140701050d
+0401050d04010518016d050a070105020702050e04010510040105180114030201010300
+01010302010103020146050a0701050a08010506080305050803050508030516016d0514
+070305010701050304030503040105030401051e016d0514070105090402050004010502
+0403050504050515016d050a070105030701050304030506040105060403050404050504
+0403050c011403020101030001010302010103020146050a0701050a0801050508050503
+0805050308050515016d0514070305010701050204050502040105030401051e016d0514
+07010508040605020403050504050515016d050a07010503070105020405050504010505
+04050503040505030405050b011403020101030001010302010103020146050a0701050a
+08010504080205010802050108010503080105010802050108020514016d051407010500
+07010500070105010402050104020501040105030401051e016d05140705050304020501
+040205040401050604010518016d050a0701050307010501040205010402050404010504
+040205010402050304010505040205010402050a01140302010103000101030201010302
+0146050a0701050a08010504080105030801050108020506080105030801051404090163
+0514070105000701050007010501040105030401050104010500040105000401051e0409
+01630514070505030401050304010504040105060401051804090163050a070105030701
+0501040105030401050404010504040105030401050304010505040105030401050a0409
+010a03020101030001010302010103020146050a0701050a080105040801050308010502
+080505020807051404090163051407010501070305010407050104010500040105000401
+051e040901630514070105070401050304010504040105060401051804090163050a0701
+050307010501040705040401050404070503040105050407050a0409010a030201010300
+01010302010103020146050a0701050a0801050408010503080105060802050108070514
+0409016305140701050107030501040705010407051e0409016305140701050704010503
+04010504040105060401051804090163050a070105030701050104070504040105040407
+0503040105050407050a0409010a03020101030001010302010103020146050a07020501
+070205040801050408020501080205010801050308010501080205190409016305140701
+050207020501040205060407051e04090163051407010507040205010402050404010506
+0401051804090163050a0701050207020501040205090401050404020508040105050402
+050f0409010a03020101030001010302010103020146050b070505030805050308050503
+0805050308050515040901630514070105020702050204050502040205010402051e0409
+016305140707050204060502040505040404051504090163050a07060503040505030405
+050304050504040405030405050b0409010a03020101030001010302010103020146050c
+070305040805050408030505080305050803051604090163051407010503070105030403
+0504040005030400051f0409016305140707050304020500040105020405050504030515
+04090163050a07050505040305040405050404030506040305040403050c0409010a0302
+0101030001010302010103020146054f04090163054f04090163054f04090163054f0409
+010a03020101030001010302010103020146054f04090163054f04090163054f04090163
+054f0409010a03020101030001010302010103020146054f04090163054f04090163054f
+04090163054f0409010a03020101030001010302010103020146054f04090163054f0409
+0163054f04090163054f0409010a03020101030001010302010103020150044f016d044f
+016d044f016d044f010a03020101030001010302010103020150044f016d044f016d044f
+016d044f010a03020101030001010302010103020150044f016d044f016d044f016d044f
+010a03020101030001010302010103020150044f016d044f016d044f016d044f010a0302
+0101030001010302010103020150044f016d044f016d044f016d044f010a030201010300
+01010302010103020150044f016d044f016d044f016d044f010a03020101030001010302
+010103020150044f016d044f016d044f016d044f010a0302010103000101030201010302
+0150044f016d044f016d044f016d044f010a03020101030001010302010103020150044f
+016d044f016d044f016d044f010a03020101030001010302010103020150044f016d044f
+016d044f016d044f010a030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e5030201010300010103020101030201ff01ff
+01e5030201010300010103020101030201ff01ff01e50302010103000101030201010302
+01ff01ff01e5030201010300010103020101030201ff01ff01e503020101030001010302
+0101030201ff01ff01e5030201010300010103020101030201ff01ff01e5030201010300
+010103020101030201ff01ff01e5030201010300010103020101030201ff01ff01e50302
+01010300010103020101030201ff01ff01e802010100010103020101030201ff01ff01e8
+02010100010103020101030201ff01ff01e802010100010103020101030201ff01ff01e8
+02010100010103020101030201ff01ff01e802010100010103020101030201ff01ff01e8
+02010100010103020101030201ff01ff01e80201010001010302010103ff03ff03dd010d
+0201010001010302010103ff03ff03dd020f01000101030201ff01ff01df020f01000101
+030201ff01ff01f0010103ff03ff03e20110010103ff03ff03e2011001ff01ff01f501ff
+01ff01f501ff01ff01f501ff01ff01f501ff01ff01f501ff01ff01f501ff01ff01f5
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 757 360
+%%EOF

+ 615 - 0
docs/pics/ide/calc.eps

@@ -0,0 +1,615 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (calc.eps)
+%%CreationDate: (Wed Nov 15 21:35:59 2000)
+%%BoundingBox: 0 0 376 299
+%%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 377 300
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+377 300
+12.000000
+377 300
+1
+0
+0
+6
+000080
+c0c0c0
+00fc00
+f8fcf8
+008000
+000000
+00ff007801ff017801ff017801ff01780120020501ff0151011703030104020501040303
+015f0303010e0303011903030110030101a0011703030104020501040303015e0305010d
+0303011903030110030101a0011703010106020501060301015d030201010302010e0301
+011b03010110030101a0010103120102030101060205010603010102034f010a03010108
+030401060301010603030103030101030301010403010105030401040305010403030103
+030101000304010a037d010103120102030101060205010603010102034f010a03010108
+030501050301010503050102030101030301010403010105030501030305010303050102
+0307010a037d01010302011203010106020501060301015d0301010d0301010403010104
+030201010302010103010103030101040301010a03010103030101050302010103020101
+0303018c01010302011203010106020501060301015d0301010803060104030101040301
+0107030101030301010403010105030601030301010503010103030101010302018d0101
+03020101030d0102030101060205010603010102034f010a030101070307010403010104
+030101070301010303010104030101040307010303010105030101030301010103010110
+037b0101010103020101030d0102030101060205010603010102034f010a030101070301
+010303010104030101040301010703010103030101040301010403010103030101030301
+0105030101030301010103010110037b01010101030201010302010d0301010602050106
+0301015d0302010103020101030101030301010403010104030201010302010103020101
+030201040301010403010103030101030301010503020101030201010301018903020101
+0101030201010302010d03010106020501060301015e0305010203070102030501030305
+010303060102030501020307010303040103030501020301018903020101010103020101
+0302010d03010106020501060301015f0303010403060102030501040303010503020100
+030101020305010303060104030301040303010303010189030201010101030201010302
+010d03010113030101ff0143030201010101030201010302010d0303010f030301ff0143
+030201010101030201010302010d0303010f030301ff0143030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+030201010101030201010302011400ff003f0114030201010101030201010302011400ff
+003f0114030201010101030201010302011400ff003f0114030201010101030201010302
+011400ff003f0114030201010101030201010302011400ff002e0303000c011403020101
+0101030201010302011400ff002d0305000b0114030201010101030201010302011400ff
+002c030200010302000a0114030201010101030201010302011400ff002c030100030301
+000a0114030201010101030201010302011400ff002c030100030301000a011403020101
+0101030201010302011400ff002c03010000030100000301000a01140302010101010302
+01010302011400ff002c03010000030100000301000a0114030201010101030201010302
+011400ff002c030100030301000a0114030201010101030201010302011400ff002c0301
+00030301000a0114030201010101030201010302011400ff002c030200010302000a0114
+030201010101030201010302011400ff002d0305000b0114030201010101030201010302
+011400ff002e0303000c0114030201010101030201010302011400ff003f011403020101
+0101030201010302011400ff003f0114030201010101030201010302011400ff003f0114
+030201010101030201010302011400ff003f011403020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff01690302010101010302010103020114042701130431
+0113041d0113041d0113041d0113041d011e030201010101030201010302011404270113
+0417050104170113041d0113041d0113041d0113041d011e030201010101030201010302
+0114042701130416050304160113041d0113041d0113041d0113041d011e030201010101
+030201010302011404270113041505010401050104150113041d0113041d0113040a0502
+040f0113041d011e0302010101010302010103020114040a050104030501041401130414
+05000405050004140113040c0503040c0113041d0113040905010400050104000501040b
+0113041d011e0302010101010302010103020114040a05010403050104040501040d0113
+04310113040b0505040b0113040d0501040d0113040905010400050104000501040b0113
+040d0501040d011e0302010101010302010103020114040a05020401050204040501040d
+011304310113040a050204010502040a0113040c0502040d0113040a050204000501040c
+0113040d0501040d011e0302010101010302010103020114040a05020401050204040501
+040d0113040a050104030501040b050104030501040a0113040a050104100113040b0502
+040e0113040e0501040c0113040d0501040d011e0302010101010302010103020114040a
+050704010507040a0113040a050204010502040b050104030501040a0113040a05010410
+0113040a0507040a0113040d0501040d0113040a0507040a011e03020101010103020101
+03020114040a050704010507040a0113040b0505040c050104030501040a0113040a0501
+04100113040a0507040a0113040d0501040d0113040a0507040a011e0302010101010302
+010103020114040a0501040005010400050104040501040d05090109040c0503040d0501
+04030501040a05090109040a0501041005090109040b0502040e05090109040c0501040e
+05090109040d0501040d050901140302010101010302010103020114040a050104000501
+0400050104040501040d05090109040d0501040e050104030501040a05090109040a0501
+041005090109040c0502040d05090109040c0501040e05090109040d0501040d05090114
+0302010101010302010103020114040a05010403050104040501040d05090109040c0503
+040d050104030501040a05090109040a0501041005090109040d0501040d05090109040b
+050104010502040a05090109040d0501040d050901140302010101010302010103020114
+040a050104030501041405090109040b0505040c050204010502040a05090109040a0502
+04010502040a05090109041d05090109040b05010400050104000501040905090109041d
+050901140302010101010302010103020114040a050104030501041405090109040a0502
+04010502040c0506040a05090109040b0505040b05090109041d05090109040a05010401
+050104000501040905090109040a0507040a050901140302010101010302010103020114
+040a050104030501041405090109040a050104030501040d050204000501040a05090109
+040c0503040c05090109041d05090109040a050104020502040a05090109040a0507040a
+05090114030201010101030201010302011404270509010904240501040a05090109041d
+05090109041d05090109041d05090109041d050901140302010101010302010103020114
+04270509010904240501040a05090109041d05090109041d05090109041d05090109041d
+050901140302010101010302010103020114042705090109041f0505040b05090109041d
+05090109041d05090109041d05090109041d050901140302010101010302010103020114
+042705090109041f0504040c05090109041d05090109041d05090109041d05090109041d
+05090114030201010101030201010302011e0527011305310113051d0113051d0113051d
+0113051d0114030201010101030201010302011e0527011305310113051d0113051d0113
+051d0113051d0114030201010101030201010302011e0527011305310113051d0113051d
+0113051d0113051d0114030201010101030201010302011e0527011305310113051d0113
+051d0113051d0113051d0114030201010101030201010302011e0527011305310113051d
+0113051d0113051d0113051d0114030201010101030201010302011e0527011305310113
+051d0113051d0113051d0113051d0114030201010101030201010302011e052701130531
+0113051d0113051d0113051d0113051d0114030201010101030201010302011e05270113
+05310113051d0113051d0113051d0113051d0114030201010101030201010302011e0527
+011305310113051d0113051d0113051d0113051d0114030201010101030201010302011e
+0527011305310113051d0113051d0113051d0113051d0114030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201140427011304310113041d0113041d0113041d
+0113041d011e0302010101010302010103020114042701130417050104170113041d0113
+041d0113041d0113041d011e030201010101030201010302011404270113041605030416
+0113041d0113041d0113041d0113041d011e030201010101030201010302011404270113
+041505010401050104150113041d0113041d0113041d0113041d011e0302010101010302
+010103020114040a05010403050104140113041405000405050004030503040c0113040b
+0506040a0113040c0503040c0113040c0503040c011304100501040a011e030201010101
+0302010103020114040a05010403050104140113041f0505040b0113040b0506040a0113
+040b0505040b0113040b0505040b011304100501040a011e030201010101030201010302
+0114040a05020401050204140113041e050204010502040a011304100501040a0113040a
+050204010502040a0113040a050204010502040a0113040f0501040b011e030201010101
+0302010103020114040a05020401050204140113040a05010403050104110501040a0113
+040f0501040b0113040a050104030501040a0113040a050104030501040a0113040f0501
+040b011e0302010101010302010103020114040a050704020505040b0113040a05020401
+050204100502040a0113040e0501040c0113040b050104010501040b0113040a05020401
+0502040a0113040e0501040c011e0302010101010302010103020114040a050704020505
+040b0113040b050504100502040b0113040d0501040d0113040c0503040c0113040b0506
+040a0113040e0501040c011e0302010101010302010103020114040a0501040005010400
+0501041405090109040c050304100502040c05090109040d0501040d05090109040b0505
+040b05090109040c050204000501040a05090109040d0501040d05090114030201010101
+0302010103020114040a05010400050104000501041405090109040d050104100502040d
+05090109040d0501040d05090109040a050204010502040a0509010904100501040a0509
+0109040d0501040d050901140302010101010302010103020114040a0501040305010414
+05090109040c0503040e0502040e05090109040d0501040d05090109040a050104030501
+040a0509010904100501040a05090109040c0501040e0509011403020101010103020101
+03020114040a050104030501041405090109040b0505040c0502040f05090109040d0501
+040d05090109040a050204010502040a05090109040a050204010502040a05090109040c
+0501040e050901140302010101010302010103020114040a050104030501041405090109
+040a050204010502040b0507040a05090109040d0501040d05090109040b0505040b0509
+0109040b0505040b05090109040b0501040f050901140302010101010302010103020114
+040a050104030501041405090109040a050104030501040b0507040a05090109040d0501
+040d05090109040c0503040c05090109040c0503040c05090109040b0501040f05090114
+0302010101010302010103020114042705090109043105090109041d05090109041d0509
+0109041d05090109040a0501041005090114030201010101030201010302011404270509
+0109043105090109041d05090109041d05090109041d05090109040a0501041005090114
+0302010101010302010103020114042705090109043105090109041d05090109041d0509
+0109041d05090109041d0509011403020101010103020101030201140427050901090431
+05090109041d05090109041d05090109041d05090109041d050901140302010101010302
+01010302011e0527011305310113051d0113051d0113051d0113051d0114030201010101
+030201010302011e0527011305310113051d0113051d0113051d0113051d011403020101
+0101030201010302011e0527011305310113051d0113051d0113051d0113051d01140302
+01010101030201010302011e0527011305310113051d0113051d0113051d0113051d0114
+030201010101030201010302011e0527011305310113051d0113051d0113051d0113051d
+0114030201010101030201010302011e0527011305310113051d0113051d0113051d0113
+051d0114030201010101030201010302011e0527011305310113051d0113051d0113051d
+0113051d0114030201010101030201010302011e0527011305310113051d0113051d0113
+051d0113051d0114030201010101030201010302011e0527011305310113051d0113051d
+0113051d0113051d0114030201010101030201010302011e0527011305310113051d0113
+051d0113051d0113051d011403020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201140427011304310113041d0113041d0113041d0113041d011e030201010101
+03020101030201140427011304310113041d0113041d0113041d0113041d011e03020101
+010103020101030201140427011304310113041d0113041d0113041d0113041d011e0302
+0101010103020101030201140427011304310113041d0113041d0113041d0113041d011e
+0302010101010302010103020114040a05010403050104140113040d0501040a05010414
+0113040b0501040f0113040a0507040a0113040c0503040c0113041d011e030201010101
+0302010103020114040a05010403050104040501040d0113040b0503040a050104140113
+040b050104010501040b0113040a0507040a0113040b0505040b0113041d011e03020101
+01010302010103020114040a05020401050204040502040c0113040b0503040905010415
+0113040b050104010501040b0113040a050104100113040a050204010502040a0113041d
+011e0302010101010302010103020114040a05020401050204050502040b0113040d0501
+040905010402050104030501040a0113040b050104010501040b0113040a050104100113
+040a050104100113040a050104030501040a011e0302010101010302010103020114040a
+050704010507040a0113040d0501040805010403050204010502040a0113040b05010401
+0501040b0113040a0505040c0113040a050104100113040b050104010501040b011e0302
+010101010302010103020114040a050704010507040a0113040d05010408050104040505
+040b0113040a050104020501040b0113040a0506040b0113040a050104000502040c0113
+040c0503040c011e0302010101010302010103020114040a050104000501040005010405
+0502040b05090109040d05010407050104060503040c05090109040a0507040a05090109
+040f0502040a05090109040a0506040b05090109040a0507040a05090114030201010101
+0302010103020114040a0501040005010400050104040502040c05090109040d05010407
+050104070501040d05090109040a0507040a0509010904100501040a05090109040a0502
+04010502040a05090109040c0503040c050901140302010101010302010103020114040a
+05010403050104040501040d05090109040d05010406050104070503040c05090109040f
+0501040b0509010904100501040a05090109040a050104030501040a05090109040b0501
+04010501040b050901140302010101010302010103020114040a05010403050104140509
+0109040d05010406050104060505040b05090109040f0501040b05090109040a05020401
+0502040a05090109040a050204010502040a05090109040a050104030501040a05090114
+0302010101010302010103020114040a050104030501041405090109040d050104050501
+0406050204010502040a05090109040f0501040b05090109040b0505040b05090109040b
+0505040b05090109041d050901140302010101010302010103020114040a050104030501
+041405090109040d0501040505010406050104030501040a05090109040f0501040b0509
+0109040c0503040c05090109040c0503040c05090109041d050901140302010101010302
+01010302011404270509010904140501041a05090109041d05090109041d05090109041d
+05090109041d05090114030201010101030201010302011404270509010904140501041a
+05090109041d05090109041d05090109041d05090109041d050901140302010101010302
+010103020114042705090109043105090109041d05090109041d05090109041d05090109
+041d050901140302010101010302010103020114042705090109043105090109041d0509
+0109041d05090109041d05090109041d05090114030201010101030201010302011e0527
+011305310113051d0113051d0113051d0113051d0114030201010101030201010302011e
+0527011305310113051d0113051d0113051d0113051d0114030201010101030201010302
+011e0527011305310113051d0113051d0113051d0113051d011403020101010103020101
+0302011e0527011305310113051d0113051d0113051d0113051d01140302010101010302
+01010302011e0527011305310113051d0113051d0113051d0113051d0114030201010101
+030201010302011e0527011305310113051d0113051d0113051d0113051d011403020101
+0101030201010302011e0527011305310113051d0113051d0113051d0113051d01140302
+01010101030201010302011e0527011305310113051d0113051d0113051d0113051d0114
+030201010101030201010302011e0527011305310113051d0113051d0113051d0113051d
+0114030201010101030201010302011e0527011305310113051d0113051d0113051d0113
+051d011403020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201140427
+011304310113041d0113041d0113041d0113041d011e0302010101010302010103020114
+0427011304310113041d0113041d0113041d0113041d011e030201010101030201010302
+01140427011304310113041d0113041d0113041d0113041d011e03020101010103020101
+030201140427011304310113041d0113041d0113041d0113041d011e0302010101010302
+010103020114040a0501040305010414011304310113040d0501040d0113040c0503040c
+0113040c0503040c0113041d011e0302010101010302010103020114040a050104030501
+04040501040d011304310113040b0503040d0113040b0505040b0113040b0505040b0113
+041d011e0302010101010302010103020114040a05020401050204030502040d01130431
+0113040b0503040d0113040a050204010502040a0113040a050204010502040a0113041d
+011e0302010101010302010103020114040a05020401050204020502040e0113040c0503
+04050502040005010401050104000504040a0113040d0501040d011304100501040a0113
+04100501040a0113041d011e0302010101010302010103020114040a050704010507040a
+0113040b05050403050604010507040a0113040d0501040d0113040f0502040a0113040f
+0501040b0113040b0505040b011e0302010101010302010103020114040a050704010507
+040a0113040a050104030501040105020401050204010503040e0113040d0501040d0113
+040e0502040b0113040d0502040c0113040b0505040b011e030201010101030201010302
+0114040a0501040005010400050104020502040e05090109040a05020406050104030501
+04010502040f05090109040d0501040d05090109040d0502040c05090109040d0503040b
+05090109041d050901140302010101010302010103020114040a05010400050104000501
+04030502040d05090109040b0505040205010403050104010501041005090109040d0501
+040d05090109040c0502040d05090109040f0502040a05090109041d0509011403020101
+01010302010103020114040a05010403050104040501040d05090109040f050204010501
+0403050104010501041005090109040d0501040d05090109040b0502040e050901090410
+0501040a05090109041d050901140302010101010302010103020114040a050104030501
+041405090109040a050104030501040105020401050204010501041005090109040d0501
+040d05090109040a0502040f05090109040a050204010502040a05090109041d05090114
+0302010101010302010103020114040a050104030501041405090109040b050504030506
+04010501041005090109040d0501040d05090109040a0507040a05090109040b0505040b
+05090109041d050901140302010101010302010103020114040a05010403050104140509
+0109040c0503040505020400050104010501041005090109040d0501040d05090109040a
+0507040a05090109040c0503040c05090109041d05090114030201010101030201010302
+0114042705090109041a0501041405090109041d05090109041d05090109041d05090109
+041d050901140302010101010302010103020114042705090109041a0501041405090109
+041d05090109041d05090109041d05090109041d05090114030201010101030201010302
+0114042705090109041a0501041405090109041d05090109041d05090109041d05090109
+041d050901140302010101010302010103020114042705090109041a0501041405090109
+041d05090109041d05090109041d05090109041d05090114030201010101030201010302
+011e0527011305310113051d0113051d0113051d0113051d011403020101010103020101
+0302011e0527011305310113051d0113051d0113051d0113051d01140302010101010302
+01010302011e0527011305310113051d0113051d0113051d0113051d0114030201010101
+030201010302011e0527011305310113051d0113051d0113051d0113051d011403020101
+0101030201010302011e0527011305310113051d0113051d0113051d0113051d01140302
+01010101030201010302011e0527011305310113051d0113051d0113051d0113051d0114
+030201010101030201010302011e0527011305310113051d0113051d0113051d0113051d
+0114030201010101030201010302011e0527011305310113051d0113051d0113051d0113
+051d0114030201010101030201010302011e0527011305310113051d0113051d0113051d
+0113051d0114030201010101030201010302011e0527011305310113051d0113051d0113
+051d0113051d011403020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01140427011304310113041d0113041d0113041d0113041d011e03020101010103020101
+030201140427011304310113041d0113041d0113041d0113041d011e0302010101010302
+0101030201140427011304310113041d0113041d0113041d0113041d011e030201010101
+03020101030201140427011304310113041d0113041d0113041d0113041d011e03020101
+01010302010103020114040a05010403050104140113040b050304210113040c0503040c
+0113041d0113041d0113041d011e0302010101010302010103020114040a050104030501
+04140113040b050304210113040b0505040b0113041d0113041d0113040d0501040d011e
+0302010101010302010103020114040a05020401050204140113040d050104210113040a
+050204010502040a0113041d0113041d0113040d0501040d011e03020101010103020101
+03020114040a0502040105020403050004010500040c0113040d05010406050304050503
+040c0113040a050104030501040a0113041d0113040b0304040c0113040d0501040d011e
+0302010101010302010103020114040a05070402050104010501040b0113040d05010405
+050504030505040b0113040a050104030501040a0113041d0113040b0304040c0113040a
+0507040a011e0302010101010302010103020114040a050704010507040a0113040d0501
+04040502040105020401050204010502040a0113040a05010400050104000501040a0113
+041d0113041d0113040a0507040a011e0302010101010302010103020114040a05010400
+05010400050104010507040a05090109040d050104040501040305010401050104030501
+040a05090109040a05010400050104000501040a05090109041d05090109041d05090109
+040d0501040d050901140302010101010302010103020114040a05010400050104000501
+0402050104010501040b05090109040d050104040501040305010401050104030501040a
+05090109040a050104030501040a05090109041d05090109040b0304040c05090109040d
+0501040d050901140302010101010302010103020114040a050104030501040305000401
+0500040c05090109040d050104040501040305010401050104030501040a05090109040a
+050104030501040a05090109041d05090109040b0304040c05090109040d0501040d0509
+01140302010101010302010103020114040a050104030501041405090109040d05010404
+0502040105020401050204010502040a05090109040a050204010502040a05090109041d
+05090109041d05090109041d050901140302010101010302010103020114040a05010403
+0501041405090109040b05050403050504030506040a05090109040b0505040b05090109
+040d0501040d05090109041d05090109041d050901140302010101010302010103020114
+040a050104030501041405090109040b0505040405030405050204000501040a05090109
+040c0503040c05090109040d0501040d05090109041d05090109041d0509011403020101
+0101030201010302011404270509010904240501040a05090109041d05090109041d0509
+0109041d05090109041d0509011403020101010103020101030201140427050901090423
+0502040a05090109041d05090109041d05090109041d05090109041d0509011403020101
+01010302010103020114042705090109041f0505040b05090109041d05090109041d0509
+0109041d05090109041d050901140302010101010302010103020114042705090109041f
+0504040c05090109041d05090109041d05090109041d05090109041d0509011403020101
+0101030201010302011e0527011305310113051d0113051d0113051d0113051d01140302
+01010101030201010302011e0527011305310113051d0113051d0113051d0113051d0114
+030201010101030201010302011e0527011305310113051d0113051d0113051d0113051d
+0114030201010101030201010302011e0527011305310113051d0113051d0113051d0113
+051d0114030201010101030201010302011e0527011305310113051d0113051d0113051d
+0113051d0114030201010101030201010302011e0527011305310113051d0113051d0113
+051d0113051d0114030201010101030201010302011e0527011305310113051d0113051d
+0113051d0113051d0114030201010101030201010302011e0527011305310113051d0113
+051d0113051d0113051d0114030201010101030201010302011e0527011305310113051d
+0113051d0113051d0113051d0114030201010101030201010302011e0527011305310113
+051d0113051d0113051d0113051d011403020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+03020101010103020101030201ff016903020101010103020101030201ff016903020101
+010103020101030201ff016903020101010103020101030201ff01690302010101010302
+0101030201ff016903020101010103020101030201ff0169030201010101030201010302
+01ff016903020101010103020101030201ff016903020101010103020101030201ff0169
+0302010101010302010103ff036f010101010302010103ff036f01010101030201ff0173
+0101030201ff0173010103ff0376010103ff037601ff017801ff017801ff017801ff0178
+01ff017801ff0178
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 376 299
+%%EOF

+ 1032 - 0
docs/pics/ide/fileopen.eps

@@ -0,0 +1,1032 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (fileopen.eps)
+%%CreationDate: (Wed Nov 15 21:35:59 2000)
+%%BoundingBox: 0 0 488 377
+%%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 489 378
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+489 378
+12.000000
+489 378
+1
+0
+0
+9
+c0c0c0
+00fc00
+f8fcf8
+000080
+f8fc00
+008000
+000000
+00fcf8
+008080
+00ff00e800ff00e800ff00e80021010500eb020100d20301001602030004010500040203
+0091020300420204000402010005020300c8001802030004010500040203009002050040
+0205000c020300c8001802010006010500060201008f020200010202003f020100120201
+00c80002021200020201000601050006020100020281000a020100030201000102010000
+0202000502030003020100000202000e0204000f0201000602030007020100060203000c
+02b00002021200020201000601050006020100020281000a020100030201000102060003
+020500020206000d0205000c0207000202030007020100050205000b02b0030100000202
+001202010006010500060201008f02010003020100010202000102020001020200010202
+000102020001020200110201000b02070004020100070201000402020001020200ba0200
+00020202001202010006010500060201008f020100030201000102010003020100010201
+000302010001020100030201000c0206000d020100080201000702010004020100030201
+00ba0200000202020001020d00020201000601050006020100020281000a020100030201
+0001020100030201000102070001020100030201000b0207000d02010008020100070201
+00040207000a02ad00010200000202020001020d00020201000601050006020100020281
+000a0201000302010001020100030201000102070001020100030201000b020100030201
+000d0201000802010007020100040207000a02ad000102000002020200010202000d0201
+0006010500060201008f0202000102020001020200010202000102020006020100030201
+000b020100030201000d020100080201000702010004020200ba02020001020003010000
+020200010202000d02010006010500060201009002050002020600030205000202010003
+0201000b0207000d020100060205000302050003020500b6020200010200000202020001
+0202000d0201000601050006020100910203000302010000020200050203000302010003
+0201000c0206000d020100060205000302050004020300b7020200010200000202020001
+0202000d0201001302010099020100ff00150202000102000002020200010202000d0203
+000f02030099020100ff00150202000102000002020200010202000d0203000f02030099
+020100ff00150202000102000301000002020001020200bf020100ff0015020200010200
+000202020001020200ff00d7020200010200000202020001020200ff00d7020200010200
+000202020001020200ff00d7020200010200000202020001020200ff00d7020200010200
+0301000002020001020200ff00d7020200010200000202020001020200ff00d702020001
+0200000202020001020200ff00d7020200010200000202020001020200ff00d702020001
+0200000202020001020200ff00d70202000102000301000002020001020200ff00d70202
+00010200000202020001020200ff00d7020200010200000202020001020200ff00d70202
+00010200000202020001020200ff00d7020200010200000202020001020200ff00d70202
+000102000301000002020001020200ff00d7020200010200000202020001020200ff00d7
+020200010200000202020001020200ff00d7020200010200000202020001020200ff00d7
+020200010200000202020001020200ff00d70202000102000301000002020001020200ff
+00d7020200010200000202020001020200ff00d7020200010200000202020001020200ff
+00d7020200010200000202020001020200ff00d702020001020000020202000102020022
+020100ff00b202020001020003010000020200010202001502070004020100050203001a
+020100ff008b020200010200000202020001020200150207000c0203001a020100ff008b
+02020001020000020202000102020015020100140201001a020100ff008b020200010200
+000202020001020200150201000802030007020100060203000e020500040203000f0203
+000302010000020200050203000304010000040200ff004d020200010200000202020001
+020200150201000802030007020100050205000d020500030205000d0205000202060003
+02050002040600ff004c0202000102000301000002020001020200150205000602010007
+02010004020200010202000d02010005020200010202000b020200010202000102020001
+02020001020200010202000104020001040200ff004b0202000102000002020200010202
+0015020500060201000702010004020100030201000d02010005020100030201000b0201
+0003020100010201000302010001020100030201000104010003040100ff004b02020001
+0200000202020001020200150201000a02010007020100040207000d0201000502010003
+0201000b020100030201000102010003020100010207000104010003040100ff004b0202
+00010200000202020001020200150201000a02010007020100040207000d020100050201
+00030201000b020100030201000102010003020100010207000104010003040100ff004b
+020200010200000202020001020200150201000a02010007020100040202001202010005
+020200010202000b020200010202000102020001020200010202000604010003040100ff
+004b0202000102000301000002020001020200150201000802050003020500030205000e
+020400030205000d02050002020600030205000204010003040100ff004b020200010200
+0002020200010202001502010008020500030205000402030010020300040203000f0203
+000302010000020200050203000304010003040100ff004b020200010200000202020001
+0202006f020100ff00650202000102000002020200010202006f020100ff006502020001
+02000002020200010202006f020100ff006502020001020003010000020200010202006f
+020100ff00650202000102000002020200010202001403ff0317051d00130559001e0202
+000102000002020200010202001403ff0317051d00130559001e02020001020000020202
+00010202001403ff0317050d0601050d00130559001e0202000102000002020200010202
+0014038f02010385050d0601050d00130559001e02020001020003010000020200010202
+0014038f020103850502060305060601050606030502001305160403053e001e02020001
+02000002020200010202001403ff03170502060305060601050606030502001305150405
+053d001e0202000102000002020200010202001403ff0317050206010508060105080601
+050200130514040205010402053c001e02020001020000020202000102020014030a0201
+03030201030b0201030002020304020403050203030d020103030201030b020103000202
+0303020103000202030d020103030201030c020303040201030002020305020303700502
+060105080601050806010502001305140401050304010501070105000702050507030503
+0701050007020520001e02020001020000020202000102020014030b020103010201030c
+02060303020503030205030d020103010201030c020603020206030d020103010201030d
+02030304020603030205036f050206010508060105080601050200130514040105030401
+050107060503070505020706051f001e020200010200030100000202000102020014030c
+0203030d0202030102020307020103010201030302010304020103060203030d02020301
+020203010202030102020304020103060203031002010304020203010202030102020301
+0202036e0502060105080601050806010502001305140401050304010501070205010702
+05010702050107020501070205010702051e001e02020001020000020202000102020014
+030a0207030b02010303020103020206030102020309020103040207030b020103030201
+03010201030302010304020103040207030e020103040201030302010301020103740502
+060105080601050806010502001305140401050304010501070105030701050107010503
+07010501070105030701051e0609001402020001020000020202000102020014030c0203
+030d0201030302010301020703020205030e0203030d0201030302010301020103030201
+030d02030310020103040201030302010301020103740502060105080601050806010502
+001305140401050304010501070105030701050107070501070105030701051e06090014
+02020001020000020202000102020014030b020103010201030c02010303020103010201
+0303020103060202030c020103010201030c0201030302010301020103030201030c0201
+03010201030f020103040201030302010301020103740502060105080601050806010502
+001305140401050304010501070105030701050107070501070105030701051e06090014
+02020001020000020202000102020014030a020103030201030b02020301020203010201
+030302010301020103030201030b020103030201030b0202030102020301020203010202
+030b020103030201030e020103040201030302010301020203010202036e050206010505
+060705050601050200130514040205010402050107020501070205010702050607010503
+0701051e0609001402020001020003010000020200010202001403170201030402060302
+020703020205030502010311020103040206030202060305020103110201030502050302
+02010303020103020205036f050206010506060505060601050200130515040505020706
+050307050502070105030701051e06090014020200010200000202020001020200140317
+020103040201030002020304020603030203030602010311020103040201030002020303
+020103000202030602010311020103050205030202010303020103030203037005020601
+050706030507060105020013051604030503070105000702050507030503070105030701
+051e0609001402020001020000020202000102020014031e0201031f0200031802010307
+0201030b020003a305020601050806010508060105020013051e07010538060900140202
+0001020000020202000102020014031e0201031e02000319020103070201030a020003a4
+05020603050f060305020013051e07010538060900140202000102000002020200010202
+0014031e0201033902010307020103b005020603050f060305020013051e070105380609
+0014020200010200030100000202000102020014031e0201033902010307020103b0051d
+0013051e0701053806090014020200010200000202020001020200ff0068065900140202
+00010200000202020001020200ff006806590014020200010200000202020001020200ff
+006806590014020200010200000202020001020200ff0068065900140202000102000301
+000002020001020200ff006806590014020200010200000202020001020200ff00680659
+0014020200010200000202020001020200ff006806590014020200010200000202020001
+020200ff006806590014020200010200000202020001020200ff00680659001402020001
+02000301000002020001020200ff006806590014020200010200000202020001020200ff
+00d7020200010200000202020001020200ff00d7020200010200000202020001020200ff
+00d7020200010200000202020001020200ff00d702020001020003010000020200010202
+00ff00d7020200010200000202020001020200ff00d70202000102000002020200010202
+00ff00d7020200010200000202020001020200ff00d70202000102000002020200010202
+00ff00d70202000102000301000002020001020200ff00d7020200010200000202020001
+020200ff00d7020200010200000202020001020200ff00d7020200010200000202020001
+020200ff00d702020001020000020202000102020022060100ff00b20202000102000301
+000002020001020200150407000406010005060300ff00a8020200010200000202020001
+020200150407000c060300ff00a802020001020000020202000102020015040100140601
+00ff00a80202000102000002020200010202001504010008060300070601000606030005
+060300ff0093020200010200000202020001020200150401000806030007060100050605
+0003060500ff009202020001020003010000020200010202001504050006060100070601
+0004060200010602000106010003060100ff009102020001020000020202000102020015
+0405000606010007060100040601000306010001060200ff009602020001020000020202
+0001020200150401000a060100070601000406070002060500ff00920202000102000002
+02020001020200150401000a060100070601000406070006060200ff0091020200010200
+000202020001020200150401000a06010007060100040602000606010003060100ff0091
+020200010200030100000202000102020015040100080605000306050003060500030605
+00ff00920202000102000002020200010202001504010008060500030605000406030005
+060300ff0093020200010200000202020001020200ff00d7020200010200000202020001
+020200ff00d7020200010200000202020001020200ff00d7020200010200030100000202
+0001020200ff00d70202000102000002020200010202001408990301089900130559001e
+0202000102000002020200010202001408990301089900130559001e0202000102000002
+020200010202001408990301089900130559001e02020001020000020202000102020014
+08990301089900130559001e020200010200030100000202000102020014084604010850
+030108990013050c0603052c06030517001e020200010200000202020001020200140846
+04010850030108990013050b0605052b06030517001e0202000102000002020200010202
+001408470401084f030108990013050a060205010602052c06010517001e020200010200
+00020202000102020014080c040308050403080304010800040408010401080304010803
+0403080304010800040408020401084f030108990013050a060105080604050306010500
+06020505060305050603050606010517001e02020001020000020202000102020014080b
+040508030405080204070801040108030401080204050802040708030401084e03010899
+0013050a060105080605050206060503060505030605050506010517001e020200010200
+030100000202000102020014080a04010803040108010402080104020801040308050401
+0803040108010402080104020801040308070401084e030108990013050a0601050d0601
+050106020501060205010602050106020501060205010602050406010517001e02020001
+020000020202000102020014080a04020806040108030401080104020806040108030401
+08010401080304010801040208090401084d030108990013050a06010508060605010601
+050306010501060105070601050306010504060105170609001402020001020000020202
+000102020014080b0405080204070801040108070401080304010801040708010401080a
+0401084d030108990013050a060105070607050106010503060105010601050706070504
+060105170609001402020001020000020202000102020014080f04020801040708010401
+08070401080304010801040708010401080b0401084c030108990013050a060105070601
+050306010501060105030601050106010507060705040601051706090014020200010200
+00020202000102020014080a040108030401080104020806040108080401080104010802
+040208060401080b0401084c030108990013050a06020501060205010601050306010501
+060105030601050106020501060205010602050906010517060900140202000102000301
+00000202000102020014080b04050803040508020401080904030804040508020401080c
+0401084b030108990013050b060505020607050106010503060105020605050306050503
+060505150609001402020001020000020202000102020014080c04030805040308030401
+080a04010806040308030401080c0401084b030108990013050c06030504060605010601
+050306010503060305050603050406050515060900140202000102000002020200010202
+0014084c0401084a03010899001305590609001402020001020000020202000102020014
+084c0401084a030108990013055906090014020200010200000202020001020200140899
+030108990013055906090014020200010200030100000202000102020014089903010899
+001305590609001402020001020000020202000102020014089903010899001d06590014
+02020001020000020202000102020014089903010899001d065900140202000102000002
+0202000102020014089903010899001d0659001402020001020000020202000102020014
+089903010899001d06590014020200010200030100000202000102020014081706040802
+06030806060308030601086403010899001d065900140202000102000002020200010202
+001408160605080206030805060508020601086403010899001d06590014020200010200
+000202020001020200140816060108080601080406020801060208020601086303010899
+001d0659001402020001020000020202000102020014080a060108030601080306010808
+0601080a060108020601086303010899001d065900140202000102000002020200010202
+0014080a06010803060108010607080406010809060208030601086203010899001d0659
+0014020200010200030100000202000102020014080a0601080306010801060708040601
+0808060208040601086203010899001d0659001402020001020000020202000102020014
+080a06010803060108030601080806010807060208060601086103010899008c02020001
+020000020202000102020014080a06010803060108030601080806010806060208070601
+086103010899008c02020001020000020202000102020014080a06010803060108030601
+080806010805060208090601086003010899008c02020001020000020202000102020014
+080a060208010602080306010808060108040602080a0601086003010899008c02020001
+0200030100000202000102020014080b060608030601080606050802060708060601085f
+03010899008c02020001020000020202000102020014080c060208000601080306010806
+06050802060708060601085f03010899008c020200010200000202020001020200140810
+060108250601085e03010899008c02020001020000020202000102020014081006010825
+0601085e03010899008c02020001020000020202000102020014080b0605088703010899
+008c020200010200030100000202000102020014080b0604088803010899008c02020001
+020000020202000102020014089903010899008c02020001020000020202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+020000020202000102020014089903010899008c02020001020003010000020200010202
+001408150605080406030803060708010601080306010801060508060601080e06050804
+06050802060508030601081e03010899008c020200010200000202020001020200140815
+0605080306050802060708010601080306010801060608030603080e0606080306050802
+060608020601081e03010899008c02020001020000020202000102020014081706010804
+060208010602080406010804060208010602080106010802060208020603080e06010802
+060208040601080406010802060208020601081d03010899008c02020001020000020202
+000102020014081706010804060208090601080406020801060208010601080306010804
+0601080e06010803060108040601080406010803060108020601081d03010899008c0202
+000102000002020200010202001408170601080506020808060108040607080106010803
+060108040601080e06010803060108040601080406010803060108030601081c03010899
+008c02020001020003010000020200010202001408170601080606020807060108040607
+080106010802060208040601080e06010803060108040601080406010802060208030601
+081c03010899008c02020001020000020202000102020014081706010808060108060601
+0804060108000601080006010801060608050601080e0601080306010804060108040606
+08050601081b03010899008c020200010200000202020001020200140817060108090601
+080506010804060108000601080006010801060508060601080e06010803060108040601
+0804060508060601081b03010899008c0202000102000002020200010202001408170601
+0809060208040601080406010803060108010601080a0601080e06010803060108040601
+080406010802060108060601081a03010899008c02020001020000020202000102020014
+08170601080406020801060208040601080406010803060108010601080a0601080e0601
+0802060208040601080406010803060108050601081a03010899008c0202000102000301
+00000202000102020014081506050803060508050601080406010803060108010601080a
+0601080706010804060608030605080206010803060108060601081903010899008c0202
+000102000002020200010202001408150605080406030806060108040601080306010801
+0601080a0601080706010804060508040605080206010803060108060601081903010899
+008c02020001020000020202000102020014087e0601081803010899008c020200010200
+00020202000102020014080a0607086b0601081803010899008c02020001020000020202
+000102020014080a0607088603010899008c020200010200030100000202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+020000020202000102020014089903010899008c02020001020000020202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+0200030100000202000102020014081e0601087803010899008c02020001020000020202
+000102020014081e0601087803010899008c02020001020000020202000102020014081f
+0601087703010899008c02020001020000020202000102020014081f0601087703010899
+008c0202000102000002020200010202001408200601087603010899008c020200010200
+03010000020200010202001408200601087603010899008c020200010200000202020001
+0202001408210601087503010899008c0202000102000002020200010202001408210601
+087503010899008c0202000102000002020200010202001408220601087403010899008c
+0202000102000002020200010202001408220601087403010899008c0202000102000301
+00000202000102020014080d06010807060108090601087303010899008c020200010200
+00020202000102020014080d06010807060108090601087303010899008c020200010200
+0002020200010202001408240601087203010899008c0202000102000002020200010202
+001408240601087203010899008c02020001020000020202000102020014089903010899
+008c020200010200030100000202000102020014089903010899008c0202000102000002
+0202000102020014089903010899008c0202000102000002020200010202001408990301
+0899008c02020001020000020202000102020014089903010899008c0202000102000002
+0202000102020014089903010899008c0202000102000301000002020001020200140899
+03010899008c02020001020000020202000102020014089903010899008c020200010200
+00020202000102020014089903010899008c020200010200000202020001020200140899
+03010899008c02020001020000020202000102020014089903010899008c020200010200
+030100000202000102020014089903010899008c02020001020000020202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+020000020202000102020014089903010899008c02020001020000020202000102020014
+089903010899008c020200010200030100000202000102020014089903010899008c0202
+0001020000020202000102020014089903010899008c0202000102000002020200010202
+0014089903010899008c02020001020000020202000102020014089903010899008c0202
+0001020000020202000102020014089903010899008c0202000102000301000002020001
+02020014089903010899008c02020001020000020202000102020014089903010899008c
+02020001020000020202000102020014089903010899008c020200010200000202020001
+02020014089903010899008c02020001020000020202000102020014089903010899008c
+020200010200030100000202000102020014089903010899008c02020001020000020202
+000102020014089903010899008c02020001020000020202000102020014089903010899
+008c02020001020000020202000102020014089903010899008c02020001020000020202
+000102020014089903010899008c02020001020003010000020200010202001408990301
+0899008c02020001020000020202000102020014089903010899008c0202000102000002
+0202000102020014089903010899008c0202000102000002020200010202001408990301
+0899008c02020001020000020202000102020014089903010899008c0202000102000301
+00000202000102020014089903010899008c020200010200000202020001020200140899
+03010899008c02020001020000020202000102020014089903010899008c020200010200
+00020202000102020014089903010899008c020200010200000202020001020200140899
+03010899008c020200010200030100000202000102020014089903010899008c02020001
+020000020202000102020014089903010899008c02020001020000020202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+020000020202000102020014089903010899008c02020001020003010000020200010202
+0014089903010899008c02020001020000020202000102020014089903010899008c0202
+0001020000020202000102020014089903010899008c0202000102000002020200010202
+0014089903010899008c02020001020000020202000102020014089903010899008c0202
+00010200030100000202000102020014089903010899008c020200010200000202020001
+02020014089903010899008c02020001020000020202000102020014089903010899008c
+02020001020000020202000102020014089903010899008c020200010200000202020001
+02020014089903010899008c020200010200030100000202000102020014089903010899
+008c02020001020000020202000102020014089903010899008c02020001020000020202
+000102020014089903010899008c02020001020000020202000102020014089903010899
+008c02020001020000020202000102020014089903010899008c02020001020003010000
+0202000102020014089903010899008c0202000102000002020200010202001408990301
+0899008c02020001020000020202000102020014089903010899008c0202000102000002
+0202000102020014089903010899008c0202000102000002020200010202001408990301
+0899008c020200010200030100000202000102020014089903010899008c020200010200
+00020202000102020014089903010899008c020200010200000202020001020200140899
+03010899008c02020001020000020202000102020014089903010899008c020200010200
+00020202000102020014089903010899008c020200010200030100000202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+020000020202000102020014089903010899008c02020001020000020202000102020014
+089903010899008c02020001020000020202000102020014089903010899008c02020001
+0200030100000202000102020014089903010899008c0202000102000002020200010202
+0014089903010899008c02020001020000020202000102020014089903010899008c0202
+0001020000020202000102020014089903010899008c0202000102000002020200010202
+0014089903010899008c020200010200030100000202000102020014089903010899008c
+020200010200000202020001020200140314080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+0309008c0202000102000002020200010202001403130800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+03000800030a008c0202000102000002020200010202001403070800030b080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000307008c02020001020000020202000102020014
+030608010302080503010800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+03000800030008000300080003000800030008000300080003000800030108010306008c
+020200010200030100000202000102020014030508020302080503020800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+08000300080003000800030008020305008c020200010200000202020001020200140304
+080303020805030108000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+0800030008000300080003000800030008000300080003000800030108030304008c0202
+000102000002020200010202001403030804030208050302080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008040303008c02020001020000020202000102020014030208050302
+080503010800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+08000300080003000800030008000300080003000800030108050302008c020200010200
+000202020001020200140301080603020805030208000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+0800030008060301008c0202000102000301000002020001020200140300080703020805
+030108000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+0300080003000800030008000300080003000800030108070300008c0202000102000002
+020200010202001403010806030208050302080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008060301008c02020001020000020202000102020014030208050302080503010800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+03000800030008000300080003000800030108050302008c020200010200000202020001
+020200140303080403020805030208000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000804
+0303008c0202000102000002020200010202001403040803030208050301080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030108030304008c02020001020003010000020200010202
+001403050802030208050302080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008020305
+008c02020001020000020202000102020014030608010302080503010800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+08000300080003000800030108010306008c020200010200000202020001020200140307
+0800030b0800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+08000300080003000800030008000300080003000800030008000307008c020200010200
+000202020001020200140313080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030a008c0202
+000102000002020200010202001403140800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000300
+080003000800030008000300080003000800030008000300080003000800030008000309
+008c02020001020003010000020200010202001403130800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+030008000300080003000800030008000300080003000800030008000300080003000800
+03000800030a008c020200010200000202020001020200ff00d702020001020000020202
+0001020200ff00d7020200010200000202020001020200ff00d702020001020000020202
+0001020200ff00d70202000102000301000002020001020200ff00d70202000102000002
+02020001020200ff00d7020200010200000202020001020200ff00d70202000102000002
+02020001020200ff00d7020200010200000202020001020200ff00d70202000102000301
+000002020001020200ff00d7020200010200000202020001020200ff00d7020200010200
+000202020001020200ff00d7020200010200000202020001020200ff00d7020200010200
+000202020001020200ff00d70202000102000301000002020001020200ff00d702020001
+0200000202020001020200ff00d7020200010200000202020001020200ff00d702020001
+0200000202020001020200ff00d7020200010200000202020001020200ff00d702020001
+02000301000002020001020200ff00d70202000102000002020200010202000003ff03d5
+00000202000102000002020200010202000003ff03d50000020200010200000202020001
+0202000003ff03d500000202000102000002020200010202000003df080103f300000202
+00010200030100000202000102020000030c0803030d08010309080103230801038c0801
+03f3000002020001020000020202000102020000030b0805030c08010309080103230801
+03ff0382000002020001020000020202000102020000030a080203010802030c08010308
+08010324080103ff0381000002020001020000020202000102020000030a080103120801
+030708050304080303030801030008010300080003020801030008020304080103060801
+03030801030b0801030008020304080403050803030d080103030801030b080103000802
+0303080103000802030d080103030801030c080303040801030008020305080303de0000
+02020001020000020202000102020000030a080103130801030608050303080503020807
+03010806030408010306080103010801030c08060303080503030805030d080103010801
+030c080603020806030d080103010801030d0803030408060303080503dd000002020001
+0200030100000202000102020000030a0801030a08010306080103070801030508020301
+080203010801030008010300080103010802030108020303080103070803030d08020301
+08020307080103010801030308010304080103060803030d080203010802030108020301
+08020304080103060803031008010304080203010802030108020301080203dc00000202
+0001020000020202000102020000030a0801030a08010307080103060801030508010303
+080103010801030008010300080103010801030308010304080103040807030b08010303
+080103020806030108020309080103040807030b08010303080103010801030308010304
+080103040807030e080103040801030308010301080103e2000002020001020000020202
+000102020000030a08010314080103060801030508070301080103000801030008010301
+0801030308010304080103060803030d0801030308010301080703020805030e0803030d
+0801030308010301080103030801030d08030310080103040801030308010301080103e2
+000002020001020000020202000102020000030a08010315080103050801030508070301
+080103000801030008010301080103030801030508010304080103010801030c08010303
+0801030108010303080103060802030c080103010801030c080103030801030108010303
+0801030c080103010801030f080103040801030308010301080103e20000020200010200
+00020202000102020000030a080203010802030f08010305080103050802030608010300
+0801030008010301080203010802030508010303080103030801030b0802030108020301
+0801030308010301080103030801030b080103030801030b080203010802030108020301
+0802030b080103030801030e08010304080103030801030108020301080203dc00000202
+00010200030100000202000102020000030b080503050801030908010304080403030805
+0302080103000801030008010301080603070801030f0801030408060302080703020805
+030508010311080103040806030208060305080103110801030508050302080103030801
+0302080503dd000002020001020000020202000102020000030c08030306080103090801
+0305080303040803030308010300080103000801030108010300080203080801030f0801
+030408010300080203040806030308030306080103110801030408010300080203030801
+0300080203060801031108010305080503020801030308010303080303de000002020001
+02000002020200010202000003240801031f0801030d080103150801031f080003180801
+03070801030b080003ff031100000202000102000002020200010202000003240801031f
+0801030d080103150801031e08000319080103070801030a080003ff0312000002020001
+0200000202020001020200000346080103250801033908010307080103ff031e00000202
+000102000301000002020001020200000346080103250801033908010307080103ff031e
+00000202000102000002020200010202000003ff03d50000020200010200000202020001
+0202000003ff03d500000202000102000002020200010202000003ff03d5000002020001
+0200000202020001020200000399080103ff033900000202000102000301000002020001
+02020000038c08050306080103240801032f0803032b0807031708030305080303050803
+03050803032308030310080103060803032a000002020001020000020202000102020000
+038c0806032c0801032e0805032a08070316080503030805030308050303080503210805
+030d0803030508050329000002020001020000020202000102020000038c080103020802
+032b0801032d08020301080203290801031b080203010802030108020301080203010802
+030108020301080203010802031f080203010802030c0803030408020301080203280000
+02020001020000020202000102020000030c080303050803030308010300080403010801
+030308010303080303030801030008040347080103030801030208030304080103000804
+0303080303050803030408050304080303030801030008040301080103030801030b0802
+030808030303080103000802031708010321080103010801030308010301080103030801
+0301080103030801031f080103030801030e080103040801030308010301080103000802
+0303080103000801030008000315000002020001020000020202000102020000030b0805
+030308050302080703010801030308010302080503020807034708010303080103020803
+0304080703020805030308050303080503030805030208070301080103030801030c0802
+030608050302080603160805031c08020301080103030801030108010303080103010801
+03030801031f080203010802030e08010305080103010801030208060302080703140000
+020200010200030100000202000102020000030a08010303080103010802030108020301
+08030305080103030801030108020301080203010803034b080103030801030408010304
+080303050802030108020301080203010802030308010305080203010802030108030305
+080103030801030d08020304080203010802030108020301080203150806031a08020302
+080103000801030008010301080103000801030008010301080103000801030008010320
+080603040801030708010306080303030802030108020301080103000801030008010314
+000002020001020000020202000102020000030a08020306080103030801030108020306
+080103030801030108010303080103010802034c08010303080103040801030408020306
+08010303080103010801030908010305080103030801030108020306080103030801030f
+080103030801030308010301080103030801031a08020318080203030801030008010300
+080103010801030008010300080103010801030008010300080103210802030008010304
+080103070801030508050302080103030801030108010300080103000801031400000202
+0001020000020202000102020000030b0805030208070301080103070801030308010301
+080703010801034d08010303080103040801030408010307080703010801030908010305
+08010303080103010801030708010303080103100801030208070301080103030801031b
+08010317080203040801030308010301080103030801030108010303080103250801030e
+080103040802030108020301080103030801030108010300080103000801031400000202
+0001020000020202000102020000030f0802030108070301080103070801030308010301
+080703010801034d08010303080103040801030408010307080703010801030908010305
+08010303080103010801030708010303080103100802030108070301080103030801031b
+08010316080203050801030308010301080103030801030108010303080103250801030e
+080103040801030308010301080103030801030108010300080103000801031400000202
+0001020000020202000102020000030a0801030308010301080203060801030808010301
+08010302080203060801034d080103020802030408010304080103070802030608020301
+0802030308010305080203010802030108010307080203010802030b0802030108020301
+080203060802030108020315080203010802031508020306080203010802030108020301
+08020301080203010802031f080203010802030e08010304080203010802030108020301
+080203010801030008010300080103140000020200010200030100000202000102020000
+030b08050303080503020801030908030304080503020801034d08060303080503020801
+030808050303080503040804030308050302080103080806030c08050303080503020806
+0317080503050801030e0807030208050303080503030805032108050305080103070801
+030508050302080603020801030008010300080103140000020200010200000202020001
+02020000030c08030305080303030801030a08010306080303030801034d080503040805
+0302080103090803030508030306080303040803030308010309080203000801030d0803
+0305080303030801030008020319080303060801030e0807030308030305080303050803
+032308030306080103070801030608030303080103000802030308010300080103000801
+031400000202000102000002020200010202000003e20801031f080103290800037c0801
+032400000202000102000002020200010202000003e20801031f080103280800037d0801
+032400000202000102000002020200010202000003dd08050320080103a7080103240000
+02020001020003010000020200010202000003dd08040321080103a70801032400000202
+00010200000202020001020200ff00d7020200010200000202020001020200ff00d70202
+00010200000202020001020200ff00d7020200010200000202020001020200ff00d70202
+000102000301000002020001020200ff00d7020200010200000202020001020200ff00d7
+020200010200000202020001020200ff00d702020001020000020202000102ff02dd0001
+020000020202000102ff02dd0001020003010000020200ff00e102000002020200ff00e1
+0200000202ff02e5000202ff02e500ff00e8030100ff00e600ff00e800ff00e800ff00e8
+
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 488 377
+%%EOF

+ 968 - 0
docs/pics/ide/filesave.eps

@@ -0,0 +1,968 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (filesave.eps)
+%%CreationDate: (Wed Nov 15 21:36:00 2000)
+%%BoundingBox: 0 0 486 377
+%%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 487 378
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+487 378
+12.000000
+487 378
+1
+0
+0
+10
+c0c0c0
+00fc00
+f8fcf8
+f8fc00
+000080
+008000
+000000
+00fcf8
+f8fc78
+008080
+00ff00e600ff00e600ff00e60020010500cd020100ef0017020300040105000402030087
+0203002b02070004020100050203001b020100c700170203000401050004020300860205
+002a0207000c0203001a020300c600170201000601050006020100850202000102020029
+020100140201001902010001020100c50001021200020201000601050006020100020277
+000a020200070204000302010003020100030203000d0201000802030007020100060203
+000d02010003020100030203000c02af0001021200020201000601050006020100020277
+000b020200060205000202010003020100020205000c0201000802030007020100050205
+000c02010003020100020205000b02af0001020200120201000601050006020100870202
+000a020100010201000302010001020200010202000b0205000602010007020100040202
+00010202000b020100030201000102010003020100ba0001020200120201000601050006
+0201008902010004020600010201000302010001020100030201000b0205000602010007
+02010004020100030201000b0201000302010001020200bf000102020001020d00020201
+000601050006020100020277000f020100020207000102010003020100010207000b0201
+000a02010007020100040207000b020700020205000b02ad0001000102020001020d0002
+0201000601050006020100020277000f0202000102010003020100010201000302010001
+0207000b0201000a02010007020100040207000b020700060202000a02ad000100010202
+00010202000d020100060105000602010085020200010202000102010003020100020201
+000102010002020200100201000a02010007020100040202001002010003020100010201
+0003020100b5020200010001020200010202000d02010006010500060201008602050002
+02070003020300040205000c0201000802050003020500030205000c0201000302010002
+020500b6020200010001020200010202000d020100060105000602010087020300040206
+0004020100060203000d0201000802050003020500040203000d02010003020100030203
+00b7020200010001020200010202000d02010013020100ff00b102020001000102020001
+0202000d0203000f020300ff00b1020200010001020200010202000d0203000f020300ff
+00b102020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d702020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d702020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d702020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d702020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d702020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d7020200010001020200010202001503010003030100ff00b9020200010001
+020200010202001503020002030100ff00b9020200010001020200010202001503020002
+030100ff00b9020200010001020200010202001503030001030100020204000302010000
+0201000002000004020300ff009d02020001000102020001020200150303000103010002
+0205000202070002020500ff009c02020001000102020001020200150301000003010000
+030100070201000102010000020100000201000102020001020200ff009b020200010001
+020200010202001503010000030100000301000202060001020100000201000002010001
+02010003020100ff009b0202000100010202000102020015030100010303000102070001
+020100000201000002010001020700ff009b020200010001020200010202001503010001
+030300010201000302010001020100000201000002010001020700ff009b020200010001
+020200010202001503010002030200010201000302010001020100000201000002010001
+020200ff00a0020200010001020200010202001503010002030200010207000102010000
+0201000002010002020500ff009c02020001000102020001020200150301000303010002
+02060001020100000201000002010003020300ff009d02020001000102020001020200ff
+00d702020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d7020200010001020200010202001404ff0417051d0013
+0559001e020200010001020200010202001404ff0417051d00130559001e020200010001
+020200010202001404ff0417050d0601050d00130559001e020200010001020200010202
+001404ff0417050d0601050d00130559001e020200010001020200010202001404ff0417
+050206030506060105060603050200130520070305030301052e001e0202000100010202
+00010202001404ff041705020603050606010506060305020013051f070505020301052e
+001e020200010001020200010202001404ff041705020601050806010508060105020013
+051e07020501070205010301052e001e020200010001020200010202001404ff04170502
+0601050806010508060105020013051e07010503070105010301050203010529001e0202
+00010001020200010202001404ff041705020601050806010508060105020013051e0701
+050307010501030105010301052a001e020200010001020200010202001404ff04170502
+0601050806010508060105020013051e0701050307010501030105000301052b001e0202
+00010001020200010202001404ff041705020601050806010508060105020013051e0701
+0503070105010303052c06090014020200010001020200010202001404ff041705020601
+050806010508060105020013051e07010503070105010302052d06090014020200010001
+020200010202001404ff041705020601050806010508060105020013051e070105030701
+05010304052b06090014020200010001020200010202001404ff04170502060105050607
+0505060105020013051e0702050107020501030105010301052a06090014020200010001
+020200010202001404ff041705020601050606050506060105020013051f070505020301
+05020301052906090014020200010001020200010202001404ff04170502060105070603
+050706010502001305200703050303010503030105280609001402020001000102020001
+0202001404ff041705020601050806010508060105020013055906090014020200010001
+020200010202001404ff041705020603050f060305020013055906090014020200010001
+02020001020200140409080904ff040305020603050f0603050200130559060900140202
+0001000102020001020200140409080904ff0403051d0013055906090014020200010001
+02020001020200ff00680659001402020001000102020001020200ff0068065900140202
+0001000102020001020200ff00680659001402020001000102020001020200ff00680659
+001402020001000102020001020200ff00680659001402020001000102020001020200ff
+00680659001402020001000102020001020200ff00680659001402020001000102020001
+020200ff00680659001402020001000102020001020200ff006806590014020200010001
+02020001020200ff00680659001402020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d702020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d702020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d70202000100010202000102020022060100ff00b202020001000102020001
+020200150307000406010005060300ff00a802020001000102020001020200150307000c
+060300ff00a8020200010001020200010202001503010014060100ff00a8020200010001
+020200010202001503010008060300070601000606030005060300ff0093020200010001
+020200010202001503010008060300070601000506050003060500ff0092020200010001
+0202000102020015030500060601000706010004060200010602000106010003060100ff
+009102020001000102020001020200150305000606010007060100040601000306010001
+060200ff009602020001000102020001020200150301000a060100070601000406070002
+060500ff009202020001000102020001020200150301000a060100070601000406070006
+060200ff009102020001000102020001020200150301000a060100070601000406020006
+06010003060100ff00910202000100010202000102020015030100080605000306050003
+06050003060500ff00920202000100010202000102020015030100080605000306050004
+06030005060300ff009302020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d7020200010001020200010202001409990401099900130559001e0202000100010202
+00010202001409990401099900130559001e020200010001020200010202001409990401
+099900130559001e020200010001020200010202001409990401099900130559001e0202
+000100010202000102020014094603010950040109990013050c0603052c06030517001e
+0202000100010202000102020014094603010950040109990013050b0605052b06030517
+001e020200010001020200010202001409470301094f040109990013050a060205010602
+052c06010517001e0202000100010202000102020014090c030309050303090303010900
+0304090103010903030109030303090303010900030409020301094f040109990013050a
+06010508060405030601050006020505060305050603050606010517001e020200010001
+0202000102020014090b0305090303050902030709010301090303010902030509020307
+09030301094e040109990013050a06010508060505020606050306050503060505050601
+0517001e0202000100010202000102020014090a03010903030109010302090103020901
+0303090503010903030109010302090103020901030309070301094e040109990013050a
+0601050d0601050106020501060205010602050106020501060205010602050406010517
+001e0202000100010202000102020014090a030209060301090303010901030209060301
+0903030109010301090303010901030209090301094d040109990013050a060105080606
+050106010503060105010601050706010503060105040601051706090014020200010001
+0202000102020014090b0305090203070901030109070301090303010901030709010301
+090a0301094d040109990013050a06010507060705010601050306010501060105070607
+050406010517060900140202000100010202000102020014090f03020901030709010301
+09070301090303010901030709010301090b0301094c040109990013050a060105070601
+050306010501060105030601050106010507060705040601051706090014020200010001
+0202000102020014090a0301090303010901030209060301090803010901030109020302
+09060301090b0301094c040109990013050a060205010602050106010503060105010601
+050306010501060205010602050106020509060105170609001402020001000102020001
+02020014090b03050903030509020301090903030904030509020301090c0301094b0401
+09990013050b060505020607050106010503060105020605050306050503060505150609
+00140202000100010202000102020014090c03030905030309030301090a030109060303
+09030301090c0301094b040109990013050c060305040606050106010503060105030603
+05050603050406050515060900140202000100010202000102020014094c0301094a0401
+099900130559060900140202000100010202000102020014094c0301094a040109990013
+055906090014020200010001020200010202001409990401099900130559060900140202
+000100010202000102020014099904010999001305590609001402020001000102020001
+02020014099904010999001d065900140202000100010202000102020014099904010999
+001d065900140202000100010202000102020014099904010999001d0659001402020001
+00010202000102020014099904010999001d065900140202000100010202000102020014
+09170604090206030906060309030601096404010999001d065900140202000100010202
+00010202001409160605090206030905060509020601096404010999001d065900140202
+000100010202000102020014091606010908060109040602090106020902060109630401
+0999001d065900140202000100010202000102020014090a060109030601090306010908
+0601090a060109020601096304010999001d065900140202000100010202000102020014
+090a06010903060109010607090406010909060209030601096204010999001d06590014
+0202000100010202000102020014090a0601090306010901060709040601090806020904
+0601096204010999001d065900140202000100010202000102020014090a060109030601
+09030601090806010907060209060601096104010999008c020200010001020200010202
+0014090a06010903060109030601090806010906060209070601096104010999008c0202
+000100010202000102020014090a06010903060109030601090806010905060209090601
+096004010999008c0202000100010202000102020014090a060209010602090306010908
+060109040602090a0601096004010999008c0202000100010202000102020014090b0606
+09030601090606050902060709060601095f04010999008c020200010001020200010202
+0014090c06020900060109030601090606050902060709060601095f04010999008c0202
+0001000102020001020200140910060109250601095e04010999008c0202000100010202
+0001020200140910060109250601095e04010999008c0202000100010202000102020014
+090b0605098704010999008c0202000100010202000102020014090b0604098804010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c020200010001020200010202001409150605
+090406030903060709010601090306010901060509060601090e06050904060509020605
+09030601091e04010999008c020200010001020200010202001409150605090306050902
+060709010601090306010901060609030603090e0606090306050902060609020601091e
+04010999008c020200010001020200010202001409170601090406020901060209040601
+0904060209010602090106010902060209020603090e0601090206020904060109040601
+0902060209020601091d04010999008c0202000100010202000102020014091706010904
+0602090906010904060209010602090106010903060109040601090e0601090306010904
+0601090406010903060109020601091d04010999008c0202000100010202000102020014
+09170601090506020908060109040607090106010903060109040601090e060109030601
+09040601090406010903060109030601091c04010999008c020200010001020200010202
+001409170601090606020907060109040607090106010902060209040601090e06010903
+060109040601090406010902060209030601091c04010999008c02020001000102020001
+020200140917060109080601090606010904060109000601090006010901060609050601
+090e060109030601090406010904060609050601091b04010999008c0202000100010202
+000102020014091706010909060109050601090406010900060109000601090106050906
+0601090e060109030601090406010904060509060601091b04010999008c020200010001
+0202000102020014091706010909060209040601090406010903060109010601090a0601
+090e06010903060109040601090406010902060109060601091a04010999008c02020001
+000102020001020200140917060109040602090106020904060109040601090306010901
+0601090a0601090e06010902060209040601090406010903060109050601091a04010999
+008c02020001000102020001020200140915060509030605090506010904060109030601
+09010601090a060109070601090406060903060509020601090306010906060109190401
+0999008c0202000100010202000102020014091506050904060309060601090406010903
+060109010601090a06010907060109040605090406050902060109030601090606010919
+04010999008c0202000100010202000102020014097e0601091804010999008c02020001
+00010202000102020014090a0607096b0601091804010999008c02020001000102020001
+02020014090a0607098604010999008c0202000100010202000102020014099904010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c0202000100010202000102020014091e0601
+097804010999008c0202000100010202000102020014091e0601097804010999008c0202
+000100010202000102020014091f0601097704010999008c020200010001020200010202
+0014091f0601097704010999008c02020001000102020001020200140920060109760401
+0999008c020200010001020200010202001409200601097604010999008c020200010001
+020200010202001409210601097504010999008c02020001000102020001020200140921
+0601097504010999008c020200010001020200010202001409220601097404010999008c
+020200010001020200010202001409220601097404010999008c02020001000102020001
+02020014090d06010907060109090601097304010999008c020200010001020200010202
+0014090d06010907060109090601097304010999008c0202000100010202000102020014
+09240601097204010999008c020200010001020200010202001409240601097204010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c020200010001020200010202001409990401
+0999008c0202000100010202000102020014099904010999008c02020001000102020001
+02020014099904010999008c0202000100010202000102020014099904010999008c0202
+000100010202000102020014099904010999008c02020001000102020001020200140999
+04010999008c0202000100010202000102020014099904010999008c0202000100010202
+000102020014099904010999008c0202000100010202000102020014099904010999008c
+0202000100010202000102020014099904010999008c0202000100010202000102020014
+099904010999008c0202000100010202000102020014099904010999008c020200010001
+0202000102020014099904010999008c0202000100010202000102020014099904010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c020200010001020200010202001409990401
+0999008c0202000100010202000102020014099904010999008c02020001000102020001
+02020014099904010999008c0202000100010202000102020014099904010999008c0202
+000100010202000102020014099904010999008c02020001000102020001020200140999
+04010999008c0202000100010202000102020014099904010999008c0202000100010202
+000102020014099904010999008c0202000100010202000102020014099904010999008c
+0202000100010202000102020014099904010999008c0202000100010202000102020014
+099904010999008c0202000100010202000102020014099904010999008c020200010001
+0202000102020014099904010999008c0202000100010202000102020014099904010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c020200010001020200010202001409990401
+0999008c0202000100010202000102020014099904010999008c02020001000102020001
+02020014099904010999008c0202000100010202000102020014099904010999008c0202
+000100010202000102020014099904010999008c02020001000102020001020200140999
+04010999008c0202000100010202000102020014099904010999008c0202000100010202
+000102020014099904010999008c0202000100010202000102020014099904010999008c
+0202000100010202000102020014099904010999008c0202000100010202000102020014
+099904010999008c0202000100010202000102020014099904010999008c020200010001
+0202000102020014099904010999008c0202000100010202000102020014099904010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c020200010001020200010202001409990401
+0999008c0202000100010202000102020014099904010999008c02020001000102020001
+02020014099904010999008c0202000100010202000102020014099904010999008c0202
+000100010202000102020014099904010999008c02020001000102020001020200140999
+04010999008c0202000100010202000102020014099904010999008c0202000100010202
+000102020014099904010999008c0202000100010202000102020014099904010999008c
+0202000100010202000102020014099904010999008c0202000100010202000102020014
+099904010999008c0202000100010202000102020014099904010999008c020200010001
+0202000102020014099904010999008c0202000100010202000102020014099904010999
+008c0202000100010202000102020014099904010999008c020200010001020200010202
+0014099904010999008c0202000100010202000102020014099904010999008c02020001
+00010202000102020014099904010999008c020200010001020200010202001409990401
+0999008c0202000100010202000102020014099904010999008c02020001000102020001
+02020014099904010999008c0202000100010202000102020014099904010999008c0202
+000100010202000102020014099904010999008c02020001000102020001020200140999
+04010999008c020200010001020200010202001404140900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000409008c02020001000102020001020200140413090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040a008c020200010001020200010202001404070900040b090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000407008c02020001000102020001020200140406
+090104020905040109000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+0900040009000400090004000900040009000400090004000900040109010406008c0202
+000100010202000102020014040509020402090504020900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+04000900040009020405008c020200010001020200010202001404040903040209050401
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040109030404008c02020001000102020001
+020200140403090404020905040209000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000904
+0403008c0202000100010202000102020014040209050402090504010900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+09000400090004000900040109050402008c020200010001020200010202001404010906
+040209050402090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009060401008c02020001
+000102020001020200140400090704020905040109000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+0900040109070400008c0202000100010202000102020014040109060402090504020900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+04000900040009000400090004000900040009060401008c020200010001020200010202
+001404020905040209050401090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040109050402
+008c02020001000102020001020200140403090404020905040209000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+0400090004000900040009040403008c0202000100010202000102020014040409030402
+090504010900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+09000400090004000900040009000400090004000900040109030404008c020200010001
+020200010202001404050902040209050402090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009020405008c02020001000102020001020200140406090104020905040109000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+0900040009000400090004000900040109010406008c0202000100010202000102020014
+04070900040b090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000407008c02020001
+000102020001020200140413090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040a008c0202
+000100010202000102020014041409000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+040009000400090004000900040009000400090004000900040009000400090004000900
+04000900040009000400090004000900040009000400090004000900040009000409008c
+020200010001020200010202001404130900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+090004000900040009000400090004000900040009000400090004000900040009000400
+09000400090004000900040009000400090004000900040009000400090004000900040a
+008c02020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d702020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d702020001000102020001020200ff00d702020001000102020001020200ff00d70202
+0001000102020001020200ff00d702020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d702020001000102020001020200ff00d702020001000102020001020200ff00d70202
+00010001020200010202000004ff04d50000020200010001020200010202000004ff04d5
+0000020200010001020200010202000004ff04d500000202000100010202000102020000
+04ff04d500000202000100010202000102020000040c0903040d09010409090104230901
+04ff048200000202000100010202000102020000040b0905040c09010409090104230901
+04ff048200000202000100010202000102020000040a090204010902040c090104080901
+0424090104ff048100000202000100010202000102020000040a09010412090104070905
+040409030403090104000901040009000402090104000902040409010406090104030901
+040b090104000902040409040405090304ff044c00000202000100010202000102020000
+040a09010413090104060905040309050402090704010906040409010406090104010901
+040c0906040309050403090504ff044b00000202000100010202000102020000040a0901
+040a09010406090104070901040509020401090204010901040009010400090104010902
+040109020403090104070903040d09020401090204070901040109010403090104ff044a
+00000202000100010202000102020000040a0901040a0901040709010406090104050901
+0403090104010901040009010400090104010901040309010404090104040907040b0901
+04030901040209060401090204ff044f00000202000100010202000102020000040a0901
+041409010406090104050907040109010400090104000901040109010403090104040901
+04060903040d090104030901040109070402090504ff044b000002020001000102020001
+02020000040a090104150901040509010405090704010901040009010400090104010901
+04030901040509010404090104010901040c090104030901040109010403090104060902
+04ff044a00000202000100010202000102020000040a090204010902040f090104050901
+040509020406090104000901040009010401090204010902040509010403090104030901
+040b0902040109020401090104030901040109010403090104ff044a0000020200010001
+0202000102020000040b0905040509010409090104040904040309050402090104000901
+040009010401090604070901040f090104040906040209070402090504ff044b00000202
+000100010202000102020000040c09030406090104090901040509030404090304030901
+0400090104000901040109010400090204080901040f0901040409010400090204040906
+0403090304ff044c0000020200010001020200010202000004240901041f0901040d0901
+0415090104ff04640000020200010001020200010202000004240901041f0901040d0901
+0415090104ff046400000202000100010202000102020000044609010425090104ff0464
+00000202000100010202000102020000044609010425090104ff04640000020200010001
+020200010202000004ff04d50000020200010001020200010202000004ff04d500000202
+00010001020200010202000004ff04d50000020200010001020200010202000004990901
+04ff043900000202000100010202000102020000048c09050406090104240901042f0903
+042b090704170903040509030405090304050903042309030410090104060903042a0000
+0202000100010202000102020000048c0906042c0901042e0905042a0907041609050403
+0905040309050403090504210905040d0903040509050429000002020001000102020001
+02020000048c090104020902042b0901042d09020401090204290901041b090204010902
+040109020401090204010902040109020401090204010902041f090204010902040c0903
+0404090204010902042800000202000100010202000102020000040c0903040509030403
+090104000904040109010403090104030903040309010400090404470901040309010402
+090304040901040009040403090304050903040409050404090304030901040009040401
+090104030901040b09020408090304030901040009020417090104210901040109010403
+090104010901040309010401090104030901041f090104030901040e0901040409010403
+090104010901040009020403090104000901040009000415000002020001000102020001
+02020000040b090504030905040209070401090104030901040209050402090704470901
+040309010402090304040907040209050403090504030905040309050402090704010901
+04030901040c0902040609050402090604160905041c0902040109010403090104010901
+040309010401090104030901041f090204010902040e0901040509010401090104020906
+04020907041400000202000100010202000102020000040a090104030901040109020401
+0902040109030405090104030901040109020401090204010903044b0901040309010404
+090104040903040509020401090204010902040109020403090104050902040109020401
+09030405090104030901040d09020404090204010902040109020401090204150906041a
+090204020901040009010400090104010901040009010400090104010901040009010400
+090104200906040409010407090104060903040309020401090204010901040009010400
+0901041400000202000100010202000102020000040a0902040609010403090104010902
+0406090104030901040109010403090104010902044c0901040309010404090104040902
+040609010403090104010901040909010405090104030901040109020406090104030901
+040f090104030901040309010401090104030901041a0902041809020403090104000901
+040009010401090104000901040009010401090104000901040009010421090204000901
+040409010407090104050905040209010403090104010901040009010400090104140000
+0202000100010202000102020000040b0905040209070401090104070901040309010401
+090704010901044d09010403090104040901040409010407090704010901040909010405
+09010403090104010901040709010403090104100901040209070401090104030901041b
+09010417090204040901040309010401090104030901040109010403090104250901040e
+090104040902040109020401090104030901040109010400090104000901041400000202
+000100010202000102020000040f09020401090704010901040709010403090104010907
+04010901044d090104030901040409010404090104070907040109010409090104050901
+0403090104010901040709010403090104100902040109070401090104030901041b0901
+0416090204050901040309010401090104030901040109010403090104250901040e0901
+040409010403090104010901040309010401090104000901040009010414000002020001
+00010202000102020000040a090104030901040109020406090104080901040109010402
+090204060901044d09010402090204040901040409010407090204060902040109020403
+09010405090204010902040109010407090204010902040b090204010902040109020406
+090204010902041509020401090204150902040609020401090204010902040109020401
+090204010902041f090204010902040e0901040409020401090204010902040109020401
+09010400090104000901041400000202000100010202000102020000040b090504030905
+04020901040909030404090504020901044d090604030905040209010408090504030905
+04040904040309050402090104080906040c090504030905040209060417090504050901
+040e09070402090504030905040309050421090504050901040709010405090504020906
+040209010400090104000901041400000202000100010202000102020000040c09030405
+090304030901040a09010406090304030901044d09050404090504020901040909030405
+09030406090304040903040309010409090204000901040d090304050903040309010400
+09020419090304060901040e090704030903040509030405090304230903040609010407
+090104060903040309010400090204030901040009010400090104140000020200010001
+020200010202000004e20901041f090104290900047c0901042400000202000100010202
+00010202000004e20901041f090104280900047d09010424000002020001000102020001
+0202000004dd09050420090104a7090104240000020200010001020200010202000004dd
+09040421090104a709010424000002020001000102020001020200ff00d7020200010001
+02020001020200ff00d702020001000102020001020200ff00d702020001000102020001
+020200ff00d702020001000102020001020200ff00d702020001000102020001020200ff
+00d702020001000102020001020200ff00d70202000100010202000102ff02dd00010001
+0202000102ff02dd00010001020200ff00e10001020200ff00e1000102ff02e4000102ff
+02e400ff00e600ff00e600ff00e600ff00e600ff00e6
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 486 377
+%%EOF

+ 422 - 0
docs/pics/ide/gotoline.eps

@@ -0,0 +1,422 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (gotoline.eps)
+%%CreationDate: (Wed Nov 15 21:36:00 2000)
+%%BoundingBox: 0 0 397 137
+%%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 398 138
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+398 138
+12.000000
+398 138
+1
+0
+0
+8
+c0c0c0
+00fc00
+f8fcf8
+000080
+008000
+000000
+f8fc00
+00fcf8
+00ff008d00ff008d00ff008d001f010500af020100b50016020300040105000402030069
+0203000f0201001a02030007020100b500160203000401050004020300680205000e0201
+001a020300bf0016020100060105000602010067020200010202000d0201001c020100bf
+021300020201000601050006020100020259000a02010009020300040205000402030010
+020100050203000402010000020200050203000c02930213000202010006010500060201
+00020259000a0201000802050003020500030205000f0201000502030004020600030205
+000b02930203001202010006010500060201006702010007020200010202000302010005
+020200010202000e02010007020100040202000102020001020200010202009c02010203
+001202010006010500060201006702010001020300010201000302010003020100050201
+00030201000e02010007020100040201000302010001020100030201009c020102030001
+020d00020201000601050006020100020259000a02010001020300010201000302010003
+02010005020100030201000e020100070201000402010003020100010207000a028f0001
+020102030001020d00020201000601050006020100020259000a02010003020100010201
+00030201000302010005020100030201000e020100070201000402010003020100010207
+000a028f00010201020300010202000d0201000601050006020100670202000102020001
+020200010202000302010005020200010202000e02010007020100040201000302010001
+0202009c020200010201020300010202000d020100060105000602010068020600020205
+0004020400030205000d0205000302050002020100030201000202050098020200010201
+020300010202000d02010006010500060201006902020000020100030203000602030004
+0203000e0205000302050002020100030201000302030099020200010201020300010202
+000d02010013020100ff0057020200010201020300010202000d0203000f020300ff0057
+020200010201020300010202000d0203000f020300ff0057020200010201020300010202
+00ff007d02020001020102030001020200ff007d02020001020102030001020200ff007d
+02020001020102030001020200ff007d02020001020102030001020200ff007d02020001
+020102030001020200ff007d02020001020102030001020200ff007d0202000102010203
+0001020200ff007d02020001020102030001020200ff007d020200010201020300010202
+00ff007d02020001020102030001020200ff007d02020001020102030001020200ff007d
+02020001020102030001020200ff007d02020001020102030001020200ff007d02020001
+020102030001020200ff007d02020001020102030001020200ff007d0202000102010203
+0001020200ff007d02020001020102030001020200ff007d020200010201020300010202
+00ff007d02020001020102030001020200ff007d02020001020102030001020200ff007d
+02020001020102030001020200ff0004030904090331041d001402020001020102030001
+020200ff0004030904090331041d001402020001020102030001020200ff000403090409
+0331040d0501040d0014020200010201020300010202009002010071030904090331040d
+0501040d0014020200010201020300010202001f0207000d0201004c0203000702010040
+0201002e0309040302010403033104020503040605010406050304020014020200010201
+020300010202001f0207000d0201004c0203004a0201002e030904010203040303310402
+0503040605010406050304020014020200010201020300010202001f020100130201004e
+0201004a0201002e03090401020304030331040205010408050104080501040200140202
+00010201020300010202001f020100070201000002020004020500040203000302010000
+0204000b020100000202000502030003020100030201000e020100050203000402010000
+020200050203000d06010000060200030201000302010001020100000201000002000002
+020100000202000502030003020100000204001403090403020104030331040205010408
+05010408050104020014020200010201020300010202001f020100070206000302050003
+020500020207000b0206000302050002020100030201000e020100050203000402060003
+0205000c0606000202010003020100010207000102060003020500020207001403090403
+02010403033104020501040805010408050104020014020200010201020300010202001f
+0205000302020001020200030201000502020001020200010203000f0202000102020001
+0202000102020001020100030201000e0201000702010004020200010202000102020001
+0202000b0602000106020001020100030201000102010000020100000201000102020001
+020200010202000102020001020300180309040302010403033104020501040805010408
+050104020014020200010201020300010202001f02050003020100030201000302010005
+020100030201000102020010020100030201000102010003020100010201000002010000
+0201000e02010007020100040201000302010001020100030201000b0601000306010001
+020100030201000102010000020100000201000102010003020100010201000302010001
+020200190309040302010403033104020501040805010408050104020014020200010201
+020300010202001f02010007020100030201000302010005020700010201001102010003
+020100010207000102010000020100000201000e02010007020100040201000302010001
+0207000b0601000306010001020100030201000102010000020100000201000102010003
+02010001020700010201001a030904030201040303310402050104080501040805010402
+0014020200010201020300010202001f0201000702010003020100030201000502070001
+020100110201000302010001020700010207000e02010007020100040201000302010001
+0207000b0601000306010001020100030201000102010000020100000201000102010003
+02010001020700010201001a030904030201040303310402050104080501040805010402
+0014020200010201020300010202001f0201000702010003020100030201000502020006
+020100110201000302010001020200060207000e02010007020100040201000302010001
+020200100601000306010001020200010202000102010000020100000201000102020001
+02020001020200060201001a030904030201040303310402050104050507040505010402
+0014020200010201020300010202001f0207000102010003020100030204000302050002
+02010011020100030201000202050002020200010202000c020500030205000202010003
+020100020205000c06010003060100020206000102010000020100000201000102060003
+020500020201001a03090403020104030331040205010406050504060501040200140202
+00010201020300010202001f020700010201000302010004020300040203000302010011
+020100030201000302030004020000030200000d02050003020500020201000302010003
+0203000d0601000306010003020200000201000102010000020100000201000102010000
+02020005020300030201001a030904030201040303310402050104070503040705010402
+001402020001020102030001020200ff0004030904090331040205010408050104080501
+0402001402020001020102030001020200ff000403090409033104020503040f05030402
+001402020001020102030001020200ff000403090409033104020503040f050304020014
+02020001020102030001020200ff0004030904090331041d001402020001020102030001
+020200ff007d02020001020102030001020200ff007d02020001020102030001020200ff
+007d02020001020102030001020200ff007d02020001020102030001020200ff007d0202
+0001020102030001020200ff007d02020001020102030001020200ff007d020200010201
+02030001020200ff007d02020001020102030001020200ff007d02020001020102030001
+020200ff007d02020001020102030001020200ff007d02020001020102030001020200ff
+007d02020001020102030001020200ff007d02020001020102030001020200ff007d0202
+0001020102030001020200ff007d02020001020102030001020200ff007d020200010201
+02030001020200ff007d02020001020102030001020200ff007d02020001020102030001
+020200ff007d02020001020102030001020200ff007d0202000102010203000102020050
+044f0045044f00460202000102010203000102020050044f0045044f0046020200010201
+0203000102020050044f0045044f00460202000102010203000102020050044f0045044f
+00460202000102010203000102020050042007030403060104020601041f0045040c0503
+042c0503040d00460202000102010203000102020050041f07050402060104010602041f
+0045040b0505042b0503040d00460202000102010203000102020050041e070204010702
+040106010400060204200045040a050204010502042c0501040d00460202000102010203
+000102020050041e0701040307010401060404210045040a050104080504040305010400
+0502040505030405050304060501040d00460202000102010203000102020050041e0701
+040307010401060304220045040a05010408050504020506040305050403050504050501
+040d00460202000102010203000102020050041e0701040307010401060204230045040a
+0501040d050104010502040105020401050204010502040105020401050204040501040d
+00460202000102010203000102020050041e0701040307010401060304220509003b040a
+050104080506040105010403050104010501040705010403050104040501040d0509003c
+0202000102010203000102020050041e0701040307010401060404210509003b040a0501
+040705070401050104030501040105010407050704040501040d0509003c020200010201
+0203000102020050041e070104030701040106010400060204200509003b040a05010407
+0501040305010401050104030501040105010407050704040501040d0509003c02020001
+02010203000102020050041e0702040107020401060104010602041f0509003b040a0502
+040105020401050104030501040105010403050104010502040105020401050204090501
+040d0509003c0202000102010203000102020050041f07050402060104020602041e0509
+003b040b0505040205070401050104030501040205050403050504030505040b0509003c
+0202000102010203000102020050042007030403060104030601041e0509003b040c0503
+040405060401050104030501040305030405050304040505040b0509003c020200010201
+0203000102020050044f0509003b044f0509003c0202000102010203000102020050044f
+0509003b044f0509003c0202000102010203000102020050044f0509003b044f0509003c
+0202000102010203000102020050044f0509003b044f0509003c02020001020102030001
+0202005a054f0045054f003c020200010201020300010202005a054f0045054f003c0202
+00010201020300010202005a054f0045054f003c020200010201020300010202005a054f
+0045054f003c020200010201020300010202005a054f0045054f003c0202000102010203
+00010202005a054f0045054f003c020200010201020300010202005a054f0045054f003c
+020200010201020300010202005a054f0045054f003c020200010201020300010202005a
+054f0045054f003c020200010201020300010202005a054f0045054f003c020200010201
+02030001020200ff007d02020001020102030001020200ff007d02020001020102030001
+020200ff007d02020001020102030001020200ff007d02020001020102030001020200ff
+007d02020001020102030001020200ff007d02020001020102030001020200ff007d0202
+0001020102030001020200ff007d02020001020102030001020200ff007d020200010201
+02030001020200ff007d02020001020102030001020200ff007d02020001020102030001
+020200ff007d02020001020102030001020200ff007d02020001020102030001020200ff
+007d02020001020102030001020200ff007d02020001020102030001020200ff007d0202
+0001020102030001020200ff007d0202000102010203000102ff02830001020102030001
+02ff028300010201020300ff00870201020300ff0087020102ff028d02ff028d00ff008d
+00ff008d00ff008d00ff008d00ff008d
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 397 137
+%%EOF

+ 424 - 0
docs/pics/ide/params.eps

@@ -0,0 +1,424 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (params.eps)
+%%CreationDate: (Wed Nov 15 21:36:00 2000)
+%%BoundingBox: 0 0 536 139
+%%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 537 140
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+537 140
+12.000000
+537 140
+1
+0
+0
+9
+000080
+c0c0c0
+00fc00
+f8fcf8
+008000
+000000
+f8fc00
+f8fc78
+00fcf8
+00ff00ff001801ff01ff011801ff01ff011801ff01ff0118011f020501ff01f201160303
+0104020501040303018503050187030101d3011603030104020501040303018503060186
+030101d301160301010602050106030101850301010203020185030101d3031301020301
+010602050106030101020377010a03010103030101010301010003040103030301050303
+010303010100030401020304010303010100030101000300010c03010100030201040304
+010303010100030401020304010303010100030101000300010403030104030501040303
+010303010100030401030303010c03a6031301020301010602050106030101020377010a
+030101030301010103070102030501030305010203070102030501020307010b03060103
+03050102030701020305010203070102030501030305010303050102030701020305010b
+03a603030112030101060205010603010185030101020302010103030105030201010302
+010103020101030201010303010b0301010103010100030101000301010b030201010302
+0107030101010303010b0301010103010100030101000301010103020101030201030301
+010503020101030201010303010503010103030101b00300030301120301010602050106
+030101850306010203020106030101030301010103010103030101010302010703060101
+03010100030101000301010b030101030301010203060101030201070306010103010100
+0301010003010101030101030301010303010105030101030301010103020106030201b5
+030003030101030d01020301010602050106030101020377010a03050103030101070301
+0103030101010301010303010101030101070307010103010100030101000301010b0301
+010303010101030701010301010703070101030101000301010003010101030701030301
+010503070101030101080305010b03a30101030003030101030d01020301010602050106
+030101020377010a03010107030101070301010303010101030101030301010103010107
+030101030301010103010100030101000301010b03010103030101010301010303010101
+030101070301010303010101030101000301010003010101030701030301010503070101
+0301010c0302010a03a301010300030301010302010d0301010602050106030101850301
+010703010107030201010302010103020101030201010301010703010103030101010301
+0100030101000301010b0302010103020101030101030301010103010107030101030301
+010103010100030101000301010103020108030101050302010603010107030101030301
+01ab030201010300030301010302010d0301010602050106030101850301010703010108
+0305010303060101030101070307010103010100030101000301010b0306010203070101
+030101070307010103010100030101000301010203050104030401030305010203010108
+030501ac030201010300030301010302010d030101060205010603010185030101070301
+0109030301050302010003010101030101080306010103010100030101000301010b0301
+010003020104030601010301010803060101030101000301010003010103030301060303
+01040303010303010109030301ad030201010300030301010302010d03010113030101a9
+03010129030101ff010b030201010300030301010302010d0303010f030301a803020129
+030101ff010b030201010300030301010302010d0303010f030301a40305012a030101ff
+010b03020101030003030101030201ca0304012b030101ff010b03020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+030201ff01ff010903020101030003030101030201ff01ff010903020101030003030101
+0302019600ff003f0109041d010a030201010300030301010302019600ff003f0109041d
+010a030201010300030301010302019600ff003f0109040d0501040d010a030201010300
+030301010302019600ff003f0109040d0501040d010a0302010103000303010103020115
+060501370301014000ff003f01090402050304060501040605030402010a030201010300
+0303010103020115060601360301014000ff003f01090402050304060501040605030402
+010a030201010300030301010302011506010102060201350301014000ff003f01090402
+050104080501040805010402010a03020101030003030101030201150601010306010102
+030401030301010003040102030401030301010003010100030001040303010403050104
+03030103030101000304012800ff003f01090402050104080501040805010402010a0302
+010103000303010103020115060101030601010203050102030701020305010203070102
+0305010303050103030501020307012800ff003f01090402050104080501040805010402
+010a03020101030003030101030201150601010206020107030101010303010b03010101
+03010100030101000301010103020101030201030301010503020101030201010303012c
+00ff003f01090402050104080501040805010402010a0302010103000303010103020115
+060601030306010103020107030601010301010003010100030101010301010303010103
+0301010503010103030101010302012d00ff003f01090402050104080501040805010402
+010a03020101030003030101030201150605010303070101030101070307010103010100
+03010100030101010307010303010105030701010301012e00ff003f0109040205010408
+0501040805010402010a0302010103000303010103020115060101070301010303010101
+030101070301010303010101030101000301010003010101030701030301010503070101
+0301012e00ff003f01090402050104080501040805010402010a03020101030003030101
+030201150601010703010103030101010301010703010103030101010301010003010100
+030101010302010803010105030201060301012e00ff003f010904020501040505070405
+05010402010a030201010300030301010302011506010107030701010301010703070101
+0301010003010100030101020305010403040103030501020301012e00ff003f01090402
+050104060505040605010402010a03020101030003030101030201150601010803060101
+03010108030601010301010003010100030101030303010603030104030301030301012e
+00ff003f01090402050104070503040705010402010a0302010103000303010103020196
+00ff003f01090402050104080501040805010402010a0302010103000303010103020196
+00ff003f010904020503040f05030402010a030201010300030301010302019600090709
+00ff002b010904020503040f05030402010a030201010300030301010302019600090709
+00ff002b0109041d010a03020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff010903020101030003030101030201ff01ff01090302010103000303
+0101030201ff01ff0109030201010300030301010302016e044f018b044f016e03020101
+0300030301010302016e044f018b044f016e030201010300030301010302016e044f018b
+044f016e030201010300030301010302016e044f018b044f016e03020101030003030101
+0302016e042008030403060104020601041f018b040c0503042c0503040d016e03020101
+0300030301010302016e041f08050402060104010602041f018b040b0505042b0503040d
+016e030201010300030301010302016e041e08020401080204010601040006020420018b
+040a050204010502042c0501040d016e030201010300030301010302016e041e08010403
+0801040106040421018b040a050104080504040305010400050204050503040505030406
+0501040d016e030201010300030301010302016e041e080104030801040106030422018b
+040a05010408050504020506040305050403050504050501040d016e0302010103000303
+01010302016e041e080104030801040106020423018b040a0501040d0501040105020401
+05020401050204010502040105020401050204040501040d016e03020101030003030101
+0302016e041e08010403080104010603042205090181040a050104080506040105010403
+050104010501040705010403050104040501040d05090164030201010300030301010302
+016e041e08010403080104010604042105090181040a0501040705070401050104030501
+040105010407050704040501040d05090164030201010300030301010302016e041e0801
+040308010401060104000602042005090181040a05010407050104030501040105010403
+0501040105010407050704040501040d05090164030201010300030301010302016e041e
+0802040108020401060104010602041f05090181040a0502040105020401050104030501
+040105010403050104010502040105020401050204090501040d05090164030201010300
+030301010302016e041f08050402060104020602041e05090181040b0505040205070401
+050104030501040205050403050504030505040b05090164030201010300030301010302
+016e042008030403060104030601041e05090181040c0503040405060401050104030501
+040305030405050304040505040b05090164030201010300030301010302016e044f0509
+0181044f05090164030201010300030301010302016e044f05090181044f050901640302
+01010300030301010302016e044f05090181044f05090164030201010300030301010302
+016e044f05090181044f050901640302010103000303010103020178054f018b054f0164
+0302010103000303010103020178054f018b054f01640302010103000303010103020178
+054f018b054f01640302010103000303010103020178054f018b054f0164030201010300
+0303010103020178054f018b054f01640302010103000303010103020178054f018b054f
+01640302010103000303010103020178054f018b054f0164030201010300030301010302
+0178054f018b054f01640302010103000303010103020178054f018b054f016403020101
+03000303010103020178054f018b054f016403020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+03020101030003030101030201ff01ff010903020101030003030101030201ff01ff0109
+0302010103000303010103ff03ff030f010103000303010103ff03ff030f010103000303
+01ff01ff01130300030301ff01ff0113030003ff03ff031803ff03ff031801ff01ff0118
+01ff01ff011801ff01ff011801ff01ff011801ff01ff011801ff01ff0118
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 536 139
+%%EOF

+ 748 - 0
docs/pics/ide/proginfo.eps

@@ -0,0 +1,748 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (proginfo.eps)
+%%CreationDate: (Wed Nov 15 21:36:00 2000)
+%%BoundingBox: 0 0 538 180
+%%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 539 181
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+539 181
+12.000000
+539 181
+1
+0
+0
+6
+000080
+c0c0c0
+00fc00
+f8fcf8
+000000
+008080
+00ff00ff001a000101ff01ff0118000101ff01ff0118000101ff01f70201011e0001011f
+020501ff0127030101a60203011d0001011603030104020501040303017b0305014a0305
+010f0304012b030101080301019c03030104020501040303011300010116030301040205
+01040303017b030601490305010e0305012b030101a70303010302070103030301130001
+011603010106020501060301017b030101020302014a030101100301012f030101a70301
+010802010108030101130001010003120102030101060205010603010102036d010a0301
+010303010101030101000304010303030105030301030301010003040102030401030301
+0100030101000300010f0301010403010100030201050301010703030103030101000304
+010103010100030101000300010303040104030501030303010603030103030101000302
+010c03770102030101080201010803010102031000010100031201020301010602050106
+03010102036d010a03010103030101010307010203050103030501020307010203050102
+0307010e0301010403060102030701020305010203070101030701020305010303050103
+03030105030501020306010b037701020301010802010108030101020310000101000302
+011203010106020501060301017b03010102030201010303010503020101030201010302
+0101030201010303010b0301010103010100030101000301010e03010104030201010302
+010103070101030201010302010103030105030101000301010003010107030101030301
+010803010104030201010302010103020101030201850301010802010108030101120300
+000101000302011203010106020501060301017b03060102030201060301010303010101
+0301010303010101030201070306010103010100030101000301010e0301010403010103
+030101030301010503010103030101010302010603010100030101000301010203060103
+030101080301010403010103030101010301010303010185030101080201010803010112
+03000001010003020101030d0102030101060205010603010102036d010a030501030301
+010703010103030101010301010303010101030101070307010103010100030101000301
+010e03010104030101030301010303010105030101030301010103010107030101000301
+0100030101010307010303010108030101040301010303010101030101030301010a0377
+0102030101080201010803010102030d010103000001010003020101030d010203010106
+0205010603010102036d010a030101070301010703010103030101010301010303010101
+03010107030101030301010103010100030101000301010e030101040301010303010103
+030101050301010303010101030101070301010003010100030101010301010303010103
+03010108030101040301010303010101030101030301010a037701020301010802010108
+03010102030d0101030000010100030201010302010d03010106020501060301017b0301
+010703010107030201010302010103020101030201010301010703010103030101010301
+0100030101000301010e0301010403010103030101030301010503020101030201010301
+010703010100030101000301010103010103030101030301010803010104030201010302
+0101030101030301018503010108020101080301010d0302010103000001010003020101
+0302010d03010106020501060301017b0301010703010108030501030306010103010107
+0307010103010100030101000301010c0305010203010103030101030301010603050102
+030101070301010003010100030101010307010303040103030501030305010203010103
+0301018503010108020101080301010d03020101030000010100030201010302010d0301
+0106020501060301017b0301010703010109030301050302010003010101030101080306
+010103010100030101000301010c03050102030101030301010303010107030301030301
+010703010100030101000301010203060104030301030305010403030103030101030301
+018503010108020101080301010d03020101030000010100030201010302010d03010113
+0301019f030101ff011b03010108020101080301010d0302010103000001010003020101
+0302010d0303010f0303019e030201ff011b0303010f0303010d03020101030000010100
+030201010302010d0303010f0303019a030501ff011c0303010f0303010d030201010300
+0001010003020101030201c0030401ff01430302010103000001010003020101030201ff
+01ff01090302010103000001010003020101030201ff01ff010903020101030000010100
+03020101030201ff01ff01090302010103000001010003020101030201ff01ff01090302
+0101030000010100030201010302016704030137040101290401010c0403014004010109
+040101230401010704010112040301050403018603020101030000010100030201010302
+016604050136040101290401010c04030140040101090401012304010107040101120403
+010504030186030201010300000101000302010103020165040201010402013504010129
+0401010e0401014104010108040101240401010604010114040101070401018603020101
+030000010100030201010302016504010107040101030401010104010100040401010401
+0100040401030403010304010100040201040405010c0401010004010100040001040403
+01050402010004010101040101030401010404010106040301230403010e040101070405
+010404030103040101000401010004000102040101000402010404010106040101000402
+01050403010604010107040101060403010d040101000402010404040105040301530302
+010103000001010003020101030201650401010704010103040101010407010104070102
+04050102040601030405010c040701020405010304060101040101030401010404010105
+040501210405010e04010106040501030405010204070101040601040401010504060103
+0405010504010107040101050405010c0406010304050103040501520302010103000001
+010003020101030201650401010704010103040101010403010504030105040201010402
+010104020101040201030401010f04010100040101000401010104020101040201010402
+010104020101040101030401010404010104040201010402010e0401010e040201010402
+010404010106040101070401010504020101040201010401010004010100040101010402
+010104020103040101050402010104020101040201010402010404010107040101040402
+01010402010b040201010402010704010101040101030401015103020101030000010100
+030201010302016504010107040101030401010104020106040201060401010304010101
+04010103040101030401010f040101000401010004010101040101030401010104010103
+04010101040101030401010404010104040101030401010e0401010e0401010a04010107
+040101060401010504010103040101010401010004010100040101010401010304010104
+04010104040101030401010104010103040101040401010704010104040101030401010b
+040101030401010204060101040201560302010103000001010003020101030201650401
+0107040101030401010104010107040101070407010104010103040101030401010f0401
+010004010100040101010401010304010101040101030401010104010103040101040401
+01040407011f040101140401010604010105040701010401010004010100040101010401
+010304010104040101040401010304010101040701040401010704010104040101030401
+010b04010103040101010407010204050152030201010300000101000302010103020165
+04010107040101030401010104010107040101070407010104010103040101030401010f
+040101000401010004010101040101030401010104010103040101010401010304010104
+040101040407011f04010115040101050401010504070101040101000401010004010101
+040101030401010504010103040101030401010104070104040101070401010404010103
+0401010b0401010304010101040101030401010604020151030201010300000101000302
+010103020165040201010402010104020101040201010401010704010107040201060401
+0103040101030401010f0401010004010100040101010402010104020101040201010402
+010104020101040201040401010404020124040201010402010f04010105040101050402
+010604010100040101000401010104020101040201050401010304010103040101010402
+01090401010704010104040201010402010b040201010402010104010103040101010401
+010304010151030201010300000101000302010103020166040501030406010104010107
+040101080405010204010103040101030404010c04010100040101000401010204050103
+0406010204060102040501030405010f0401010f04050105040101090401010404040103
+040501020401010004010100040101010406010704010102040101030401010204050103
+040501030405010304050105040101040406010204070102040501520302010103000001
+010003020101030201670403010504020100040101010401010704010109040301030401
+0103040101040403010c0401010004010100040101030403010504020100040101030402
+010004010102040501040403011004010110040301060401010904010105040301040403
+010304010100040101000401010104010100040201080401010204010103040101030403
+010404050103040501040403010604010104040101000402010404060103040301530302
+010103000001010003020101030201ff01290401011f0401010d0401013d0401016b0302
+010103000001010003020101030201ff01290401011f0401010d0401013d0401016b0302
+010103000001010003020101030201ff014b0401014d0401016b03020101030000010100
+03020101030201ff014b0401014d0401016b0302010103000001010003020101030201ff
+01ff01090302010103000001010003020101030201ff01ff010903020101030000010100
+03020101030201ff01ff01090302010103000001010003020101030201ae040101ff0158
+0302010103000001010003020101030201650401011d0401012604010106040101290401
+012b040301f30302010103000001010003020101030201650401011d0401012f04010129
+0401012a040501f20302010103000001010003020101030201650401011d0401012f0401
+01290401012904020101040201f103020101030000010100030201010302016504010108
+04040105040301040405010e040301030401010304010102040301050405010e04030105
+0403010504020100040101030403012104010103040101f1030201010300000101000302
+0101030201650401010804050103040501030405010d0405010204020101040201020403
+01050405010d0405010304050103040601020405012004010103040101f1030201010300
+0001010003020101030201650401010d0401010104010103040101030401010f04020101
+0402010204050105040101060401010f0402010104020101040201010402010104020101
+04020101040201010402010e0401010e0401010004010100040101f10302010103000001
+010003020101030201650401010804060101040201080401010f04010103040101030403
+0106040101060401010f0401010704010103040101010401010304010101040101030401
+010e0401010e0401010004010100040101f1030201010300000101000302010103020165
+0401010704070102040501040401010f0407010404010107040101060401010f04010107
+040101030401010104010103040101010407011f04010103040101f10302010103000001
+01000302010103020165040101070401010304010106040201030401010f040701030403
+0106040101060401010f04010107040101030401010104010103040101010407011f0401
+0103040101f1030201010300000101000302010103020165040101070401010304010101
+04010103040101030401010f0402010704050105040101060401010f0402010104020101
+040201010402010104020101040201010402012404020101040201f10302010103000001
+010003020101030201650407010104070102040501040404010d04050102040201010402
+0102040501040404010d0405010304050103040601020405010f0401010f040501f20302
+010103000001010003020101030201650407010204060103040301060403010e04030103
+0401010304010102040501050403010e0403010504030105040201000401010304030110
+04010110040301f30302010103000001010003020101030201ff01ff0109030201010300
+0001010003020101030201ff01ff01090302010103000001010003020101030201ff01ff
+01090302010103000001010003020101030201ff01ff0109030201010300000101000302
+0101030201ff01ff01090302010103000001010003020101030201ff01ff010903020101
+03000001010003020101030201ff01ff0109030201010300000101000302010103020172
+040101ff01940302010103000001010003020101030201540401011b040101050403010e
+040101080403018704010108040301050403010304010102040101c00302010103000001
+01000302010103020153040301220403010e040101080403018704010101040101030405
+01030405010204010101040201c003020101030000010100030201010302015204010101
+040101230401010e0401010a040101870401010104010102040201010402010104020101
+0402010104010100040201c1030201010300000101000302010103020151040101030401
+010104010103040101020404010404030107040101050404010304010100040201060401
+01060403010d040101000401010004000104040301030401010004010100040001040403
+010304010100040401010401010304010134040101010401010204010103040101070401
+0101040401c2030201010300000101000302010103020151040101030401010104010103
+040101020405010304030107040101050405010204060105040101050405010c04070102
+040501020407010204050102040701010401010304010134040101010401010204010103
+0401010604020101040301c3030201010300000101000302010103020151040101030401
+0101040101030401010704010104040101070401010a0401010104020101040201040401
+0104040201010402010b0401010004010100040101010402010104020101040101000401
+010004010101040201010402010104030105040101030401010e04010122040101020401
+010204010100040101000401010504020102040201c40302010103000001010003020101
+030201510401010304010101040101030401010204060104040101070401010504060101
+040101030401010404010104040101030401010b04010100040101000401010104010103
+04010101040101000401010004010101040101030401010104020106040101030401010e
+040101220407010104010100040101000401010404020103040301c30302010103000001
+010003020101030201510407010104010103040101010407010404010107040101040407
+01010401010304010104040101040407010b040101000401010004010101040701010401
+010004010100040101010401010304010101040101070401010304010133040701010401
+01030401010304020104040401c203020101030000010100030201010302015104070101
+040101030401010104010103040101040401010704010104040101030401010104010103
+04010104040101040407010b040101000401010004010101040701010401010004010100
+040101010401010304010101040101070401010304010138040101020401010304010102
+0402010504010100040201c1030201010300000101000302010103020151040101030401
+010204010101040101020401010304010104040101070401010404010103040101010402
+010104020104040101040402011004010100040101000401010104020106040101000401
+010004010101040201010402010104010107040201010402013804010102040201010402
+01010402010604010101040201c003020101030000010100030201010302015104010103
+04010103040301030407010204050103040501020407010104060103040501030405010c
+040101000401010004010102040501020401010004010100040101020405010204010108
+0406010e0401012704010103040501020407010104010102040201bf0302010103000001
+010003020101030201510401010304010104040101050406010204050103040501030406
+01010401010004020104040501040403010d040101000401010004010103040301030401
+010004010100040101030403010304010109040201000401010e04010127040101040403
+01030407010104010103040101bf0302010103000001010003020101030201ed040101ff
+01190302010103000001010003020101030201ed040101ff011903020101030000010100
+03020101030201e8040501ff011a0302010103000001010003020101030201e8040401ff
+011b0302010103000001010003020101030201ff01ff0109030201010300000101000302
+0101030201ff01ff01090302010103000001010003020101030201ff01ff010903020101
+03000001010003020101030201ff01ff01090302010103000001010003020101030201ff
+01ff01090302010103000001010003020101030201ff01ff010903020101030000010100
+03020101030201ff01ff01090302010103000001010003020101030201ff01ff01090302
+0101030000010100030201010302010004ff04ff04070100030201010300000101000302
+01010302010004ff04ff040701000302010103000001010003020101030201ff01ff0109
+0302010103000001010003020101030201ff01ff01090302010103000001010003020101
+030201ff01ff01090302010103000001010003020101030201ff01ff0109030201010300
+0001010003020101030201ff01ff01090302010103000001010003020101030201ff01ff
+01090302010103000001010003020101030201ff01ff0109030201010300000101000302
+0101030201ff01ff01090302010103000001010003020101030201ff01ff010903020101
+03000001010003020101030201ff01ff01090302010103000001010003020101030201ff
+01ff010800060001010003020101030201ff01ff010800060001010003020101030201ff
+01ff010800060001010003020101030201ff01ff010800060001010003020101030201ff
+01ff010800060001010003020101030201ff01ff010800060001010003020101030201ff
+01ff010800060001010003020101030201ff01ff010800060001010003020101030201ff
+01ff010800060001010003020101030201ff01ff01080003050100000001010003020101
+030201ff01ff0108000205030001010003020101030201ff01ff01080001050400010100
+03020101030201ff01ff0108000005050001010003020101030201ff01ff010800060001
+010003020101030201ff01ff010800060001010003020101030201ff01ff010800060001
+010003020101030201ff01ff010800060001010003020101030201ff01ff010800060001
+010003020101030201ff01ff010800060001010003020101030201ff01ff010800060001
+010003020101030201ff01ff010800000503000005000001010003020101030201ff01ff
+01080503000005010001010003020101030201ff01ff0108050200000502000101000302
+0101030201ff01ff01080501000005030001010003020101030201ff01ff010805000000
+050300000001010003020101030201ff01ff010800000503000005000001010003020101
+030201ff01ff01080503000005010001010003020101030201ff01ff0108050200000502
+0001010003020101030201ff01ff01080501000005030001010003020101030201ff01ff
+010805000000050300000001010003020101030201ff01ff010800000503000005000001
+010003020101030201ff01ff01080503000005010001010003020101030201ff01ff0108
+0502000005020001010003020101030201ff01ff01080501000005030001010003020101
+030201ff01ff010805000000050300000001010003020101030201ff01ff010800000503
+000005000001010003020101030201ff01ff010805030000050100010100030201010302
+01ff01ff01080502000005020001010003020101030201ff01ff01080501000005030001
+010003020101030201ff01ff010805000000050300000001010003020101030201ff01ff
+010800060001010003020101030201ff01ff010800060001010003020101030201ff01ff
+010800060001010003020101030201ff01ff010800060001010003020101030201ff01ff
+010800060001010003020101030201ff01ff010800060001010003020101030201ff01ff
+010800060001010003020101030201ff01ff010800060001010003020101030201ff01ff
+010800060001010003020101030201ff01ff0108000005050001010003020101030201ff
+01ff0108000105040001010003020101030201ff01ff0108000205030001010003020101
+030201ff01ff01080003050100000001010003020101030201ff01ff0108000600010100
+03020101030201ff01ff010800060001010003020101030201ff01ff0108000600010100
+03020101030201ff01ff010800060001010003020101030201ff01ff0108000600010100
+03020101030201ff01ff010800060001010003020101030201ff01ff0108000600010100
+0302010103020100000a0503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000901030201010000010100030201010302010000090503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000a01030201010000010100030201010302010000070500000005020000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050000000500
+000701030201010000010100030201010302010000060501000005010000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050100000501
+000601030201010000010100030201010302010000050502000005000000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050200000502
+000501030201010000010100030201010302010000040503000105030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300040103
+020101000001010003020101030201000003050400000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000105040003010302010100
+000101000302010103030002050500000502000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005000000050500020103020101000001
+010003020101030300010506000005010000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050100000506000102050100000101000302
+010500000507000005000000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050200000507000002050100000101000302010500010506
+000105030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050600010106000101000308000205050000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300000503000005030000
+050300000503000005030000050300000503000005030000050300010505000201060001
+010003080003050400000502000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005000000050400030106000101090004050300000501
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005010000050300040106000101090005050200000500000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005020000050200050106
+000101090006050100010503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005010006010600010109000705000000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300010500
+000701060001010900090502000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005000009010600010109000905010000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050100090106
+000101090009050000000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+000005030000050300000503000005030000050300000503000005030000050300000503
+00000503000005030000050200090106
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 538 180
+%%EOF

+ 807 - 0
docs/pics/ide/replace.eps

@@ -0,0 +1,807 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (replace.eps)
+%%CreationDate: (Wed Nov 15 21:36:00 2000)
+%%BoundingBox: 0 0 557 359
+%%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 558 360
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+558 360
+12.000000
+558 360
+1
+0
+0
+9
+000080
+c0c0c0
+00fc00
+f8fcf8
+008000
+000000
+f8fc00
+008080
+00fcf8
+00ff00ff002d01ff01ff012d01ff01ff012d01ff01ff012d0120020501ff01ff01060117
+0303010402050104030301c103050118030301ff011801170303010402050104030301c1
+03060117030301ff011801170301010602050106030101c10301010203020118030101ff
+011801010312010203010106020501060301010203b3010a030101030301010303030103
+03010100030201060301010503040105030301050303010c03ec01010312010203010106
+020501060301010203b3010a030101030301010203050102030601050301010503050103
+030501030305010b03ec0101030201120301010602050106030101c10301010203020101
+030201010302010103020101030201040301010a03010101030201010302010103020101
+030201f603000101030201120301010602050106030101c1030601020301010303010101
+030101030301010403010105030601010301010703010103030101f60300010103020101
+030d010203010106020501060301010203b3010a03050103030701010301010303010104
+0301010403070101030101070307010a03e901010300010103020101030d010203010106
+020501060301010203b3010a030101020301010203070101030101030301010403010104
+0301010303010101030101070307010a03e9010103000101030201010302010d03010106
+02050106030101c103010103030101010302010603020101030201040301010403010103
+030101010302010103020101030201f60302010103000101030201010302010d03010106
+02050106030101c103010103030101020305010203060103030501020307010203050103
+030501f20302010103000101030201010302010d0301010602050106030101c103010103
+03010103030301030301010003020104030501030306010303030105030301f303020101
+03000101030201010302010d03010113030101d5030101ff011f03020101030001010302
+01010302010d0303010f030301d5030101ff011f0302010103000101030201010302010d
+0303010f030301d5030101ff011f030201010300010103020101030201fb030101ff011f
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201a000ff0049041d01140302010103000101
+03020101030201a000ff0049041d0114030201010300010103020101030201a000ff0049
+040d0501040d01140302010103000101030201010302017c0301012100ff0049040d0501
+040d01140302010103000101030201010302011f06070117030101110301011c03040104
+030101140301010a00ff0049040205030406050104060503040201140302010103000101
+030201010302011f06070117030101110301011b0305011b0301010a00ff004904020503
+040605010406050304020114030201010300010103020101030201220601011a03010111
+0301011b0301011f0301010a00ff00490402050104080501040805010402011403020101
+030001010302010103020122060101060303010303010103030101020305010d03050104
+0303010f03010106030301040301010003020105030201000301010a00ff004904020501
+040805010408050104020114030201010300010103020101030201220601010503050102
+03020101030201020305010d030501030305010c0307010203030104030601030306010a
+00ff00490402050104080501040805010402011403020101030001010302010103020122
+060101040302010103020102030501040301011103010105030201010302010b03070104
+030101040302010103020101030201010302010a00ff0049040205010408050104080501
+040201140302010103000101030201010302012206010104030101030301010303030105
+0301011103010105030101030301010d0301010803010104030101030301010103010103
+0301010a00ff004904020501040805010408050104020114030201010300010103020101
+030201220601010403070104030101060301011103010105030101030301010d03010108
+030101040301010303010101030101030301010a00ff0049040205010408050104080501
+040201140302010103000101030201010302012206010104030701030303010503010111
+03010105030101030301010d03010108030101040301010303010101030101030301010a
+00ff00490402050104080501040805010402011403020101030001010302010103020122
+0601010403020107030501040301011103010105030201010302010d0301010803010104
+0301010303010101030201010302010a00ff004904020501040505070405050104020114
+03020101030001010302010103020122060101050305010203020101030201030304010e
+030401030305010e030101060305010203010103030101020306010a00ff004904020501
+040605050406050104020114030201010300010103020101030201220601010603030103
+03010103030101040303010f030301040303010f03010106030501020301010303010103
+030201000301010a00ff0049040205010407050304070501040201140302010103000101
+03020101030201a000ff0049040205010408050104080501040201140302010103000101
+03020101030201a000ff004904020503040f050304020114030201010300010103020101
+030201a000ff004904020503040f050304020114030201010300010103020101030201a0
+00ff0049041d0114030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201a000ff0049041d0114
+030201010300010103020101030201a000ff0049041d0114030201010300010103020101
+030201a000ff0049040d0501040d0114030201010300010103020101030201a000ff0049
+040d0501040d01140302010103000101030201010302014706010103060101210501011b
+0501010e00ff004904020503040605010406050304020114030201010300010103020101
+0302014706020102060101210501011b0501010e00ff0049040205030406050104060503
+040201140302010103000101030201010302014706020102060101210501011b0501010e
+00ff00490402050104080501040805010402011403020101030001010302010103020147
+060301010601010305030103050101030501010c05050104050301030501010305010102
+0505010b00ff004904020501040805010408050104020114030201010300010103020101
+03020147060301010601010205050102050101030501010c050501030505010205020101
+050201020505010b00ff0049040205010408050104080501040201140302010103000101
+03020101030201470601010006010100060101010502010105020101050101030501010d
+050101050502010105020102050501040501010e00ff0049040205010408050104080501
+040201140302010103000101030201010302014706010100060101000601010105010103
+0501010105010100050101000501010d050101050501010305010103050301050501010e
+00ff00490402050104080501040805010402011403020101030001010302010103020147
+06010101060301010507010105010100050101000501010d050101050507010405010106
+0501010e00ff004904020501040805010408050104020114030201010300010103020101
+030201470601010106030101050701010507010d0501010505070103050301050501010e
+00ff00490402050104080501040805010402011403020101030001010302010103020147
+0601010206020101050201060507010d0501010505020107050501040501010e00ff0049
+040205010405050704050501040201140302010103000101030201010302014706010102
+0602010205050102050201010502010d050401030505010205020101050201030504010b
+00ff00490402050104060505040605010402011403020101030001010302010103020147
+060101030601010305030104050001030500010f05030104050301030501010305010104
+0503010b00ff004904020501040705030407050104020114030201010300010103020101
+030201a000ff004904020501040805010408050104020114030201010300010103020101
+030201a000ff004904020503040f050304020114030201010300010103020101030201a0
+00ff004904020503040f050304020114030201010300010103020101030201a000ff0049
+041d0114030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+030001010302010103020140050101ed0501012f050101b8030201010300010103020101
+030201210503010f05010108050101e0050501060501012405010108050101b803020101
+0300010103020101030201200505010e050101eb0506012c050101c30302010103000101
+030201010302011f050201010502010d050101eb050101020502012b050101c303020101
+03000101030201010302011f050101030501010105010100050201040505010305030106
+050301030501010005020105050301c10501010305010102050301040501010005040103
+050301050503010405050103050301060503010305010100050201a30302010103000101
+030201010302011f05010103050101010506010305050103050301050505010205060103
+050501c00501010305010102050301040507010205050103050501030505010305030105
+05050102050601a20302010103000101030201010302011f050101030501010105020101
+0502010305010108050101040502010105020101050201010502010105010103050101bf
+050101030501010405010104050301050502010105020101050201010502010305010108
+05010104050201010502010105020101050201a10302010103000101030201010302011f
+050101030501010105010103050101030501010805010104050101030501010105010103
+05010101050201c405010103050101040501010405020106050101030501010105010109
+0501010805010104050101030501010105010103050101a1030201010300010103020101
+0302011f0501010305010101050101030501010305010108050101040501010305010101
+0501010305010102050501c0050101030501010405010104050101070507010105010109
+0501010805010104050101030501010105010103050101a1030201010300010103020101
+0302011f0501010305010101050101030501010305010108050101040501010305010101
+0501010305010106050201bf050101030501010405010104050101070507010105010109
+0501010805010104050101030501010105010103050101a1030201010300010103020101
+0302011f0502010105020101050201010502010305010108050101040502010105020101
+050101030501010105010103050101bf0501010205020104050101040501010705020106
+05020101050201030501010805010104050201010502010105010103050101a103020101
+030001010302010103020120050501020506010405040103050501030505010205010103
+05010102050501c005060103050501020501010805050103050501040504010305050103
+0505010205010103050101a1030201010300010103020101030201210503010305010100
+050201060503010305050104050301030501010305010103050301c10505010405050102
+05010109050301050503010605030103050501040503010305010103050101a103020101
+030001010302010103020129050101ff01f1030201010300010103020101030201290501
+01ff01f103020101030001010302010103020129050101ff01f103020101030001010302
+010103020129050101ff01f10302010103000101030201010302011407ef011307ef0114
+0302010103000101030201010302011407ef011307ef0114030201010300010103020101
+0302011407ef011307ef011403020101030001010302010103020114078f050107110501
+07490113070e0501070e050107cd011403020101030001010302010103020114070c0503
+070f0503070f060307560501070605010708050107490113070d050107100501070f0507
+073906010778011403020101030001010302010103020114070c0503070f0503070e0605
+075e050107540113070c050107120501070e050707390601077801140302010103000101
+0302010103020114070c050107130501070d060207010602075d050107540113070c0500
+07140500070e0501073f06010778011403020101030001010302010103020114070c0501
+07130501070d0601070805040705050307050503070f0503070505030703050107000502
+0705050307040503070505050703050307040501070305010703050307340113070b0501
+070605010703050107050501070d05010709050307030501070005040701050107030501
+070205040703050107000504070306020700060107780114030201010300010103020101
+03020114070c050107130501070d0601070805050703050507030505070d050507030505
+070205060703050507030503070505050703050307040501070305010702050507330113
+070b0501070705010701050107060501070d050107080505070205070701050107030501
+0702050507020507070206060778011403020101030001010302010103020114070c0501
+07130501070d0601070d050107010501070305010701050207010502070b050107030501
+070105020701050207010502070105020701050107030501070405010706050107080501
+0704050107030501070105020701050207320113070b05010708050307070501070d0505
+070305020701050207010503070505010703050107070501070105030705060207010602
+0778011403020101030001010302010103020114070c050107130501070d060107080506
+070105020706050107030501070b05020706050107030501070105010703050107010502
+0709050107060501070805010704050107030501070105010703050107320113070b0501
+0706050707050501070d0505070305010703050107010502070605010700050107000501
+070205060701050207060601070306010778011403020101030001010302010103020114
+070c050107130501070d0601070705070702050507020507070c05050702050707010501
+070305010702050507050501070605010708050107040501070305010701050707320113
+070b05010708050307070501070d05010707050107030501070105010707050107000501
+070005010701050707010501070706010703060107780114030201010300010103020101
+03020114070c050107130501070d06010707050107030501070605020701050707100502
+070105070701050107030501070605020704050107060501070805010704050107030501
+0701050707320113070b0501070705010701050107060501070d05010707050107030501
+070105010707050707010501070305010701050107070601070306010778011403020101
+030001010302010103020114070c050107130501070d0602070106020701050107030501
+070105010703050107010502071005010703050107010502070605010703050107010501
+0703050107040501070605010708050107050501070105010702050207370113070b0501
+070605010703050107050501070d05010707050207010502070105010707050707010501
+070305010701050107070602070106020778011403020101030001010302010103020114
+070c050107130501070e0605070205070702050507030505070d05050703050507020501
+0703050107020505070305050704050407030505070405030704050507330113070b0501
+07140501070d050107080505070205010707050207010502070105070701050107080606
+0778011403020101030001010302010103020114070c050107130501070f060307040506
+0703050307050503070f0503070505030703050107030501070305030704050507050503
+07030505070505010706050307340113070c050007140500070e05010709050307030501
+070805000703050007030506070105010709060207000601077801140302010103000101
+0302010103020114070c05010713050107ca0113070c05010712050107cb011403020101
+030001010302010103020114070c0503070f050307ca0113070d05010710050107cc0114
+03020101030001010302010103020114070c0503070f050307ca0113070e0501070e0501
+07cd01140302010103000101030201010302011407ef011307ef01140302010103000101
+030201010302011407ef011307ef01140302010103000101030201010302011407ef0113
+07ef01140302010103000101030201010302011407ef011307ef01140302010103000101
+030201010302011407ef0113070e0501070e050107cd0114030201010300010103020101
+03020114070c0503070f0503070d0601070306010701050107120503073c0501072a0503
+072b0113070d050107100501070f060507170501072b0501076e01140302010103000101
+0302010103020114070c0503070f0503070d0601070306010701050107120503073c0501
+072a0503072b0113070c050107120501070e060607160501072b0501076e011403020101
+030001010302010103020114070c050107130501070d0601070306010701050107140501
+073c0501072c0501072b0113070c050007140500070e06010703060107150501072b0501
+076e011403020101030001010302010103020114070c050107130501070d060107030601
+0701050107000502070505030706050107060503070d0501070305010703050307030501
+07000504070305020700050107030503070f050307030501070005020706050107040501
+07030501071e0113070b050107140501070d060107030601070205040705050307030501
+0702050107020501070305010702050407030501070005040703050207000501076e0114
+03020101030001010302010103020114070c050107130501070d06010700060107000601
+07010506070305050705050107050505070c050107030501070205050702050707020506
+07020505070d050507020506070505010704050107030501071e0113070b050107140501
+070d06010703060107020505070305050702050107010501070305010703050107020505
+0702050707020506076e011403020101030001010302010103020114070c050107130501
+070d06010700060107000601070105020701050207010502070105020704050107040502
+07010502070b050107030501070105020701050207010503070505020701050207010501
+07030501070b0502070105020701050207010502070405010704050107030501071e0113
+070b050107140501070d0606070805010701050207010502070105010700050107040501
+0703050107070501070105030705050207010502076e0114030201010300010103020101
+03020114070c050107130501070d06010700060107000601070105010703050107010501
+07030501070405010704050107030501070b050107000501070005010701050107030501
+070105020706050107030501070105020710050107030501070105010703050107040501
+0704050107030501071e0113070b050107140501070d0606070305060701050107070503
+07050501070005010700050107020506070105020706050107030501076e011403020101
+030001010302010103020114070c050107130501070d0601070006010700060107010501
+0703050107010501070305010704050107040507070b0501070005010700050107010501
+0703050107010501070705010703050107020505070c0501070305010701050107030501
+070405010704050107030501071e0113070b050107140501070d06010703060107010507
+070105010707050207060501070005010700050107010507070105010707050107030501
+076e011403020101030001010302010103020114070c050107130501070d060107000601
+07000601070105010703050107010501070305010704050107040507070b050707010501
+0703050107010501070705010703050107060502070b0501070305010701050107030501
+070405010704050107030501071e0113070b050107140501070d06010703060107010501
+070305010701050107070504070405070701050107030501070105010707050107030501
+076e011403020101030001010302010103020114070c050107130501070d060107000601
+070006010701050107030501070105020701050207040501070405020710050707010502
+070105020701050107070502070105020701050107030501070b05020701050207010501
+07030501070405010704050207010502071e0113070b050107140501070d060107030601
+070105010703050107010502070105020701050107010501070305070701050107030501
+070105010707050207010502076e011403020101030001010302010103020114070c0501
+07130501070d06070701050107030501070205050703050507030505070c050207010502
+07020505070205010708050607020505070d050507020501070305010702050507030506
+071e0113070b050107140501070d06060702050707020505070205010702050107020502
+07010502070105070701050107080506076e011403020101030001010302010103020114
+070c050107130501070e0601070106010702050107030501070305030704050507040503
+070e0500070305000704050307030501070905020700050107030503070f050307030501
+07030501070205050704050207000501071e0113070c050007140500070e060507040506
+070305030703050107030501070205000703050007030506070105010709050207000501
+076e011403020101030001010302010103020114070c05010713050107a90501071e0113
+070c05010712050107cb011403020101030001010302010103020114070c0503070f0503
+07a90501071e0113070d05010710050107cc011403020101030001010302010103020114
+070c0503070f050307a40505071f0113070e0501070e050107cd01140302010103000101
+030201010302011407c905040720011307ef011403020101030001010302010103020114
+07ef01ff01180302010103000101030201010302011407ef01ff01180302010103000101
+030201010302011407ef01ff01180302010103000101030201010302011407ef01ff0118
+03020101030001010302010103020114070c0503070305010703050107030503070d0605
+072d0501074c0503073501ff011803020101030001010302010103020114070c05030703
+05010703050107030503070d0606072c0501074c0503073501ff01180302010103000101
+0302010103020114070c0501070605010701050107060501070d060107020602072b0501
+074e0501073501ff011803020101030001010302010103020114070c0501070605010701
+050107060501070d06010703060107010501070005040703050307030501070005010700
+0500070205010700050207040505070e05030703050107000502070d0501070005040703
+0503070305010700050207060501070505040705050307050503071601ff011803020101
+030001010302010103020114070c05010707050307070501070d06010703060107010507
+07020505070205070701050607030505070d050507020506070c05070702050507020506
+07050501070505050703050507030505071501ff01180302010103000101030201010302
+0114070c05010708050107080501070d0601070206020701050307050502070105020701
+05010700050107000501070105020701050207030501070f050207010502070105020701
+0502070b05030705050207010502070105020701050207040501070a0501070105020701
+05020701050207010502071401ff011803020101030001010302010103020114070c0501
+0708050107080501070d0606070205020706050107030501070105010700050107000501
+070105010703050107030501070f0501070305010701050107030501070b050207060501
+0703050107010501070305010704050107050506070105010707050107030501071401ff
+011803020101030001010302010103020114070c05010707050307070501070d06050703
+05010707050107030501070105010700050107000501070105010703050107030501070f
+0501070305010701050107030501070b0501070705070701050107030501070405010704
+05070701050107070507071401ff011803020101030001010302010103020114070c0501
+070605010701050107060501070d06010707050107070501070305010701050107000501
+07000501070105010703050107030501070f0501070305010701050107030501070b0501
+0707050707010501070305010704050107040501070305010701050107070507071401ff
+011803020101030001010302010103020114070c0501070605010701050107060501070d
+060107070501070705020701050207010501070005010700050107010502070105020703
+0501070f0502070105020701050107030501070b05010707050207060502070105020704
+05010704050107030501070105020701050207010502071901ff01180302010103000101
+0302010103020114070c0501070505010703050107050501070d06010707050107080505
+0702050107000501070005010701050607040504070d05050702050107030501070b0501
+070805050702050607030505070205070702050507030505071501ff0118030201010300
+01010302010103020114070c0501070505010703050107050501070d0601070705010709
+0503070305010700050107000501070105010700050207060503070e0503070305010703
+0501070b0501070905030703050107000502070405050703050607030503070505030716
+01ff011803020101030001010302010103020114070c05010713050107350501074d0501
+074201ff011803020101030001010302010103020114070c0503070f050307350501074d
+0501074201ff011803020101030001010302010103020114070c0503070f050307350501
+074d0501074201ff011803020101030001010302010103020114075a0501074d05010742
+01ff0118030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d
+030201010300010103020101030201ff01ff011d030201010300010103020101030201ff
+01ff011d030201010300010103020101030201ff01ff011d030201010300010103020101
+030201ff01ff011d030201010300010103020101030201ff01ff011d0302010103000101
+03020101030201ff01ff011d030201010300010103020101030201ff01ff011d03020101
+0300010103020101030201ff013a05010111050101cc0302010103000101030201010302
+0121050301ff0503011005010111050101cc030201010300010103020101030201200505
+01fd050501f20302010103000101030201010302011f05020101050201fb050201010502
+01f10302010103000101030201010302011f050201080503010505030103050101000502
+0105050301d5050101030501010105010100050401020503010605030104050301040501
+0100050201c1030201010300010103020101030201200502010605050103050501020506
+0103050501d4050101030501010105070102050301050505010305030104050601c00302
+010103000101030201010302012105020104050201010502010105020101050201010502
+01010502010105020101050201d305010103050101010503010805010104050201010502
+01040501010405020101050201bf03020101030001010302010103020123050101030501
+01070501010305010101050101030501010105010103050101d305010103050101010502
+01090501010405010103050101040501010405010103050101bf03020101030001010302
+010103020124050101020501010705010103050101010501010305010101050701d30501
+0103050101010501010a0501010405010103050101040501010405010103050101bf0302
+010103000101030201010302012405020101050101070501010305010101050101030501
+0101050701d305010103050101010501010a050101040501010305010104050101040501
+0103050101bf0302010103000101030201010302011f0502010105020101050201010502
+010105020101050201010502010105020101050201d805020101050201010501010a0501
+010405020101050201040501010405010103050101bf0302010103000101030201010302
+012005050103050501030505010205060103050501d50505010205010108050501030506
+01020505010205010103050101bf03020101030001010302010103020121050301050503
+0105050301030501010005020105050301d7050301030501010805050104050201000501
+01020505010205010103050101bf0302010103000101030201010302013d050101ff0107
+050101d30302010103000101030201010302013d050101ff0106050201d3030201010300
+0101030201010302013d050101ff0102050501d40302010103000101030201010302013d
+050101ff0102050401d50302010103000101030201010302011407ef011307ef01140302
+010103000101030201010302011407ef011307ef01140302010103000101030201010302
+011407ef011307ef011403020101030001010302010103020114070e0501070e050107cd
+0113070e0501070e050107cd011403020101030001010302010103020114070d05010710
+05010711060307040503070e05010712050307850113070d050107100501070f060707b4
+011403020101030001010302010103020114070c050107120501070f060507030503070e
+05010712050307850113070c050107120501070e060707b4011403020101030001010302
+010103020114070c050007140500070e06020701060207040501070e0501071405010785
+0113070c050007140500070e060107ba011403020101030001010302010103020114070b
+0501070605010703050107050501070d0601070a05010706050307030501070005020704
+05040706050107850113070b0501070605010703050107050501070d0601070705010700
+050407030503070305010700050107000500070e05030703050107030501070105010700
+050407030503070505030703050107000504075001140302010103000101030201010302
+0114070b0501070705010701050107060501070d0601070a050107050505070205060703
+05050705050107850113070b0501070705010701050107060501070d0601070705070702
+050507020507070c05050702050107030501070105070702050507030505070205070750
+011403020101030001010302010103020114070b05010708050307070501070d0601070a
+050107040502070105020701050207010502070705010704050107850113070b05010708
+050307070501070d0605070305030705050207010502070105010700050107000501070b
+050207010502070105010703050107010503070505010703050107010502070105020701
+05030754011403020101030001010302010103020114070b05010706050707050501070d
+060107010603070405010704050107030501070105010703050107020506070405010785
+0113070b05010706050707050501070d0605070305020706050107030501070105010700
+050107000501070b05010707050107030501070105020706050207060501070305010701
+05020755011403020101030001010302010103020114070b05010708050307070501070d
+060107010603070405010704050107030501070105010703050107010507070405010785
+0113070b05010708050307070501070d0601070705010707050107030501070105010700
+050107000501070b05010707050107030501070105010708050507020501070305010701
+05010756011403020101030001010302010103020114070b050107070501070105010706
+0501070d0601070306010704050107040501070305010701050107030501070105010703
+05010704050107850113070b0501070705010701050107060501070d0601070705010707
+050107030501070105010700050107000501070b0501070705010703050107010501070c
+05020701050107030501070105010756011403020101030001010302010103020114070b
+0501070605010703050107050501070d0602070106020704050107040502070105020701
+05020701050207010501070305010704050107850113070b050107060501070305010705
+0501070d0601070705010707050207010502070105010700050107000501070b05020701
+050207010502070105020701050107070501070305010701050207010502070105010756
+011403020101030001010302010103020114070b050107140501070e0606070205050703
+050507020506070205070702050507830113070b050107140501070d0601070705010708
+0505070205010700050107000501070c0505070305060701050107080505070305050702
+05010756011403020101030001010302010103020114070c050007140500071006020700
+060107020505070405030703050107000502070405060702050507830113070c05000714
+0500070e06010707050107090503070305010700050107000501070d0503070505020700
+050107010501070905030705050307030501075601140302010103000101030201010302
+0114070c05010712050107cb0113070c05010712050107cb011403020101030001010302
+010103020114070d05010710050107cc0113070d05010710050107cc0114030201010300
+01010302010103020114070e0501070e050107cd0113070e0501070e050107cd01140302
+010103000101030201010302011407ef011307ef01140302010103000101030201010302
+011407ef011307ef01140302010103000101030201010302011407ef011307ef01140302
+010103000101030201010302011407ef011307ef01140302010103000101030201010302
+0114070e0501070e050107cd0113070e0501070e05010731050107990114030201010300
+01010302010103020114070d05010710050107110603070e0503071a050107150501070d
+0501071b050107400113070d050107100501070f0607070d050107080501079901140302
+0101030001010302010103020114070c050107120501070f0605070d0503071a05010715
+0501070d0501071b050107400113070c050107120501070e0607070d050107a401140302
+0101030001010302010103020114070c050007140500070e060207010602070e0501071a
+050107150501070d0501071b050107400113070c050007140500070e06010713050107a4
+011403020101030001010302010103020114070b050107140501070d0602070805030706
+0501070605030705050307040505070405030705050207000501070c0505070405030703
+05010703050107020505073d0113070b050107140501070d060107070501070005020704
+050507030503070405010700050407030503070f05030705050307050503070305010700
+0502070505030748011403020101030001010302010103020114070b050107140501070e
+060207060505070505010705050507030505070305050703050507030506070c05050703
+0505070205020701050207020505073d0113070b050107140501070d0601070705060703
+0505070305030704050707020505070d0505070305050703050507020506070305050747
+011403020101030001010302010103020114070b050107140501070f0602070405020701
+050207040501070405020701050207010502070105020703050107050502070105020701
+050207010502070d05010705050207010502070205050704050107400113070b05010714
+0501070d060507030502070105020703050107080501070405030705050207010502070b
+050107030501070105020701050207010502070105020701050207010502070105020701
+05020746011403020101030001010302010103020114070b050107140501071106010703
+050107030501070405010704050107030501070105010709050107050501070305010701
+050107030501070d05010705050107030501070305030705050107400113070b05010714
+0501070d060507030501070305010703050107080501070405020706050107030501070b
+050207060501070705010703050107010501070305010701050107030501074601140302
+0101030001010302010103020114070b0501071405010712060107020507070405010704
+05070701050107090501070505070701050107030501070d050107050507070405010706
+050107400113070b050107140501070d0601070705010703050107030501070805010704
+050107070507070c05050702050107070501070305010701050107030501070105070746
+011403020101030001010302010103020114070b05010714050107120602070105070704
+0501070405070701050107090501070505070701050107030501070d0501070505070703
+05030705050107400113070b050107140501070d06010707050107030501070305010708
+050107040501070705070710050207010501070705010703050107010501070305010701
+05070746011403020101030001010302010103020114070b050107140501070d06020701
+060207010502070905010704050207060502070105020703050107050502070605020701
+0502070d050107050502070705050704050107400113070b050107140501070d06010707
+050107030501070305010708050107040501070705020710050107030501070105020701
+05020701050207010502070105020701050207010502074b011403020101030001010302
+010103020114070b050107140501070e0605070305050703050507030505070305050704
+05040703050507030506070d050407030505070205020701050207030504073d0113070b
+050107140501070d0607070105010703050107030504070305050702050107080505070d
+050507030505070305050702050607030505074701140302010103000101030201010302
+0114070c0500071405000710060307050503070405050704050307050503070605030704
+05030705050207000501070e050307040503070305010703050107040503073d0113070c
+050007140500070e0607070105010703050107040503070305050702050107090503070f
+050307050503070505030703050107000502070505030748011403020101030001010302
+010103020114070c05010712050107cb0113070c05010712050107720501075601140302
+0101030001010302010103020114070d05010710050107cc0113070d0501071005010773
+05010756011403020101030001010302010103020114070e0501070e050107cd0113070e
+0501070e050107740501075601140302010103000101030201010302011407ef01130796
+050107560114030201010300010103020101030201ff01ff011d03020101030001010302
+0101030201ff01ff011d030201010300010103020101030201ff01ff011d030201010300
+010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d0302
+01010300010103020101030201ff01ff011d030201010300010103020101030201ff01ff
+011d030201010300010103020101030201ff01ff011d0302010103000101030201010302
+01ff01ff011d030201010300010103020101030201ff01ff011d03020101030001010302
+0101030201ff01ff011d030201010300010103020101030201ff01ff011d030201010300
+010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d0302
+01010300010103020101030201ff01ff011d030201010300010103020101030201ff01ff
+011d030201010300010103020101030201ff01ff011d0302010103000101030201010302
+01ff01ff011d030201010300010103020101030201ff01ff011d03020101030001010302
+0101030201ff01ff011d0302010103000101030201010302011e044f011d0477011d044f
+01aa0302010103000101030201010302011e044f011d0477011d044f01aa030201010300
+0101030201010302011e044f011d0477011d044f01aa0302010103000101030201010302
+011e044f011d0477011d044f01aa0302010103000101030201010302011e042008030403
+060104020601041f011d040c0503040305010444050304050503040d011d040c0503042c
+0503040d01aa0302010103000101030201010302011e041f08050402060104010602041f
+011d040b0505040205010444050304050503040d011d040b0505042b0503040d01aa0302
+010103000101030201010302011e041e08020401080204010601040006020420011d040a
+050204010502040105010446050104070501040d011d040a050204010502042c0501040d
+01aa0302010103000101030201010302011e041e080104030801040106040421011d040a
+050104070501040005020404050404030501040005020405050304050503040e06040406
+050104070501040d011d040a050104080504040305010400050204050503040505030406
+0501040d01aa0302010103000101030201010302011e041e080104030801040106030422
+011d040a05010407050604030505040205060403050504030505040d0605040505010407
+0501040d011d040a05010408050504020506040305050403050504050501040d01aa0302
+010103000101030201010302011e041e080104030801040106020423011d040a05010407
+050204010502040705010401050204010502040105020401050204010502040105020411
+06010404050104070501040d011d040a0501040d05010401050204010502040105020401
+0502040105020401050204040501040d01aa0302010103000101030201010302011e041e
+08010403080104010603042205090113040a050104070501040305010402050604010501
+0403050104010501040305010401050104030501040c06060404050104070501040d0509
+0113040a050104080506040105010403050104010501040705010403050104040501040d
+050901a00302010103000101030201010302011e041e0801040308010401060404210509
+0113040a0501040705010403050104010507040105010403050104010501040305010401
+0507040b06070404050104070501040d05090113040a0501040705070401050104030501
+040105010407050704040501040d050901a00302010103000101030201010302011e041e
+0801040308010401060104000602042005090113040a0501040705010403050104010501
+040305010401050104030501040105010403050104010507040b06010403060104040501
+04070501040d05090113040a050104070501040305010401050104030501040105010407
+050704040501040d050901a00302010103000101030201010302011e041e080204010802
+0401060104010602041f05090113040a0502040105020401050104030501040105010403
+050104010501040305010401050204010502040105020410060104030601040405010407
+0501040d05090113040a0502040105020401050104030501040105010403050104010502
+040105020401050204090501040d050901a00302010103000101030201010302011e041f
+08050402060104020602041e05090113040b050504020501040305010401050704010501
+040305010402050604020505040c06070402050504030505040b05090113040b05050402
+05070401050104030501040205050403050504030505040b050901a00302010103000101
+030201010302011e042008030403060104030601041e05090113040c0503040305010403
+0501040205060401050104030501040305020400050104030503040e0606040205050403
+0505040b05090113040c0503040405060401050104030501040305030405050304040505
+040b050901a00302010103000101030201010302011e044f0509011304380501043c0509
+0113044f050901a00302010103000101030201010302011e044f0509011304370502043c
+05090113044f050901a00302010103000101030201010302011e044f0509011304330505
+043d05090113044f050901a00302010103000101030201010302011e044f050901130433
+0504043e05090113044f050901a003020101030001010302010103020128054f011d0577
+011d054f01a003020101030001010302010103020128054f011d0577011d054f01a00302
+0101030001010302010103020128054f011d0577011d054f01a003020101030001010302
+010103020128054f011d0577011d054f01a003020101030001010302010103020128054f
+011d0577011d054f01a003020101030001010302010103020128054f011d0577011d054f
+01a003020101030001010302010103020128054f011d0577011d054f01a0030201010300
+01010302010103020128054f011d0577011d054f01a00302010103000101030201010302
+0128054f011d0577011d054f01a003020101030001010302010103020128054f011d0577
+011d054f01a0030201010300010103020101030201ff01ff011d03020101030001010302
+0101030201ff01ff011d030201010300010103020101030201ff01ff011d030201010300
+010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d0302
+01010300010103020101030201ff01ff011d030201010300010103020101030201ff01ff
+011d030201010300010103020101030201ff01ff011d0302010103000101030201010302
+01ff01ff011d030201010300010103020101030201ff01ff011d03020101030001010302
+0101030201ff01ff011d030201010300010103020101030201ff01ff011d030201010300
+010103020101030201ff01ff011d030201010300010103020101030201ff01ff011d0302
+01010300010103020101030201ff01ff011d030201010300010103020101030201ff01ff
+011d030201010300010103020101030201ff01ff011d03020101030001010302010103ff
+03ff03230101030001010302010103ff03ff0323010103000101030201ff01ff01270300
+0101030201ff01ff01270300010103ff03ff032b010103ff03ff032b01ff01ff012d01ff
+01ff012d01ff01ff012d01ff01ff012d01ff01ff012d01ff01ff012d
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 557 359
+%%EOF

+ 704 - 0
docs/pics/ide/search.eps

@@ -0,0 +1,704 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (search.eps)
+%%CreationDate: (Wed Nov 15 21:36:01 2000)
+%%BoundingBox: 0 0 558 298
+%%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 559 299
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+559 299
+12.000000
+559 299
+1
+0
+0
+10
+c0c0c0
+00fc00
+f8fcf8
+000080
+008000
+000000
+f8fc00
+f8fc78
+008080
+00fcf8
+00ff00ff002e00ff00ff002e00ff00ff002e0020010500eb020100ff0019001702030004
+01050004020300d50207000402010014020100ff000200170203000401050004020300d5
+0207001b020100ff000200170201000601050006020100d502010021020100ff00020001
+0212000202010006010500060201000202c7000a02010008020300040201000002020005
+020200000201000a02f700010212000202010006010500060201000202c7000a02010008
+02030004020600030206000a02f70001020200120201000601050006020100d502050006
+02010004020200010202000102020001020200ff00000201000102020012020100060105
+0006020100d50205000602010004020100030201000102010003020100ff000002010001
+02020001020d000202010006010500060201000202c7000a0201000a0201000402010003
+02010001020100030201000a02f300010201000102020001020d00020201000601050006
+0201000202c7000a0201000a020100040201000302010001020100030201000a02f30001
+02010001020200010202000d0201000601050006020100d50201000a0201000402010003
+0201000102020001020200fb0202000102010001020200010202000d0201000601050006
+020100d502010008020500020201000302010002020600fb020200010201000102020001
+0202000d0201000601050006020100d50201000802050002020100030201000302020000
+020100fb0202000102010001020200010202000d02010013020100ff00f7020200010201
+0001020200010202000d0203000f020300ff00f70202000102010001020200010202000d
+0203000f020300ff00f7020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d020200010201000102020001020200ff00ff001d0202000102010001020200010202
+00ff00ff001d020200010201000102020001020200ff00ff001d02020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d020200010201000102020001020200ff00ff001d0202000102010001020200010202
+00ff00ff001d020200010201000102020001020200ff00ff001d02020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200a003ff0349041d00140202000102010001020200010202
+00a003ff0349041d0014020200010201000102020001020200a003ff0349040d0501040d
+00140202000102010001020200010202007c0201002103ff0349040d0501040d00140202
+000102010001020200010202001f06070017020100110201001c02040004020100140201
+000a03ff0349040205030406050104060503040200140202000102010001020200010202
+001f06070017020100110201001b0205001b0201000a03ff034904020503040605010406
+050304020014020200010201000102020001020200220601001a020100110201001b0201
+001f0201000a03ff03490402050104080501040805010402001402020001020100010202
+000102020022060100060203000302010003020100020205000d020500040203000f0201
+0006020300040201000002020005020200000201000a03ff034904020501040805010408
+050104020014020200010201000102020001020200220601000502050002020200010202
+00020205000d020500030205000c0207000202030004020600030206000a03ff03490402
+050104080501040805010402001402020001020100010202000102020022060100040202
+000102020002020500040201001102010005020200010202000b02070004020100040202
+000102020001020200010202000a03ff0349040205010408050104080501040200140202
+000102010001020200010202002206010004020100030201000302030005020100110201
+0005020100030201000d02010008020100040201000302010001020100030201000a03ff
+034904020501040805010408050104020014020200010201000102020001020200220601
+000402070004020100060201001102010005020100030201000d02010008020100040201
+000302010001020100030201000a03ff0349040205010408050104080501040200140202
+000102010001020200010202002206010004020700030203000502010011020100050201
+00030201000d02010008020100040201000302010001020100030201000a03ff03490402
+050104080501040805010402001402020001020100010202000102020022060100040202
+0007020500040201001102010005020200010202000d0201000802010004020100030201
+0001020200010202000a03ff034904020501040505070405050104020014020200010201
+00010202000102020022060100050205000202020001020200030204000e020400030205
+000e020100060205000202010003020100020206000a03ff034904020501040605050406
+050104020014020200010201000102020001020200220601000602030003020100030201
+00040203000f020300040203000f02010006020500020201000302010003020200000201
+000a03ff0349040205010407050304070501040200140202000102010001020200010202
+00a003ff0349040205010408050104080501040200140202000102010001020200010202
+00a003ff034904020503040f050304020014020200010201000102020001020200a00309
+070903ff033504020503040f050304020014020200010201000102020001020200a00309
+070903ff0335041d0014020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d020200010201000102020001020200ff00ff001d0202000102010001020200010202
+00ff00ff001d020200010201000102020001020200ff00ff001d02020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d020200010201000102020001020200ff00ff001d0202000102010001020200010202
+00ff00ff001d020200010201000102020001020200ff00ff001d02020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d02020001020100010202000102020040050100ed0501002f050100b8020200010201
+000102020001020200210503000f05010008050100e00505000605010024050100080501
+00b8020200010201000102020001020200200505000e050100eb0506002c050100c30202
+000102010001020200010202001f050200010502000d050100eb050100020502002b0501
+00c30202000102010001020200010202001f050100030501000105010000050200040505
+000305030006050300030501000005020005050300c10501000305010002050300040501
+000005040003050300050503000405050003050300060503000305010000050200a30202
+000102010001020200010202001f05010003050100010506000305050003050300050505
+000205060003050500c00501000305010002050300040507000205050003050500030505
+00030503000505050002050600a20202000102010001020200010202001f050100030501
+000105020001050200030501000805010004050200010502000105020001050200010501
+0003050100bf050100030501000405010004050300050502000105020001050200010502
+00030501000805010004050200010502000105020001050200a102020001020100010202
+00010202001f050100030501000105010003050100030501000805010004050100030501
+00010501000305010001050200c405010003050100040501000405020006050100030501
+0001050100090501000805010004050100030501000105010003050100a1020200010201
+0001020200010202001f0501000305010001050100030501000305010008050100040501
+0003050100010501000305010002050500c0050100030501000405010004050100070507
+0001050100090501000805010004050100030501000105010003050100a1020200010201
+0001020200010202001f0501000305010001050100030501000305010008050100040501
+0003050100010501000305010006050200bf050100030501000405010004050100070507
+0001050100090501000805010004050100030501000105010003050100a1020200010201
+0001020200010202001f0502000105020001050200010502000305010008050100040502
+000105020001050100030501000105010003050100bf0501000205020004050100040501
+000705020006050200010502000305010008050100040502000105020001050100030501
+00a102020001020100010202000102020020050500020506000405040003050500030505
+00020501000305010002050500c005060003050500020501000805050003050500040504
+0003050500030505000205010003050100a1020200010201000102020001020200210503
+000305010000050200060503000305050004050300030501000305010003050300c10505
+000405050002050100090503000505030006050300030505000405030003050100030501
+00a102020001020100010202000102020029050100ff00f1020200010201000102020001
+02020029050100ff00f102020001020100010202000102020029050100ff00f102020001
+020100010202000102020029050100ff00f10202000102010001020200010202001408ef
+001308ef00140202000102010001020200010202001408ef001308ef0014020200010201
+0001020200010202001408ef001308ef001402020001020100010202000102020014088f
+05010811050108490013080e0501080e050108cd00140202000102010001020200010202
+0014080c0503080f0503080f060308560501080605010808050108490013080d05010810
+0501080f0507083906010878001402020001020100010202000102020014080c0503080f
+0503080e0605085e050108540013080c050108120501080e050708390601087800140202
+0001020100010202000102020014080c050108130501080d060208010602085d05010854
+0013080c050008140500080e0501083f0601087800140202000102010001020200010202
+0014080c050108130501080d0601080805040805050308050503080f0503080505030803
+050108000502080505030804050308050505080305030804050108030501080305030834
+0013080b0501080605010803050108050501080d05010809050308030501080005040801
+050108030501080205040803050108000504080306020800060108780014020200010201
+00010202000102020014080c050108130501080d0601080805050803050508030505080d
+050508030505080205060803050508030503080505050803050308040501080305010802
+050508330013080b0501080705010801050108060501080d050108080505080205070801
+050108030501080205050802050708020606087800140202000102010001020200010202
+0014080c050108130501080d0601080d050108010501080305010801050208010502080b
+050108030501080105020801050208010502080105020801050108030501080405010806
+0501080805010804050108030501080105020801050208320013080b0501080805030807
+0501080d0505080305020801050208010503080505010803050108070501080105030805
+0602080106020878001402020001020100010202000102020014080c050108130501080d
+060108080506080105020806050108030501080b05020806050108030501080105010803
+050108010502080905010806050108080501080405010803050108010501080305010832
+0013080b05010806050708050501080d0505080305010803050108010502080605010800
+050108000501080205060801050208060601080306010878001402020001020100010202
+000102020014080c050108130501080d0601080705070802050508020507080c05050802
+050708010501080305010802050508050501080605010808050108040501080305010801
+050708320013080b05010808050308070501080d05010807050108030501080105010807
+050108000501080005010801050708010501080706010803060108780014020200010201
+00010202000102020014080c050108130501080d06010807050108030501080605020801
+050708100502080105070801050108030501080605020804050108060501080805010804
+0501080305010801050708320013080b0501080705010801050108060501080d05010807
+050108030501080105010807050708010501080305010801050108070601080306010878
+001402020001020100010202000102020014080c050108130501080d0602080106020801
+050108030501080105010803050108010502081005010803050108010502080605010803
+050108010501080305010804050108060501080805010805050108010501080205020837
+0013080b0501080605010803050108050501080d05010807050208010502080105010807
+050708010501080305010801050108070602080106020878001402020001020100010202
+000102020014080c050108130501080e0605080205070802050508030505080d05050803
+050508020501080305010802050508030505080405040803050508040503080405050833
+0013080b050108140501080d050108080505080205010807050208010502080105070801
+0501080806060878001402020001020100010202000102020014080c050108130501080f
+0603080405060803050308050503080f0503080505030803050108030501080305030804
+05050805050308030505080505010806050308340013080c050008140500080e05010809
+050308030501080805000803050008030506080105010809060208000601087800140202
+0001020100010202000102020014080c05010813050108ca0013080c05010812050108cb
+001402020001020100010202000102020014080c0503080f050308ca0013080d05010810
+050108cc001402020001020100010202000102020014080c0503080f050308ca0013080e
+0501080e050108cd00140202000102010001020200010202001408ef001308ef00140202
+000102010001020200010202001408ef001308ef00140202000102010001020200010202
+001408ef001308ef00140202000102010001020200010202001408ef001308ef00140202
+000102010001020200010202001408ef0013080e0501080e050108cd0014020200010201
+00010202000102020014080c0503080f0503080d0601080306010801050108120503083c
+0501082a0503082b0013080d050108100501080f060508170501082b0501086e00140202
+0001020100010202000102020014080c0503080f0503080d060108030601080105010812
+0503083c0501082a0503082b0013080c050108120501080e060608160501082b0501086e
+001402020001020100010202000102020014080c050108130501080d0601080306010801
+050108140501083c0501082c0501082b0013080c050008140500080e0601080306010815
+0501082b0501086e001402020001020100010202000102020014080c050108130501080d
+0601080306010801050108000502080505030806050108060503080d0501080305010803
+05030803050108000504080305020800050108030503080f050308030501080005020806
+05010804050108030501081e0013080b050108140501080d060108030601080205040805
+050308030501080205010802050108030501080205040803050108000504080305020800
+0501086e001402020001020100010202000102020014080c050108130501080d06010800
+06010800060108010506080305050805050108050505080c050108030501080205050802
+05070802050608020505080d050508020506080505010804050108030501081e0013080b
+050108140501080d06010803060108020505080305050802050108010501080305010803
+0501080205050802050708020506086e001402020001020100010202000102020014080c
+050108130501080d06010800060108000601080105020801050208010502080105020804
+05010804050208010502080b050108030501080105020801050208010503080505020801
+05020801050108030501080b050208010502080105020801050208040501080405010803
+0501081e0013080b050108140501080d0606080805010801050208010502080105010800
+0501080405010803050108070501080105030805050208010502086e0014020200010201
+00010202000102020014080c050108130501080d06010800060108000601080105010803
+05010801050108030501080405010804050108030501080b050108000501080005010801
+050108030501080105020806050108030501080105020810050108030501080105010803
+0501080405010804050108030501081e0013080b050108140501080d0606080305060801
+05010807050308050501080005010800050108020506080105020806050108030501086e
+001402020001020100010202000102020014080c050108130501080d0601080006010800
+0601080105010803050108010501080305010804050108040507080b0501080005010800
+0501080105010803050108010501080705010803050108020505080c0501080305010801
+050108030501080405010804050108030501081e0013080b050108140501080d06010803
+060108010507080105010807050208060501080005010800050108010507080105010807
+050108030501086e001402020001020100010202000102020014080c050108130501080d
+06010800060108000601080105010803050108010501080305010804050108040507080b
+0507080105010803050108010501080705010803050108060502080b0501080305010801
+050108030501080405010804050108030501081e0013080b050108140501080d06010803
+060108010501080305010801050108070504080405070801050108030501080105010807
+050108030501086e001402020001020100010202000102020014080c050108130501080d
+060108000601080006010801050108030501080105020801050208040501080405020810
+050708010502080105020801050108070502080105020801050108030501080b05020801
+05020801050108030501080405010804050208010502081e0013080b050108140501080d
+060108030601080105010803050108010502080105020801050108010501080305070801
+050108030501080105010807050208010502086e00140202000102010001020200010202
+0014080c050108130501080d06070801050108030501080205050803050508030505080c
+05020801050208020505080205010808050608020505080d050508020501080305010802
+050508030506081e0013080b050108140501080d06060802050708020505080205010802
+05010802050208010502080105070801050108080506086e001402020001020100010202
+000102020014080c050108130501080e0601080106010802050108030501080305030804
+050508040503080e0500080305000804050308030501080905020800050108030503080f
+05030803050108030501080205050804050208000501081e0013080c050008140500080e
+060508040506080305030803050108030501080205000803050008030506080105010809
+050208000501086e001402020001020100010202000102020014080c05010813050108a9
+0501081e0013080c05010812050108cb001402020001020100010202000102020014080c
+0503080f050308a90501081e0013080d05010810050108cc001402020001020100010202
+000102020014080c0503080f050308a40505081f0013080e0501080e050108cd00140202
+000102010001020200010202001408c905040820001308ef001402020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d020200010201000102020001020200ff00ff001d0202000102010001020200010202
+00ff00ff001d020200010201000102020001020200ff00ff001d02020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff00ff
+001d020200010201000102020001020200ff00ff001d0202000102010001020200010202
+00ff00ff001d020200010201000102020001020200ff00ff001d02020001020100010202
+0001020200ff00ff001d020200010201000102020001020200ff00ff001d020200010201
+000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d0202
+00010201000102020001020200ff00ff001d020200010201000102020001020200ff003a
+05010011050100cc02020001020100010202000102020021050300ff0503001005010011
+050100cc02020001020100010202000102020020050500fd050500f20202000102010001
+020200010202001f05020001050200fb05020001050200f1020200010201000102020001
+0202001f0502000805030005050300030501000005020005050300d50501000305010001
+050100000504000205030006050300040503000405010000050200c10202000102010001
+020200010202002005020006050500030505000205060003050500d40501000305010001
+05070002050300050505000305030004050600c002020001020100010202000102020021
+0502000405020001050200010502000105020001050200010502000105020001050200d3
+0501000305010001050300080501000405020001050200040501000405020001050200bf
+020200010201000102020001020200230501000305010007050100030501000105010003
+0501000105010003050100d3050100030501000105020009050100040501000305010004
+0501000405010003050100bf020200010201000102020001020200240501000205010007
+05010003050100010501000305010001050700d305010003050100010501000a05010004
+05010003050100040501000405010003050100bf02020001020100010202000102020024
+050200010501000705010003050100010501000305010001050700d30501000305010001
+0501000a0501000405010003050100040501000405010003050100bf0202000102010001
+020200010202001f05020001050200010502000105020001050200010502000105020001
+05020001050200d805020001050200010501000a05010004050200010502000405010004
+05010003050100bf02020001020100010202000102020020050500030505000305050002
+05060003050500d5050500020501000805050003050600020505000205010003050100bf
+020200010201000102020001020200210503000505030005050300030501000005020005
+050300d705030003050100080505000405020000050100020505000205010003050100bf
+0202000102010001020200010202003d050100ff0007050100d302020001020100010202
+00010202003d050100ff0006050200d30202000102010001020200010202003d050100ff
+0002050500d40202000102010001020200010202003d050100ff0002050400d502020001
+02010001020200010202001408ef001308ef001402020001020100010202000102020014
+08ef001308ef00140202000102010001020200010202001408ef001308ef001402020001
+020100010202000102020014080e0501080e050108cd0013080e0501080e050108cd0014
+02020001020100010202000102020014080d0501081005010811060308040503080e0501
+0812050308850013080d050108100501080f060708b40014020200010201000102020001
+02020014080c050108120501080f060508030503080e05010812050308850013080c0501
+08120501080e060708b4001402020001020100010202000102020014080c050008140500
+080e06020801060208040501080e05010814050108850013080c050008140500080e0601
+08ba001402020001020100010202000102020014080b0501080605010803050108050501
+080d0601080a0501080605030803050108000502080405040806050108850013080b0501
+080605010803050108050501080d06010807050108000504080305030803050108000501
+08000500080e050308030501080305010801050108000504080305030805050308030501
+080005040850001402020001020100010202000102020014080b05010807050108010501
+08060501080d0601080a05010805050508020506080305050805050108850013080b0501
+080705010801050108060501080d0601080705070802050508020507080c050508020501
+080305010801050708020505080305050802050708500014020200010201000102020001
+02020014080b05010808050308070501080d0601080a0501080405020801050208010502
+08010502080705010804050108850013080b05010808050308070501080d060508030503
+0805050208010502080105010800050108000501080b0502080105020801050108030501
+080105030805050108030501080105020801050208010503085400140202000102010001
+0202000102020014080b05010806050708050501080d0601080106030804050108040501
+080305010801050108030501080205060804050108850013080b05010806050708050501
+080d0605080305020806050108030501080105010800050108000501080b050108070501
+080305010801050208060502080605010803050108010502085500140202000102010001
+0202000102020014080b05010808050308070501080d0601080106030804050108040501
+080305010801050108030501080105070804050108850013080b05010808050308070501
+080d0601080705010807050108030501080105010800050108000501080b050108070501
+080305010801050108080505080205010803050108010501085600140202000102010001
+0202000102020014080b0501080705010801050108060501080d06010803060108040501
+0804050108030501080105010803050108010501080305010804050108850013080b0501
+080705010801050108060501080d06010807050108070501080305010801050108000501
+08000501080b0501080705010803050108010501080c0502080105010803050108010501
+0856001402020001020100010202000102020014080b0501080605010803050108050501
+080d06020801060208040501080405020801050208010502080105020801050108030501
+0804050108850013080b0501080605010803050108050501080d06010807050108070502
+08010502080105010800050108000501080b050208010502080105020801050208010501
+080705010803050108010502080105020801050108560014020200010201000102020001
+02020014080b050108140501080e06060802050508030505080205060802050708020505
+08830013080b050108140501080d06010807050108080505080205010800050108000501
+080c05050803050608010501080805050803050508020501085600140202000102010001
+0202000102020014080c0500081405000810060208000601080205050804050308030501
+08000502080405060802050508830013080c050008140500080e06010807050108090503
+080305010800050108000501080d05030805050208000501080105010809050308050503
+080305010856001402020001020100010202000102020014080c05010812050108cb0013
+080c05010812050108cb001402020001020100010202000102020014080d050108100501
+08cc0013080d05010810050108cc001402020001020100010202000102020014080e0501
+080e050108cd0013080e0501080e050108cd001402020001020100010202000102020014
+08ef001308ef00140202000102010001020200010202001408ef001308ef001402020001
+02010001020200010202001408ef001308ef001402020001020100010202000102020014
+08ef001308ef001402020001020100010202000102020014080e0501080e050108cd0013
+080e0501080e0501083105010899001402020001020100010202000102020014080d0501
+0810050108110603080e0503081a050108150501080d0501081b050108400013080d0501
+08100501080f0607080d0501080805010899001402020001020100010202000102020014
+080c050108120501080f0605080d0503081a050108150501080d0501081b050108400013
+080c050108120501080e0607080d050108a4001402020001020100010202000102020014
+080c050008140500080e060208010602080e0501081a050108150501080d0501081b0501
+08400013080c050008140500080e06010813050108a40014020200010201000102020001
+02020014080b050108140501080d06020808050308060501080605030805050308040505
+080405030805050208000501080c050508040503080305010803050108020505083d0013
+080b050108140501080d0601080705010800050208040505080305030804050108000504
+08030503080f050308050503080505030803050108000502080505030848001402020001
+020100010202000102020014080b050108140501080e0602080605050805050108050505
+08030505080305050803050508030506080c050508030505080205020801050208020505
+083d0013080b050108140501080d06010807050608030505080305030804050708020505
+080d05050803050508030505080205060803050508470014020200010201000102020001
+02020014080b050108140501080f06020804050208010502080405010804050208010502
+08010502080105020803050108050502080105020801050208010502080d050108050502
+08010502080205050804050108400013080b050108140501080d06050803050208010502
+0803050108080501080405030805050208010502080b0501080305010801050208010502
+080105020801050208010502080105020801050208010502084600140202000102010001
+0202000102020014080b0501081405010811060108030501080305010804050108040501
+08030501080105010809050108050501080305010801050108030501080d050108050501
+08030501080305030805050108400013080b050108140501080d06050803050108030501
+0803050108080501080405020806050108030501080b0502080605010807050108030501
+080105010803050108010501080305010846001402020001020100010202000102020014
+080b05010814050108120601080205070804050108040507080105010809050108050507
+0801050108030501080d050108050507080405010806050108400013080b050108140501
+080d0601080705010803050108030501080805010804050108070507080c050508020501
+080705010803050108010501080305010801050708460014020200010201000102020001
+02020014080b050108140501081206020801050708040501080405070801050108090501
+080505070801050108030501080d050108050507080305030805050108400013080b0501
+08140501080d060108070501080305010803050108080501080405010807050708100502
+080105010807050108030501080105010803050108010507084600140202000102010001
+0202000102020014080b050108140501080d060208010602080105020809050108040502
+080605020801050208030501080505020806050208010502080d05010805050208070505
+0804050108400013080b050108140501080d060108070501080305010803050108080501
+080405010807050208100501080305010801050208010502080105020801050208010502
+0801050208010502084b001402020001020100010202000102020014080b050108140501
+080e060508030505080305050803050508030505080405040803050508030506080d0504
+08030505080205020801050208030504083d0013080b050108140501080d060708010501
+0803050108030504080305050802050108080505080d0505080305050803050508020506
+080305050847001402020001020100010202000102020014080c05000814050008100603
+0805050308040505080405030805050308060503080405030805050208000501080e0503
+08040503080305010803050108040503083d0013080c050008140500080e060708010501
+0803050108040503080305050802050108090503080f0503080505030805050308030501
+08000502080505030848001402020001020100010202000102020014080c050108120501
+08cb0013080c050108120501087205010856001402020001020100010202000102020014
+080d05010810050108cc0013080d05010810050108730501085600140202000102010001
+0202000102020014080e0501080e050108cd0013080e0501080e05010874050108560014
+0202000102010001020200010202001408ef001308960501085600140202000102010001
+02020001020200ff00ff001d020200010201000102020001020200ff00ff001d02020001
+0201000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d
+020200010201000102020001020200ff00ff001d020200010201000102020001020200ff
+00ff001d020200010201000102020001020200ff00ff001d020200010201000102020001
+020200ff00ff001d020200010201000102020001020200ff00ff001d0202000102010001
+02020001020200ff00ff001d020200010201000102020001020200ff00ff001d02020001
+0201000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d
+020200010201000102020001020200ff00ff001d020200010201000102020001020200ff
+00ff001d020200010201000102020001020200ff00ff001d020200010201000102020001
+020200ff00ff001d020200010201000102020001020200ff00ff001d0202000102010001
+02020001020200ff00ff001d020200010201000102020001020200ff00ff001d02020001
+020100010202000102020082044f006d044f008c02020001020100010202000102020082
+044f006d044f008c02020001020100010202000102020082044f006d044f008c02020001
+020100010202000102020082044f006d044f008c02020001020100010202000102020082
+042009030403060104020601041f006d040c0503042c0503040d008c0202000102010001
+0202000102020082041f09050402060104010602041f006d040b0505042b0503040d008c
+02020001020100010202000102020082041e09020401090204010601040006020420006d
+040a050204010502042c0501040d008c02020001020100010202000102020082041e0901
+04030901040106040421006d040a05010408050404030501040005020405050304050503
+04060501040d008c02020001020100010202000102020082041e09010403090104010603
+0422006d040a05010408050504020506040305050403050504050501040d008c02020001
+020100010202000102020082041e090104030901040106020423006d040a0501040d0501
+04010502040105020401050204010502040105020401050204040501040d008c02020001
+020100010202000102020082041e09010403090104010603042205090063040a05010408
+0506040105010403050104010501040705010403050104040501040d0509008202020001
+020100010202000102020082041e09010403090104010604042105090063040a05010407
+05070401050104030501040105010407050704040501040d050900820202000102010001
+0202000102020082041e0901040309010401060104000602042005090063040a05010407
+0501040305010401050104030501040105010407050704040501040d0509008202020001
+020100010202000102020082041e0902040109020401060104010602041f05090063040a
+050204010502040105010403050104010501040305010401050204010502040105020409
+0501040d0509008202020001020100010202000102020082041f09050402060104020602
+041e05090063040b0505040205070401050104030501040205050403050504030505040b
+0509008202020001020100010202000102020082042009030403060104030601041e0509
+0063040c0503040405060401050104030501040305030405050304040505040b05090082
+02020001020100010202000102020082044f05090063044f050900820202000102010001
+0202000102020082044f05090063044f0509008202020001020100010202000102020082
+044f05090063044f0509008202020001020100010202000102020082044f05090063044f
+050900820202000102010001020200010202008c054f006d054f00820202000102010001
+020200010202008c054f006d054f00820202000102010001020200010202008c054f006d
+054f00820202000102010001020200010202008c054f006d054f00820202000102010001
+020200010202008c054f006d054f00820202000102010001020200010202008c054f006d
+054f00820202000102010001020200010202008c054f006d054f00820202000102010001
+020200010202008c054f006d054f00820202000102010001020200010202008c054f006d
+054f00820202000102010001020200010202008c054f006d054f00820202000102010001
+02020001020200ff00ff001d020200010201000102020001020200ff00ff001d02020001
+0201000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d
+020200010201000102020001020200ff00ff001d020200010201000102020001020200ff
+00ff001d020200010201000102020001020200ff00ff001d020200010201000102020001
+020200ff00ff001d020200010201000102020001020200ff00ff001d0202000102010001
+02020001020200ff00ff001d020200010201000102020001020200ff00ff001d02020001
+0201000102020001020200ff00ff001d020200010201000102020001020200ff00ff001d
+020200010201000102020001020200ff00ff001d020200010201000102020001020200ff
+00ff001d020200010201000102020001020200ff00ff001d020200010201000102020001
+020200ff00ff001d02020001020100010202000102ff02ff022300010201000102020001
+02ff02ff0223000102010001020200ff00ff002702010001020200ff00ff002702010001
+02ff02ff022c000102ff02ff022c00ff00ff002e00ff00ff002e00ff00ff002e00ff00ff
+002e00ff00ff002e00ff00ff002e
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 558 298
+%%EOF

+ 723 - 0
docs/pics/ide/seldir.eps

@@ -0,0 +1,723 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (seldir.eps)
+%%CreationDate: (Wed Nov 15 21:36:01 2000)
+%%BoundingBox: 0 0 476 359
+%%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 477 360
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+477 360
+12.000000
+477 360
+1
+0
+0
+10
+000080
+c0c0c0
+00fc00
+f8fcf8
+f8fc00
+008000
+000000
+f87cf8
+008080
+00fcf8
+00ff00dc01ff01dc01ff01dc01ff01dc011f020501cd030101e601160303010402050104
+0303017303030103030101390305010603010124030101bf011603030104020501040303
+017203050102030101390306012c030101bf011603010106020501060301017103020101
+0302010103010139030101020302012b030101bf03130102030101060205010603010102
+0363010a030101070301010003020104030401030301010003020105030301050303010d
+030101030301010203030104030101000304010303030105030301040305010403030103
+0301010003040101030101030301010a0392031301020301010602050106030101020363
+010a03010107030601030305010203060103030501030305010c03010103030101020303
+0104030701020305010303050103030501030305010203070101030101030301010a0392
+030301120301010602050106030101710301010703020101030201070301010103020101
+030201010302010103020101030201010302010b03010103030101040301010403030105
+030201010302010103020101030201030301010503020101030201010303010503010103
+0301019c0300030301120301010602050106030101710301010703010103030101020306
+010103010103030101010301010303010101030101030301010b03010103030101040301
+010403020106030101030301010103010109030101050301010303010101030201060301
+01030301019c030003030101030d01020301010602050106030101020363010a03010107
+030101030301010103070101030101030301010103010103030101010307010b03010103
+030101040301010403010107030701010301010903010105030101030301010103010107
+030101030301010a038f0101030003030101030d01020301010602050106030101020363
+010a03010107030101030301010103010103030101010301010303010101030101030301
+01010307010b030101030301010403010104030101070307010103010109030101050301
+01030301010103010107030101030301010a038f01010300030301010302010d03010106
+020501060301017103020101030201010301010303010101030101030301010103010103
+030101010302010103020101030201100301010203020104030101040301010703020106
+030201010302010303010105030201010302010103010107030201010302019703020101
+0300030301010302010d0301010602050106030101720305010203010103030101010307
+01010301010303010102030601020305010c030601030305010203010108030501030305
+010403040103030501020301010803060197030201010300030301010302010d03010106
+020501060301017303030103030101030301010203060101030101030301010303020100
+030101030303010d03050104030501020301010903030105030301060303010403030103
+030101090302010003010197030201010300030301010302010d030101130301019f0301
+016b03010197030201010300030301010302010d0303010f0303019e0302016b03010197
+030201010300030301010302010d0303010f0303019a0305016703050198030201010300
+03030101030201c0030401680304019903020101030003030101030201ff01cd03020101
+030003030101030201ff01cd03020101030003030101030201ff01cd0302010103000303
+0101030201ff01cd03020101030003030101030201ff01cd030201010300030301010302
+01ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd
+03020101030003030101030201ff01cd03020101030003030101030201ff01cd03020101
+030003030101030201ff01cd03020101030003030101030201ff01cd0302010103000303
+0101030201ff01cd03020101030003030101030201ff01cd030201010300030301010302
+01ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd
+03020101030003030101030201ff01cd03020101030003030101030201ff01cd03020101
+030003030101030201ff01cd03020101030003030101030201ff01cd0302010103000303
+0101030201ff01cd03020101030003030101030201ff01cd030201010300030301010302
+0122030101ff01a803020101030003030101030201150305010603010124030101ff0181
+03020101030003030101030201150306012c030101ff0181030201010300030301010302
+0115030101020302012b030101ff01810302010103000303010103020115030101030301
+010203030104030101000304010303030105030301040305010403030103030101000304
+0101030101030301010b0401010004020104030401030301010003010100030001040303
+01ff012f0302010103000303010103020115030101030301010203030104030701020305
+010303050103030501030305010203070101030101030301010b04060103030501020307
+0102030501ff012e03020101030003030101030201150301010303010104030101040303
+010503020101030201010302010103020103030101050302010103020101030301050301
+01030301010b040201010402010703010101030101000301010003010101030201010302
+01ff012d0302010103000303010103020115030101030301010403010104030201060301
+0103030101010301010903010105030101030301010103020106030101030301010b0401
+0103040101020306010103010100030101000301010103010103030101ff012d03020101
+030003030101030201150301010303010104030101040301010703070101030101090301
+0105030101030301010103010107030101030301010b0401010304010101030701010301
+01000301010003010101030701ff012d0302010103000303010103020115030101030301
+010403010104030101070307010103010109030101050301010303010101030101070301
+01030301010b040101030401010103010103030101010301010003010100030101010307
+01ff012d0302010103000303010103020115030101020302010403010104030101070302
+0106030201010302010303010105030201010302010103010107030201010302010b0401
+0103040101010301010303010101030101000301010003010101030201ff013203020101
+030003030101030201150306010303050102030101080305010303050104030401030305
+0102030101080306010b0401010304010101030701010301010003010100030101020305
+01ff012e0302010103000303010103020115030501040305010203010109030301050303
+0106030301040303010303010109030201000301010b0401010304010102030601010301
+01000301010003010103030301ff012f030201010300030301010302016b030101ff015f
+030201010300030301010302016b030101ff015f03020101030003030101030201660305
+01ff01600302010103000303010103020166030401ff0161030201010300030301010302
+01140009054500bd051d018c03020101030003030101030201140009054500bd051d018c
+03020101030003030101030201140009054500bd050d0601050d018c0302010103000303
+0101030201140009054500bd050d0601050d018c03020101030003030101030201140009
+05020303050d030105090301052200bd0502060305060601050606030502018c03020101
+03000303010103020114000905010305050c030105090301052200bd0502060305060601
+050606030502018c030201010300030301010302011400090500030205010302050c0301
+05080301052200bd0502060105080601050806010502018c030201010300030301010302
+011400090500030105120301050703050504030305030301050003010500030005020301
+05000302050200bd0502060105080601050806010502018c030201010300030301010302
+01140009050003010513030105060305050303050502030705010306050100bd05020601
+05080601050806010502018c0302010103000303010103020114000905000301050a0301
+050603010507030105050302050103020501030105000301050003010501030205010302
+050000bd0502060105080601050806010502018c03020101030003030101030201140009
+05000301050a030105070301050603010505030105030301050103010500030105000301
+0501030105030301050000bd0502060105080601050806010502018c0302010103000303
+010103020114000905000301051403010506030105050307050103010500030105000301
+0501030105030301050000bd0502060105080601050806010502018c0302010103000303
+010103020114000905000301051503010505030105050307050103010500030105000301
+0501030105030301050000bd0502060105080601050806010502018c0302010103000303
+01010302011400090500030205010302050f030105050301050503020506030105000301
+050003010501030205010302050000bd0502060105050607050506010502018c03020101
+030003030101030201140009050103050505030105090301050403040503030505020301
+050003010500030105010306050100bd0502060105060605050606010502018c03020101
+030003030101030201140009050203030506030105090301050503030504030305030301
+05000301050003010501030105000302050200bd0502060105070603050706010502018c
+03020101030003030101030201140009051a0301051f0301050600bd0502060105080601
+050806010502018c03020101030003030101030201140009051a0301051f0301050600bd
+05020603050f06030502018c030201010300030301010302011400090709053203010506
+00bd05020603050f06030502018c03020101030003030101030201140009070905320301
+050600bd051d018c03020101030003030101030201ff01cd030201010300030301010302
+01ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd
+03020101030003030101030201ff01cd03020101030003030101030201ff01cd03020101
+030003030101030201ff01cd03020101030003030101030201ff01cd0302010103000303
+0101030201ff01cd03020101030003030101030201ff01cd030201010300030301010302
+01ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd
+03020101030003030101030201ff01cd03020101030003030101030201ff01cd03020101
+030003030101030201ff01cd03020101030003030101030201ff01cd0302010103000303
+0101030201ff01cd03020101030003030101030201ff01cd030201010300030301010302
+01ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd
+03020101030003030101030201ff01cd0302010103000303010103020122060101ff01a8
+030201010300030301010302011506050106060101240601012f040101ff014f03020101
+030003030101030201150606012c0601012f040101ff014f030201010300030301010302
+0115060101020602012b0601012f040101ff014f03020101030003030101030201150601
+010306010102060301040601010006040103060301050603010406050104060301030601
+010006040101060101030601010c04050102060101000604010306030105060301ff012f
+030201010300030301010302011506010103060101020603010406070102060501030605
+0103060501030605010206070101060101030601010c0405010206070102060501030605
+01ff012e0302010103000303010103020115060101030601010406010104060301050602
+010106020101060201010602010306010105060201010602010106030105060101030601
+010d0401010506030105060201010602010106020101060201ff012d0302010103000303
+010103020115060101030601010406010104060201060601010306010101060101090601
+0105060101030601010106020106060101030601010d0401010506020106060101030601
+010106010103060101ff012d030201010300030301010302011506010103060101040601
+010406010107060701010601010906010105060101030601010106010107060101030601
+010d040101050601010706070101060701ff012d03020101030003030101030201150601
+010306010104060101040601010706070101060101090601010506010103060101010601
+0107060101030601010d040101050601010706070101060701ff012d0302010103000303
+010103020115060101020602010406010104060101070602010606020101060201030601
+0105060201010602010106010107060201010602010d0401010506010107060201060602
+01ff01320302010103000303010103020115060601030605010206010108060501030605
+01040604010306050102060101080606010d040401020601010806050103060501ff012e
+030201010300030301010302011506050104060501020601010906030105060301060603
+01040603010306010109060201000601010e040301020601010906030105060301ff012f
+030201010300030301010302016b060101ff015f030201010300030301010302016b0601
+01ff015f0302010103000303010103020166060501ff0160030201010300030301010302
+0166060401ff0161030201010300030301010302011408ff08210009011d054f011e0302
+01010300030301010302011408ff08210009011d054f011e030201010300030301010302
+011408ff08210009011d054f011e03020101030003030101030201140821060108fd0009
+011d054f011e0302010103000303010103020114080a06050810060108fd0009011d0520
+0903050304010524011e0302010103000303010103020114080a060608ff080f0009011d
+051f0905050204010524011e0302010103000303010103020114080a06010802060208ff
+080e0009011d051e090205010902050104010524011e0302010103000303010103020114
+080a06010803060108010601080006040802060308040601080306010803060308050603
+08de0009011d051e0901050309010501040105020401051f011e03020101030003030101
+03020114080a060108030601080106070802060308040601080306010802060508030605
+08dd0009011d051e09010503090105010401050104010520011e03020101030003030101
+03020114080a060108030601080106030808060108040601080306010801060208010602
+080106010803060108dc000308010003011d051e09010503090105010401050004010521
+011e0302010103000303010103020114080a060108030601080106020809060108040601
+0803060108010601080306010801060208e1000208030002011d051e0901050309010501
+04030522060901140302010103000303010103020114080a06010803060108010601080a
+06010804060108030601080106070802060508dd000108050001011d051e090105030901
+050104020523060901140302010103000303010103020114080a06010803060108010601
+080a06010804060108030601080106070806060208dc000008070000011d051e09010503
+0901050104040521060901140302010103000303010103020114080a0601080206020801
+0601080a0601080506010801060108020602080606010803060108dc0009011d051e0902
+0501090205010401050104010520060901140302010103000303010103020114080a0606
+080206010808060508040603080406050803060508dd0009011d051f0905050204010502
+0401051f060901140302010103000303010103020114080a060508030601080806050805
+0601080606030805060308de0009011d052009030503040105030401051e060901140302
+01010300030301010302011408ff08210009011d054f0609011403020101030003030101
+0302011408ff08210009011d054f06090114030201010300030301010302011408ff0821
+0009011d054f06090114030201010300030301010302011408ff08210009011d054f0609
+01140302010103000303010103020114080d060108ff0811000008000000080000000800
+00000800000008000127064f01140302010103000303010103020114080d060108ff0812
+0000080000000800000008000000080000000127064f0114030201010300030301010302
+0114080d060108ff081100000800000008000000080000000800000008000127064f0114
+0302010103000303010103020114080d060108ff08120000080000000800000008000000
+080000000127064f01140302010103000303010103020114080d0601081a0603080d0601
+08e200000800000008000000080000000800000008000127064f01140302010103000303
+010103020114080d060108190605080c060108e300000800000008000000080000000800
+00000127064f01140302010103000303010103020114080d06010818060208010602080c
+060108e100000800000008000000080000000800000008000127064f0114030201010300
+0303010103020114080d0601081806010812060108e20000080000000800000008000000
+080000000127064f01140302010103000303010103020114080d06190800060108130601
+08e000000800000008000000080000000800000008000127064f01140302010103000303
+010103020114080d061908000601080a06010806060108e1000008000000080000000800
+0000080000000127064f011403020101030003030101030201140821060108040601080a
+06010807060108df0000080000000800000008000000080000000800018c030201010300
+030301010302011408210601080406010814060108e00000080000000800000008000000
+08000000018c030201010300030301010302011408210601080406010815060108de0000
+080000000800000008000000080000000800018c03020101030003030101030201140821
+06010804060208010602080f060108df000008000000080000000800000008000000018c
+03020101030003030101030201140821060108050605080506010809060108dd00000800
+00000800000008000000080000000800018c030201010300030301010302011408210601
+08060603080606010809060108de000008000000080000000800000008000000018c0302
+01010300030301010302011408210601081e060108dc0000080000000800000008000000
+080000000800018c030201010300030301010302011408210601081e060108dd00000800
+0000080000000800000008000000018c03020101030003030101030201140821060108fd
+0000080000000800000008000000080000000800018c0302010103000303010103020114
+0821060108fe000008000000080000000800000008000000018c03020101030003030101
+030201140821040108fd0000080000000800000008000000080000000800018c03020101
+030003030101030201140821040108fe000008000000080000000800000008000000018c
+03020101030003030101030201140821040108fd00000800000008000000080000000800
+00000800018c03020101030003030101030201140821040108fe00000800000008000000
+0800000008000000018c030201010300030301010302011408210401081a040108e00000
+080000000800000008000000080000000800018c03020101030003030101030201140821
+0401081a040108e1000008000000080000000800000008000000018c0302010103000303
+01010302011408210401081a040108e00000080000000800000008000000080000000800
+018c03020101030003030101030201140821040108190405080404030803040108000401
+08000400080204010800040208c1000008000000080000000800000008000000018c0302
+010103000303010103020114082104190801040508030405080204070801040608bf0000
+080000000800000008000000080000000800018c03020101030003030101030201140821
+0419080204010805040208010402080104010800040108000401080104020801040208bf
+000008000000080000000800000008000000018c03020101030003030101030201140835
+0401080604010805040108030401080104010800040108000401080104010803040108be
+0000080000000800000008000000080000000800018c0302010103000303010103020114
+083504010806040108050407080104010800040108000401080104010803040108bf0000
+08000000080000000800000008000000018c030201010300030301010302011408350401
+0806040108050407080104010800040108000401080104010803040108be000008000000
+0800000008000000080000000800018c0302010103000303010103020114083504010806
+040108050402080604010800040108000401080104020801040208bf0000080000000800
+00000800000008000000018c030201010300030301010302011408350401080604040803
+04050802040108000401080004010801040608bf00000800000008000000080000000800
+00000800018c030201010300030301010302011408350401080704030804040308030401
+0800040108000401080104010800040208c1000008000000080000000800000008000000
+018c0302010103000303010103020114083504010822040108c400000800000008000000
+08000000080000000800018c0302010103000303010103020114083504010822040108c5
+000008000000080000000800000008000000018c03020101030003030101030201140835
+04010822040108c40000080000000800000008000000080000000800018c030201010300
+0303010103020114083504010822040108c5000008000000080000000800000008000000
+018c03020101030003030101030201140835060108e90000080000000800000008000000
+080000000800011d054f011e03020101030003030101030201140835060108ea00000800
+0000080000000800000008000000011d054f011e03020101030003030101030201140835
+060108e90000080000000800000008000000080000000800011d054f011e030201010300
+03030101030201140835060108ea000008000000080000000800000008000000011d052b
+06010521011e03020101030003030101030201140835060108e900000800000008000000
+08000000080000000800011d050c040305030601050d0601050406010521011e03020101
+030003030101030201140835060108ea000008000000080000000800000008000000011d
+050b040505020601050d06010528011e03020101030003030101030201140835060108e9
+0000080000000800000008000000080000000800011d050a04020501040205010601050d
+06010528011e030201010300030301010302011408350601081a06030805060308030601
+080006040801060108030601080306030803060108000604089700000800000008000000
+0800000008000000011d050a040105070601050006020505060205000601050206030504
+0601050006040514011e0302010103000303010103020114083506190801060508030605
+080206070801060108030601080206050802060708960000080000000800000008000000
+080000000800011d050a0401050706060503060605020603050406070514011e03020101
+030003030101030201140835061908000601080306010801060208010602080106030805
+060108030601080106020801060208010603089b00000800000008000000080000000800
+0000011d050a04010507060205010602050106020501060205040601050406030518011e
+0302010103000303010103020114083f0601080e06020806060108030601080106020806
+060108030601080106010803060108010602089b00000800000008000000080000000800
+00000800011d050a04010507060105030601050106010503060105040601050406020519
+060901140302010103000303010103020114083f0601080f060508020607080106010807
+0601080306010801060708010601089d000008000000080000000800000008000000011d
+050a0401050706010503060105010601050306010504060105040601051a060901140302
+010103000303010103020114083f06010813060208010607080106010807060108030601
+0801060708010601089c0000080000000800000008000000080000000800011d050a0401
+050706010503060105010601050306010504060105040601051a06090114030201010300
+0303010103020114083f0601080e06010803060108010602080606010808060108010601
+0802060208060601089d000008000000080000000800000008000000011d050a04020501
+0402050106010503060105010602050106020504060105040601051a0609011403020101
+03000303010103020114083f0601080f0605080306050802060108090603080406050802
+0601089c0000080000000800000008000000080000000800011d050b0405050206010503
+0601050206060502060505020601051a060901140302010103000303010103020114083f
+0601081006030805060308030601080a06010806060308030601089d0000080000000800
+00000800000008000000011d050c04030503060105030601050306020500060105020605
+05020601051a060901140302010103000303010103020114083f060108df000008000000
+0800000008000000080000000800011d054f060901140302010103000303010103020114
+083f060108e0000008000000080000000800000008000000011d054f0609011403020101
+03000303010103020114083f060108df0000080000000800000008000000080000000800
+011d054f060901140302010103000303010103020114083f060108e00000080000000800
+00000800000008000000011d054f060901140302010103000303010103020114083f0601
+08df00090127064f01140302010103000303010103020114083f060108df00090127064f
+01140302010103000303010103020114083f060108df00090127064f0114030201010300
+0303010103020114083f060108df0001080500010127064f011403020101030003030101
+03020114083f0601081b0604080206030806060308ac0001080500010127064f01140302
+010103000303010103020114083f0601081a0605080206030805060508ab000108050001
+0127064f01140302010103000303010103020114083f0601081a06010808060108040602
+0801060208aa0001080500010127064f01140302010103000303010103020114083f0601
+080e0601080306010803060108080601080a060108aa0001080500010127064f01140302
+010103000303010103020114083f060f0800060108030601080106070804060108090602
+08aa0001080500010127064f01140302010103000303010103020114083f060f08000601
+0803060108010607080406010808060208ab0001080500010127064f0114030201010300
+0303010103020114083f0601080e06010803060108030601080806010807060208ac0001
+08050001018c0302010103000303010103020114083f0601080e06010803060108030601
+080806010806060208ad000108050001018c0302010103000303010103020114083f0601
+080e06010803060108030601080806010805060208ae000108050001018c030201010300
+0303010103020114083f0601080e06020801060208030601080806010804060208af0001
+08050001018c0302010103000303010103020114083f0601080f06060803060108060605
+0802060708aa000108050001018c0302010103000303010103020114083f060108100602
+0800060108030601080606050802060708aa000108050001018c03020101030003030101
+03020114083f06010814060108c80009018c0302010103000303010103020114083f0601
+0814060108c80009018c0302010103000303010103020114083f0601080f060508c90009
+018c0302010103000303010103020114083f0601080f060408ca0009018c030201010300
+0303010103020114083f060108df0000080000000800000008000000080000000800018c
+0302010103000303010103020114083f060108e000000800000008000000080000000800
+0000018c0302010103000303010103020114083f060108df000008000000080000000800
+0000080000000800018c0302010103000303010103020114083f060108e0000008000000
+080000000800000008000000018c0302010103000303010103020114083f060108190605
+080406030803060708010601080306010801060508060601080e06050804060508020605
+08660000080000000800000008000000080000000800018c030201010300030301010302
+0114083f060108190605080306050802060708010601080306010801060608030603080e
+060608030605080206060866000008000000080000000800000008000000018c03020101
+03000303010103020114083f0601081b0601080406020801060208040601080406020801
+0602080106010802060208020603080e0601080206020804060108040601080206020864
+0000080000000800000008000000080000000800018c0302010103000303010103020114
+083f0601081b060108040602080906010804060208010602080106010803060108040601
+080e06010803060108040601080406010803060108650000080000000800000008000000
+08000000018c0302010103000303010103020114083f060f080d06010805060208080601
+08040607080106010803060108040601080e060108030601080406010804060108030601
+08640000080000000800000008000000080000000800018c030201010300030301010302
+0114083f060f080d0601080606020807060108040607080106010802060208040601080e
+060108030601080406010804060108020602086500000800000008000000080000000800
+0000018c0302010103000303010103020114085d06010808060108060601080406010800
+0601080006010801060608050601080e0601080306010804060108040606086500000800
+00000800000008000000080000000800018c0302010103000303010103020114085d0601
+08090601080506010804060108000601080006010801060508060601080e060108030601
+08040601080406050867000008000000080000000800000008000000018c030201010300
+0303010103020114085d06010809060208040601080406010803060108010601080a0601
+080e06010803060108040601080406010802060108650000080000000800000008000000
+080000000800018c0302010103000303010103020114085d060108040602080106020804
+0601080406010803060108010601080a0601080e06010802060208040601080406010803
+06010865000008000000080000000800000008000000018c030201010300030301010302
+0114085b06050803060508050601080406010803060108010601080a0601080706010804
+060608030605080206010803060108640000080000000800000008000000080000000800
+018c0302010103000303010103020114085b060508040603080606010804060108030601
+08010601080a060108070601080406050804060508020601080306010865000008000000
+080000000800000008000000018c030201010300030301010302011408ff082100000800
+00000800000008000000080000000800018c030201010300030301010302011408500607
+08c9000008000000080000000800000008000000018c0302010103000303010103020114
+0850060708c80000080000000800000008000000080000000800018c0302010103000303
+01010302011408ff0822000008000000080000000800000008000000018c030201010300
+030301010302011408ff08210000080000000800000008000000080000000800011d054f
+011e030201010300030301010302011408ff082200000800000008000000080000000800
+0000011d054f011e030201010300030301010302011408ff082100000800000008000000
+08000000080000000800011d054f011e030201010300030301010302011408ff08220000
+08000000080000000800000008000000011d054f011e0302010103000303010103020114
+08ff08210000080000000800000008000000080000000800011d050a0405052d0601050e
+011e030201010300030301010302011408ff082200000800000008000000080000000800
+0000011d050a0406052c0601050e011e030201010300030301010302011408ff08210000
+080000000800000008000000080000000800011d050a040105020402052b0601050e011e
+030201010300030301010302011408ff0822000008000000080000000800000008000000
+011d050a0401050304010503060305030601050306010503060305030601050006040502
+0605050b011e030201010300030301010302011408ff0821000008000000080000000800
+0000080000000800011d050a040105030401050206050502060105030601050206050502
+060705020605050b011e030201010300030301010302011408ff08220000080000000800
+00000800000008000000011d050a04010502040205010602050106020501060105030601
+05010602050106020501060305070601050e011e030201010300030301010302011408ff
+08210000080000000800000008000000080000000800011d050a04060502060105030601
+050106010503060105010601050306010501060205080601050e06090114030201010300
+030301010302011408ff0822000008000000080000000800000008000000011d050a0405
+050306070501060105030601050106070501060105090601050e06090114030201010300
+030301010302011408ff08210000080000000800000008000000080000000800011d050a
+040105020401050206070501060105030601050106070501060105090601050e06090114
+030201010300030301010302011408ff0822000008000000080000000800000008000000
+011d050a040105030401050106020507060105010601050206020506060105090601050e
+06090114030201010300030301010302011408ff08210000080000000800000008000000
+080000000800011d050a0401050304010502060505040603050406050502060105090604
+050b06090114030201010300030301010302011408ff0822000008000000080000000800
+000008000000011d050a04010503040105030603050606010506060305030601050a0603
+050b06090114030201010300030301010302011408ff0821000008000000080000000800
+0000080000000800011d054f06090114030201010300030301010302011408ff08220000
+08000000080000000800000008000000011d054f06090114030201010300030301010302
+011408ff08210000080000000800000008000000080000000800011d054f060901140302
+01010300030301010302011408ff0822000008000000080000000800000008000000011d
+054f06090114030201010300030301010302011408ff0821000008000000080000000800
+00000800000008000127064f0114030201010300030301010302011408ff082200000800
+00000800000008000000080000000127064f0114030201010300030301010302011408ff
+082100000800000008000000080000000800000008000127064f01140302010103000303
+01010302011408ff08220000080000000800000008000000080000000127064f01140302
+01010300030301010302011408ff08210000080000000800000008000000080000000800
+0127064f0114030201010300030301010302011408ff0822000008000000080000000800
+0000080000000127064f0114030201010300030301010302011408ff0821000008000000
+08000000080000000800000008000127064f0114030201010300030301010302011408ff
+08220000080000000800000008000000080000000127064f011403020101030003030101
+0302011408ff082100000800000008000000080000000800000008000127064f01140302
+01010300030301010302011408ff08220000080000000800000008000000080000000127
+064f0114030201010300030301010302011408ff08210000080000000800000008000000
+080000000800018c030201010300030301010302011408ff082200000800000008000000
+0800000008000000018c030201010300030301010302011408ff08210000080000000800
+000008000000080000000800018c030201010300030301010302011408ff082200000800
+0000080000000800000008000000018c030201010300030301010302011408ff08210000
+080000000800000008000000080000000800018c030201010300030301010302011408ff
+0822000008000000080000000800000008000000018c0302010103000303010103020114
+08ff08210000080000000800000008000000080000000800018c03020101030003030101
+0302011408ff0822000008000000080000000800000008000000018c0302010103000303
+01010302011408ff08210000080000000800000008000000080000000800018c03020101
+0300030301010302011408ff0822000008000000080000000800000008000000018c0302
+01010300030301010302011408ff08210000080000000800000008000000080000000800
+018c030201010300030301010302011408ff082200000800000008000000080000000800
+0000018c030201010300030301010302011408ff08210000080000000800000008000000
+080000000800018c030201010300030301010302011408ff082200000800000008000000
+0800000008000000018c030201010300030301010302011408ff08210000080000000800
+000008000000080000000800018c030201010300030301010302011408ff082200000800
+0000080000000800000008000000018c030201010300030301010302011408ff08210000
+080000000800000008000000080000000800018c030201010300030301010302011408ff
+0822000008000000080000000800000008000000018c0302010103000303010103020114
+08ff08210000080000000800000008000000080000000800018c03020101030003030101
+0302011408ff0822000008000000080000000800000008000000018c0302010103000303
+01010302011408ff08210000080000000800000008000000080000000800018c03020101
+0300030301010302011408ff0822000008000000080000000800000008000000018c0302
+01010300030301010302011408ff08210000080000000800000008000000080000000800
+018c030201010300030301010302011408ff082200000800000008000000080000000800
+0000018c030201010300030301010302011408ff08210000080000000800000008000000
+080000000800018c030201010300030301010302011408ff082200000800000008000000
+0800000008000000018c030201010300030301010302011408ff08210000080000000800
+000008000000080000000800018c030201010300030301010302011408ff082200000800
+0000080000000800000008000000018c030201010300030301010302011408ff08210000
+080000000800000008000000080000000800018c030201010300030301010302011408ff
+0822000008000000080000000800000008000000018c0302010103000303010103020114
+08ff08210009018c030201010300030301010302011408ff08210009018c030201010300
+030301010302011408ff08210009018c030201010300030301010302011408ff08210009
+018c030201010300030301010302011408ff08210009018c030201010300030301010302
+011408ff08210009018c030201010300030301010302011408ff08210009018c03020101
+0300030301010302011408ff08210009018c030201010300030301010302011408ff0821
+0009018c030201010300030301010302011408ff0821000008070000018c030201010300
+030301010302011408ff0821000108050001018c030201010300030301010302011408ff
+0821000208030002018c030201010300030301010302011408ff0821000308010003018c
+030201010300030301010302011408ff08210009018c0302010103000303010103020114
+08ff08210009018c030201010300030301010302011408ff08210009018c030201010300
+030301010302011408ff08210009018c030201010300030301010302011408ff08210009
+018c030201010300030301010302011408ff08210009018c030201010300030301010302
+011408ff08210009018c03020101030003030101030201ff01cd03020101030003030101
+030201ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff
+01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd0302
+0101030003030101030201ff01cd03020101030003030101030201ff01cd030201010300
+03030101030201ff01cd03020101030003030101030201ff01cd03020101030003030101
+030201ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff
+01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd0302
+0101030003030101030201ff01cd03020101030003030101030201ff01cd030201010300
+03030101030201ff01cd03020101030003030101030201ff01cd03020101030003030101
+030201ff01cd03020101030003030101030201ff01cd03020101030003030101030201ff
+01cd03020101030003030101030201ff01cd03020101030003030101030201ff01cd0302
+0101030003030101030201ff01cd03020101030003030101030201ff01cd030201010300
+03030101030201ff01cd0302010103000303010103ff03d3010103000303010103ff03d3
+01010300030301ff01d70300030301ff01d7030003ff03dc03ff03dc01ff01dc01ff01dc
+01ff01dc01ff01dc01ff01dc01ff01dc
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 476 359
+%%EOF

+ 550 - 0
docs/pics/ide/target.eps

@@ -0,0 +1,550 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (target.eps)
+%%CreationDate: (Wed Nov 15 21:36:01 2000)
+%%BoundingBox: 0 0 358 238
+%%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 359 239
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+359 239
+12.000000
+359 239
+1
+0
+0
+10
+000080
+c0c0c0
+00fc00
+f8fcf8
+008080
+000000
+f8fc00
+f87c78
+008000
+00fcf8
+00ff006601ff016601ff016601ff01660120020501ff013f011703030104020501040303
+01670307012b0301019801170303010402050104030301670307012b0301019801170301
+0106020501060301016a0301012e03010198010103120102030101060205010603010102
+0359010d0301010503040103030101000304010303030105030301040305010b03890101
+031201020301010602050106030101020359010d03010105030501020307010203050103
+030501030305010b038901010302011203010106020501060301016a0301010a03010101
+030301050302010103020101030201010302010303010196030101010302011203010106
+020501060301016a03010105030601010302010603010103030101010301010303010103
+030101960301010103020101030d01020301010602050106030101020359010d03010104
+03070101030101070301010303010101030701030301010e038501010301010103020101
+030d01020301010602050106030101020359010d03010104030101030301010103010107
+0301010303010101030701030301010e0385010103010101030201010302010d03010106
+020501060301016a03010104030101030301010103010107030201010302010103020108
+030101910302010103010101030201010302010d03010106020501060301016a03010104
+030701010301010803060102030501040304018e0302010103010101030201010302010d
+03010106020501060301016a030101050306010103010109030201000301010303030106
+0303018e0302010103010101030201010302010d030101130301018b030101a103020101
+03010101030201010302010d0303010f0303018a030201a1030201010301010103020101
+0302010d0303010f03030186030501a2030201010301010103020101030201ac030401a3
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+030201010301010103020101030201ff0155030201010301010103020101030201ff0155
+0302010103010101030201010302011f0307012b0301011a0303011003010108030401bf
+0302010103010101030201010302011f0307012b0301011a0303011003010107030501bf
+030201010301010103020101030201220301012e0301011c0301011003010107030101c3
+030201010301010103020101030201220301010503040103030101000304010303030105
+030301040305010c03010100030201060301010503040104030501040301010703030103
+03010100030401010301010003010100030001a203020101030101010302010103020122
+03010105030501020307010203050103030501030305010c030601050301010503050103
+03050102030701020305010203070101030701a103020101030101010302010103020122
+0301010a0301010103030105030201010302010103020101030201030301010f03020101
+030201040301010a03010103030101050307010103020101030201010303010503010100
+03010100030101a103020101030101010302010103020122030101050306010103020106
+030101030301010103010103030101030301010f03010103030101040301010503060103
+03010107030101050301010303010101030201060301010003010100030101a103020101
+030101010302010103020122030101040307010103010107030101030301010103070103
+0301010f0301010303010104030101040307010303010107030101050301010303010101
+030101070301010003010100030101a10302010103010101030201010302012203010104
+0301010303010101030101070301010303010101030701030301010f0301010303010104
+030101040301010303010103030101070301010503010103030101010301010703010100
+03010100030101a103020101030101010302010103020122030101040301010303010101
+030101070302010103020101030201080301010f03020101030201040301010403010103
+0301010303010107030101050302010103020101030101070301010003010100030101a1
+030201010301010103020101030201220301010403070101030101080306010203050104
+0304010c0306010303050102030701030304010403010106030501020301010703010100
+03010100030101a103020101030101010302010103020122030101050306010103010109
+0302010003010103030301060303010c0301010003020104030501030306010403030104
+0301010703030103030101070301010003010100030101a1030201010301010103020101
+030201430301011f030101ed030201010301010103020101030201420302011f030101ed
+0302010103010101030201010302013e03050120030101ed030201010301010103020101
+0302013e03040121030101ed0302010103010101030201010302011404ff042b01140302
+010103010101030201010302011404ff042b011403020101030101010302010103020114
+04ff042b011403020101030101010302010103020114040e0501040e0501043c05010440
+05010487011403020101030101010302010103020114040d050104100501040f05050405
+050304050503041005010406050304050503040505030405050304030501040305010404
+0601040605010486011403020101030101010302010103020114040c050104120501040e
+05060403050504030505040e050104060505040305050403050504030505040205010403
+050104020603040705010485011403020101030101010302010103020114040c05000414
+0500040e05010402050204010502040105020401050204010502040d0500040605020401
+050204010502040105020401050204010502040105020401050204010501040305010402
+0603040805000485011403020101030101010302010103020114040b050104140501040d
+050104030501040105010403050104010502041105010406050104070501040305010407
+050104070501040105010403050104040601040805010484011403020101030101010302
+010103020114040b050104140501040d0501040305010401050104030501040205020410
+050104060501040705010403050104060501040705020401050104030501040406010408
+05010484011403020101030101010302010103020114040b050104140501040d05010403
+0501040105010403050104030502040f0501040605010407050104030501040405020407
+050204020501040305010404060104080501048401140302010103010101030201010302
+0114040b050104140501040d050104030501040105010403050104050501040e05010406
+050104010503040105010403050104040503040505020403050104030501040406010408
+05010484011403020101030101010302010103020114040b050104140501040d05010403
+0501040105010403050104060501040d0501040605010401050304010501040305010406
+050204030502040405010403050104040601040805010484011403020101030101010302
+010103020114040b050104140501040d050104030501040105010403050104060502040c
+050104060501040305010401050104030501040705010402050204050501040305010404
+0601040805010484011403020101030101010302010103020114040b050104140501040d
+05010402050204010502040105020401050204010502040c050104060502040105020401
+050204010502040105020401050204010502040705010401050104050601040805010484
+011403020101030101010302010103020114040b050104140501040d0506040305050403
+0505040d0501040705060402050504030505040205070403050304060601040805010484
+011403020101030101010302010103020114040c050004140500040e0505040505030405
+0503040f0500040805020400050104030503040505030403050704040501040706010408
+05000485011403020101030101010302010103020114040c050104120501043805010444
+05010485011403020101030101010302010103020114040d050104100501043a05010442
+05010486011403020101030101010302010103020114040e0501040e0501043c05010440
+0501048701140302010103010101030201010302011404ff042b01140302010103010101
+030201010302011404ff042b01140302010103010101030201010302011404ff042b0114
+0302010103010101030201010302011404ff042b01140302010103010101030201010302
+0114040e0501040e0501043c050104400501048701140302010103010101030201010302
+0114040d050104100501040f060504050503040505030410050104060503040505030405
+050304050503040305010403050104030503040505010486011403020101030101010302
+010103020114040c050104120501040e06060403050504030505040e0501040605050403
+050504030505040305050402050104030501040205050405050104850114030201010301
+01010302010103020114040c050004140500040e06010402060204010502040105020401
+050204010502040d05000406050204010502040105020401050204010502040105020401
+050204010502040105010403050104010502040105020405050004850114030201010301
+01010302010103020114040b050104140501040d06010403060104010501040305010401
+050204110501040605010407050104030501040705010407050104010501040305010407
+0501040505010484011403020101030101010302010103020114040b050104140501040d
+060104030601040105010403050104020502041005010406050104070501040305010406
+050104070502040105010403050104060502040505010484011403020101030101010302
+010103020114040b050104140501040d060104030601040105010403050104030502040f
+050104060501040705010403050104040502040705020402050104030501040505020406
+05010484011403020101030101010302010103020114040b050104140501040d06010403
+0601040105010403050104050501040e0501040605010401050304010501040305010404
+050304050502040305010403050104040502040705010484011403020101030101010302
+010103020114040b050104140501040d060104030601040105010403050104060501040d
+050104060501040105030401050104030501040605020403050204040501040305010403
+0502040805010484011403020101030101010302010103020114040b050104140501040d
+060104030601040105010403050104060502040c05010406050104030501040105010403
+050104070501040205020405050104030501040205020409050104840114030201010301
+01010302010103020114040b050104140501040d06010402060204010502040105020401
+050204010502040c05010406050204010502040105020401050204010502040105020401
+0502040705010401050104020502040a0501048401140302010103010101030201010302
+0114040b050104140501040d06060403050504030505040d050104070506040205050403
+050504020507040305030403050704050501048401140302010103010101030201010302
+0114040c050004140500040e06050405050304050503040f050004080502040005010403
+050304050503040305070404050104040507040505000485011403020101030101010302
+010103020114040c05010412050104380501044405010485011403020101030101010302
+010103020114040d050104100501043a0501044205010486011403020101030101010302
+010103020114040e0501040e0501043c0501044005010487011403020101030101010302
+01010302011404ff042b01140302010103010101030201010302011404ff042b01140302
+010103010101030201010302011404ff042b011403020101030101010302010103020114
+04ff042b011403020101030101010302010103020114040e0501040e0501041d050104e9
+011403020101030101010302010103020114040d050104100501040f0601040a050104e9
+011403020101030101010302010103020114040c050104120501040e060104f601140302
+0101030101010302010103020114040c050004140500040e060104f60114030201010301
+01010302010103020114040b050104140501040d06010408050304040501040005020403
+050104030501040105010403050104c8011403020101030101010302010103020114040b
+050104140501040d060104080503040405060402050104030501040105020401050204c8
+011403020101030101010302010103020114040b050104140501040d0601040a05010404
+05020401050204010501040305010402050504c901140302010103010101030201010302
+0114040b050104140501040d0601040a0501040405010403050104010501040305010403
+050304ca011403020101030101010302010103020114040b050104140501040d0601040a
+0501040405010403050104010501040305010404050104cb011403020101030101010302
+010103020114040b050104140501040d0601040a05010404050104030501040105010403
+05010403050304ca011403020101030101010302010103020114040b050104140501040d
+0601040a0501040405010403050104010502040105020402050504c90114030201010301
+01010302010103020114040b050104140501040d06070402050504020501040305010402
+0506040105020401050204c8011403020101030101010302010103020114040c05000414
+0500040e06070402050504020501040305010403050204000501040105010403050104c8
+011403020101030101010302010103020114040c05010412050104ff0407011403020101
+030101010302010103020114040d05010410050104ff0408011403020101030101010302
+010103020114040e0501040e050104ff0409011403020101030101010302010103020114
+04ff042b01140302010103010101030201010302011404ff042b01140302010103010101
+030201010302011404ff042b01140302010103010101030201010302011404ff042b0114
+03020101030101010302010103020114040e0501040e050104ff04090114030201010301
+01010302010103020114040d0501041005010411060304050503040905010403050304d4
+011403020101030101010302010103020114040c050104120501040f0605040305050408
+05010402050504d3011403020101030101010302010103020114040c050004140500040e
+060204010602040105020401050204060501040205020401050204d20114030201010301
+01010302010103020114040b050104140501040d06010403060104010502040b05010408
+050104d2011403020101030101010302010103020114040b050104140501040d06010403
+060104020502040905010408050204d2011403020101030101010302010103020114040b
+050104140501040d06010403060104030502040805010407050204d30114030201010301
+01010302010103020114040b050104140501040d06010403060104050501040605010407
+050204d4011403020101030101010302010103020114040b050104140501040d06010403
+060104060501040505010406050204d5011403020101030101010302010103020114040b
+050104140501040d06010403060104060502040305010406050204d60114030201010301
+01010302010103020114040b050104140501040d06020401060204010502040105020403
+05010405050204d7011403020101030101010302010103020114040b050104140501040e
+060504030505040305010406050704d2011403020101030101010302010103020114040c
+0500041405000410060304050503040405010406050704d2011403020101030101010302
+010103020114040c0501041205010422050104e201140302010103010101030201010302
+0114040d0501041005010423050104e2011403020101030101010302010103020114040e
+0501040e050104ff040901140302010103010101030201010302011404ff042b01140302
+010103010101030201010302011404ff042b011403020101030101010302010103020114
+04ff042b01140302010103010101030201010302011404ff042b01140302010103010101
+0302010103020114040e0301040e030104ff040901140302010103010101030201010302
+0114040d030104100301040f060104030601040203050402030104030301040303030405
+030304ca011403020101030101010302010103020114040c030104120301040e06010403
+0601040203050402030204020301040203050403030504c9011403020101030101010302
+010103020114040c030004140300040e0601040306010404030104040302040203010401
+030204010302040103020401030204c8011403020101030101010302010103020114040b
+0301040603010403030104050301040d0601040306010404030104040303040103010407
+03010407030104c8011403020101030101010302010103020114040b0301040703010401
+030104060301040d06010400060104000601040403010404030304010301040603010407
+030204c8011403020101030101010302010103020114040b03010408030304070301040d
+0601040006010400060104040301040403010400030104000301040403020407030204c9
+011403020101030101010302010103020114040b03010406030704050301040d06010400
+06010400060104040301040403010400030104000301040403030405030204ca01140302
+0101030101010302010103020114040b03010408030304070301040d0601040006010400
+0601040403010404030104010303040603020403030204cb011403020101030101010302
+010103020114040b0301040703010401030104060301040d060104000601040006010404
+03010404030104010303040703010402030204cc01140302010103010101030201010302
+0114040b0301040603010403030104050301040d06010400060104000601040403010404
+03010402030204010302040103020401030204cd01140302010103010101030201010302
+0114040b030104140301040d0607040203050402030104020302040203050402030704c8
+011403020101030101010302010103020114040c030004140300040f0601040106010403
+03050402030104030301040303030403030704c801140302010103010101030201010302
+0114040c03010412030104ff0407011403020101030101010302010103020114040d0301
+0410030104ff0408011403020101030101010302010103020114040e0301040207090401
+030104ff04090114030201010301010103020101030201140413070904ff040d01140302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+01010301010103020101030201ff0155030201010301010103020101030201ff01550302
+0101030101010302010103020146084f0131084f013c0302010103010101030201010302
+0146084f0131084f013c03020101030101010302010103020146084f0131084f013c0302
+0101030101010302010103020146084f0131084f013c0302010103010101030201010302
+0146082009030803060108020601081f0131080c0503082c0503080d013c030201010301
+01010302010103020146081f09050802060108010602081f0131080b0505082b0503080d
+013c03020101030101010302010103020146081e09020801090208010601080006020820
+0131080a050208010502082c0501080d013c03020101030101010302010103020146081e
+0901080309010801060408210131080a0501080805040803050108000502080505030805
+050308060501080d013c03020101030101010302010103020146081e0901080309010801
+060308220131080a05010808050508020506080305050803050508050501080d013c0302
+0101030101010302010103020146081e0901080309010801060208230131080a0501080d
+050108010502080105020801050208010502080105020801050208040501080d013c0302
+0101030101010302010103020146081e09010803090108010603082205090127080a0501
+08080506080105010803050108010501080705010803050108040501080d050901320302
+0101030101010302010103020146081e09010803090108010604082105090127080a0501
+080705070801050108030501080105010807050708040501080d05090132030201010301
+01010302010103020146081e0901080309010801060108000602082005090127080a0501
+08070501080305010801050108030501080105010807050708040501080d050901320302
+0101030101010302010103020146081e0902080109020801060108010602081f05090127
+080a05020801050208010501080305010801050108030501080105020801050208010502
+08090501080d0509013203020101030101010302010103020146081f0905080206010802
+0602081e05090127080b0505080205070801050108030501080205050803050508030505
+080b0509013203020101030101010302010103020146082009030803060108030601081e
+05090127080c0503080405060801050108030501080305030805050308040505080b0509
+013203020101030101010302010103020146084f05090127084f05090132030201010301
+01010302010103020146084f05090127084f050901320302010103010101030201010302
+0146084f05090127084f0509013203020101030101010302010103020146084f05090127
+084f0509013203020101030101010302010103020150054f0131054f0132030201010301
+01010302010103020150054f0131054f013203020101030101010302010103020150054f
+0131054f013203020101030101010302010103020150054f0131054f0132030201010301
+01010302010103020150054f0131054f013203020101030101010302010103020150054f
+0131054f013203020101030101010302010103020150054f0131054f0132030201010301
+01010302010103020150054f0131054f013203020101030101010302010103020150054f
+0131054f013203020101030101010302010103020150054f0131054f0132030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff0155030201010301010103020101030201ff0155030201010301
+010103020101030201ff015503020101030101010302010103ff035b0101030101010302
+010103ff035b010103010101030201ff015f03010101030201ff015f0301010103ff0364
+010103ff036401ff016601ff016601ff016601ff016601ff0166
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 358 238
+%%EOF

+ 577 - 0
docs/pics/ide/template.eps

@@ -0,0 +1,577 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (template.eps)
+%%CreationDate: (Wed Nov 15 21:36:01 2000)
+%%BoundingBox: 0 0 400 279
+%%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 401 280
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+401 280
+12.000000
+401 280
+1
+0
+0
+9
+c0c0c0
+000080
+00fc00
+f8fcf8
+f8fc00
+008000
+00fcf8
+008080
+000000
+000401000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010000030100
+000301000003010000030100000301000003010000030100000301000003010001010003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+010000030100000301000003010000030100000301000003010000030100000301000003
+0100000301000003010000030100000301000003010000030100000300ff009000ff0090
+00ff00900021020500ff00680101001603030004020500040303003f0301000303010022
+0304002b030100240303001003010085001803030004020500040303003f030200020301
+00210305002b030100240303001003010085001803010006020500060301003f03020002
+030100210301002f03010026030100100301008500020312000203010006020500060301
+00020331000a030300010301000303030003030100030301000d03010005030100000304
+00030303000303010000030100000300000d030500040303000303010000030100000300
+000203010000030200060301000503040004030500040303000c036c0002031200020301
+000602050006030100020331000a030300010301000203050002030100030301000b0307
+000103070002030500020307000c03050003030500020307000103060005030100050305
+0003030500030305000b036c010100000302001203010006020500060301003f03010000
+03010000030100010302000103020001030100030301000b030700010303000503020001
+0302000103010000030100000301000d0301000503020001030200010301000003010000
+0301000103020001030200040301000a0301000303010005030200010302007403020002
+0302001203010006020500060301003f0301000003010000030100010301000303010001
+03010000030100000301000d030100050302000603010003030100010301000003010000
+0301000d0301000503010003030100010301000003010000030100010301000303010004
+03010005030600030301000503010003030100740302000203020001030d000203010006
+02050006030100020331000a03010001030300010307000103010000030100000301000d
+0301000503010007030100030301000103010000030100000301000d0301000503070001
+03010000030100000301000103010003030100040301000403070003030100050307000a
+036700010302000203020001030d00020301000602050006030100020331000a03010001
+03030001030700010307000d030100050301000703010003030100010301000003010000
+0301000d0301000503070001030100000301000003010001030100030301000403010004
+0301000303010003030100050307000a0367000103020002030200010302000d03010006
+020500060301003f0301000203020001030200060307000d030100050301000703020001
+0302000103010000030100000301000d0301000503020006030100000301000003010001
+030200010302000403010004030100030301000303010005030200740302000103020101
+0000030200010302000d03010006020500060301003f0301000203020002030500020302
+00010302000d03010005030100080305000203010000030100000301000d030400030305
+000203010000030100000301000103060003030500020307000303040003030500700302
+000103020002030200010302000d03010006020500060301003f03010003030100030303
+0004030000030300000e03010005030100090303000303010000030100000301000e0303
+000403030003030100000301000003010001030100000302000403050003030600040303
+0004030300710302000103020002030200010302000d03010013030100b70301009d0302
+000103020002030200010302000d0303000f030300b70301009d03020001030200020302
+00010302000d0303000f030300b70301009d0302000103020101000003020001030200dd
+0301009d030200010302000203020001030200ff007d0302000103020002030200010302
+00ff007d030200010302000203020001030200ff007d0302000103020002030200010302
+00ff007d0302000103020101000003020001030200ff007d030200010302000203020001
+030200ff007d030200010302000203020001030200ff007d030200010302000203020001
+030200ff007d030200010302000203020001030200ff007d030200010302010100000302
+0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
+0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
+0001030200ff007d0302000103020101000003020001030200ff007d0302000103020002
+03020001030200ff007d030200010302000203020001030200ff007d0302000103020002
+03020001030200ff007d030200010302000203020001030200ff007d0302000103020101
+000003020001030200ff007d030200010302000203020001030200ff007d030200010302
+000203020001030200ff007d030200010302000203020001030200ff007d030200010302
+00020302000103020036030100ff00440302000103020101000003020001030200180301
+001b030100050303000e030100080303001a0401002403030010030100c3030200010302
+00020302000103020017030300220303000e030100080303001a04010024030300100301
+00c30302000103020002030200010302001603010001030100230301000e0301000a0301
+001a0401002603010010030100c303020001030200020302000103020015030100030301
+000103010003030100020304000403030007030100050304000303010000030200060301
+00060303000e040500040303000303010000030100000300000203010000030200060301
+0005030400040305000403030005030300ad030200010302000203020001030200150301
+000303010001030100030301000203050003030300070301000503050002030600050301
+00050305000d040500030305000203070001030600050301000503050003030500030305
+0003030500ac030200010302010100000302000103020015030100030301000103010003
+0301000703010004030100070301000a0301000103020001030200040301000403020001
+0302000d0401000503020001030200010301000003010000030100010302000103020004
+0301000a0301000303010005030200010302000103010003030100ab0302000103020002
+030200010302001503010003030100010301000303010002030600040301000703010005
+03060001030100030301000403010004030100030301000d040100050301000303010001
+030100000301000003010001030100030301000403010005030600030301000503010003
+03010001030200b003020001030200020302000103020015030700010301000303010001
+030700040301000703010004030700010301000303010004030100040307000d04010005
+030700010301000003010000030100010301000303010004030100040307000303010005
+03070002030500ac03020001030200020302000103020015030700010301000303010001
+030100030301000403010007030100040301000303010001030100030301000403010004
+0307000d0401000503070001030100000301000003010001030100030301000403010004
+03010003030100030301000503070006030200ab03020001030200020302000103020015
+030100030301000203010001030100020301000303010004030100070301000403010003
+030100010302000103020004030100040302001204010005030200060301000003010000
+030100010302000103020004030100040301000303010003030100050302000603010003
+030100ab0302000103020101000003020001030200150301000303010003030300030307
+000203050003030500020307000103060003030500030305000e04040003030500020301
+000003010000030100010306000303050002030700030304000303050003030500ac0302
+000103020002030200010302001503010003030100040301000503060002030500030305
+000303060001030100000302000403050004030300100403000403030003030100000301
+000003010001030100000302000403050003030600040303000403030005030300ad0302
+0001030200020302000103020097030100e3030200010302000203020001030200970301
+00e303020001030200020302000103020097030100e30302000103020101000003020001
+03020097030100e30302000103020002030200010302000a05ef01090013054f00140302
+000103020002030200010302000a05ef01090013054f0014030200010302000203020001
+0302000a05ef01090013054f00140302000103020002030200010302000a05ef01090013
+054f001403020001030201010000030200010302000a050a030505de0109001305200603
+0503040105020401051f00140302000103020002030200010302000a050a030605dd0109
+0013051f06050502040105010402051f00140302000103020002030200010302000a050a
+03010502030205dc01090013051e06020501060205010401050004020520001403020001
+03020002030200010302000a050a03010503030105010301050003040503030305050303
+05030301050003040502030405030301050003010500030005a101090013051e06010503
+060105010404052100140302000103020002030200010302000a050a0301050303010501
+0307050203050503030505020307050203050502030705a001090013051e060105030601
+050104030522001403020001030201010000030200010302000a050a0301050203020501
+03030505030205010302050103020501030205010303050b030105010301050003010500
+030105a00103070101030013051e06010503060105010402052300140302000103020002
+030200010302000a050a0306050203020506030105030301050103010503030105010302
+0507030605010301050003010500030105a00102070301020013051e0601050306010501
+040305220809000a0302000103020002030200010302000a050a03050503030105070301
+050303010501030105030301050103010507030705010301050003010500030105a00101
+070501010013051e0601050306010501040405210809000a030200010302000203020001
+0302000a050a030105070301050703010503030105010301050303010501030105070301
+0503030105010301050003010500030105a00100070701000013051e0601050306010501
+04010500040205200809000a0302000103020002030200010302000a050a030105070301
+050703020501030205010302050103020501030105070301050303010501030105000301
+0500030105a001090013051e0602050106020501040105010402051f0809000a03020001
+030201010000030200010302000a050a0301050703010508030505030306050103010507
+030705010301050003010500030105a001090013051f06050502040105020402051e0809
+000a0302000103020002030200010302000a050a03010507030105090303050503020500
+0301050103010508030605010301050003010500030105a0010900130520060305030401
+05030401051e0809000a0302000103020002030200010302000a052e030105be01090013
+054f0809000a0302000103020002030200010302000a052d030205be01090013054f0809
+000a0302000103020002030200010302000a0529030505bf01090013054f0809000a0302
+0001030201010000030200010302000a0529030405c001090013054f0809000a03020001
+03020002030200010302000a07ef0100070301000703001d084f000a0302000103020002
+030200010302000a07f3010007030100001d084f000a0302000103020002030200010302
+000a07f20100070301000700001d084f000a0302000103020002030200010302000a07f1
+0100070301000701001d084f000a03020001030201010000030200010302000a07f00100
+070301000702001d084f000a0302000103020002030200010302000a07ef010007030100
+0703001d084f000a0302000103020002030200010302000a07f3010007030100001d084f
+000a0302000103020002030200010302000a07f20100070301000700001d084f000a0302
+000103020002030200010302000a07f10100070301000701001d084f000a030200010302
+01010000030200010302000a07f00100070301000702001d084f000a0302000103020002
+030200010302000a07ef010007030100070300780302000103020002030200010302000a
+07f301000703010000780302000103020002030200010302000a07f20100070301000700
+00780302000103020002030200010302000a07f101000703010007010078030200010302
+01010000030200010302000a07f001000703010007020078030200010302000203020001
+0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
+0703010000780302000103020002030200010302000a07f2010007030100070000780302
+000103020002030200010302000a07f10100070301000701007803020001030201010000
+030200010302000a07f0010007030100070200780302000103020002030200010302000a
+07ef01000703010007030013054f00140302000103020002030200010302000a07f30100
+070301000013054f00140302000103020002030200010302000a07f20100070301000700
+0013054f00140302000103020002030200010302000a07f101000703010007010013054f
+001403020001030201010000030200010302000a07f001000703010007020013050c0803
+052c0803050d00140302000103020002030200010302000a07ef01000703010007030013
+050b0805052b0803050d00140302000103020002030200010302000a07f3010007030100
+0013050a080205010802052c0801050d00140302000103020002030200010302000a07f2
+01000703010007000013050a080105080804050308010500080205050803050508030506
+0801050d00140302000103020002030200010302000a07f101000703010007010013050a
+08010508080505020806050308050503080505050801050d001403020001030201010000
+030200010302000a07f001000703010007020013050a0801050d08010501080205010802
+0501080205010802050108020501080205040801050d0014030200010302000203020001
+0302000a07ef01000703010007030013050a080105080806050108010503080105010801
+050708010503080105040801050d0809000a0302000103020002030200010302000a07f3
+0100070301000013050a0801050708070501080105030801050108010507080705040801
+050d0809000a0302000103020002030200010302000a07f201000703010007000013050a
+080105070801050308010501080105030801050108010507080705040801050d0809000a
+0302000103020002030200010302000a07f101000703010007010013050a080205010802
+0501080105030801050108010503080105010802050108020501080205090801050d0809
+000a03020001030201010000030200010302000a07f001000703010007020013050b0805
+050208070501080105030801050208050503080505030805050b0809000a030200010302
+0002030200010302000a07ef01000703010007030013050c080305040806050108010503
+0801050308030505080305040805050b0809000a0302000103020002030200010302000a
+07f30100070301000013054f0809000a0302000103020002030200010302000a07f20100
+0703010007000013054f0809000a0302000103020002030200010302000a07f101000703
+010007010013054f0809000a03020001030201010000030200010302000a07f001000703
+010007020013054f0809000a0302000103020002030200010302000a07ef010007030100
+0703001d084f000a0302000103020002030200010302000a07f3010007030100001d084f
+000a0302000103020002030200010302000a07f20100070301000700001d084f000a0302
+000103020002030200010302000a07f10100070301000701001d084f000a030200010302
+01010000030200010302000a07f00100070301000702001d084f000a0302000103020002
+030200010302000a07ef0100070301000703001d084f000a030200010302000203020001
+0302000a07f3010007030100001d084f000a0302000103020002030200010302000a07f2
+0100070301000700001d084f000a0302000103020002030200010302000a07f101000703
+01000701001d084f000a03020001030201010000030200010302000a07f0010007030100
+0702001d084f000a0302000103020002030200010302000a07ef01000703010007030078
+0302000103020002030200010302000a07f3010007030100007803020001030200020302
+00010302000a07f2010007030100070000780302000103020002030200010302000a07f1
+0100070301000701007803020001030201010000030200010302000a07f0010007030100
+070200780302000103020002030200010302000a07ef0100070301000703007803020001
+03020002030200010302000a07f301000703010000780302000103020002030200010302
+000a07f2010007030100070000780302000103020002030200010302000a07f101000703
+01000701007803020001030201010000030200010302000a07f001000703010007020078
+0302000103020002030200010302000a07ef010007030100070300780302000103020002
+030200010302000a07f301000703010000780302000103020002030200010302000a07f2
+010007030100070000780302000103020002030200010302000a07f10100070301000701
+007803020001030201010000030200010302000a07f00100070301000702007803020001
+03020002030200010302000a07ef01000703010007030078030200010302000203020001
+0302000a07f301000703010000780302000103020002030200010302000a07f201000703
+0100070000780302000103020002030200010302000a07f1010007030100070100780302
+0001030201010000030200010302000a07f0010007030100070200780302000103020002
+030200010302000a07ef010007030100070300780302000103020002030200010302000a
+07f301000703010000780302000103020002030200010302000a07f20100070301000700
+00780302000103020002030200010302000a07f101000703010007010078030200010302
+01010000030200010302000a07f001000703010007020078030200010302000203020001
+0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
+0703010000780302000103020002030200010302000a07f2010007030100070000780302
+000103020002030200010302000a07f10100070301000701007803020001030201010000
+030200010302000a07f0010007030100070200780302000103020002030200010302000a
+07ef010007030100070300780302000103020002030200010302000a07f3010007030100
+00780302000103020002030200010302000a07f201000703010007000078030200010302
+0002030200010302000a07f1010007030100070100780302000103020101000003020001
+0302000a07f0010007030100070200780302000103020002030200010302000a07ef0100
+07030100070300780302000103020002030200010302000a07f301000703010000780302
+000103020002030200010302000a07f20100070301000700007803020001030200020302
+00010302000a07f10100070301000701007803020001030201010000030200010302000a
+07f0010007030100070200780302000103020002030200010302000a07ef010007030100
+070300780302000103020002030200010302000a07f30100070301000078030200010302
+0002030200010302000a07f2010007030100070000780302000103020002030200010302
+000a07f10100070301000701007803020001030201010000030200010302000a07f00100
+07030100070200780302000103020002030200010302000a07ef01000703010007030078
+0302000103020002030200010302000a07f3010007030100007803020001030200020302
+00010302000a07f2010007030100070000780302000103020002030200010302000a07f1
+0100070301000701007803020001030201010000030200010302000a07f0010007030100
+070200780302000103020002030200010302000a07ef0100070301000703007803020001
+03020002030200010302000a07f301000703010000780302000103020002030200010302
+000a07f2010007030100070000780302000103020002030200010302000a07f101000703
+01000701007803020001030201010000030200010302000a07f001000703010007020078
+0302000103020002030200010302000a07ef010007030100070300780302000103020002
+030200010302000a07f301000703010000780302000103020002030200010302000a07f2
+010007030100070000780302000103020002030200010302000a07f10100070301000701
+007803020001030201010000030200010302000a07f00100070301000702007803020001
+03020002030200010302000a07ef01000703010007030078030200010302000203020001
+0302000a07f301000703010000780302000103020002030200010302000a07f201000703
+0100070000780302000103020002030200010302000a07f1010007030100070100780302
+0001030201010000030200010302000a07f0010007030100070200780302000103020002
+030200010302000a07ef010007030100070300780302000103020002030200010302000a
+07f301000703010000780302000103020002030200010302000a07f20100070301000700
+00780302000103020002030200010302000a07f101000703010007010078030200010302
+01010000030200010302000a07f001000703010007020078030200010302000203020001
+0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
+0703010000780302000103020002030200010302000a07f2010007030100070000780302
+000103020002030200010302000a07f10100070301000701007803020001030201010000
+030200010302000a07f0010007030100070200780302000103020002030200010302000a
+07ef010007030100070300780302000103020002030200010302000a07f3010007030100
+00780302000103020002030200010302000a07f201000703010007000078030200010302
+0002030200010302000a07f1010007030100070100780302000103020101000003020001
+0302000a07f0010007030100070200780302000103020002030200010302000a07ef0100
+07030100070300780302000103020002030200010302000a07f301000703010000780302
+000103020002030200010302000a07f20100070301000700007803020001030200020302
+00010302000a07f10100070301000701007803020001030201010000030200010302000a
+07f0010007030100070200780302000103020002030200010302000a07ef010007030100
+070300780302000103020002030200010302000a07f30100070301000078030200010302
+0002030200010302000a07f2010007030100070000780302000103020002030200010302
+000a07f10100070301000701007803020001030201010000030200010302000a07f00100
+07030100070200780302000103020002030200010302000a07ef01090078030200010302
+0002030200010302000a07ef010900780302000103020002030200010302000a07ef0109
+00780302000103020002030200010302000a07ef01090078030200010302010100000302
+00010302000a07ef010900780302000103020002030200010302000a07ef010900780302
+000103020002030200010302000a07ef010900780302000103020002030200010302000a
+07ef010900780302000103020002030200010302000a07ef010900780302000103020101
+0000030200010302000a07ef01000707010000780302000103020002030200010302000a
+07ef01010705010100780302000103020002030200010302000a07ef0102070301020078
+0302000103020002030200010302000a07ef010307010103007803020001030200020302
+00010302000a07ef0109007803020001030201010000030200010302000a07ef01090078
+0302000103020002030200010302000a07ef010900780302000103020002030200010302
+000a07ef010900780302000103020002030200010302000a07ef01090078030200010302
+0002030200010302000a07ef0109007803020001030201010000030200010302000a07ef
+01090078030200010302000203020001030200ff007d0302000103020002030200010302
+00ff007d030200010302000203020001030200ff007d0302000103020002030200010302
+00ff007d0302000103020101000003020001030200ff007d030200010302000203020001
+030200ff007d030200010302000203020001030200ff007d030200010302000203020001
+030200ff007d030200010302000203020001030200ff007d030200010302010100000302
+0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
+0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
+0001030200ff007d0302000103020101000003020001030200ff007d0302000103020002
+03020001030200ff007d030200010302000203020001030200ff007d0302000103020002
+03020001030200ff007d030200010302000203020001030200ff007d0302000103020101
+000003020001030200ff007d030200010302000203020001030200ff007d030200010302
+000203020001030200ff007d030200010302000203020001030200ff007d030200010302
+000203020001030200ff007d0302000103020101000003020001030200ff007d03020001
+0302000203020001030200ff007d030200010302000203020001030200ff007d03020001
+030200020302000103ff03830001030200020302000103ff038300010302010100000302
+00ff008703020002030200ff00870302000203ff038d000203ff038d00ff0090010100ff
+008e00ff009000ff009000ff0090
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 400 279
+%%EOF

+ 518 - 0
docs/pics/ide/watch.eps

@@ -0,0 +1,518 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (watch.eps)
+%%CreationDate: (Wed Nov 15 21:36:01 2000)
+%%BoundingBox: 0 0 497 257
+%%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 498 258
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+498 258
+12.000000
+498 258
+1
+0
+0
+8
+000080
+c0c0c0
+00fc00
+f8fcf8
+f8fc00
+000000
+008000
+00fcf8
+00ff00f101ff01f101ff01f101ff01f10120020501b9030101ff010e0117030301040205
+0104030301990307010703010104030101060301010f030101030301010d0301010f0301
+01cb0117030301040205010403030199030701070301010d0301010f030101030301010d
+0301010f030101cb01170301010602050106030101990301010d0301010d0301010f0301
+01030301010d0301010f030101cb010103120102030101060205010603010102038b010a
+030101090302010003010102030301050305010c03010103030101020304010403050104
+03030103030101000302010c03ba010103120102030101060205010603010102038b010a
+0301010803060102030301050305010c0301010003010100030101020305010303050103
+030501020306010b03ba0101030201120301010602050106030101990305010303020101
+03020104030101060301010f030101000301010003010107030101030301010503020101
+0302010103020101030201c4030001010302011203010106020501060301019903050103
+0301010303010104030101060301010f0301010003010100030101020306010303010105
+0301010703010103030101c40300010103020101030d0102030101060205010603010102
+038b010a030101070301010303010104030101060301010f030101000301010003010101
+030701030301010503010107030101030301010a03b701010300010103020101030d0102
+030101060205010603010102038b010a030101070301010303010104030101060301010f
+03010100030101000301010103010103030101030301010503010107030101030301010a
+03b7010103000101030201010302010d0301010602050106030101990301010703020101
+03020104030101060301010f030101000301010003010101030101030301010303010105
+030201010302010103010103030101bf0302010103000101030201010302010d03010106
+02050106030101990307010203060102030501040304010c030701010307010303040103
+0305010203010103030101bf0302010103000101030201010302010d0301010602050106
+03010199030701030302010003010102030501050303010d030101010301010303060104
+030301040303010303010103030101bf0302010103000101030201010302010d03010113
+030101ff01bb0302010103000101030201010302010d0303010f030301ff01bb03020101
+03000101030201010302010d0303010f030301ff01bb0302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+01ff01e1030201010300010103020101030201ff01e10302010103000101030201010302
+015e030101ff01800302010103000101030201010302011504070140030101240301012f
+0301010f030101ff011503020101030001010302010103020115040701670301012f0301
+010f030101ff0115030201010300010103020101030201150401016d0301012f0301010f
+030101ff0115030201010300010103020101030201150401010703010103030101010301
+010003020103030101000304010303030105030301050303010403030106030301030301
+01000302010e030501040303010d03010103030101020304010403050104030301030301
+0100030201ff011103020101030001010302010103020115040101070302010103020101
+030601020307010203050103030501030305010303030105030501020306010d03050103
+0305010c0301010303010102030501030305010303050102030601ff0110030201010300
+010103020101030201150405010403050102030201010302010103030105030201010302
+010103010103030101010301010303010104030101040302010103020101030201010302
+010d03010105030201010302010b03010103030101070301010303010105030201010302
+010103020101030201ff010f030201010300010103020101030201150405010503030103
+030101030301010103020106030101030301010103020106030201090301010403010103
+03010101030101030301010d03010105030101030301010b030101000301010003010102
+03060103030101050301010703010103030101ff010f0302010103000101030201010302
+01150401010a030101040301010303010101030101070307010203050103030501050301
+01040301010303010101030101030301010d03010105030101030301010b030101000301
+01000301010103070103030101050301010703010103030101ff010f0302010103000101
+030201010302011504010109030301030301010303010101030101070307010603020106
+03020104030101040301010303010101030101030301010d03010105030101030301010b
+030701010301010303010103030101050301010703010103030101ff010f030201010300
+010103020101030201150401010803050102030201010302010103010107030201060301
+0103030101010301010303010104030101040302010103020101030101030301010d0301
+0105030201010302010b0307010103010103030101030301010503020101030201010301
+0103030101ff010f03020101030001010302010103020115040701010302010103020101
+03060102030101080305010303050103030501030305010303050102030101030301010d
+030401030305010c030201010302010103070103030401030305010203010103030101ff
+010f03020101030001010302010103020115040701010301010303010101030101000302
+0103030101090303010503030105030301040305010403030103030101030301010e0303
+01040303010e030001030300010303060104030301040303010303010103030101ff010f
+03020101030001010302010103020129030101ff01b50302010103000101030201010302
+0129030101ff01b503020101030001010302010103020129030101ff01b5030201010300
+01010302010103020129030101ff01b50302010103000101030201010302011400ff0067
+01640302010103000101030201010302011400ff00670164030201010300010103020101
+0302011400ff006701640302010103000101030201010302011400ff0067016403020101
+03000101030201010302011400ff006701640302010103000101030201010302011400ff
+006701640302010103000101030201010302011400ff0067016403020101030001010302
+01010302011400ff006701640302010103000101030201010302011400ff006701640302
+010103000101030201010302011400ff0067016403020101030001010302010103020114
+00ff006701640302010103000101030201010302011400ff006701640302010103000101
+030201010302011400ff006701640302010103000101030201010302011400ff00670164
+0302010103000101030201010302011400ff006701640302010103000101030201010302
+011400ff006701640302010103000101030201010302011400ff00670164030201010300
+0101030201010302011400ff006701640302010103000101030201010302011400ff0067
+01640302010103000101030201010302011400ff00670164030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201030503013705010124050301ff0176030201010300010103020101030201020505
+013605010124050301ff0176030201010300010103020101030201010502010105020135
+05010126050101ff01760302010103000101030201010302010105010107050101030501
+0101050101000504010105010100050401030503010305010100050201040505010c0501
+01030501010205040106050101040501010305010103050301ff01610302010103000101
+030201010302010105010107050101030501010105070101050701020505010205060103
+0505010c050101030501010205050105050101040501010305010102050501ff01600302
+010103000101030201010302010105010107050101030501010105030105050301050502
+01010502010105020101050201030501010f050101030501010705010104050101040501
+0103050101010502010105020104050101ff015803020101030001010302010103020101
+050101070501010305010101050201060502010605010103050101010501010305010103
+0501010f0501010305010102050601040501010405010103050101010501010305010104
+050101ff0158030201010300010103020101030201010501010705010103050101010501
+0107050101070507010105010103050101030501010f0501010305010101050701040501
+01040501010305010101050701ff015f0302010103000101030201010302010105010107
+050101030501010105010107050101070507010105010103050101030501010f05010103
+050101010501010305010104050101040501010305010101050701ff015f030201010300
+010103020101030201010502010105020101050201010502010105010107050101070502
+010605010103050101030501011005010101050101020501010305010104050101040502
+010105020101050201ff0164030201010300010103020101030201020505010305060101
+05010107050101080505010205010103050101030504010e050301030507010205050103
+0506010205050105050101ff015803020101030001010302010103020103050301050502
+01000501010105010107050101090503010305010103050101040503010f050101050506
+010205050104050201000501010305030106050101ff0158030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e1030201010300010103020101030201ff01e1030201010300010103020101
+030201ff01e10302010103000101030201010302012c050101ff01b20302010103000101
+03020101030201010505012405010141050301ff016c0302010103000101030201010302
+010105060167050301ff016c030201010300010103020101030201010501010205020168
+050101ff016c030201010300010103020101030201010501010305010101050101000504
+0103050301030501010305010102050301060503010305010103050101030503010d0501
+01030501010205040106050101040501010305010103050301ff01570302010103000101
+030201010302010105010103050101010507010205050102050101030501010205030105
+0505010205010103050101020505010c0501010305010102050501050501010405010103
+05010102050501ff01560302010103000101030201010302010105010102050201010503
+010505020101050201010501010305010104050101040502010105020101050101030501
+0101050101030501010b0501010305010107050101040501010405010103050101010502
+010105020104050101ff014e030201010300010103020101030201010506010205020106
+050101030501010105010103050101040501010405010103050101010501010305010101
+050201100501010305010102050601040501010405010103050101010501010305010104
+050101ff014e030201010300010103020101030201010505010305010107050701010501
+01030501010405010104050101030501010105010103050101020505010c050101030501
+010105070104050101040501010305010101050701ff0155030201010300010103020101
+030201010501010705010107050701010501010305010104050101040501010305010101
+05010103050101060502010b050101030501010105010103050101040501010405010103
+05010101050701ff01550302010103000101030201010302010105010107050101070502
+010705010101050101050501010405020101050201010502010105020101050101030501
+010c05010101050101020501010305010104050101040502010105020101050201ff015a
+030201010300010103020101030201010501010705010108050501040503010405050103
+05050103050601020505010e0503010305070102050501030506010205050105050101ff
+014e03020101030001010302010103020101050101070501010905030106050101050505
+010405030105050201000501010305030110050101050506010205050104050201000501
+010305030106050101ff014e030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e1030201010300010103020101030201ff01e1030201010300
+010103020101030201ff01e103020101030001010302010103020164064f0177064f0164
+03020101030001010302010103020164064f0177064f0164030201010300010103020101
+03020164064f0177064f016403020101030001010302010103020164064f0177064f0164
+03020101030001010302010103020164062007030603040106020401061f0177060c0503
+062c0503060d016403020101030001010302010103020164061f07050602040106010402
+061f0177060b0505062b0503060d016403020101030001010302010103020164061e0702
+06010702060104010600040206200177060a050206010502062c0501060d016403020101
+030001010302010103020164061e0701060307010601040406210177060a050106080504
+0603050106000502060505030605050306060501060d0164030201010300010103020101
+03020164061e0701060307010601040306220177060a0501060805050602050606030505
+0603050506050501060d016403020101030001010302010103020164061e070106030701
+0601040206230177060a0501060d05010601050206010502060105020601050206010502
+0601050206040501060d016403020101030001010302010103020164061e070106030701
+0601040306220509016d060a050106080506060105010603050106010501060705010603
+050106040501060d0509015a03020101030001010302010103020164061e070106030701
+0601040406210509016d060a050106070507060105010603050106010501060705070604
+0501060d0509015a03020101030001010302010103020164061e07010603070106010401
+0600040206200509016d060a050106070501060305010601050106030501060105010607
+050706040501060d0509015a03020101030001010302010103020164061e070206010702
+0601040106010402061f0509016d060a0502060105020601050106030501060105010603
+050106010502060105020601050206090501060d0509015a030201010300010103020101
+03020164061f07050602040106020402061e0509016d060b050506020507060105010603
+0501060205050603050506030505060b0509015a03020101030001010302010103020164
+062007030603040106030401061e0509016d060c05030604050606010501060305010603
+05030605050306040505060b0509015a03020101030001010302010103020164064f0509
+016d064f0509015a03020101030001010302010103020164064f0509016d064f0509015a
+03020101030001010302010103020164064f0509016d064f0509015a0302010103000101
+0302010103020164064f0509016d064f0509015a0302010103000101030201010302016e
+054f0177054f015a0302010103000101030201010302016e054f0177054f015a03020101
+03000101030201010302016e054f0177054f015a0302010103000101030201010302016e
+054f0177054f015a0302010103000101030201010302016e054f0177054f015a03020101
+03000101030201010302016e054f0177054f015a0302010103000101030201010302016e
+054f0177054f015a0302010103000101030201010302016e054f0177054f015a03020101
+03000101030201010302016e054f0177054f015a0302010103000101030201010302016e
+054f0177054f015a030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+0101030201ff01e1030201010300010103020101030201ff01e103020101030001010302
+010103ff03e70101030001010302010103ff03e7010103000101030201ff01eb03000101
+030201ff01eb0300010103ff03ef010103ff03ef01ff01f101ff01f101ff01f101ff01f1
+
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 497 257
+%%EOF