cheque 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 637bfccafe0c0fee4819bfbfa17a9b1b8bba966f
4
+ data.tar.gz: 1bcd294c0b3bdfd50908dc146d6b9230267b2f6f
5
+ SHA512:
6
+ metadata.gz: 98791f772205618adc0f18e95a3d7bfb112fc161e24f269bf96a5266891e99482b3b1721245a4929befab6ab00030ece412b7778ff613bcfcc20a27cacd44c72
7
+ data.tar.gz: 9de63290270dfad5157fd26d82828481c84731e8a55edcdfb54274c65ed78cd24171f24aeeb78d729a211429e8a33aa3b0cdfecb921e76601080b275c06514d5
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --require spec_helper
3
+ --order random
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Fernando Almeida
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,84 @@
1
+ # Cheque
2
+
3
+ A gem to generate cheque copy and cheque printing
4
+
5
+ ## Examples
6
+
7
+ ### Cheque Copy
8
+
9
+ [English](https://github.com/fernandoalmeida/cheque/blob/master/example/en_cheque_copy.pdf)
10
+
11
+ [Brazilian Portuguese](https://github.com/fernandoalmeida/cheque/blob/master/example/pt-BR_copia_de_cheque.pdf)
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ ```ruby
18
+ gem 'cheque'
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ gem install cheque
28
+
29
+ ## Usage
30
+
31
+ ### Cheque Copy
32
+
33
+ ```ruby
34
+ data = {
35
+ id: 1,
36
+ title: 'Payment',
37
+ bank: 'Global Banking',
38
+ agency_number: '123',
39
+ account_number: '456',
40
+ cheque_number: '789',
41
+ account_holder: 'Jimmy Hendrix Group',
42
+ nominal_to: 'Fernando Almeida',
43
+ amount: '100.00',
44
+ location: 'Sao Paulo',
45
+ date: Date.new(2015, 4, 7),
46
+ transactions: [
47
+ ['Transaction', 'Description', 'Value'],
48
+ ['123', 'Order 1 payment', '30.00'],
49
+ ['124', 'Order 2 payment', '70.00']
50
+ ]
51
+ }
52
+
53
+ copy = Cheque.new(data, :copy)
54
+
55
+ send_data(copy.render, filename: copy.filename, type: copy.mimetype)
56
+ ```
57
+
58
+ ### Cheque Printing (TODO)
59
+
60
+ ```ruby
61
+ data = {
62
+ date: Time.now.to_date,
63
+ amount: '100.00',
64
+ payee: 'Fernando Almeida'
65
+ }
66
+
67
+ printing = Cheque.new(data, :printing)
68
+
69
+ send_data(printing.render, filename: printing.filename, type: printing.mimetype)
70
+ ```
71
+
72
+ ## Development
73
+
74
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
75
+
76
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
77
+
78
+ ## Contributing
79
+
80
+ 1. Fork it ( https://github.com/fernandoalmeida/cheque/fork )
81
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
82
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
83
+ 4. Push to the branch (`git push origin my-new-feature`)
84
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cheque"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cheque/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'cheque'
8
+ spec.version = Cheque::VERSION
9
+ spec.authors = ['Fernando Almeida']
10
+ spec.email = ['fernando@fernandoalmeida.net']
11
+
12
+ spec.summary = 'A gem to generate cheque copy and cheque printing'
13
+ spec.description = 'Cheque copy and printing'
14
+ spec.homepage = 'https://github.com/fernandoalmeida/cheque'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(/^(test|spec|features)\//)
19
+ end
20
+ spec.executables = spec.files.grep(/^exe\//) { |f| File.basename(f) }
21
+ spec.require_paths = ['lib']
22
+
23
+ spec.add_dependency 'prawn', '~> 2.0'
24
+ spec.add_dependency 'prawn-table', '~> 0.2'
25
+ spec.add_dependency 'i18n', '~> 0.7'
26
+
27
+ spec.add_development_dependency 'bundler', '>= 1.7.0'
28
+ spec.add_development_dependency 'rake', '~> 10.0'
29
+ spec.add_development_dependency 'pry', '~> 0.10'
30
+ spec.add_development_dependency 'rspec', '~> 3.2'
31
+ spec.add_development_dependency 'pdf-inspector', '~> 1.2'
32
+ end
@@ -0,0 +1,9 @@
1
+ require 'i18n'
2
+
3
+ DEFAULT_LOCALE = :en
4
+
5
+ locales = Dir[File.expand_path('../../locale/*.yml', __FILE__)]
6
+ I18n.load_path += locales
7
+ I18n.backend.load_translations
8
+
9
+ I18n.locale = DEFAULT_LOCALE
@@ -0,0 +1,72 @@
1
+ ---
2
+ en:
3
+ cheque:
4
+ number: Cheque number
5
+ amount: Amount
6
+ nominal_to: Nominal to
7
+ currency: $
8
+ authorizer_signature: Authorizer signature
9
+ payer_signature: Payer signature
10
+ copy:
11
+ title: Cheque copy
12
+ number: Cheque copy number
13
+ bank:
14
+ name: Bank
15
+ agency: Agency
16
+ account: Account
17
+ account_holder: Account holder
18
+ errors:
19
+ required_param_not_found: required param not found
20
+ date:
21
+ abbr_day_names:
22
+ - Sun
23
+ - Mon
24
+ - Tue
25
+ - Wed
26
+ - Thu
27
+ - Fri
28
+ - Sat
29
+ abbr_month_names:
30
+ -
31
+ - Jan
32
+ - Feb
33
+ - Mar
34
+ - Apr
35
+ - May
36
+ - Jun
37
+ - Jul
38
+ - Aug
39
+ - Sep
40
+ - Oct
41
+ - Nov
42
+ - Dec
43
+ day_names:
44
+ - Sunday
45
+ - Monday
46
+ - Tuesday
47
+ - Wednesday
48
+ - Thursday
49
+ - Friday
50
+ - Saturday
51
+ formats:
52
+ default: "%m/%d/%Y"
53
+ long: "%B %d, %Y"
54
+ short: "%b %d"
55
+ month_names:
56
+ -
57
+ - January
58
+ - February
59
+ - March
60
+ - April
61
+ - May
62
+ - June
63
+ - July
64
+ - August
65
+ - September
66
+ - October
67
+ - November
68
+ - December
69
+ order:
70
+ - :year
71
+ - :month
72
+ - :day
@@ -0,0 +1,72 @@
1
+ ---
2
+ pt-BR:
3
+ cheque:
4
+ number: Número do cheque
5
+ amount: Valor
6
+ nominal_to: Nominal a
7
+ currency: R$
8
+ authorizer_signature: Assinatura do responsável
9
+ payer_signature: Assinatura do emissor
10
+ copy:
11
+ title: Cópia de cheque
12
+ number: Cópia de cheque número
13
+ bank:
14
+ name: Banco
15
+ agency: Agencia
16
+ account: Conta
17
+ account_holder: Titular
18
+ errors:
19
+ required_param_not_found: parâmetro obrigatório não encontrado
20
+ date:
21
+ abbr_day_names:
22
+ - Dom
23
+ - Seg
24
+ - Ter
25
+ - Qua
26
+ - Qui
27
+ - Sex
28
+ - Sáb
29
+ abbr_month_names:
30
+ -
31
+ - Jan
32
+ - Fev
33
+ - Mar
34
+ - Abr
35
+ - Mai
36
+ - Jun
37
+ - Jul
38
+ - Ago
39
+ - Set
40
+ - Out
41
+ - Nov
42
+ - Dez
43
+ day_names:
44
+ - Domingo
45
+ - Segunda
46
+ - Terça
47
+ - Quarta
48
+ - Quinta
49
+ - Sexta
50
+ - Sábado
51
+ formats:
52
+ default: "%d/%m/%Y"
53
+ long: "%d de %B de %Y"
54
+ short: "%d de %B"
55
+ month_names:
56
+ -
57
+ - Janeiro
58
+ - Fevereiro
59
+ - Março
60
+ - Abril
61
+ - Maio
62
+ - Junho
63
+ - Julho
64
+ - Agosto
65
+ - Setembro
66
+ - Outubro
67
+ - Novembro
68
+ - Dezembro
69
+ order:
70
+ - :day
71
+ - :month
72
+ - :year
@@ -0,0 +1,520 @@
1
+ %PDF-1.3
2
+ %����
3
+ 1 0 obj
4
+ << /Creator <feff0050007200610077006e>
5
+ /Producer <feff0050007200610077006e>
6
+ >>
7
+ endobj
8
+ 2 0 obj
9
+ << /Type /Catalog
10
+ /Pages 3 0 R
11
+ >>
12
+ endobj
13
+ 3 0 obj
14
+ << /Type /Pages
15
+ /Count 1
16
+ /Kids [5 0 R]
17
+ >>
18
+ endobj
19
+ 4 0 obj
20
+ << /Length 5203
21
+ >>
22
+ stream
23
+ q
24
+
25
+ BT
26
+ 254.34 745.948 Td
27
+ /F2.0 14 Tf
28
+ [<43484551> 10 <554520434f5059>] TJ
29
+ ET
30
+
31
+ 66.0 419.34 500.0 300.0 re
32
+ S
33
+
34
+ BT
35
+ 86 690.7239999999999 Td
36
+ /F1.0 12 Tf
37
+ [<43686571756520636f70> 30 <79206e> 10 <756d626572> -30 <3a20>] TJ
38
+ ET
39
+
40
+
41
+ BT
42
+ 207.272 690.7239999999999 Td
43
+ /F2.0 12 Tf
44
+ [<31>] TJ
45
+ ET
46
+
47
+ 86.0 680.06 m
48
+ 546.0 680.06 l
49
+ S
50
+
51
+ BT
52
+ 86 651.444 Td
53
+ /F1.0 12 Tf
54
+ [<42616e6b3a20>] TJ
55
+ ET
56
+
57
+
58
+ BT
59
+ 120.02000000000001 651.444 Td
60
+ /F2.0 12 Tf
61
+ [<476c6f62616c2042616e6b696e67>] TJ
62
+ ET
63
+
64
+
65
+ BT
66
+ 86 632.164 Td
67
+ /F1.0 12 Tf
68
+ [<4167656e63793a20>] TJ
69
+ ET
70
+
71
+
72
+ BT
73
+ 132.692 632.164 Td
74
+ /F2.0 12 Tf
75
+ [<313233>] TJ
76
+ ET
77
+
78
+
79
+ BT
80
+ 86 612.884 Td
81
+ /F1.0 12 Tf
82
+ [<4163636f756e743a20>] TJ
83
+ ET
84
+
85
+
86
+ BT
87
+ 136.028 612.884 Td
88
+ /F2.0 12 Tf
89
+ [<343536>] TJ
90
+ ET
91
+
92
+
93
+ BT
94
+ 86 593.604 Td
95
+ /F1.0 12 Tf
96
+ [<4163636f756e7420686f6c646572> -30 <3a20>] TJ
97
+ ET
98
+
99
+
100
+ BT
101
+ 173.072 593.604 Td
102
+ /F2.0 12 Tf
103
+ [<4a696d6d> 30 <792048656e64726978204772> 20 <6f7570>] TJ
104
+ ET
105
+
106
+
107
+ BT
108
+ 86 564.3240000000001 Td
109
+ /F1.0 12 Tf
110
+ [<436865717565206e> 10 <756d626572> -30 <3a20>] TJ
111
+ ET
112
+
113
+
114
+ BT
115
+ 178.952 564.3240000000001 Td
116
+ /F2.0 12 Tf
117
+ [<373839>] TJ
118
+ ET
119
+
120
+
121
+ BT
122
+ 86 545.0440000000001 Td
123
+ /F1.0 12 Tf
124
+ [<416d6f756e743a20>] TJ
125
+ ET
126
+
127
+
128
+ BT
129
+ 134.024 545.0440000000001 Td
130
+ /F2.0 12 Tf
131
+ [<24203130302e3030>] TJ
132
+ ET
133
+
134
+
135
+ BT
136
+ 86 525.7640000000001 Td
137
+ /F1.0 12 Tf
138
+ [<4e6f6d696e616c20746f3a20>] TJ
139
+ ET
140
+
141
+
142
+ BT
143
+ 150.01999999999998 525.7640000000001 Td
144
+ /F2.0 12 Tf
145
+ [<4665726e616e646f20416c6d65696461>] TJ
146
+ ET
147
+
148
+
149
+ BT
150
+ 248.35 491.48400000000015 Td
151
+ /F1.0 12 Tf
152
+ [<53616f2050> 40 <61756c6f> 40 <2c20417072> -15 <696c2030372c2032303135>] TJ
153
+ ET
154
+
155
+ 86.0 461.228 m
156
+ 306.0 461.228 l
157
+ S
158
+
159
+ BT
160
+ 142.492 442.61200000000014 Td
161
+ /F1.0 12 Tf
162
+ [<41> 30 <7574686f72> -15 <697a> 15 <6572207369676e6174757265>] TJ
163
+ ET
164
+
165
+ 326.0 461.356 m
166
+ 546.0 461.356 l
167
+ S
168
+
169
+ BT
170
+ 394.522 442.7400000000001 Td
171
+ /F1.0 12 Tf
172
+ [<50> 40 <61> 30 <79> 20 <6572207369676e6174757265>] TJ
173
+ ET
174
+
175
+ 1 w
176
+ /DeviceRGB CS
177
+ 0.000 0.000 0.000 SCN
178
+ 36.0 389.34 m
179
+ 222.8951 389.34 l
180
+ S
181
+ [] 0 d
182
+ 1 w
183
+ 0.000 0.000 0.000 SCN
184
+ 36.0 365.06 m
185
+ 222.8951 365.06 l
186
+ S
187
+ [] 0 d
188
+ 1 w
189
+ 0.000 0.000 0.000 SCN
190
+ 36.0 389.84 m
191
+ 36.0 364.56 l
192
+ S
193
+ [] 0 d
194
+ 1 w
195
+ 0.000 0.000 0.000 SCN
196
+ 222.8951 389.84 m
197
+ 222.8951 364.56 l
198
+ S
199
+ [] 0 d
200
+ 1 w
201
+ 0.000 0.000 0.000 SCN
202
+
203
+ BT
204
+ 41 372.89199999999994 Td
205
+ /F2.0 12 Tf
206
+ [<54> 80 <72616e73616374696f6e>] TJ
207
+ ET
208
+
209
+ 1 w
210
+ 0.000 0.000 0.000 SCN
211
+ 222.8951 389.34 m
212
+ 426.6205 389.34 l
213
+ S
214
+ [] 0 d
215
+ 1 w
216
+ 0.000 0.000 0.000 SCN
217
+ 222.8951 365.06 m
218
+ 426.6205 365.06 l
219
+ S
220
+ [] 0 d
221
+ 1 w
222
+ 0.000 0.000 0.000 SCN
223
+ 222.8951 389.84 m
224
+ 222.8951 364.56 l
225
+ S
226
+ [] 0 d
227
+ 1 w
228
+ 0.000 0.000 0.000 SCN
229
+ 426.6205 389.84 m
230
+ 426.6205 364.56 l
231
+ S
232
+ [] 0 d
233
+ 1 w
234
+ 0.000 0.000 0.000 SCN
235
+
236
+ BT
237
+ 227.89507776091983 372.89199999999994 Td
238
+ /F2.0 12 Tf
239
+ [<4465736372697074696f6e>] TJ
240
+ ET
241
+
242
+ 1 w
243
+ 0.000 0.000 0.000 SCN
244
+ 426.6205 389.34 m
245
+ 586.0 389.34 l
246
+ S
247
+ [] 0 d
248
+ 1 w
249
+ 0.000 0.000 0.000 SCN
250
+ 426.6205 365.06 m
251
+ 586.0 365.06 l
252
+ S
253
+ [] 0 d
254
+ 1 w
255
+ 0.000 0.000 0.000 SCN
256
+ 426.6205 389.84 m
257
+ 426.6205 364.56 l
258
+ S
259
+ [] 0 d
260
+ 1 w
261
+ 0.000 0.000 0.000 SCN
262
+ 586.0 389.84 m
263
+ 586.0 364.56 l
264
+ S
265
+ [] 0 d
266
+ 1 w
267
+ 0.000 0.000 0.000 SCN
268
+
269
+ BT
270
+ 431.6205444264436 372.89199999999994 Td
271
+ /F2.0 12 Tf
272
+ [<56> 60 <616c7565>] TJ
273
+ ET
274
+
275
+ 1 w
276
+ 0.000 0.000 0.000 SCN
277
+ 36.0 365.06 m
278
+ 222.8951 365.06 l
279
+ S
280
+ [] 0 d
281
+ 1 w
282
+ 0.000 0.000 0.000 SCN
283
+ 36.0 341.188 m
284
+ 222.8951 341.188 l
285
+ S
286
+ [] 0 d
287
+ 1 w
288
+ 0.000 0.000 0.000 SCN
289
+ 36.0 365.56 m
290
+ 36.0 340.688 l
291
+ S
292
+ [] 0 d
293
+ 1 w
294
+ 0.000 0.000 0.000 SCN
295
+ 222.8951 365.56 m
296
+ 222.8951 340.688 l
297
+ S
298
+ [] 0 d
299
+ 1 w
300
+ 0.000 0.000 0.000 SCN
301
+
302
+ BT
303
+ 41 348.816 Td
304
+ /F1.0 12 Tf
305
+ [<313233>] TJ
306
+ ET
307
+
308
+ 1 w
309
+ 0.000 0.000 0.000 SCN
310
+ 222.8951 365.06 m
311
+ 426.6205 365.06 l
312
+ S
313
+ [] 0 d
314
+ 1 w
315
+ 0.000 0.000 0.000 SCN
316
+ 222.8951 341.188 m
317
+ 426.6205 341.188 l
318
+ S
319
+ [] 0 d
320
+ 1 w
321
+ 0.000 0.000 0.000 SCN
322
+ 222.8951 365.56 m
323
+ 222.8951 340.688 l
324
+ S
325
+ [] 0 d
326
+ 1 w
327
+ 0.000 0.000 0.000 SCN
328
+ 426.6205 365.56 m
329
+ 426.6205 340.688 l
330
+ S
331
+ [] 0 d
332
+ 1 w
333
+ 0.000 0.000 0.000 SCN
334
+
335
+ BT
336
+ 227.89507776091983 348.816 Td
337
+ /F1.0 12 Tf
338
+ [<4f726465722031207061> 30 <796d656e74>] TJ
339
+ ET
340
+
341
+ 1 w
342
+ 0.000 0.000 0.000 SCN
343
+ 426.6205 365.06 m
344
+ 586.0 365.06 l
345
+ S
346
+ [] 0 d
347
+ 1 w
348
+ 0.000 0.000 0.000 SCN
349
+ 426.6205 341.188 m
350
+ 586.0 341.188 l
351
+ S
352
+ [] 0 d
353
+ 1 w
354
+ 0.000 0.000 0.000 SCN
355
+ 426.6205 365.56 m
356
+ 426.6205 340.688 l
357
+ S
358
+ [] 0 d
359
+ 1 w
360
+ 0.000 0.000 0.000 SCN
361
+ 586.0 365.56 m
362
+ 586.0 340.688 l
363
+ S
364
+ [] 0 d
365
+ 1 w
366
+ 0.000 0.000 0.000 SCN
367
+
368
+ BT
369
+ 431.6205444264436 348.816 Td
370
+ /F1.0 12 Tf
371
+ [<33302e3030>] TJ
372
+ ET
373
+
374
+ 1 w
375
+ 0.000 0.000 0.000 SCN
376
+ 36.0 341.188 m
377
+ 222.8951 341.188 l
378
+ S
379
+ [] 0 d
380
+ 1 w
381
+ 0.000 0.000 0.000 SCN
382
+ 36.0 317.316 m
383
+ 222.8951 317.316 l
384
+ S
385
+ [] 0 d
386
+ 1 w
387
+ 0.000 0.000 0.000 SCN
388
+ 36.0 341.688 m
389
+ 36.0 316.816 l
390
+ S
391
+ [] 0 d
392
+ 1 w
393
+ 0.000 0.000 0.000 SCN
394
+ 222.8951 341.688 m
395
+ 222.8951 316.816 l
396
+ S
397
+ [] 0 d
398
+ 1 w
399
+ 0.000 0.000 0.000 SCN
400
+
401
+ BT
402
+ 41 324.94399999999996 Td
403
+ /F1.0 12 Tf
404
+ [<313234>] TJ
405
+ ET
406
+
407
+ 1 w
408
+ 0.000 0.000 0.000 SCN
409
+ 222.8951 341.188 m
410
+ 426.6205 341.188 l
411
+ S
412
+ [] 0 d
413
+ 1 w
414
+ 0.000 0.000 0.000 SCN
415
+ 222.8951 317.316 m
416
+ 426.6205 317.316 l
417
+ S
418
+ [] 0 d
419
+ 1 w
420
+ 0.000 0.000 0.000 SCN
421
+ 222.8951 341.688 m
422
+ 222.8951 316.816 l
423
+ S
424
+ [] 0 d
425
+ 1 w
426
+ 0.000 0.000 0.000 SCN
427
+ 426.6205 341.688 m
428
+ 426.6205 316.816 l
429
+ S
430
+ [] 0 d
431
+ 1 w
432
+ 0.000 0.000 0.000 SCN
433
+
434
+ BT
435
+ 227.89507776091983 324.94399999999996 Td
436
+ /F1.0 12 Tf
437
+ [<4f726465722032207061> 30 <796d656e74>] TJ
438
+ ET
439
+
440
+ 1 w
441
+ 0.000 0.000 0.000 SCN
442
+ 426.6205 341.188 m
443
+ 586.0 341.188 l
444
+ S
445
+ [] 0 d
446
+ 1 w
447
+ 0.000 0.000 0.000 SCN
448
+ 426.6205 317.316 m
449
+ 586.0 317.316 l
450
+ S
451
+ [] 0 d
452
+ 1 w
453
+ 0.000 0.000 0.000 SCN
454
+ 426.6205 341.688 m
455
+ 426.6205 316.816 l
456
+ S
457
+ [] 0 d
458
+ 1 w
459
+ 0.000 0.000 0.000 SCN
460
+ 586.0 341.688 m
461
+ 586.0 316.816 l
462
+ S
463
+ [] 0 d
464
+ 1 w
465
+ 0.000 0.000 0.000 SCN
466
+
467
+ BT
468
+ 431.6205444264436 324.94399999999996 Td
469
+ /F1.0 12 Tf
470
+ [<37302e3030>] TJ
471
+ ET
472
+
473
+ Q
474
+
475
+ endstream
476
+ endobj
477
+ 5 0 obj
478
+ << /Type /Page
479
+ /Parent 3 0 R
480
+ /MediaBox [0 0 612.0 792.0]
481
+ /Contents 4 0 R
482
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
483
+ /Font << /F2.0 6 0 R
484
+ /F1.0 7 0 R
485
+ >>
486
+ >>
487
+ >>
488
+ endobj
489
+ 6 0 obj
490
+ << /Type /Font
491
+ /Subtype /Type1
492
+ /BaseFont /Helvetica-Bold
493
+ /Encoding /WinAnsiEncoding
494
+ >>
495
+ endobj
496
+ 7 0 obj
497
+ << /Type /Font
498
+ /Subtype /Type1
499
+ /BaseFont /Helvetica
500
+ /Encoding /WinAnsiEncoding
501
+ >>
502
+ endobj
503
+ xref
504
+ 0 8
505
+ 0000000000 65535 f
506
+ 0000000015 00000 n
507
+ 0000000109 00000 n
508
+ 0000000158 00000 n
509
+ 0000000215 00000 n
510
+ 0000005470 00000 n
511
+ 0000005660 00000 n
512
+ 0000005762 00000 n
513
+ trailer
514
+ << /Size 8
515
+ /Root 2 0 R
516
+ /Info 1 0 R
517
+ >>
518
+ startxref
519
+ 5859
520
+ %%EOF