Преглед на файлове

+ Added new images for debugging

michael преди 25 години
родител
ревизия
b3f6c97f5e
променени са 6 файла, в които са добавени 2631 реда и са изтрити 0 реда
  1. 1445 0
      docs/pics/ide/brkprop.eps
  2. BIN
      docs/pics/ide/brkprop.png
  3. 773 0
      docs/pics/ide/callstck.eps
  4. BIN
      docs/pics/ide/callstck.png
  5. 413 0
      docs/pics/ide/watchlst.eps
  6. BIN
      docs/pics/ide/watchlst.png

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

@@ -0,0 +1,1445 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (brkprop.eps)
+%%CreationDate: (Wed Nov 15 21:37:38 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

BIN
docs/pics/ide/brkprop.png


+ 773 - 0
docs/pics/ide/callstck.eps

@@ -0,0 +1,773 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (callstck.eps)
+%%CreationDate: (Thu Nov 16 00:44:53 2000)
+%%BoundingBox: 0 0 359 119
+%%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 360 120
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+360 120
+12.000000
+360 120
+1
+0
+0
+7
+008080
+00fc00
+c0c0c0
+000080
+000000
+008000
+f8fcf8
+00ff006700ff006700ff0044010100200020010500ff001c0103001f0017010300040105
+0004010300550103000e0103000501030010010300050101001901010059010300040105
+00040103001500170103000401050004010300540105000d010300050103000f01050004
+010100190101005901030003010700030103001500170101000601050006010100530102
+00010102000e010100070101000e01020001010200030101001901010059010100080101
+00080101001500170101000601050006010100530101000801040006010100070101000e
+010200070105000301040005010300030101000201010054010100080101000801010015
+0004010f00020101000601050006010100020145000a0101000801050005010100070101
+000f01020006010500030105000301050002010100010101000c01450002010100080101
+000801010002010f00020004010f00020101000601050006010100020145000a0101000d
+010100040101000701010010010200060101000b01010001010200010102000101010000
+0101000d01450002010100080101000801010002010f0002000401010010010100060105
+000601010053010100080106000401010007010100120101000501010006010600010101
+000701030057010100080101000801010010010100020004010100100101000601050006
+010100530101000701070004010100070101001301010004010100050107000101010007
+010200580101000801010008010100100101000200040101001001010006010500060101
+005301010007010100030101000401010007010100130102000301010005010100030101
+000101010007010400560101000801010008010100100101000200040101001001010006
+010500060101005301020001010200010101000301010004010100070101000e01020001
+010200030101000501010003010100010102000101020001010100010101005501010008
+010100080101001001010002000401010010010100060105000601010054010500020107
+0002010500030105000d0105000401040002010700020105000201010002010100540101
+000801010008010100100101000200040101001001010006010500060101005501030004
+01060002010500030105000e010300060103000301060003010300030101000301010053
+0101000801010008010100100101000200040101001001010013010100ff000901010008
+0101000801010010010100020004010100100103000f010300ff00090103000f01030010
+010100020004010100100103000f010300ff00090103000f010300100101000200040101
+00ff005b0101000200040101000302ff0253030800040101000302ff0253030800040101
+000302ff0253030800040101000302680401021804010264040102040401025f03080004
+01010003020a0401021204030205040302390401020704010207040102060401020f0405
+020504030203040102030401020104070201040102070401020904030210040102060401
+025e0308000401010003020a040102120403020504030238040102060403020504030207
+0401020e040602030405020204010203040102010407020104010207040102080405020e
+040102080401025d0308000401010003020a040102140401020704010238040002070403
+0205040302080400020e0401020204020201040202010402020104010203040102010401
+02070401020704010207040202010402020d0400020a0400025d0308000401010003020a
+04010200040202050403020604010207040102060403020d040102000402020404040205
+040302040401020904010207040102080401020d04010203040102010401020304010201
+0401020304010201040102070401020704010207040102030401020c0401020a0401025c
+0308000401010003020a040602030405020504010207040102050405020c040602030405
+0203040502030401020904010207040102080401020d0401020304010201040102030401
+02010401020304010201040102070401020704010207040102030401020c0401020a0401
+025c0308000401010003020a040202010402020104020201040202040401020704010204
+040202010402020b04020201040202070401020104010203040102020401020904010207
+040102080401020d04010203040102010401020304010201040702010405020304010207
+04010207040102030401020c0401020a0401025c030300010302000401010003020a0401
+02030401020104010203040102040401020704010204040102030401020b040102030401
+020204060201040202070401020904010207040102080401020d04010203040102010401
+02030401020104070201040502030401020704010207040102030401020c0401020a0401
+025c030200030301000401010003020a0401020304010201040702040401020704010204
+040102030401020b04010203040102010407020204050203040102090401020704010208
+0401020d0401020304010201040102030401020104010203040102010401020704010207
+04010207040102030401020c0401020a0401025c030100050300000401010003020a0401
+020304010201040702040401020704010204040102030401020b04010203040102010401
+020304010206040202020401020904010207040102080401020d04010203040102010401
+0203040102010401020304010201040102070401020704010207040102030401020c0401
+020a0401025c03000007000401010003020a040102030401020104020209040102070401
+0204040202010402020b0402020104020201040102030401020104010203040102020401
+020904010207040102080401020d04010202040202010402020104020201040102030401
+0201040102070401020704010207040202010402020c0401020a0401025c030800040101
+0003020a0401020304010202040502030405020304050203040502050401020404060202
+04070202040502030401020904010207040102080401020d040602030405020204010203
+040102010407020104070201040702020405020d0401020a0401025c0308000401010003
+020a04010203040102030403020404050203040502040403020604010204040102000402
+020404060203040302050400020904010207040102080400020e04050205040302030401
+0203040102010407020104070201040702030403020f0400020a0400025d030800040101
+000302460401021d0401021c04010260040102080401025d030800040101000302460401
+021e0401021a04010262040102060401025e030800040101000302460401021f04010218
+04010264040102040401025f03080004010100030246040102ff020a0308000401010003
+05ff055303000000030000000300000003000000030000040101000305ff055300000300
+000003000000030000000300000000040101000305ff0553030000000300000003000000
+030000000300000401010003056806010518060105270601051c060105040601057d0000
+03000000030000000300000003000000000401010003050a060105120603050506030539
+060105070601050406070503060105260601051b060105060601057c0300000003000000
+03000000030000000300000401010003050a060105120603050506030538060105060603
+05040607050406010542060105080601057b000003000000030000000300000003000000
+000401010003050a06010514060105070601053806000507060305040601050b06000542
+0600050a0600057b030000000300000003000000030000000300000401010003050a0601
+0500060205050603050606010507060105060603050d0601050006020504060405050603
+050406010509060105040601050b0601050d060105000601050006000503060405040603
+0504060105000602050e0601050a0601057a000003000000030000000300000003000000
+000401010003050a060605030605050506010507060105050605050c0606050306050503
+060505030601050906010504060505070601050d0607050206050503060305040606050d
+0601050a0601057a030000000300000003000000030000000300000401010003050a0602
+05010602050106020501060205040601050706010504060205010602050b060205010602
+05070601050106010503060105020601050906010504060605060601050d060105000601
+0500060105070601050406010504060205010602050c0601050a0601057a000003000000
+030000000300000003000000000401010003050a06010503060105010601050306010504
+0601050706010504060105030601050b0601050306010502060605010602050706010509
+06010509060205050601050d060105000601050006010502060605040601050406010503
+0601050c0601050a0601057a030000000300000003000000030000000300000401010003
+050a0601050306010501060705040601050706010504060105030601050b060105030601
+05010607050206050503060105090601050a060105050601050d06010500060105000601
+05010607050406010504060105030601050c0601050a0601057a00000300000003000000
+0300000003000000000401010003050a0601050306010501060705040601050706010504
+060105030601050b0601050306010501060105030601050606020502060105090601050a
+060105050601050d06010500060105000601050106010503060105040601050406010503
+0601050c0601050a0601057a030000000300000003000000030000000300000401010003
+050a0601050306010501060205090601050706010504060205010602050b060205010602
+050106010503060105010601050306010502060105090601050406020501060205050601
+050d060105000601050006010501060105030601050406010504060105030601050c0601
+050a0601057a000003000000030000000300000003000000000401010003050a06010503
+060105020605050306050503060505030605050506010504060605020607050206050503
+0601050906010505060505060601050d0601050006010500060105010607050206050502
+060105030601050c0601050a0601057a0300000003000000030000000300000003000004
+01010003050a060105030601050306030504060505030605050406030506060105040601
+05000602050406060503060305050600050906010506060305070600050e060105000601
+0500060105020606050206050502060105030601050d0600050a0600057b000003000000
+03000000030000000300000000040101000305460601051d0601051c0601054206010508
+0601057b03000000030000000300000003000000030000040101000305460601051e0601
+051a06010544060105060601057c00000300000003000000030000000300000000040101
+000305460601051f0601051806010546060105040601057d030000000300000003000000
+0300000003000004010100030546060105ff050a00000300000003000000030000000300
+000000040101000302ff0253030800040101000302ff0253030800040101000302ff0253
+030800040101000302ff025303010005030000040101000302ff02530301000503000004
+0101000302ff025303010005030000040101000302ff0253030100050300000401010003
+02ff025303010005030000040101000302ff025303010005030000040101000302ff0253
+03010005030000040101000302ff025303010005030000040101000302ff025303010005
+030000040101000302ff025303010005030000040101000302ff02530301000503000004
+0101000302ff025303010005030000040101000302ff0253030100050300000401010003
+02ff0253030800040101000302ff0253030800040101000302ff02530308000401010003
+02ff0253030800040101000302ff0253030800040101000302ff02530308000401010003
+02ff0253030800040101000302ff0253030800040101000302ff02530308000401010003
+02ff0253030800040101000302ff0253030800040101000302ff02530308000401010003
+02ff0253030800040101000302ff02530300000700040101000302ff0253030100050300
+00040101000302ff025303020003030100040101000302ff025303030001030200040101
+000302ff0253030800040101000302ff0253030800040101000302ff0253030800040101
+000302ff0253030800040101000302ff0253030800040101000302ff0253030800040101
+000302ff0253030800040101000303140000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000309000301010002000401010003
+031300000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+0300000003000000030a00030101000200040101000303070000030b0000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003070003010100020004010100030306000103020005030100000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003010001
+030600030101000200040101000303050002030200050302000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000020305
+000301010002000401010003030400030302000503010000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000301000303040003
+010100020004010100030303000403020005030200000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000004030300030101
+000200040101000303020005030200050301000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030100050302000301010002
+000401050301000603020005030200000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000006030101050002000401050300
+000703020005030100000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003010007030001050002000a03010006030200050302
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+0000030000000300000603010008000a0302000503020005030100000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003010005
+03020008000a030300040302000503020000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000403030008000a03040003
+030200050301000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+0300000003000000030000000301000303040008000a0305000203020005030200000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+00000300000203050008000a030600010302000503010000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000301000103060008
+000a03070000030b00000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+00000300000003000000030000000300000003070008000a031300000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+0300000003000000030000000300000003000000030000000300000003000000030a0008
+000a03140000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+000003000000030000000300000003000000030000000300000003000000030000000300
+0000030000000300000003090008000a0313000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030000000300000003000000
+030000000300000003000000030000000300000003000000030a0008
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 359 119
+%%EOF

BIN
docs/pics/ide/callstck.png


+ 413 - 0
docs/pics/ide/watchlst.eps

@@ -0,0 +1,413 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (watchlst.eps)
+%%CreationDate: (Thu Nov 16 00:44:45 2000)
+%%BoundingBox: 0 0 800 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 801 140
+userdict begin
+%%BeginData:
+DisplayImage
+0 0
+801 140
+12.000000
+801 140
+1
+0
+0
+7
+000080
+c0c0c0
+008080
+00fc00
+f8fcf8
+008000
+000000
+0004010100ff00ff00ff00130101000302ff02ff02ff022002ff02ff02ff022002ff02ff
+02fc030102210220030502ff02ff02d40303022002170403020403050204040302ff0239
+040102030401020d0401020f040102ff02490403020f0403020403050204040302160217
+0403020403050204040302ff0239040102030401020d0401020f040102ff02480405020e
+04030203030702030403021602170401020603050206040102ff0239040102030401020d
+0401020f040102ff0247040202010402020d040102080301020804010216020104120202
+04010206030502060401020204ff042b020a040102030401020204040204040502040403
+02030401020004020205040302050403020c04ff04210206040102000409020204010208
+03010208040102020412020002010412020204010206030502060401020204ff042b020a
+04010200040102000401020204050203040502030405020204060203040502030405020b
+04ff04210205040202000409020204010208030102080401020204120200020104020212
+0401020603050206040102ff023904010200040102000401020704010203040102050402
+0201040202010402020104020201040202010402020104010203040102ff02310402020e
+040102080301020804010212040202000201040202120401020603050206040102ff0239
+040102000401020004010202040602030401020504010207040102030401020104010203
+04010201040202ff02350402020f04010208030102080401021204020200020104020201
+040d020204010206030502060401020204ff042b020a0401020004010200040102010407
+020304010205040102070401020304010201040702020405020b04ff0421020204020203
+04090202040102080301020804010202040d020104020200020104020201040d02020401
+0206030502060401020204ff042b020a0401020004010200040102010401020304010203
+04010205040102070401020304010201040702060402020a04ff04210201040202040409
+0202040102080301020804010202040d0201040202000201040202010402020d04010206
+03050206040102ff02390401020004010200040102010401020304010203040102050402
+02010402020104010203040102010402020604010203040102ff022d0402021204010208
+030102080401020d04020201040202000201040202010402020d04010206030502060401
+02ff023904070201040702030404020304050202040102030401020204050203040502ff
+022e0407020d04010208030102080401020d04020201040202000201040202010402020d
+0401020603050206040102ff023a04010201040102030406020404030204040302030401
+02030401020304030205040302ff022f0407020d04010208030102080401020d04020201
+040202000201040202010402020d04010213040102ff02ff02c104010208030102080401
+020d04020201040202000201040202010402020d0403020f040302ff02ff02c10403020f
+0403020d04020201040202000201040202010402020d0403020f040302ff02ff02c10403
+020f0403020d0402020104020200020104020201040202ff02ff02ff020d040202010402
+02000201040202010402020005ff05ff05ff050b02000402020104020200020104020201
+0402020005ff05ff05ff050b020004020201040202000201040202010402020005ff05ff
+05ff050b020004020201040202000201040202010402020005ff05ff05ff050b02000402
+020104020200020104020201040202000517040105110401050604030524040105060403
+05ff05ff05a0020004020201040202000201040202010402020005160403050604010505
+040305050405052104030505040505ff05ff059f02000402020104020200020104020201
+040202000515040105010401050504010505040305040402050104020520040305040402
+0501040205ff05ff059e0200040202010402020002010402020104020200051404010503
+04010504040105070401050a0401050c040405100401050a040105ff05ff059e02000402
+020104020200020104020201040202000514040105030401050104070504040105090402
+050c0404051004010509040205ff05ff059e020004020201040202000201040202010402
+02000514040105030401050104070504040105080402052304010508040205ff05ff059f
+020004020201040202000201040202010402020005140401050304010504040105070401
+05070402052404010507040205ff05ff05a0020004020201040202000201040202010402
+020005140407050404010507040105060402050f0404051004010506040205ff05ff05a1
+020004020201040202000201040202010402020005140407050404010507040105050402
+05100404051004010505040205ff05ff05a2020004020201040202000201040202010402
+02000514040105030401050e040105040402052704010504040205ff05ff05a302000402
+020104020200020104020201040202000514040105030401050e04010504040705220401
+0504040705ff05ff059e0200040202010402020002010402020104020200051404010503
+0401050e040105040407052204010504040705ff05ff059e020004020201040202000201
+040202010402020005ff05ff05ff050b0200040202010402020002010402020104020200
+05ff05ff05ff050b020004020201040202000201040202010402020005ff05ff05ff050b
+020004020201040202000201040202010402020005ff05ff05ff050b0200040202010402
+0200020104020201040202ff02ff02ff020d0402020104020200020104020201040202ff
+02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d040202010402
+0200020104020201040202ff02ff02ff020d040202010402020002010402020104020218
+06010224060302ff02ff02c9040202010402020002010402020104020217060302220605
+02ff02ff02c8040202010402020002010402020104020216060102010601022006020201
+060202ff02ff02c7040202010402020002010402020104020215060102030601020c0604
+020d06010203060102ff02ff02c704020201040202000201040202010402021506010203
+0601020c0604020d06010203060102ff02ff02c704020201040202000201040202010402
+0215060102030601021f0601020006010200060102ff02ff02c704020201040202000201
+0402020104020215060102030601021f0601020006010200060102ff02ff02c704020201
+04020200020104020201040202150607020c0604020d06010203060102ff02ff02c70402
+020104020200020104020201040202150607020c0604020d06010203060102ff02ff02c7
+040202010402020002010402020104020215060102030601021f06020201060202ff02ff
+02c70402020104020200020104020201040202150601020306010220060502ff02ff02c8
+0402020104020200020104020201040202150601020306010221060302ff02ff02c90402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff020d0402020104020200020104020201040202ff02ff02ff020d0402
+020104020200020104020201040202ff02ff02ff020d0402020104020200020104020201
+040202ff02ff02ff021003010203020104020201040202ff02ff02ff0210030102030201
+04020201040202ff02ff02ff021003010203020104020201040202ff02ff02ff02100301
+0203020104020201040202ff02ff02ff021003010203020104020201040202ff02ff02ff
+021003010203020104020201040202ff02ff02ff02100301020302010402020104ff04ff
+04ff0405020d0301020302010402020104ff04ff04ff0405030f02030201040202ff02ff
+02ff0207030f02030201040202ff02ff02ff021b020104ff04ff04ff040a0213020104ff
+04ff04ff040a021302ff02ff02ff022002ff02ff02ff022002ff02ff02ff022002ff02ff
+02ff022002ff02ff02ff022002ff02ff02ff0220
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 0 800 139
+%%EOF

BIN
docs/pics/ide/watchlst.png