aboutsummaryrefslogtreecommitdiff
path: root/src/doc/ps/h-matdesc.ps
blob: fe1fa02b2f9acf9fce20da95df37286ab2b5954b (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
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
%!PS-Adobe-2.0 EPSF-1.2
%%BoundingBox: 143.000000 280.520006 469.000000 541.719999
%%Creator: xwd2ps
%%CreationDate: Fri Nov 22 15:16:31 1991
%%Title: h-matdesc.xwd
%%EndComments
% xwd2ps -- program written by Robert C. Tatar and Craig A. McGowan.
% The command used to create this file (missing quotes on strings):
%   xwd2ps -w4.5 -h2.5 h-matdesc.xwd
% by loan7:themos (Themos Tsikas, NAG Ltd)
% Information from XWD rasterfile header:
%   width =  622, height = 495, depth = 8
%   file_version = 7, pixmap_format = 2, byte_order = 1
%   bitmap_unit = 32, bitmap_bit_order = 1, bitmap_pad = 32
%   bits_per_pixel = 8, bytes_per_line = 624, visual_class = 3
%   bits/rgb = 8, colormap entries = 256, ncolors = 256
% Portion of raster image in this file:
%   starting line = 1
%   ending line = 495
%   starting column = 1
%   ending column = 622
gsave
/inch {72 mul} def
/buffer 2 string def
/rgbmap 768 string def
/rgb (000) def
/pixels 768 string def
%%Title: colorimage.ps
% Written 11-4-88 by Bob Tatar
% U.S. Mail: GE-CRD, PO Box 8, KW-C214, Schenectady, NY 12301
%    E-Mail: tatar@crd.ge.com
% colorimage procedure to be used on monochrome printers
% or when the colorimage procedure is not available
% NOTE: Only 1 color mode is supported: single proc. & RGB

systemdict /colorimage known not {        % only create if not in systemdict
  % Utility procedure for colorimage operator.  This procedure takes a
  % string of rgb encoded values and creates a string 1/3 as long with
  % monochrome values.  This procedure assumes 8 bits/color (i.e. 
  % 1 character/color)
  % storage format for input string:  (r1 g1 b1  r2 g2 b2  r3 g3 b3  ... )
  % storage format for output string: (g1  g2  g3 ... )
  
  /colortograyscale { %def                % (string)
    dup /rgbdata exch store               % (string)
    length 3 idiv                         % Ns/3 
    /npixls exch store                    % ; npixls => Ns/3
    /indx 0 store                         % ; indx => 0
    /pixls npixls string store            % ; pixls => (....)
    0 1 npixls -1 add {                   % counter 
      pixls exch                          % pixls counter
      rgbdata indx get .3 mul             % pixls counter .3*rgbdata(ind)
      rgbdata indx 1 add get .59 mul add  % pixls counter .3*rgbdata(ind) + 
					  %          .59*rgbdata(ind+1)
      rgbdata indx 2 add get .11 mul add  % pixls counter .3*rgbdata(ind) + .59
					  %  *rgbdata(ind+1)+.11*rgbdata(ind+2)
      cvi                                 % pixls counter <grayscale value>
      put                                 %
      /indx indx 3 add store              % ; /ind => ind+3
    } for                                 % repeat for each rgb value
    pixls                                 % (pixls)
  } bind def                              % ; /colortograyscale -> dictionary
  
  % Utility procedure for colorimage operator.  This procedure takes two
  % procedures off the stack and merges them into a single procedure.
  
  /mergeprocs { %def      % {proc1} {proc2}
    dup length            % {proc1} {proc2} N2
    3 -1 roll             % {proc2} N2 {proc1}
    dup                   % {proc2} N2 {proc1} {proc1}
    length                % {proc2} N2 {proc1} N1
    dup                   % {proc2} N2 {proc1} N1 N1
    5 1 roll              % N1 {proc2} N2 {proc1} N1
    3 -1 roll             % N1 {proc2} {proc1} N1 N2
    add                   % N1 {proc2} {proc1} N1+N2
    array cvx             % N1 {proc2} {proc1} { ... }
    dup                   % N1 {proc2} {proc1} { ... } { ... }
    3 -1 roll             % N1 {proc2} { ... } { ... } {proc1}
    0 exch                % N1 {proc2} { ... } { ... } 0 {proc1}
    putinterval           % N1 {proc2} { <<{proc1}>> ... }
    dup                   % N1 {proc2} { <<{proc1}>> ... } { <<{proc1}>> ... }
    4 2 roll              % { <<{proc1}>> ... } { <<{proc1}>> ... } N1 {proc2}
    putinterval           % { <<{proc1}>> <<{proc2}>> }
  } bind def              % ; /mergeprocs => dictionary

  /colorimage { %def               % {imageproc} multiproc ncolors
     pop                           % {imageproc} multiproc ; assume 3 colors
     pop                           % {imageproc}           ; assume false
     {colortograyscale}            % {imageproc} {colortograyscale}
     mergeprocs                    % {imageproc colortograyscale}
     image                         % construct monochrome image
  } bind def                       % ; /colorimage => dictionary
} if                               % only create if it doesn't already exist
/drawcolorimage {
  622 495 8
  [622 0 0 -495 0 495]
  {currentfile buffer readhexstring pop pop  % get run length & color info
    /npixels buffer 0 get 1 add 3 mul store  % number of pixels (run length)
    /color buffer 1 get 3 mul store          % color of pixels
    % /pixels npixels string store          % create string to hold colors
    /rgb rgbmap color 3 getinterval store    % get rgb value
    0 3 npixels -1 add {
	  pixels exch rgb putinterval
    } for
    pixels 0 npixels getinterval             % Return color values
  }
  false 3
  colorimage
} bind def
%2.000000 inch 3.910000 inch translate
matrix currentmatrix
4.500000 inch 2.500000 inch scale

% get rgb color table
currentfile rgbmap readhexstring pop pop
000000
ffffff
b3b3b3
d8d8bf
dbdb70
ffff00
3299cc
236b8e
238e23
cc7f32
0000ff
2f2f4f
5f9f9f
ff0000
1a1a1a
333333
7f7f7f
4d4d4d
cccccc
d4d8e8
757780
46474d
b4b8c5
fbfbfb
626262
3b3b3b
00dbaa
00dbff
00ff00
00ff55
00ffaa
00ffff
240000
240055
2400aa
2400ff
242400
242455
2424aa
2424ff
244900
244955
2449aa
2449ff
246d00
246d55
246daa
246dff
249200
249255
2492aa
2492ff
24b600
24b655
24b6aa
24b6ff
24db00
24db55
24dbaa
24dbff
24ff00
24ff55
24ffaa
24ffff
490000
490055
4900aa
4900ff
492400
492455
4924aa
4924ff
494900
494955
4949aa
4949ff
496d00
496d55
496daa
496dff
499200
499255
4992aa
4992ff
49b600
49b655
49b6aa
49b6ff
49db00
49db55
49dbaa
49dbff
49ff00
49ff55
49ffaa
49ffff
6d0000
6d0055
6d00aa
6d00ff
6d2400
6d2455
6d24aa
6d24ff
6d4900
6d4955
6d49aa
6d49ff
6d6d00
6d6d55
6d6daa
6d6dff
6d9200
6d9255
6d92aa
6d92ff
6db600
6db655
6db6aa
6db6ff
6ddb00
6ddb55
6ddbaa
6ddbff
6dff00
6dff55
6dffaa
6dffff
920000
920055
9200aa
9200ff
922400
922455
9224aa
9224ff
924900
924955
9249aa
9249ff
926d00
926d55
926daa
926dff
929200
929255
9292aa
9292ff
92b600
92b655
92b6aa
92b6ff
92db00
92db55
92dbaa
92dbff
92ff00
92ff55
92ffaa
92ffff
b60000
b60055
b600aa
b600ff
b62400
b62455
b624aa
b624ff
b64900
b64955
b649aa
b649ff
b66d00
b66d55
b66daa
b66dff
b69200
b69255
b692aa
b692ff
b6b600
b6b655
b6b6aa
b6b6ff
b6db00
b6db55
b6dbaa
b6dbff
b6ff00
b6ff55
b6ffaa
b6ffff
db0000
db0055
db00aa
db00ff
db2400
db2455
db24aa
db24ff
db4900
db4955
db49aa
db49ff
db6d00
db6d55
db6daa
db6dff
db9200
db9255
db92aa
db92ff
dbb600
dbb655
dbb6aa
dbb6ff
dbdb00
dbdb55
dbdbaa
dbdbff
dbff00
dbff55
dbffaa
dbffff
ff0000
ff0055
ff00aa
ff00ff
ff2400
ff2455
ff24aa
ff24ff
ff4900
ff4955
ff49aa
ff49ff
ff6d00
ff6d55
ff6daa
ff6dff
ff9200
ff9255
ff92aa
ff92ff
ffb600
ffb655
ffb6aa
ffb6ff
ffdb00
ffdb55
ffdbaa
ffdbff
ffff00
ffff55
ffffaa
ffffff


drawcolorimage
ff12ff126d1220120011ff12ff12281200112012001101121e0100110012ff01ff0127010011001
21e01011101121e0100110012ff01ff012701001100121e01011101121e010011
0012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e010111011
21e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff01
2701001100121e01011101121e0100110012ff01ff012701001100121e010111011206011811001
2ff11ff1128110012171106010111011206010011ff12ff125a12060101110112
060100110012150100110012ff01ff010f010011001215010011001215010011001206010111011
2060100110012150100110012ff01ff010f010011001215010011001215010011
0012060101110112060100110012150100110012ff01ff010f01001100121501001100121501001
10012060101110112060100110012150100110012ff01ff010f01001100121501
0011001202010f12020100110012060101110112060100110012150100110012ff01ff010f01001
10012150100110012020100120d01001102010011001206010111011206010011
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
101110112060100110012150100110012ff01ff010f0100110012150100110012
020100120d010011020100110012060101110112060100110012150100110012ff01ff010f01001
10012150100110012020100120d01001102010011001206010111011206010011
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
10111011206010011001202010f12020100110012ff01ff010f01001100120801
0312080100110012020100120d010011020100110012060101110112060100110012020100120d0
10011020100110012ff01ff010f01001100120801001201010011080100110012
020100120d010011020100110012060101110112060100110012020100120d01001102010011001
2ff01ff010f01001100120801001201010011080100110012020100120d010011
020100110012060101110112060100110012020100120e11020100110012ff01ff010f010011001
2080100120211080100110012020100120d010011020100110012060101110112
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
10012060101110112060100110012150100110012ff01ff010f01001100121501
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
10f0100110012150100110012020100120d010011020100110012060101110112
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
10012060101110112060100110012150100110012ff01ff010f01001100121501
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
10f0100110012150100110012020100120e110201001100120601011101120601
00110012150100110012ff01ff010f0100110012150100110012150100110012060101110112060
100110012150100110012ff01ff010f0100110012150100110012150100110012
06010111011206010011001216110012ff11ff11101100121611001216110012060101110012ff1
1ff11621100120811091200117b00ff015f017b00091200110112060101117b00
ff015f017b000112060101110112060101117b00ff015f017b000112060101110112060101117b0
0ff015f017b000112060101110112060101110500090103000101070001010300
010103000b014500ff015f010600010105000101040006010400010106000101030008014100011
20601011101120601011105000a0102000201060002010200020102000c014400
ff015f0106000201040002010200080103000201050002010200090140000112060101110112060
1011105000a0103000201040002010300020103000b014400ff015f0106000201
04000201020009010200030103000301020009014000011206010111011206010111050002010b0
002010400020103000201070002014900ff015f01060002010400020102000201
030002010200030103000301020002014700011206010111011206010111050002010c000201020
0020104000201070002014900ff015f0106000201040002010200020103000201
0200030103000301020002014700011206010111011206010111050002010c00020102000201040
00201070002014900360105002001000015010200000100001e01000022010000
1c010000040100001f0100001001010003010500040100003901060002010400020102000201030
00201020004010100040102000201280000011d00011206010111011206010111
050002010d000201000002010500020107000201490037010100010101001e01020013010100000
102001e010000220100001c010000030101000d0100000f0102000e0100000601
0100010101000401000038010600020104000201020002010300020102000401010004010200020
1260004011b00011206010111011206010111050002010d000201000002010500
020107000201490037010100020101001e01000013010100020101001d010100210101001c01010
0020101000d010000100100000e01010006010100010101000401000038010600
020104000201020002010300020102000b010200020124000801190001120601011101120601011
1050002010e000401060002010700020149003701010002010100330101000301
00001d010100210101001c010100010101000d0101001f010100070101000101010004010100370
10600020104000201020002010300020102000201000003010000020102000201
22000c0117000112060101110112060101110500080108000401060002010700020149003701010
00201010002010300020100000001010000010100020104000301030003010100
0001020008010100030100000201030002010100000102000301030000010000010106000101010
00001030001010200000102000301030002010600030103000201010000010300
0701050003010300030105000101010001010200020103000401010002010100010101000601010
00101010005010100370106000a01020002010300020102000201000003010000
0201020007011b00100115000112060101110112060101110500090108000201070002010700020
14900370101000201010001010100010101000101010000010100000101000001
0100020101000401010004010100010101000701010006010100010101000201010001010100010
10100020101000301010005010200010101000101010001010100020101000101
0100030101000501010001010100020102000101010005010600020101000101010003010100030
10000000102000101010003010100030100000001010000010100010101000701
01000101010005010100370106000a0102000201030002010200020101000101010002010200080
11800140113000112060101110112060101110500090108000201070002010700
0201490037010100020101000001010003010100000101000001010000010100000101000201010
00401010004010100010101000701010005010100030101000101010001010100
0101010003010000030101000501010002010100010101000101010001010100020101000301010
00401010003010100010101000201010005010000000102000001000006010100
0301010005010200010101000201010006010300020101000701040006010100370106000a01020
00201030002010200020101000101010002010200080116001801110001120601
0111011206010111050002010e00040106000201070002014900370101000201010000010100030
10100000101000001010000010100030103000401010004010100010101000701
0100050101000301010001010100010101000201020006010100050101000601010001010100010
10100080101000401010003010100010101000a01000001010000010100000301
0300040101000501010007010100070102000201010007010300060101003801060002010400020
1020002010300020102000201050002010200020121000e011600011206010111
011206010111050002010e000401060002010700020149003701010002010100000101000301010
00001010000010100000101000101010001010100040101000401010001010100
0701010003010000000101000301010001010100010101000401020004010100050101000601010
00101010001010100080101000401010003010100010101000a01000003010000
0201010001010100030101000601010007010100060102000301010006010100000101000601010
03801060002010400020102000201030002010200020105000201020002012100
0e011600011206010111011206010111050002010d0002010000020105000201070002014900370
10100020101000001010003010100000101000001010000010100000101000201
0100040101000401010001010100070101000301000000010100030101000101010001010100010
10000030101000301010005010100060101000101010001010100030100000301
0100040101000301010001010100090100000401000001010100020101000301010005010100070
10100060101000001010002010100060101000101010004010100390106000201
04000201020002010300020102000201050002010200020121000e0116000112060101110112060
10111050002010d00020100000201050002010700020149003701010001010100
0201010001010100010101000001010000010100000101000101020004010100040101000101010
00801010001010100010101000101010002010100010101000101010002010100
0301010001010000020101000601010000010200020101000101010003010100010100000201010
00101010002010100090100000401000001010100010102000001000001010100
0101000002010100070101000101000003010000010101000001000001010000060101000101010
00401010039010600020104000201020002010300020102000201050002010200
020121000e011600011206010111011206010111050002010c00020102000201040002010700020
14900360105000401030002010100000101000001010001010200010101000101
0500010102000001030008010300030103000201020000010300000100000001030005010200020
10400050102000001010002010300050102000401030002010400070101000201
0200010102000101010003010200030101000801020002010100030101000201000005010300010
10100020100003b01060002010400020102000201030002010200020105000201
0200020121000e011600011206010111011206010111050002010c0002010200020104000201070
002014900ff01110100000d0101003c0106000201040002010200020103000201
0200020105000201020002014700011206010111011206010111050002010b00020104000201030
00201070002014900ff015f010600020104000201020002010300020102000201
0500020102000201470001120601011101120601011105000901040002010400020103000201070
002014900ff015f01060002010400020102000901020002010500020102000801
410001120601011101120601011105000a01020002010600020102000201070002014900ff015f0
10600020104000201030008010200020105000201020009014000011206010111
01120601011106000901030001010700010103000101080001014900ff015f01070001010500010
10400060104000101060001010300080140000112060101110112060101117b00
ff015f017b000112060101110112060101117b00ff015f017b000112060101110112060101117b0
0ff015f017b000112060101110112060101117b00ff015f017b00011206010111
011206010111ff00ff005700011206010111011206010111ff00ff0057000112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff01570101120601011101120601011113010b0006010100030101000c01000
010010000110101000301050003010100ff01e401011206010111011206010111
13010b0007010000030100000d0100000f0102000f010100050101000101010003010100ff01e30
10112060101110112060101111301010000010000000100000001000000010200
07010100010101000c0101001001000010010100050101000101010003010100ff01e3010112060
10111011206010111130102000001000000010000000100000001010007010100
010101000c01010021010100060101000101010004010100ff01e20101120601011101120601011
11301010000010000000100000001000000010200070105000201040002010600
010101000001030002010300030102000101020002010100050101000101010005010100ff01e20
10112060101110112060101111301020000010000000100000001000000010100
0701050001010100020101000301010005010200010101000301010004010100010101000301010
0050101000101010005010100ff01e20101120601011101120601011113010100
0001000000010000000100000001020007010000000101000001000001010100020101000301010
00501010002010100030101000501010000010000040101000501040006010100
ff01e20101120601011101120601011113010200000100000001000000010000000101000701000
00001010000010000040103000301010005010100080101000601010005010100
0501030007010100ff01e2010112060101110112060101111301010000010000000100000001000
00001020007010000030100000201010001010100030101000501010008010100
0601010005010100040101000001010007010100ff01e2010112060101110112060101111301020
00001000000010000000100000001010007010000030100000101010002010100
030101000501010008010100050100000001010004010100040101000101010006010100ff01e20
101120601011101120601011113010b0007010000030100000101010001010200
0301010001010000020101000801010004010100010101000401010003010100010101000501010
0ff01e30101120601011101120601011113010b00060102000101020001010200
0101010003010200020104000401050001010200010102000301010002010300010101000401010
0ff01e301011206010111011206010111600101000d010100ff01e40101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff016301070004010100
e4010112060101110112060101112a0101006f010500210102001f0100001e0103001b0100003a0
1080002010300e301011206010111011206010111290102003c01000032010100
01010100210101001e0102001c010100010101001a0100003b0102000101020003010100e401011
206010111011206010111290102003c0100003201010001010100210101001f01
00001d01010001010100190101003b01020001010200ea010112060101110112060101112801000
0000101003b0101003201010001010100210101003e0101001d0101003b010200
000102000201040001010300000102000201040000010000cf01011206010111011206010111280
10000000101000201010001010200040102000001000000010100030100000101
0100020101000301030002010100010101000301050003010300050100002001010001010100100
10400090104000301030002010000000101000001010002010400030103000301
01000001020009010300040101000b0103000301040002010600030103000301030000010100020
10300020101000001030001010300000102000a01050003010400010108000001
0700cf0101120601011101120601011128010000000101000101000000010200010101000201010
00001030000010100010101000001030000010300000102000101010000010000
0001000000010300030101000401020001010100030102001f010100010101000f0101000201010
00701010000010200020101000101010001010100000101000001010000010100
0201010004010100040101000101010007010100010101000201040008010100010101000101010
00201010003010100050101000101010001010100010101000001000001010100
01010100020102000101010001010100020100000b0105000501020002010300000102000001020
000010300cf010112060101110112060101112701000001010100030102000101
0100010101000201000002010100010101000101000000010000000100000001010000010100020
10100020102000001010003010100040101000201000005010000200104001001
0100020101000601010002010100010101000301010000010100000101000001010000010100020
10100040101000401010001010100060101000301010002010100090101000201
0100010101000201010003010100040101000201010001010100010101000201010003010100010
101000201010001010100020100000b0102000001020004010200020102000101
02000001020000010200d0010112060101110112060101112701000001010100030101000601010
00101010002010100010100000201000000010100010103000201010003010100
0101010003010100050101002a01030014010300060101000201010001010100030101000001010
00001010000010100030103000401010004010100010101000601010003010100
0201010009010100090103000301010004010600010101000101010002010100030101000101010
007010100000100000c0102000001020004010200020102000101020000010200
00010200d0010112060101110112060101112601050003010100060104000201010002010000010
10100000101000001010000010400040101000201000003010100070102002701
0100000101001201010001010100060101000201010001010100030101000001010000010100000
10100010101000101010004010100040101000101010006010100030101000201
0100090101000701010001010100030101000401010007010300030101000301010001010100070
10100000100000c0102000001020004010200020102000101020001010400d101
0112060101110112060101112601000002010100020101000601010006010100010101000101010
00001000001010100000101000701010001010100030101000501000002010100
2601010001010100100101000201010006010100020101000101010003010100000101000001010
00001010000010100020101000401010004010100010101000601010003010100
0201010009010100030100000101010002010100030101000401010006010000070101000301010
001010100080101000d0102000101020003010200020102000101020000010300
d301011206010111011206010111260100000201010002010100060104000301010000010200000
10100010100000101000002010100020100000201010001010100000100000101
0100010100000101010001010200040100002001010001010100050100000901010001010200070
10100000102000201010001010100010101000001010000010100000101000101
02000401010004010100010101000701010001010100030101000a0101000101010001010100010
10200030101000101000002010100020100000101050003010100010101000201
0100080101000c0103000101020001010a000001030000010600d00101120601011101120601011
12501020000010300010101000701040003010100010101000001000004010000
0301030002010100030101000301020003010300050102001e01030001010100030102000901020
00101010007010200000101000201030002010100000101000001010001010200
0101010001010500010102000001030007010300030103000a01030003010200010101000301020
004010300030105000301030002010400060100000d0103000101020001010a00
0001030001010600cf01011206010111011206010111380100000301000011010000270100002c0
101008c01000004010000160100002901020001010200cf010112060101110112
060101113701010002010100680101008c0101000201010013010000000100002a010700cf01011
20601011101120601011138010400680101008e010400140102002b010500d001
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff01ff0157010112060
10111011206010111ff01ff015701011206010111011206010111ff01ff015701
011206010111011206010111ff01ff015701011206010111011206010111ff014d0101000301010
00c010000100101000d010200000101000d0100004b0103000001030015010000
5101011206010111011206010111270105007f0102001f0100001e0103001b0100003b010100030
101000b0101000f0103000b0106000c0101003501010003010500090103000001
0300140101001a010100340101120601011101120601011128010100010101000d0100007001010
01e0102001c010100010101001a0100003b010200010102000b01010010010100
0c010200000102000c0101003401010005010100010101000801020002010100150101001901010
0350101120601011101120601011128010100010101000d010000700101001f01
00001d01010001010100190101003b010200010102000a0102001f010200010101000b010200340
10100050101000101010008010200020101001401020019010100350101120601
011101120601011128010100010101000c010100700101003e0101001d0101003b0107000101040
00201060001010200010101000201040002010300000102000001020001010100
0201040002010600030103000301040000010000020103000201020001010100010103000001020
00201010006010100010101000901020000010200030103000401020000010100
0001060003010300020102000101010003010100360101120601011101120601011127010100010
10100030103000301050001010100030100000101010001010200010101000101
0100040103000501000032010400090104000301030002010000000101000001010002010400030
10300030101000001020009010300040101000b01030003010400020106000301
0300030103000001010002010300020101000001030001010300000102000a01070000010600010
10600010107000101040002010200010102000001020005010600010106000201
050001010700010105000101070000010300000102000201010005010100010101000a010200000
10100030105000201060000010600020105000101070002010100360101120601
0111011206010111270101000101010001010200010101000301010003010000000101000101010
00001000000010200010102000001000000010300010102000101010003010200
3001010002010100070101000001020002010100010101000101010000010100000101000001010
00201010004010100040101000101010007010100010101000201040008010100
0101010001010100020101000301010005010100010101000101010001010100000100000101010
001010100020102000101010001010100020100000b0107000001010001010200
0201020005010600030102000301020000010100010102000501010001010200020102000401020
00101020000010200000103000001020001010200010106000001020001010200
0201010005010100010101000a01020000010100020102000101020000010300000102000101020
00401020001010200010106000201010036010112060101110112060101112701
0400020101000201010003010100050101000101010002010200010101000101020000010100010
10100020100000501000031010100020101000601010002010100010101000301
0100000101000001010000010100000101000201010004010100040101000101010006010100030
10100020101000901010002010100010101000201010003010100040101000201
010001010100010101000201010003010100010101000201010001010100020100000b010100000
10100000101000301030002010200050103000001010003010200040103000201
0200080103000201020004010200010102000001020000010200010102000101020001010300000
10100010102000001010003010100050104000c01040002010200010102000001
0200020101000101020004010200010102000101030000010100020101003601011206010111011
20601011127010300020101000201010004010100050101000101000003010100
0601010001010100020101003e01030006010100020101000101010003010100000101000001010
00001010003010300040101000401010001010100060101000301010002010100
0901010009010300030101000401060001010100010101000201010003010100010101000701010
0000100000c010100000101000001010001010500020102000501020007010200
0401030002010200060105000201020004010700000102000001020001010200010102000101020
00501050003010100050103000d01030003010700000102000601020004010200
0101020001010200060101003601011206010111011206010111260101000001010002010400050
101000501010002010000030101000501010002010000040102003a0101000101
0100060101000201010001010100030101000001010000010100000101000101010001010100040
10100040101000101010006010100030101000201010009010100070101000101
010003010100040101000701030003010100030101000101010007010100000100000c010100000
10100000101000001020000010200020102000501020007010200040103000201
0200010101000101020000010200020102000401020006010400020102000101020001010200060
103000401010004010100000101000d0103000301020005010200060102000401
0200010102000101020006010100360101120601011101120601011126010100010101000101010
00801010005010100010101000201010006010100010101000201000002010100
3801010002010100060101000201010001010100030101000001010000010100000101000001010
00201010004010100040101000101010006010100030101000201010009010100
0301000001010100020101000301010004010100060100000701010003010100010101000801010
00d01010003010100000102000001020002010200000101000201020007010200
0301010000010200010102000101010001010200000102000201020000010100010103000101010
00001030004010200010102000101020006010300040101000401010001010100
0d01020003010300010101000001030001010100010102000001010001010200010102000101020
00601010036010112060101110112060101112601010001010100020101000201
0000030101000101000002010100000102000001000000010100060101000101010000010200010
10200040100003201010001010200070101000001020002010100010101000101
0100000101000001010000010100010102000401010004010100010101000701010001010100030
101000a0101000101010001010100010102000301010001010000020101000201
000001010500030101000101010002010100080101000d010200010102000001070001010500010
10400040106000001020001010200000106000101070001010500020106000001
0600020105000101040006010100060101000301010001010100050100000601010005010600010
10600010105000201050001010400060101003501011206010111011206010111
2501030001010100020103000501020004010100010101000101010005010100030101000101030
00501020032010200010101000701020000010100020103000201010000010100
00010100010102000101010001010500010102000001030007010300030103000a0103000301020
0010101000301020004010300030105000301030002010400060100000e010200
0101020001010200000102000201030002010400040106000001020000010300010104000301020
00001020002010300040104000201060002010300020104000501020006010100
0201030001010100030102000501010006010400030104000301030004010300020104000601010
0350101120601011101120601011167010000b601000004010000160100006801
02000101020013010200080101000e0101003d0101003401011206010111011206010111ff011f0
10100020101001301000000010000690107001201030019010100740101120601
0111011206010111ff0120010400140102006a01050013010200190101007501011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
206010111ff01ff015701011206010111011206010111c7010300000103001501
0000ff016f01011206010111011206010111ae010500030101000c01030000010300140101001a0
10100030105000301010006010100150100000701000004010200260103000601
00001001000007010000390100008801011206010111011206010111af010100010101000301010
00b01020002010100150101001901010005010100010101000301010006010100
13010200060100000501010028010100050102000e0102000601000039010000880101120601011
1011206010111af01010001010100030101000b01020002010100140102001901
0100050101000101010003010100060101001401000006010100050101002801010006010000100
1000006010100380101008801011206010111011206010111af01010001010100
040101000b010200000102000301030004010200000101000001060003010300020102000101010
003010100060101000101010004010100060101001b0101000501010028010100
20010100380101008801011206010111011206010111ae01010001010100050101000b010200000
10100030105000201060000010600020105000101070002010100050101000101
0100050101000601010007010100030101000101030003010600020104000901030002010200010
10200000101000001020005010100040103000501030003010300030106000801
0300020102000101020000010100000102000401030002010100000103000101060002010300000
100007c01011206010111011206010111ae01010001010100050101000b010200
0001010002010200010102000001030000010200010102000401020001010200010106000201010
00501010001010100050101000601010007010100030101000301010005010100
0501020000010100070101000101010002010100010101000201020000010100040101000601010
0040101000101010004010100050101000a010100010101000201010001010100
0201020000010100020101000101010002010200010101000201010004010100020101007c01011
206010111011206010111ae010400060101000c01040002010200010102000001
0200020101000101020004010200010102000101030000010100020101000501040006010100060
10100070101000001010000010100030101000501010005010100010101000601
0100020101000301010000010000030101000201010003010100060101000301010002010100040
10100050101000901010002010100030101000001000003010100020101000001
01000301010001010100020101000201010004010100030100007c0101120601011101120601011
1ae010300070101000c0103000301070000010200060102000401020001010200
0101020006010100050103000701010006010100070101000001010000010100030101000501010
00501010001010100060106000401010004010100020101000301010006010100
0301010009010100050101000901060004010100040101000201010000010100030101000101010
007010100050102007f01011206010111011206010111ad010100000101000701
01000c0103000301020005010200060102000401020001010200010102000601010004010100000
10100070101000601010007010100000101000001010003010100050101000501
0100010101000601010009010100040101000201010003010100060101000301010009010100050
10100090101000901010004010100020101000001010003010100010101000701
0100070102007d01011206010111011206010111ad01010001010100060101000d0102000301030
00101010000010300010101000101020000010100010102000101020001010200
0601010004010100010101000601010006010100080101000001020004010100050101000501010
00101010006010100080100000001010003010100020101000301010006010100
0301010003010000040101000501010009010100080100000001010003010100020101000001010
003010100010101000701010004010000030101007c0101120601011101120601
0111ad0101000101010005010100060100000601010005010600010106000101050002010500010
10400060101000301010001010100050101000601010009010100010101000401
0100050101000101000002010100010101000701010002010000020101000101010002010100010
10100040101000601010004010100010101000401010005010100010100000701
0100020100000201010001010100020101000101010002010100010101000201010007010100010
1000001010100020101007c01011206010111011206010111ac01030001010100
0401010005010200050101000601040003010400030103000401030002010400060101000201030
00101010004010100060101000901000003010000020105000401020002010200
0001030007010300020102000101020001010400030105000201050003010300030105000401020
00901030002010200010102000101040004010300020104000601020002010000
000103007d01011206010111011206010111b8010100070101003d0101000d01010006010100450
101004a010100a401011206010111011206010111c20101009e0101004a010100
a401011206010111011206010111c10101009e01030048010300a30101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
1ff01ff015701011206010111011206010111ff01ff0157010112060101110112
06010111ff01ff015701011206010111011206010111ff01ff01570101120601011101120601011
1ff01ff0157010112060101110112060101119b010100030101000c0100001001
0100ff019201011206010111011206010111270104002a0100001901000027010100030101000b0
101000f010300130100003501000010010000160102001f0100001b0102002901
00000c0102002401020076010112060101110112060101112801010001010000280102000f01000
00601020026010200010102000b0101001001010013010200340100000f010200
160101001e0102001b010100280101000d010100250101007601011206010111011206010111280
101000101010028010000100100000701000027010200010102000a0102002701
00003401010010010000170101001f0100001c010100270102000d0101002501010076010112060
10111011206010111280101000101010039010100300107000101040002010600
01010200010101000201040002010300000102003e010100290101003d010100260103000d01010
02501010076010112060101110112060101112701010002010100020103000401
0300040103000201010001010200020103000401010000010100030105000201030006010200020
1010001010100050100000d010700000106000101060001010700010104000201
0200010102000601030004010300000100000701040007010000000101000001010002010400020
10600010101000001030002010300030102000101020007010400030103000201
0000000101000001010002010400030103000301010000010200070101000301010001010400040
103000201010000010300030103000a0101000d01040003010400030103000001
0000030103000401040076010112060101110112060101112701010002010100000102000101010
00101020001010100010102000101010000010000000102000101010003010100
0301000000010100000101000301010007010100040101000101010000010000000100000001030
0030102000c010700000101000101020002010200050106000301020003010200
0001010009010100030101000201010006010100020101000601010000010100000101000001010
00201010003010100050102000101010003010100040101000101010007010100
0001020002010100010101000101010000010100000101000001010002010100040101000401010
00101010006010100030101000101020000010100020101000101010002010200
010101000101010001010100090101000d010200000101000101010002010100010101000201010
00201010001010100020101000001020076010112060101110112060101112701
0100010101000101010002010100010101000201000002010100020100000301020001010100020
10100060101000001010003010100060101000501010001010100020102000001
0100040100000d01010000010100000101000301030002010200050103000001010003010200040
103000a0101000301010003010000060101000201010006010100000101000001
0100000101000201010003010100050101000201010003010100050101000001000007010100020
10100010101000301010000010100000101000001010000010100020101000401
0100040101000101010006010100000101000001010001010100010101000101010002010100020
10100020101000001010002010100090101000301070001010100020101000001
0100020101000101010003010000010101000201010001010100020101007601011206010111011
20601011127010100010101000001010002010100030101000401010008010100
0701010006010000010101000301010006010100040101000201010002010100010101001301010
0000101000001010001010500020102000501020007010200040103000a010100
040102000c010300060101000001010000010100030103000301010005010100080101000601010
00801010002010100010101000301010000010100000101000001010003010300
0401010004010100010101000601010000010100000101000101010001010100010106000201010
00501060009010100030107000101010002010100030103000201020004010600
0101010002010100760101120601011101120601011126010100020101000001040006010200020
10100080101000701010005010100010101000201010007010100040101000201
0100010101000201000014010100000101000001010000010200000102000201020005010200070
10200040103000a01010006010200080101000101010006010100000101000001
0100010101000101010003010100050101000801010006010100080101000201010001010100030
10100000101000001010000010100010101000101010004010100040101000101
010006010100000101000001010001010100010101000101010007010100050101000e0101000d0
10100020101000101010001010100040102000201010006010100020101007601
0112060101110112060101112601010001010100010101000701000002010100010101000701010
00701010006010100000101000301010006010100050101000101010002010100
0101010014010100030101000001020000010200020102000001010002010200070102000301010
00001020009010100030100000301010006010100020101000601010000010100
0001010000010100020101000301010005010100080101000501000000010100070101000201010
00101010003010100000101000001010000010100000101000201010004010100
0401010001010100070101000001020002010100010101000101010007010100050101000e01010
00d01010002010100000101000201010001010000030101000101010006010100
0201010076010112060101110112060101112601010001010100020101000201000001010100010
10200020101000201000002010100070101000101000003010100000101000301
01000101000003010100010100000201010001010100020101000101010000010000020100000e0
10200010102000001070001010500010104000401060000010200010102000801
0100030101000201010006010100010102000601010000010100000101000001010001010200030
10100010100000201010008010100040101000101010007010100000102000201
0100010101000101010000010100000101000001010001010200040101000401010001010100070
10100010101000201010001010100020101000201000002010100060101000201
0000090101000d01020000010100010101000101020001010100020101000201010002010000020
10100000102007601011206010111011206010111250104000501030003010300
0501030003010100080102000301040005010200050102000401020003010100030101000201020
00d01020001010200010102000001020002010300020104000401060000010200
0001030006010500010100000001030008010200010101000501010000010100000101000101020
00101010003010200020104000401050001010200010102000701020000010100
0201030002010100000101000001010001010200010101000101050001010200000103000601000
0030100000101020000010300020103000201040005010300090104000a010100
0001020003010200010101000001000000010300040103000401020000010100750101120601011
10112060101115c0101002c010000ff0117010500ac0101120601011101120601
01115c010100ff01f8010112060101110112060101115b010300ff01f7010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
011206010111ff01ff015701011206010111011206010111ff01ff0157010112060101110112060
10111ff01ff015701011206010111011206010111ff01ff015701011206010111
0112060101119e01000011010200160100001e01000031010200090103001801020011010000040
10200490102001901030085010112060101110112060101119d01020011010100
150102001c0102003101010008010100010101001801010011010000050101004a0101001b01010
085010112060101110112060101119e01000012010100160100001e0100003201
010008010100010101001801010010010100050101004a0101001b0101008501011206010111011
206010111b20101006a010100080101001c01010010010100050101004a010100
1b01010085010112060101110112060101119c01030003010100000102000401040003010300020
10200010102000101030003010100000102000301030000010100060103000401
0300000100000601020000010200020103000001000003010300040104000801010006010300020
10100000103000701040004010300020106000201040007010100000103000301
0300020101000301010001010300000100000701040002010100000102000401040008010300040
10300050101000301020000010200010100000001010000010100010101000001
020003010300000100005f010112060101110112060101119e01010004010100010101000201010
00001020002010100010101000201010001010100040101000401010001010100
0101010001010100000100000801010003010100020101000701010001010100010101000201010
00201010001010100020101000001020007010400030101000101010002010200
0101010006010200000101000201010001010100030101000501020000010100070102000101010
00101010001010100010101000301010000010100020101000601010002010100
0201010001010100020101000001020007010100010101000201010001010100040101000401010
00101010001010100000101000001010001010100010101000101010002010100
5f010112060101110112060101119e0101000401010001010100010101000201010001010100020
10100030101000001000005010100040101000101010001010100010101000a01
0100030101000301000007010100010101000101010003010000010101000201010001010100020
10100080101000401010003010100010101000201010006010100020101000001
0100030101000201010005010100010101000701010002010100000101000301010000010100000
10100000101000001010003010000060101000201010002010100010101000101
0100020101000601010002010100010101000301010003010100040101000101010001010100000
1010000010100010101000101010001010100030100005f010112060101110112
060101119e010100040101000101010001010100020101000101060004010100060101000401010
00101010001010100010101000a010100040102000a0101000101010002010200
040106000101010002010100080101000401010003010100010101000b010100020101000001010
00301010002010100050101000101010007010100050101000301010000010100
0001010000010100010102000c01030002010100010101000101010002010100060101000601010
00301010003010100040101000101010001010100000101000001010001010100
010101000201020062010112060101110112060101119e010100040101000101010001010100020
101000101010009010100060101000401010001010100020103000b0101000601
0200080101000101010004010200020101000601010002010100080101000401010003010100010
101000b0101000201010000010100030101000201010005010100010101000701
0100050101000301010000010100000101000001010003010200080101000101010002010100010
10100010101000201010006010100060101000301010003010100040101000101
0100010101000001010000010100010101000101010004010200600101120601011101120601011
19e01010004010100010101000101010002010100010101000801000000010100
050101000401010001010100010100000f010100030100000301010007010100010101000101000
00301010001010100060101000201010008010100040101000301010001010100
0b01010002010100000101000301010002010100050101000101010007010100050101000301010
00101010000010200010100000301010006010100020101000201010001010100
0101010002010100060101000301000001010100030101000301010004010100010101000101010
00001010000010100010101000101010001010000030101005f01011206010111
0112060101119e01010004010100010101000201010000010200020101000201000002010100010
10100040101000401010001010100010105000a01010003010100020101000701
0100000102000101010002010100020101000201000002010100000102000801010005010100010
10100020101000b01020000010100020101000101010003010100010100000201
0100010101000701010006010100010101000201010001010100010101000201010006010100010
10200020101000101010002010100000102000701010001010100020101000101
0100040101000401010000010200010101000001010000010100010101000101010001010100020
101000401000059010112060101110112060101119c0105000101020000010300
0201020000010100020103000201020001010200010105000101020000010300010105000701050
00101000000010300090102000001010000010000000103000401030004010200
0001010006010300050103000201040008010100000102000401030005010200020102000001030
00501040005010300030100000301000001010000000103000801020001010100
0001020000010300020102000001010007010300040103000301050003010200000101000001010
00001010000010100000102000001030000010000000103000401020058010112
06010111011206010111da01000004010000ff011a0100005901011206010111011206010111da0
1010002010100ff017501011206010111011206010111db010400ff0176010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff015701011206010111011206010111ff01ff0157010112
06010111011206010111ff01ff015701011206010111011206010111ff01ff01570101120601011
1011206010111ff01ff01570101120601011100120911ff01ff01570101120811
09120011ff01ff01570109120011011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff12ff12591206010111011206010011
ff12ff125a120601011101121e0100110012ff01ff012701001100121e01011101121e010011001
2ff01ff012701001100121e01011101121e0100110012ff01ff01270100110012
1e01011101121e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff01270
1001100121e01011101121e0100110012ff01ff012701001100121e0101110112
1e0100110012ff01ff012701001100121e01011101121f110012ff11ff112811001220110012ff1
1ff116c11
pop pop setmatrix

/#copies 1 def
grestore
%%Trailer