br_danfe 0.11.2 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -1
  3. data/Gemfile.lock +31 -31
  4. data/br_danfe.gemspec +6 -5
  5. data/config/locales/pt-BR.yml +8 -0
  6. data/lib/br_danfe/danfe.rb +2 -2
  7. data/lib/br_danfe/danfe_lib/det_body.rb +1 -1
  8. data/lib/br_danfe/danfe_lib/document.rb +1 -1
  9. data/lib/br_danfe/danfe_lib/emit_header.rb +2 -2
  10. data/lib/br_danfe/danfe_lib/helper.rb +1 -27
  11. data/lib/br_danfe/danfe_lib/infadic.rb +1 -1
  12. data/lib/br_danfe/danfe_lib/xprod.rb +15 -15
  13. data/lib/br_danfe/danfe_nfce.rb +43 -0
  14. data/lib/br_danfe/danfe_nfce_lib/document.rb +35 -0
  15. data/lib/br_danfe/danfe_nfce_lib/footer.rb +15 -0
  16. data/lib/br_danfe/danfe_nfce_lib/header.rb +67 -0
  17. data/lib/br_danfe/danfe_nfce_lib/helper.rb +9 -0
  18. data/lib/br_danfe/danfe_nfce_lib/key.rb +18 -0
  19. data/lib/br_danfe/danfe_nfce_lib/nfce_identification.rb +20 -0
  20. data/lib/br_danfe/danfe_nfce_lib/product_list.rb +100 -0
  21. data/lib/br_danfe/danfe_nfce_lib/qr_code.rb +23 -0
  22. data/lib/br_danfe/danfe_nfce_lib/recipient.rb +72 -0
  23. data/lib/br_danfe/danfe_nfce_lib/total_list.rb +78 -0
  24. data/lib/br_danfe/helper.rb +29 -0
  25. data/lib/br_danfe/{danfe_lib/options.rb → logo_config.rb} +2 -2
  26. data/lib/br_danfe/{danfe_lib/logo_options.rb → logo_options.rb} +2 -2
  27. data/lib/br_danfe/version.rb +1 -1
  28. data/lib/br_danfe/xml.rb +36 -0
  29. data/spec/features/danfe_nfce_spec.rb +31 -0
  30. data/spec/fixtures/nfce/lib/document#render.pdf +99 -0
  31. data/spec/fixtures/nfce/lib/footer#render.pdf +74 -0
  32. data/spec/fixtures/nfce/lib/header#render-homologation.pdf +0 -0
  33. data/spec/fixtures/nfce/lib/header#render-long_name_with_logo.pdf +0 -0
  34. data/spec/fixtures/nfce/lib/header#render-long_name_without_logo.pdf +118 -0
  35. data/spec/fixtures/nfce/lib/header#render-short_name_with_logo.pdf +0 -0
  36. data/spec/fixtures/nfce/lib/header#render-short_name_without_logo.pdf +118 -0
  37. data/spec/fixtures/nfce/lib/key#render.pdf +104 -0
  38. data/spec/fixtures/nfce/lib/nfce_identification#render.pdf +118 -0
  39. data/spec/fixtures/nfce/lib/product_list#render-with_many_products.pdf +307 -0
  40. data/spec/fixtures/nfce/lib/product_list#render-with_many_products_and_long_names.pdf +335 -0
  41. data/spec/fixtures/nfce/lib/product_list#render-with_single_product.pdf +181 -0
  42. data/spec/fixtures/nfce/lib/product_list#render-with_single_product_and_long_name.pdf +195 -0
  43. data/spec/fixtures/nfce/lib/product_list_with_many_products.xml +367 -0
  44. data/spec/fixtures/nfce/lib/product_list_with_many_products_and_long_names.xml +367 -0
  45. data/spec/fixtures/nfce/lib/product_list_with_single_product.xml +238 -0
  46. data/spec/fixtures/nfce/lib/product_list_with_single_product_and_long_name.xml +238 -0
  47. data/spec/fixtures/nfce/lib/qr_code#render.pdf +0 -0
  48. data/spec/fixtures/nfce/lib/recipient#render-company.pdf +95 -0
  49. data/spec/fixtures/nfce/lib/recipient#render-consumer_without_document.pdf +88 -0
  50. data/spec/fixtures/nfce/lib/recipient#render-foreign.pdf +95 -0
  51. data/spec/fixtures/nfce/lib/recipient#render-individual.pdf +95 -0
  52. data/spec/fixtures/nfce/lib/recipient#render-unidentified_consumer.pdf +81 -0
  53. data/spec/fixtures/nfce/lib/total_list#does_not_render-payment_methods.pdf +139 -0
  54. data/spec/fixtures/nfce/lib/total_list#render-grouped_payment_methods.pdf +188 -0
  55. data/spec/fixtures/nfce/lib/total_list#render-totals.pdf +139 -0
  56. data/spec/fixtures/nfce/lib/total_list#render-without_payment.pdf +202 -0
  57. data/spec/fixtures/nfce/lib/total_list#render.pdf +202 -0
  58. data/spec/fixtures/nfce/v4.00/nfce.xml +367 -0
  59. data/spec/fixtures/nfce/v4.00/rendered_nfce.fixture.pdf +0 -0
  60. data/spec/fixtures/nfce/v4.00/saved_nfce.fixture.pdf +0 -0
  61. data/spec/lib/danfe_lib/dest_spec.rb +1 -1
  62. data/spec/lib/danfe_lib/det_body_spec.rb +1 -1
  63. data/spec/lib/danfe_lib/document_spec.rb +1 -1
  64. data/spec/lib/danfe_lib/dup_spec.rb +1 -1
  65. data/spec/lib/danfe_lib/emit_header_spec.rb +1 -1
  66. data/spec/lib/danfe_lib/helper_spec.rb +0 -54
  67. data/spec/lib/danfe_lib/icmstot_spec.rb +1 -1
  68. data/spec/lib/danfe_lib/infadic_spec.rb +1 -1
  69. data/spec/lib/danfe_lib/infadic_vol_spec.rb +1 -1
  70. data/spec/lib/danfe_lib/issqn_spec.rb +1 -1
  71. data/spec/lib/danfe_lib/ticket_spec.rb +1 -1
  72. data/spec/lib/danfe_lib/transp_spec.rb +1 -1
  73. data/spec/lib/danfe_lib/vol_spec.rb +1 -1
  74. data/spec/lib/danfe_nfce_lib/document_spec.rb +19 -0
  75. data/spec/lib/danfe_nfce_lib/footer_spec.rb +42 -0
  76. data/spec/lib/danfe_nfce_lib/header_spec.rb +117 -0
  77. data/spec/lib/danfe_nfce_lib/helper_spec.rb +28 -0
  78. data/spec/lib/danfe_nfce_lib/key_spec.rb +45 -0
  79. data/spec/lib/danfe_nfce_lib/nfce_identification_spec.rb +48 -0
  80. data/spec/lib/danfe_nfce_lib/product_list_spec.rb +66 -0
  81. data/spec/lib/danfe_nfce_lib/qr_code_spec.rb +35 -0
  82. data/spec/lib/danfe_nfce_lib/recipient_spec.rb +163 -0
  83. data/spec/lib/danfe_nfce_lib/total_list_spec.rb +188 -0
  84. data/spec/lib/helper_spec.rb +102 -0
  85. data/spec/lib/logo_config_spec.rb +21 -0
  86. data/spec/lib/{danfe_lib/logo_options_spec.rb → logo_options_spec.rb} +8 -22
  87. data/spec/lib/{danfe_lib/xml_spec.rb → xml_spec.rb} +2 -2
  88. metadata +87 -18
  89. data/lib/br_danfe/danfe_lib/xml.rb +0 -38
  90. data/spec/lib/danfe_lib/options_spec.rb +0 -17
@@ -0,0 +1,118 @@
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 527
21
+ >>
22
+ stream
23
+ q
24
+ 0.3 w
25
+
26
+ BT
27
+ 8.5039 129.4543 Td
28
+ /F1.0 6 Tf
29
+ <> Tj
30
+ ET
31
+
32
+
33
+ BT
34
+ 27.2858 122.4953 Td
35
+ /F2.0 7 Tf
36
+ <4e46432d65206eba20313632392053e972696520312032342f30332f323032302031333a33333a3230> Tj
37
+ ET
38
+
39
+
40
+ BT
41
+ 27.2858 115.1383 Td
42
+ /F2.0 7 Tf
43
+ <50726f746f636f6c6f206465206175746f72697a61e7e36f3a> Tj
44
+ ET
45
+
46
+
47
+ BT
48
+ 132.2858 115.1383 Td
49
+ /F1.0 7 Tf
50
+ <20333432323030303030313531373834> Tj
51
+ ET
52
+
53
+
54
+ BT
55
+ 27.2858 107.7533 Td
56
+ /F2.0 7 Tf
57
+ <44617461206465206175746f72697a61e7e36f3a20> Tj
58
+ ET
59
+
60
+
61
+ BT
62
+ 115.4858 107.7533 Td
63
+ /F1.0 7 Tf
64
+ <2032342f30332f323032302031353a33363a3134> Tj
65
+ ET
66
+
67
+ Q
68
+
69
+ endstream
70
+ endobj
71
+ 5 0 obj
72
+ << /Type /Page
73
+ /Parent 3 0 R
74
+ /MediaBox [0 0 226.7717 141.7323]
75
+ /CropBox [0 0 226.7717 141.7323]
76
+ /BleedBox [0 0 226.7717 141.7323]
77
+ /TrimBox [0 0 226.7717 141.7323]
78
+ /ArtBox [0 0 226.7717 141.7323]
79
+ /Contents 4 0 R
80
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
81
+ /Font << /F1.0 6 0 R
82
+ /F2.0 7 0 R
83
+ >>
84
+ >>
85
+ >>
86
+ endobj
87
+ 6 0 obj
88
+ << /Type /Font
89
+ /Subtype /Type1
90
+ /BaseFont /Courier
91
+ /Encoding /WinAnsiEncoding
92
+ >>
93
+ endobj
94
+ 7 0 obj
95
+ << /Type /Font
96
+ /Subtype /Type1
97
+ /BaseFont /Courier-Bold
98
+ /Encoding /WinAnsiEncoding
99
+ >>
100
+ endobj
101
+ xref
102
+ 0 8
103
+ 0000000000 65535 f
104
+ 0000000015 00000 n
105
+ 0000000109 00000 n
106
+ 0000000158 00000 n
107
+ 0000000215 00000 n
108
+ 0000000793 00000 n
109
+ 0000001121 00000 n
110
+ 0000001216 00000 n
111
+ trailer
112
+ << /Size 8
113
+ /Root 2 0 R
114
+ /Info 1 0 R
115
+ >>
116
+ startxref
117
+ 1316
118
+ %%EOF
@@ -0,0 +1,307 @@
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 1822
21
+ >>
22
+ stream
23
+ q
24
+ 0.3 w
25
+
26
+ BT
27
+ 8.5039 129.4543 Td
28
+ /F1.0 6 Tf
29
+ <> Tj
30
+ ET
31
+
32
+
33
+ BT
34
+ 8.5039 123.1243 Td
35
+ /F1.0 6 Tf
36
+ <> Tj
37
+ ET
38
+
39
+
40
+ BT
41
+ 8.5039 116.7943 Td
42
+ /F2.0 6 Tf
43
+ <43f36469676f> Tj
44
+ ET
45
+
46
+
47
+ BT
48
+ 34.0157 116.7943 Td
49
+ /F2.0 6 Tf
50
+ <446573637269e7e36f> Tj
51
+ ET
52
+
53
+
54
+ BT
55
+ 124.4976 116.7943 Td
56
+ /F2.0 6 Tf
57
+ <51746465> Tj
58
+ ET
59
+
60
+
61
+ BT
62
+ 143.0362 116.7943 Td
63
+ /F2.0 6 Tf
64
+ <554e> Tj
65
+ ET
66
+
67
+
68
+ BT
69
+ 159.052 116.7943 Td
70
+ /F2.0 6 Tf
71
+ <566c20556e6974> Tj
72
+ ET
73
+
74
+
75
+ BT
76
+ 189.4677 116.7943 Td
77
+ /F2.0 6 Tf
78
+ <566c20546f74616c> Tj
79
+ ET
80
+
81
+
82
+ BT
83
+ 8.5039 111.1251 Td
84
+ /F1.0 6 Tf
85
+ <> Tj
86
+ ET
87
+
88
+
89
+ BT
90
+ 8.5039 104.7951 Td
91
+ /F1.0 6 Tf
92
+ <31313733> Tj
93
+ ET
94
+
95
+
96
+ BT
97
+ 34.0157 104.7951 Td
98
+ /F1.0 6 Tf
99
+ <41627261e7616465697261> Tj
100
+ ET
101
+
102
+
103
+ BT
104
+ 110.0976 104.7951 Td
105
+ /F1.0 6 Tf
106
+ <312e3030302c3030> Tj
107
+ ET
108
+
109
+
110
+ BT
111
+ 143.0362 104.7951 Td
112
+ /F1.0 6 Tf
113
+ <554e> Tj
114
+ ET
115
+
116
+
117
+ BT
118
+ 151.852 104.7951 Td
119
+ /F1.0 6 Tf
120
+ <31302e3030302c3030> Tj
121
+ ET
122
+
123
+
124
+ BT
125
+ 185.8677 104.7951 Td
126
+ /F1.0 6 Tf
127
+ <31302e3030302c3030> Tj
128
+ ET
129
+
130
+
131
+ BT
132
+ 8.5039 98.2754 Td
133
+ /F1.0 6 Tf
134
+ <31313733> Tj
135
+ ET
136
+
137
+
138
+ BT
139
+ 34.0157 98.2754 Td
140
+ /F1.0 6 Tf
141
+ <41627261e7616465697261> Tj
142
+ ET
143
+
144
+
145
+ BT
146
+ 124.4976 98.2754 Td
147
+ /F1.0 6 Tf
148
+ <322c3030> Tj
149
+ ET
150
+
151
+
152
+ BT
153
+ 143.0362 98.2754 Td
154
+ /F1.0 6 Tf
155
+ <554e> Tj
156
+ ET
157
+
158
+
159
+ BT
160
+ 166.252 98.2754 Td
161
+ /F1.0 6 Tf
162
+ <31302c3030> Tj
163
+ ET
164
+
165
+
166
+ BT
167
+ 200.2677 98.2754 Td
168
+ /F1.0 6 Tf
169
+ <32302c3030> Tj
170
+ ET
171
+
172
+
173
+ BT
174
+ 8.5039 91.7557 Td
175
+ /F1.0 6 Tf
176
+ <31313733> Tj
177
+ ET
178
+
179
+
180
+ BT
181
+ 34.0157 91.7557 Td
182
+ /F1.0 6 Tf
183
+ <41627261e7616465697261> Tj
184
+ ET
185
+
186
+
187
+ BT
188
+ 124.4976 91.7557 Td
189
+ /F1.0 6 Tf
190
+ <332c3030> Tj
191
+ ET
192
+
193
+
194
+ BT
195
+ 143.0362 91.7557 Td
196
+ /F1.0 6 Tf
197
+ <554e> Tj
198
+ ET
199
+
200
+
201
+ BT
202
+ 166.252 91.7557 Td
203
+ /F1.0 6 Tf
204
+ <31302c3030> Tj
205
+ ET
206
+
207
+
208
+ BT
209
+ 200.2677 91.7557 Td
210
+ /F1.0 6 Tf
211
+ <33302c3030> Tj
212
+ ET
213
+
214
+
215
+ BT
216
+ 8.5039 85.236 Td
217
+ /F1.0 6 Tf
218
+ <31313733> Tj
219
+ ET
220
+
221
+
222
+ BT
223
+ 34.0157 85.236 Td
224
+ /F1.0 6 Tf
225
+ <41627261e7616465697261> Tj
226
+ ET
227
+
228
+
229
+ BT
230
+ 124.4976 85.236 Td
231
+ /F1.0 6 Tf
232
+ <342c3030> Tj
233
+ ET
234
+
235
+
236
+ BT
237
+ 143.0362 85.236 Td
238
+ /F1.0 6 Tf
239
+ <554e> Tj
240
+ ET
241
+
242
+
243
+ BT
244
+ 166.252 85.236 Td
245
+ /F1.0 6 Tf
246
+ <31312c3030> Tj
247
+ ET
248
+
249
+
250
+ BT
251
+ 200.2677 85.236 Td
252
+ /F1.0 6 Tf
253
+ <34342c3030> Tj
254
+ ET
255
+
256
+ Q
257
+
258
+ endstream
259
+ endobj
260
+ 5 0 obj
261
+ << /Type /Page
262
+ /Parent 3 0 R
263
+ /MediaBox [0 0 226.7717 141.7323]
264
+ /CropBox [0 0 226.7717 141.7323]
265
+ /BleedBox [0 0 226.7717 141.7323]
266
+ /TrimBox [0 0 226.7717 141.7323]
267
+ /ArtBox [0 0 226.7717 141.7323]
268
+ /Contents 4 0 R
269
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
270
+ /Font << /F1.0 6 0 R
271
+ /F2.0 7 0 R
272
+ >>
273
+ >>
274
+ >>
275
+ endobj
276
+ 6 0 obj
277
+ << /Type /Font
278
+ /Subtype /Type1
279
+ /BaseFont /Courier
280
+ /Encoding /WinAnsiEncoding
281
+ >>
282
+ endobj
283
+ 7 0 obj
284
+ << /Type /Font
285
+ /Subtype /Type1
286
+ /BaseFont /Courier-Bold
287
+ /Encoding /WinAnsiEncoding
288
+ >>
289
+ endobj
290
+ xref
291
+ 0 8
292
+ 0000000000 65535 f
293
+ 0000000015 00000 n
294
+ 0000000109 00000 n
295
+ 0000000158 00000 n
296
+ 0000000215 00000 n
297
+ 0000002089 00000 n
298
+ 0000002417 00000 n
299
+ 0000002512 00000 n
300
+ trailer
301
+ << /Size 8
302
+ /Root 2 0 R
303
+ /Info 1 0 R
304
+ >>
305
+ startxref
306
+ 2612
307
+ %%EOF
@@ -0,0 +1,335 @@
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 2134
21
+ >>
22
+ stream
23
+ q
24
+ 0.3 w
25
+
26
+ BT
27
+ 8.5039 129.4543 Td
28
+ /F1.0 6 Tf
29
+ <> Tj
30
+ ET
31
+
32
+
33
+ BT
34
+ 8.5039 123.1243 Td
35
+ /F1.0 6 Tf
36
+ <> Tj
37
+ ET
38
+
39
+
40
+ BT
41
+ 8.5039 116.7943 Td
42
+ /F2.0 6 Tf
43
+ <43f36469676f> Tj
44
+ ET
45
+
46
+
47
+ BT
48
+ 34.0157 116.7943 Td
49
+ /F2.0 6 Tf
50
+ <446573637269e7e36f> Tj
51
+ ET
52
+
53
+
54
+ BT
55
+ 124.4976 116.7943 Td
56
+ /F2.0 6 Tf
57
+ <51746465> Tj
58
+ ET
59
+
60
+
61
+ BT
62
+ 143.0362 116.7943 Td
63
+ /F2.0 6 Tf
64
+ <554e> Tj
65
+ ET
66
+
67
+
68
+ BT
69
+ 159.052 116.7943 Td
70
+ /F2.0 6 Tf
71
+ <566c20556e6974> Tj
72
+ ET
73
+
74
+
75
+ BT
76
+ 189.4677 116.7943 Td
77
+ /F2.0 6 Tf
78
+ <566c20546f74616c> Tj
79
+ ET
80
+
81
+
82
+ BT
83
+ 8.5039 111.1251 Td
84
+ /F1.0 6 Tf
85
+ <> Tj
86
+ ET
87
+
88
+
89
+ BT
90
+ 8.5039 104.7951 Td
91
+ /F1.0 6 Tf
92
+ <31313733> Tj
93
+ ET
94
+
95
+
96
+ BT
97
+ 34.0157 104.7951 Td
98
+ /F1.0 6 Tf
99
+ <41627261e761646569726120776974682061> Tj
100
+ ET
101
+
102
+
103
+ BT
104
+ 34.0157 98.4651 Td
105
+ /F1.0 6 Tf
106
+ <6c6172676572206e616d652077697468> Tj
107
+ ET
108
+
109
+
110
+ BT
111
+ 34.0157 92.1351 Td
112
+ /F1.0 6 Tf
113
+ <6c696e6520627265616b73> Tj
114
+ ET
115
+
116
+
117
+ BT
118
+ 110.0976 104.7951 Td
119
+ /F1.0 6 Tf
120
+ <312e3030302c3030> Tj
121
+ ET
122
+
123
+
124
+ BT
125
+ 143.0362 104.7951 Td
126
+ /F1.0 6 Tf
127
+ <554e> Tj
128
+ ET
129
+
130
+
131
+ BT
132
+ 151.852 104.7951 Td
133
+ /F1.0 6 Tf
134
+ <31302e3030302c3030> Tj
135
+ ET
136
+
137
+
138
+ BT
139
+ 185.8677 104.7951 Td
140
+ /F1.0 6 Tf
141
+ <31302e3030302c3030> Tj
142
+ ET
143
+
144
+
145
+ BT
146
+ 8.5039 85.236 Td
147
+ /F1.0 6 Tf
148
+ <31313733> Tj
149
+ ET
150
+
151
+
152
+ BT
153
+ 34.0157 85.236 Td
154
+ /F1.0 6 Tf
155
+ <41627261e7616465697261> Tj
156
+ ET
157
+
158
+
159
+ BT
160
+ 124.4976 85.236 Td
161
+ /F1.0 6 Tf
162
+ <322c3030> Tj
163
+ ET
164
+
165
+
166
+ BT
167
+ 143.0362 85.236 Td
168
+ /F1.0 6 Tf
169
+ <554e> Tj
170
+ ET
171
+
172
+
173
+ BT
174
+ 166.252 85.236 Td
175
+ /F1.0 6 Tf
176
+ <31302c3030> Tj
177
+ ET
178
+
179
+
180
+ BT
181
+ 200.2677 85.236 Td
182
+ /F1.0 6 Tf
183
+ <32302c3030> Tj
184
+ ET
185
+
186
+
187
+ BT
188
+ 8.5039 78.7163 Td
189
+ /F1.0 6 Tf
190
+ <31313733> Tj
191
+ ET
192
+
193
+
194
+ BT
195
+ 34.0157 78.7163 Td
196
+ /F1.0 6 Tf
197
+ <41627261e761646569726120776974682061> Tj
198
+ ET
199
+
200
+
201
+ BT
202
+ 34.0157 72.3863 Td
203
+ /F1.0 6 Tf
204
+ <6c6172676572206e616d652077697468> Tj
205
+ ET
206
+
207
+
208
+ BT
209
+ 34.0157 66.0563 Td
210
+ /F1.0 6 Tf
211
+ <6c696e6520627265616b73> Tj
212
+ ET
213
+
214
+
215
+ BT
216
+ 124.4976 78.7163 Td
217
+ /F1.0 6 Tf
218
+ <332c3030> Tj
219
+ ET
220
+
221
+
222
+ BT
223
+ 143.0362 78.7163 Td
224
+ /F1.0 6 Tf
225
+ <554e> Tj
226
+ ET
227
+
228
+
229
+ BT
230
+ 166.252 78.7163 Td
231
+ /F1.0 6 Tf
232
+ <31302c3030> Tj
233
+ ET
234
+
235
+
236
+ BT
237
+ 200.2677 78.7163 Td
238
+ /F1.0 6 Tf
239
+ <33302c3030> Tj
240
+ ET
241
+
242
+
243
+ BT
244
+ 8.5039 59.1573 Td
245
+ /F1.0 6 Tf
246
+ <31313733> Tj
247
+ ET
248
+
249
+
250
+ BT
251
+ 34.0157 59.1573 Td
252
+ /F1.0 6 Tf
253
+ <41627261e7616465697261> Tj
254
+ ET
255
+
256
+
257
+ BT
258
+ 124.4976 59.1573 Td
259
+ /F1.0 6 Tf
260
+ <342c3030> Tj
261
+ ET
262
+
263
+
264
+ BT
265
+ 143.0362 59.1573 Td
266
+ /F1.0 6 Tf
267
+ <554e> Tj
268
+ ET
269
+
270
+
271
+ BT
272
+ 166.252 59.1573 Td
273
+ /F1.0 6 Tf
274
+ <31312c3030> Tj
275
+ ET
276
+
277
+
278
+ BT
279
+ 200.2677 59.1573 Td
280
+ /F1.0 6 Tf
281
+ <34342c3030> Tj
282
+ ET
283
+
284
+ Q
285
+
286
+ endstream
287
+ endobj
288
+ 5 0 obj
289
+ << /Type /Page
290
+ /Parent 3 0 R
291
+ /MediaBox [0 0 226.7717 141.7323]
292
+ /CropBox [0 0 226.7717 141.7323]
293
+ /BleedBox [0 0 226.7717 141.7323]
294
+ /TrimBox [0 0 226.7717 141.7323]
295
+ /ArtBox [0 0 226.7717 141.7323]
296
+ /Contents 4 0 R
297
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
298
+ /Font << /F1.0 6 0 R
299
+ /F2.0 7 0 R
300
+ >>
301
+ >>
302
+ >>
303
+ endobj
304
+ 6 0 obj
305
+ << /Type /Font
306
+ /Subtype /Type1
307
+ /BaseFont /Courier
308
+ /Encoding /WinAnsiEncoding
309
+ >>
310
+ endobj
311
+ 7 0 obj
312
+ << /Type /Font
313
+ /Subtype /Type1
314
+ /BaseFont /Courier-Bold
315
+ /Encoding /WinAnsiEncoding
316
+ >>
317
+ endobj
318
+ xref
319
+ 0 8
320
+ 0000000000 65535 f
321
+ 0000000015 00000 n
322
+ 0000000109 00000 n
323
+ 0000000158 00000 n
324
+ 0000000215 00000 n
325
+ 0000002401 00000 n
326
+ 0000002729 00000 n
327
+ 0000002824 00000 n
328
+ trailer
329
+ << /Size 8
330
+ /Root 2 0 R
331
+ /Info 1 0 R
332
+ >>
333
+ startxref
334
+ 2924
335
+ %%EOF