blob: e2dc168b00a647c8b5d6368ea773ae1adff26ea8 (
plain)
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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
|
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (ascii.eps)
%%CreationDate: (Tue Nov 28 23:50:38 2000)
%%BoundingBox: 0 0 271 144
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments
%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults
%%BeginProlog
%
% Display a color image. The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def
/DirectClassPacket
{
%
% Get a DirectClass packet.
%
% Parameters:
% red.
% green.
% blue.
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/DirectClassImage
{
%
% Display a DirectClass image.
%
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ DirectClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayDirectClassPacket } image
} ifelse
} bind def
/GrayDirectClassPacket
{
%
% Get a DirectClass packet; convert to grayscale.
%
% Parameters:
% red
% green
% blue
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/GrayPseudoClassPacket
{
%
% Get a PseudoClass packet; convert to grayscale.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassPacket
{
%
% Get a PseudoClass packet.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassImage
{
%
% Display a PseudoClass image.
%
% Parameters:
% class: 0-PseudoClass or 1-Grayscale.
%
currentfile buffer readline pop
token pop /class exch def pop
class 0 gt
{
currentfile buffer readline pop
token pop /depth exch def pop
/grays columns 8 add depth sub depth mul 8 idiv string def
columns rows depth
[
columns 0 0
rows neg 0 rows
]
{ currentfile grays readhexstring pop } image
}
{
%
% Parameters:
% colors: number of colors in the colormap.
% colormap: red, green, blue color packets.
%
currentfile buffer readline pop
token pop /colors exch def pop
/colors colors 3 mul def
/colormap colors string def
currentfile colormap readhexstring pop pop
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ PseudoClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayPseudoClassPacket } image
} ifelse
} ifelse
} bind def
/DisplayImage
{
%
% Display a DirectClass or PseudoClass image.
%
% Parameters:
% x & y translation.
% x & y scale.
% label pointsize.
% image label.
% image columns & rows.
% class: 0-DirectClass or 1-PseudoClass.
% compression: 0-RunlengthEncodedCompression or 1-NoCompression.
% hex color packets.
%
gsave
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
x y translate
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
currentfile buffer readline pop
token pop /pointsize exch def pop
/Helvetica findfont pointsize scalefont setfont
x y scale
currentfile buffer readline pop
token pop /columns exch def
token pop /rows exch def pop
currentfile buffer readline pop
token pop /class exch def pop
currentfile buffer readline pop
token pop /compression exch def pop
class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
grestore
} bind def
%%EndProlog
%%Page: 1 1
%%PageBoundingBox: 0 0 272 145
userdict begin
%%BeginData:
DisplayImage
0 0
272 145
12.000000
272 145
1
0
0
4
c0c0c0
000000
f8fcf8
00fc00
00f00103001a00ff000f00120203000b0203003302010004020300040203000202030003
0203000c0203000102020065020300110012020100050303000502010032020300020201
0001020100020201000102010002020100050201000c0201000102010001020100160200
004c02010001020100100012020100050303000502010031020100010201000102010001
020100010201000202010002020100050201000b02010002020100010201001502010050
020100100001020e00010201000503030005020100010227000702010001020100010201
000502010007020100050201000b02010006020100000201000202030002020200000201
000102050009023f000302010001020e00010201000e0201000503030005020100310201
0001020100020202000302010007020100050201000b0201000602020000020100040201
000202010000020200010201004e0202001100010201000e020100050303000502010031
020500040201000202010007020100050201000b02010006020100010201000102040002
02020000020100010201005002010010000102010001020a000102010005030300050201
000102270007020100010201000102010001020100010201000202010002020100050201
000b020100020201000102010001020100000201000102010002020100050201000c023f
000302010001020e0001020100010201000a020100050303000502010031020100010201
000102010001020100020201000102010002020100050201000c02010001020100010201
0001020100000201000102010002020100050201000002010049020100010201000c0201
00010001020100010201000a020300030303000302030031020100010201000202030004
02030002020300030203000c020300010202000102010001020200000201000002030005
0202004b0203000d02010001000102010001020100ff0003020100010001020100010201
00ff0003020100010001020100010201004001070007010700a802010001020100010201
000102010009010500010105000b01000006010100050101000a01070007010700010104
00020103000401040000010600070100000c010000030101000301010001010100010106
00000105000b010100050101000501010033020100010201000102010001020100080101
000301090000010000020100000301020004010300030103000901070001010300010101
000301010003010200010101000101010003010100010100000001010002010100020101
00020101000a010100020103000201010001010100000101000001010000010100000101
000201010009010300030103000401010025010000030106000102010001020100010201
00010201000801000005010b000001020001010400030103000201050008010700000105
000001000005010000010102000001000001010100010101000301010001010000000108
000001010000010400080102000101050001010100010101000001010000010100000101
00010101000c010500010105000301010005010100040101000d01000001010000040100
000301060001020100010201000102010001020100080100000001000001010000000102
0000010100000108000001060000010f0001010300010101000301010000010100010101
000001000001010100010100000001020001010000010101000101010003010400000101
000201010000010500000104000401040003010100030101000101010000010100000101
0000010100010103000c0101000501010005010100060101000201010004010100060101
00010101000201020003010400020201000102010001020100010201000801000005010f
00000106000001020001010a000001050000010000050100000001000003010000000100
000001030000010500040103000401010003010100020104000101090000010600030101
000301010001010100010103000001010000010100010101000b01010005010100050101
000201060000010600000101000501070001010200030104000202010001020100010201
000102010008010000000103000001020003010800010104000101020001010200000105
000101050000010000050100000001000003010000000100000001030000010200010101
00040101000501010003010100020104000101070004010400030101000d010100000101
0000010100010101000b0101000501010005010100060101000201010004010100060101
000101010001010400030102000302010001020100010201000102010008010000010101
000101030001010200000104000301020005010100050101000401030001010100030101
000001010001010100000100000101010001010200010101000201050001010300030101
0001010200000105000001020008010200010105000b0101000001010001010300010106
000101050003010100030105000301010004010100030106000201000001010000020104
000301020003020100010201000102010001020100080101000301090001010200050100
0006010100050101000a0107000001050000010000050102000101010004010100020104
00020102000101040000010100000103000a010100020103000201010001010100030101
000001010003010100010106000201030004010100040103002101060003010000040201
000102010001020100010201000901050001010500030100000c01050001010500080107
000101030001010100030101000001030005010100030102000301020001010100030101
00020100000c010000030101000301010001010100030101000001030002010100000106
000301010005010100050101002201060003010000040201000102010001020100010201
004001070007010700170101003601050009010500410201000102010001020100010201
004001070007010700a802010001020100010201000102010022010100dc020100010201
0001020100010201000a01010004010100010101000101010000010100030101000c0102
000501010007010100020101003501040004010000040103000301030006010100010105
0003010200020106000101030003010300160101000a0101000501030003020100010201
000102010001020100090103000301010001010100010101000001010002010400090101
000001010004010100060101000401010031010000000101000201010002010100030101
000101010001010100010101000401020001010100060101000401010002010100000101
00010101000101010001010100140101000c010100030101000101010002020100010201
000102010001020100090103000301010001010100000106000001010005010100020100
0001010100000101000401010005010100060101000301010001010100030101001f0101
000001010001010200000103000301010001010100050101000301030001010100050101
000501010002010100000101000101010001010100010101000301020004010200040101
000e01010006010100020201000102010001020100010201000901030004010000010100
000201010000010100010101000501010001010100020102000401010005010100080101
0003010300040101001e0101000101010000010300020101000701010005010100020101
000001010001010100050101000a01010000010100010101000101010001010100030102
000401020003010100050105000401010004010100030201000102010001020100010201
000a0101000c010100000101000201030005010100020104000001000009010100080101
000101070000010500080106000b01010002010100000100000001010002010100060101
000401020002010100010101000101040002010400060101000201030003010400110101
001201010002010100040201000102010001020100010201000a0101000c010100000101
0005010100030101000301010000010300090101000801010003010300040101001c0101
000301030000010100020101000501010007010100010106000401010001010100010101
000401010002010100010101000401010013010100050105000401010003010100040201
0001020100010201000102010018010600040101000201010004010100010101000b0101
00060101000301010001010100030101001b010100040102000101010002010100040101
000801010005010100050101000101010001010100030101000301010001010100040101
000401020004010200040101000e0101000b0201000102010001020100010201000a0101
000c0101000001010001010400020101000101010001010100000102000c010100040101
00150102000c010200020101000501010002010100020101000301010001010100010101
000101010005010100010101000101010001010100010101000301010003010100010101
00030101000501020004010200050101000c010100050101000402010001020100010201
00010201000a0101000c0101000001010003010100030100000201010002010200000101
000c01010002010100160102000c01020002010000070104000101050001010500020103
000501030001010300030103000401010004010300030102000e010100060101000a0101
000601010004020100010201000102010001020100220101003c01010076010100240201
00010201000102010001020100ff0001020100010201000102010001020100f30100000c
020100010201000102010001020100010104000301010003010500030103000101040002
010600000106000201030001010100010101000201030005010300000102000101010000
010300030101000201010000010100020101000201020002010500030102000201050002
010300020105000101010001010100010101000101010001010100020101000001010001
010100010101000101010001010600020103000b010300030102000b0201000102010001
020100010201000001010002010100010103000301010001010100010101000101010001
010100000101000201010002010000010101000101010001010100010101000001010001
010100030101000701010002010100010101000101010004010200000102000001010002
010100010101000001010002010100010101000101010000010100020101000101010000
010100010101000101000000010100000100000101010001010100010101000101010001
010100020101000001010001010100010101000101010001010100010102000201010003
0100000a01010002010100000101000a0201000102010001020100010201000001010002
010100000101000101010002010100010101000001010002010100010101000101010001
010100050101000201000000010100020101000001010001010100030101000701010002
010100000101000201010004010600000102000101010000010100020101000101010001
010100000101000201010001010100010101000001010001010100030101000301010001
010100010101000101010001010100020101000001010001010100010101000101010001
010000010101000401010003010100090101000101010002010100090201000102010001
020100010201000001010000010300000101000101010002010100010101000001010006
010100010101000101010001010000020101000101000001010100050101000101010003
010100070101000201010000010100020101000401060000010300000101000001010002
010100010101000101010000010100020101000101010001010100000101000701010003
010100010101000101010001010100010101000201010001010300020101000101010004
010100040101000401010008010100120201000102010001020100010201000001010000
010300000101000101010002010400010101000601010001010100010104000201040001
010100050105000301010007010100020103000301010004010100000100000001010000
010600000101000201010001010400010101000201010001010400020102000501010003
010100010101000101010001010100010101000001000000010100020101000401030004
010100050101000501010007010100120201000102010001020100010201000001010000
010300000105000201010001010100000101000601010001010100010101000101000002
010100010100000101010001010200000101000101010003010100030101000101010002
010100000101000201010002010000000101000201010000010100000103000001010002
010100010101000401010001010200010101000001010004010100040101000301010001
010100010101000101010001010100000100000001010001010300040101000401010006
010100060101000601010012020100010201000102010001020100000101000501010001
010100020101000101010000010100020101000101010001010100010101000501010004
010100020101000001010001010100030101000301010001010100020101000001010002
010100010101000001010002010100000101000101020000010100020101000101010004
010100000103000101010001010100000101000101010003010100030101000101010001
010100010101000201010000010100010101000101010003010100040101000201000002
010100070101000501010012020100010201000102010001020100000101000501010001
010100020101000101010001010100010101000101010000010100020101000201000001
010100050101000101010000010100010101000301010003010100010101000201010001
010100010101000101010000010100020101000001010002010100010101000001010002
010100050104000201010001010100000101000101010003010100030101000101010002
010300030101000001010001010100010101000301010003010100020101000201010008
010100040101001202010001020100010201000102010001010400010101000101010001
010500030103000101040002010600000103000501040000010100010101000201030003
010300020102000101010000010600000101000201010000010100020101000201020002
010300070101000101020001010100010103000301030003010300040101000401010000
010100010101000101010002010300020106000201030007010000020103001202010001
02010001020100010201008b0103006801070000020100010201000102010001020100ff
000102010001020100010201000102010002010100fc0201000102010001020100010201
00020101000b0102000f0102000b0102000a010200070101000601010001010200050103
007501020004010100020102000501020001010100080201000102010001020100010201
00030101000b010100100101000a010100000101000a0101000701010006010100020101
00070101003c010000360101000601010004010100030101000001010000010000090201
0001020100010201000102010011010100100101000a0101000d01010015010100070101
003b01010036010100060101000401010003010100010102000301000004020100010201
000102010001020100090103000301040002010300030104000201030003010100050102
000001010001010100000101000201030004010300020101000101010003010100020105
000101040003010300020101000001020002010200000101000001020000010100020103
000201050001010100010101000101010001010100010101000201010000010100020101
000101010001010100000105000201010007010100050101000c01020003020100010201
0001020100010201000c0101000201010001010100000101000101010001010100010101
000101010001010100010104000201010001010100020102000001010003010100060101
000201010000010100040101000201010000010000000101000001010001010100010101
000101010002010100010101000001010001010100020101000001020000010100010101
000201010004010100010101000101010001010100010101000201010001010100000101
000201010001010100000100000201010001010100110101000a01010000010100020201
000102010001020100010201000901040002010100010101000001010005010100010101
000101050002010100040101000101010002010100010101000301010006010100020103
000501010002010100000100000001010000010100010101000101010001010100020101
000101010000010100010101000201020000010100010101000501010004010100010101
000101010001010100010101000001000000010100020102000301010001010100030101
000301010007010100050101000a01010002010100010201000102010001020100010201
000801010001010100020101000101010000010100050101000101010001010100060101
000401010001010100020101000101010003010100060101000201010000010100040101
000201010000010000000101000001010001010100010101000101010002010100010101
000001010001010100020101000701010003010100040101000101010001010100010101
000101010000010000000101000201020003010100010101000101010006010100060101
00040101000b010100020101000102010001020100010201000102010008010100010101
000201010001010100000101000101010001010100010101000101010001010100020101
000501040002010100010101000301010006010100020101000101010003010100020101
000001000000010100000101000101010001010100010101000201010001010100000101
000101010002010100040101000101010002010100000101000101010001010100020103
000301010000010100020101000001010003010300010101000201000003010100060101
00040101000b010600010201000102010001020100010201000901020000010100000101
000001020002010300030102000001010001010300020103000701010001010200010101
000101050000010100010101000101020001010100010105000001010002010100000101
000101010002010300030104000201040001010300040103000401020003010200000101
000201010004010100000101000101010002010100040101000101050004010200040101
000201020015020100010201000102010001020100380101000101010011010100010101
002a010100080101003c0101003302010001020100010201000102010039010300130103
002a01030006010300380103003402010001020100010201000102010014010100030101
000b010100070102000c0101000b01010010010000040101000d01030006010100130101
000b01010007010100030101000d0101000101010001010100010101000b010300010101
000101010001010300070102000102010001020100010201000102010001010300020101
0001010100040101000301030002010100010101000201010005010100000101000a0103
000201010001010100020101000501010000010100030102000401010003010100010101
000101010001010100040101000c01040001010300020101000101010002010100050103
000301010005010100010101001201010004010100010101000001010001010100010101
000001010005010100000101000002010001020100010201000102010000010100010101
000101010001010100030101000301010001010100010101000101010003010100040101
000001010009010100010101000101010001010100030101000401010000010100020101
0000010100040101000a01010001010100030101000c0103000201010001010100010101
000101010003010100030101000101010003010100040101000101010001010300020101
000101010003010100040101000401010001010100010101000001010005010100030201
0001020100010201000102010000010100010101002b0102003c01010004010300020105
000901010000010100320101000101010001010100010101000201030003010100040101
000101010001010100000101000501010003020100010201000102010001020100000101
000501010001010100020103000301030003010300030103000201040003010300030103
000301030003010300030103000301030003010300030103000301030002010100020100
000101060000010100000101000301030003010300030103000201010001010100010101
000101010002010100010101000001010001010100010101000101010001010100010101
000201010005010300020103000001000002010500010201000102010001020100010201
000001010005010100010101000101010001010100050101000501010005010100050101
000101010001010100010101000101010001010100010101000101010001010100040101
000501010005010100020101000101010001010100010101000101010008010100000108
000001010001010100010101000101010001010100010101000101010001010100010101
000101010002010100010101000001010001010100010101000101010001010100050105
000101050001010100010101000401010003020100010201000102010001020100000101
000501010001010100010105000201040002010400020104000201040001010100050105
000101050001010500040101000501010005010100020101000101010001010100010101
000101040003010800000101000201010001010100010101000101010001010100010101
000101010001010100010101000101010002010100010101000001010001010100010101
000101010001010100060101000601010003010100000103000301010003020100010201
000102010001020100000101000101010001010100010101000101010005010100010101
000101010001010100010101000101010001010100010101000101010005010100050101
000501010008010100050101000501010002010500010105000101010005010100000101
000201010000010100020101000101010001010100010101000101010001010100010101
000101010001010100010101000201010001010100000101000101010001010100010101
000101010001010100020101000401050001010100010101000401010003020100010201
000102010001020100000101000101010001010100010101000101010001010100010101
000101010001010100010101000101010001010100010101000101010001010100010101
000101010005010100050101000801010005010100050101000201010001010100010101
000101010001010100020100000101010000010100020101000001010002010100010101
000101010001010100010101000101010001010100010101000101010001010100030103
000101010001010100010101000101010002010300020101000701010003010100010101
000101010000010100030201000102010001020100010201000101030003010200000101
000101030003010200000101000101020000010100010102000001010001010200000101
000101030003010400020104000201040002010500010105000101050000010100010101
000101010001010100010105000101020000010500000103000101030003010300030103
000301020000010100010102000001010004010100020103000301030004010100030106
000201010003010100020101000101020004020100010201000102010001020100020101
003501010086010100140101002402010001020100010201000102010000010300330103
00830103003c020100010201000102010001020100040101000501010005010100050101
000a01020000010100520100000101000002010000000100000001000000010000000101
000001010000010000020101000501010005010100030101000101010011010100010101
00010101000101010009010100010101000101010001010100030101000b020100010201
000102010001020100030101000501010005010100050101000301020000010100000101
000001020002010300030103000401010014010000030100000101010002010100010101
001301000001010000010100000001000000010000000100000001000000010100000101
000001010002010100050101000501010003010100010101001101010001010100010101
000101010009010100010101000101010001010100030101000b02010001020100010201
000102010002010100050101000501010005010100030101000001020009010100010101
000101010001010100030101001301010002010100000102000101010002010100140100
000101000001010000000100000001000000010000000101000001010000010100030101
000501010005010100030101000101010011010100010101000101010001010100090101
00010101000101010001010100030101000b020100010201000102010001020100280101
000201010000010100010101000101010001010100190101000101010002010100000101
001b01000001010000010100000001000000010000000100000101010000010100000100
000201010005010100050101000301010001010100110101000101010001010100010101
0009010100010101000101010001010100030101000b0201000102010001020100010201
000101030003010300030103000201010001010100010104000201020001010100010105
000101030004010100130101000001010003010300040101000501010001010300010101
000101000001010000010100000101000000010000000100000001020000010100000101
000201010005010100020104000301010001010100080104000201020001010100010101
00010101000001060000010200010101000101010001010100000104000b020100010201
000102010001020100040101000401010002010100010101000101010001010100010101
000101010001010300000101001101010004010500010105000301010005010100000102
000101010004010100010101000101010001010100010100000101000001010100000100
000001000000010000000100000001010000010100030101000301030005010100020102
000101010000010600030101000701010001010100010101000501010005010100000106
000301010002010400030201000102010001020100010201000101040004010100020101
000101010001010100010101000101010001010100010101000001030000010600000106
000001010005010100090101000201010000010200010101000001030000010300020101
000101010003010100010101000101000001010000020100000001000000010000000100
000001010000010100000100000201010005010100050101000301010001010100010101
00010101000301010007010100010101000101010005010100050101000b010100050101
000302010001020100010201000102010000010100010101000401010002010100010101
000101010001010100010101000101010001010100010102001001010005010100090101
000101010003010300000101000001010000010300020101000101010003010100010102
000101000001010000000100000001000000010000000100000001010000010100000101
000201010005010100020104000301010001010100010101000101010000010400020102
000101010001010100010101000001020001010100000106000801040005010100030201
000102010001020100010201000001010001010100040101000201010001010100010101
000101010001010100010101000101010002010100100101000101010001010100090101
000101000003010100000100000001010001010100000103000301010001010100010101
000101010001010000010100000101000000010000000100000001000000010100000101
000001010003010100050101000501010003010100010101000101010001010100030101
000301010001010100010101000101010001010100010101001b01010003020100010201
000102010001020100010102000001010001010500010103000301020000010100000101
000101010001010100020101001101030016010100030105000101010005010100010103
000101010003010000010100000101000000010000000100000001000001010100000101
000001000002010100050101000501010003010100010101000101010001010100030101
000301010001010100010101000101010001010100010101001b01010003020100010201
0001020100010201005b0104000501010017010000010100000101000001010000000100
000001000000010200000101000001010002010100050101000501010003010100010101
000101010001010100030101000301010001010100010101000101010001010100010101
001b01010003020100010201000102010001020100810100000101000001010100000100
000001000000010000000100000001010000010100030101000501010005010100030101
000101010001010100010101000301010003010100010101000101010001010100010101
00010101001b0101000302010001020100010201000102010003010100050101000d0101
000d01010005010100030101000101010001010100010101000901010001010100090101
000101010009010100010101000301010003010100010101001101010001010100030101
00130101000101010003010100050101000a0107000701030007010b0000020100010201
00010201000102010003010100050101000d0101000d0101000501010003010100010101
000101010001010100090101000101010009010100010101000901010001010100030101
000301010001010100110101000101010003010100130101000101010003010100050101
000a0107000701030007010b000002010001020100010201000102010003010100050101
000d0101000d010100050101000301010001010100010101000101010009010100010101
000901010001010100090101000101010003010100030101000101010011010100010101
0003010100130101000101010003010100050101000a0107000701030007010b00000201
0001020100010201000102010003010100050101000d0101000d01010005010100030101
000101010001010100010101000901010001010100090101000101010009010100010101
000301010003010100010101001101010001010100030101001301010001010100030101
00050101000a0107000701030007010b0000020100010201000102010001020100030101
00050101000d0101000d0101000501040000010100010101000101010001010200000109
0001010a000001010001010d0001010a0000010100010101000001070008010100010101
000301040002010400080101000101010000010700020101000a0107000701030007010b
000002010001020100010201000102010003011400020114000201010003010100010102
000001010005010100150101001c01070007010700000106000201010005010100030109
00010102000701040005010c000701030007010b00000201000102010001020100010201
0013010100050101000d0101000501010003010100010101000101010005010100150101
002d010100010101000b0101000501010003010100010101000101010001010100130101
0002011300070103000802010001020100010201000102010013010100050101000d0101
00050104000001010001010100010106000001010001010d00010102000001010001010d
0001010a000701070000010100010101000b010400020104000001010001010100010101
0001010100000107000a0101000201130007010300080201000102010001020100010201
0013010100050101000d0101000501010003010100010101000901010001010100090101
000101010001010100010101000901010001010100130101000301010001010100130101
0003010100010101000101010001010100030101000d0101000201130007010300080201
0001020100010201000102010013010100050101000d0101000501010003010100010101
000901010001010100090101000101010001010100010101000901010001010100130101
0003010100010101001301010003010100010101000101010001010100030101000d0101
0002011300070103000802010001020100010201000102010013010100050101000d0101
000501010003010100010101000901010001010100090101000101010001010100010101
000901010001010100130101000301010001010100130101000301010001010100010101
0001010100030101000d0101000201130007010300080201000102010001020100010201
0013010100050101000d0101000501010003010100010101000901010001010100090101
000101010001010100010101000901010001010100130101000301010001010100130101
0003010100010101000101010001010100030101000d0101000201130007010300080201
00010201000102010001020100ab01010053020100010201000102010001020100090103
0002010500010106000001050019010500020103000301040003010300130103001a0101
00070101000d010100140103001601040000010100030103001302010001020100010201
000102010008010100010101000101010001010100020101000001010001010100020100
001b01010003010100010101000101010002010100010101001101010001010100050103
000201050003010100050101000501010007010200030101000401010004010200010101
00000101000101010015010000020101000001010005010100030103000a020100010201
000102010001020100080101000101010001010100010101000201010000010100020101
000101000012010200000101000101030002010100010101000101010002010100020101
000401020000010100010104000101010005010100010101000b01010006010100030101
000701010000010100020101000401010003010100000101000001010000010100010101
0015010000020101000001010004010100040103000a0201000102010001020100010201
000101020000010100000101000001010002010100060101000001010002010100050105
000101010001010100000101000001020001010100010101000101010001010100010101
000201010001010300020101000001010000010300000103000001010005010100010101
000901050004010100030101000701010000010100020101000a01010001010200010101
0001010100030102000e010000020101000001010003010100050103000a020100010201
000102010001020100000101000001030000010100010101000101010006010100000101
000301010003010100010100000301010001010100030101000201010001010100010105
000101010002010100000101000101010001010100000101000001030000010000000101
000001050001010100010101000101050003010100050101000501010006010100050101
00020105000b010300040102000401010003010000020100000201010000010100020104
00030103000a020100010201000102010001020100000101000101010001010100010101
000101010006010100000101000201010004010100010101000201010001010100030101
000201010001010100010101000101010002010100000101000101010001010100010101
000001010000010500000101000001010005010100010101000b01010004010100070101
0005010100050101000b010200010101001801010001010000130103000a020100010201
000102010001020100000101000101010001010100010101000101010006010100000101
000201010001010000010101000101010002010100010101000301010003010300020101
000101010002010100000101000101010001010100020101000001020001010400010101
000501010001010100240101000201010000010100040101000301010000010100000101
001901010000010000130103000a02010001020100010201000102010000010100000103
000001040002010100060101000001010001010100020100000101010001010100020101
000101010003010100040101000301010001010100020101000001010001010100010101
000901010006010100040101000101010001010500010105000101050001010500040101
0002010100000101000401010003010100010102001b010200130103000a020100010201
000102010001020100010102000001010000010100050101000601010001010100000105
000201030003010300000101000301020000010500020103000201020000010200010103
0014010300010101000101010024010100030102002f010100130103000a020100010201
00010201000102010009010100250101006f0101005b0201000102010001020100010201
0030010100700101005b020100010201000102010001020100ff00010201000102010001
02010001020100ff0001020100010201000102010001020100ff00010201000102010001
02010001020100ff0001020100010201000102010001020100ff00010201000102010001
02010001020200ff0000020100010201000102010001020100ff00010201000102010001
02010001020100ff0001020100010201000102010001020100ff00010201000102010001
02010001020100ff0001020100010201000102010001020100ff00010201000102010001
02010001020100ff0001020100010201000102010001020100ff00010201000102010001
020100010201001201030001010200340104001501010013010300230104000901010001
010100220104000201040012020100010201000102010001020100110101000101010001
010100350101000001010014010100150101002201010002010100080101000101010021
010100020101000001010002010100110201000102010001020100010201001001010002
01010001010100160102001b010100010101002b010100040102001a0101000101020008
01010001010100130102000a010100010102000001010001010200110201000102010001
02010001020100100101000601010000010100020103000201020000010100030102001b
01010001010100010103000301030003010300020105000201030005010100040102001a
010100000103000801010001010100020103000201010002010100020102000a01010000
010300000101000001030011020100010201000102010001020100100101000601020000
010100040101000201010000010200210101000101010000010100010101000101010001
010100040101000201010000010000000101000401010004010100220101000001000000
010100080105000101010001010100020101000001010011010100000100000001010000
010100000100000001010011020100010201000102010001020100100101000601010001
010100010104000201020000010100210101000101010000010500010101000801010002
010100000100000001010001010400040101002201030000010100080101000101010001
010500030102001201030000010100000103000001010011020100010201000102010001
02010010010100020101000101010001010100000101000101010002010100060102001b
010100010101000001010005010100080101000201010000010000000101000001010001
01010004010100040102001a010200010101000801010001010100010101000701020004
0102000a0102000101010000010200010101001102010001020100010201000102010011
010100010101000101010001010100000101000101010002010100060102001b01010000
010100010101000101010001010100010101000401010002010100000100000001010000
0101000101010004010100040102001a0101000201010008010100010101000101010001
0101000201010000010100030102000a0101000201010000010100020101001102010001
020100010201000102010012010300010102000101010001010200000101000001030023
010400030103000301030003010500000101000201010001010200000101000101050021
010400090101000101010002010300020101000201010011010400020104001202010001
0201000102010001020100ff0001020100010201000102010001020100ff000102010001
0201000102010001020100ff000302010001000102010001020100ff0003020100010001
02010001020100ff000302010001000102010001020100ff000302010001000102010001
02ff02090001020100ff000b0001020100ff000b000102ff020d00ff000f00ff000f00ff
000f00ff000f
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 271 144
%%EOF
|