~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to docs/pics/ide/olinker.eps

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

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: (olinker.eps)
4
 
%%CreationDate: (Fri Dec  8 00:17:11 2000)
5
 
%%BoundingBox: 0 0 527 131
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 528 132
267
 
userdict begin
268
 
%%BeginData:
269
 
DisplayImage
270
 
0 0
271
 
528 132
272
 
12.000000
273
 
528 132
274
 
1
275
 
0
276
 
0
277
 
8
278
 
c0c0c0
279
 
f8fcf8
280
 
00fc00
281
 
000000
282
 
008080
283
 
f8fc00
284
 
008000
285
 
00fcf8
286
 
00ff00ff000f00120103000b010300c9010300060101000a010200ff0003001201010005
287
 
02030005010100ca010100070101000b010100ff000300120101000502030005010100ca
288
 
01010015010100ff00030001010e000101010005020300050101000101bf000801010005
289
 
0103000201040003010100010101000101030002010200000101000901e600010101000e
290
 
0101000502030005010100ca010100070101000201010001010100020101000001010001
291
 
010100010101000201010000010200ed010100010101000e0101000502030005010100ca
292
 
0101000201000003010100020101000101010002010300020105000201020000010100ed
293
 
0101000101010001010a000101010005020300050101000101bf00080101000101010003
294
 
0101000201010001010100020101000001010001010100060101000c01e2000101010001
295
 
010100010101000a0101000502030005010100ca01010001010100030101000201010001
296
 
0101000201010001010100000101000101010002010100ed010100010101000101010001
297
 
0101000a0103000302030003010300c90106000101050000010100010101000101020001
298
 
0101000101030002010300ec010100010101000101010001010100ff00ff000101010001
299
 
0101000101010001010100ff00ff0001010100010101000101010001010100ff00ff0001
300
 
01010001010100010101000101010018030300060301000a03020007030100d201050013
301
 
010200250102000a01030005010100020102008d01010001010100010101000101010019
302
 
030100070301000b0301000703010024030000ad01010001010100110101000001010025
303
 
0101000c01010005010100030101002e0100005d01010001010100010101000101010019
304
 
030100150301002d030100ad0101000101010011010100280101000c0101000b0101002d
305
 
0101005d0101000101010001010100010101001903010005030300020304000303010001
306
 
030100010303000203040003030200000301000903030002030500020303000303020000
307
 
030100010303009301010001010100000102000001010002010300030101000501030002
308
 
01020000010100010102000001010002010300030104000c010100030103000301040001
309
 
010200000101000201030002010200000101000201010001010100080105000201010001
310
 
010100000101000001020002010300430101000101010001010100010101001903010007
311
 
030100020301000103010002030100000301000403010002030100010301000103010001
312
 
030100090301000103010002030100080301000103010001030100010301000103010092
313
 
010400020101000001020000010100010101000101040002010100010101000201010000
314
 
0102000101010000010200000101000101010001010100010101000c0101000501010003
315
 
010100010101000101010000010200040101000201010000010200010101000101010009
316
 
010100050101000101010001010100010101000001010001010100420101000101010001
317
 
010100010101001903010002030000030301000203010001030100020303000503010002
318
 
0301000103010001030100010301000a0301000503010005030400010301000103010001
319
 
030500920101000501020000010100000105000201010004010500020102000001010001
320
 
010200000101000001050001010100010101000c01010005010100030101000101010001
321
 
010200000101000101040002010200000101000101010001010100090101000501010001
322
 
010100010101000101010000010500420101000101010001010100010101001903010001
323
 
030100030301000203010001030100020301000003010004030100020301000103010001
324
 
030100010301000c03010003030100040301000103010001030100010301000103010096
325
 
010100050101000401010006010100040101000601010005010100040101000501010001
326
 
0101000c0101000501010003010100010101000101010004010100010101000201010005
327
 
010100010101000901010005010100010101000101010001010100000101004601010001
328
 
010100010101000101010019030100010301000303010002030100010301000203010001
329
 
030100030301000203010001030100020304000903010001030100020301000003010001
330
 
030100010301000203040001030100010301009201010005010100040101000101010002
331
 
01010004010100010101000201010005010100040101000101010001010100010101000c
332
 
01010005010100030101000101010001010100040101000101010002010100060103000a
333
 
010100000101000301030002010100010101000001010001010100420101000101010001
334
 
010100010101001803060001030500000301000103010001030200010301000103050000
335
 
03010001030100050301000a030300040302000303020000030100040301000203030092
336
 
010300030103000401030002010300040103000201030003010300040103000301020000
337
 
010100090105000101050000010100000102000101030004010200000101000001030007
338
 
0101000b0102000601010002010400020103004301010001010100010101000101010048
339
 
030100010301002103010001030100ff001c01010015010100030101004d010100010101
340
 
0001010100010101004903030023030300ff001a01030013010300030103004c01010001
341
 
01010001010100010101001004e7000f04e7001001010001010100010101000101010010
342
 
04090303040b0303040b0303040a030304030303040b050304050301040a030204260302
343
 
0452000f040b0101040a0101040c050504340102040b010204130103045a001001010001
344
 
01010001010100010101001004090301040f0301040a030104010301040b030104050301
345
 
040d050104050301040b0301042503010400030104030300044c000f040a0101040c0101
346
 
040b050004000501040005000423010004100101040a0101040001010414010104040100
347
 
045400100101000101010001010100010101001004090301040f03010409030104020301
348
 
040b030104050301040d0501041303010425030104050301044c000f0409010104040101
349
 
0401010104030101040c05010424010104100101040a0101041701010403010104540010
350
 
0101000101010001010100010101001004090301040f0301040903010406030304050301
351
 
04050301040d050104030303040203040403030104010301040103030402030204000301
352
 
040a030304030301040403050402030304020302040003010439000f0408010104060103
353
 
04050101040b050104040103040201020400010104020102040001010401010304020105
354
 
040a01040402010304030101040501030402010104010101040401010402010504510010
355
 
0101000101010001010100010101001004090301040f0301040903010409030104040301
356
 
04050301040d050104050301040203010401030104020301040003010401030104010301
357
 
0402030104000302040c0301040103040403030104040301040103010402030104000302
358
 
0438000f040801010404010704030101040b050104070101040201010400010204000101
359
 
04010101040101010401010104020101040c010104010101040101010401010104010104
360
 
040601010401010104010101040401010403010104540010010100010101000101010001
361
 
0101001004090301040f030104090301040603040404030104050301040d050104050301
362
 
040203010401030104020303040203050402030204000301040903040402030104050301
363
 
0404030504020302040003010438000f040801010406010304050101040b050104040104
364
 
040201020400010104000101040101010401010504020101040c01010401010104010105
365
 
040201010405010404010101040101010404010104030101045400100101000101010001
366
 
010100010101001004090301040f03010409030104020301040003010401030104040301
367
 
04050301040d050104050301040203010401030104020301040003010401030104060301
368
 
040c03010401030104020301040503010404030104060301043c000f0409010104040101
369
 
0401010104030101040c0501040301010401010104020101040401010401010104010101
370
 
04060101040c010104010101040101010406010104040101040101010401010104010101
371
 
0404010104030101045400100101000101010001010100010101001004090301040f0301
372
 
040a03010401030104000301040103010404030104050301040d05010405030104020301
373
 
040103010402030104010301040003010401030104020301040c03010401030104020301
374
 
0405030104000301040103010401030104020301043c000f040a0101040c0101040d0501
375
 
040301010401010104020101040501040401010104010101040201010400010104090101
376
 
040101010401010104010101040201010404010104010101040101010401010104040101
377
 
0403010104000101045100100101000101010001010100010101001004090303040b0303
378
 
040b03030402030204000301040103050401030504090505040103050400030104010301
379
 
04010302040103010401030304020303040c030204000301040003030405030204030303
380
 
04020303043b000f040b0101040a0101040d050304030102040001010400010304070101
381
 
0402010304040102040b0102040001010401010304020103040401020400010104010102
382
 
040001010401010504020102045200100101000101010001010100010101001004e7000f
383
 
043f01010401010104a100100101000101010001010100010101001004e7000f04400103
384
 
04a20010010100010101000101010001010100ff000804e7001001010001010100010101
385
 
0001010100ff0008040b0301040a0301040c050404250301041303030405030104020302
386
 
041f0301044a0010010100010101000101010001010100ff0008040a0301040c0301040c
387
 
05010400050104240301041503010405030104030301041f0301044a0010010100010101
388
 
000101010001010100ff000804090301040e0301040b050104010501043b0301040b0301
389
 
046c0010010100010101000101010001010100ff00080408030104100301040a05010401
390
 
050104010301040103010400030404030303040203050402030304030303040d03010403
391
 
030304030304040103020400030104020303040203020400030104020303040303030403
392
 
0303043a0010010100010101000101010001010100ff00080408030104100301040a0501
393
 
040105010401030104010301040003010401030104050301040103010400030004000301
394
 
040303010402030104010301040c03010405030104030301040103010401030104000302
395
 
040403010402030104000302040303010402030104010301040103010401030104390010
396
 
010100010101000101010001010100ff00080408030104100301040a0501040105010401
397
 
030104010301040003010401030104020304040103010400030004000301040303010402
398
 
030104100301040503010403030104010301040103020400030104010304040203020400
399
 
0301040303010402030504020301043c0010010100010101000101010001010100ff0008
400
 
04090301040e0301040b0501040105010401030104010301040003010401030104010301
401
 
040103010401030104000300040003010403030104020301041003010405030104030301
402
 
0401030104010301040403010401030104020301040703010402030104080301043a0010
403
 
010100010101000101010001010100ff0008040a0301040c0301040c0501040005010403
404
 
030304010301040103010401030104010301040103010400030004000301040303010402
405
 
030104010301040c03010405030104030301040103010401030104040301040103010402
406
 
030104070301040203010401030104010301040103010439001001010001010100010101
407
 
0001010100ff0008040b0301040a0301040c050404060301040103010401030104020302
408
 
0400030104000301040203010401030504010303040b0305040103050400030104000302
409
 
04010303040403020400030104000303040403050401030304030303043a001001010001
410
 
0101000101010001010100ff00080432030104b200100101000101010001010100010101
411
 
00ff0008042f030304b30010010100010101000101010001010100ff000804e700100101
412
 
00010101000101010001010100ff0008040b0301040a0301040d0503041d030104130303
413
 
0405030104020302041f030104520010010100010101000101010001010100ff0008040a
414
 
0301040c0301040b05010401050104030300040e03000407030104150301040503010403
415
 
0301041f030104520010010100010101000101010001010100ff000804090301040e0301
416
 
040a05010401050104020301040d0301041f0301040b0301047400100101000101010001
417
 
01010001010100ff00080408030104100301040905010405030504020303040203050402
418
 
030304030303040d03010403030304030304040103020400030104020303040203020400
419
 
030104020303040303030403030304420010010100010101000101010001010100ff0008
420
 
0408030104100301040a0502040403010408030104020301040703010402030104010301
421
 
040c03010405030104030301040103010401030104000302040403010402030104000302
422
 
040303010402030104010301040103010401030104410010010100010101000101010001
423
 
010100ff00080408030104100301040c0501040303010405030404020301040703010402
424
 
030104100301040503010403030104010301040103020400030104010304040203020400
425
 
030104030301040203050402030104440010010100010101000101010001010100ff0008
426
 
04090301040e0301040a0501040105010402030104040301040103010402030104070301
427
 
040203010410030104050301040303010401030104010301040403010401030104020301
428
 
04070301040203010408030104420010010100010101000101010001010100ff0008040a
429
 
0301040c0301040b05010401050104020301040003010401030104010301040203010400
430
 
0301040403010402030104010301040c0301040503010403030104010301040103010404
431
 
030104010301040203010407030104020301040103010401030104010301044100100101
432
 
00010101000101010001010100ff0008040b0301040a0301040d05030404030204030302
433
 
04000301040203020403030504010303040b030504010305040003010400030204010303
434
 
040403020400030104000303040403050401030304030303044200100101000101010001
435
 
01010001010100ff000804e70010010100010101000101010001010100ff000804e70010
436
 
010100010101000101010001010100ff000804e700100101000101010001010100010101
437
 
00ff0008040b0301040a0301040d0303042b03030405030104020302041f0301045a0010
438
 
010100010101000101010001010100ff0008040a0301040c0301040b030104010301041b
439
 
0300040f03010405030104030301041f0301045a00100101000101010001010100010101
440
 
00ff000804090301040e0301040a030104010301041a0301040f0301040b0301047c0010
441
 
010100010101000101010001010100ff0008040803010410030104090301040505050402
442
 
0303040203020400030104010305040c0301040303030403030404010302040003010402
443
 
03030402030204000301040203030403030304030303044a001001010001010100010101
444
 
0001010100ff00080408030104100301040a030204030501040005000400050104040301
445
 
040203010400030204010301040f03010405030104030301040103010401030104000302
446
 
040403010402030104000302040303010402030104010301040103010401030104490010
447
 
010100010101000101010001010100ff00080408030104100301040c0301040205010400
448
 
05000400050104010304040203020400030104010301040f030104050301040303010401
449
 
03010401030204000301040103040402030204000301040303010402030504020301044c
450
 
0010010100010101000101010001010100ff000804090301040e0301040a030104010301
451
 
04010501040005000400050104000301040103010402030104050301040f030104050301
452
 
040303010401030104010301040403010401030104020301040703010402030104080301
453
 
044a0010010100010101000101010001010100ff0008040a0301040c0301040b03010401
454
 
03010401050104000500040005010400030104010301040203010405030104000301040c
455
 
030104050301040303010401030104010301040403010401030104020301040703010402
456
 
030104010301040103010401030104490010010100010101000101010001010100ff0008
457
 
040b0301040a0301040d0303040205010402050104010302040003010400030304050302
458
 
040b03050401030504000301040003020401030304040302040003010400030304040305
459
 
0401030304030303044a0010010100010101000101010001010100ff000804e700100101
460
 
00010101000101010001010100ff000804e70010010100010101000101010001010100ff
461
 
00ff0001010100010101000101010001010100ff00ff0001010100010101000101010001
462
 
010100ff00ff0001010100010101000101010001010100ff00ff00010101000101010001
463
 
01010001010100ff00ff0001010100010101000101010001010100ff00ff000101010001
464
 
0101000101010001010100ff00ff0001010100010101000101010001010100ff00ff0001
465
 
010100010101000101010001010100ff00ff0001010100010101000101010001010100ff
466
 
00ff0001010100010101000101010001010100ff00ff0001010100010101000101010001
467
 
010100ff00ff0001010100010101000101010001010100ff00ff00010101000101010001
468
 
01010001010100ff00ff0001010100010101000101010001010100ff00ff000101010001
469
 
0101000101010001010100ff00ff0001010100010101000101010001010100ff00ff0001
470
 
010100010101000101010001010100ff00ff0001010100010101000101010001010100ff
471
 
00ff0001010100010101000101010001010100ff00ff0001010100010101000101010001
472
 
010100ff00ff0001010100010101000101010001010100ff00ff00010101000101010001
473
 
01010001010100ff00ff0001010100010101000101010001010100ff00ff000101010001
474
 
010100010101000101010070063f009f063f007001010001010100010101000101010070
475
 
0619070206020502060105010618009f0609030306220303060a00700101000101010001
476
 
0101000101010070061807010600070106020501060105010618009f0608030106010301
477
 
06230301060a007001010001010100010101000101010070061707010602070106010501
478
 
060005010619009f060703010602030106230301060a0070010100010101000101010001
479
 
01010070061707010602070106010501060005010619009f060703010606030306020304
480
 
060303030603030306050301060a00700101000101010001010100010101007006170701
481
 
0602070106010503061a009f060703010609030106010301060103010601030106010301
482
 
060103010601030106040301060a00700101000101010001010100010101007006170701
483
 
060207010601050106000501061903070097060703010606030406010301060103010601
484
 
03010605030506040301060a030700680101000101010001010100010101007006170701
485
 
060207010601050106000501061903070097060703010602030106000301060103010601
486
 
030106010301060103010605030106080301060a03070068010100010101000101010001
487
 
010100700618070106000701060205010601050106180307009706080301060103010600
488
 
03010601030106010301060103010601030106010301060103010601030106040301060a
489
 
030700680101000101010001010100010101007006190702060205020601050106180307
490
 
009706090303060203020600030106000301060103010602030306030303060303050608
491
 
0307006801010001010100010101000101010070063f03070097063f0307006801010001
492
 
010100010101000101010070063f03070097063f03070068010100010101000101010001
493
 
01010078033f009f033f006801010001010100010101000101010078033f009f033f0068
494
 
01010001010100010101000101010078033f009f033f0068010100010101000101010001
495
 
01010078033f009f033f006801010001010100010101000101010078033f009f033f0068
496
 
01010001010100010101000101010078033f009f033f0068010100010101000101010001
497
 
010100ff00ff0001010100010101000101010001010100ff00ff00010101000101010001
498
 
01010001010100ff00ff0001010100010101000101010001010100ff00ff000101010001
499
 
0101000101010001010100ff00ff0001010100010101000101010001010100ff00ff0001
500
 
010100010101000101010001010100ff00ff0001010100010101000101010001010100ff
501
 
00ff0001010100010101000101010001010100ff00ff0001010100010101000101010001
502
 
010100ff00ff000101010001010100010101000101ff01ff0105000101010001010100ff
503
 
00ff000901010001010100ff00ff00090101000101ff01ff010d00ff00ff000f00ff00ff
504
 
000f00ff00ff000f00ff00ff000f
505
 
%%EndData
506
 
end
507
 
%%PageTrailer
508
 
%%Trailer
509
 
%%BoundingBox: 0 0 527 131
510
 
%%EOF