aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orber/doc/src/theORB.ps
diff options
context:
space:
mode:
Diffstat (limited to 'lib/orber/doc/src/theORB.ps')
-rw-r--r--lib/orber/doc/src/theORB.ps635
1 files changed, 635 insertions, 0 deletions
diff --git a/lib/orber/doc/src/theORB.ps b/lib/orber/doc/src/theORB.ps
new file mode 100644
index 0000000000..65e6f0701b
--- /dev/null
+++ b/lib/orber/doc/src/theORB.ps
@@ -0,0 +1,635 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (./theORB.tmp.eps)
+%%CreationDate: (Tue Jun 12 17:47:30 2001)
+%%BoundingBox: 0 34 377 386
+%%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 34 377 386
+userdict begin
+%%BeginData:
+DisplayImage
+0 34
+377.000000 352.000000
+12
+451 421
+1
+0
+0
+8
+ffffff
+000000
+00d000
+0000ff
+900090
+b000b0
+000000
+000000
+00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff00ff00ff00ff00ff00ff001a040f0081040f00ff001b0404000f04040077
+0404000f040400ff0012040300190403006f04030019040300ff000b0402002104020069
+04020021040200ff0006040100270401006504010027040100ff00010402002b0402005f
+0402002b040200fc040100310401005b04010031040100f9040000350400005904000035
+040000f6040100370401005504010037040100f20401003b040100510401003b040100ef
+0400003f0400004f0400003f040000ed040000410400004d04000041040000ea04010043
+0401004904010043040100e7040000470400004704000047040000e50400004904000045
+04000049040000e30400004b040000430400004b040000e10400004d040000410400004d
+040000df0400004f0400003f0400004f040000dd040000510400003d04000051040000db
+040000530400003b04000053040000d9040000550400003904000055040000d704000057
+0400003704000057040000d5040000590400003504000059040000d30400005b04000033
+0400005b040000d20400005b040000330400005b040000d10400005d040000310400005d
+040000cf0400005f0400002f0400005f040000ce0400005f0400002f0400005f040000cd
+040000610400002d04000061040000cc040000610400002d04000061040000cb04000063
+0400002b04000063040000c9040000650400002904000065040000c80400006504000029
+04000065040000c7040000670400002704000067040000c6040000670400002704000067
+040000c6040000670400002704000067040000c5040000690400002504000069040000c4
+040000690400002504000069040000c30400006b040000230400006b040000c20400006b
+040000230400006b040000c20400006b040000230400006b040000c10400006d04000021
+0400006d040000c00400006d040000210400006d040000c00400006d040000210400006d
+040000c00400006d040000210400006d040000bf0400006f0400001f0400006f040000be
+0400006f0400001f0400006f040000be0400006f0400001f0400006f040000be0400006f
+0400001f0400006f040000be0400001d0405000004080000040600030403000304020000
+04080000040600180400001f0400006f040000bd0400001d040100020401000104010004
+040000010401000204020002040100050400000204010004040000010401000204020017
+0400001d04000071040000bc0400001d0401000304000001040100040400000104010003
+040100020402000304010002040100040400000104010003040100170400001d04000071
+040000bc0400001d04020005040100030400000204010003040100030401000304000003
+040100030400000204010003040100170400001d04000071040000bc0400001e04020004
+040100030400000204010002040200030402000204000003040100030400000204010002
+040200170400001d0400001b0405000004030005040d000004030002040e001f040000bc
+0400001f040300020406000204060005040100010400000404060002040600180400001d
+0400001a0401000204010001040100080401000104010004040000020402000304000001
+04000002040100020400001f040000bc0400002104020001040100030400000204010000
+0401000704020000040000040401000304000002040100000401001a0400001d04000019
+040100040400000104010008040100010401000404000002040300020400000104000002
+040100020400001f040000bc040000220401000104010003040000020401000104010007
+04030004040100030400000204010001040100190400001d040000180401000504000001
+0401000804010001040100030400000304000000040100020400000504010023040000bc
+0400001d0400000304010001040100050400000004010002040100060402000504010005
+0400000004010002040100180400001d0400001804010008040100080401000104010003
+0400000304000001040100010400000504010023040000bc0400001d0401000204010001
+040100040401000004010002040200060401000504010004040100000401000204020017
+0400001d0400001804010008040100080401000104060003040000010402000004000005
+04010023040000bc0400001d0400000004030001040d00020402000504000005040d0002
+040200160400001d04000018040100080401000804010001040100030400000304000002
+0403000504010023040000bc040000710400001d04000018040100080401000804010001
+0401000304000003040000030402000504010023040000bc040000710400001d04000019
+040100040400000104010004040000020401000104010005040000010400000404010005
+04010023040000bc040000710400001d0400001904020002040000020401000304010002
+040100010401000404010001040000040401000504010023040000bc040000710400001d
+0400001b0403000204080000041300030400000404030022040000bc0400002504000002
+0404000304020006040100110400001f0400001d04000071040000bc0400002304010002
+0401000204010003040100060401000f040000010401001d0400001d04000071040000bd
+0400002104010002040100040401000204010018040000020401001b0400001f0400006f
+040000be0400002104000002040100060401000104010000040200030400000104030002
+04030000040400000401001b0400001f0400006f040000be040000200401000204010006
+04010001040600000402000004000002040100000401000104010000040100030401001a
+0400001f0400001f0400000204040003040200060401001104000023040000be04000020
+0401000204010006040100010401000104020001040a0005040100030401001a0400001f
+0400001d040100020401000204010003040100060401000f0400000104010021040000be
+040000200401000204010006040100010401000204010001040300040401000504010003
+0401001a0400001f0400001c040100020401000404010002040100180400000204010020
+040000bf0400001f04010002040100060401000104010002040100010403000404010003
+040000000401000304010019040000210400001b04000002040100060401000104010000
+04020003040000010403000204030000040400000401001f040000c00400001f04010003
+040100040401000204010002040100010404000204030001040100000401000004000001
+04010019040000210400001a040100020401000604010001040600000402000004000002
+040100000401000104010000040100030401001e040000c00400001f0401000404010002
+040100030401000104010002040100000404000104040001040300010401001904000021
+0400001a0401000204010006040100010401000104020001040a0005040100030401001e
+040000c00400002004010004040400050403000304010001040200030402000204020001
+0401001a040000210400001a040100020401000604010001040100020401000104030004
+04010005040100030401001e040000c10400002004000017040100130400001a04000023
+040000190401000204010006040100010401000204010001040300040401000304000000
+040100030401001d040000c2040000200401001304000001040100120401001a04000023
+040000190401000304010004040100020401000204010001040400020403000104010000
+04010000040000010401001d040000c20400002204000012040300120400001c04000023
+040000190401000404010002040100030401000104010002040100000404000104040001
+040300010401001d040000c3040000690400002504000019040100040404000504030003
+040100010402000304020002040200010401001d040000c404000069040000250400001a
+04000017040100130400001e040000c50400006704000027040000190401001304000001
+040100120401001d040000c604000067040000270400001b04000012040300120400001f
+040000c6040000670400002704000067040000c7040000650400002904000065040000c8
+040000650400002904000065040000c9040000630400002b04000063040000cb04000061
+0400002d04000061040000cc040000610400002d04000061040000cd0400005f0400002f
+0400005f040000ce0400005f0400002f0400005f040000cf0400005d040000310400005d
+040000d10400005b040000330400005b040000d20400005b040000330400005b040000d3
+040000590400003504000059040000d5040000570400003704000057040000d704000055
+0400003904000055040000d9040000530400003b04000053040000db040000510400003d
+04000051040000dd0400004f0400003f0400004f040000df0400004d040000410400004d
+040000e10400004b040000430400004b040000e3040000490400004504000049040000e5
+040000470400004704000047040000e7040100430401004904010043040100ea04000041
+0400004d04000041040000ed0400003f0400004f0400003f040000ef0401003b04010051
+0401003b040100f2040100370401005504010037040100f6040000350400005904000035
+040000f9040100310401005b04010031040100fc0402002b0402005f0402002b040200ff
+0001040100270401006504010027040100ff0006040200210402006904020021040200ff
+000b040300190403006f04030019040300ff00120404000f040400770404000f04040003
+020100ff0015040f0081040f0008020100ff00c0020100ff00c0020200ff00c0020100ff
+00c0020000ff0015020000ff00c1020000ff00c0020100ff00bf020200ff00be020200ac
+020100ff0010020200ac020100ff000f020300ac020100ff000e020400ac020200ff000c
+020500ad020100ff000c020400ae020000ff000c020500ff00bb020600ff00ba020700ff
+00ba020700af020100ff0007020700b0020100ff0006020800b0020100ff0005020900b1
+020100ff0004020900b1020100ff0003020a00b1020100ff0002020a00b2020000ff0002
+02020004020300ff00bb02000001020300ff00bb02010001020200ff00ba020200010202
+00b5020000ff000302010003020000b5020100ff0002020100bb020100ff0002020100bb
+020100ff00c0020100ff00ff00ff00ff0086020000ff00c1020100ff00bf020200ff00bf
+020100c0020100fc020100c1020100fc020100c1020100ff00c1020100ff00c0020100ff
+00c0020000ff00ff00bc020100ff00bf020200ff00bf020100c8020100f5020100c80201
+00f5020100c8020100ff00c0020100ff00c0020100ff00ff00ff00ff0078020100ff00bf
+020200ff00bf020100ff00c0020100cf020100ff00c0020100ff00c0020100ff00c00201
+00ff00ff00ae020000ff00c0020200ff00bf020100ff00c0020100ff00c0020100d60200
+00ff00c0020200ff00c0020100ff00c0020100ff00c0020100e3020000db020000e40201
+00ff00c0020100ff00bf020200ff00c0020000ff00ff00a0020100ff00c0020200ff00c0
+020100dc020000e2020100dc020100e1020100db020200e1020000dc020100ff00bf0201
+00ff00c0020100ff00ff00ff00ff006b020200ff00c0020100ff00c0020100d4020000ea
+020100d4020100e9020000d4020200ff00bf020100ff00bf020100ff00c0020100ff00ff
+00b1020100ff00c0020100ff00c0020100ff00c0020100cc020000e104100202042d0067
+04340202040900d6040000100200002d0400006704000004040000060400000604000006
+0400000604000006040000050201000604000001040000d60400003f0400006704000003
+0400000604000006040000060400000604000006040000050201000604000002040000d6
+0400003f0400006704000002040000060400000604000006040000060400000604000006
+0201000504000003040000d6040000010100000201000002010000020100000201000002
+010000020100000201000002010000020100000201000002010000020100000201000002
+010000020100000004000067040000010400000604000006040000060400000604000006
+0400000604000200000504000004040000d60400003f0400006704000000040000060400
+0006040000060400000604000006040000060400000604000005040000d6040000130201
+002904000067040100060400000604000006040000060400000604000006040000060400
+0006040000d6040000130201002904000067040000060400000604000006040000060400
+0006040000060400000604000006040100d6040000010100000601000006010000000202
+000201000006010000060100000601000006010000040400006704000005040000060400
+0006040000060400000604000006040000060400000604000000040000d6040000140201
+002804000067040000040400000405050003040000060400000305010000040000060400
+020000050400000604000001040000d60400001402010028040000670400000304000004
+050104000001050100020500000604000001050000010501040000060400000002010003
+0400000604000002040000d6040000140200002904000067040000020400000505010003
+050000010400050000050400000205000002040000060400000002020002040000060400
+0003040000d6040000010100000201000002010000020100000201000002010000020100
+000201000002010000020100000201000002010000020100000201000002010000020100
+000004000067040000010400000605020004050800010504040005000002050300010201
+00020400000604000004040000d60400003f040000670400000004000006040000000502
+000204000000050100000501000004000501000105010000050200010501000004000501
+020200010400000604000005040000d60400003f04000067040100060400000205030400
+000105010000050104000000050100010501040000000501000005010000040000030200
+00010400000604000006040000d60400003f040000670400000604000005050200010501
+000104000503000105010001050100000501040000060400000604000006040100d60400
+000101000006010000060100000302020100000601000006010000060100000601000004
+040000670400000504000006040005010001050100000400050000010501000105010001
+050100000501000305000001040000060400000604000000040000d60400001702010025
+040000670400000404000003050000010400000005010001050104000501000105010000
+040005010000050200000502000105010000040000060400000604000001040000d60400
+001702010025040000670400000304000004050104000001050100010509000005050400
+000005040000040000060400000604000002040000d604000012050c0003050300170400
+006704000002040000050500040005030002050500000501000105060001050202000400
+00060400000604000003040000d604000001010000020100000201000002010000020100
+000105010001050100020100050100000100000105010002010000020100000201000002
+010000020100000201000000040000670400000104000006040000060400000604000006
+040000040201040000060400000604000004040000d60400001405010001050100040501
+000205010018040000670400000004000006040000060400000604000006040000040202
+00060400000604000005040000d604000014050100010501000505010001050100180400
+006704010006040000060400000604000006040000040202000604000006040000060400
+00d604000014050100010501000505010001050100180400006704000006040000060400
+00060400000604000005020100060400000604000006040100d604000001010000060100
+000601000001050100010501000505010001050100020100000601000006010000040400
+006704000005040000060400000604000006040000060400000604000006040000060400
+0000040000d6040000140501000105010000020000030501000105010018040000670400
+000404000006040000060400000604000006040000060400000604000006040000010400
+00d604000014050100010501020200020501000105010018040000670400000304000006
+04000006040000060400000604000006040000060400000604000002040000d604000014
+050100010501000002010001050100020501000405000012040000670400000204000006
+04000006040000060400000604000006040000060400000604000003040000d604000001
+010000020100000201000002010000020100000105010001050100000202050100000100
+000105010002010005010000010000020100000201000002010000020100000004000067
+040000010400000604000006040000060400000604000200000504000006040000060400
+0004040000d604000012050b00040508001204000067040000000400000604000003050c
+0003050302010003040000060400000604000005040000d60400003f0400006704010006
+040000060501000105010001040000000501000305010201000304000006040000060400
+0006040000d60400003f0400006704000006040000060400050100010501000004000002
+050100010400050102000003040000060400000604000006040100d60400000101000006
+010000060100000601000006010000060100000601000006010000040400006704000005
+040000060400000005010001050104000004050104000000050102000002040000060400
+00060400000604000000040000d60400003f040000670400000404000006040000010501
+000105010005050100010501000204000006040000060400000604000001040000d60400
+00200200001d040000670400000304000006040000020501000105010005050100010501
+000104000006040000060400000604000002040000d60400001f0201001d040000670400
+000204000006040000030501000004000501000404000501000105010000040000060400
+00060400000604000003040000d604000001010000020100000201000002010000020100
+000201000002010000020100000002020002010000020100000201000002010000020100
+000201000002010000000400006704000001040000060400000405010400000005010003
+0400000005010001050104000006040000060400000604000004040000d6040000200201
+001c04000067040000000400000604000005050100010501000204000000050100020501
+000405000000040000060400000604000005040000d6040000210201001b040000670401
+000604000006050100010501000104000000050102010001050100030501040000060400
+000604000006040000d60400003f040000670400000604000005050b0000020200000508
+00060400000604000006040100d604000001010000060100000601000006010000060100
+000601000006010000060100000404000067040000050400000604000006040000020202
+00000400000604000006040000060400000604000000040000d60400003f040000670400
+000404000006040000060400000302010000040000060400000604000006040000060400
+0001040000d60400000f0505000c05020019040000670400000304000006040000060400
+00060400000604000006040000060400000604000002040000d60400000e050100020501
+000205000009050102000018040000670400000204000006040000060400000604000006
+04000006040000060400000604000003040000d604000001010000020100000201000002
+010005010000010000010500010000010500010000020100000201000000050102000002
+010000020100000201000002010000020100000201000000040000670400000104000006
+04000006040000060400000604000006040000060400000604000004040000d60400000e
+05020004050600000502000105010200050200010503000f040000670400000004000006
+0400000604000003020000010400000604000006040000060400000604000005040000d6
+0400000f05020004050100010501000105010001050800010500000f0400006704010006
+040000060400000302020400000604000006040000060400000604000006040000d60400
+001005030002050100010501000105010001050100000200050500000500000f04000067
+040000050505000005020003020204000003050204000006040000060400000604000006
+040100d60400000101000006010000060100050200010501010000000501000105010100
+000005010002050100000502000201000006010000040400006704000004050100020501
+000105010002020204000005050100060400000105000003040000060400000604000000
+040000d6040000130501000105010001050100010501000105010002050100010503000e
+040000670400000405010003050000000400050100020201040000060501000504000002
+05000002040000060400000604000001040000d60400000e050000030501000105010000
+050200010501000105010002050200020501000e04000067040000030400050200030400
+000005010001050200010503000004000501000205030000050404000503000204000500
+00000502000104000002040000d60400000e050100020501000105090001050100010501
+0000050000020501000e0400006704000002040000010502000104000001050100010501
+000105000002050100000501000105000000040000000501000005010000040005010001
+050100000506000004000003040000d60400000101000002010000020100000201000500
+000005030000010000000502000005020000050200010503000001000504000101000002
+010000020100000201000000040000670400000104000003050300020501000005010001
+050600000501000005060000050104000501000305010000050100010501040000040400
+00d60400002a020100120400006704000000040000060502000105030002050100010400
+000205010000050100050501000005010003050100000501000105010005040000d60400
+002b02010011040000670401000604000000050100010501040005010001050100000400
+0003050100000501000505010000050100020400050100000501000105010005040000d6
+0400002b0202001004000067040000040500000004000001050100000200050102000502
+000005020002050000000501040005020002050004000501000005010001040000000501
+000005010000040005010004040100d60400000101000006010000060100000601000006
+010000060100000102010002010000060100000404000067040000040501000205010201
+050100010502000005040001050100010504040000000505040000000501000105010400
+00000501000304000000040000d60400003f040000670400000405000000050300000200
+050300000502040000000502000105030001050204000001050200010503000105070001
+04000001040000d60400003f040000670400000304000006040000060400000604000006
+04000006040000060400000604000002040000d60400003f040000670400000204000006
+04000006040000060400000604000006040000060400000604000003040000d604000001
+010000020100000201000002010000020100000201000002010000020100000201000002
+010000020100000201000002010000020100000201000002010000000400006704000001
+0400000604000006040000060400000604000006040000060400000604000004040000d6
+040000310200000c04000067040000000400000502000400000604000006040000060400
+0006040000060400000604000005040000d6040000310201000b04000067040100050202
+0005040000060400000604000006040000060400000604000006040000d6040000310202
+000a04000067040000050202000504000006040000060400000604000006040000060400
+0006040100d6040000010100000601000006010000060100000601000006010000060100
+020200030100000404000067040000040202000504000006040000060400000604000006
+040000060400000604000000040000d60400003302010009040000670400000404000200
+000504000006040000060400000604000006040000060400000604000001040000d60400
+003f04000067040000030400000604000006040000060400000604000006040000060400
+000604000002040000d60400003f04000067040000020400000604000006040000060400
+000604000006040000060400000604000003040000d60400000101000002010000020100
+000201000002010000020100000201000002010000020100000201000002010000020100
+000201000002010000020100000201000000040000670400020000000400000604000006
+040000060400000604000006040000060400000604000004040000d60400003902000004
+040000670202000604000006040000060400000604000006040000060400000604000005
+040000d60400003802030002040000650203000604000006040000060400000604000006
+040000060400000604000006040000d60400003a02020001040000640202040000060400
+0006040000060400000604000006040000060400000604000006040100d6040000010100
+000601000006010000060100000601000006010000060100000601000000020200000400
+006402010000040000050400000604000006040000060400000604000006040000060400
+000604000000040000d60400003c02010000040000670400000404000006040000060400
+00060400000604000006040000060400000604000001040000b703ff0328009903c00200
+03660099030100bd02020063030100990301006002010058020300640301009903010060
+02030055020200660301009903010061020300be03010099030100630201004e0200006e
+03010099030100b30202006d0301009903010069020200440203006e0301009903010069
+0204004102020070030100990301006b020300b4030100990301006d0200003b02010077
+0301009903010074020000310205007603010099030100730203002f0203007803010099
+03010074020400030202001d020400800301009903010076020100040206000302020006
+020500050205007f030100990301008002020004020500030205008b030100990301008b
+0201009603010099030100ff002403010099030100ff0024030100990301003303040003
+03020006030100150306002f0307000f0302001803000002030400030306000303070002
+0300003603010099030100320301000203010003030100060301000f0300000503010002
+0302002703000005030100020302000f0301001603010002030100020301000303010002
+030200020301000203020002030100340301009903010031030100040301000203010018
+03000005030100030301002703000005030100030301000f030100150301000203010004
+030100020301000303010002030100030301000303010033030100990301003003010006
+030100010301000003020003030000010303000203030000030400030301000303010003
+030300020302000003000000030200000302000203030001030300000304000303010003
+030100010305000003030002030100010302000103030000030500030300000203010006
+030100010301000303010002030100030301000303010033030100990301003003010006
+030100010306000003020000030000020301000003010001030100000301000503010002
+030200020300000203010000030100010301000103010001030100010300000203030001
+030000010301000503010002030100030301000103020001030100010301000103010001
+030000020301000003010001030000020301000203010006030100010301000203020002
+030100020301000503010032030100990301003003010006030100010301000103020001
+030a00050301000503060002030800020301000103010001030100000309000003000001
+030100050306000303010001030100030301000003010000030100010306000003010005
+030100020301000603010001030600030306000503010032030100990301003003010006
+030100010301000203010001030300040301000503010005030100000301000403010004
+030100020301000103010001030100000301000503020002030100050301000203020002
+030100010301000303010000030300020301000503010005030100020301000603010001
+030100000301000503010002030200040301003203010099030100300301000603010001
+030100020301000103030004030100030300000003010005030100010301000303010004
+030100020301000103010001030100000301000603030000030100050301000303010002
+030100010301000303010000030100000301000103010005030100050301000203010006
+030100010301000103010004030100030301000403010032030100990301003103010004
+030100020301000203010001030400020303000103010000030100000300000303010002
+030100020302000203030001030100010301000103010000030200020301000203010000
+030100000300000303010003030100020301000103010003030100000301000003020000
+030200020300000003010005030100030301000403010002030100020301000303010003
+030100040301003203010099030100320301000203010003030100010301000203010000
+030400010304000103030003030100020302000203040000030600010305000103040000
+030000020301000003030003030100020302000203010002030100010301000103010001
+030200000304000103010005030100040301000203010003030100020302000203010002
+030200040301003203010099030100330304000503030003030100010302000303020002
+030200030303000203020002030200020302000003010001030200000302000103020001
+030400010302000303060003030300020303000103030000030200010302000103030005
+03010004030400030303000203020000030600050301003303010099030100460301002c
+0301004f03000025030000340301009903010043030000010301002c0301004f03010023
+0301003403010099030100430303002c03030050030000210300003603010099030100ff
+002403010099030100ff002403010099030100ff002403010099030100ff002403010099
+030100ff002403010099030100ff002403010099030100ff002403010099030100ff0024
+03010099030100ff002403010099030100ff002403010099030100ff0024030100990301
+00ff002403010099030100ff002403010099030100ff002403010099030100ff00240301
+0099030100ff002403010099030100ff002403010099030100ff002403010099030100ff
+002403010099030100ff002403010099030100ff002403010099030100ff002403010099
+030100ff002403010099030100ff002403010099030100ff002403010099030100ff0024
+0301009903ff0328009903ff032800ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff007b020200ff00410202007802000001020100ff00420205007402000001
+020100ff0043020900270200000002010001020200020203000102030001020300010203
+0002020300040203000602000000020200010203000102060000020200ff0040020d0020
+020a00010200000202030001020000000201000102000000020100010201000002010001
+02030000020000020201000302060000020100010201000102010001020500ff001a0205
+000502050005020500050214001c02010001020100010201000002090000020000000202
+000002000000020100010201000002010002020100000206000402010001020400010201
+00010201000102010001020100ff001a0205000502050005020500050218001802010001
+020100010201000002010005020200020202000302030000020100020201000002010009
+0201000202010001020300010201000102010001020100ff00400212001c020100010201
+000102010000020100060203000102030000020000010201000002050001020100090201
+00020201000002000001020100010201000102010001020100ff0040020d002102010001
+020100010201000002020002020100020202000202030001020100000200000602020002
+020000040201000202030001020100010201000002020001020100ff003f020900260201
+00010201000102010001020400000200000202020002020f000102040005020100010201
+00000206000002050001020100ff003e0205002a020b0001020200010204000002040000
+02020000020100000207000102020006020400010202000002010001020a00ff003c0202
+0054020100040200000b020100ff00ac0206000c020100ff00ad0204000c020300ff00ff
+00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff00ff00ff00a9
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 34 377 386
+%%EOF