Annotation of OpenXM/doc/compalg/ps/2d.ps, Revision 1.1.1.1
1.1 noro 1: %!PS-Adobe-2.0 EPSF-1.2
2: %%BoundingBox: 53.000000 121.183830 559.000000 701.056175
3: %%Creator: /usr/bin/X11/xwd2ps
4: %%CreationDate: Tue Oct 29 14:26:39 1996
5: %%Title: standard input
6: %%EndComments
7: % /usr/bin/X11/xwd2ps -- program written by Robert C. Tatar and Craig A. McGowan.
8: % The command used to create this file (missing quotes on strings):
9: % /usr/bin/X11/xwd2ps
10: % by geisha:noro (Masayuki Noro,Numazu,7551-5583)
11: % Information from XWD rasterfile header:
12: % width = 423, height = 485, depth = 8
13: % file_version = 7, pixmap_format = 2, byte_order = 1
14: % bitmap_unit = 32, bitmap_bit_order = 1, bitmap_pad = 32
15: % bits_per_pixel = 8, bytes_per_line = 424, visual_class = 3
16: % bits/rgb = 8, colormap entries = 256, ncolors = 256
17: % Portion of raster image in this file:
18: % starting line = 1
19: % ending line = 485
20: % starting column = 1
21: % ending column = 423
22: gsave
23: /inch {72 mul} def
24: /buffer 2 string def
25: /rgbmap 768 string def
26: /rgb (000) def
27: /pixels 768 string def
28: %%Title: colorimage.ps
29: % Written 11-4-88 by Bob Tatar
30: % U.S. Mail: GE-CRD, PO Box 8, KW-C214, Schenectady, NY 12301
31: % E-Mail: tatar@crd.ge.com
32: % colorimage procedure to be used on monochrome printers
33: % or when the colorimage procedure is not available
34: % NOTE: Only 1 color mode is supported: single proc. & RGB
35:
36: systemdict /colorimage known not { % only create if not in systemdict
37: % Utility procedure for colorimage operator. This procedure takes a
38: % string of rgb encoded values and creates a string 1/3 as long with
39: % monochrome values. This procedure assumes 8 bits/color (i.e.
40: % 1 character/color)
41: % storage format for input string: (r1 g1 b1 r2 g2 b2 r3 g3 b3 ... )
42: % storage format for output string: (g1 g2 g3 ... )
43:
44: /colortograyscale { %def % (string)
45: dup /rgbdata exch store % (string)
46: length 3 idiv % Ns/3
47: /npixls exch store % ; npixls => Ns/3
48: /indx 0 store % ; indx => 0
49: /pixls npixls string store % ; pixls => (....)
50: 0 1 npixls -1 add { % counter
51: pixls exch % pixls counter
52: rgbdata indx get .3 mul % pixls counter .3*rgbdata(ind)
53: rgbdata indx 1 add get .59 mul add % pixls counter .3*rgbdata(ind) +
54: % .59*rgbdata(ind+1)
55: rgbdata indx 2 add get .11 mul add % pixls counter .3*rgbdata(ind) + .59
56: % *rgbdata(ind+1)+.11*rgbdata(ind+2)
57: cvi % pixls counter <grayscale value>
58: put %
59: /indx indx 3 add store % ; /ind => ind+3
60: } for % repeat for each rgb value
61: pixls % (pixls)
62: } bind def % ; /colortograyscale -> dictionary
63:
64: % Utility procedure for colorimage operator. This procedure takes two
65: % procedures off the stack and merges them into a single procedure.
66:
67: /mergeprocs { %def % {proc1} {proc2}
68: dup length % {proc1} {proc2} N2
69: 3 -1 roll % {proc2} N2 {proc1}
70: dup % {proc2} N2 {proc1} {proc1}
71: length % {proc2} N2 {proc1} N1
72: dup % {proc2} N2 {proc1} N1 N1
73: 5 1 roll % N1 {proc2} N2 {proc1} N1
74: 3 -1 roll % N1 {proc2} {proc1} N1 N2
75: add % N1 {proc2} {proc1} N1+N2
76: array cvx % N1 {proc2} {proc1} { ... }
77: dup % N1 {proc2} {proc1} { ... } { ... }
78: 3 -1 roll % N1 {proc2} { ... } { ... } {proc1}
79: 0 exch % N1 {proc2} { ... } { ... } 0 {proc1}
80: putinterval % N1 {proc2} { <<{proc1}>> ... }
81: dup % N1 {proc2} { <<{proc1}>> ... } { <<{proc1}>> ... }
82: 4 2 roll % { <<{proc1}>> ... } { <<{proc1}>> ... } N1 {proc2}
83: putinterval % { <<{proc1}>> <<{proc2}>> }
84: } bind def % ; /mergeprocs => dictionary
85:
86: /colorimage { %def % {imageproc} multiproc ncolors
87: pop % {imageproc} multiproc ; assume 3 colors
88: pop % {imageproc} ; assume false
89: {colortograyscale} % {imageproc} {colortograyscale}
90: mergeprocs % {imageproc colortograyscale}
91: image % construct monochrome image
92: } bind def % ; /colorimage => dictionary
93: } if % only create if it doesn't already exist
94: /drawcolorimage {
95: 423 485 8
96: [423 0 0 -485 0 485]
97: {currentfile buffer readhexstring pop pop % get run length & color info
98: /npixels buffer 0 get 1 add 3 mul store % number of pixels (run length)
99: /color buffer 1 get 3 mul store % color of pixels
100: % /pixels npixels string store % create string to hold colors
101: /rgb rgbmap color 3 getinterval store % get rgb value
102: 0 3 npixels -1 add {
103: pixels exch rgb putinterval
104: } for
105: pixels 0 npixels getinterval % Return color values
106: }
107: false 3
108: colorimage
109: } bind def
110: 0.750000 inch 1.696998 inch translate
111: matrix currentmatrix
112: 7.000000 inch 8.026005 inch scale
113:
114: % get rgb color table
115: currentfile rgbmap readhexstring pop pop
116: ffffff
117: 000000
118: ff0000
119: 00ff00
120: ffff00
121: 0000ff
122: ff00ff
123: 00ffff
124: b3b3b3
125: d3d3d3
126: 747474
127: a9a9a9
128: 5f9ea0
129: 325455
130: b9d5d6
131: 729fff
132: c4d7ff
133: 3e578c
134: 6187d9
135: ffe4c4
136: ababab
137: dedede
138: 606060
139: 919191
140: fa1340
141: 3bfa34
142: 5151fb
143: 7f7f7f
144: ffa500
145: ffc0cb
146: 87ceeb
147: ffd700
148: 70db93
149: f0e68c
150: ee82ee
151: d7d7d7
152: d6d6d6
153: d4d4d4
154: d3d3d3
155: d2d2d2
156: d0d0d0
157: cfcfcf
158: cdcdcd
159: cccccc
160: cbcbcb
161: c9c9c9
162: c8c8c8
163: c6c6c6
164: c5c5c5
165: c4c4c4
166: c2c2c2
167: c1c1c1
168: bfbfbf
169: bebebe
170: bdbdbd
171: bbbbbb
172: bababa
173: b8b8b8
174: b7b7b7
175: b6b6b6
176: b4b4b4
177: b3b3b3
178: b1b1b1
179: b0b0b0
180: afafaf
181: adadad
182: acacac
183: aaaaaa
184: a9a9a9
185: a8a8a8
186: a6a6a6
187: a5a5a5
188: a4a4a4
189: a2a2a2
190: a1a1a1
191: 9f9f9f
192: 9e9e9e
193: 9d9d9d
194: 9b9b9b
195: 9a9a9a
196: 989898
197: 979797
198: 969696
199: 949494
200: 939393
201: 919191
202: 909090
203: 8f8f8f
204: 8d8d8d
205: 8c8c8c
206: 8a8a8a
207: 898989
208: 888888
209: 868686
210: 858585
211: 838383
212: 828282
213: 818181
214: 7e7e7e
215: 7c7c7c
216: 7b7b7b
217: 7a7a7a
218: 787878
219: 777777
220: 767676
221: 747474
222: 737373
223: 717171
224: 6f6f6f
225: 6d6d6d
226: 6c6c6c
227: 6a6a6a
228: 696969
229: 686868
230: 666666
231: 656565
232: 636363
233: 626262
234: 616161
235: 5f5f5f
236: 5e5e5e
237: 5c5c5c
238: 5b5b5b
239: 5a5a5a
240: 585858
241: 575757
242: 555555
243: 545454
244: 535353
245: 515151
246: 505050
247: 4e4e4e
248: 73bdb0
249: ffd100
250: 8a00ff
251: 999999
252: ffff00
253: 333333
254: 444444
255: add8e6
256: 000000
257: 000000
258: 000000
259: 000000
260: 000000
261: 000000
262: 000000
263: 000000
264: 000000
265: 000000
266: 000000
267: 000000
268: 000000
269: 000000
270: 000000
271: 000000
272: 000000
273: 000000
274: 000000
275: 000000
276: 000000
277: 000000
278: 000000
279: 000000
280: 000000
281: 000000
282: 000000
283: 000000
284: 000000
285: 000000
286: 000000
287: 000000
288: 000000
289: 000000
290: 000000
291: 000000
292: 000000
293: 000000
294: 000000
295: 000000
296: 000000
297: 000000
298: 000000
299: 000000
300: 000000
301: 000000
302: 000000
303: 000000
304: 000000
305: 000000
306: 000000
307: 000000
308: 000000
309: 000000
310: 000000
311: 000000
312: 000000
313: 000000
314: 000000
315: 000000
316: 000000
317: 000000
318: 000000
319: 000000
320: 000000
321: 000000
322: 000000
323: 000000
324: 000000
325: 000000
326: 000000
327: 000000
328: 000000
329: 000000
330: 000000
331: 000000
332: 000000
333: 000000
334: 000000
335: 000000
336: 000000
337: 000000
338: 000000
339: 000000
340: 000000
341: 000000
342: 000000
343: 000000
344: 000000
345: 000000
346: 000000
347: 000000
348: 000000
349: 000000
350: 000000
351: 000000
352: 000000
353: 000000
354: 000000
355: 000000
356: 000000
357: 000000
358: 000000
359: 000000
360: 000000
361: 000000
362: 000000
363: 000000
364: 000000
365: 000000
366: 000000
367: 000000
368: 000000
369: 000000
370: 000000
371: 000000
372:
373:
374: drawcolorimage
375: ff01a6010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001071c
376: 2501031c2501031c3a01031c3a01031c3301961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c
377: 000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001
378: 381f0001031c000131200001961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c000113180101
379: 0d180001031c00010c1d0101061d01010b1d0001031c0001211e0101141e0001031c0001051f02011e1f02010d1f0001031c0001212001010d200001961c00010001071c00011318
380: 01010318010107180001031c00010c1d0101061d01010b1d0001031c0001211e0101141e0001031c0001041f0101001f01011e1f01010d1f0001031c0001212001010d200001961c
381: 00010001071c00011918010107180001031c0001151d01010b1d0001031c0001381e0001031c0001041f0101211f01010d1f0001031c000131200001961c00010001071c00010418
382: 04010018010101180101011802010218040105180001031c0001031d0101011d0101011d0201031d0401011d0301051d0001031c0001031e0401011e0401021e0301021e0301021e
383: 0201031e0301021e0301051e0001031c0001041f0101041f0301011f0401011f0101001f0101011f0101011f0101021f0101031f0301051f0001031c000103200401022003010220
384: 03010120010101200101012002010320030105200001961c00010001071c000103180101011801010018010101180101021801010318010107180001031c0001031d0101011d0101
385: 021d0101021d0101011d0101001d0101011d0101041d0001031c0001031e0101011e0101001e0101011e0101001e0101011e0101001e0101011e0101021e0101021e0101011e0101
386: 001e0101011e0101041e0001031c0001031f0301021f0101011f0101001f0101011f0101001f0501001f0101011f0101021f0101061f0101041f0001031c00010320010101200101
387: 002001010120010104200101002001010120010102200101022001010120010104200001961c00010001071c00010318010101180101001801010118010102180101031801010718
388: 0001031c0001031d0101011d0101021d0101021d0101011d0101001d0501041d0001031c0001031e0101011e0101001e0101041e0501001e0101061e0101031e0101031e0501041e
389: 0001031c0001041f0101031f0101011f0101001f0101041f0501001f0101011f0101021f0101031f0401041f0001031c000103200101012001010020010101200101012004010120
390: 0301032001010320010107200001961c00010001071c000103180101011801010018010101180101021801010318010107180001031c0001031d0501021d0101021d0101011d0101
391: 001d0101081d0001031c0001031e0101011e0101001e0101041e0101041e0101061e0101051e0101011e0101081e0001031c0001041f0101031f0101011f0101001f0101041f0101
392: 011f0101001f0101011f0101021f0101021f0101011f0101041f0001031c000103200101012001010020010101200101002001010120010101200301032001010520010105200001
393: 961c00010001071c000104180401001801010118010102180101031801010018010104180001031c0001031d0501021d0101021d0101011d0101001d0101011d0101041d0001031c
394: 0001031e0401011e0101041e0101011e0101001e0101011e0101021e0101021e0101011e0101001e0101011e0101041e0001031c0001041f0101031f0101011f0101001f0101041f
395: 0101011f0101001f0101011f0101021f0101021f0101011f0101041f0001031c00010320010101200101002001010120010100200101012001010020010101200101022001010220
396: 01010120010104200001961c00010001071c00010718010101180401001805010218020105180001031c0001041d0001011d0001011d0501011d0401011d0301051d0001031c0001
397: 031e0101041e0101051e0301021e0301011e0501011e0301021e0301051e0001031c0001041f0101041f0301011f0101041f0101011f0101011f0401001f0501011f0401041f0001
398: 031c0001032001010120010101200301022004010020010101200101002005010120030105200001961c00010001071c00010718010119180001031c0001231d0001031c0001031e
399: 0101321e0001031c0001381f0001031c000131200001961c00010001071c00010718010119180001031c0001231d0001031c0001031e0101321e0001031c0001381f0001031c0001
400: 31200001961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c000123180001031c0001231d0001
401: 031c0001381e0001031c0001381f0001031c000131200001961c00010001071c2501031c2501031c3a01031c3a01031c3301961c00010001ff1ca41c00010001ff1ca41c00010001
402: ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001031cff019101031c0007000100070001000700010007031c
403: 00010001031c0001c6000501c2000001031c000104070001031c00010001031c0001510001017200001a7300020150000001031c0607031c00010001031c0001530001017000001a
404: 7100020152000001031c000104070001031c00010001031c0001550001016e00001a6f00020154000001031c0607031c00010001031c000157000101db00020156000001031c0001
405: 04070001031c00010001031c000159000101d700020158000001031c0607031c00010001031c00015b000101d30002015a000001031c000104070001031c00010001031c00015d00
406: 0101cf0002015c000001031c0607031c00010001031c00015f0001016400001a650002015e000001031c000104070001031c00010001031c0001610001016200001a630002016000
407: 0001031c0607031c00010001031c0001630001016000001a6100020162000001031c000104070001031c00010001031c0001650001015e00001a5f00020164000001031c0607031c
408: 00010001031c000167000101bb00020166000001031c000104070001031c00010001031c000169000101b700020168000001031c0607031c00010001031c00016b000001b5000101
409: 6a000001031c000104070001031c00010001031c00016c000101b10002016b000001031c0607031c00010001031c00016e0001015500001a560002016d000001031c000104070001
410: 031c00010001031c0001700001015300001a540002016f000001031c0607031c00010001031c0001720001015100001a5200020171000001031c000104070001031c00010001031c
411: 0001740001014f00001a5000020173000001031c0607031c00010001031c0001760001019d00020175000001031c000104070001031c00010001031c000178000101990002017700
412: 0001031c0607031c00010001031c00017a0000019700010179000001031c000104070001031c00010001031c00017b000101930002017a000001031c0607031c00010001031c0001
413: 7d0001014600001a470002017c000001031c000104070001031c00010001031c00017f0001014400001a450002017e000001031c0607031c00010001031c0001810001014200001a
414: 4300020180000001031c000104070001031c00010001031c0001830000014100001a4200010182000001031c0607031c00010001031c0001840001018100020183000001031c0001
415: 04070001031c00010001031c0001860001017d00020185000001031c0607031c00010001031c0001880001017900020187000001031c000104070001031c00010001031c00018a00
416: 00017700010189000001031c0607031c00010001031c00018b0001013800001a390002018a000001031c000104070001031c00010001031c00018d0001013600001a370002018c00
417: 0001031c0607031c00010001031c00018f0001013400001a350002018e000001031c000104070001031c00010001031c0001910000013300001a3400010190000001031c0607031c
418: 00010001031c0001920001016500020191000001031c000104070001031c00010001031c0001940001016100020193000001031c0607031c00010001031c0001960000015f000101
419: 95000001031c000104070001031c00010001031c0001970001015b00020196000001031c0607031c00010001031c0001990001012a00001a2b00020198000001031c000104070001
420: 031c00010001031c00019b0000012900001a2a0001019a000001031c0607031c00010001031c00019c0001012700001a280002019b000001031c000104070001031c00010001031c
421: 00019e0001012500001a260002019d000001031c0607031c00010001031c0001a00000014b0001019f000001031c000104070001031c00010001031c0001a100010147000201a000
422: 0001031c0607031c00010001031c0001a300010143000201a2000001031c000104070001031c00010001031c0001a500000141000101a4000001031c0607031c00010001031c0001
423: a60001011d00001a1e000201a5000001031c000104070001031c00010001031c0001a80000011c00001a1d000101a7000001031c0607031c00010001031c0001a90001011a00001a
424: 1b000201a8000001031c000104070001031c00010001031c0001ab0001011800001a19000201aa000001031c0607031c00010001031c0001ad00000131000101ac000001031c0001
425: 04070001031c00010001031c0001ae0001012d000201ad000001031c0607031c00010001031c0001b00000012b000101af000001031c000104070001031c00010001031c0001b100
426: 010127000201b0000001031c0607031c00010001031c0001b30000011100001a12000101b2000001031c000104070001031c00010001031c0001b40001010f00001a10000201b300
427: 0001031c0607031c00010001031c0001b60000010e00001a0f000101b5000001031c000104070001031c00010001031c0001b70001010c00001a0d000201b6000001031c0607031c
428: 00010001031c0001b900000119000101b8000001031c000104070001031c00010001031c0001ba00010115000201b9000001031c0607031c00010001031c0001bc00000113000101
429: bb000001031c000104070001031c00010001031c0001bd0001010f000201bc000001031c0607031c00010001031c0001bf0000010500001a06000101be000001031c000104070001
430: 031c00010001031c0001c00001010300001a04000201bf000001031c0607031c00010001031c0001c20000010200001a03000101c1000001031c000104070001031c00010001031c
431: 0001c30001010000001a01000201c2000001031c0607031c00010001031c0001c500000101000101c4000001031c000104070001031c00010001031c0001c6000201c5000001031c
432: 0607031c00010001031c0001c500010100000001c5000001031c000104070001031c00010001031c0001c400010102000001c4000001031c0607031c00010001031c0001c2000201
433: 0000001a02000101c2000001031c000104070001031c00010001031c0001c10001010200001a04000001c1000001031c0607031c00010001031c0001c00001010300001a05000001
434: c0000001031c000104070001031c00010001031c0001be0002010400001a06000101be000001031c0607031c00010001031c0001bd00010110000001bd000001031c000104070001
435: 031c00010001031c0001bc00010112000001bc000001031c0607031c00010001031c0001ba00020114000101ba000001031c000104070001031c00010001031c0101b80001011800
436: 0001b9000001031c0607031c00010001031c0101b70001010b00001a0d000001b8000001031c000104070001031c00010001031c000100000001b40002010c00001a0e000101b400
437: 000100000001031c0607031c00010001031c000100000001b30001010e00001a10000001b300000100000001031c000104070001031c00010001031c000101000001b10001010f00
438: 001a11000001b100010100000001031c0607031c00010001031c000101000001af00020124000101af00000101000001031c000104070001031c00010001031c000102000001ad00
439: 010128000001ad00010101000001031c0607031c00010001031c000102000001ac0001012a000001ac00000102000001031c000104070001031c00010001031c000103000001a900
440: 02012c000101a900010102000001031c0607031c00010001031c000103000001a80001011600001a18000001a800000103000001031c000104070001031c00010001031c00010400
441: 0001a60001011700001a19000001a600010103000001031c0607031c00010001031c000104000001a50001011800001a1a000001a500000104000001031c000104070001031c00010001
442: 031c000105000001a20002011900001a1b000101a200010104000001031c0607031c00010001031c000105000001a10001013a000001a100000105000001031c000104070001031c
443: 00010001031c0001060000019f0001013c0000019f00010105000001031c0607031c00010001031c0001060000019e0001011f0000011d0000019e00000106000001031c00010407
444: 0001031c00010001031c0001070000019c0001011f0001011e0000019c00010106000001031c0607031c00010001031c0001070000019a0002011f00001a000000011f0001019a00
445: 000107000001031c000104070001031c00010001031c000108000001980001012100001a00000001210000019800010107000001031c0607031c00010001031c0001080000019700
446: 01012200001a00000001220000019700000108000001031c000104070001031c00010001031c000109000001950001012300001a0201220000019500010108000001031c0607031c
447: 00010001031c0001090000019400010124000501210000019400000109000001031c000104070001031c00010001031c00010a000001910002014e0001019100010109000001031c
448: 0607031c00010001031c00010a0000019000010152000001900000010a000001031c000104070001031c00010001031c00010b0000018e000101540000018e0001010a000001031c
449: 0607031c00010001031c00010b0000018d0001012900001a2b0000018d0000010b000001031c000104070001031c00010001031c00010c0000018b0001012a00001a2c0000018b00
450: 01010b000001031c0607031c00010001031c00010c0000018a0001012b00001a2d0000018a0000010c000001031c000104070001031c00010001031c00010d000001870002012c00
451: 001a2e000101870001010c000001031c0607031c00010001031c00010e0000018500010160000001850001010d000001031c000104070001031c00010001031c00010e0000018400
452: 010162000001840000010e000001031c0607031c00010001031c00010f0000018200010164000001820001010e000001031c000104070001031c00010001031c00010f0000018100
453: 010166000001810000010f000001031c0607031c00010001031c0001100000017f0001013200001a340000017f0001010f000001031c000104070001031c00010001031c00011000
454: 00017e0001013300001a350000017e00000110000001031c0607031c00010001031c0001110000017c0001013400001a360000017c00010110000001031c000104070001031c00010001
455: 031c0001110000017b0001013500001a370000017b00000111000001031c0607031c00010001031c00011200000179000101700000017900010111000001031c000104070001031c
456: 00010001031c00011200000177000201720001017700000112000001031c0607031c00010001031c00011300000175000101760000017500010112000001031c000104070001031c
457: 00010001031c00011300000174000101780000017400000113000001031c0607031c00010001031c000114000001720001013b00001a3d0000017200010113000001031c00010407
458: 0001031c00010001031c000114000001710001013c00001a3e0000017100000114000001031c0607031c00010001031c0001150000016f0001013d00001a3f0000016f0001011400
459: 0001031c000104070001031c00010001031c0001160000016d0001013e00001a400000016d00010115000001031c0607031c00010001031c0001160000016c000101820000016c00
460: 000116000001031c000104070001031c00010001031c0001170000016a000101840000016a00010116000001031c0607031c00010001031c00011700000169000101860000016900
461: 000117000001031c000104070001031c00010001031c00011800000167000101880000016700010117000001031c0607031c00010001031c000118000001660001014300001a4500
462: 00016600000118000001031c000104070001031c00010001031c000119000001640001014400001a460000016400010118000001031c0607031c00010001031c0001190000016300
463: 01014500001a470000016300000119000001031c000104070001031c00010001031c00011a000001610001014600001a480000016100010119000001031c0607031c00010001031c
464: 00011b0000015f000101920000015f0001011a000001031c000104070001031c00010001031c00011b0000015e000101940000015e0000011b000001031c0607031c00010001031c
465: 00011c0000015c000101960000015c0001011b000001031c000104070001031c00010001031c00011c0000015b000101980000015b0000011c000001031c0607031c00010001031c
466: 00011d000001590001014b00001a4d000001590001011c000001031c000104070001031c00010001031c00011d000001580001014c00001a4e000001580000011d000001031c0607
467: 031c00010001031c00011e000001560001014d00001a4f000001560001011d000001031c000104070001031c00010001031c00011f000001540001014e00001a5000000154000101
468: 1e000001031c0607031c00010001031c00011f00000153000101a2000001530000011f000001031c000104070001031c00010001031c00012000000152000001a300000152000101
469: 1f000001031c0607031c00010001031c00012000000151000101a40000015100000120000001031c000104070001031c00010001031c0001210000014f000101a60000014f000101
470: 20000001031c0607031c00010001031c0001210000014e0001015200001a540000014e00000121000001031c000104070001031c00010001031c0001220000014c0001015300001a
471: 550000014c00010121000001031c0607031c00010001031c0001230000014a0001015400001a560000014a00010122000001031c000104070001031c00010001031c000123000001
472: 490001015500001a570000014900000123000001031c0607031c00010001031c00012400000147000101b00000014700010123000001031c000104070001031c00010001031c0001
473: 2400000146000101b20000014600000124000001031c0607031c00010001031c00012500000144000101b40000014400010124000001031c000104070001031c00010001031c0001
474: 2600000142000101b60000014200010125000001031c0607031c00010001031c000126000001420000015a00001a5b0000014200000126000001031c000104070001031c00010001
475: 031c000127000001400001015a00001a5c0000014000010126000001031c0607031c00010001031c0001270000013f0001015b00001a5d0000013f00000127000001031c00010407
476: 0001031c00010001031c0001280000013d0001015c00001a5e0000013d00010127000001031c0607031c00010001031c0001290000013b000101be0000013b00010128000001031c
477: 000104070001031c00010001031c0001290000013a000101c00000013a00000129000001031c0607031c00010001031c00012a00000138000101c20000013800010129000001031c
478: 000104070001031c00010001031c00012a00000138000001c3000001380000012a000001031c0607031c00010001031c00012b000001360001016000001a62000001360001012a00
479: 0001031c000104070001031c00010001031c00012c000001340001016100001a63000001340001012b000001031c0607031c00010001031c00012c000001330001016200001a6400
480: 0001330000012c000001031c000104070001031c00010001031c00012d000001310001016300001a65000001310001012c000001031c0607031c00010001031c00012d0000013000
481: 0101cc000001300000012d000001031c000104070001031c00010001031c00012e0000012f000001cd0000012f0001012d000001031c0607031c00010001031c00012f0000012d00
482: 0101ce0000012d0001012e000001031c000104070001031c00010001031c00012f0000012c000101d00000012c0000012f000001031c0607031c00010001031c0001300000012a00
483: 01016700001a690000012a0001012f000001031c000104070001031c00010001031c000131000001280001016800001a6a0000012800010130000001031c0607031c00010001031c
484: 000131000001270001016900001a6b0000012700000131000001031c000104070001031c00010001031c000132000001260000016a00001a6b0000012600010131000001031c0607
485: 031c00010001031c00013200000125000101d80000012500000132000001031c000104070001031c00010001031c00013300000123000101da0000012300010132000001031c0607
486: 031c00010001031c00013400000121000101dc0000012100010133000001031c000104070001031c00010001031c00013400000120000101de0000012000000134000001031c0607
487: 031c00010001031c0001350000011f0000016e00001a6f0000011f00010134000001031c000104070001031c00010001031c0001360000011d0001016e00001a700000011d000101
488: 35000001031c0607031c00010001031c0001360000011c0001016f00001a710000011c00000136000001031c000104070001031c00010001031c0001370000011a0001017000001a
489: 720000011a00010136000001031c0607031c00010001031c00013800000119000001e50000011900010137000001031c000104070001031c00010001031c00013800000118000101
490: e60000011800000138000001031c0607031c00010001031c00013900000116000101e80000011600010138000001031c000104070001031c00010001031c00013a00000114000101
491: ea0000011400010139000001031c0607031c00010001031c00013a000001140000017400001a75000001140000013a000001031c000104070001031c00010001031c00013b000001
492: 120001017400001a76000001120001013a000001031c0607031c00010001031c00013c000001100001017500001a77000001100001013b000001031c000104070001031c00010001
493: 031c00013c0000010f0001017600001a780000010f0000013c000001031c0607031c00010001031c00013d0000010e000001f10000010e0001013c000001031c000104070001031c
494: 00010001031c00013e0000010c000101f20000010c0001013d000001031c0607031c00010001031c00013e0000010b000101f40000010b0000013e000001031c000104070001031c
495: 00010001031c00013f00000109000101f6000001090001013e000001031c0607031c00010001031c000140000001080000017a00001a7b000001080001013f000001031c00010407
496: 0001031c00010001031c0001080001013500000107000101200000015800001a0300000162000001130000010700000140000001031c0607031c00010001031c0101060000010100
497: 0001350000010500010118000001060001015800001a010100000001000000015d00000101000101140000010500010140000001031c000104070001031c00010001031c01010900
498: 0001360000010300010119000001070000015800001a000100000101000000015d00000102000001150000010300010141000001031c0607031c00010001031c0101010003010100
499: 010137000001030000011a00000101000301010000015900000100000101000000015d00000102000001150000010300000142000001031c000104070001031c00010001031c0101
500: 060000013a000001010001011a000001070000015900000100000101000000015d00000102000001160000010100010142000001031c0607031c00010001031c0101060003013800
501: 02011b000001060002015800000100000001000000015e000001010002011600020143000001031c000104070001031c00010001031c0101021a0300031a0300031a0300031a0300
502: 031a0300031a0300031a0300031a0300031a010000010000031a0300031a0300031a0300031a00010200031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a
503: 0300031a0300031a0300031a0300031a03000101011a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0001
504: 0200031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a03000001031c0607031c00010001031c0001440001017f00
505: 05017b00010144000001031c000104070001031c00010001031c000143000101000000017e00001a7f0001010000000143000001031c0607031c00010001031c0001420001010200
506: 00017d00001a7e0001010200000142000001031c000104070001031c00010001031c000142000001030000017d00001a7e0000010300000142000001031c0607031c00010001031c
507: 00014100010104000001fb0001010400000141000001031c000104070001031c00010001031c00014000010106000001f90001010600000140000001031c0607031c00010001031c
508: 00014000000108000001f70001010700000140000001031c000104070001031c00010001031c00013f00010108000001f7000001090000013f000001031c0607031c00010001031c
509: 00013e0001010a0000017900001a7a0001010a0000013e000001031c000104070001031c00010001031c00013e0000010c0000017800001a790001010b0000013e000001031c0607
510: 031c00010001031c00013d0001010d0000017700001a780001010d0000013d000001031c000104070001031c00010001031c00013c0001010e0000017700001a780000010f000001
511: 3c000001031c0607031c00010001031c00013c00000110000001ef0001010f0000013c000001031c000104070001031c00010001031c00013b00010111000001ed00010111000001
512: 3b000001031c0607031c00010001031c00013a00010113000001eb000101130000013a000001031c000104070001031c00010001031c00013a00000114000001eb00000114000001
513: 3a000001031c0607031c00010001031c000139000101150000017300001a740001011500000139000001031c000104070001031c00010001031c000138000101170000017200001a
514: 730001011700000138000001031c0607031c00010001031c000138000001190000017100001a720001011800000138000001031c000104070001031c00010001031c000137000101
515: 190000017100001a720000011a00000137000001031c0607031c00010001031c0001360001011b000001e30001011b00000136000001031c000104070001031c00010001031c0001
516: 360000011d000001e10001011c00000136000001031c0607031c00010001031c0001350001011e000001df0001011e00000135000001031c000104070001031c00010001031c0001
517: 340001011f000001df0000012000000134000001031c0607031c00010001031c000134000001210000016d00001a6e0001012000000134000001031c000104070001031c00010001
518: 031c000133000101220000016c00001a6d0001012200000133000001031c0607031c00010001031c000132000101240000016b00001a6c0001012400000132000001031c00010407
519: 0001031c00010001031c000132000001260000016a00001a6b0001012500000132000001031c0607031c00010001031c00013100010126000001d70000012700000131000001031c
520: 000104070001031c00010001031c00013100000128000001d50001012700000131000001031c0607031c00010001031c00013000010129000001d30001012900000130000001031c
521: 000104070001031c00010001031c00012f0001012b000001d10001012b0000012f000001031c0607031c00010001031c00012f0000012d0000016600001a670001012c0000012f00
522: 0001031c000104070001031c00010001031c00012e0001012e0000016500001a660001012e0000012e000001031c0607031c00010001031c00012d0001012f0000016500001a6600
523: 0001300000012d000001031c000104070001031c00010001031c00012d000001310000016400001a65000101300000012d000001031c0607031c00010001031c00012c0001013200
524: 0001c9000101320000012c000001031c000104070001031c00010001031c00012c00000134000001c7000101330000012c000001031c0607031c00010001031c00012b0001013500
525: 0001c5000101350000012b000001031c000104070001031c00010001031c00012a00010137000001c3000101370000012a000001031c0607031c00010001031c00012a0000013800
526: 00016000001a61000001380000012a000001031c000104070001031c00010001031c000129000101390000015f00001a600001013900000129000001031c0607031c00010001031c
527: 0001290000013b0000015e00001a5f0001013a00000129000001031c000104070001031c00010001031c0001280001013c0000015d00001a5e0001013c00000128000001031c0607
528: 031c00010001031c0001270001013e000001bb0001013e00000127000001031c000104070001031c00010001031c00012700000140000001b90001013f00000127000001031c0607
529: 031c00010001031c00012600010141000001b70001014100000126000001031c000104070001031c00010001031c00012600000142000001b70000014200000126000001031c0607
530: 031c00010001031c000125000101430000015900001a5a0001014300000125000001031c000104070001031c00010001031c000124000101450000015800001a5900010145000001
531: 24000001031c0607031c00010001031c000124000001470000015700001a580001014600000124000001031c000104070001031c00010001031c000123000101480000015600001a
532: 570001014800000123000001031c0607031c00010001031c0001230000014a000001ad0001014900000123000001031c000104070001031c00010001031c0001220001014b000001
533: ab0001014b00000122000001031c0607031c00010001031c0001210001014d000001a90001014d00000121000001031c000104070001031c00010001031c0001210000014f000001
534: a70001014e00000121000001031c0607031c00010001031c000120000101500000015100001a520001015000000120000001031c000104070001031c00010001031c000120000001
535: 520000015000001a510001015100000120000001031c0607031c00010001031c00011f000101520000015000001a51000001530000011f000001031c000104070001031c00010001
536: 031c00011f000001540000014f00001a50000101530000011f000001031c0607031c00010001031c00011e000101550000019f000101550000011e000001031c000104070001031c
537: 00010001031c00011d000101570000019d000101570000011d000001031c0607031c00010001031c00011d000001590000019b000101580000011d000001031c000104070001031c
538: 00010001031c00011c0001015a000001990001015a0000011c000001031c0607031c00010001031c00011c0000015c0000014a00001a4b0001015b0000011c000001031c00010407
539: 0001031c00010001031c00011b0001015d0000014900001a4a0001015d0000011b000001031c0607031c00010001031c00011b0000015f0000014800001a490001015e0000011b00
540: 0001031c000104070001031c00010001031c00011a000101600000014700001a48000101600000011a000001031c0607031c00010001031c000119000101620000018f0001016200
541: 000119000001031c000104070001031c00010001031c000119000001640000018d0001016300000119000001031c0607031c00010001031c000118000101650000018b0001016500
542: 000118000001031c000104070001031c00010001031c00011800000167000001890001016600000118000001031c0607031c00010001031c000117000101680000014200001a4300
543: 01016800000117000001031c000104070001031c00010001031c0001170000016a0000014100001a420001016900000117000001031c0607031c00010001031c0001160001016b00
544: 00014000001a410001016b00000116000001031c000104070001031c00010001031c0001160000016d0000013f00001a400001016c00000116000001031c0607031c00010001031c
545: 0001150001016e0000017f0001016e00000115000001031c000104070001031c00010001031c000114000101700000017d0001017000000114000001031c0607031c00010001031c
546: 000114000001720000017b0001017100000114000001031c000104070001031c00010001031c00011300010173000001790001017300000113000001031c0607031c00010001031c
547: 000113000001750000013a00001a3b0001017400000113000001031c000104070001031c00010001031c000112000101760000013900001a3a0001017600000112000001031c0607
548: 031c00010001031c000112000001780001013700001a380002017700000112000001031c000104070001031c00010001031c0001110001017a0000013600001a370001017a000001
549: 11000001031c0607031c00010001031c0001110000017c0000016d0001017b00000111000001031c000104070001031c00010001031c0001100001017d0000016b0001017d000001
550: 10000001031c0607031c00010001031c0001100000017f000001690001017e00000110000001031c000104070001031c00010001031c00010f000101800000016700010180000001
551: 0f000001031c0607031c00010001031c00010f000001820000013100001a32000101810000010f000001031c000104070001031c00010001031c00010e000101830000013000001a
552: 31000101830000010e000001031c0607031c00010001031c00010e000001850000012f00001a30000101840000010e000001031c000104070001031c00010001031c00010d000101
553: 860000012e00001a2f000101860000010d000001031c0607031c00010001031c00010c000101880001015b000201880000010c000001031c000104070001031c00010001031c0001
554: 0c0000018b000001590001018a0000010c000001031c0607031c00010001031c00010b0001018c00000131000001240001018c0000010b000001031c000104070001031c00010001
555: 031c00010b0000018e0000012f000101230001018d0000010b000001031c0607031c00010001031c00010a0001018f0000012800001a05000001220001018f0000010a000001031c
556: 000104070001031c00010001031c00010a000001910000012700001a03010100000121000101900000010a000001031c0607031c00010001031c000109000101920001012500001a
557: 050000011f0002019200000109000001031c000104070001031c00010001031c000109000001950000012400001a040002011d0001019400000109000001031c0607031c00010001
558: 031c00010800010196000001230005011f0001019600000108000001031c000104070001031c00010001031c00010800000198000001470001019700000108000001031c0607031c
559: 00010001031c00010700010199000001450001019900000107000001031c000104070001031c00010001031c0001070000019b000101410002019a00000107000001031c0607031c
560: 00010001031c0001060001019d0000011e00001a1f0001019d00000106000001031c000104070001031c00010001031c0001060000019f0000011d00001a1e0001019e0000010600
561: 0001031c0607031c00010001031c000105000101a00000011c00001a1d000101a000000105000001031c000104070001031c00010001031c000105000001a20000011b00001a1c00
562: 0101a100000105000001031c0607031c00010001031c000104000101a300010135000201a300000104000001031c000104070001031c00010001031c000104000001a60000013300
563: 0101a500000104000001031c0607031c00010001031c000103000101a700000131000101a700000103000001031c000104070001031c00010001031c000103000001a90000012f00
564: 0101a800000103000001031c0607031c00010001031c000102000101aa0001011400001a15000201aa00000102000001031c000104070001031c00010001031c000102000001ad00
565: 00011300001a14000101ac00000102000001031c0607031c00010001031c000101000101ae0000011200001a13000101ae00000101000001031c000104070001031c00010001031c
566: 000101000001b00001011000001a11000201af00000101000001031c0607031c00010001031c000100000101b200000121000101b200000100000001031c000104070001031c00010001
567: 031c000100000001b40000011f000101b300000100000001031c0607031c00010001031c0201b50001011b000201b6000001031c000104070001031c00010001031c0101b8000001
568: 19000101b8000001031c0607031c00010001031c0101b90000010a00001a0b000101b9000001031c000104070001031c00010001031c0001bb0001010800001a09000201ba000001
569: 031c0607031c00010001031c0001bd0000010700001a08000101bc000001031c000104070001031c00010001031c0001be0000010600001a07000101bd000001031c0607031c00010001
570: 031c0001bf0001010b000201be000001031c000104070001031c00010001031c0001c100000109000101c0000001031c0607031c00010001031c0001c200000107000101c1000001
571: 031c000104070001031c00010001031c0001c300010103000201c2000001031c0607031c00010001031c0001c5000001001a00000101c4000001031c000104070001031c00010001
572: 031c0001c600001a0101c5000001031c0607031c00010001031c0001c5000001001a00000001c5000001031c000104070001031c00010001031c0001c4000101001a01000001c400
573: 0001031c0607031c00010001031c0001c200020104000101c2000001031c000104070001031c00010001031c0001c100010108000001c1000001031c0607031c00010001031c0001
574: bf0002010a000101bf000001031c000104070001031c00010001031c0001be0001010e000001be000001031c0607031c00010001031c0001bc0002010600001a08000101bc000001
575: 031c000104070001031c00010001031c0001bb0001010800001a0a000001bb000001031c0607031c00010001031c0001b90002010900001a0b000101b9000001031c000104070001
576: 031c00010001031c0001b80001010b00001a0d000001b8000001031c0607031c00010001031c0001b60002011c000101b6000001031c000104070001031c00010001031c0001b500
577: 010120000001b5000001031c0607031c00010001031c0001b300020122000101b3000001031c000104070001031c00010001031c0001b200010126000001b2000001031c0607031c
578: 00010001031c0001b00002011200001a14000101b0000001031c000104070001031c00010001031c0001af0001011400001a16000001af000001031c0607031c00010001031c0001
579: ad0002011500001a17000101ad000001031c000104070001031c00010001031c0001ac0001011700001a19000001ac000001031c0607031c00010001031c0001aa00020134000101
580: aa000001031c000104070001031c00010001031c0001a800020138000101a8000001031c0607031c00010001031c0001a70001013c000001a7000001031c000104070001031c00010001
581: 031c0001a50002013e000101a5000001031c0607031c00010001031c0001a40001011f00001a21000001a4000001031c000104070001031c00010001031c0001a20002012000001a
582: 22000101a2000001031c0607031c00010001031c0001a00002012200001a24000101a0000001031c000104070001031c00010001031c00019f0001012400001a260000019f000001
583: 031c0607031c00010001031c00019d0002014e0001019d000001031c000104070001031c00010001031c00019b000201520001019b000001031c0607031c00010001031c00019a00
584: 0101560000019a000001031c000104070001031c00010001031c0001980002015800010198000001031c0607031c00010001031c0001960002012c00001a2e00010196000001031c
585: 000104070001031c00010001031c0001950001012e00001a3000000195000001031c0607031c00010001031c0001930002012f00001a3100010193000001031c000104070001031c
586: 00010001031c0001910002013100001a3300010191000001031c0607031c00010001031c0001900001016a00000190000001031c000104070001031c00010001031c00018e000201
587: 6c0001018e000001031c0607031c00010001031c00018c000201700001018c000001031c000104070001031c00010001031c00018a000201740001018a000001031c0607031c00010001
588: 031c0001890001013a00001a3c00000189000001031c000104070001031c00010001031c0001870002013b00001a3d00010187000001031c0607031c00010001031c000185000201
589: 3d00001a3f00010185000001031c000104070001031c00010001031c0001830002013f00001a4100010183000001031c0607031c00010001031c0001820001018600000182000001
590: 031c000104070001031c00010001031c0001800002018800010180000001031c0607031c00010001031c00017e0002018c0001017e000001031c000104070001031c00010001031c
591: 00017c000201900001017c000001031c0607031c00010001031c00017a0002014800001a4a0001017a000001031c000104070001031c00010001031c0001790001014a00001a4c00
592: 000179000001031c0607031c00010001031c0001770002014b00001a4d00010177000001031c000104070001031c00010001031c0001750002014d00001a4f00010175000001031c
593: 0607031c00010001031c000173000201a200010173000001031c000104070001031c00010001031c000171000201a600010171000001031c0607031c00010001031c00016f000201
594: aa0001016f000001031c000104070001031c00010001031c00016d000201ae0001016d000001031c0607031c00010001031c00016b0002015700001a590001016b000001031c0001
595: 04070001031c00010001031c00016a0001015900001a5b0000016a000001031c0607031c00010001031c0001680002015a00001a5c00010168000001031c000104070001031c00010001
596: 031c0001660002015c00001a5e00010166000001031c0607031c00010001031c000164000201c000010164000001031c000104070001031c00010001031c000162000201c4000101
597: 62000001031c0607031c00010001031c000160000201c800010160000001031c000104070001031c00010001031c00015e000201cc0001015e000001031c0607031c00010001031c
598: 00015c0002016600001a680001015c000001031c000104070001031c00010001031c00015a0002016800001a6a0001015a000001031c0607031c00010001031c0001580002016a00
599: 001a050001016400010158000001031c000104070001031c00010001031c0001560002016c00001a04000001010000016500010156000001031c0607031c00010001031c00015400
600: 0201770000016700010154000001031c000104070001031c00010001031c00015200020171000301010001016a00010152000001031c0607031c00010001031c0001500002017800
601: 00016e00010150000001031c000104070001031c00010001031c00014e0002017a0003016d0001014e000001031c0607031c00010001031cff019101031c00010007000100070001
602: 00070001031c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001031c00190001001900010019000100190001001900010019000100190001
603: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
604: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
605: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
606: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
607: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
608: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
609: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
610: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
611: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
612: 001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
613: 00190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010e1c00010001031c0001ff1990190e1c
614: 00010001031cff19901900010e1c00010001031c0001ff198e19000100190e1c00010001031cff19901900010e1c00010001031c0001ff1990190e1c00010001031c001900010019
615: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
616: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
617: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
618: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
619: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
620: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
621: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
622: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
623: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
624: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
625: 000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
626: 0001001900010e1c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c
627: 00010001071c9701031c9701681c00010001071c000195210001031c000195220001681c00010001071c000195210001031c000195220001681c00010001071c000195210001031c
628: 000195220001681c00010001071c000195210001031c000195220001681c00010001071c00015c21010136210001031c00015c22010136220001681c00010001071c00015c210101
629: 36210001031c00015c22010136220001681c00010001071c00015c21010136210001031c00015c22010136220001681c00010001071c000135210101012101010121030102210301
630: 02210301012104010221040136210001031c00013522010101220101012203010222030102220301012204010222040136220001681c00010001071c000135210101012101010021
631: 010101210101002101010121010100210101012101010021010101210101002101010121010136210001031c00013522010101220101002201010122010100220101012201010022
632: 0101012201010022010101220101002201010122010136220001681c00010001071c0001362103010121010104210101012101010021010101210101002101010421010101210101
633: 36210001031c00013522010101220101002201010422010101220101002201010122010100220101042201010122010136220001681c00010001071c000136210301012101010421
634: 010101210101002101010121010100210101042101010121010136210001031c00013522010101220101002201010422010101220101002201010122010100220101042201010122
635: 010136220001681c00010001071c0001352101010121010100210101012101010021010101210101002101010121010100210101042101010121010136210001031c000136220401
636: 00220101012201010022010101220101002201010122010100220101042201010122010136220001681c00010001071c000135210101012101010121030102210301022103010121
637: 01010521040136210001031c000139220101012203010222030102220301012201010522040136220001681c00010001071c000195210001031c0001352201010122010159220001
638: 681c00010001071c000195210001031c0001362203015a220001681c00010001071c000195210001031c000195220001681c00010001071c000195210001031c000195220001681c
639: 00010001071c9701031c9701681c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001
640: ff1ca41c0001ff01a601
641: pop pop setmatrix
642:
643: /#copies 1 def
644: showpage grestore
645: %%Trailer
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>