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

« back to all changes in this revision

Viewing changes to docs/pics/ide/oeprefs.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: (oeprefs.eps)
4
 
%%CreationDate: (Tue Nov 28 23:50:41 2000)
5
 
%%BoundingBox: 0 0 511 215
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 512 216
267
 
userdict begin
268
 
%%BeginData:
269
 
DisplayImage
270
 
0 0
271
 
512 216
272
 
12.000000
273
 
512 216
274
 
1
275
 
0
276
 
0
277
 
7
278
 
c0c0c0
279
 
f8fcf8
280
 
00fc00
281
 
000000
282
 
008080
283
 
f8fc00
284
 
008000
285
 
00ff00ff00120103000b010300a901050013010200ff0011001201010005020300050101
286
 
00aa010100010101001101010000010100ff001000120101000502030005010100aa0101
287
 
000101010011010100ff00130001010e0001010100050203000501010001019f00080101
288
 
000101010000010200000101000201030003010100050103000201020000010100020103
289
 
00020104000301030003010300030103000a01ce00010101000e01010005020300050101
290
 
00aa01040002010100000102000001010001010100010104000201010001010100020101
291
 
000001020000010100010101000101010001010100010101000101010001010100010101
292
 
000101010001010100d6010100010101000e0101000502030005010100aa010100050102
293
 
000001010000010500020101000401050002010200000101000001050001010100010101
294
 
00010101000501050002010100d90101000101010001010a000101010005020300050101
295
 
0001019f0008010100050101000401010006010100040101000601010004010100050101
296
 
00010101000101010005010100080101000a01ca000101010001010100010101000a0101
297
 
000502030005010100aa0101000501010004010100010101000201010004010100010101
298
 
000201010004010100010101000101010001010100010101000101010001010100010101
299
 
000101010001010100d20101000101010001010100010101000a01030003020300030103
300
 
00a901030003010300040103000201030004010300020103000401030002010100010101
301
 
00020103000301030003010300d3010100010101000101010001010100ff00f101010001
302
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
303
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
304
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
305
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
306
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
307
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
308
 
0101000101010001010100ff00f1010100010101000101010001010100ff00f101010001
309
 
0101000101010001010100180301000103010004030100050302002c030200ff00920101
310
 
00010101000101010001010100180301000103010004030100060301002d030100ff0092
311
 
01010001010100010101000101010018030100010301000d0301002d030100ff00920101
312
 
000101010001010100010101001803010001030100020303000303040002030300030303
313
 
000a030500020303000303040002030300ff008b0101000101010001010100010101000b
314
 
030400070301000103010004030100020301000103010001030100010301000103010001
315
 
030100090301000003000000030100000301000103010001030100010301000103010001
316
 
03010009037c00ff00030101000101010001010100010101000b0301000a030100010301
317
 
000403010002030100010301000103050001030100010301000903010000030000000301
318
 
00000301000103010001030100010301000103050084030100ff00030101000101010001
319
 
010100010101000b0301000a030100010301000403010002030100010301000103010005
320
 
030100010301000903010000030000000301000003010001030100010301000103010001
321
 
03010088030100ff00030101000101010001010100010101000b0301000b030300050301
322
 
000203010001030100010301000103010001030100010301000903010000030000000301
323
 
0000030100010301000103010001030100010301000103010084030100ff000301010001
324
 
01010001010100010101000b0301000c0301000403050001030200000301000103030003
325
 
0303000a030100020301000103030003030200000301000103030085030100ff00030101
326
 
000101010001010100010101000b030100dd030100ff0003010100010101000101010001
327
 
0101000b030100dd030100ff00030101000101010001010100010101000b0301000204d7
328
 
0002030100ff00030101000101010001010100010101000b030100020408030304030304
329
 
040a030304020305041a0303048a0002030100ff00030101000101010001010100010101
330
 
000b03010002040703010401030104010301040203010408030104010301040103010420
331
 
0301047a030604080002030100ff00030101000101010001010100010101000b03010002
332
 
0407030104010301040103010401030204080301040103010401030104200301047a0306
333
 
04080002030100ff00030101000101010001010100010101000b03010002040703010401
334
 
0301040103010400030304000301040203010404030104010301040e0303040303030405
335
 
0301040303030402030204000301046a030404090002030100ff00030101000101010001
336
 
010100010101000b03010002040803030402030104000300040003010401030104000301
337
 
0404030104020304040a0301040103010401030104010301040403010402030104010301
338
 
04020301040003020469030404090002030100ff00030101000101010001010100010101
339
 
000b03010002040703010401030104010303040003010402030204040301040703010409
340
 
030104050301040103010404030104020301040103010402030204000301046a0302040a
341
 
0002030100ff00030101000101010001010100010101000b030100020407030104010301
342
 
040103020401030104020302040303010408030104090301040503010401030104040301
343
 
040203010401030104020301046e0302040a0002030100ff000301010001010100010101
344
 
00010101000b030100020407030104010301040103010402030104010301040003010401
345
 
030104010301040103010401030104090301040103010401030104010301040403010402
346
 
03010401030104020301046f0300040b0002030100ff0003010100010101000101010001
347
 
0101000b03010002040803030403030404010301040203010400030504020303040b0303
348
 
04030303040303050401030304020303046e0300040b0002030100ff0003010100010101
349
 
0001010100010101000b0301000204d70002030100ff0003010100010101000101010001
350
 
0101000b0301000204d70002030100ff00030101000101010001010100010101000b0301
351
 
00dd030100ff00030101000101010001010100010101000b030100dd030100ff00030101
352
 
000101010001010100010101000b030100dd030100ff0003010100010101000101010001
353
 
0101000b030100dd030100ff00030101000101010001010100010101000b030100dd0301
354
 
00ff00030101000101010001010100010101000b03e100ff000301010001010100010101
355
 
0001010100ff00f1010100010101000101010001010100ff00f101010001010100010101
356
 
0001010100ff00f1010100010101000101010001010100ff00f101010001010100010101
357
 
0001010100ff00f1010100010101000101010001010100ff00f101010001010100010101
358
 
0001010100ff00f101010001010100010101000101010018030400120302002603020005
359
 
03010003030300ff00830101000101010001010100010101001903010000030100120301
360
 
00060300001d030100000301000403010005030100ff0083010100010101000101010001
361
 
010100190301000103010011030100050301001d0301000f030100ff0083010100010101
362
 
000101010001010100190301000103010001030300030303000303010001030100000305
363
 
000203030002030100000302000a030100050303000503010003030300ff007b01010001
364
 
01010001010100010101000b030400080301000103010000030100010301000103010001
365
 
030100020301000003010002030100040301000103010002030100010301000803040005
366
 
03010005030100020301000103010009036c00ff00030101000101010001010100010101
367
 
000b0301000b030100010301000003050002030100050303000303010004030100010301
368
 
0002030100010301000903010007030100050301000203050074030100ff000301010001
369
 
01010001010100010101000b0301000b0301000103010000030100080301000303010000
370
 
030100020301000403010001030100020301000103010009030100070301000503010002
371
 
03010078030100ff00030101000101010001010100010101000b0301000b030100000301
372
 
000103010001030100010301000103010002030100010301000103010000030100010301
373
 
000103010002030100010301000903010007030100050301000203010001030100740301
374
 
00ff00030101000101010001010100010101000b0301000a030400030303000303030002
375
 
030200010301000203020003030300030304000903030004030500010305000103030075
376
 
030100ff00030101000101010001010100010101000b0301003b0301009f030100ff0003
377
 
0101000101010001010100010101000b0301003a0303009e030100ff0003010100010101
378
 
0001010100010101000b030100dd030100ff00030101000101010001010100010101000b
379
 
0301000e0301000a0301000e0303003c0302000403010065030100ff0003010100010101
380
 
0001010100010101000b0301000d0301000c0301000c030100010301002a030000100301
381
 
00040301001c03000047030100ff00030101000101010001010100010101000b0301000c
382
 
0301000e0301000a0301000203010029030100100301002203010047030100ff00030101
383
 
000101010001010100010101000b0301000b030100100301000903010005050100010501
384
 
00010302000003010001030200000301000203030002030400020305000a030400020303
385
 
000203020000030100020303000303030002030500020303000203020000030100020301
386
 
00010301002b030100ff00030101000101010001010100010101000b0301000b03010010
387
 
030100090301000505010001050100020301000003020001030100000302000003010001
388
 
0301000103010001030100020301000c0301000103010004030100030301000003020000
389
 
030100010301000103010001030100020301000403010001030100020301000003020001
390
 
030100010301002b030100ff00030101000101010001010100010101000b0301000b0301
391
 
001003010009030100050501000105010002030200000301000103020000030100000305
392
 
000103010001030100020301000c03010001030100040301000303020000030100000305
393
 
0001030100060301000403010001030100020302000003010001030100010301002b0301
394
 
00ff00030101000101010001010100010101000b0301000c0301000e0301000a03010002
395
 
03010000050100010501000203010005030100040301000503010001030100020301000c
396
 
030100010301000403010003030100040301000503010006030100040301000103010002
397
 
03010005030100010301002b030100ff00030101000101010001010100010101000b0301
398
 
000d0301000c0301000c0301000103010000050100010501000203010005030100040301
399
 
000103010001030100010301000203010000030100090301000103010004030100030301
400
 
000403010001030100010301000103010002030100000301000103010001030100020301
401
 
00060303002c030100ff00030101000101010001010100010101000b0301000e0301000a
402
 
0301000e0303000205020000050100000303000303030004030300020301000103010003
403
 
0302000b0302000003010001030500000303000403030003030300040302000303030002
404
 
030300070301002c030100ff00030101000101010001010100010101000b030100ad0301
405
 
002d030100ff00030101000101010001010100010101000b030100aa0303002e030100ff
406
 
00030101000101010001010100010101000b030100dd030100ff00030101000101010001
407
 
010100010101000b0301000e0301000a0301000e03030013030200050501001403020005
408
 
03010003030300150302000403010045030100ff00030101000101010001010100010101
409
 
000b0301000d0301000c0301000c03010001030100110301000003010004050100130301
410
 
0000030100040301000503010016030100040301001c03000027030100ff000301010001
411
 
01010001010100010101000b0301000c0301000403010001030100030301000a03010002
412
 
030100110301001d0301000f030100160301002203010027030100ff0003010100010101
413
 
0001010100010101000b0301000b03010006030300050301000903010006030300020304
414
 
0003030100050503000303020000030100090301000503030005030100030303000b0304
415
 
000203030002030200000301000203030003030300020305000203030002030200000301
416
 
0002030100010301000b030100ff00030101000101010001010100010101000b0301000b
417
 
030100040307000303010009030100050301000103010001030100010301000103040005
418
 
050100020301000103010009030400050301000503010002030100010301000903010001
419
 
030100040301000303010000030200000301000103010001030100010301000203010004
420
 
03010001030100020301000003020001030100010301000b030100ff0003010100010101
421
 
0001010100010101000b0301000b03010006030300050301000903010005030100010301
422
 
000103010001030100020301000705010002030100010301000a03010007030100050301
423
 
000203050009030100010301000403010003030200000301000003050001030100060301
424
 
000403010001030100020302000003010001030100010301000b030100ff000301010001
425
 
01010001010100010101000b0301000c0301000403010001030100030301000a03010002
426
 
03010000030100010301000103010001030100020301000705010002030100010301000a
427
 
0301000703010005030100020301000d0301000103010004030100030301000403010005
428
 
0301000603010004030100010301000203010005030100010301000b030100ff00030101
429
 
000101010001010100010101000b0301000d0301000c0301000c03010001030100000301
430
 
000103010001030100010301000203010007050100030304000a03010007030100050301
431
 
000203010001030100090301000103010004030100030301000403010001030100010301
432
 
00010301000203010000030100010301000103010002030100060303000c030100ff0003
433
 
0101000101010001010100010101000b0301000e0301000a0301000e0303000203030002
434
 
03010001030100010303000405050004030100090303000403050001030500010303000b
435
 
030200000301000103050000030300040303000303030004030200030303000203030007
436
 
0301000c030100ff00030101000101010001010100010101000b03010052030100010301
437
 
00740301000d030100ff00030101000101010001010100010101000b0301005303030072
438
 
0303000e030100ff00030101000101010001010100010101000b030100dd030100ff0003
439
 
0101000101010001010100010101000b030100dd030100ff000301010001010100010101
440
 
00010101000b030100dd030100ff00030101000101010001010100010101000b030100dd
441
 
030100ff00030101000101010001010100010101000b030100dd030100ff000301010001
442
 
01010001010100010101000b03e100ff0003010100010101000101010001010100ff00f1
443
 
010100010101000101010001010100ff00f1010100010101000101010001010100ff00f1
444
 
010100010101000101010001010100ff00f1010100010101000101010001010100ff00f1
445
 
010100010101000101010001010100ff00f1010100010101000101010001010100ff00f1
446
 
0101000101010001010100010101001a030100f503020015030100c30101000101010001
447
 
01010001010100190303000c030000e5030100000301000b03000007030100c301010001
448
 
010100010101000101010018030100010301000a030100e40301000203010009030100cd
449
 
010100010101000101010001010100180301000103010001030100010301000103050002
450
 
0303000b03030003030300020301000103010002030300b2030100020301000003010000
451
 
0302000103050002030300030303000203040003030300ab010100010101000101010001
452
 
0101000b0304000703010001030100010301000103010002030100040301000103010009
453
 
030100010301000503010001030100010301000103010001030100090384001503040007
454
 
030100020301000103010001030100010301000703010002030100010301000103010001
455
 
0301000103010001030100090394000b0101000101010001010100010101000b0301000a
456
 
03050001030100010301000203010004030100010301000a030100050304000103010001
457
 
030100010305008c030100150301000a0301000203010001030100010301000103010007
458
 
03010002030100010301000103010001030100020301009f0301000b0101000101010001
459
 
010100010101000b0301000a030100010301000103010001030100020301000403010001
460
 
0301000c030100020301000103010001030100010301000103010090030100150301000a
461
 
030100020301000103010001030100010301000703010002030100010301000103010001
462
 
030100040301009d0301000b0101000101010001010100010101000b0301000a03010001
463
 
030100010301000103010002030100000301000103010001030100090301000103010001
464
 
030100010301000203030002030100010301008c030100150301000b0301000003010002
465
 
030100010301000103010000030100040301000203010001030100010301000103010001
466
 
030100010301009c0301000b0101000101010001010100010101000b0301000a03010001
467
 
030100020302000003010002030200030303000b03030003030200000301000203010004
468
 
0303008d030100150301000c030200030304000303020003030500010303000203010001
469
 
030100020303009d0301000b0101000101010001010100010101000b030100dd03010015
470
 
03010013030100c70301000b0101000101010001010100010101000b030100dd03010015
471
 
03010012030300c60301000b0101000101010001010100010101000b030100dd03010015
472
 
030100dd0301000b0101000101010001010100010101000b0301000c0303000b03030009
473
 
030600030302000403010024050200050301000303030065030100150301000c0303000b
474
 
0303000b05010043030200670301000b0101000101010001010100010101000b0301000c
475
 
0301000f0301000a030100020300000403010004030100040300001d0501000005010004
476
 
0301000503010065030100150301000c0301000f0301000a0503000c030000160300001d
477
 
030100670301000b0101000101010001010100010101000b0301000c0301000f0301000a
478
 
030100080301000a0301001d0501000f03010065030100150301000c0301000f03010009
479
 
050100010501000a030100150301001d030100670301000b010100010101000101010001
480
 
0101000b0301000c0301000f0301000a0301000103000002030400020303000203050002
481
 
03030002030200000301000a050100050303000503010003030300030303005503010015
482
 
0301000c0301000f0301000905010001050100010301000103010001030500020303000a
483
 
030500010302000003010002030300030303000303010001030100090303000303030002
484
 
03010001030100010302000003010002030300030303002d0301000b0101000101010001
485
 
010100010101000b0301000c0301000f0301000a03040001030100010301000403010003
486
 
030100040301000103010002030100000302000805040005030100050301000203010001
487
 
030100010301000103010054030100150301000c0301000f030100090501000105010001
488
 
030100010301000203010004030100010301000a03010005030100000302000403010001
489
 
030100010301000203010000030100090301000103010001030100010301000103010001
490
 
0301000203010000030200000301000103010001030100010301002c0301000b01010001
491
 
01010001010100010101000b0301000c0301000f0301000a030100010300000103010001
492
 
030100040301000303010004030100010301000203020000030100090501000703010005
493
 
030100020305000203010057030100150301000c0301000f030100090505000103010001
494
 
0301000203010004030100010301000a0301000503020000030100010304000103010006
495
 
0303000b0301000403010001030100010301000103010002030200000301000003010005
496
 
0305002c0301000b0101000101010001010100010101000b0301000c0301000f0301000a
497
 
030100040301000103010004030100030301000403010001030100020301000d05010007
498
 
03010005030100020301000803010055030100150301000c0301000f0301000905010001
499
 
05010001030100010301000203010004030100010301000a030100050301000403010001
500
 
0301000103010006030100000301000c0301000203010001030100010301000103010002
501
 
0301000403010005030100300301000b0101000101010001010100010101000b0301000c
502
 
0301000f0301000a03010002030000000301000103010004030100030301000003010001
503
 
03010001030100020301000d050100070301000503010002030100010301000103010001
504
 
03010054030100150301000c0301000f0301000905010001050100010301000103010002
505
 
0301000003010001030100010301000a0301000003010002030100040301000103010001
506
 
030100010301000203010001030100080301000103010001030100010301000103010001
507
 
03010002030100040301000103010001030100010301002c0301000b0101000101010001
508
 
010100010101000b0301000c0303000b0303000903060001030200000301000103050002
509
 
03020003030300020303000b050300040305000103050001030300030303005503010015
510
 
0301000c0303000b0303000905010001050100020302000003010002030200030303000c
511
 
030200020303000403020000030100010303000203020001030100090303000303030003
512
 
030200000301000003030004030300030303002d0301000b010100010101000101010001
513
 
0101000b030100dd03010015030100dd0301000b0101000101010001010100010101000b
514
 
030100dd03010015030100dd0301000b0101000101010001010100010101000b030100dd
515
 
03010015030100dd0301000b0101000101010001010100010101000b0301000c03030001
516
 
0301000103010003030300090506001303010095030100150301000c0303000103010001
517
 
030100030303000b03030002050300a50301000b0101000101010001010100010101000b
518
 
0301000c0301000303010001030100050301000a0501000205000013030100340300005f
519
 
030100150301000c0301000303010001030100050301000a030100010301000305010054
520
 
0300004f0301000b0101000101010001010100010101000b0301000c0301000303010001
521
 
030100050301000a0501004d0301005f030100150301000c030100030301000103010005
522
 
030100090301000203010003050100530301004f0301000b010100010101000101010001
523
 
0101000b0301000c03010004030300060301000a05010001050000010304000203010001
524
 
030100020303000203020000030100020303000203040002030500020303000203040002
525
 
0305005c030100150301000c030100040303000603010009030100080501000303030003
526
 
030300030303000b030300020304000b03020000030100010303000a030500020303000b
527
 
030300030303000203010001030100010302000003010002030300030303000d0301000b
528
 
0101000101010001010100010101000b0301000c03010005030100070301000a05040001
529
 
030100010301000103010001030100040301000303010000030200000301000103010001
530
 
030100010301000103010000030000000301000003010001030100010301000103010002
531
 
0301005f030100150301000c030100050301000703010009030100080501000203010001
532
 
030100010301000103010001030100010301000903010001030100010301000103010009
533
 
0301000103010001030100010301000a0301000403010001030100090301000103010001
534
 
030100010301000103010001030100020301000003020000030100010301000103010001
535
 
0301000c0301000b0101000101010001010100010101000b0301000c0301000403030006
536
 
0301000a0501000105000001030100010301000103010001030100040301000303020000
537
 
030100000301000103010001030100010301000103010000030000000301000003050001
538
 
03010001030100020301005f030100150301000c03010004030300060301000903010008
539
 
050100020301000103010002030100040305000903010001030100010301000103010009
540
 
0301000103010001030100010301000a03010004030100010301000a0301000403010001
541
 
0301000103010001030100020302000003010000030100050305000c0301000b01010001
542
 
01010001010100010101000b0301000c0301000303010001030100050301000a05010004
543
 
030100010301000103010001030100040301000303010004030100010301000103010001
544
 
030100010301000003000000030100000301000503010001030100020301005f03010015
545
 
0301000c0301000303010001030100050301000903010002030100030501000203010001
546
 
03010004030100020301000d030100010301000103010001030100090301000103010001
547
 
030100010301000a03010004030100010301000c03010002030100010301000103010001
548
 
030100020301000403010005030100100301000b0101000101010001010100010101000b
549
 
0301000c0301000303010001030100050301000a05010002050000000301000103010002
550
 
030300050301000303010004030100010301000103010001030100010301000003000000
551
 
0301000003010001030100010301000103010002030100000301005c030100150301000c
552
 
0301000303010001030100050301000a0301000103010003050100020301000103010001
553
 
030100010301000103010001030100090301000103010001030100010301000a03040001
554
 
030100010301000a03010000030100010301000103010009030100010301000103010001
555
 
030100010301000103010002030100040301000103010001030100010301000c0301000b
556
 
0101000101010001010100010101000b0301000c03030001030100010301000303030009
557
 
050600000301000103010003030100040305000003030004030300020301000103010001
558
 
03010002030100010303000203010001030100030302005d030100150301000c03030001
559
 
03010001030100030303000b030300020505000103030003030300030303000b03030002
560
 
030100010301000d030100020303000c030200030303000b030300030303000303020000
561
 
0301000003030004030300030303000d0301000b0101000101010001010100010101000b
562
 
030100dd030100150301007203010001030100640301000b010100010101000101010001
563
 
0101000b030100dd0301001503010073030300650301000b010100010101000101010001
564
 
0101000b030100dd03010015030100dd0301000b0101000101010001010100010101000b
565
 
0301000c030300010301000103010003030300090504001203020097030100150301000c
566
 
0303000103010001030100030303000b030300010502002f030200040301006d0301000b
567
 
0101000101010001010100010101000b0301000c0301000303010001030100050301000a
568
 
0501000005010012030100060300008f030100150301000c030100030301000103010005
569
 
0301000a030100010301000105010030030100040301006d0301000b0101000101010001
570
 
010100010101000b0301000c0301000303010001030100050301000a0501000105010011
571
 
030100050301008f030100150301000c0301000303010001030100050301000903010002
572
 
0301000105010030030100740301000b0101000101010001010100010101000b0301000c
573
 
03010004030300060301000a050100010501000103030003030300030301000103010000
574
 
0305000203030002030100000302007c030100150301000c030100040303000603010009
575
 
030100060501000005010002030300020304000303020000030100010303000b03040002
576
 
03030002030200000301000a030300020304000b03030002030100000302000203030002
577
 
030400250301000b0101000101010001010100010101000b0301000c0301000503010007
578
 
0301000a0501000105010000030100010301000103010001030100020301000003010002
579
 
030100040301000103010002030100010301007b030100150301000c0301000503010007
580
 
030100090301000605020000050100040301000103010001030100010301000103010001
581
 
030100010301000903010001030100040301000303010000030200080301000103010001
582
 
030100010301000903010001030100020301000103010000030100010301000103010001
583
 
030100240301000b0101000101010001010100010101000b0301000c0301000403030006
584
 
0301000a0501000105010000030500020301000503030003030100040301000103010002
585
 
030100010301007b030100150301000c0301000403030006030100090301000605010001
586
 
050100010304000103010001030100010301000103010001030500090301000103010004
587
 
030100030302000003010008030100010301000103010001030100090301000103010002
588
 
03010001030100000305000103010001030100240301000b010100010101000101010001
589
 
0101000b0301000c0301000303010001030100050301000a050100010501000003010008
590
 
030100030301000003010002030100040301000103010002030100010301007b03010015
591
 
0301000c0301000303010001030100050301000903010002030100010501000105010000
592
 
0301000103010001030100010301000103010001030100010301000d0301000103010004
593
 
030100030301000c03010001030100010301000103010009030100010301000203010001
594
 
030100000301000503010001030100240301000b0101000101010001010100010101000b
595
 
0301000c0301000303010001030100050301000a05010000050100010301000103010001
596
 
030100010301000203010001030100010301000003010001030100010301000203010001
597
 
0301007b030100150301000c0301000303010001030100050301000a0301000103010001
598
 
050100010501000003010001030100010301000103010002030400010301000103010009
599
 
0301000103010004030100030301000c0301000103010001030100010301000903010001
600
 
030100020301000103010000030100010301000103010001030100240301000b01010001
601
 
01010001010100010101000b0301000c0303000103010001030100030303000905040003
602
 
0303000303030002030200010301000203020003030300030304007c030100150301000c
603
 
0303000103010001030100030303000b0303000105020001050100010302000003010000
604
 
0301000103010005030100020303000b0302000003010001030500000303000c03030002
605
 
030100010301000a03030003030400020303000203010001030100240301000b01010001
606
 
01010001010100010101000b0301005b0301007f030100150301004a0301000103010052
607
 
030100370301000b0101000101010001010100010101000b0301005a0303007e03010015
608
 
0301004b03030052030300360301000b0101000101010001010100010101000b030100dd
609
 
03010015030100dd0301000b0101000101010001010100010101000b030100dd03010015
610
 
030100dd0301000b0101000101010001010100010101000b030100dd03010015030100dd
611
 
0301000b0101000101010001010100010101000b030100dd03010015030100dd0301000b
612
 
0101000101010001010100010101000b030100dd03010015030100dd0301000b01010001
613
 
01010001010100010101000b03e1001503e1000b010100010101000101010001010100ff
614
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
615
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
616
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
617
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
618
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
619
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
620
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
621
 
00f1010100010101000101010001010100ff00f1010100010101000101010001010100ff
622
 
00f1010100010101000101010001010100ff00f101010001010100010101000101010070
623
 
063f0097063f006801010001010100010101000101010070061901020602050206010501
624
 
061800970609030306220303060a00680101000101010001010100010101007006180101
625
 
06000101060205010601050106180097060803010601030106230301060a006801010001
626
 
010100010101000101010070061701010602010106010501060005010619009706070301
627
 
0602030106230301060a0068010100010101000101010001010100700617010106020101
628
 
060105010600050106190097060703010606030306020304060303030603030306050301
629
 
060a006801010001010100010101000101010070061701010602010106010503061a0097
630
 
060703010609030106010301060103010601030106010301060103010601030106040301
631
 
060a00680101000101010001010100010101007006170101060201010601050106000501
632
 
06190307008f06070301060603040601030106010301060103010605030506040301060a
633
 
030700600101000101010001010100010101007006170101060201010601050106000501
634
 
06190307008f060703010602030106000301060103010601030106010301060103010605
635
 
030106080301060a03070060010100010101000101010001010100700618010106000101
636
 
060205010601050106180307008f06080301060103010600030106010301060103010601
637
 
03010601030106010301060103010601030106040301060a030700600101000101010001
638
 
010100010101007006190102060205020601050106180307008f06090303060203020600
639
 
030106000301060103010602030306030303060303050608030700600101000101010001
640
 
0101000101010070063f0307008f063f0307006001010001010100010101000101010070
641
 
063f0307008f063f0307006001010001010100010101000101010078033f0097033f0060
642
 
01010001010100010101000101010078033f0097033f0060010100010101000101010001
643
 
01010078033f0097033f006001010001010100010101000101010078033f0097033f0060
644
 
01010001010100010101000101010078033f0097033f0060010100010101000101010001
645
 
01010078033f0097033f0060010100010101000101010001010100ff00f1010100010101
646
 
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
647
 
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
648
 
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
649
 
000101010001010100ff00f1010100010101000101010001010100ff00f1010100010101
650
 
000101010001010100ff00f101010001010100010101000101ff01f50001010100010101
651
 
00ff00f901010001010100ff00f90101000101ff01fd00ff00ff00ff00ff00ff00ff00ff
652
 
00ff
653
 
%%EndData
654
 
end
655
 
%%PageTrailer
656
 
%%Trailer
657
 
%%BoundingBox: 0 0 511 215
658
 
%%EOF