~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/orber/doc/src/theORB.ps

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%!PS-Adobe-3.0 EPSF-3.0
 
2
%%Creator: (ImageMagick)
 
3
%%Title: (./theORB.tmp.eps)
 
4
%%CreationDate: (Tue Jun 12 17:47:30 2001)
 
5
%%BoundingBox: 0 34 377 386
 
6
%%DocumentData: Clean7Bit
 
7
%%LanguageLevel: 1
 
8
%%Pages: 0
 
9
%%EndComments
 
10
 
 
11
%%BeginDefaults
 
12
%%PageOrientation: Portrait
 
13
%%EndDefaults
 
14
 
 
15
%%BeginProlog
 
16
%
 
17
% Display a color image.  The image is displayed in color on
 
18
% Postscript viewers or printers that support color, otherwise
 
19
% it is displayed as grayscale.
 
20
%
 
21
/buffer 512 string def
 
22
/byte 1 string def
 
23
/color_packet 3 string def
 
24
/pixels 768 string def
 
25
 
 
26
/DirectClassPacket
 
27
{
 
28
  %
 
29
  % Get a DirectClass packet.
 
30
  %
 
31
  % Parameters:
 
32
  %   red.
 
33
  %   green.
 
34
  %   blue.
 
35
  %   length: number of pixels minus one of this color (optional).
 
36
  %
 
37
  currentfile color_packet readhexstring pop pop
 
38
  compression 0 gt
 
39
  {
 
40
    /number_pixels 3 def
 
41
  }
 
42
  {
 
43
    currentfile byte readhexstring pop 0 get
 
44
    /number_pixels exch 1 add 3 mul def
 
45
  } ifelse
 
46
  0 3 number_pixels 1 sub
 
47
  {
 
48
    pixels exch color_packet putinterval
 
49
  } for
 
50
  pixels 0 number_pixels getinterval
 
51
} bind def
 
52
 
 
53
/DirectClassImage
 
54
{
 
55
  %
 
56
  % Display a DirectClass image.
 
57
  %
 
58
  systemdict /colorimage known
 
59
  {
 
60
    columns rows 8
 
61
    [
 
62
      columns 0 0
 
63
      rows neg 0 rows
 
64
    ]
 
65
    { DirectClassPacket } false 3 colorimage
 
66
  }
 
67
  {
 
68
    %
 
69
    % No colorimage operator;  convert to grayscale.
 
70
    %
 
71
    columns rows 8
 
72
    [
 
73
      columns 0 0
 
74
      rows neg 0 rows
 
75
    ]
 
76
    { GrayDirectClassPacket } image
 
77
  } ifelse
 
78
} bind def
 
79
 
 
80
/GrayDirectClassPacket
 
81
{
 
82
  %
 
83
  % Get a DirectClass packet;  convert to grayscale.
 
84
  %
 
85
  % Parameters:
 
86
  %   red
 
87
  %   green
 
88
  %   blue
 
89
  %   length: number of pixels minus one of this color (optional).
 
90
  %
 
91
  currentfile color_packet readhexstring pop pop
 
92
  color_packet 0 get 0.299 mul
 
93
  color_packet 1 get 0.587 mul add
 
94
  color_packet 2 get 0.114 mul add
 
95
  cvi
 
96
  /gray_packet exch def
 
97
  compression 0 gt
 
98
  {
 
99
    /number_pixels 1 def
 
100
  }
 
101
  {
 
102
    currentfile byte readhexstring pop 0 get
 
103
    /number_pixels exch 1 add def
 
104
  } ifelse
 
105
  0 1 number_pixels 1 sub
 
106
  {
 
107
    pixels exch gray_packet put
 
108
  } for
 
109
  pixels 0 number_pixels getinterval
 
110
} bind def
 
111
 
 
112
/GrayPseudoClassPacket
 
113
{
 
114
  %
 
115
  % Get a PseudoClass packet;  convert to grayscale.
 
116
  %
 
117
  % Parameters:
 
118
  %   index: index into the colormap.
 
119
  %   length: number of pixels minus one of this color (optional).
 
120
  %
 
121
  currentfile byte readhexstring pop 0 get
 
122
  /offset exch 3 mul def
 
123
  /color_packet colormap offset 3 getinterval def
 
124
  color_packet 0 get 0.299 mul
 
125
  color_packet 1 get 0.587 mul add
 
126
  color_packet 2 get 0.114 mul add
 
127
  cvi
 
128
  /gray_packet exch def
 
129
  compression 0 gt
 
130
  {
 
131
    /number_pixels 1 def
 
132
  }
 
133
  {
 
134
    currentfile byte readhexstring pop 0 get
 
135
    /number_pixels exch 1 add def
 
136
  } ifelse
 
137
  0 1 number_pixels 1 sub
 
138
  {
 
139
    pixels exch gray_packet put
 
140
  } for
 
141
  pixels 0 number_pixels getinterval
 
142
} bind def
 
143
 
 
144
/PseudoClassPacket
 
145
{
 
146
  %
 
147
  % Get a PseudoClass packet.
 
148
  %
 
149
  % Parameters:
 
150
  %   index: index into the colormap.
 
151
  %   length: number of pixels minus one of this color (optional).
 
152
  %
 
153
  currentfile byte readhexstring pop 0 get
 
154
  /offset exch 3 mul def
 
155
  /color_packet colormap offset 3 getinterval def
 
156
  compression 0 gt
 
157
  {
 
158
    /number_pixels 3 def
 
159
  }
 
160
  {
 
161
    currentfile byte readhexstring pop 0 get
 
162
    /number_pixels exch 1 add 3 mul def
 
163
  } ifelse
 
164
  0 3 number_pixels 1 sub
 
165
  {
 
166
    pixels exch color_packet putinterval
 
167
  } for
 
168
  pixels 0 number_pixels getinterval
 
169
} bind def
 
170
 
 
171
/PseudoClassImage
 
172
{
 
173
  %
 
174
  % Display a PseudoClass image.
 
175
  %
 
176
  % Parameters:
 
177
  %   class: 0-PseudoClass or 1-Grayscale.
 
178
  %
 
179
  currentfile buffer readline pop
 
180
  token pop /class exch def pop
 
181
  class 0 gt
 
182
  {
 
183
    currentfile buffer readline pop
 
184
    token pop /depth exch def pop
 
185
    /grays columns 8 add depth sub depth mul 8 idiv string def
 
186
    columns rows depth
 
187
    [
 
188
      columns 0 0
 
189
      rows neg 0 rows
 
190
    ]
 
191
    { currentfile grays readhexstring pop } image
 
192
  }
 
193
  {
 
194
    %
 
195
    % Parameters:
 
196
    %   colors: number of colors in the colormap.
 
197
    %   colormap: red, green, blue color packets.
 
198
    %
 
199
    currentfile buffer readline pop
 
200
    token pop /colors exch def pop
 
201
    /colors colors 3 mul def
 
202
    /colormap colors string def
 
203
    currentfile colormap readhexstring pop pop
 
204
    systemdict /colorimage known
 
205
    {
 
206
      columns rows 8
 
207
      [
 
208
        columns 0 0
 
209
        rows neg 0 rows
 
210
      ]
 
211
      { PseudoClassPacket } false 3 colorimage
 
212
    }
 
213
    {
 
214
      %
 
215
      % No colorimage operator;  convert to grayscale.
 
216
      %
 
217
      columns rows 8
 
218
      [
 
219
        columns 0 0
 
220
        rows neg 0 rows
 
221
      ]
 
222
      { GrayPseudoClassPacket } image
 
223
    } ifelse
 
224
  } ifelse
 
225
} bind def
 
226
 
 
227
/DisplayImage
 
228
{
 
229
  %
 
230
  % Display a DirectClass or PseudoClass image.
 
231
  %
 
232
  % Parameters:
 
233
  %   x & y translation.
 
234
  %   x & y scale.
 
235
  %   label pointsize.
 
236
  %   image label.
 
237
  %   image columns & rows.
 
238
  %   class: 0-DirectClass or 1-PseudoClass.
 
239
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
 
240
  %   hex color packets.
 
241
  %
 
242
  gsave
 
243
  currentfile buffer readline pop
 
244
  token pop /x exch def
 
245
  token pop /y exch def pop
 
246
  x y translate
 
247
  currentfile buffer readline pop
 
248
  token pop /x exch def
 
249
  token pop /y exch def pop
 
250
  currentfile buffer readline pop
 
251
  token pop /pointsize exch def pop
 
252
  /Helvetica findfont pointsize scalefont setfont
 
253
  x y scale
 
254
  currentfile buffer readline pop
 
255
  token pop /columns exch def
 
256
  token pop /rows exch def pop
 
257
  currentfile buffer readline pop
 
258
  token pop /class exch def pop
 
259
  currentfile buffer readline pop
 
260
  token pop /compression exch def pop
 
261
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
 
262
  grestore
 
263
} bind def
 
264
%%EndProlog
 
265
%%Page:  1 1
 
266
%%PageBoundingBox: 0 34 377 386
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 34
 
271
377.000000 352.000000
 
272
12
 
273
451 421
 
274
1
 
275
0
 
276
0
 
277
8
 
278
ffffff
 
279
000000
 
280
00d000
 
281
0000ff
 
282
900090
 
283
b000b0
 
284
000000
 
285
000000
 
286
00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
287
00ff00ff00ff00ff00ff00ff00ff00ff001a040f0081040f00ff001b0404000f04040077
 
288
0404000f040400ff0012040300190403006f04030019040300ff000b0402002104020069
 
289
04020021040200ff0006040100270401006504010027040100ff00010402002b0402005f
 
290
0402002b040200fc040100310401005b04010031040100f9040000350400005904000035
 
291
040000f6040100370401005504010037040100f20401003b040100510401003b040100ef
 
292
0400003f0400004f0400003f040000ed040000410400004d04000041040000ea04010043
 
293
0401004904010043040100e7040000470400004704000047040000e50400004904000045
 
294
04000049040000e30400004b040000430400004b040000e10400004d040000410400004d
 
295
040000df0400004f0400003f0400004f040000dd040000510400003d04000051040000db
 
296
040000530400003b04000053040000d9040000550400003904000055040000d704000057
 
297
0400003704000057040000d5040000590400003504000059040000d30400005b04000033
 
298
0400005b040000d20400005b040000330400005b040000d10400005d040000310400005d
 
299
040000cf0400005f0400002f0400005f040000ce0400005f0400002f0400005f040000cd
 
300
040000610400002d04000061040000cc040000610400002d04000061040000cb04000063
 
301
0400002b04000063040000c9040000650400002904000065040000c80400006504000029
 
302
04000065040000c7040000670400002704000067040000c6040000670400002704000067
 
303
040000c6040000670400002704000067040000c5040000690400002504000069040000c4
 
304
040000690400002504000069040000c30400006b040000230400006b040000c20400006b
 
305
040000230400006b040000c20400006b040000230400006b040000c10400006d04000021
 
306
0400006d040000c00400006d040000210400006d040000c00400006d040000210400006d
 
307
040000c00400006d040000210400006d040000bf0400006f0400001f0400006f040000be
 
308
0400006f0400001f0400006f040000be0400006f0400001f0400006f040000be0400006f
 
309
0400001f0400006f040000be0400001d0405000004080000040600030403000304020000
 
310
04080000040600180400001f0400006f040000bd0400001d040100020401000104010004
 
311
040000010401000204020002040100050400000204010004040000010401000204020017
 
312
0400001d04000071040000bc0400001d0401000304000001040100040400000104010003
 
313
040100020402000304010002040100040400000104010003040100170400001d04000071
 
314
040000bc0400001d04020005040100030400000204010003040100030401000304000003
 
315
040100030400000204010003040100170400001d04000071040000bc0400001e04020004
 
316
040100030400000204010002040200030402000204000003040100030400000204010002
 
317
040200170400001d0400001b0405000004030005040d000004030002040e001f040000bc
 
318
0400001f040300020406000204060005040100010400000404060002040600180400001d
 
319
0400001a0401000204010001040100080401000104010004040000020402000304000001
 
320
04000002040100020400001f040000bc0400002104020001040100030400000204010000
 
321
0401000704020000040000040401000304000002040100000401001a0400001d04000019
 
322
040100040400000104010008040100010401000404000002040300020400000104000002
 
323
040100020400001f040000bc040000220401000104010003040000020401000104010007
 
324
04030004040100030400000204010001040100190400001d040000180401000504000001
 
325
0401000804010001040100030400000304000000040100020400000504010023040000bc
 
326
0400001d0400000304010001040100050400000004010002040100060402000504010005
 
327
0400000004010002040100180400001d0400001804010008040100080401000104010003
 
328
0400000304000001040100010400000504010023040000bc0400001d0401000204010001
 
329
040100040401000004010002040200060401000504010004040100000401000204020017
 
330
0400001d0400001804010008040100080401000104060003040000010402000004000005
 
331
04010023040000bc0400001d0400000004030001040d00020402000504000005040d0002
 
332
040200160400001d04000018040100080401000804010001040100030400000304000002
 
333
0403000504010023040000bc040000710400001d04000018040100080401000804010001
 
334
0401000304000003040000030402000504010023040000bc040000710400001d04000019
 
335
040100040400000104010004040000020401000104010005040000010400000404010005
 
336
04010023040000bc040000710400001d0400001904020002040000020401000304010002
 
337
040100010401000404010001040000040401000504010023040000bc040000710400001d
 
338
0400001b0403000204080000041300030400000404030022040000bc0400002504000002
 
339
0404000304020006040100110400001f0400001d04000071040000bc0400002304010002
 
340
0401000204010003040100060401000f040000010401001d0400001d04000071040000bd
 
341
0400002104010002040100040401000204010018040000020401001b0400001f0400006f
 
342
040000be0400002104000002040100060401000104010000040200030400000104030002
 
343
04030000040400000401001b0400001f0400006f040000be040000200401000204010006
 
344
04010001040600000402000004000002040100000401000104010000040100030401001a
 
345
0400001f0400001f0400000204040003040200060401001104000023040000be04000020
 
346
0401000204010006040100010401000104020001040a0005040100030401001a0400001f
 
347
0400001d040100020401000204010003040100060401000f0400000104010021040000be
 
348
040000200401000204010006040100010401000204010001040300040401000504010003
 
349
0401001a0400001f0400001c040100020401000404010002040100180400000204010020
 
350
040000bf0400001f04010002040100060401000104010002040100010403000404010003
 
351
040000000401000304010019040000210400001b04000002040100060401000104010000
 
352
04020003040000010403000204030000040400000401001f040000c00400001f04010003
 
353
040100040401000204010002040100010404000204030001040100000401000004000001
 
354
04010019040000210400001a040100020401000604010001040600000402000004000002
 
355
040100000401000104010000040100030401001e040000c00400001f0401000404010002
 
356
040100030401000104010002040100000404000104040001040300010401001904000021
 
357
0400001a0401000204010006040100010401000104020001040a0005040100030401001e
 
358
040000c00400002004010004040400050403000304010001040200030402000204020001
 
359
0401001a040000210400001a040100020401000604010001040100020401000104030004
 
360
04010005040100030401001e040000c10400002004000017040100130400001a04000023
 
361
040000190401000204010006040100010401000204010001040300040401000304000000
 
362
040100030401001d040000c2040000200401001304000001040100120401001a04000023
 
363
040000190401000304010004040100020401000204010001040400020403000104010000
 
364
04010000040000010401001d040000c20400002204000012040300120400001c04000023
 
365
040000190401000404010002040100030401000104010002040100000404000104040001
 
366
040300010401001d040000c3040000690400002504000019040100040404000504030003
 
367
040100010402000304020002040200010401001d040000c404000069040000250400001a
 
368
04000017040100130400001e040000c50400006704000027040000190401001304000001
 
369
040100120401001d040000c604000067040000270400001b04000012040300120400001f
 
370
040000c6040000670400002704000067040000c7040000650400002904000065040000c8
 
371
040000650400002904000065040000c9040000630400002b04000063040000cb04000061
 
372
0400002d04000061040000cc040000610400002d04000061040000cd0400005f0400002f
 
373
0400005f040000ce0400005f0400002f0400005f040000cf0400005d040000310400005d
 
374
040000d10400005b040000330400005b040000d20400005b040000330400005b040000d3
 
375
040000590400003504000059040000d5040000570400003704000057040000d704000055
 
376
0400003904000055040000d9040000530400003b04000053040000db040000510400003d
 
377
04000051040000dd0400004f0400003f0400004f040000df0400004d040000410400004d
 
378
040000e10400004b040000430400004b040000e3040000490400004504000049040000e5
 
379
040000470400004704000047040000e7040100430401004904010043040100ea04000041
 
380
0400004d04000041040000ed0400003f0400004f0400003f040000ef0401003b04010051
 
381
0401003b040100f2040100370401005504010037040100f6040000350400005904000035
 
382
040000f9040100310401005b04010031040100fc0402002b0402005f0402002b040200ff
 
383
0001040100270401006504010027040100ff0006040200210402006904020021040200ff
 
384
000b040300190403006f04030019040300ff00120404000f040400770404000f04040003
 
385
020100ff0015040f0081040f0008020100ff00c0020100ff00c0020200ff00c0020100ff
 
386
00c0020000ff0015020000ff00c1020000ff00c0020100ff00bf020200ff00be020200ac
 
387
020100ff0010020200ac020100ff000f020300ac020100ff000e020400ac020200ff000c
 
388
020500ad020100ff000c020400ae020000ff000c020500ff00bb020600ff00ba020700ff
 
389
00ba020700af020100ff0007020700b0020100ff0006020800b0020100ff0005020900b1
 
390
020100ff0004020900b1020100ff0003020a00b1020100ff0002020a00b2020000ff0002
 
391
02020004020300ff00bb02000001020300ff00bb02010001020200ff00ba020200010202
 
392
00b5020000ff000302010003020000b5020100ff0002020100bb020100ff0002020100bb
 
393
020100ff00c0020100ff00ff00ff00ff0086020000ff00c1020100ff00bf020200ff00bf
 
394
020100c0020100fc020100c1020100fc020100c1020100ff00c1020100ff00c0020100ff
 
395
00c0020000ff00ff00bc020100ff00bf020200ff00bf020100c8020100f5020100c80201
 
396
00f5020100c8020100ff00c0020100ff00c0020100ff00ff00ff00ff0078020100ff00bf
 
397
020200ff00bf020100ff00c0020100cf020100ff00c0020100ff00c0020100ff00c00201
 
398
00ff00ff00ae020000ff00c0020200ff00bf020100ff00c0020100ff00c0020100d60200
 
399
00ff00c0020200ff00c0020100ff00c0020100ff00c0020100e3020000db020000e40201
 
400
00ff00c0020100ff00bf020200ff00c0020000ff00ff00a0020100ff00c0020200ff00c0
 
401
020100dc020000e2020100dc020100e1020100db020200e1020000dc020100ff00bf0201
 
402
00ff00c0020100ff00ff00ff00ff006b020200ff00c0020100ff00c0020100d4020000ea
 
403
020100d4020100e9020000d4020200ff00bf020100ff00bf020100ff00c0020100ff00ff
 
404
00b1020100ff00c0020100ff00c0020100ff00c0020100cc020000e104100202042d0067
 
405
04340202040900d6040000100200002d0400006704000004040000060400000604000006
 
406
0400000604000006040000050201000604000001040000d60400003f0400006704000003
 
407
0400000604000006040000060400000604000006040000050201000604000002040000d6
 
408
0400003f0400006704000002040000060400000604000006040000060400000604000006
 
409
0201000504000003040000d6040000010100000201000002010000020100000201000002
 
410
010000020100000201000002010000020100000201000002010000020100000201000002
 
411
010000020100000004000067040000010400000604000006040000060400000604000006
 
412
0400000604000200000504000004040000d60400003f0400006704000000040000060400
 
413
0006040000060400000604000006040000060400000604000005040000d6040000130201
 
414
002904000067040100060400000604000006040000060400000604000006040000060400
 
415
0006040000d6040000130201002904000067040000060400000604000006040000060400
 
416
0006040000060400000604000006040100d6040000010100000601000006010000000202
 
417
000201000006010000060100000601000006010000040400006704000005040000060400
 
418
0006040000060400000604000006040000060400000604000000040000d6040000140201
 
419
002804000067040000040400000405050003040000060400000305010000040000060400
 
420
020000050400000604000001040000d60400001402010028040000670400000304000004
 
421
050104000001050100020500000604000001050000010501040000060400000002010003
 
422
0400000604000002040000d6040000140200002904000067040000020400000505010003
 
423
050000010400050000050400000205000002040000060400000002020002040000060400
 
424
0003040000d6040000010100000201000002010000020100000201000002010000020100
 
425
000201000002010000020100000201000002010000020100000201000002010000020100
 
426
000004000067040000010400000605020004050800010504040005000002050300010201
 
427
00020400000604000004040000d60400003f040000670400000004000006040000000502
 
428
000204000000050100000501000004000501000105010000050200010501000004000501
 
429
020200010400000604000005040000d60400003f04000067040100060400000205030400
 
430
000105010000050104000000050100010501040000000501000005010000040000030200
 
431
00010400000604000006040000d60400003f040000670400000604000005050200010501
 
432
000104000503000105010001050100000501040000060400000604000006040100d60400
 
433
000101000006010000060100000302020100000601000006010000060100000601000004
 
434
040000670400000504000006040005010001050100000400050000010501000105010001
 
435
050100000501000305000001040000060400000604000000040000d60400001702010025
 
436
040000670400000404000003050000010400000005010001050104000501000105010000
 
437
040005010000050200000502000105010000040000060400000604000001040000d60400
 
438
001702010025040000670400000304000004050104000001050100010509000005050400
 
439
000005040000040000060400000604000002040000d604000012050c0003050300170400
 
440
006704000002040000050500040005030002050500000501000105060001050202000400
 
441
00060400000604000003040000d604000001010000020100000201000002010000020100
 
442
000105010001050100020100050100000100000105010002010000020100000201000002
 
443
010000020100000201000000040000670400000104000006040000060400000604000006
 
444
040000040201040000060400000604000004040000d60400001405010001050100040501
 
445
000205010018040000670400000004000006040000060400000604000006040000040202
 
446
00060400000604000005040000d604000014050100010501000505010001050100180400
 
447
006704010006040000060400000604000006040000040202000604000006040000060400
 
448
00d604000014050100010501000505010001050100180400006704000006040000060400
 
449
00060400000604000005020100060400000604000006040100d604000001010000060100
 
450
000601000001050100010501000505010001050100020100000601000006010000040400
 
451
006704000005040000060400000604000006040000060400000604000006040000060400
 
452
0000040000d6040000140501000105010000020000030501000105010018040000670400
 
453
000404000006040000060400000604000006040000060400000604000006040000010400
 
454
00d604000014050100010501020200020501000105010018040000670400000304000006
 
455
04000006040000060400000604000006040000060400000604000002040000d604000014
 
456
050100010501000002010001050100020501000405000012040000670400000204000006
 
457
04000006040000060400000604000006040000060400000604000003040000d604000001
 
458
010000020100000201000002010000020100000105010001050100000202050100000100
 
459
000105010002010005010000010000020100000201000002010000020100000004000067
 
460
040000010400000604000006040000060400000604000200000504000006040000060400
 
461
0004040000d604000012050b00040508001204000067040000000400000604000003050c
 
462
0003050302010003040000060400000604000005040000d60400003f0400006704010006
 
463
040000060501000105010001040000000501000305010201000304000006040000060400
 
464
0006040000d60400003f0400006704000006040000060400050100010501000004000002
 
465
050100010400050102000003040000060400000604000006040100d60400000101000006
 
466
010000060100000601000006010000060100000601000006010000040400006704000005
 
467
040000060400000005010001050104000004050104000000050102000002040000060400
 
468
00060400000604000000040000d60400003f040000670400000404000006040000010501
 
469
000105010005050100010501000204000006040000060400000604000001040000d60400
 
470
00200200001d040000670400000304000006040000020501000105010005050100010501
 
471
000104000006040000060400000604000002040000d60400001f0201001d040000670400
 
472
000204000006040000030501000004000501000404000501000105010000040000060400
 
473
00060400000604000003040000d604000001010000020100000201000002010000020100
 
474
000201000002010000020100000002020002010000020100000201000002010000020100
 
475
000201000002010000000400006704000001040000060400000405010400000005010003
 
476
0400000005010001050104000006040000060400000604000004040000d6040000200201
 
477
001c04000067040000000400000604000005050100010501000204000000050100020501
 
478
000405000000040000060400000604000005040000d6040000210201001b040000670401
 
479
000604000006050100010501000104000000050102010001050100030501040000060400
 
480
000604000006040000d60400003f040000670400000604000005050b0000020200000508
 
481
00060400000604000006040100d604000001010000060100000601000006010000060100
 
482
000601000006010000060100000404000067040000050400000604000006040000020202
 
483
00000400000604000006040000060400000604000000040000d60400003f040000670400
 
484
000404000006040000060400000302010000040000060400000604000006040000060400
 
485
0001040000d60400000f0505000c05020019040000670400000304000006040000060400
 
486
00060400000604000006040000060400000604000002040000d60400000e050100020501
 
487
000205000009050102000018040000670400000204000006040000060400000604000006
 
488
04000006040000060400000604000003040000d604000001010000020100000201000002
 
489
010005010000010000010500010000010500010000020100000201000000050102000002
 
490
010000020100000201000002010000020100000201000000040000670400000104000006
 
491
04000006040000060400000604000006040000060400000604000004040000d60400000e
 
492
05020004050600000502000105010200050200010503000f040000670400000004000006
 
493
0400000604000003020000010400000604000006040000060400000604000005040000d6
 
494
0400000f05020004050100010501000105010001050800010500000f0400006704010006
 
495
040000060400000302020400000604000006040000060400000604000006040000d60400
 
496
001005030002050100010501000105010001050100000200050500000500000f04000067
 
497
040000050505000005020003020204000003050204000006040000060400000604000006
 
498
040100d60400000101000006010000060100050200010501010000000501000105010100
 
499
000005010002050100000502000201000006010000040400006704000004050100020501
 
500
000105010002020204000005050100060400000105000003040000060400000604000000
 
501
040000d6040000130501000105010001050100010501000105010002050100010503000e
 
502
040000670400000405010003050000000400050100020201040000060501000504000002
 
503
05000002040000060400000604000001040000d60400000e050000030501000105010000
 
504
050200010501000105010002050200020501000e04000067040000030400050200030400
 
505
000005010001050200010503000004000501000205030000050404000503000204000500
 
506
00000502000104000002040000d60400000e050100020501000105090001050100010501
 
507
0000050000020501000e0400006704000002040000010502000104000001050100010501
 
508
000105000002050100000501000105000000040000000501000005010000040005010001
 
509
050100000506000004000003040000d60400000101000002010000020100000201000500
 
510
000005030000010000000502000005020000050200010503000001000504000101000002
 
511
010000020100000201000000040000670400000104000003050300020501000005010001
 
512
050600000501000005060000050104000501000305010000050100010501040000040400
 
513
00d60400002a020100120400006704000000040000060502000105030002050100010400
 
514
000205010000050100050501000005010003050100000501000105010005040000d60400
 
515
002b02010011040000670401000604000000050100010501040005010001050100000400
 
516
0003050100000501000505010000050100020400050100000501000105010005040000d6
 
517
0400002b0202001004000067040000040500000004000001050100000200050102000502
 
518
000005020002050000000501040005020002050004000501000005010001040000000501
 
519
000005010000040005010004040100d60400000101000006010000060100000601000006
 
520
010000060100000102010002010000060100000404000067040000040501000205010201
 
521
050100010502000005040001050100010504040000000505040000000501000105010400
 
522
00000501000304000000040000d60400003f040000670400000405000000050300000200
 
523
050300000502040000000502000105030001050204000001050200010503000105070001
 
524
04000001040000d60400003f040000670400000304000006040000060400000604000006
 
525
04000006040000060400000604000002040000d60400003f040000670400000204000006
 
526
04000006040000060400000604000006040000060400000604000003040000d604000001
 
527
010000020100000201000002010000020100000201000002010000020100000201000002
 
528
010000020100000201000002010000020100000201000002010000000400006704000001
 
529
0400000604000006040000060400000604000006040000060400000604000004040000d6
 
530
040000310200000c04000067040000000400000502000400000604000006040000060400
 
531
0006040000060400000604000005040000d6040000310201000b04000067040100050202
 
532
0005040000060400000604000006040000060400000604000006040000d6040000310202
 
533
000a04000067040000050202000504000006040000060400000604000006040000060400
 
534
0006040100d6040000010100000601000006010000060100000601000006010000060100
 
535
020200030100000404000067040000040202000504000006040000060400000604000006
 
536
040000060400000604000000040000d60400003302010009040000670400000404000200
 
537
000504000006040000060400000604000006040000060400000604000001040000d60400
 
538
003f04000067040000030400000604000006040000060400000604000006040000060400
 
539
000604000002040000d60400003f04000067040000020400000604000006040000060400
 
540
000604000006040000060400000604000003040000d60400000101000002010000020100
 
541
000201000002010000020100000201000002010000020100000201000002010000020100
 
542
000201000002010000020100000201000000040000670400020000000400000604000006
 
543
040000060400000604000006040000060400000604000004040000d60400003902000004
 
544
040000670202000604000006040000060400000604000006040000060400000604000005
 
545
040000d60400003802030002040000650203000604000006040000060400000604000006
 
546
040000060400000604000006040000d60400003a02020001040000640202040000060400
 
547
0006040000060400000604000006040000060400000604000006040100d6040000010100
 
548
000601000006010000060100000601000006010000060100000601000000020200000400
 
549
006402010000040000050400000604000006040000060400000604000006040000060400
 
550
000604000000040000d60400003c02010000040000670400000404000006040000060400
 
551
00060400000604000006040000060400000604000001040000b703ff0328009903c00200
 
552
03660099030100bd02020063030100990301006002010058020300640301009903010060
 
553
02030055020200660301009903010061020300be03010099030100630201004e0200006e
 
554
03010099030100b30202006d0301009903010069020200440203006e0301009903010069
 
555
0204004102020070030100990301006b020300b4030100990301006d0200003b02010077
 
556
0301009903010074020000310205007603010099030100730203002f0203007803010099
 
557
03010074020400030202001d020400800301009903010076020100040206000302020006
 
558
020500050205007f030100990301008002020004020500030205008b030100990301008b
 
559
0201009603010099030100ff002403010099030100ff0024030100990301003303040003
 
560
03020006030100150306002f0307000f0302001803000002030400030306000303070002
 
561
0300003603010099030100320301000203010003030100060301000f0300000503010002
 
562
0302002703000005030100020302000f0301001603010002030100020301000303010002
 
563
030200020301000203020002030100340301009903010031030100040301000203010018
 
564
03000005030100030301002703000005030100030301000f030100150301000203010004
 
565
030100020301000303010002030100030301000303010033030100990301003003010006
 
566
030100010301000003020003030000010303000203030000030400030301000303010003
 
567
030300020302000003000000030200000302000203030001030300000304000303010003
 
568
030100010305000003030002030100010302000103030000030500030300000203010006
 
569
030100010301000303010002030100030301000303010033030100990301003003010006
 
570
030100010306000003020000030000020301000003010001030100000301000503010002
 
571
030200020300000203010000030100010301000103010001030100010300000203030001
 
572
030000010301000503010002030100030301000103020001030100010301000103010001
 
573
030000020301000003010001030000020301000203010006030100010301000203020002
 
574
030100020301000503010032030100990301003003010006030100010301000103020001
 
575
030a00050301000503060002030800020301000103010001030100000309000003000001
 
576
030100050306000303010001030100030301000003010000030100010306000003010005
 
577
030100020301000603010001030600030306000503010032030100990301003003010006
 
578
030100010301000203010001030300040301000503010005030100000301000403010004
 
579
030100020301000103010001030100000301000503020002030100050301000203020002
 
580
030100010301000303010000030300020301000503010005030100020301000603010001
 
581
030100000301000503010002030200040301003203010099030100300301000603010001
 
582
030100020301000103030004030100030300000003010005030100010301000303010004
 
583
030100020301000103010001030100000301000603030000030100050301000303010002
 
584
030100010301000303010000030100000301000103010005030100050301000203010006
 
585
030100010301000103010004030100030301000403010032030100990301003103010004
 
586
030100020301000203010001030400020303000103010000030100000300000303010002
 
587
030100020302000203030001030100010301000103010000030200020301000203010000
 
588
030100000300000303010003030100020301000103010003030100000301000003020000
 
589
030200020300000003010005030100030301000403010002030100020301000303010003
 
590
030100040301003203010099030100320301000203010003030100010301000203010000
 
591
030400010304000103030003030100020302000203040000030600010305000103040000
 
592
030000020301000003030003030100020302000203010002030100010301000103010001
 
593
030200000304000103010005030100040301000203010003030100020302000203010002
 
594
030200040301003203010099030100330304000503030003030100010302000303020002
 
595
030200030303000203020002030200020302000003010001030200000302000103020001
 
596
030400010302000303060003030300020303000103030000030200010302000103030005
 
597
03010004030400030303000203020000030600050301003303010099030100460301002c
 
598
0301004f03000025030000340301009903010043030000010301002c0301004f03010023
 
599
0301003403010099030100430303002c03030050030000210300003603010099030100ff
 
600
002403010099030100ff002403010099030100ff002403010099030100ff002403010099
 
601
030100ff002403010099030100ff002403010099030100ff002403010099030100ff0024
 
602
03010099030100ff002403010099030100ff002403010099030100ff0024030100990301
 
603
00ff002403010099030100ff002403010099030100ff002403010099030100ff00240301
 
604
0099030100ff002403010099030100ff002403010099030100ff002403010099030100ff
 
605
002403010099030100ff002403010099030100ff002403010099030100ff002403010099
 
606
030100ff002403010099030100ff002403010099030100ff002403010099030100ff0024
 
607
0301009903ff0328009903ff032800ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
608
00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
609
00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
610
00ff00ff00ff007b020200ff00410202007802000001020100ff00420205007402000001
 
611
020100ff0043020900270200000002010001020200020203000102030001020300010203
 
612
0002020300040203000602000000020200010203000102060000020200ff0040020d0020
 
613
020a00010200000202030001020000000201000102000000020100010201000002010001
 
614
02030000020000020201000302060000020100010201000102010001020500ff001a0205
 
615
000502050005020500050214001c02010001020100010201000002090000020000000202
 
616
000002000000020100010201000002010002020100000206000402010001020400010201
 
617
00010201000102010001020100ff001a0205000502050005020500050218001802010001
 
618
020100010201000002010005020200020202000302030000020100020201000002010009
 
619
0201000202010001020300010201000102010001020100ff00400212001c020100010201
 
620
000102010000020100060203000102030000020000010201000002050001020100090201
 
621
00020201000002000001020100010201000102010001020100ff0040020d002102010001
 
622
020100010201000002020002020100020202000202030001020100000200000602020002
 
623
020000040201000202030001020100010201000002020001020100ff003f020900260201
 
624
00010201000102010001020400000200000202020002020f000102040005020100010201
 
625
00000206000002050001020100ff003e0205002a020b0001020200010204000002040000
 
626
02020000020100000207000102020006020400010202000002010001020a00ff003c0202
 
627
0054020100040200000b020100ff00ac0206000c020100ff00ad0204000c020300ff00ff
 
628
00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
 
629
00ff00ff00ff00ff00ff00a9
 
630
%%EndData
 
631
end
 
632
%%PageTrailer
 
633
%%Trailer
 
634
%%BoundingBox: 0 34 377 386
 
635
%%EOF