~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/tv/doc/src/tv_start.ps

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

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: (./tv_start.tmp.eps)
 
4
%%CreationDate: (Tue Jun 12 16:02:24 2001)
 
5
%%BoundingBox: 0 42 377 247
 
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 42 377 247
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 42
 
271
377.000000 205.000000
 
272
12
 
273
755 410
 
274
1
 
275
0
 
276
0
 
277
16
 
278
ffffff
 
279
000000
 
280
d8d8d8
 
281
c2c2c2
 
282
6b6b6b
 
283
d9d9d9
 
284
b22222
 
285
828282
 
286
aab6aa
 
287
000000
 
288
000000
 
289
000000
 
290
000000
 
291
000000
 
292
000000
 
293
000000
 
294
000a01ff01ff01dc000b0208040001ff01ff01dc00000208040000000208040002ff02ff
 
295
02dc000002080400000002080400020000ff00ff00d90400020000000208040000000202
 
296
04060200000004ff04ff04d9020000000405020204000000020204000209000d02ff02ff
 
297
02d000000202040000000202040002080000020d040002f6010302110103023801010206
 
298
0101024001010230010102ff020400000202040000000202040002080000020d040002f6
 
299
010102020107020001010203010102010101020e0105020001070201010302070100020b
 
300
01010206010102400101020c0104021e010102ff02040000020204000000020204000208
 
301
0000020d040002f6010102050101020301010203010102010101020e0101020701010203
 
302
01010201010102050101020b010102060101024e010102020101021d010102ff02040000
 
303
0202040000000202040002080000020204060203040002f6010102050101020301010203
 
304
010102010101020e01010207010102030101020801040201010302030101020001010203
 
305
010102020103020301040206010302030101020001010207010102000101020101010203
 
306
010302030101020201010200010102020101020101030202010102000101020101010203
 
307
010302020101020001010201010102020103020201010202010102f30000020204000000
 
308
04030208000002020400030400000203040002f601010205010102040101020201000202
 
309
0101020e0101020701010203010202080101020201010201010102020102020001010202
 
310
010102010101020101010201010102090101020101010202010202000101020601020200
 
311
010202000101020101010201010102020101020201020200010102010101020001010200
 
312
010102020102020001020200010102010101020101010201010102000101020101010201
 
313
010102010101020101010202010102f3000004030101020b000002030400030200000204
 
314
040002f6010102050101020401010201010102020101020e010402040101020401030206
 
315
010102060101020201010201010102020101020101010201010102010102020801010201
 
316
010102020101020101010206010102010101020101010205010102020101020201010201
 
317
010102010101020001010200010102020101020101010201010102050101020101020203
 
318
01010201010102010101020101010202010002f70103020b000002030400030200000204
 
319
040002f6010102050101020501010200010002030101020e010102070101020601020205
 
320
010102030104020201010201010102020101020101050202010302060101020101010202
 
321
010102010101020601010201010102010101020201040202010102020101020101010201
 
322
010102000101020001010202010102010101020101010202010402010101020401010201
 
323
0105020201010200010102f70103020b000002040400030000000205040002f601010205
 
324
01010205010302030101020e010102070101020701010205010102020101020101010202
 
325
010102010101020201010201010102080102020501010201010102020101020101010206
 
326
010102010101020101010201010102010101020201010202010102010101020101010201
 
327
010102000101020101010201010102010101020101010201010102010101020401010201
 
328
0101020601010200010002f80103020b000002040400030000000205040002f601010205
 
329
01010206010102040101020e010102070101020301010201010102050101020201010201
 
330
010102020101020101010202010102010101020201000205010102050101020101010202
 
331
010102010101020601010201010102010101020101010201010102020101020201010201
 
332
010102020101020701010201010102010101020101010201010102010101020401010201
 
333
0101020201000203010202f80103020b0000020500000206040002f60101020501010206
 
334
010102040101020e01050203010102040103020701020201010202000101020101040203
 
335
010102020103020201040207010302030101020101010206010102010101020101010202
 
336
010202000101020101010202010102010101020301050202010102010101020101010202
 
337
0102020001010200010102040101020201030204010102f90103020b0000020d040002f6
 
338
01030211010302c4010102fa0103020b0000020d040002ff02d5010102fa0103020b0000
 
339
020d040002ff02ff02d20103020c040d02ff02ff02d3010302ff02ff02ee010302ff02ff
 
340
02ee0103020200ff00ff00e70400020201030202000004ff04ff04e70202010302ff02ff
 
341
02ee0103020200ff00ff00e802020103020200ff00ff00e70700020201030202000105ff
 
342
05ff05e40701020201030202000105ff05ff05e40701020201030202000105ff05ff05e4
 
343
0701020201030202000105ff05ff05e40701020201030202000105ff05ff05e407010202
 
344
010302020001050b06040504060005030602051f0600050206000504060005270602050b
 
345
06000506060005ff05ff053506000502060005090602051307010202010302020001050b
 
346
0600050f0600051f060005020600052c060005020600050a060005ff05ff053d06000502
 
347
0600050b0600051307010202010302020001050b06000506060205050600050306020518
 
348
060005020600050206020503060205020600050206000517060005020600050106000500
 
349
060105020604050206020503060205020600050006010503060205ff05ff052006000502
 
350
060005020602050506000502060005000601050c07010202010302020001050b06000508
 
351
060005050600050206000502060005180600050006000505060005020600050206000501
 
352
060005020600051706000502060005010601050106000503060005060600050206000502
 
353
06000501060105010600050106000502060005ff05ff051f060005020600050106000502
 
354
0600050406000502060105010600050b07010202010302020001050b0603050506000505
 
355
060005020600050206000518060005000600050506000502060005020600050106000500
 
356
060005000600051706000502060005010600050206000503060005060600050206000502
 
357
060005010600050206000501060005ff05ff052306040501060005020600050406000502
 
358
060005020600050b07010202010302020001050b06000508060005050600050206040518
 
359
060005000600050506000502060405010600050006000500060005170600050206000501
 
360
0600050206000503060005060600050206000502060005010600050206000502060205ff
 
361
05ff052006000502060005010604050406000502060005020600050b0701020201030202
 
362
0001050b0600050806000505060005020600051d06000506060005020600050506000500
 
363
060005000600051706000502060005010600050206000503060005060600050206000502
 
364
060005010600050206000505060005ff05ff051f06000502060005010600050806000502
 
365
060005020600050b07010202010302020001050b06000508060005050600050206000502
 
366
060005190600050606000502060005020600050106000500060005000600051706000502
 
367
060005010601050106000503060005060600050206000502060005010600050206000501
 
368
06000502060005ff05ff051f060005020600050106000502060005040600050206010501
 
369
0600050b07010202010302020001050b0600050806000505060005030602051a06000506
 
370
060005030602050306000500060005190602050206000500060105050601050406000503
 
371
060205020600050206000502060205ff05ff052006000502060005020602050506000502
 
372
060005000601050c070102020103020200010576060005ff05ff055b0600050f07010202
 
373
010302020001050a0606052a0606052a06060500060005ff05ff05450606050e0600050f
 
374
07010202010302020001050a0606052a0606052a06060500060005ff05ff05450606050e
 
375
0600050f0701020201030202000105ff05ff05e40701020201030202000105ff05ff05e4
 
376
0701020201030202000105ff05ff05e40701020201030202000107ff07ff07e602020103
 
377
0202000007ff07ff07e702020103020205ff05ff05e802020103020205ff05ff05e80202
 
378
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
379
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
380
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
381
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
382
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
383
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
384
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
385
0103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff05e80202
 
386
0103020205ff05ff05e802020103020205ff05ff05e8020201030202051c010205040103
 
387
05c1010205040103051a0102057f01010505010205f001020504010305190101052f0202
 
388
01030202050e01060508010005060101050f010205010102059b01060508010005060101
 
389
0510010505040101054d010205240104050d0101051e0102052401020501010205930106
 
390
0508010005060101051101030535020201030202050e0100050101010500010005070101
 
391
050601000511010105010100059d01000501010105000100050701010506010005130101
 
392
05060100054d0101050001010524010105000101050c0100051e01010500010105240101
 
393
050101000595010005010101050001000507010105060100051101010501010105340202
 
394
010302020510010105030103050201030503010105030103050801020500010105010103
 
395
05000101050001000500010005020103058b010105030103050201030503010105030103
 
396
050a010105030104054c0101050101050500010305000102050201030501010105000102
 
397
05070101050101010500010305030104051d010105010105050001030500010205020103
 
398
050101010500010205070102050001010501010305000101050001000500010005020103
 
399
058301010503010305020103050301010503010305090101050101000500010305020105
 
400
050101030521020201030202051001010506010105000101050101010502010105020101
 
401
0501010105070100050001000500010005050101050001050500010105010101058a0101
 
402
050601010500010105010101050201010502010105010101050901010502010105010101
 
403
054c01000502010105000101050201000500010205000101050001010501010105010102
 
404
050001000507010105010101050201010502010105010101051d01000502010105000101
 
405
050201000500010205000101050001010501010105010102050001000507010005000100
 
406
050001000505010105000105050001010501010105820101050601010500010105010101
 
407
050201010502010105010101050801020504010105020101050001010501010105010101
 
408
052002020103020205100100050401040500010105010101050201010501010605070100
 
409
0500010205020104050001010500010005000107058a0100050401040500010105010101
 
410
0502010105010106050901010501010105020101054b0101050201000501010105000100
 
411
05000100050001010501010805010101050a0103050401010501010105020101051c0101
 
412
05020100050101010500010005000100050001010501010805010101050a010005000102
 
413
050201040500010105000100050001070582010005040104050001010501010105020101
 
414
05010106050901020503010105040101050101060520020201030202050f010105020101
 
415
0501010105000101050201010501010105020101050b0101050001010501010105010101
 
416
05010100050001000500010005000101058e010105020101050101010500010105020101
 
417
0501010105020101050d01010502010105010101054c0101050101010501010205000100
 
418
05010100050201000500010105050101050a0101050601010502010105010101051d0101
 
419
05010101050101020500010005010100050201000500010105050101050a010105000101
 
420
050101010501010105010100050001000500010005000101058601010502010105010101
 
421
05000101050201010501010105020101050b010105010101050201010503010105030101
 
422
0525020201030202050f0101050201010501010105000101050101010502010105020101
 
423
050101010507010005010101050101010501010105000101050001000500010005000101
 
424
05010101058a010105020101050101010500010105010101050201010502010105010101
 
425
050901010502010105010101054c01010500010105020103050101010501010105000101
 
426
0501010105010101050a0101050601010502010105010101051d01010500010105020103
 
427
0501010105010101050001010501010105010101050a0100050101010501010105010101
 
428
050001010500010005000100050001010501010105820101050201010501010105000101
 
429
050101010502010105020101050101010507010105010101050201010502010205000101
 
430
05000101050101010521020201030202050e01030502010a050101050501010305070102
 
431
0500010105020107050001000500010105000103058a01030502010a0501010505010103
 
432
0508010505010105054c0102050301010500010005000103050001020500010305010104
 
433
050701030503010505010105051d01020503010105000100050001030500010205000103
 
434
05010104050701020500010105020107050001000500010105000103058201030502010a
 
435
050101050501010305090103050101050500010505010103052202020103020205ff05ff
 
436
05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff
 
437
05e802020103020205ff05ff05e802020103020205ff05ff05e802020103020205ff05ff
 
438
05e8020201030202050201ff01ff01e205020202010302020503080000cb080001000081
 
439
01010059010100c30101005801000711000005020202010302020503080000cb08000100
 
440
000b0101004e0101002201010059010100c3010100580100070103060700030600010502
 
441
0202010302020503080000cb08000100000a0100001c0100002a01000008010000210101
 
442
000c0100002a0100001f010100c301010058010007010305000007000306000105020202
 
443
0103020205030800001f0800000a080000060802009408000100000a0100000401020003
 
444
0102000c010000040101000a010200030102000b0101000201000007010000210101000b
 
445
010000040101000a010200030102000b010100020100001e010100c30101000a0101004b
 
446
0100070103050000070103050001050202020103020205030800001f0800000a08000008
 
447
0800009408000100000a010000030100000201000001010000020100000a010000040100
 
448
000101000008010000020100000101000002010000090100000101000002010000060100
 
449
00210101000a010000040100000101000008010000020100000101000002010000090100
 
450
0001010000020100001d010100c301010009010000010100004a01000701030400010701
 
451
030500010502020201030202050308000008080100000800000208000002080000080804
 
452
0002080200020800000008010005080000030802008d08000100000a0100000701000005
 
453
0100000901000005010000010100000c0100000501000009010000010100000301000005
 
454
010000210101000901000005010000010100000c01000005010000090100000101000003
 
455
0100001c010100c301010009010000010100004a01000701030400010500070103040001
 
456
0502020201030202050308000008080000000800000008000001080000020800000a0800
 
457
00030800000208000001080100010800000408000002080000020800008c08000100000a
 
458
01000007010000050100000801000006010000010100000c010000050100000901000001
 
459
0100000401000004010000210101000801000006010000010100000c0100000501000009
 
460
01000001010000040100001b010100c301010009010000010100004a0100070103030001
 
461
050107010304000105020202010302020503080000080800000008000000080000020800
 
462
00010800000a0800000708000001080000020800000408000002080000020800008c0800
 
463
0100000801010007010000050100000801000007010000010100000a010100040101000a
 
464
0100000101000005010000040101001f0101000701000007010000010100000a01010004
 
465
0101000a01000001010000050100001a010100c301010009010000010100004a01000701
 
466
030300010502070103030001050202020103020205030800000808000000080000000800
 
467
0002080000010800000a08000004080300010800000208000004080000020804008c0800
 
468
0100000a01000005010000050100000a01000006010000010100000c0100000501000009
 
469
010000010100000401000004010000210101000801000006010000010100000c01000005
 
470
0100000901000001010000040100001b010100c301010009010000010100004a01000701
 
471
030200010503070103030001050202020103020205030800000808000000080000000800
 
472
0003080000000800000a0800000308000002080000010800000208000004080000020800
 
473
009008000100000a01000004010000050100000c01000005010000010100000c01000005
 
474
01000009010000010100000301000005010000210101000901000005010000010100000c
 
475
010000050100000901000001010000030100001c010100c301010009010000010100004a
 
476
010007010302000105040701030200010502020201030202050308000008080000000800
 
477
0000080000030801000b0800000308000002080000010801000108000004080000020800
 
478
00020800008c08000100000a010000030100000501000007010100040100000401000001
 
479
010000030101000201000002010000010100000201000003010100030100000101000002
 
480
01000006010000210101000a010000040100000101000003010100020100000201000001
 
481
01000002010000030101000301000001010000020100001d010100c30101000901000001
 
482
0100004a0100070103010001050507010302000105020202010302020503080000080800
 
483
000008000000080000040800000c08010002080300010800000008010005080000030802
 
484
008d08000100000a01000003010400010104000301010005010000040101000401010003
 
485
0102000301020004010100040101000201000007010000210101000b0100000401010004
 
486
01010003010200030102000401010004010100020100001e010100c30101000a0101004b
 
487
010007010301000105060701030100010502020201030202050308000012080000010805
 
488
00af08000100000a01000014010000060100002a01000008010000210101000c0100002a
 
489
0100001f010100c301010058010007010300000105070701030100010502020201030202
 
490
05030800000f08000000080000b808000100000b010100100101003b0101002201010059
 
491
010100c30101005801000701030000010508070103000001050202020103020205030800
 
492
0010080000b908000100008101010059010100c301010058010007010001070b03000001
 
493
05020202010302020503080000cb08000100008101010059010100c30101005801000701
 
494
0000070d000105020202010302020503080000cb08000100008101010059010100c30101
 
495
005801000701030e000105020202010302020503080000cb080001000081010100590101
 
496
00c30101005801000701001005020202010302020503080000cb08000100008101010059
 
497
010100c30101005801000701000d070000010502020201030202050308cd01ff01ff0100
 
498
07010001050a070100010502020201030202050301ff01ff01ce07010001050a07010001
 
499
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
500
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
501
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
502
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
503
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
504
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
505
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
506
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
507
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
508
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
509
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
510
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
511
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
512
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
513
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
514
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
515
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
516
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
517
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
518
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
519
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
520
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
521
050a070100010502020201030202050301ff01ff01ce07010001050a0701000105020202
 
522
01030202050301ff01ff01ce07010001050a0701000105020202010302020503010000cb
 
523
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
524
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
525
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
526
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
527
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
528
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
529
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
530
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
531
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
532
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
533
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
534
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
535
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
536
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
537
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
538
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
539
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
540
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
541
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
542
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
543
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
544
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
545
050301ff01ff01ce07010001050a070100010502020201030202050301ff01ff01ce0701
 
546
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
547
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
548
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
549
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
550
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
551
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
552
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
553
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
554
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
555
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
556
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
557
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
558
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
559
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
560
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
561
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
562
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
563
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
564
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
565
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
566
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
567
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
568
0058010007010001050a070100010502020201030202050301ff01ff01ce07010001050a
 
569
070100010502020201030202050301ff01ff01ce07010001050a07010001050202020103
 
570
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
571
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
572
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
573
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
574
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
575
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
576
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
577
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
578
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
579
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
580
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
581
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
582
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
583
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
584
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
585
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
586
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
587
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
588
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
589
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
590
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
591
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
592
0502020201030202050301ff01ff01ce07010001050a0701000105020202010302020503
 
593
01ff01ff01ce07010001050a0701000105020202010302020503010000cb010100810101
 
594
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
595
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
596
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
597
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
598
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
599
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
600
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
601
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
602
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
603
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
604
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
605
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
606
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
607
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
608
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
609
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
610
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
611
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
612
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
613
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
614
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
615
0059010100c301010058010007010001050a070100010502020201030202050301ff01ff
 
616
01ce07010001050a070100010502020201030202050301ff01ff01ce07010001050a0701
 
617
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
618
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
619
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
620
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
621
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
622
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
623
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
624
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
625
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
626
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
627
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
628
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
629
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
630
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
631
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
632
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
633
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
634
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
635
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
636
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
637
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
638
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
639
0001050a070100010502020201030202050301ff01ff01ce07010001050a070100010502
 
640
020201030202050301ff01ff01ce07010001050a07010001050202020103020205030100
 
641
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
642
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
643
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
644
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
645
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
646
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
647
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
648
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
649
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
650
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
651
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
652
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
653
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
654
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
655
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
656
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
657
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
658
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
659
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
660
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
661
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
662
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
663
0202050301ff01ff01ce07010001050a070100010502020201030202050301ff01ff01ce
 
664
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
665
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
666
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
667
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
668
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
669
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
670
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
671
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
672
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
673
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
674
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
675
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
676
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
677
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
678
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
679
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
680
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
681
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
682
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
683
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
684
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
685
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
686
01010058010007010001050a070100010502020201030202050301ff01ff01ce07010001
 
687
050a070100010502020201030202050301ff01ff01ce07010001050a0701000105020202
 
688
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
689
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
690
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
691
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
692
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
693
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
694
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
695
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
696
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
697
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
698
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
699
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
700
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
701
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
702
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
703
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
704
0001050a0701000105020202010302020503010000cb0101008101010059010100c30101
 
705
0058010007010001050a0701000105020202010302020503010000cb0101008101010059
 
706
010100c301010058010007010001050a0701000105020202010302020503010000cb0101
 
707
008101010059010100c301010058010007010001050a0701000105020202010302020503
 
708
010000cb0101008101010059010100c301010058010007010001050a0701000105020202
 
709
010302020503010000cb0101008101010059010100c301010058010007010001050a0701
 
710
00010502020201030202050301ff01ff01ce07010001050a070100010502020201030202
 
711
050301ff01ff01ce07010001050a0701000105020202010302020503010000cb01010081
 
712
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
713
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
714
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
715
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
716
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
717
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
718
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
719
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
720
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
721
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
722
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
723
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
724
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
725
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
726
01010059010100c301010058010007010001050a07010001050202020103020205030100
 
727
00cb0101008101010059010100c301010058010007010001050a07010001050202020103
 
728
02020503010000cb0101008101010059010100c301010058010007010001050a07010001
 
729
05020202010302020503010000cb0101008101010059010100c301010058010007010001
 
730
050a0701000105020202010302020503010000cb0101008101010059010100c301010058
 
731
010007010001050a0701000105020202010302020503010000cb01010081010100590101
 
732
00c301010058010007010001050a0701000105020202010302020503010000cb01010081
 
733
01010059010100c301010058010007010001050a070100010502020201030202050301ff
 
734
01ff01ce07010001050a070100010502020201030202050301ff01ff01ce07010001050a
 
735
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
736
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
737
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
738
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
739
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
740
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
741
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
742
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
743
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
744
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
745
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
746
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
747
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
748
0202010302020503010000cb0101008101010059010100c301010058010007010001050a
 
749
0701000105020202010302020503010000cb0101008101010059010100c3010100580100
 
750
07010001050a0701000105020202010302020503010000cb0101008101010059010100c3
 
751
01010058010007010001050a0701000105020202010302020503010000cb010100810101
 
752
0059010100c301010058010007010001050a0701000105020202010302020503010000cb
 
753
0101008101010059010100c301010058010007010001050a070100010502020201030202
 
754
0503010000cb0101008101010059010100c301010058010007010001050a070100010502
 
755
0202010302020503010000cb0101008101010059010100c301010058010007010001070c
 
756
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
757
0000070d00010502020201030202050301ff01ff01ce0701030e00010502020201030202
 
758
050301ff01ff01ce0701030e000105020202010302020503010000cb0101008101010059
 
759
010100c30101005801000701030e000105020202010302020503010000cb010100810101
 
760
0059010100c30101005801000701030e000105020202010302020503010000cb01010081
 
761
01010059010100c30101005801000701030e000105020202010302020503010000cb0101
 
762
008101010059010100c30101005801000701030e000105020202010302020503010000cb
 
763
0101008101010059010100c30101005801000701030e0001050202020103020205030100
 
764
00cb0101008101010059010100c30101005801000701030e000105020202010302020503
 
765
010000cb0101008101010059010100c30101005801000701030e00010502020201030202
 
766
0503010000cb0101008101010059010100c30101005801000701030e0001050202020103
 
767
02020503010000cb0101008101010059010100c30101005801000701030e000105020202
 
768
010302020503010000cb0101008101010059010100c30101005801000701030e00010502
 
769
0202010302020503010000cb0101008101010059010100c30101005801000701030e0001
 
770
05020202010302020503010000cb0101008101010059010100c30101005801000701030e
 
771
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
772
030e000105020202010302020503010000cb0101008101010059010100c3010100580100
 
773
0701030e000105020202010302020503010000cb0101008101010059010100c301010058
 
774
01000701030e000105020202010302020503010000cb0101008101010059010100c30101
 
775
005801000701030e000105020202010302020503010000cb0101008101010059010100c3
 
776
0101005801000701030e000105020202010302020503010000cb01010081010100590101
 
777
00c30101005801000701030e000105020202010302020503010000cb0101008101010059
 
778
010100c30101005801000701030e00010502020201030202050301ff01ff01ce0701030e
 
779
00010502020201030202050301ff01ff01ce0701001005020202010302020503010000cb
 
780
0101008101010059010100c301010058010007010300000c070000010502020201030202
 
781
0503010000cb0101008101010059010100c3010100580100070103000001050807010300
 
782
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
783
03010001050707010300000105020202010302020503010000cb01010081010100590101
 
784
00c3010100580100070103010001050607010301000105020202010302020503010000cb
 
785
0101008101010059010100c3010100580100070103020001050507010301000105020202
 
786
010302020503010000cb0101008101010059010100c30101005801000701030200010504
 
787
07010302000105020202010302020503010000cb0101008101010059010100c301010058
 
788
0100070103030001050307010302000105020202010302020503010000cb010100810101
 
789
0059010100c3010100580100070103030001050207010303000105020202010302020503
 
790
010000cb0101008101010059010100c30101005801000701030400010501070103030001
 
791
05020202010302020503010000cb0101008101010059010100c301010058010007010304
 
792
0001050007010304000105020202010302020503010000cb0101008101010059010100c3
 
793
01010058010007010305000007020304000105020202010302020503010000cb01010081
 
794
01010059010100c301010058010007010305000007010305000105020202010302020503
 
795
010000cb0101008101010059010100c30101005801000701030607010305000105020202
 
796
010302020503010000cb0101008101010059010100c30101005801000701030607000306
 
797
000105020202010302020503010000cb0101008101010059010100c30101005801000701
 
798
001005020202010302020503010000cb0101008101010059010100c30101005801000700
 
799
00110502020201030202050207ff07ff07d30511020201030202050207ff07ff07d20000
 
800
051102020103020205020701030d0000030000ff00ff00af03000001030c000105110202
 
801
0103020205020701030b00010700030000ff00ff00ae070003000003030a000105110202
 
802
01030202050207010309000207010300000105ff05ff05ab070103000005030800010511
 
803
0202010302020502070103070003050007010300000105ff05ff05ab0701030000010501
 
804
00030306000105110202010302020502070103050003050207010300000105ff05ff05ab
 
805
070103000001050300030304000105110202010302020502070103030003050407010300
 
806
000105ff05ff05ab07010300000105050003030200010511020201030202050207010301
 
807
0003050607010300000105ff05ff05ab0701030000010507000303000001051102020103
 
808
020205020705050807010300000105ff05ff05ab07010300000105080703000105110202
 
809
010302020502070103010703050607010300000105ff05ff05ab07010300000105070703
 
810
0300000105110202010302020502070103030703050407010300000105ff05ff05ab0701
 
811
030000010505070303020001051102020103020205020701030507030502070103000001
 
812
05ff05ff05ab070103000001050307030304000105110202010302020502070103070703
 
813
050007010300000105ff05ff05ab07010300000105010703030600010511020201030202
 
814
05020701030907040300000105ff05ff05ab070103000001070303080001051102020103
 
815
020205020701030b07020300000107ff07ff07ad030000010701030a0001051102020101
 
816
000405020701030d07000300000007ff07ff07ae030000000700030c0001051100050202
 
817
04000502070100ff00ff00d105110000020204000000020204000502070000ff00ff00d2
 
818
051100000202040000000202040005ff05ff05e800000202040000000202040005ff05ff
 
819
05e800000202040000000202040005ff05ff05e8000002020400000002020400000502ff
 
820
02ff02dc00060202040000000208040002ff02ff02dc00000208040000000208040002ff
 
821
02ff02dc00000208040000000208040001ff01ff01dc0000020804000000040901ff01ff
 
822
01dc00000409
 
823
%%EndData
 
824
end
 
825
%%PageTrailer
 
826
%%Trailer
 
827
%%BoundingBox: 0 42 377 247
 
828
%%EOF