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

« back to all changes in this revision

Viewing changes to lib/appmon/doc/src/main_win.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: (./main_win.tmp.eps)
 
4
%%CreationDate: (Tue Jun 12 17:57:00 2001)
 
5
%%BoundingBox: 0 26 377 164
 
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 26 377 164
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 26
 
271
377.000000 138.000000
 
272
12
 
273
520 191
 
274
1
 
275
0
 
276
0
 
277
16
 
278
ffffff
 
279
000000
 
280
708090
 
281
b03060
 
282
d9d9d9
 
283
808080
 
284
00ff00
 
285
666666
 
286
999999
 
287
ececc5
 
288
000000
 
289
000000
 
290
000000
 
291
000000
 
292
000000
 
293
000000
 
294
03ff03ff03ff03ff03ff0305040003000400030004000300040003000400030004000300
 
295
040003000400030004000300040003000400030004000300040003000400030004000300
 
296
040003000400030004000300040003000400030004000300040003000400030004000300
 
297
040003000400030004000300040003000400030004000300040003000400030004000300
 
298
040003000400030004000300040003000400030004000300040003000400030004000300
 
299
040003000400030004000300040003000400030004000300040003000400030004000300
 
300
040003000400030004000300040003000400030004000300040003000400030004000300
 
301
040003000400030004000300040003000400030004000300040003000400030004000300
 
302
040003000400030004000300040003000400030004000300040003000400030004000300
 
303
040003000400030004000300040003000400030004000300040003000400030004000300
 
304
040003000400030004000300040003000400030004000300040003000400030004000300
 
305
040003000400030004000300040003000400030004000300040003000400030004000300
 
306
040003000400030004000300040003000400030004000300040003000400030004000300
 
307
040003000400030004000300040003000400030004000300040003000400030004000300
 
308
040003000400031b040c03e4040003000400030004000300040003000400030004000300
 
309
040003000400030004000300040003000400030004000300040003000400030004000300
 
310
040003000400030004000300040003000400030004000300040003000400030004000300
 
311
040003000400030004000300040003000400030004000300040003000400030004000300
 
312
040003000400030004000300040003000400030004000300040003000400030004000300
 
313
040003000400030004000300040003000400030004000300040003000400030004000300
 
314
040003000400030004000300040003000400030004000300040003000400030004000300
 
315
040003000400030004000300040003000400030004000300040003000400030004000300
 
316
040003000400030004000300040003000400030004000300040003000400030004000300
 
317
040003000400030004000300040003000400030004000300040003000400030004000300
 
318
040003000400030004000300040003000400030004000300040003000400030004000300
 
319
040003000400030004000300040003000400030004000300040003000400030004000300
 
320
040003000400030004000300040003000400030004000300040003000400030004000300
 
321
040003000400030004000300040003000400030004000300040003000400030004000300
 
322
040003000400030004000307040c03050400030a0400030a040103030405030104050301
 
323
040103040401030304030303040103020401030b0403031e0401032c0401030004010300
 
324
040103000401031104010305040403020401030404010305040103000401030904000300
 
325
040003000400030004000300040003000400030004000300040003000400030004000300
 
326
040003000400030004000300040003000400030004000300040003000400030004000300
 
327
040003000400030004000300040003000400030004000300040003000400030004000300
 
328
040003000400030004000300040003000400030004000300040003000400030004000300
 
329
040003000400030004000300040003000400030004000300040003000400030004000300
 
330
040003000400030004000300040003000400030004000300040003000400030004000300
 
331
040003000400030004000300040003000400030004000300040003000400030004000300
 
332
040003000400030004000300040003000400030004000300040003000400030004000300
 
333
040003000400030004000300040003000400030004000300040003000400030004000300
 
334
040003000400030004000300040003000400030004000300040003000400030004000300
 
335
040003000400030004000300040003000400030004000300040003000400030004000300
 
336
040003000400030004000300040003000400030004000300040003000400030004000300
 
337
040003000400030004000300040003000400030004000300040003000400030004000300
 
338
040003000400030004000300040003000400030004000300040003080400030204000302
 
339
04000302040003050400030a040003090403030204010302040103000401030204010300
 
340
04010304040103020401030104010302040203010401030a040103010401034c04010303
 
341
040103000401031104010303040103040400030804010308040103080400030004000300
 
342
040003000400030004000300040003000400030004000300040003000400030004000300
 
343
040003000400030004000300040003000400030004000300040003000400030004000300
 
344
040003000400030004000300040003000400030004000300040003000400030004000300
 
345
040003000400030004000300040003000400030004000300040003000400030004000300
 
346
040003000400030004000300040003000400030004000300040003000400030004000300
 
347
040003000400030004000300040003000400030004000300040003000400030004000300
 
348
040003000400030004000300040003000400030004000300040003000400030004000300
 
349
040003000400030004000300040003000400030004000300040003000400030004000300
 
350
040003000400030004000300040003000400030004000300040003000400030004000300
 
351
040003000400030004000300040003000400030004000300040003000400030004000300
 
352
040003000400030004000300040003000400030004000300040003000400030004000300
 
353
040003000400030004000300040003000400030004000300040003000400030004000300
 
354
040003000400030004000300040003000400030004000300040003000400030004000300
 
355
040003000400030004000300040003000400030004000300040003070400030204000302
 
356
040003020400030504000303040203030400030904000301040003020401030204010300
 
357
040103020401030004020302040203010401030304010301040203010401030104010305
 
358
040103030401030004010302040103010403030104010300040303020401030004010301
 
359
040303010401030104010301040103050403030104010300040103060401030004010300
 
360
040103000401030004010300040103020403030104010300040503020400030604000300
 
361
040103010401030004010300040103000403030004010309040003000400030004000300
 
362
040003000400030004000300040003000400030004000300040003000400030004000300
 
363
040003000400030004000300040003000400030004000300040003000400030004000300
 
364
040003000400030004000300040003000400030004000300040003000400030004000300
 
365
040003000400030004000300040003000400030004000300040003000400030004000300
 
366
040003000400030004000300040003000400030004000300040003000400030004000300
 
367
040003000400030004000300040003000400030004000300040003000400030004000300
 
368
040003000400030004000300040003000400030004000300040003000400030004000300
 
369
040003000400030004000300040003000400030004000300040003000400030004000300
 
370
040003000400030004000300040003000400030004000300040003000400030004000300
 
371
040003000400030004000300040003000400030004000300040003000400030004000300
 
372
040003000400030004000300040003000400030004000300040003000400030004000300
 
373
040003000400030004000300040003000400030004000300040003000400030004000300
 
374
040003000400030004000300040003000400030004000300040003000400030004000300
 
375
040003000400030004000300040003000400030804000302040003020400030204000305
 
376
040003020404030204000308040103010401030104010302040103000401030204010300
 
377
040203020402030104010303040103010401030004000300040103010401030504010303
 
378
040103000401030204010300040103010401030004060302040103000401030004010301
 
379
040103000401030104010301040103040401030104010300040203000401030404010300
 
380
040203000401030004010300040203000401030004010301040103000404030004010302
 
381
040003020401030004000300040003000401030004010300040203000406030004010308
 
382
040003000400030004000300040003000400030004000300040003000400030004000300
 
383
040003000400030004000300040003000400030004000300040003000400030004000300
 
384
040003000400030004000300040003000400030004000300040003000400030004000300
 
385
040003000400030004000300040003000400030004000300040003000400030004000300
 
386
040003000400030004000300040003000400030004000300040003000400030004000300
 
387
040003000400030004000300040003000400030004000300040003000400030004000300
 
388
040003000400030004000300040003000400030004000300040003000400030004000300
 
389
040003000400030004000300040003000400030004000300040003000400030004000300
 
390
040003000400030004000300040003000400030004000300040003000400030004000300
 
391
040003000400030004000300040003000400030004000300040003000400030004000300
 
392
040003000400030004000300040003000400030004000300040003000400030004000300
 
393
040003000400030004000300040003000400030004000300040003000400030004000300
 
394
040003000400030004000300040003000400030004000300040003000400030004000300
 
395
040003000400030004000300040003000400030004000300040003000400030004000307
 
396
040403020400030204000305040003010406030104000308040103010401030104050301
 
397
040503010403030004030301040103030401030104010300040003000401030904010303
 
398
040103010401030004010301040103010401030004020302040103000401030104010300
 
399
040103010401030104010300040103000401030504010301040103000401030104010304
 
400
040103010401030004010300040103000401030104010300040103010401030004020302
 
401
040103020400030104000301040003010400030004010300040103010401030004020301
 
402
040103000401030904000300040003000400030004000300040003000400030004000300
 
403
040003000400030004000300040003000400030004000300040003000400030004000300
 
404
040003000400030004000300040003000400030004000300040003000400030004000300
 
405
040003000400030004000300040003000400030004000300040003000400030004000300
 
406
040003000400030004000300040003000400030004000300040003000400030004000300
 
407
040003000400030004000300040003000400030004000300040003000400030004000300
 
408
040003000400030004000300040003000400030004000300040003000400030004000300
 
409
040003000400030004000300040003000400030004000300040003000400030004000300
 
410
040003000400030004000300040003000400030004000300040003000400030004000300
 
411
040003000400030004000300040003000400030004000300040003000400030004000300
 
412
040003000400030004000300040003000400030004000300040003000400030004000300
 
413
040003000400030004000300040003000400030004000300040003000400030004000300
 
414
040003000400030004000300040003000400030004000300040003000400030004000300
 
415
040003000400030004000300040003000400030004000300040003000400030004000300
 
416
040003080400030604000302040003050400030104060301040003080405030104010305
 
417
040103050401030004000300040003000401030104010303040103010401030104020309
 
418
040103030401030104010300040103010405030004010303040103000401030104010300
 
419
040503010401030004010300040103050401030104010300040103010401030404010301
 
420
040103000401030004010300040103010401030004050300040103030401030204000300
 
421
040003020400030104000300040103000401030104010300040103020401030004010308
 
422
040003000400030004000300040003000400030004000300040003000400030004000300
 
423
040003000400030004000300040003000400030004000300040003000400030004000300
 
424
040003000400030004000300040003000400030004000300040003000400030004000300
 
425
040003000400030004000300040003000400030004000300040003000400030004000300
 
426
040003000400030004000300040003000400030004000300040003000400030004000300
 
427
040003000400030004000300040003000400030004000300040003000400030004000300
 
428
040003000400030004000300040003000400030004000300040003000400030004000300
 
429
040003000400030004000300040003000400030004000300040003000400030004000300
 
430
040003000400030004000300040003000400030004000300040003000400030004000300
 
431
040003000400030004000300040003000400030004000300040003000400030004000300
 
432
040003000400030004000300040003000400030004000300040003000400030004000300
 
433
040003000400030004000300040003000400030004000300040003000400030004000300
 
434
040003000400030004000300040003000400030004000300040003000400030004000300
 
435
040003000400030004000300040003000400030004000300040003000400030004000307
 
436
040003060400030204000305040003010406030104000307040103030401030004010305
 
437
040103050401030004020300040103010401030304010301040103010402030904010303
 
438
040103020402030204010304040103040402030204010300040103050401030004010300
 
439
040103050401030104010300040103010401030404010301040103000401030004010300
 
440
040103010401030004010304040103030401030204000300040003010401030004000301
 
441
040103000401030104010300040103020401030004010309040003000400030004000300
 
442
040003000400030004000300040003000400030004000300040003000400030004000300
 
443
040003000400030004000300040003000400030004000300040003000400030004000300
 
444
040003000400030004000300040003000400030004000300040003000400030004000300
 
445
040003000400030004000300040003000400030004000300040003000400030004000300
 
446
040003000400030004000300040003000400030004000300040003000400030004000300
 
447
040003000400030004000300040003000400030004000300040003000400030004000300
 
448
040003000400030004000300040003000400030004000300040003000400030004000300
 
449
040003000400030004000300040003000400030004000300040003000400030004000300
 
450
040003000400030004000300040003000400030004000300040003000400030004000300
 
451
040003000400030004000300040003000400030004000300040003000400030004000300
 
452
040003000400030004000300040003000400030004000300040003000400030004000300
 
453
040003000400030004000300040003000400030004000300040003000400030004000300
 
454
040003000400030004000300040003000400030004000300040003000400030004000300
 
455
040003000400030004000300040003000400030804000306040003020400030504000302
 
456
040403020400030704010303040103000401030504010305040103010400030104010302
 
457
040103010401030204010302040103010401030604010301040103030402030204010301
 
458
040103000401030404020302040103000401030104010302040103010401030604010301
 
459
040103000401030104010304040103000402030004010300040103000402030004010300
 
460
040103010401030004010303040103000400030004000301040103000401030204010300
 
461
040103000402030004010302040103000401030804000300040003000400030004000300
 
462
040003000400030004000300040003000400030004000300040003000400030004000300
 
463
040003000400030004000300040003000400030004000300040003000400030004000300
 
464
040003000400030004000300040003000400030004000300040003000400030004000300
 
465
040003000400030004000300040003000400030004000300040003000400030004000300
 
466
040003000400030004000300040003000400030004000300040003000400030004000300
 
467
040003000400030004000300040003000400030004000300040003000400030004000300
 
468
040003000400030004000300040003000400030004000300040003000400030004000300
 
469
040003000400030004000300040003000400030004000300040003000400030004000300
 
470
040003000400030004000300040003000400030004000300040003000400030004000300
 
471
040003000400030004000300040003000400030004000300040003000400030004000300
 
472
040003000400030004000300040003000400030004000300040003000400030004000300
 
473
040003000400030004000300040003000400030004000300040003000400030004000300
 
474
040003000400030004000300040003000400030004000300040003000400030004000300
 
475
040003000400030004000300040003000400030704080302040003050400030304020303
 
476
040003070401030304010300040103050401030504010301040003010401030304030303
 
477
040103020401030104010307040303050400030404030301040103050400030304010301
 
478
040303030401030104010307040303010401030104010305040103000401030004010300
 
479
040103000401030004010302040303010401030404010302040003080401030104010300
 
480
040103000401030204010300040103090400030004000300040003000400030004000300
 
481
040003000400030004000300040003000400030004000300040003000400030004000300
 
482
040003000400030004000300040003000400030004000300040003000400030004000300
 
483
040003000400030004000300040003000400030004000300040003000400030004000300
 
484
040003000400030004000300040003000400030004000300040003000400030004000300
 
485
040003000400030004000300040003000400030004000300040003000400030004000300
 
486
040003000400030004000300040003000400030004000300040003000400030004000300
 
487
040003000400030004000300040003000400030004000300040003000400030004000300
 
488
040003000400030004000300040003000400030004000300040003000400030004000300
 
489
040003000400030004000300040003000400030004000300040003000400030004000300
 
490
040003000400030004000300040003000400030004000300040003000400030004000300
 
491
040003000400030004000300040003000400030004000300040003000400030004000300
 
492
040003000400030004000300040003000400030004000300040003000400030004000300
 
493
040003000400030004000300040003000400030004000300040003000400030004000300
 
494
0400030004000300040003080400030a040003050400030a040003be0404032004000300
 
495
040003000400030004000300040003000400030004000300040003000400030004000300
 
496
040003000400030004000300040003000400030004000300040003000400030004000300
 
497
040003000400030004000300040003000400030004000300040003000400030004000300
 
498
040003000400030004000300040003000400030004000300040003000400030004000300
 
499
040003000400030004000300040003000400030004000300040003000400030004000300
 
500
040003000400030004000300040003000400030004000300040003000400030004000300
 
501
040003000400030004000300040003000400030004000300040003000400030004000300
 
502
040003000400030004000300040003000400030004000300040003000400030004000300
 
503
040003000400030004000300040003000400030004000300040003000400030004000300
 
504
040003000400030004000300040003000400030004000300040003000400030004000300
 
505
040003000400030004000300040003000400030004000300040003000400030004000300
 
506
040003000400030004000300040003000400030004000300040003000400030004000300
 
507
040003000400030004000300040003000400030004000300040003000400030004000300
 
508
04000300040003000400030004000300040003000400030004000300040003070400030a
 
509
040003050400030a040003e5040003000400030004000300040003000400030004000300
 
510
040003000400030004000300040003000400030004000300040003000400030004000300
 
511
040003000400030004000300040003000400030004000300040003000400030004000300
 
512
040003000400030004000300040003000400030004000300040003000400030004000300
 
513
040003000400030004000300040003000400030004000300040003000400030004000300
 
514
040003000400030004000300040003000400030004000300040003000400030004000300
 
515
040003000400030004000300040003000400030004000300040003000400030004000300
 
516
040003000400030004000300040003000400030004000300040003000400030004000300
 
517
040003000400030004000300040003000400030004000300040003000400030004000300
 
518
040003000400030004000300040003000400030004000300040003000400030004000300
 
519
040003000400030004000300040003000400030004000300040003000400030004000300
 
520
040003000400030004000300040003000400030004000300040003000400030004000300
 
521
040003000400030004000300040003000400030004000300040003000400030004000300
 
522
040003000400030004000300040003000400030004000300040003000400030004000300
 
523
04000300040003080400030a04000305040c03e404000300040003000400030004000300
 
524
040003000400030004000300040003000400030004000300040003000400030004000300
 
525
040003000400030004000300040003000400030004000300040003000400030004000300
 
526
040003000400030004000300040003000400030004000300040003000400030004000300
 
527
040003000400030004000300040003000400030004000300040003000400030004000300
 
528
040003000400030004000300040003000400030004000300040003000400030004000300
 
529
040003000400030004000300040003000400030004000300040003000400030004000300
 
530
040003000400030004000300040003000400030004000300040003000400030004000300
 
531
040003000400030004000300040003000400030004000300040003000400030004000300
 
532
040003000400030004000300040003000400030004000300040003000400030004000300
 
533
040003000400030004000300040003000400030004000300040003000400030004000300
 
534
040003000400030004000300040003000400030004000300040003000400030004000300
 
535
040003000400030004000300040003000400030004000300040003000400030004000300
 
536
040003000400030004000300040003000400030004000300040003000400030004000300
 
537
0400030004000300040003000400030004000307040c03f8040003000400030004000300
 
538
040003000400030004000300040003000400030004000300040003000400030004000300
 
539
040003000400030004000300040003000400030004000300040003000400030004000300
 
540
040003000400030004000300040003000400030004000300040003000400030004000300
 
541
040003000400030004000300040003000400030004000300040003000400030004000300
 
542
040003000400030004000300040003000400030004000300040003000400030004000300
 
543
040003000400030004000300040003000400030004000300040003000400030004000300
 
544
040003000400030004000300040003000400030004000300040003000400030004000300
 
545
040003000400030004000300040003000400030004000300040003000400030004000300
 
546
040003000400030004000300040003000400030004000300040003000400030004000300
 
547
040003000400030004000300040003000400030004000300040003000400030004000300
 
548
040003000400030004000300040003000400030004000300040003000400030004000300
 
549
040003000400030004000300040003000400030004000300040003000400030004000300
 
550
040003000400030004000300040003000400030004000300040003000400030004000300
 
551
04000300040003000400030004000300040003ff03ff03ff03ff032802ff02ff02ff02ff
 
552
020f00ff00ff00ff00ff000e0500000104ff04ff04030501000104ff04ff040305010001
 
553
04ff04ff04030501000104ff04ff04030501000104ff04ff040305010001040401040404
 
554
01000403010204130100040c01000406010004200102040b010004060100041f01000402
 
555
0100040c010004ff043601000402010004090102040c0501000104040100040f01000413
 
556
0100040c01000427010004020100040a01000427010104010100040c010004ff04360100
 
557
04020100040b0100040c0501000104040100040601020405010004030102040b01000400
 
558
010004030102040201040402010204030102040201000400010104030102040a01000402
 
559
01000401010004000101040201040402010204030102040201000400010104030102040a
 
560
010104010100040201020403010104000100040201020403010204ff0429010004020100
 
561
040201020405010004020100040001010405050100010404010004080100040501000402
 
562
010004020100040a01000400010004020100040201000403010004060100040201000402
 
563
010004010101040101000401010004020100040901000402010004010101040101000403
 
564
010004060100040201000402010004010101040101000401010004020100040901000400
 
565
010004000100040101000402010004010100040101010401010004020100040101000402
 
566
010004ff0428010004020100040101000402010004040100040201010401010004040501
 
567
00010404010304050100040501000402010004020100040a010004000100040201000407
 
568
0100040601000402010004020100040101000402010004010100040d0100040201000401
 
569
01000402010004030100040601000402010004020100040101000402010004010100040d
 
570
010004000100040001000401010004020100040101000402010004010100040201000401
 
571
010004ff042c010404010100040201000404010004020100040201000404050100010404
 
572
010004080100040501000402010404090100040201000401010004070100040601000402
 
573
010004020100040101000402010004020102040a01000402010004010100040201000403
 
574
0100040601000402010004020100040101000402010004020102040a0100040101010401
 
575
0100040201000401010004020100040101040402010204ff042901000402010004010104
 
576
04040100040201000402010004040501000104040100040801000405010004020100040d
 
577
010404010100040701000406010004020100040201000401010004020100040501000409
 
578
010004020100040101000402010004030100040601000402010004020100040101000402
 
579
010004050100040901000401010104010100040201000401010004020100040101000409
 
580
010004ff0428010004020100040101000408010004020100040201000404050100010404
 
581
010004080100040501000402010004020100040901000402010004010100040201000403
 
582
010004060100040201000402010004010100040201000401010004020100040901000402
 
583
010004010101040101000403010004060100040201000402010004010100040201000401
 
584
010004020100040901000402010004010100040201000401010004010101040101000402
 
585
0100040101000402010004ff042801000402010004010100040201000404010004020101
 
586
0401010004040501000104040100040801000405010004030102040a0100040201000402
 
587
0102040501010404010004030102040201000402010004020102040b0102040201000400
 
588
0101040501010404010004030102040201000402010004020102040a0100040201000402
 
589
01020403010104000100040201020403010204ff04290100040201000402010204050100
 
590
04020100040001010405050100010468010004ff048f01000408050100010468010004ff
 
591
048f01000408050100010468010004ff048f010004080501000104ff04ff040305010001
 
592
04ff04ff04030501000104ff04ff04030501000105ff05ff0505000005ff05ff050604ff
 
593
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
 
594
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
 
595
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04cf01ff01ff
 
596
010704ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
 
597
04ff044c01150400010104010100041a017204ff045d0100081201010400010104000101
 
598
041a017204ff045d01000812010404010100041a017204ff045d01000812010104000101
 
599
04010100041a017204ff045d0100081201010400010104010100041a017204ff045d0114
 
600
04050100041a011909010100090101000901010009010111090101050904010209010104
 
601
09010105090101000901011704ff045d0100081201000421011909010103090101000901
 
602
0111090101030901010409000108090101080901011704ff045d01000812010004210116
 
603
090101000901010009010100090101000901010009010102090301010901010009050102
 
604
090001060900010009010101090101000901010009010100090301000901011704ff045d
 
605
010008120100042101150901010009020100090101000901010009020100090101000901
 
606
010109010100090401000901010209000102090101000900010009000100090101000901
 
607
010009020100090601000901011704ff045d010008120100042101150901010109010100
 
608
090101000901010009010101090101000901010109010100090201020901010209000101
 
609
090001010900010109000100090101000901010109010100090201010901010009010117
 
610
04ff045d0114042101150901010109010100090101000901010009010101090101000905
 
611
010009010103090101020900010009000102090001010900010009010100090101010901
 
612
010009010102090101000901011704ff045d010008120100042101150901010109010100
 
613
090101000901010009010101090101000901010409010103090101020900010009000101
 
614
090101000900010109010100090101010901010009010102090101000901011704ff045d
 
615
010008120100042101150901010009020100090101000901010009020100090101000901
 
616
010109010100090101030901010009000100090001010901010009010102090101000901
 
617
01000902010009010102090101000901011704ff045d0100081201000421011609010100
 
618
090101000901010009010100090101000901010209030101090101040901010209000108
 
619
09010101090101000901010009010102090101000901011704ff045d0100081201000421
 
620
013d0904012f04ff045d01140421017204ff045d0100081201000421017204ff045d0100
 
621
081201000421017204ff045d0100081201000421017204ff045d01000812010004210172
 
622
04ff045d01140421017204ff045d01000812010004ff04f201000812010004ff04f20100
 
623
0812010004ff04f201000812010004ff04f2011404ff04f201000812010004ff04f20100
 
624
0812010004ff04f201000812010004ff04f201000812010004ff04f201140444010004ff
 
625
04ac0100081201000444010004ff04ac0100081201000444010004ff04ac010008120100
 
626
0444010004ff04ac0100081201000444010004ff04ac01140444010004ff04ac01000812
 
627
01000444010004ff04ac0100081201000444010004ff04ac0100081201000444010004ff
 
628
04ac0100081201000444010004ff04ac01140444010004ff04ac01000812010004440100
 
629
04ff04ac0100081201000444010004ff04ac0100081201000444010004ff04ac01000812
 
630
01000444010004ff04ac01140444010004ff04ac0100081201000444010004ff04ac0100
 
631
081201000444010004ff04ac0100081201000444010004ff04ac01000812010004440100
 
632
04ff04ac0114044401a004ff040c01000812010004440100044e0100044e010004ff040c
 
633
01000812010004440100044e0100044e010004ff040c01000812010004440100044e0100
 
634
044e010004ff040c01000812010004440100044e0100044e010004ff040c011404440100
 
635
044e0100044e010004ff040c01000812010004440100044e0100044e010004ff040c0100
 
636
0812010004440100044e0100044e010004ff040c01000812010004440100044e0100044e
 
637
010004ff040c01000812010004440100044e0100044e010004ff040c011404440100044e
 
638
0100044e010004ff040c01000812010004440100044e0100044e010004ff040c01000812
 
639
010004440100044e0100044e010004ff040c01000812010004440100044e0100044e0100
 
640
04ff040c01000812010004440100044e0100044e010004ff040c011404440100044e0100
 
641
044e010004ff040c01000812010004440100044e0100044e010004ff040c010008120100
 
642
04440100044e0100044e010004ff040c01000812010004440100044e0100044e010004ff
 
643
040c01000812010004210045040900450409004504ea0114042000450701040700450701
 
644
04070045070104e901000812010004200001044307010407000104430701040700010443
 
645
070104e901000812010004200001044307010407000104430701040700010443070104e9
 
646
01000812010004200001044307010407000104430701040700010443070104e901000812
 
647
010004200001044307010407000104430701040700010443070104e9011404200001040f
 
648
0101041e01010410070104070001042a010104160701040700010443070104e901000612
 
649
0101041f0001040f0101041e01010410070104070001042a010104160701040700010443
 
650
070104e90100061201010403010204180001040f01010401010104010103040101010400
 
651
010304000101040201030401010104100701040700010416010304020103040201030401
 
652
01010416070104070001040d010004000102040001020401010104020101040101030401
 
653
0101040001010401010104000101040f070104e901000612010104020101040001010417
 
654
0001040f0101040001010401010104010101040001070400010104000101040101010400
 
655
010104100701040700010415010104010101040001010401010104000101040101010400
 
656
01010416070104070001040d010104010101040101010400010104020101040001010401
 
657
010104000102040001010400010204000101040e070104e9010006120101040201010400
 
658
010104170001040f01030402010104010101040001020401010104010101040001010401
 
659
010104000101041007010407000104150102040701010400010204030101041607010407
 
660
0001040d0101040101010401010104010101040001010405010104000101040101010400
 
661
010104010101040e070104e901170401010204180001040f010304020105040001010402
 
662
010104010101040001050400010104100701040700010417010204020104040201020401
 
663
01010416070104070001040d010104010101040101010401010104000101040201040400
 
664
0101040101010400010104010101040e070104e901010403010204010101040201030400
 
665
01020402010004190001040f010104000101040101010404010104020101040101010400
 
666
010104040101041007010407000104180102040001010401010104030102040001010416
 
667
070104070001040d01010401010104010101040201020402010104010101040001010401
 
668
01010400010104010101040e070104e90101040201010400010104000102040001010400
 
669
010104210001040f01010401010104000101040101010400010104020101040101010400
 
670
010104010101040001010410070104070001041501010401010104000101040101010400
 
671
010104010101040001010416070104070001040d01010401010104010101040201020402
 
672
01010401010104000102040001010400010204000101040e070104e90101040201010400
 
673
010104000102040001010400010104210001040f01010402010104000103040101010402
 
674
010104010101040101030401010104100701040700010416010304020102040001010400
 
675
0103040101010416070104070001040d0101040101010401010104030101040301020400
 
676
0103040001010401010104000101040f070104e901030401010204010102040101030421
 
677
000104430701040700010443070104070001041b0100040a0101040401010412070104ea
 
678
01020402010004030100040301000423000104430701040700010443070104070001041a
 
679
0101040a0101040401010412070104ff041f000104430701040700010443070104070001
 
680
04190101040b0101040401010412070104ff041f00010443070104070001044307010407
 
681
00010443070104ff041f0001044307010407000104430701040700010443070104ff041f
 
682
0000074604070000074604070000074604ff04200746040807460408074604ff04ff04ff
 
683
04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff042c01ff
 
684
01ff010704ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff04ff
 
685
04ff04ff0447
 
686
%%EndData
 
687
end
 
688
%%PageTrailer
 
689
%%Trailer
 
690
%%BoundingBox: 0 26 377 164
 
691
%%EOF