aboutsummaryrefslogblamecommitdiffstats
path: root/lib/appmon/doc/src/app_win.ps
blob: 73d4cad2788488f16d212aaf0a05c34ed35692a8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680







































































































































































































































































































































































































































































































































































































































































































                                                                        
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (./app_win.tmp.eps)
%%CreationDate: (Tue Jun 12 17:59:02 2001)
%%BoundingBox: 0 46 300 384
%%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 46 300 384
userdict begin
%%BeginData:
DisplayImage
0 46
300.000000 338.000000
12
382 431
1
0
0
16
ffffff
000000
e8e3dc
708090
b03060
d9d9d9
b3b3b3
7f7f7f
a3a3a3
828282
000000
000000
000000
000000
000000
000000
04ff04ff04ff04de05000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500041a050c04d1050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000408
050c04050500040a0500040a050104030505040105050401050104040501040305030403
050104020501044a05010400050104000501040005010411050104050504040205010404
050104050501040005010409050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000407050004020500040205000402
050004050500040a05000409050304020501040205010400050104020501040005010404
050104020501040105010402050204010501044a05010403050104000501041105010403
050104040500040805010408050104080500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004080500040205000402
050004020500040505000403050204030500040905000401050004020501040205010400
050104020501040005020402050204010501040305010401050204010501040105010404
050004000502040005020401050104020501040105030401050104000501040105010400
050104060503040105010400050104060501040005010400050104000501040005010400
050104020503040105010400050504020500040605000400050104010501040005010400
050104000503040005010409050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000407050004020500040205000402
050004050500040205040402050004080501040105010401050104020501040005010402
050104000502040205020401050104030501040105010400050004000501040105010404
050104010501040105010400050104020501040005010401050104000502040005010400
050204000501040405010401050104000502040005010404050104000502040005010400
050104000502040005010400050104010501040005040400050104020500040205010400
050004000500040005010400050104000502040005060400050104080500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004080504040205000402050004050500040105060401050004080501040105010401
050504010505040105030400050304010501040305010401050104000500040005010408
050104010501040105010401050104000501040505010400050104010501040005010401
050104040501040105010400050104010501040405010401050104000501040005010400
050104010501040005010401050104000502040205010402050004010500040105000401
050004000501040005010401050104000502040105010400050104090500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004070500040605000402050004050500040105060401050004080505040105010405
050104050501040005000400050004000501040105010403050104010501040105020408
050104010501040105010401050104000501040205040400050104010501040005010401
050104040501040105010400050104010501040405010401050104000501040005010400
050104010501040005050400050104030501040205000400050004020500040105000400
050104000501040105010400050104020501040005010408050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000408
050004060500040205000405050004010506040105000407050104030501040005010405
050104050501040005020400050104010501040305010401050104010502040805010401
050104010501040205020402050104010501040005010401050104000501040105010404
050104010501040005010401050104040501040105010400050104000501040005010401
050104000501040405010403050104020500040005000401050104000500040105010400
050104010501040005010402050104000501040905000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040705000406
050004020500040505000402050404020500040705010403050104000501040505010405
050104010500040105010402050104010501040205010402050104010501040405010401
050104010501040205020402050104010501040005020400050104000502040005010404
050104010501040005010401050104040501040005020400050104000501040005020400
050104000501040105010400050104030501040005000400050004010501040005010402
050104000501040005020400050104020501040005010408050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000408
050804020500040505000403050204030500040705010403050104000501040505010405
050104010500040105010403050304030501040205010401050104040501040105010401
050104030501040305020400050304000501040105010400050104060503040105010401
050104050501040005010400050104000501040005010400050104020503040105010404
050104020500040805010401050104000501040005010402050104000501040905000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
05000400050004070500040a050004050500040a050004530500040a0501040405010442
050404200500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004080500040a050004050500040a050004520501040a
050104040501046905000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
05000400050004000500040005000400050004070500040a05000405050c04510501040b
050104040501046805000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
0500040005000400050004000500040005000408050c04e5050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
050004000500040005000400050004000500040005000400050004000500040005000400
0500040005000400050004000500040005000400050004000500040005000400050004ff
04ff04ff041303ff03ff03fb00ff00ff00fa0900000105ff05790901000105ff05790901
000105ff05790901000105ff05790901000105ff05790901000105040104050401000503
010205120102050b01000506010005ff051801000502010005090102050c090100010504
0100050f01000511010005020100050a010005ff0520010005020100050b0100050c0901
000105040100050601020505010005030102050a01000502010005010100050001010502
0104050201020503010205020100050001010503010205ff050301000502010005020102
050501000502010005000101050509010001050401000508010005050100050201000502
010005090100050201000501010105010100050301000506010005020100050201000501
010105010100050101000502010005ff0502010005020100050101000502010005040100
050201010501010005040901000105040103050501000505010005020100050201000509
010005020100050101000502010005030100050601000502010005020100050101000502
01000501010005ff05060104050101000502010005040100050201000502010005040901
000105040100050801000505010005020104050901000502010005010100050201000503
010005060100050201000502010005010100050201000502010205ff0503010005020100
050101040504010005020100050201000504090100010504010005080100050501000502
0100050d0100050201000501010005020100050301000506010005020100050201000501
0100050201000505010005ff050201000502010005010100050801000502010005020100
050409010001050401000508010005050100050201000502010005090100050201000501
010105010100050301000506010005020100050201000501010005020100050101000502
010005ff0502010005020100050101000502010005040100050201010501010005040901
000105040100050801000505010005030102050b01020502010005000101050501010504
01000503010205020100050201000502010205ff05030100050201000502010205050100
0502010005000101050509010001052f010005ff053e0100050809010001052f010005ff
053e0100050809010001052f010005ff053e010005080901000105ff05790901000105ff
05790901000105ff05790901000109ff097b000009ff097c02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02730800000008000000080000000800
000008000000080000000800000008000000080000000800000008000000080000000800
000008000000080000000800000008000000080000000800000008000000080000000800
000008000000080000000800000008000000080000000800000008000000080000000800
000008000000080000000800000008000000020900450209004502090045024700000800
000008000000080000000800000008000000080000000800000008000000080000000800
000008000000080000000800000008000000080000000800000008000000080000000800
000008000000080000000800000008000000080000000800000008000000080000000800
000008000000080000000800000008000000080000000800000008000209004409000209
004409000209004409000247080000000842010002090001054109010209000105410901
020900010541090102470000084201000800020900010541090102090001054109010209
000105410901024708000000084201000209000105410901020900010541090102090001
054109010247000008420100080002090001054109010209000105410901020900010541
090102470800000008120104080b0101081c010002090001051301020514010005140901
02090001050e0104052d0901020900010512010005020100050401000503010205030102
051509010247000008150100080c0100081d010008000209000105120100050201000513
0100051409010209000105100100052f0901020900010512010005010100050c01000505
010005150901024708000000081401000803010008000101080401000804010208160100
020900010512010005060102050201000500010105030101050001000514090102090001
051001000503010005000101050301020503010205030102051209010209000105120100
050001000504010205050100050501000515090102470000081501000803010108010100
080101040801010008020100081401000800020900010513010005040100050201000501
010105010100050101000501010105140901020900010510010005030101050101000501
010005020100050101000502010005010100050201000511090102090001051201010507
010005050100050501000515090102470800000008140100080301000802010008030100
080301000802010008150100020900010514010105020100050201000501010005020100
050101000502010005140901020900010510010005030100050901000501010005050100
050201000511090102090001051201000500010005060100050501000505010005150901
024700000815010008030100080201000803010008030100080201000814010008000209
000105160100050101040501010005020100050101000502010005140901020900010510
010005030100050601030501010005050104051109010209000105120100050101000505
010005050100050501000515090102470800000008140100080301000802010008030100
080301000802010008150100020900010512010005020100050101000505010005020100
050101000502010005140901020900010510010005030100050501000502010005010100
050501000515090102090001051201000501010005050100050501000505010005150901
024700000815010008030100080201000803010008030100080201000814010008000209
000105120100050201000501010005020100050101000502010005010100050101010514
090102090001051001000503010005050100050201000501010005020100050101000502
010005110901020900010512010005020100050401000505010005050100051509010247
080000000812010408010100080201000803010008040102081601000209000105130102
050301020502010005020100050201010500010005140901020900010510010005030100
050601030502010205030102051209010209000105120100050201000504010005050100
050501000515090102470000084201000800020900010541090102090001054109010209
000105410901024708000000084201000209000105410901020900010541090102090001
054109010247000008420100080002090001054109010209000105410901020900010541
090102470800000008420100020900010541090102090001054109010209000105410901
024700000842010008000209000105410901020900010541090102090001054109010247
080000000842010002090001054109010209000105410901020900010541090102470000
084201000800020900010541090102090001054109010209000105410901024708000000
084201000209000105410901020900010541090102090001054109010247000008000100
080001000800010008000100080001000800010008000100080001000800010008000100
080001000800010008000100080001000800010008000100080001000800010008000100
080001000800010008000100080001000800010008000100080001000800010008000100
080001000800010008000100080001000800010008000100080002090001094302090001
094302090001094302470800010008000100080001000800010008000100080001000800
010008000100080001000800010008000100080001000800010008000100080001000800
010008000100080001000800010008000100080001000800010008000100080001000800
010008000100080001000800010008000100080001000800010008000100080001000800
01000800010002090000094402090000094402090000094402ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff022901ff017d05ff05ff05ff05ff05ff05ff
05ff05ff05ff05ff05ff05ff05ff056d02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02d5014902ff023301000647010002ff023301000647010002ff02330100
0647010002ff023301000647010002ff02330100060e0103060701010603010306020103
060601030610010002ff02330100060d0101060101010604010306020101060101010600
0101060101010604010106010101060f010002ff02330100060d01010601010106060101
060201010601010106000101060101010604010106010101060f010002ff02330100060a
010106000101060101010606010106020101060101010600010106010101060401010601
010106010101060b010002ff023301000608010206010101060101010606010106020101
0601010106000101060101010604010106010101060201020609010002ff023301000607
010106030101060101010606010106020101060101010600010106010101060401010601
0101060401010608010002ff023301000608010206010101060101010606010106020101
0601010106000101060101010604010106010101060201020609010002ff02330100060a
010106000101060101010601010106020101060201010601010106000101060101010601
0101060001010601010106010101060b010002ff02330100060e01030602010106020101
060301030602010306020101060101030610010002ff023301000647010002ff02330100
0647010002ff023301000647010002ff023301000647010002ff023301000647010002ff
023301000647010002ff023301220701012402ff0256070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff027b070102ff0258014902ff023301000647010002ff023301000647010002ff0233
01000647010002ff023301000647010002ff02330100060e010306070101060301030603
0101060701030610010002ff02330100060d010106010101060401030602010106010101
060001030606010106010101060f010002ff02330100060d010106010101060601010602
010106010101060201010606010106010101060f010002ff02330100060a010106000101
0601010106060101060201010601010106020101060601010601010106010101060b0100
02ff02330100060801020601010106010101060601010602010106010101060201010606
010106010101060201020609010002ff0233010006070101060301010601010106060101
0602010106010101060201010606010106010101060401010608010002ff023301000608
010206010101060101010606010106020101060101010602010106060101060101010602
01020609010002ff02330100060a01010600010106010101060101010602010106020101
060101010602010106030101060001010601010106010101060b010002ff02330100060e
01030602010106020101060301030603010106030101060101030610010002ff02330100
0647010002ff023301000647010002ff023301000647010002ff023301000647010002ff
023301000647010002ff023301000647010002ff023301220701012402ff0256070102ff
027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff
027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff
027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff
027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff
027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff
027b070102ff027b070102ff027b070102ff0258014902ff023301000647010002ff0233
01000647010002ff023301000647010002ff023301000647010002ff0233010006470100
02ff023301000647010002ff023301000600010006000102060001020601010106020101
060101030601010106000101060101010600010106090103060101010601010106000101
060001010604010002ff0233010006000101060101010601010106000101060201010600
010106010101060001020600010106000102060001010607010106010101060001010601
010106000102060001010603010002ff0233010006000101060101010601010106010101
060001010605010106000101060101010600010106010101060701020603010106010101
06000101060101010603010002ff02330100060001010601010106010101060101010600
010106020104060001010601010106000101060101010609010206010101060101010600
0101060101010603010002ff023301000600010106010101060101010602010206020101
0601010106000101060101010600010106010101060a0102060001010601010106000101
060101010603010002ff0233010006000101060101010601010106020102060201010601
010106000102060001010600010206000101060701010601010106000101060001020600
0102060001010603010002ff023301000600010106010101060101010603010106030102
060001030600010106010101060001010609010306020101060001010600010106000101
0604010002ff02330100060e0100060a010106040101061901010607010002ff02330100
060d0101060a010106040101061901010607010002ff02330100060c0101060b01010604
010106040106060d01010607010002ff023301000647010002ff023301000647010002ff
023301000647010002ff023301220701012402ff0256070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b0701
02ff0254074802ff0233074902ff023307010245070102ff023307010245070102ff0233
07010245070102ff023307010245070102ff023307010245070102ff0233070102450701
02ff023307010245070102ff023307010245070102ff023307010245070102ff02330701
0245070102ff023307010245070102ff023307010245070102ff023307010245070102ff
023307010245070102ff023307010245070102ff023307010245070102ff023307010245
070102ff021e012d0212013b02ff02000100062b0100021201000639010002ff02000100
062b0100021201000639010002ff02000100062b0100021201000639010002ff02000100
062b0100021201000639010002ff02000100062b010002120100063201010604010002ff
02000100062b010002120100063201010604010002ff0200010006000100060001020600
010206010101060201010601010306010101060101010600010106000101060401000212
010006010100060001020600010206010101060201010601010306010101060201010601
01030601010106000101060101030603010002ff02000100060001010601010106010101
060001010602010106000101060101010600010106010101060001020600010106030100
021201000601010106010101060101010600010106020101060001010601010106000101
0602010106000101060101010600010206000101060101010604010002ff020001000600
010106010101060101010601010106000101060101020603010106010101060001010601
010106030100021201000601010106010101060101010601010106000101060101010601
0101060101010600010106010101060101010600010106010101060101010604010002ff
020001000600010106010101060101010601010106000101060301020601010106010101
060001010601010106030100021201000601010106010101060101010601010106000101
060101050601010106000101060101050600010106010101060101010604010002ff0200
010006000101060101010601010106020102060501020600010106010101060001010601
010106030100021201000601010106010101060101010602010206020101060601020602
01010604010106010101060101010604010002ff02000100060001010601010106010101
060201020602010106010101060001010600010206000102060001010603010002120100
060101010601010106010101060201020602010106010101060201020602010106010101
060001010601010106010101060001000602010002ff0200010006000101060101010601
010106030101060301030602010106000101060001010600010106040100021201000601
010106010101060101010603010106030103060401000604010306010101060101010602
01010603010002ff02000100060e0100061101010607010002120100060f010006280100
02ff02000100060d0101061101010607010002120100060e01010628010002ff02000100
060c0101061201010607010002120100060d01010629010002ff02000100062b01000212
01000639010002ff02000100062b0100021201000639010002ff02000100062b01000212
01000639010002ff02000114070101160212013b02ff0215070102ff027b070102ff027b
070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b
070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b070102ff027b
070102ff025c074b02ff0230074c02ff023007010248070102ff023007010248070102ff
023007010248070102ff023007010248070102ff023007010248070102ff023007010248
070102ff023007010248070102ff023007010248070102ff023007010248070102ff0230
07010248070102ff023007010248070102ff023007010248070102ff0230070102480701
02ff023007010248070102ff023007010248070102ff023007010248070102ff02300701
0248070102ff021001420212012d02f901000640010002120100062b010002f901000640
010002120100062b010002f901000640010002120100062b010002f90100064001000212
0100062b010002f901000640010002120100061401020613010002f90100064001000212
0100061301010615010002f9010006020100060001020600010206010101060201010601
010306020103060101010600010306020101060101030601010106000101060301000212
010106000102060001020601010106020101060001030601010306010100060001020600
01020603010002f901000602010106010101060101010600010106020101060001010601
010106000101060101010600010606020101060001010601010106000104060301000212
010206010101060101010600010106020101060101010601010106010101060001010601
0101060101010602010002f9010006020101060101010601010106010101060001010601
010206030101060101010600010206020101060001010601010106010101060001020605
010002120102060101010601010106010101060001010602010106010102060301010601
0101060101010602010002f9010006020101060101010601010106010101060001010603
010206010105060001010603010106000101060101050600010106060100021201020601
010106010101060101010600010106020101060301020601010106010101060101010602
010002f90100060201010601010106010101060201020605010206000101060401010604
010206020101060401010606010002120102060101010601010106020102060301010604
01020600010106010101060101010602010002f901000602010106010101060101010602
010206020101060101010600010106010101060001010604010206020101060101010600
010106060100021201020601010106010101060201020603010106010101060101010600
010106010101060101010602010002f90100060201010601010106010101060301010603
010306020103060101010605010006040103060101010606010002120102060101010601
01010603010106030101060201030601010106010101060101010602010002f901000610
0100062e010002120100060d0100061c010002f90100060f0101062e010002120100060c
0101061c010002f90100060e0101062f010002120100060b0101061d010002f901000640
010002120100062b010002f901000640010002120100062b010002f90100064001000212
0100062b010002f901420212012d02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff02ff
02ff0236
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 46 300 384
%%EOF