psd-enginedata 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. data/.gitignore +18 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +2 -0
  4. data/Guardfile +9 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +112 -0
  7. data/Rakefile +1 -0
  8. data/lib/psd/enginedata.rb +93 -0
  9. data/lib/psd/enginedata/document_helpers.rb +46 -0
  10. data/lib/psd/enginedata/errors.rb +6 -0
  11. data/lib/psd/enginedata/export.rb +8 -0
  12. data/lib/psd/enginedata/exporters/css.rb +65 -0
  13. data/lib/psd/enginedata/instruction.rb +39 -0
  14. data/lib/psd/enginedata/instructions/boolean.rb +14 -0
  15. data/lib/psd/enginedata/instructions/hash_end.rb +18 -0
  16. data/lib/psd/enginedata/instructions/hash_start.rb +16 -0
  17. data/lib/psd/enginedata/instructions/multi_line_array_end.rb +16 -0
  18. data/lib/psd/enginedata/instructions/multi_line_array_start.rb +16 -0
  19. data/lib/psd/enginedata/instructions/noop.rb +10 -0
  20. data/lib/psd/enginedata/instructions/number.rb +14 -0
  21. data/lib/psd/enginedata/instructions/number_with_decimal.rb +14 -0
  22. data/lib/psd/enginedata/instructions/property.rb +14 -0
  23. data/lib/psd/enginedata/instructions/property_with_data.rb +21 -0
  24. data/lib/psd/enginedata/instructions/single_line_array.rb +21 -0
  25. data/lib/psd/enginedata/instructions/string.rb +14 -0
  26. data/lib/psd/enginedata/node.rb +11 -0
  27. data/lib/psd/enginedata/text.rb +49 -0
  28. data/lib/psd/enginedata/version.rb +6 -0
  29. data/psd-enginedata.gemspec +29 -0
  30. data/spec/files/enginedata +1622 -0
  31. data/spec/files/enginedata_simple +26 -0
  32. data/spec/integration/export_spec.rb +35 -0
  33. data/spec/integration/parser_spec.rb +24 -0
  34. data/spec/spec_helper.rb +17 -0
  35. metadata +198 -0
@@ -0,0 +1,14 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class Boolean < Instruction
6
+ def self.token; /^(true|false)$/; end
7
+
8
+ def execute!
9
+ match[1] == 'true' ? true : false
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,18 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class HashEnd < Instruction
6
+ def self.token; /^>>$/; end
7
+
8
+ def execute!
9
+ property, node = stack_pop
10
+ return if node.nil?
11
+
12
+ update_node property, node
13
+ set_node node
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,16 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class HashStart < Instruction
6
+ def self.token; /^<<$/; end
7
+
8
+ def execute!
9
+ stack_push
10
+ reset_node
11
+ set_property
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,16 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class MultiLineArrayEnd < Instruction
6
+ def self.token; /^\]$/; end
7
+
8
+ def execute!
9
+ property, node = stack_pop
10
+ update_node(property, node)
11
+ set_node node
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,16 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class MultiLineArrayStart < Instruction
6
+ def self.token; /^\/(\w+) \[$/; end
7
+
8
+ def execute!
9
+ stack_push match[1]
10
+ set_node []
11
+ set_property
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,10 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class Noop < Instruction
6
+ def self.token; /^$/; end
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,14 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class Number < Instruction
6
+ def self.token; /^(-?\d+)$/; end
7
+
8
+ def execute!
9
+ match[1].to_i
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class NumberWithDecimal < Instruction
6
+ def self.token; /^(-?\d*)\.(\d+)$/; end
7
+
8
+ def execute!
9
+ "#{match[1]}.#{match[2]}".to_f
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class Property < Instruction
6
+ def self.token; /^\/([A-Z0-9]+)$/i; end
7
+
8
+ def execute!
9
+ set_property match[1]
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class PropertyWithData < Instruction
6
+ def self.token; /^\/([A-Z0-9]+) (.*)$/i; end
7
+
8
+ def execute!
9
+ set_property match[1]
10
+ data = parse_tokens match[2]
11
+
12
+ if node.is_a?(PSD::EngineData::Node)
13
+ node[property] = data
14
+ elsif node.is_a?(Array)
15
+ node.push data
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class SingleLineArray < Instruction
6
+ def self.token; /^\[(.*)\]$/; end
7
+
8
+ def execute!
9
+ items = match[1].strip.split(" ")
10
+ data = []
11
+
12
+ items.each do |item|
13
+ data << parse_tokens(item)
14
+ end
15
+
16
+ return data
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,14 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ class Instruction
5
+ class String < Instruction
6
+ def self.token; /^\(\u{2db}\u{2c7}(.*)\)$/; end
7
+
8
+ def execute!
9
+ match[1].gsub(/\r/, "\n").strip
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,11 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ # Represents a single node in the parsing tree. Extended with Hashie methods
5
+ # to make data access easier.
6
+ class Node < Hash
7
+ include Hashie::Extensions::MergeInitializer
8
+ include Hashie::Extensions::MethodAccess
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,49 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ # Sanitizes and helps with access to the document text.
5
+ class Text
6
+ # The current document split by newlines into an array.
7
+ attr_reader :text
8
+
9
+ # The current line number in the document.
10
+ attr_accessor :line
11
+
12
+ # Stores the document as a newline-split array and initializes
13
+ # the current line to 0.
14
+ def initialize(text)
15
+ @text = text.split("\n")
16
+ @line = 0
17
+ end
18
+
19
+ # Returns the current line stripped of any tabs and padding.
20
+ def current
21
+ return nil if at_end?
22
+ @text[@line].gsub(/\t/, "").strip
23
+ end
24
+
25
+ # Are we at the end of the document?
26
+ def at_end?
27
+ @text[@line].nil?
28
+ end
29
+
30
+ # Moves the line pointer to the next line and returns it.
31
+ def next!
32
+ @line += 1
33
+ current
34
+ end
35
+
36
+ # Peeks at the next line in the document without moving the
37
+ # line pointer.
38
+ def next
39
+ @text[@line + 1]
40
+ end
41
+
42
+ # Returns the number of lines in the document.
43
+ def length
44
+ @text.length
45
+ end
46
+ alias :size :length
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,6 @@
1
+ # -*- encoding : utf-8 -*-
2
+ class PSD
3
+ class EngineData
4
+ VERSION = "0.2.3"
5
+ end
6
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'psd/enginedata/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "psd-enginedata"
8
+ spec.version = PSD::EngineData::VERSION
9
+ spec.authors = ["Ryan LeFevre"]
10
+ spec.email = ["meltingice8917@gmail.com"]
11
+ spec.description = %q{Parser for the markup format used in the PSD file format}
12
+ spec.summary = %q{Parser for the markup format used in the PSD file format}
13
+ spec.homepage = "http://cosmos.layervault.com/psdrb.html"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = Dir.glob("spec/**/*")
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency 'hashie', '~> 2.0'
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rspec"
26
+ spec.add_development_dependency "guard"
27
+ spec.add_development_dependency "guard-rspec"
28
+ spec.add_development_dependency "rb-fsevent", "~> 0.9"
29
+ end
@@ -0,0 +1,1622 @@
1
+
2
+
3
+ <<
4
+ /EngineDict
5
+ <<
6
+ /Editor
7
+ <<
8
+ /Text (˛ˇMake a change and save.
9
+ >>
10
+ /ParagraphRun
11
+ <<
12
+ /DefaultRunData
13
+ <<
14
+ /ParagraphSheet
15
+ <<
16
+ /DefaultStyleSheet 0
17
+ /Properties
18
+ <<
19
+ >>
20
+ >>
21
+ /Adjustments
22
+ <<
23
+ /Axis [ 1.0 0.0 1.0 ]
24
+ /XY [ 0.0 0.0 ]
25
+ >>
26
+ >>
27
+ /RunArray [
28
+ <<
29
+ /ParagraphSheet
30
+ <<
31
+ /DefaultStyleSheet 0
32
+ /Properties
33
+ <<
34
+ /Justification 2
35
+ /FirstLineIndent 0.0
36
+ /StartIndent 0.0
37
+ /EndIndent 0.0
38
+ /SpaceBefore 0.0
39
+ /SpaceAfter 0.0
40
+ /AutoHyphenate false
41
+ /HyphenatedWordSize 6
42
+ /PreHyphen 2
43
+ /PostHyphen 2
44
+ /ConsecutiveHyphens 8
45
+ /Zone 36.0
46
+ /WordSpacing [ .8 1.0 1.33 ]
47
+ /LetterSpacing [ 0.0 0.0 0.0 ]
48
+ /GlyphSpacing [ 1.0 1.0 1.0 ]
49
+ /AutoLeading 1.2
50
+ /LeadingType 0
51
+ /Hanging false
52
+ /Burasagari false
53
+ /KinsokuOrder 0
54
+ /EveryLineComposer false
55
+ >>
56
+ >>
57
+ /Adjustments
58
+ <<
59
+ /Axis [ 1.0 0.0 1.0 ]
60
+ /XY [ 0.0 0.0 ]
61
+ >>
62
+ >>
63
+ ]
64
+ /RunLengthArray [ 24 ]
65
+ /IsJoinable 1
66
+ >>
67
+ /StyleRun
68
+ <<
69
+ /DefaultRunData
70
+ <<
71
+ /StyleSheet
72
+ <<
73
+ /StyleSheetData
74
+ <<
75
+ >>
76
+ >>
77
+ >>
78
+ /RunArray [
79
+ <<
80
+ /StyleSheet
81
+ <<
82
+ /StyleSheetData
83
+ <<
84
+ /Font 0
85
+ /FontSize 33.0
86
+ /FauxBold false
87
+ /FauxItalic false
88
+ /AutoLeading true
89
+ /Leading 27.6
90
+ /HorizontalScale 1.0
91
+ /VerticalScale 1.0
92
+ /Tracking 0
93
+ /AutoKerning true
94
+ /Kerning 0
95
+ /BaselineShift 0.0
96
+ /FontCaps 0
97
+ /FontBaseline 0
98
+ /Underline false
99
+ /Strikethrough false
100
+ /Ligatures true
101
+ /DLigatures false
102
+ /BaselineDirection 1
103
+ /Tsume 0.0
104
+ /StyleRunAlignment 2
105
+ /Language 0
106
+ /NoBreak false
107
+ /FillColor
108
+ <<
109
+ /Type 1
110
+ /Values [ 1.0 .07452 .47058 .38431 ]
111
+ >>
112
+ /StrokeColor
113
+ <<
114
+ /Type 1
115
+ /Values [ 1.0 .24468 .28678 .33725 ]
116
+ >>
117
+ /FillFlag true
118
+ /StrokeFlag false
119
+ /FillFirst false
120
+ /YUnderline 1
121
+ /OutlineWidth .99987
122
+ /CharacterDirection 0
123
+ /HindiNumbers false
124
+ /Kashida 1
125
+ /DiacriticPos 2
126
+ >>
127
+ >>
128
+ >>
129
+ <<
130
+ /StyleSheet
131
+ <<
132
+ /StyleSheetData
133
+ <<
134
+ /Font 0
135
+ /FontSize 33.0
136
+ /FauxBold false
137
+ /FauxItalic false
138
+ /AutoLeading true
139
+ /Leading 27.6
140
+ /HorizontalScale 1.0
141
+ /VerticalScale 1.0
142
+ /Tracking 0
143
+ /AutoKerning true
144
+ /Kerning 0
145
+ /BaselineShift 0.0
146
+ /FontCaps 0
147
+ /FontBaseline 0
148
+ /Underline false
149
+ /Strikethrough false
150
+ /Ligatures true
151
+ /DLigatures false
152
+ /BaselineDirection 1
153
+ /Tsume 0.0
154
+ /StyleRunAlignment 2
155
+ /Language 0
156
+ /NoBreak false
157
+ /FillColor
158
+ <<
159
+ /Type 1
160
+ /Values [ 1.0 .07452 .47058 .38431 ]
161
+ >>
162
+ /StrokeColor
163
+ <<
164
+ /Type 1
165
+ /Values [ 1.0 .24468 .28678 .33725 ]
166
+ >>
167
+ /FillFlag true
168
+ /StrokeFlag false
169
+ /FillFirst false
170
+ /YUnderline 1
171
+ /OutlineWidth .99987
172
+ /CharacterDirection 0
173
+ /HindiNumbers false
174
+ /Kashida 1
175
+ /DiacriticPos 2
176
+ >>
177
+ >>
178
+ >>
179
+ <<
180
+ /StyleSheet
181
+ <<
182
+ /StyleSheetData
183
+ <<
184
+ /Font 0
185
+ /FontSize 33.0
186
+ /FauxBold false
187
+ /FauxItalic false
188
+ /AutoLeading true
189
+ /Leading 27.6
190
+ /HorizontalScale 1.0
191
+ /VerticalScale 1.0
192
+ /Tracking 0
193
+ /AutoKerning true
194
+ /Kerning 0
195
+ /BaselineShift 0.0
196
+ /FontCaps 0
197
+ /FontBaseline 0
198
+ /Underline false
199
+ /Strikethrough false
200
+ /Ligatures true
201
+ /DLigatures false
202
+ /BaselineDirection 1
203
+ /Tsume 0.0
204
+ /StyleRunAlignment 2
205
+ /Language 0
206
+ /NoBreak false
207
+ /FillColor
208
+ <<
209
+ /Type 1
210
+ /Values [ 1.0 .07452 .47058 .38431 ]
211
+ >>
212
+ /StrokeColor
213
+ <<
214
+ /Type 1
215
+ /Values [ 1.0 .24468 .28678 .33725 ]
216
+ >>
217
+ /FillFlag true
218
+ /StrokeFlag false
219
+ /FillFirst false
220
+ /YUnderline 1
221
+ /OutlineWidth .99987
222
+ /CharacterDirection 0
223
+ /HindiNumbers false
224
+ /Kashida 1
225
+ /DiacriticPos 2
226
+ >>
227
+ >>
228
+ >>
229
+ <<
230
+ /StyleSheet
231
+ <<
232
+ /StyleSheetData
233
+ <<
234
+ /Font 0
235
+ /FontSize 33.0
236
+ /FauxBold false
237
+ /FauxItalic false
238
+ /AutoLeading true
239
+ /Leading 27.6
240
+ /HorizontalScale 1.0
241
+ /VerticalScale 1.0
242
+ /Tracking 0
243
+ /AutoKerning true
244
+ /Kerning 0
245
+ /BaselineShift 0.0
246
+ /FontCaps 0
247
+ /FontBaseline 0
248
+ /Underline false
249
+ /Strikethrough false
250
+ /Ligatures true
251
+ /DLigatures false
252
+ /BaselineDirection 1
253
+ /Tsume 0.0
254
+ /StyleRunAlignment 2
255
+ /Language 0
256
+ /NoBreak false
257
+ /FillColor
258
+ <<
259
+ /Type 1
260
+ /Values [ 1.0 .07452 .47058 .38431 ]
261
+ >>
262
+ /StrokeColor
263
+ <<
264
+ /Type 1
265
+ /Values [ 1.0 .24468 .28678 .33725 ]
266
+ >>
267
+ /FillFlag true
268
+ /StrokeFlag false
269
+ /FillFirst false
270
+ /YUnderline 1
271
+ /OutlineWidth .99987
272
+ /CharacterDirection 0
273
+ /HindiNumbers false
274
+ /Kashida 1
275
+ /DiacriticPos 2
276
+ >>
277
+ >>
278
+ >>
279
+ <<
280
+ /StyleSheet
281
+ <<
282
+ /StyleSheetData
283
+ <<
284
+ /Font 0
285
+ /FontSize 33.0
286
+ /FauxBold false
287
+ /FauxItalic false
288
+ /AutoLeading true
289
+ /Leading 27.6
290
+ /HorizontalScale 1.0
291
+ /VerticalScale 1.0
292
+ /Tracking 0
293
+ /AutoKerning true
294
+ /Kerning 0
295
+ /BaselineShift 0.0
296
+ /FontCaps 0
297
+ /FontBaseline 0
298
+ /Underline false
299
+ /Strikethrough false
300
+ /Ligatures true
301
+ /DLigatures false
302
+ /BaselineDirection 1
303
+ /Tsume 0.0
304
+ /StyleRunAlignment 2
305
+ /Language 0
306
+ /NoBreak false
307
+ /FillColor
308
+ <<
309
+ /Type 1
310
+ /Values [ 1.0 .07452 .47058 .38431 ]
311
+ >>
312
+ /StrokeColor
313
+ <<
314
+ /Type 1
315
+ /Values [ 1.0 .24468 .28678 .33725 ]
316
+ >>
317
+ /FillFlag true
318
+ /StrokeFlag false
319
+ /FillFirst false
320
+ /YUnderline 1
321
+ /OutlineWidth .99987
322
+ /CharacterDirection 0
323
+ /HindiNumbers false
324
+ /Kashida 1
325
+ /DiacriticPos 2
326
+ >>
327
+ >>
328
+ >>
329
+ <<
330
+ /StyleSheet
331
+ <<
332
+ /StyleSheetData
333
+ <<
334
+ /Font 0
335
+ /FontSize 33.0
336
+ /FauxBold false
337
+ /FauxItalic false
338
+ /AutoLeading true
339
+ /Leading 27.6
340
+ /HorizontalScale 1.0
341
+ /VerticalScale 1.0
342
+ /Tracking 0
343
+ /AutoKerning true
344
+ /Kerning 0
345
+ /BaselineShift 0.0
346
+ /FontCaps 0
347
+ /FontBaseline 0
348
+ /Underline false
349
+ /Strikethrough false
350
+ /Ligatures true
351
+ /DLigatures false
352
+ /BaselineDirection 1
353
+ /Tsume 0.0
354
+ /StyleRunAlignment 2
355
+ /Language 0
356
+ /NoBreak false
357
+ /FillColor
358
+ <<
359
+ /Type 1
360
+ /Values [ 1.0 .07452 .47058 .38431 ]
361
+ >>
362
+ /StrokeColor
363
+ <<
364
+ /Type 1
365
+ /Values [ 1.0 .24468 .28678 .33725 ]
366
+ >>
367
+ /FillFlag true
368
+ /StrokeFlag false
369
+ /FillFirst false
370
+ /YUnderline 1
371
+ /OutlineWidth .99987
372
+ /CharacterDirection 0
373
+ /HindiNumbers false
374
+ /Kashida 1
375
+ /DiacriticPos 2
376
+ >>
377
+ >>
378
+ >>
379
+ <<
380
+ /StyleSheet
381
+ <<
382
+ /StyleSheetData
383
+ <<
384
+ /Font 0
385
+ /FontSize 33.0
386
+ /FauxBold false
387
+ /FauxItalic false
388
+ /AutoLeading true
389
+ /Leading 27.6
390
+ /HorizontalScale 1.0
391
+ /VerticalScale 1.0
392
+ /Tracking 0
393
+ /AutoKerning true
394
+ /Kerning 0
395
+ /BaselineShift 0.0
396
+ /FontCaps 0
397
+ /FontBaseline 0
398
+ /Underline false
399
+ /Strikethrough false
400
+ /Ligatures true
401
+ /DLigatures false
402
+ /BaselineDirection 1
403
+ /Tsume 0.0
404
+ /StyleRunAlignment 2
405
+ /Language 0
406
+ /NoBreak false
407
+ /FillColor
408
+ <<
409
+ /Type 1
410
+ /Values [ 1.0 .07452 .47058 .38431 ]
411
+ >>
412
+ /StrokeColor
413
+ <<
414
+ /Type 1
415
+ /Values [ 1.0 .24468 .28678 .33725 ]
416
+ >>
417
+ /FillFlag true
418
+ /StrokeFlag false
419
+ /FillFirst false
420
+ /YUnderline 1
421
+ /OutlineWidth .99987
422
+ /CharacterDirection 0
423
+ /HindiNumbers false
424
+ /Kashida 1
425
+ /DiacriticPos 2
426
+ >>
427
+ >>
428
+ >>
429
+ <<
430
+ /StyleSheet
431
+ <<
432
+ /StyleSheetData
433
+ <<
434
+ /Font 0
435
+ /FontSize 33.0
436
+ /FauxBold false
437
+ /FauxItalic false
438
+ /AutoLeading true
439
+ /Leading 27.6
440
+ /HorizontalScale 1.0
441
+ /VerticalScale 1.0
442
+ /Tracking 0
443
+ /AutoKerning true
444
+ /Kerning 0
445
+ /BaselineShift 0.0
446
+ /FontCaps 0
447
+ /FontBaseline 0
448
+ /Underline false
449
+ /Strikethrough false
450
+ /Ligatures true
451
+ /DLigatures false
452
+ /BaselineDirection 1
453
+ /Tsume 0.0
454
+ /StyleRunAlignment 2
455
+ /Language 0
456
+ /NoBreak false
457
+ /FillColor
458
+ <<
459
+ /Type 1
460
+ /Values [ 1.0 .07452 .47058 .38431 ]
461
+ >>
462
+ /StrokeColor
463
+ <<
464
+ /Type 1
465
+ /Values [ 1.0 .24468 .28678 .33725 ]
466
+ >>
467
+ /FillFlag true
468
+ /StrokeFlag false
469
+ /FillFirst false
470
+ /YUnderline 1
471
+ /OutlineWidth .99987
472
+ /CharacterDirection 0
473
+ /HindiNumbers false
474
+ /Kashida 1
475
+ /DiacriticPos 2
476
+ >>
477
+ >>
478
+ >>
479
+ <<
480
+ /StyleSheet
481
+ <<
482
+ /StyleSheetData
483
+ <<
484
+ /Font 0
485
+ /FontSize 33.0
486
+ /FauxBold false
487
+ /FauxItalic false
488
+ /AutoLeading true
489
+ /Leading 27.6
490
+ /HorizontalScale 1.0
491
+ /VerticalScale 1.0
492
+ /Tracking 0
493
+ /AutoKerning true
494
+ /Kerning 0
495
+ /BaselineShift 0.0
496
+ /FontCaps 0
497
+ /FontBaseline 0
498
+ /Underline false
499
+ /Strikethrough false
500
+ /Ligatures true
501
+ /DLigatures false
502
+ /BaselineDirection 1
503
+ /Tsume 0.0
504
+ /StyleRunAlignment 2
505
+ /Language 0
506
+ /NoBreak false
507
+ /FillColor
508
+ <<
509
+ /Type 1
510
+ /Values [ 1.0 .07452 .47058 .38431 ]
511
+ >>
512
+ /StrokeColor
513
+ <<
514
+ /Type 1
515
+ /Values [ 1.0 .24468 .28678 .33725 ]
516
+ >>
517
+ /FillFlag true
518
+ /StrokeFlag false
519
+ /FillFirst false
520
+ /YUnderline 1
521
+ /OutlineWidth .99987
522
+ /CharacterDirection 0
523
+ /HindiNumbers false
524
+ /Kashida 1
525
+ /DiacriticPos 2
526
+ >>
527
+ >>
528
+ >>
529
+ <<
530
+ /StyleSheet
531
+ <<
532
+ /StyleSheetData
533
+ <<
534
+ /Font 0
535
+ /FontSize 33.0
536
+ /FauxBold false
537
+ /FauxItalic false
538
+ /AutoLeading true
539
+ /Leading 27.6
540
+ /HorizontalScale 1.0
541
+ /VerticalScale 1.0
542
+ /Tracking 0
543
+ /AutoKerning true
544
+ /Kerning 0
545
+ /BaselineShift 0.0
546
+ /FontCaps 0
547
+ /FontBaseline 0
548
+ /Underline false
549
+ /Strikethrough false
550
+ /Ligatures true
551
+ /DLigatures false
552
+ /BaselineDirection 1
553
+ /Tsume 0.0
554
+ /StyleRunAlignment 2
555
+ /Language 0
556
+ /NoBreak false
557
+ /FillColor
558
+ <<
559
+ /Type 1
560
+ /Values [ 1.0 .07452 .47058 .38431 ]
561
+ >>
562
+ /StrokeColor
563
+ <<
564
+ /Type 1
565
+ /Values [ 1.0 .24468 .28678 .33725 ]
566
+ >>
567
+ /FillFlag true
568
+ /StrokeFlag false
569
+ /FillFirst false
570
+ /YUnderline 1
571
+ /OutlineWidth .99987
572
+ /CharacterDirection 0
573
+ /HindiNumbers false
574
+ /Kashida 1
575
+ /DiacriticPos 2
576
+ >>
577
+ >>
578
+ >>
579
+ <<
580
+ /StyleSheet
581
+ <<
582
+ /StyleSheetData
583
+ <<
584
+ /Font 0
585
+ /FontSize 33.0
586
+ /FauxBold false
587
+ /FauxItalic false
588
+ /AutoLeading true
589
+ /Leading 27.6
590
+ /HorizontalScale 1.0
591
+ /VerticalScale 1.0
592
+ /Tracking 0
593
+ /AutoKerning true
594
+ /Kerning 0
595
+ /BaselineShift 0.0
596
+ /FontCaps 0
597
+ /FontBaseline 0
598
+ /Underline false
599
+ /Strikethrough false
600
+ /Ligatures true
601
+ /DLigatures false
602
+ /BaselineDirection 1
603
+ /Tsume 0.0
604
+ /StyleRunAlignment 2
605
+ /Language 0
606
+ /NoBreak false
607
+ /FillColor
608
+ <<
609
+ /Type 1
610
+ /Values [ 1.0 .07452 .47058 .38431 ]
611
+ >>
612
+ /StrokeColor
613
+ <<
614
+ /Type 1
615
+ /Values [ 1.0 .24468 .28678 .33725 ]
616
+ >>
617
+ /FillFlag true
618
+ /StrokeFlag false
619
+ /FillFirst false
620
+ /YUnderline 1
621
+ /OutlineWidth .99987
622
+ /CharacterDirection 0
623
+ /HindiNumbers false
624
+ /Kashida 1
625
+ /DiacriticPos 2
626
+ >>
627
+ >>
628
+ >>
629
+ <<
630
+ /StyleSheet
631
+ <<
632
+ /StyleSheetData
633
+ <<
634
+ /Font 0
635
+ /FontSize 33.0
636
+ /FauxBold false
637
+ /FauxItalic false
638
+ /AutoLeading true
639
+ /Leading 27.6
640
+ /HorizontalScale 1.0
641
+ /VerticalScale 1.0
642
+ /Tracking 0
643
+ /AutoKerning true
644
+ /Kerning 0
645
+ /BaselineShift 0.0
646
+ /FontCaps 0
647
+ /FontBaseline 0
648
+ /Underline false
649
+ /Strikethrough false
650
+ /Ligatures true
651
+ /DLigatures false
652
+ /BaselineDirection 1
653
+ /Tsume 0.0
654
+ /StyleRunAlignment 2
655
+ /Language 0
656
+ /NoBreak false
657
+ /FillColor
658
+ <<
659
+ /Type 1
660
+ /Values [ 1.0 .07452 .47058 .38431 ]
661
+ >>
662
+ /StrokeColor
663
+ <<
664
+ /Type 1
665
+ /Values [ 1.0 .24468 .28678 .33725 ]
666
+ >>
667
+ /FillFlag true
668
+ /StrokeFlag false
669
+ /FillFirst false
670
+ /YUnderline 1
671
+ /OutlineWidth .99987
672
+ /CharacterDirection 0
673
+ /HindiNumbers false
674
+ /Kashida 1
675
+ /DiacriticPos 2
676
+ >>
677
+ >>
678
+ >>
679
+ <<
680
+ /StyleSheet
681
+ <<
682
+ /StyleSheetData
683
+ <<
684
+ /Font 0
685
+ /FontSize 33.0
686
+ /FauxBold false
687
+ /FauxItalic false
688
+ /AutoLeading true
689
+ /Leading 27.6
690
+ /HorizontalScale 1.0
691
+ /VerticalScale 1.0
692
+ /Tracking 0
693
+ /AutoKerning true
694
+ /Kerning 0
695
+ /BaselineShift 0.0
696
+ /FontCaps 0
697
+ /FontBaseline 0
698
+ /Underline false
699
+ /Strikethrough false
700
+ /Ligatures true
701
+ /DLigatures false
702
+ /BaselineDirection 1
703
+ /Tsume 0.0
704
+ /StyleRunAlignment 2
705
+ /Language 0
706
+ /NoBreak false
707
+ /FillColor
708
+ <<
709
+ /Type 1
710
+ /Values [ 1.0 .07452 .47058 .38431 ]
711
+ >>
712
+ /StrokeColor
713
+ <<
714
+ /Type 1
715
+ /Values [ 1.0 .24468 .28678 .33725 ]
716
+ >>
717
+ /FillFlag true
718
+ /StrokeFlag false
719
+ /FillFirst false
720
+ /YUnderline 1
721
+ /OutlineWidth .99987
722
+ /CharacterDirection 0
723
+ /HindiNumbers false
724
+ /Kashida 1
725
+ /DiacriticPos 2
726
+ >>
727
+ >>
728
+ >>
729
+ <<
730
+ /StyleSheet
731
+ <<
732
+ /StyleSheetData
733
+ <<
734
+ /Font 0
735
+ /FontSize 33.0
736
+ /FauxBold false
737
+ /FauxItalic false
738
+ /AutoLeading true
739
+ /Leading 27.6
740
+ /HorizontalScale 1.0
741
+ /VerticalScale 1.0
742
+ /Tracking 0
743
+ /AutoKerning true
744
+ /Kerning 0
745
+ /BaselineShift 0.0
746
+ /FontCaps 0
747
+ /FontBaseline 0
748
+ /Underline false
749
+ /Strikethrough false
750
+ /Ligatures true
751
+ /DLigatures false
752
+ /BaselineDirection 1
753
+ /Tsume 0.0
754
+ /StyleRunAlignment 2
755
+ /Language 0
756
+ /NoBreak false
757
+ /FillColor
758
+ <<
759
+ /Type 1
760
+ /Values [ 1.0 .07452 .47058 .38431 ]
761
+ >>
762
+ /StrokeColor
763
+ <<
764
+ /Type 1
765
+ /Values [ 1.0 .24468 .28678 .33725 ]
766
+ >>
767
+ /FillFlag true
768
+ /StrokeFlag false
769
+ /FillFirst false
770
+ /YUnderline 1
771
+ /OutlineWidth .99987
772
+ /CharacterDirection 0
773
+ /HindiNumbers false
774
+ /Kashida 1
775
+ /DiacriticPos 2
776
+ >>
777
+ >>
778
+ >>
779
+ <<
780
+ /StyleSheet
781
+ <<
782
+ /StyleSheetData
783
+ <<
784
+ /Font 0
785
+ /FontSize 33.0
786
+ /FauxBold false
787
+ /FauxItalic false
788
+ /AutoLeading true
789
+ /Leading 27.6
790
+ /HorizontalScale 1.0
791
+ /VerticalScale 1.0
792
+ /Tracking 0
793
+ /AutoKerning true
794
+ /Kerning 0
795
+ /BaselineShift 0.0
796
+ /FontCaps 0
797
+ /FontBaseline 0
798
+ /Underline false
799
+ /Strikethrough false
800
+ /Ligatures true
801
+ /DLigatures false
802
+ /BaselineDirection 1
803
+ /Tsume 0.0
804
+ /StyleRunAlignment 2
805
+ /Language 0
806
+ /NoBreak false
807
+ /FillColor
808
+ <<
809
+ /Type 1
810
+ /Values [ 1.0 .07452 .47058 .38431 ]
811
+ >>
812
+ /StrokeColor
813
+ <<
814
+ /Type 1
815
+ /Values [ 1.0 .24468 .28678 .33725 ]
816
+ >>
817
+ /FillFlag true
818
+ /StrokeFlag false
819
+ /FillFirst false
820
+ /YUnderline 1
821
+ /OutlineWidth .99987
822
+ /CharacterDirection 0
823
+ /HindiNumbers false
824
+ /Kashida 1
825
+ /DiacriticPos 2
826
+ >>
827
+ >>
828
+ >>
829
+ <<
830
+ /StyleSheet
831
+ <<
832
+ /StyleSheetData
833
+ <<
834
+ /Font 0
835
+ /FontSize 33.0
836
+ /FauxBold false
837
+ /FauxItalic false
838
+ /AutoLeading true
839
+ /Leading 27.6
840
+ /HorizontalScale 1.0
841
+ /VerticalScale 1.0
842
+ /Tracking 0
843
+ /AutoKerning true
844
+ /Kerning 0
845
+ /BaselineShift 0.0
846
+ /FontCaps 0
847
+ /FontBaseline 0
848
+ /Underline false
849
+ /Strikethrough false
850
+ /Ligatures true
851
+ /DLigatures false
852
+ /BaselineDirection 1
853
+ /Tsume 0.0
854
+ /StyleRunAlignment 2
855
+ /Language 0
856
+ /NoBreak false
857
+ /FillColor
858
+ <<
859
+ /Type 1
860
+ /Values [ 1.0 .07452 .47058 .38431 ]
861
+ >>
862
+ /StrokeColor
863
+ <<
864
+ /Type 1
865
+ /Values [ 1.0 .24468 .28678 .33725 ]
866
+ >>
867
+ /FillFlag true
868
+ /StrokeFlag false
869
+ /FillFirst false
870
+ /YUnderline 1
871
+ /OutlineWidth .99987
872
+ /CharacterDirection 0
873
+ /HindiNumbers false
874
+ /Kashida 1
875
+ /DiacriticPos 2
876
+ >>
877
+ >>
878
+ >>
879
+ <<
880
+ /StyleSheet
881
+ <<
882
+ /StyleSheetData
883
+ <<
884
+ /Font 0
885
+ /FontSize 33.0
886
+ /FauxBold false
887
+ /FauxItalic false
888
+ /AutoLeading true
889
+ /Leading 27.6
890
+ /HorizontalScale 1.0
891
+ /VerticalScale 1.0
892
+ /Tracking 0
893
+ /AutoKerning true
894
+ /Kerning 0
895
+ /BaselineShift 0.0
896
+ /FontCaps 0
897
+ /FontBaseline 0
898
+ /Underline false
899
+ /Strikethrough false
900
+ /Ligatures true
901
+ /DLigatures false
902
+ /BaselineDirection 1
903
+ /Tsume 0.0
904
+ /StyleRunAlignment 2
905
+ /Language 0
906
+ /NoBreak false
907
+ /FillColor
908
+ <<
909
+ /Type 1
910
+ /Values [ 1.0 .07452 .47058 .38431 ]
911
+ >>
912
+ /StrokeColor
913
+ <<
914
+ /Type 1
915
+ /Values [ 1.0 .24468 .28678 .33725 ]
916
+ >>
917
+ /FillFlag true
918
+ /StrokeFlag false
919
+ /FillFirst false
920
+ /YUnderline 1
921
+ /OutlineWidth .99987
922
+ /CharacterDirection 0
923
+ /HindiNumbers false
924
+ /Kashida 1
925
+ /DiacriticPos 2
926
+ >>
927
+ >>
928
+ >>
929
+ <<
930
+ /StyleSheet
931
+ <<
932
+ /StyleSheetData
933
+ <<
934
+ /Font 0
935
+ /FontSize 33.0
936
+ /FauxBold false
937
+ /FauxItalic false
938
+ /AutoLeading true
939
+ /Leading 27.6
940
+ /HorizontalScale 1.0
941
+ /VerticalScale 1.0
942
+ /Tracking 0
943
+ /AutoKerning true
944
+ /Kerning 0
945
+ /BaselineShift 0.0
946
+ /FontCaps 0
947
+ /FontBaseline 0
948
+ /Underline false
949
+ /Strikethrough false
950
+ /Ligatures true
951
+ /DLigatures false
952
+ /BaselineDirection 1
953
+ /Tsume 0.0
954
+ /StyleRunAlignment 2
955
+ /Language 0
956
+ /NoBreak false
957
+ /FillColor
958
+ <<
959
+ /Type 1
960
+ /Values [ 1.0 .07452 .47058 .38431 ]
961
+ >>
962
+ /StrokeColor
963
+ <<
964
+ /Type 1
965
+ /Values [ 1.0 .24468 .28678 .33725 ]
966
+ >>
967
+ /FillFlag true
968
+ /StrokeFlag false
969
+ /FillFirst false
970
+ /YUnderline 1
971
+ /OutlineWidth .99987
972
+ /CharacterDirection 0
973
+ /HindiNumbers false
974
+ /Kashida 1
975
+ /DiacriticPos 2
976
+ >>
977
+ >>
978
+ >>
979
+ <<
980
+ /StyleSheet
981
+ <<
982
+ /StyleSheetData
983
+ <<
984
+ /Font 0
985
+ /FontSize 33.0
986
+ /FauxBold false
987
+ /FauxItalic false
988
+ /AutoLeading true
989
+ /Leading 27.6
990
+ /HorizontalScale 1.0
991
+ /VerticalScale 1.0
992
+ /Tracking 0
993
+ /AutoKerning true
994
+ /Kerning 0
995
+ /BaselineShift 0.0
996
+ /FontCaps 0
997
+ /FontBaseline 0
998
+ /Underline false
999
+ /Strikethrough false
1000
+ /Ligatures true
1001
+ /DLigatures false
1002
+ /BaselineDirection 1
1003
+ /Tsume 0.0
1004
+ /StyleRunAlignment 2
1005
+ /Language 0
1006
+ /NoBreak false
1007
+ /FillColor
1008
+ <<
1009
+ /Type 1
1010
+ /Values [ 1.0 .07452 .47058 .38431 ]
1011
+ >>
1012
+ /StrokeColor
1013
+ <<
1014
+ /Type 1
1015
+ /Values [ 1.0 .24468 .28678 .33725 ]
1016
+ >>
1017
+ /FillFlag true
1018
+ /StrokeFlag false
1019
+ /FillFirst false
1020
+ /YUnderline 1
1021
+ /OutlineWidth .99987
1022
+ /CharacterDirection 0
1023
+ /HindiNumbers false
1024
+ /Kashida 1
1025
+ /DiacriticPos 2
1026
+ >>
1027
+ >>
1028
+ >>
1029
+ <<
1030
+ /StyleSheet
1031
+ <<
1032
+ /StyleSheetData
1033
+ <<
1034
+ /Font 0
1035
+ /FontSize 33.0
1036
+ /FauxBold false
1037
+ /FauxItalic false
1038
+ /AutoLeading true
1039
+ /Leading 27.6
1040
+ /HorizontalScale 1.0
1041
+ /VerticalScale 1.0
1042
+ /Tracking 0
1043
+ /AutoKerning true
1044
+ /Kerning 0
1045
+ /BaselineShift 0.0
1046
+ /FontCaps 0
1047
+ /FontBaseline 0
1048
+ /Underline false
1049
+ /Strikethrough false
1050
+ /Ligatures true
1051
+ /DLigatures false
1052
+ /BaselineDirection 1
1053
+ /Tsume 0.0
1054
+ /StyleRunAlignment 2
1055
+ /Language 0
1056
+ /NoBreak false
1057
+ /FillColor
1058
+ <<
1059
+ /Type 1
1060
+ /Values [ 1.0 .07452 .47058 .38431 ]
1061
+ >>
1062
+ /StrokeColor
1063
+ <<
1064
+ /Type 1
1065
+ /Values [ 1.0 .24468 .28678 .33725 ]
1066
+ >>
1067
+ /FillFlag true
1068
+ /StrokeFlag false
1069
+ /FillFirst false
1070
+ /YUnderline 1
1071
+ /OutlineWidth .99987
1072
+ /CharacterDirection 0
1073
+ /HindiNumbers false
1074
+ /Kashida 1
1075
+ /DiacriticPos 2
1076
+ >>
1077
+ >>
1078
+ >>
1079
+ <<
1080
+ /StyleSheet
1081
+ <<
1082
+ /StyleSheetData
1083
+ <<
1084
+ /Font 0
1085
+ /FontSize 33.0
1086
+ /FauxBold false
1087
+ /FauxItalic false
1088
+ /AutoLeading true
1089
+ /Leading 27.6
1090
+ /HorizontalScale 1.0
1091
+ /VerticalScale 1.0
1092
+ /Tracking 0
1093
+ /AutoKerning true
1094
+ /Kerning 0
1095
+ /BaselineShift 0.0
1096
+ /FontCaps 0
1097
+ /FontBaseline 0
1098
+ /Underline false
1099
+ /Strikethrough false
1100
+ /Ligatures true
1101
+ /DLigatures false
1102
+ /BaselineDirection 1
1103
+ /Tsume 0.0
1104
+ /StyleRunAlignment 2
1105
+ /Language 0
1106
+ /NoBreak false
1107
+ /FillColor
1108
+ <<
1109
+ /Type 1
1110
+ /Values [ 1.0 .07452 .47058 .38431 ]
1111
+ >>
1112
+ /StrokeColor
1113
+ <<
1114
+ /Type 1
1115
+ /Values [ 1.0 .24468 .28678 .33725 ]
1116
+ >>
1117
+ /FillFlag true
1118
+ /StrokeFlag false
1119
+ /FillFirst false
1120
+ /YUnderline 1
1121
+ /OutlineWidth .99987
1122
+ /CharacterDirection 0
1123
+ /HindiNumbers false
1124
+ /Kashida 1
1125
+ /DiacriticPos 2
1126
+ >>
1127
+ >>
1128
+ >>
1129
+ <<
1130
+ /StyleSheet
1131
+ <<
1132
+ /StyleSheetData
1133
+ <<
1134
+ /Font 0
1135
+ /FontSize 33.0
1136
+ /FauxBold false
1137
+ /FauxItalic false
1138
+ /AutoLeading true
1139
+ /Leading 27.6
1140
+ /HorizontalScale 1.0
1141
+ /VerticalScale 1.0
1142
+ /Tracking 0
1143
+ /AutoKerning true
1144
+ /Kerning 0
1145
+ /BaselineShift 0.0
1146
+ /FontCaps 0
1147
+ /FontBaseline 0
1148
+ /Underline false
1149
+ /Strikethrough false
1150
+ /Ligatures true
1151
+ /DLigatures false
1152
+ /BaselineDirection 1
1153
+ /Tsume 0.0
1154
+ /StyleRunAlignment 2
1155
+ /Language 0
1156
+ /NoBreak false
1157
+ /FillColor
1158
+ <<
1159
+ /Type 1
1160
+ /Values [ 1.0 .07452 .47058 .38431 ]
1161
+ >>
1162
+ /StrokeColor
1163
+ <<
1164
+ /Type 1
1165
+ /Values [ 1.0 .24468 .28678 .33725 ]
1166
+ >>
1167
+ /FillFlag true
1168
+ /StrokeFlag false
1169
+ /FillFirst false
1170
+ /YUnderline 1
1171
+ /OutlineWidth .99987
1172
+ /CharacterDirection 0
1173
+ /HindiNumbers false
1174
+ /Kashida 1
1175
+ /DiacriticPos 2
1176
+ >>
1177
+ >>
1178
+ >>
1179
+ <<
1180
+ /StyleSheet
1181
+ <<
1182
+ /StyleSheetData
1183
+ <<
1184
+ /Font 0
1185
+ /FontSize 33.0
1186
+ /FauxBold false
1187
+ /FauxItalic false
1188
+ /AutoLeading true
1189
+ /Leading 27.6
1190
+ /HorizontalScale 1.0
1191
+ /VerticalScale 1.0
1192
+ /Tracking 0
1193
+ /AutoKerning true
1194
+ /Kerning 0
1195
+ /BaselineShift 0.0
1196
+ /FontCaps 0
1197
+ /FontBaseline 0
1198
+ /Underline false
1199
+ /Strikethrough false
1200
+ /Ligatures true
1201
+ /DLigatures false
1202
+ /BaselineDirection 1
1203
+ /Tsume 0.0
1204
+ /StyleRunAlignment 2
1205
+ /Language 0
1206
+ /NoBreak false
1207
+ /FillColor
1208
+ <<
1209
+ /Type 1
1210
+ /Values [ 1.0 .07452 .47058 .38431 ]
1211
+ >>
1212
+ /StrokeColor
1213
+ <<
1214
+ /Type 1
1215
+ /Values [ 1.0 .24468 .28678 .33725 ]
1216
+ >>
1217
+ /FillFlag true
1218
+ /StrokeFlag false
1219
+ /FillFirst false
1220
+ /YUnderline 1
1221
+ /OutlineWidth .99987
1222
+ /CharacterDirection 0
1223
+ /HindiNumbers false
1224
+ /Kashida 1
1225
+ /DiacriticPos 2
1226
+ >>
1227
+ >>
1228
+ >>
1229
+ <<
1230
+ /StyleSheet
1231
+ <<
1232
+ /StyleSheetData
1233
+ <<
1234
+ /Font 0
1235
+ /FontSize 33.0
1236
+ /FauxBold false
1237
+ /FauxItalic false
1238
+ /AutoLeading true
1239
+ /Leading 27.6
1240
+ /HorizontalScale 1.0
1241
+ /VerticalScale 1.0
1242
+ /Tracking 0
1243
+ /AutoKerning true
1244
+ /Kerning 0
1245
+ /BaselineShift 0.0
1246
+ /FontCaps 0
1247
+ /FontBaseline 0
1248
+ /Underline false
1249
+ /Strikethrough false
1250
+ /Ligatures true
1251
+ /DLigatures false
1252
+ /BaselineDirection 1
1253
+ /Tsume 0.0
1254
+ /StyleRunAlignment 2
1255
+ /Language 0
1256
+ /NoBreak false
1257
+ /FillColor
1258
+ <<
1259
+ /Type 1
1260
+ /Values [ 1.0 .07452 .47058 .38431 ]
1261
+ >>
1262
+ /StrokeColor
1263
+ <<
1264
+ /Type 1
1265
+ /Values [ 1.0 .24468 .28678 .33725 ]
1266
+ >>
1267
+ /FillFlag true
1268
+ /StrokeFlag false
1269
+ /FillFirst false
1270
+ /YUnderline 1
1271
+ /OutlineWidth .99987
1272
+ /CharacterDirection 0
1273
+ /HindiNumbers false
1274
+ /Kashida 1
1275
+ /DiacriticPos 2
1276
+ >>
1277
+ >>
1278
+ >>
1279
+ ]
1280
+ /RunLengthArray [ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ]
1281
+ /IsJoinable 2
1282
+ >>
1283
+ /GridInfo
1284
+ <<
1285
+ /GridIsOn false
1286
+ /ShowGrid false
1287
+ /GridSize 18.0
1288
+ /GridLeading 22.0
1289
+ /GridColor
1290
+ <<
1291
+ /Type 1
1292
+ /Values [ 0.0 0.0 0.0 1.0 ]
1293
+ >>
1294
+ /GridLeadingFillColor
1295
+ <<
1296
+ /Type 1
1297
+ /Values [ 0.0 0.0 0.0 1.0 ]
1298
+ >>
1299
+ /AlignLineHeightToGridFlags false
1300
+ >>
1301
+ /AntiAlias 1
1302
+ /UseFractionalGlyphWidths true
1303
+ /Rendered
1304
+ <<
1305
+ /Version 1
1306
+ /Shapes
1307
+ <<
1308
+ /WritingDirection 0
1309
+ /Children [
1310
+ <<
1311
+ /ShapeType 0
1312
+ /Procession 0
1313
+ /Lines
1314
+ <<
1315
+ /WritingDirection 0
1316
+ /Children [ ]
1317
+ >>
1318
+ /Cookie
1319
+ <<
1320
+ /Photoshop
1321
+ <<
1322
+ /ShapeType 0
1323
+ /PointBase [ 0.0 0.0 ]
1324
+ /Base
1325
+ <<
1326
+ /ShapeType 0
1327
+ /TransformPoint0 [ 1.0 0.0 ]
1328
+ /TransformPoint1 [ 0.0 1.0 ]
1329
+ /TransformPoint2 [ 0.0 0.0 ]
1330
+ >>
1331
+ >>
1332
+ >>
1333
+ >>
1334
+ ]
1335
+ >>
1336
+ >>
1337
+ >>
1338
+ /ResourceDict
1339
+ <<
1340
+ /KinsokuSet [
1341
+ <<
1342
+ /Name (˛ˇPhotoshopKinsokuHard)
1343
+ /NoStart (˛ˇ00ˇ ˇ0˚ˇˇˇˇ0¸   ˇ 0ˇ=ˇ]0 0 0
1344
+ /NoEnd (˛ˇ  ˇ0ˇ;ˇ[00
1345
+ 0 00\([{ˇÂˇ£ˇ ß0ˇ)
1346
+ /Keep (˛ˇ  %)
1347
+ /Hanging (˛ˇ00.,)
1348
+ >>
1349
+ <<
1350
+ /Name (˛ˇPhotoshopKinsokuSoft)
1351
+ /NoStart (˛ˇ00ˇ ˇ0˚ˇˇˇˇ  ˇ 0ˇ=ˇ]0 0 0
1352
+ /NoEnd (˛ˇ  ˇ0ˇ;ˇ[00
1353
+ 0 00)
1354
+ /Keep (˛ˇ  %)
1355
+ /Hanging (˛ˇ00.,)
1356
+ >>
1357
+ ]
1358
+ /MojiKumiSet [
1359
+ <<
1360
+ /InternalName (˛ˇPhotoshop6MojiKumiSet1)
1361
+ >>
1362
+ <<
1363
+ /InternalName (˛ˇPhotoshop6MojiKumiSet2)
1364
+ >>
1365
+ <<
1366
+ /InternalName (˛ˇPhotoshop6MojiKumiSet3)
1367
+ >>
1368
+ <<
1369
+ /InternalName (˛ˇPhotoshop6MojiKumiSet4)
1370
+ >>
1371
+ ]
1372
+ /TheNormalStyleSheet 0
1373
+ /TheNormalParagraphSheet 0
1374
+ /ParagraphSheetSet [
1375
+ <<
1376
+ /Name (˛ˇNormal RGB)
1377
+ /DefaultStyleSheet 0
1378
+ /Properties
1379
+ <<
1380
+ /Justification 0
1381
+ /FirstLineIndent 0.0
1382
+ /StartIndent 0.0
1383
+ /EndIndent 0.0
1384
+ /SpaceBefore 0.0
1385
+ /SpaceAfter 0.0
1386
+ /AutoHyphenate true
1387
+ /HyphenatedWordSize 6
1388
+ /PreHyphen 2
1389
+ /PostHyphen 2
1390
+ /ConsecutiveHyphens 8
1391
+ /Zone 36.0
1392
+ /WordSpacing [ .8 1.0 1.33 ]
1393
+ /LetterSpacing [ 0.0 0.0 0.0 ]
1394
+ /GlyphSpacing [ 1.0 1.0 1.0 ]
1395
+ /AutoLeading 1.2
1396
+ /LeadingType 0
1397
+ /Hanging false
1398
+ /Burasagari false
1399
+ /KinsokuOrder 0
1400
+ /EveryLineComposer false
1401
+ >>
1402
+ >>
1403
+ ]
1404
+ /StyleSheetSet [
1405
+ <<
1406
+ /Name (˛ˇNormal RGB)
1407
+ /StyleSheetData
1408
+ <<
1409
+ /Font 2
1410
+ /FontSize 12.0
1411
+ /FauxBold false
1412
+ /FauxItalic false
1413
+ /AutoLeading true
1414
+ /Leading 0.0
1415
+ /HorizontalScale 1.0
1416
+ /VerticalScale 1.0
1417
+ /Tracking 0
1418
+ /AutoKerning true
1419
+ /Kerning 0
1420
+ /BaselineShift 0.0
1421
+ /FontCaps 0
1422
+ /FontBaseline 0
1423
+ /Underline false
1424
+ /Strikethrough false
1425
+ /Ligatures true
1426
+ /DLigatures false
1427
+ /BaselineDirection 2
1428
+ /Tsume 0.0
1429
+ /StyleRunAlignment 2
1430
+ /Language 0
1431
+ /NoBreak false
1432
+ /FillColor
1433
+ <<
1434
+ /Type 1
1435
+ /Values [ 1.0 0.0 0.0 0.0 ]
1436
+ >>
1437
+ /StrokeColor
1438
+ <<
1439
+ /Type 1
1440
+ /Values [ 1.0 0.0 0.0 0.0 ]
1441
+ >>
1442
+ /FillFlag true
1443
+ /StrokeFlag false
1444
+ /FillFirst true
1445
+ /YUnderline 1
1446
+ /OutlineWidth 1.0
1447
+ /CharacterDirection 0
1448
+ /HindiNumbers false
1449
+ /Kashida 1
1450
+ /DiacriticPos 2
1451
+ >>
1452
+ >>
1453
+ ]
1454
+ /FontSet [
1455
+ <<
1456
+ /Name (˛ˇHelveticaNeue-Light)
1457
+ /Script 0
1458
+ /FontType 1
1459
+ /Synthetic 0
1460
+ >>
1461
+ <<
1462
+ /Name (˛ˇAdobeInvisFont)
1463
+ /Script 0
1464
+ /FontType 0
1465
+ /Synthetic 0
1466
+ >>
1467
+ <<
1468
+ /Name (˛ˇMyriadPro-Regular)
1469
+ /Script 0
1470
+ /FontType 0
1471
+ /Synthetic 0
1472
+ >>
1473
+ ]
1474
+ /SuperscriptSize .583
1475
+ /SuperscriptPosition .333
1476
+ /SubscriptSize .583
1477
+ /SubscriptPosition .333
1478
+ /SmallCapSize .7
1479
+ >>
1480
+ /DocumentResources
1481
+ <<
1482
+ /KinsokuSet [
1483
+ <<
1484
+ /Name (˛ˇPhotoshopKinsokuHard)
1485
+ /NoStart (˛ˇ00ˇ ˇ0˚ˇˇˇˇ0¸   ˇ 0ˇ=ˇ]0 0 0
1486
+ /NoEnd (˛ˇ  ˇ0ˇ;ˇ[00
1487
+ 0 00\([{ˇÂˇ£ˇ ß0ˇ)
1488
+ /Keep (˛ˇ  %)
1489
+ /Hanging (˛ˇ00.,)
1490
+ >>
1491
+ <<
1492
+ /Name (˛ˇPhotoshopKinsokuSoft)
1493
+ /NoStart (˛ˇ00ˇ ˇ0˚ˇˇˇˇ  ˇ 0ˇ=ˇ]0 0 0
1494
+ /NoEnd (˛ˇ  ˇ0ˇ;ˇ[00
1495
+ 0 00)
1496
+ /Keep (˛ˇ  %)
1497
+ /Hanging (˛ˇ00.,)
1498
+ >>
1499
+ ]
1500
+ /MojiKumiSet [
1501
+ <<
1502
+ /InternalName (˛ˇPhotoshop6MojiKumiSet1)
1503
+ >>
1504
+ <<
1505
+ /InternalName (˛ˇPhotoshop6MojiKumiSet2)
1506
+ >>
1507
+ <<
1508
+ /InternalName (˛ˇPhotoshop6MojiKumiSet3)
1509
+ >>
1510
+ <<
1511
+ /InternalName (˛ˇPhotoshop6MojiKumiSet4)
1512
+ >>
1513
+ ]
1514
+ /TheNormalStyleSheet 0
1515
+ /TheNormalParagraphSheet 0
1516
+ /ParagraphSheetSet [
1517
+ <<
1518
+ /Name (˛ˇNormal RGB)
1519
+ /DefaultStyleSheet 0
1520
+ /Properties
1521
+ <<
1522
+ /Justification 0
1523
+ /FirstLineIndent 0.0
1524
+ /StartIndent 0.0
1525
+ /EndIndent 0.0
1526
+ /SpaceBefore 0.0
1527
+ /SpaceAfter 0.0
1528
+ /AutoHyphenate true
1529
+ /HyphenatedWordSize 6
1530
+ /PreHyphen 2
1531
+ /PostHyphen 2
1532
+ /ConsecutiveHyphens 8
1533
+ /Zone 36.0
1534
+ /WordSpacing [ .8 1.0 1.33 ]
1535
+ /LetterSpacing [ 0.0 0.0 0.0 ]
1536
+ /GlyphSpacing [ 1.0 1.0 1.0 ]
1537
+ /AutoLeading 1.2
1538
+ /LeadingType 0
1539
+ /Hanging false
1540
+ /Burasagari false
1541
+ /KinsokuOrder 0
1542
+ /EveryLineComposer false
1543
+ >>
1544
+ >>
1545
+ ]
1546
+ /StyleSheetSet [
1547
+ <<
1548
+ /Name (˛ˇNormal RGB)
1549
+ /StyleSheetData
1550
+ <<
1551
+ /Font 2
1552
+ /FontSize 12.0
1553
+ /FauxBold false
1554
+ /FauxItalic false
1555
+ /AutoLeading true
1556
+ /Leading 0.0
1557
+ /HorizontalScale 1.0
1558
+ /VerticalScale 1.0
1559
+ /Tracking 0
1560
+ /AutoKerning true
1561
+ /Kerning 0
1562
+ /BaselineShift 0.0
1563
+ /FontCaps 0
1564
+ /FontBaseline 0
1565
+ /Underline false
1566
+ /Strikethrough false
1567
+ /Ligatures true
1568
+ /DLigatures false
1569
+ /BaselineDirection 2
1570
+ /Tsume 0.0
1571
+ /StyleRunAlignment 2
1572
+ /Language 0
1573
+ /NoBreak false
1574
+ /FillColor
1575
+ <<
1576
+ /Type 1
1577
+ /Values [ 1.0 0.0 0.0 0.0 ]
1578
+ >>
1579
+ /StrokeColor
1580
+ <<
1581
+ /Type 1
1582
+ /Values [ 1.0 0.0 0.0 0.0 ]
1583
+ >>
1584
+ /FillFlag true
1585
+ /StrokeFlag false
1586
+ /FillFirst true
1587
+ /YUnderline 1
1588
+ /OutlineWidth 1.0
1589
+ /CharacterDirection 0
1590
+ /HindiNumbers false
1591
+ /Kashida 1
1592
+ /DiacriticPos 2
1593
+ >>
1594
+ >>
1595
+ ]
1596
+ /FontSet [
1597
+ <<
1598
+ /Name (˛ˇHelveticaNeue-Light)
1599
+ /Script 0
1600
+ /FontType 1
1601
+ /Synthetic 0
1602
+ >>
1603
+ <<
1604
+ /Name (˛ˇAdobeInvisFont)
1605
+ /Script 0
1606
+ /FontType 0
1607
+ /Synthetic 0
1608
+ >>
1609
+ <<
1610
+ /Name (˛ˇMyriadPro-Regular)
1611
+ /Script 0
1612
+ /FontType 0
1613
+ /Synthetic 0
1614
+ >>
1615
+ ]
1616
+ /SuperscriptSize .583
1617
+ /SuperscriptPosition .333
1618
+ /SubscriptSize .583
1619
+ /SubscriptPosition .333
1620
+ /SmallCapSize .7
1621
+ >>
1622
+ >>