~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/codetemp.eps

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%!PS-Adobe-3.0 EPSF-3.0
 
2
%%Creator: (ImageMagick)
 
3
%%Title: (codetemp.eps)
 
4
%%CreationDate: (Tue Nov 28 23:50:39 2000)
 
5
%%BoundingBox: 0 0 365 237
 
6
%%DocumentData: Clean7Bit
 
7
%%LanguageLevel: 1
 
8
%%Pages: 0
 
9
%%EndComments
 
10
 
 
11
%%BeginDefaults
 
12
%%PageOrientation: Portrait
 
13
%%EndDefaults
 
14
 
 
15
%%BeginProlog
 
16
%
 
17
% Display a color image.  The image is displayed in color on
 
18
% Postscript viewers or printers that support color, otherwise
 
19
% it is displayed as grayscale.
 
20
%
 
21
/buffer 512 string def
 
22
/byte 1 string def
 
23
/color_packet 3 string def
 
24
/pixels 768 string def
 
25
 
 
26
/DirectClassPacket
 
27
{
 
28
  %
 
29
  % Get a DirectClass packet.
 
30
  %
 
31
  % Parameters:
 
32
  %   red.
 
33
  %   green.
 
34
  %   blue.
 
35
  %   length: number of pixels minus one of this color (optional).
 
36
  %
 
37
  currentfile color_packet readhexstring pop pop
 
38
  compression 0 gt
 
39
  {
 
40
    /number_pixels 3 def
 
41
  }
 
42
  {
 
43
    currentfile byte readhexstring pop 0 get
 
44
    /number_pixels exch 1 add 3 mul def
 
45
  } ifelse
 
46
  0 3 number_pixels 1 sub
 
47
  {
 
48
    pixels exch color_packet putinterval
 
49
  } for
 
50
  pixels 0 number_pixels getinterval
 
51
} bind def
 
52
 
 
53
/DirectClassImage
 
54
{
 
55
  %
 
56
  % Display a DirectClass image.
 
57
  %
 
58
  systemdict /colorimage known
 
59
  {
 
60
    columns rows 8
 
61
    [
 
62
      columns 0 0
 
63
      rows neg 0 rows
 
64
    ]
 
65
    { DirectClassPacket } false 3 colorimage
 
66
  }
 
67
  {
 
68
    %
 
69
    % No colorimage operator;  convert to grayscale.
 
70
    %
 
71
    columns rows 8
 
72
    [
 
73
      columns 0 0
 
74
      rows neg 0 rows
 
75
    ]
 
76
    { GrayDirectClassPacket } image
 
77
  } ifelse
 
78
} bind def
 
79
 
 
80
/GrayDirectClassPacket
 
81
{
 
82
  %
 
83
  % Get a DirectClass packet;  convert to grayscale.
 
84
  %
 
85
  % Parameters:
 
86
  %   red
 
87
  %   green
 
88
  %   blue
 
89
  %   length: number of pixels minus one of this color (optional).
 
90
  %
 
91
  currentfile color_packet readhexstring pop pop
 
92
  color_packet 0 get 0.299 mul
 
93
  color_packet 1 get 0.587 mul add
 
94
  color_packet 2 get 0.114 mul add
 
95
  cvi
 
96
  /gray_packet exch def
 
97
  compression 0 gt
 
98
  {
 
99
    /number_pixels 1 def
 
100
  }
 
101
  {
 
102
    currentfile byte readhexstring pop 0 get
 
103
    /number_pixels exch 1 add def
 
104
  } ifelse
 
105
  0 1 number_pixels 1 sub
 
106
  {
 
107
    pixels exch gray_packet put
 
108
  } for
 
109
  pixels 0 number_pixels getinterval
 
110
} bind def
 
111
 
 
112
/GrayPseudoClassPacket
 
113
{
 
114
  %
 
115
  % Get a PseudoClass packet;  convert to grayscale.
 
116
  %
 
117
  % Parameters:
 
118
  %   index: index into the colormap.
 
119
  %   length: number of pixels minus one of this color (optional).
 
120
  %
 
121
  currentfile byte readhexstring pop 0 get
 
122
  /offset exch 3 mul def
 
123
  /color_packet colormap offset 3 getinterval def
 
124
  color_packet 0 get 0.299 mul
 
125
  color_packet 1 get 0.587 mul add
 
126
  color_packet 2 get 0.114 mul add
 
127
  cvi
 
128
  /gray_packet exch def
 
129
  compression 0 gt
 
130
  {
 
131
    /number_pixels 1 def
 
132
  }
 
133
  {
 
134
    currentfile byte readhexstring pop 0 get
 
135
    /number_pixels exch 1 add def
 
136
  } ifelse
 
137
  0 1 number_pixels 1 sub
 
138
  {
 
139
    pixels exch gray_packet put
 
140
  } for
 
141
  pixels 0 number_pixels getinterval
 
142
} bind def
 
143
 
 
144
/PseudoClassPacket
 
145
{
 
146
  %
 
147
  % Get a PseudoClass packet.
 
148
  %
 
149
  % Parameters:
 
150
  %   index: index into the colormap.
 
151
  %   length: number of pixels minus one of this color (optional).
 
152
  %
 
153
  currentfile byte readhexstring pop 0 get
 
154
  /offset exch 3 mul def
 
155
  /color_packet colormap offset 3 getinterval def
 
156
  compression 0 gt
 
157
  {
 
158
    /number_pixels 3 def
 
159
  }
 
160
  {
 
161
    currentfile byte readhexstring pop 0 get
 
162
    /number_pixels exch 1 add 3 mul def
 
163
  } ifelse
 
164
  0 3 number_pixels 1 sub
 
165
  {
 
166
    pixels exch color_packet putinterval
 
167
  } for
 
168
  pixels 0 number_pixels getinterval
 
169
} bind def
 
170
 
 
171
/PseudoClassImage
 
172
{
 
173
  %
 
174
  % Display a PseudoClass image.
 
175
  %
 
176
  % Parameters:
 
177
  %   class: 0-PseudoClass or 1-Grayscale.
 
178
  %
 
179
  currentfile buffer readline pop
 
180
  token pop /class exch def pop
 
181
  class 0 gt
 
182
  {
 
183
    currentfile buffer readline pop
 
184
    token pop /depth exch def pop
 
185
    /grays columns 8 add depth sub depth mul 8 idiv string def
 
186
    columns rows depth
 
187
    [
 
188
      columns 0 0
 
189
      rows neg 0 rows
 
190
    ]
 
191
    { currentfile grays readhexstring pop } image
 
192
  }
 
193
  {
 
194
    %
 
195
    % Parameters:
 
196
    %   colors: number of colors in the colormap.
 
197
    %   colormap: red, green, blue color packets.
 
198
    %
 
199
    currentfile buffer readline pop
 
200
    token pop /colors exch def pop
 
201
    /colors colors 3 mul def
 
202
    /colormap colors string def
 
203
    currentfile colormap readhexstring pop pop
 
204
    systemdict /colorimage known
 
205
    {
 
206
      columns rows 8
 
207
      [
 
208
        columns 0 0
 
209
        rows neg 0 rows
 
210
      ]
 
211
      { PseudoClassPacket } false 3 colorimage
 
212
    }
 
213
    {
 
214
      %
 
215
      % No colorimage operator;  convert to grayscale.
 
216
      %
 
217
      columns rows 8
 
218
      [
 
219
        columns 0 0
 
220
        rows neg 0 rows
 
221
      ]
 
222
      { GrayPseudoClassPacket } image
 
223
    } ifelse
 
224
  } ifelse
 
225
} bind def
 
226
 
 
227
/DisplayImage
 
228
{
 
229
  %
 
230
  % Display a DirectClass or PseudoClass image.
 
231
  %
 
232
  % Parameters:
 
233
  %   x & y translation.
 
234
  %   x & y scale.
 
235
  %   label pointsize.
 
236
  %   image label.
 
237
  %   image columns & rows.
 
238
  %   class: 0-DirectClass or 1-PseudoClass.
 
239
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
 
240
  %   hex color packets.
 
241
  %
 
242
  gsave
 
243
  currentfile buffer readline pop
 
244
  token pop /x exch def
 
245
  token pop /y exch def pop
 
246
  x y translate
 
247
  currentfile buffer readline pop
 
248
  token pop /x exch def
 
249
  token pop /y exch def pop
 
250
  currentfile buffer readline pop
 
251
  token pop /pointsize exch def pop
 
252
  /Helvetica findfont pointsize scalefont setfont
 
253
  x y scale
 
254
  currentfile buffer readline pop
 
255
  token pop /columns exch def
 
256
  token pop /rows exch def pop
 
257
  currentfile buffer readline pop
 
258
  token pop /class exch def pop
 
259
  currentfile buffer readline pop
 
260
  token pop /compression exch def pop
 
261
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
 
262
  grestore
 
263
} bind def
 
264
%%EndProlog
 
265
%%Page:  1 1
 
266
%%PageBoundingBox: 0 0 366 238
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
366 238
 
272
12.000000
 
273
366 238
 
274
1
 
275
0
 
276
0
 
277
9
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
f8fc00
 
282
008000
 
283
000080
 
284
000000
 
285
008080
 
286
00fcf8
 
287
00ff006d00120103000b0103005b0103000c010200090105001a010300a7001201010005
 
288
020300050101005a010100010101000c0101000901000000010100000100001c0101000c
 
289
010000990012010100050203000501010059010100020101000c0101000b0101001e0101
 
290
000b010100990001010e0001010100050203000501010001014f00070101000601030003
 
291
010400020103000401010004010300020105000101010000010200040101000301030002
 
292
01050002010300030103000a017c00010101000e01010005020300050101005901010005
 
293
010100010101000101010001010100010101000101010003010100030101000101010001
 
294
010100000100000001010001010100010101000301010006010100020101000401010001
 
295
01010001010100010101008600010101000e010100050203000501010059010100050101
 
296
000101010001010100010101000101050003010100030105000101010000010000000101
 
297
000101010001010100030101000301040002010100040105000201010089000101010001
 
298
010a0001010100050203000501010001014f000701010002010100000101000101010001
 
299
010100010101000101010007010100030101000501010000010000000101000101010001
 
300
0101000301010002010100010101000201010004010100080101000a017a000100010101
 
301
00010101000a01010005020300050101005a010100010101000001010001010100010101
 
302
000101010001010100010101000301010003010100010101000101010000010000000101
 
303
000101010001010100030101000201010001010100020101000001010001010100010101
 
304
00010101000101010082010100010001010100010101000a01030003020300030103005b
 
305
010300020103000301020000010100010103000301030003010300020101000201010001
 
306
010400020105000101020000010100020102000301030003010300830101000100010101
 
307
0001010100b1010100ad01010001000101010001010100b0010300ac0101000100010101
 
308
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
 
309
00ff006101010001000101010001010100ff006101010001000101010001010100ff0061
 
310
01010001000101010001010100ff006101010001000101010001010100ff006101010001
 
311
000101010001010100ff006101010001000101010001010100ff00610101000100010101
 
312
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
 
313
00ff006101010001000101010001010100ff006101010001000101010001010100100305
 
314
001a010300ff002b010100010001010100010101001003000000030100000300001c0101
 
315
000c010000ff001d01010001000101010001010100120301001e0101000b010100ff001d
 
316
010100010001010100010101001203010004010300020105000101010000010200040101
 
317
0003010300020105000201030003010300ff000b01010001000101010001010100120301
 
318
000301010001010100010101000001000000010100010101000101010003010100060101
 
319
000201010004010100010101000101010001010100ff000a010100010001010100010101
 
320
001203010003010500010101000001000000010100010101000101010003010100030104
 
321
00020101000401050002010100ff000d0101000100010101000101010012030100030101
 
322
000501010000010000000101000101010001010100030101000201010001010100020101
 
323
000401010008010100ff000b010100010001010100010101001203010003010100010101
 
324
000101010000010000000101000101010001010100030101000201010001010100020101
 
325
000001010001010100010101000101010001010100ff000a010100010001010100010101
 
326
001103030003010300020101000201010001010400020105000101020000010100020102
 
327
000301030003010300ff000b0101000100010101000101010029010100ff003501010001
 
328
00010101000101010028010300ff0034010100010001010100010101001004df0507000f
 
329
043f00180101000100010101000101010010040a010104040102040a010204bc0507000f
 
330
041906020402030204010301041800180101000100010101000101010010040a01010403
 
331
010104000101040301000405010104bc050207000503000f041806010400060104020301
 
332
0401030104180018010100010001010100010101001004100101040501010405010104bc
 
333
050207000503000f04170601040206010401030104000301041900180101000100010101
 
334
0001010100100408010304030101040401050402010104000101040201030402010404aa
 
335
050107020502000f04170601040206010401030104000301041900180101000100010101
 
336
000101010010040a01010402010404030101040501020400010104000101040101010401
 
337
01010401010104a9050107020502000f041706010402060104010303041a001801010001
 
338
00010101000101010010040a010104030101040501010405010104010101040001050401
 
339
01010401010104a9050007040501000f0417060104020601040103010400030104190607
 
340
00100101000100010101000101010010040a010104030101040501010405010104010101
 
341
04000101040501010401010104a9050007040501000f0417060104020601040103010400
 
342
03010419060700100101000100010101000101010010040a010104030101040501010400
 
343
010104020101040101010400010104010101040101010401010104a907060500000f0418
 
344
060104000601040203010401030104180607001001010001000101010001010100100408
 
345
01050400010304050102040201020401010104010103040201010401010104a907060500
 
346
000f041906020402030204010301041806070010010100010001010100010101001004df
 
347
0507000f043f06070010010100010001010100010101001004df0507000f043f06070010
 
348
010100010001010100010101001007df0500070105000701050007000017063f00100101
 
349
00010001010100010101001007e105000701050007010017063f00100101000100010101
 
350
00010101001007e0050007010500070105000017063f0010010100010001010100010101
 
351
001007df0500070105000701050007000017063f00100101000100010101000101010010
 
352
07e105000701050007010017063f0010010100010001010100010101001007e005000701
 
353
0500070105000017063f0010010100010001010100010101001007df0500070105000701
 
354
050007000068010100010001010100010101001007e10500070105000701006801010001
 
355
0001010100010101001007e0050007010500070105000068010100010001010100010101
 
356
001007df0500070105000701050007000068010100010001010100010101001007e10500
 
357
0701050007010068010100010001010100010101001007e0050007010500070105000068
 
358
010100010001010100010101001007df050007010500070105000700000f043f00180101
 
359
00010001010100010101001007e10500070105000701000f040f03060403080204040801
 
360
041a0018010100010001010100010101001007e005000701050007010500000f04100301
 
361
0402030004040801040408010404080004140018010100010001010100010101001007df
 
362
050007010500070105000700000f0410030104080801040a080104140018010100010001
 
363
010100010101001007e10500070105000701000f04100301040103000402080404020803
 
364
0402080504110018010100010001010100010101001007e005000701050007010500000f
 
365
041003040401080104010801040408010403080104140018010100010001010100010101
 
366
001007df050007010500070105000700000f041003010401030004010801040108010404
 
367
080104030801041406070010010100010001010100010101001007e10500070105000701
 
368
000f04100301040408010401080104040801040308010414060700100101000100010101
 
369
00010101001007e005000701050007010500000f04100301040203000400080104010801
 
370
040408010403080104000801041106070010010100010001010100010101001007df0500
 
371
07010500070105000700000f040f03060401080204000801040108050402080204120607
 
372
0010010100010001010100010101001007e10500070105000701000f043f060700100101
 
373
00010001010100010101001007e005000701050007010500000f043f0607001001010001
 
374
0001010100010101001007df0500070105000701050007000017063f0010010100010001
 
375
010100010101001007e105000701050007010017063f0010010100010001010100010101
 
376
001007e0050007010500070105000017063f0010010100010001010100010101001007df
 
377
0500070105000701050007000017063f0010010100010001010100010101001007e10500
 
378
0701050007010017063f0010010100010001010100010101001007e00500070105000701
 
379
05000017063f0010010100010001010100010101001007df050007010500070105000700
 
380
0068010100010001010100010101001007e1050007010500070100680101000100010101
 
381
00010101001007e0050007010500070105000068010100010001010100010101001007df
 
382
0500070105000701050007000068010100010001010100010101001007e1050007010500
 
383
07010068010100010001010100010101001007e005000701050007010500006801010001
 
384
0001010100010101001007df050007010500070105000700000f043f0018010100010001
 
385
010100010101001007e10500070105000701000f040f0301040203010428001801010001
 
386
0001010100010101001007e005000701050007010500000f040f03010402030104280018
 
387
010100010001010100010101001007df050007010500070105000700000f040f03020401
 
388
030104280018010100010001010100010101001007e10500070105000701000f040f0303
 
389
0400030104010603040206010402060104180018010100010001010100010101001007e0
 
390
05000701050007010500000f040f03060400060104010601040106010402060104180018
 
391
010100010001010100010101001007df050007010500070105000700000f040f03010400
 
392
030304000605040106010400060004000601041806070010010100010001010100010101
 
393
001007e10500070105000701000f040f0301040103020400060104050601040006000400
 
394
0601041806070010010100010001010100010101001007e005000701050007010500000f
 
395
040f03010402030104000601040106010402060104000601041906070010010100010001
 
396
010100010101001007df050007010500070105000700000f040f03010402030104010603
 
397
0403060104000601041906070010010100010001010100010101001007e1050007010500
 
398
0701000f043f06070010010100010001010100010101001007e005000701050007010500
 
399
000f043f06070010010100010001010100010101001007df050007010500070105000700
 
400
0017063f0010010100010001010100010101001007e105000701050007010017063f0010
 
401
010100010001010100010101001007e0050007010500070105000017063f001001010001
 
402
0001010100010101001007df0500070105000701050007000017063f0010010100010001
 
403
010100010101001007e105000701050007010017063f0010010100010001010100010101
 
404
001007e0050007010500070105000017063f0010010100010001010100010101001007df
 
405
0500070105000701050007000068010100010001010100010101001007e1050007010500
 
406
07010068010100010001010100010101001007e005000701050007010500006801010001
 
407
0001010100010101001007df050007010500070105000700006801010001000101010001
 
408
0101001007e105000701050007010068010100010001010100010101001007e005000701
 
409
0500070105000068010100010001010100010101001007df050007010500070105000700
 
410
000f043f0018010100010001010100010101001007e10500070105000701000f04070304
 
411
040b060304220018010100010001010100010101001007e005000701050007010500000f
 
412
0408030104000301040c0601040c060004140018010100010001010100010101001007df
 
413
050007010500070105000700000f0408030104010301040b0601040b0601041400180101
 
414
00010001010100010101001007e10500070105000701000f040803010401030104010603
 
415
04050601040306030402060504020603040a0018010100010001010100010101001007e0
 
416
05000701050007010500000f040803010401030104000601040106010404060104020601
 
417
0401060104020601040406010401060104090018010100010001010100010101001007df
 
418
050007010500070105000700000f04080301040103010400060504040601040206050402
 
419
060104040605040906070010010100010001010100010101001007e10500070105000701
 
420
000f04080301040103010400060104080601040206010406060104040601040d06070010
 
421
010100010001010100010101001007e005000701050007010500000f0408030104000301
 
422
040106010401060104040601040206010401060104020601040006010401060104010601
 
423
040906070010010100010001010100010101001007df050007010500070105000700000f
 
424
040703040403060304030605040106030404060204030603040a06070010010100010001
 
425
010100010101001007e10500070105000701000f043f0607001001010001000101010001
 
426
0101001007e005000701050007010500000f043f06070010010100010001010100010101
 
427
001007df0500070105000701050007000017063f00100101000100010101000101010010
 
428
07e105000701050007010017063f0010010100010001010100010101001007e005000701
 
429
0500070105000017063f0010010100010001010100010101001007df0500070105000701
 
430
050007000017063f0010010100010001010100010101001007e105000701050007010017
 
431
063f0010010100010001010100010101001007e0050007010500070105000017063f0010
 
432
010100010001010100010101001007df0500070105000701050007000068010100010001
 
433
010100010101001007e105000701050007010068010100010001010100010101001007e0
 
434
050007010500070105000068010100010001010100010101001007df0500070105000701
 
435
050007000068010100010001010100010101001007e10500070105000701006801010001
 
436
0001010100010101001007e0050007010500070105000068010100010001010100010101
 
437
001007df050007010500070105000700000f043f00180101000100010101000101010010
 
438
07e10500070105000701000f0409060304220603040a0018010100010001010100010101
 
439
001007e005000701050007010500000f040806010401060104230601040a001801010001
 
440
0001010100010101001007df050007010500070105000700000f04070601040206010423
 
441
0601040a0018010100010001010100010101001007e10500070105000701000f04070601
 
442
0406060304020604040306030403060304050601040a0018010100010001010100010101
 
443
001007e005000701050007010500000f0407060104090601040106010401060104010601
 
444
04010601040106010401060104040601040a0018010100010001010100010101001007df
 
445
050007010500070105000700000f04070601040606040401060104010601040106010405
 
446
060504040601040a06070010010100010001010100010101001007e10500070105000701
 
447
000f04070601040206010400060104010601040106010401060104010601040506010408
 
448
0601040a06070010010100010001010100010101001007e005000701050007010500000f
 
449
040806010401060104000601040106010401060104010601040106010401060104010601
 
450
0401060104040601040a06070010010100010001010100010101001007df050007010500
 
451
070105000700000f04090603040206020400060104000601040106010402060304030603
 
452
04030605040806070010010100010001010100010101001007e10500070105000701000f
 
453
043f06070010010100010001010100010101001007e005000701050007010500000f043f
 
454
06070010010100010001010100010101001007df05070017063f00100101000100010101
 
455
00010101001007df05070017063f0010010100010001010100010101001007e605000017
 
456
063f0010010100010001010100010101001007e605000017063f00100101000100010101
 
457
00010101001007df0500070405010017063f0010010100010001010100010101001007df
 
458
0500070405010017063f0010010100010001010100010101001007df0501070205020068
 
459
010100010001010100010101001007df0501070205020068010100010001010100010101
 
460
001007df0502070005030068010100010001010100010101001007df0502070005030068
 
461
010100010001010100010101001007df05070068010100010001010100010101001007df
 
462
0507006801010001000101010001010100ff006101010001000101010001010100ff0061
 
463
01010001000101010001010100ff006101010001000101010001010100ff006101010001
 
464
000101010001010100ff006101010001000101010001010100ff00610101000100010101
 
465
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
 
466
00ff006101010001000101010001010100ff006101010001000101010001010100ff0061
 
467
01010001000101010001010100ff0061010100010001010100010101000807ff074f0507
 
468
000001010001000101010001010100080702030107040302070d06010712030207ff071c
 
469
050700000101000100010101000101010008070203010703030107000301070c0601070c
 
470
03000705030107ff071c0502070005030000010100010001010100010101000807080301
 
471
070f0601070b03010705030107ff071c0502070005030000010100010001010100010101
 
472
00080700030307030301070f0601070a03050702030107000301070203030702030407ff
 
473
070a050107020502000001010001000101010001010100080702030107020304071b0301
 
474
07050302070003010700030107010301070103010701030107ff07090501070205020000
 
475
01010001000101010001010100080702030107030301070f0601070b0301070503010701
 
476
030107000305070103010701030107ff0709050007040501000001010001000101010001
 
477
010100080702030107030301070f0601070b030107050301070103010700030107050301
 
478
0701030107ff070905000704050100000101000100010101000101010008070203010703
 
479
0301070f0601070b03010700030107020301070103010700030107010301070103010701
 
480
030107ff07100500000001010001000101010001010100080700030507000303070e0601
 
481
070c0302070203020701030107010303070203010701030107ff07100500000001010001
 
482
0001010100010101000807ff074f05070000010100010001010100010101000807ff074f
 
483
05070000010100010001010100010101000807ff074f0500070105000701050007000000
 
484
01010001000101010001010100080708030307ff07440500070105000701000001010001
 
485
00010101000101010008070a030107ff0743050007010500070105000000010100010001
 
486
0101000101010008070a030107ff07420500070105000701050007000000010100010001
 
487
01010001010100080700030307050301070303030703030307ff07340500070105000701
 
488
000001010001000101010001010100080301070103010704030107020301070103010701
 
489
03010701030107ff07320500070105000701050000000101000100010101000101010008
 
490
030507040301070303010704030507ff0731050007010500070105000700000001010001
 
491
00010101000101010008030107080301070503010702030107ff07370500070105000701
 
492
000001010001000101010001010100080301070103010704030107020301070103010701
 
493
03010701030107ff07320500070105000701050000000101000100010101000101010008
 
494
0700030307030305070103030703030307ff073205000701050007010500070000000101
 
495
00010001010100010101000807ff07510500070105000701000001010001000101010001
 
496
0101000807ff0750050007010500070105000000010100010001010100010101000807ff
 
497
074f0500070105000701050007000000010100010001010100010101000807ff07510500
 
498
0701050007010000010100010001010100010101000807ff075005000701050007010500
 
499
0000010100010001010100010101000807ff074f05000701050007010500070000000101
 
500
00010001010100010101000807ff07510500070105000701000001010001000101010001
 
501
0101000807ff0750050007010500070105000000010100010001010100010101000807ff
 
502
074f0500070105000701050007000000010100010001010100010101000807ff07510500
 
503
0701050007010000010100010001010100010101000807ff075005000701050007010500
 
504
0000010100010001010100010101000807ff074f05000701050007010500070000000101
 
505
00010001010100010101000807ff07510500070105000701000001010001000101010001
 
506
0101000807ff0750050007010500070105000000010100010001010100010101000807ff
 
507
074f05070000010100010001010100010101000807ff074f050700000101000100010101
 
508
00010101000807ff075605000000010100010001010100010101000807ff075605000000
 
509
010100010001010100010101000807ff074f050007040501000001010001000101010001
 
510
0101000807ff074f0500070405010000010100010001010100010101000807ff074f0501
 
511
070205020000010100010001010100010101000807ff074f050107020502000001010001
 
512
0001010100010101000807ff074f05020700050300000101000100010101000101010008
 
513
07ff074f0502070005030000010100010001010100010101000807ff074f050700000101
 
514
00010001010100010101000807ff074f0507000001010001000101010001010100ff0061
 
515
01010001000101010001010100ff006101010001000101010001010100ff006101010001
 
516
000101010001010100ff006101010001000101010001010100ff00610101000100010101
 
517
0001010100ff006101010001000101010001010100ff0061010100010001010100010101
 
518
00ff006101010001000101010001010100ff006101010001000101010001010100ff0061
 
519
01010001000101010001010100ff006101010001000101010001010100ff006101010001
 
520
000101010001010100ff006101010001000101010001010100ff00610101000100010101
 
521
0001010100ff006101010001000101010001010100ff00610101000100010101000101ff
 
522
016500010001010100ff00690001010100ff0069000101ff016b00ff006d00ff006d
 
523
%%EndData
 
524
end
 
525
%%PageTrailer
 
526
%%Trailer
 
527
%%BoundingBox: 0 0 365 237
 
528
%%EOF