br_danfe 0.14.4 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/.tool-versions +1 -0
  3. data/Gemfile.lock +48 -33
  4. data/Guardfile +2 -2
  5. data/README.md +39 -0
  6. data/br_danfe.gemspec +5 -4
  7. data/config/locales/pt-BR.yml +1 -0
  8. data/lib/br_danfe.rb +1 -1
  9. data/lib/br_danfe/danfe.rb +8 -5
  10. data/lib/br_danfe/danfe_lib/base.rb +2 -2
  11. data/lib/br_danfe/danfe_lib/nfce.rb +14 -12
  12. data/lib/br_danfe/danfe_lib/nfe.rb +39 -27
  13. data/lib/br_danfe/danfe_lib/nfe_lib/dest.rb +1 -1
  14. data/lib/br_danfe/danfe_lib/nfe_lib/emit_header.rb +5 -5
  15. data/lib/br_danfe/document_builder.rb +1 -1
  16. data/lib/br_danfe/helper.rb +11 -7
  17. data/lib/br_danfe/mdfe.rb +55 -0
  18. data/lib/br_danfe/mdfe_lib/authorization_protocol.rb +24 -0
  19. data/lib/br_danfe/mdfe_lib/document.rb +26 -0
  20. data/lib/br_danfe/mdfe_lib/drivers.rb +70 -0
  21. data/lib/br_danfe/mdfe_lib/fisco_control.rb +40 -0
  22. data/lib/br_danfe/mdfe_lib/header.rb +78 -0
  23. data/lib/br_danfe/mdfe_lib/mdfe_identification.rb +69 -0
  24. data/lib/br_danfe/mdfe_lib/notes.rb +94 -0
  25. data/lib/br_danfe/mdfe_lib/totalizer.rb +57 -0
  26. data/lib/br_danfe/mdfe_lib/vehicles.rb +80 -0
  27. data/lib/br_danfe/qr_code.rb +22 -0
  28. data/lib/br_danfe/version.rb +1 -1
  29. data/spec/br_danfe/danfe_lib/nfce_spec.rb +12 -1
  30. data/spec/br_danfe/danfe_lib/nfe_lib/emit_header_spec.rb +2 -2
  31. data/spec/br_danfe/danfe_lib/nfe_lib/infadic_spec.rb +3 -3
  32. data/spec/br_danfe/danfe_lib/nfe_spec.rb +17 -1
  33. data/spec/br_danfe/danfe_spec.rb +16 -0
  34. data/spec/br_danfe/helper_spec.rb +12 -0
  35. data/spec/br_danfe/mdfe_lib/authorization_protocol_spec.rb +35 -0
  36. data/spec/br_danfe/mdfe_lib/document_spec.rb +20 -0
  37. data/spec/br_danfe/mdfe_lib/drivers_spec.rb +88 -0
  38. data/spec/br_danfe/mdfe_lib/fisco_control_spec.rb +55 -0
  39. data/spec/br_danfe/mdfe_lib/header_spec.rb +126 -0
  40. data/spec/br_danfe/mdfe_lib/mdfe_identification_spec.rb +104 -0
  41. data/spec/br_danfe/mdfe_lib/notes_spec.rb +97 -0
  42. data/spec/br_danfe/mdfe_lib/totalizer_spec.rb +63 -0
  43. data/spec/br_danfe/mdfe_lib/vehicles_spec.rb +66 -0
  44. data/spec/br_danfe/mdfe_spec.rb +46 -0
  45. data/spec/br_danfe/{danfe_lib/nfce_lib/qr_code_spec.rb → qr_code_spec.rb} +10 -5
  46. data/spec/fixtures/cce/lib/barcode#render.pdf +5 -3
  47. data/spec/fixtures/cce/v1.00/cce.fixture.pdf +15 -13
  48. data/spec/fixtures/mdfe/lib/document#render.pdf +0 -0
  49. data/spec/fixtures/mdfe/lib/document#text.align.pdf +0 -0
  50. data/spec/fixtures/mdfe/lib/document#text.pad.pdf +0 -0
  51. data/spec/fixtures/mdfe/lib/document#text.simple.pdf +0 -0
  52. data/spec/fixtures/mdfe/lib/document#text.size.pdf +0 -0
  53. data/spec/fixtures/mdfe/lib/document#text.style.pdf +0 -0
  54. data/spec/fixtures/mdfe/lib/fisco_control#barcode.pdf +0 -0
  55. data/spec/fixtures/mdfe/lib/header#render-qr-code.pdf +0 -0
  56. data/spec/fixtures/mdfe/lib/header#render-with_logo.pdf +0 -0
  57. data/spec/fixtures/mdfe/lib/header#render-without_logo.pdf +0 -0
  58. data/spec/fixtures/mdfe/lib/mdfe-with-multiple-pages.pdf +1945 -0
  59. data/spec/fixtures/mdfe/lib/mdfe.fixture.pdf +1286 -0
  60. data/spec/fixtures/mdfe/lib/notes#render-big-aditional-information.pdf +1943 -0
  61. data/spec/fixtures/mdfe/lib/xml-mdfe-multiples-pages.xml +116 -0
  62. data/spec/fixtures/mdfe/lib/xml-mdfe.xml +250 -0
  63. data/spec/fixtures/nfce/lib/document#render.pdf +17 -17
  64. data/spec/fixtures/nfce/lib/footer#render-with_additional_information.pdf +12 -12
  65. data/spec/fixtures/nfce/lib/footer#render.pdf +10 -10
  66. data/spec/fixtures/nfce/lib/header#render-homologation.pdf +0 -0
  67. data/spec/fixtures/nfce/lib/header#render-long_name_with_logo.pdf +0 -0
  68. data/spec/fixtures/nfce/lib/header#render-long_name_without_logo.pdf +16 -16
  69. data/spec/fixtures/nfce/lib/header#render-short_name_with_logo.pdf +0 -0
  70. data/spec/fixtures/nfce/lib/header#render-short_name_without_logo.pdf +16 -16
  71. data/spec/fixtures/nfce/lib/key#render.pdf +14 -14
  72. data/spec/fixtures/nfce/lib/nfce_identification#render.pdf +16 -16
  73. data/spec/fixtures/nfce/lib/product_list#render-with_many_products.pdf +43 -43
  74. data/spec/fixtures/nfce/lib/product_list#render-with_many_products_and_long_names.pdf +47 -47
  75. data/spec/fixtures/nfce/lib/product_list#render-with_single_product.pdf +25 -25
  76. data/spec/fixtures/nfce/lib/product_list#render-with_single_product_and_long_name.pdf +27 -27
  77. data/spec/fixtures/nfce/lib/qr_code#render.pdf +0 -0
  78. data/spec/fixtures/nfce/lib/recipient#render-company.pdf +13 -13
  79. data/spec/fixtures/nfce/lib/recipient#render-consumer_without_document.pdf +12 -12
  80. data/spec/fixtures/nfce/lib/recipient#render-foreign.pdf +13 -13
  81. data/spec/fixtures/nfce/lib/recipient#render-individual.pdf +13 -13
  82. data/spec/fixtures/nfce/lib/recipient#render-unidentified_consumer.pdf +11 -11
  83. data/spec/fixtures/nfce/lib/total_list#does_not_render-payment_methods.pdf +19 -19
  84. data/spec/fixtures/nfce/lib/total_list#render-grouped_payment_methods.pdf +26 -26
  85. data/spec/fixtures/nfce/lib/total_list#render-totals.pdf +19 -19
  86. data/spec/fixtures/nfce/lib/total_list#render-without_payment.pdf +28 -28
  87. data/spec/fixtures/nfce/lib/total_list#render.pdf +28 -28
  88. data/spec/fixtures/nfce/v4.00/multiples_xmls_on_the_same_pdf.pdf +1229 -0
  89. data/spec/fixtures/nfce/v4.00/nfce-unauthorized-hom.fixture.pdf +0 -0
  90. data/spec/fixtures/nfce/v4.00/nfce-unauthorized-prod.fixture.pdf +0 -0
  91. data/spec/fixtures/nfce/v4.00/rendered_nfce.fixture.pdf +0 -0
  92. data/spec/fixtures/nfce/v4.00/saved_nfce.fixture.pdf +0 -0
  93. data/spec/fixtures/nfe/lib/dest#render-v2.00.pdf +0 -0
  94. data/spec/fixtures/nfe/lib/dest#render-v3.10.pdf +0 -0
  95. data/spec/fixtures/nfe/lib/dest#render-v4.00.pdf +0 -0
  96. data/spec/fixtures/nfe/lib/dest#render-with-address-bigger.pdf +0 -0
  97. data/spec/fixtures/nfe/lib/dest#render-with_cnpj.pdf +0 -0
  98. data/spec/fixtures/nfe/lib/dest#render-with_cpf.pdf +0 -0
  99. data/spec/fixtures/nfe/lib/dest#render-with_ie.pdf +0 -0
  100. data/spec/fixtures/nfe/lib/dest#render-without-address-complement.pdf +0 -0
  101. data/spec/fixtures/nfe/lib/det_body#render-csosn.pdf +662 -662
  102. data/spec/fixtures/nfe/lib/det_body#render-cst.pdf +410 -410
  103. data/spec/fixtures/nfe/lib/det_body#render-fci.pdf +272 -272
  104. data/spec/fixtures/nfe/lib/det_body#render-icms_st.pdf +272 -272
  105. data/spec/fixtures/nfe/lib/det_body#render-quantity_with_custom_precision.pdf +270 -270
  106. data/spec/fixtures/nfe/lib/det_body#render-three_pages.pdf +6213 -6213
  107. data/spec/fixtures/nfe/lib/det_body#render-two_pages.pdf +6083 -6083
  108. data/spec/fixtures/nfe/lib/det_body#render-unit_price_with_custom_precision.pdf +270 -270
  109. data/spec/fixtures/nfe/lib/det_body#render-with_infadprod.pdf +272 -272
  110. data/spec/fixtures/nfe/lib/det_body#render-with_issqn.pdf +2859 -2859
  111. data/spec/fixtures/nfe/lib/det_body#render-without_issqn.pdf +2859 -2859
  112. data/spec/fixtures/nfe/lib/document#lcnpj-blank.pdf +0 -0
  113. data/spec/fixtures/nfe/lib/document#lcnpj-invalid.pdf +0 -0
  114. data/spec/fixtures/nfe/lib/document#lcnpj-valid.pdf +0 -0
  115. data/spec/fixtures/nfe/lib/document#lie-blank-uf-invalid.pdf +0 -0
  116. data/spec/fixtures/nfe/lib/document#lie-blank.pdf +0 -0
  117. data/spec/fixtures/nfe/lib/document#lie-invalid.pdf +0 -0
  118. data/spec/fixtures/nfe/lib/document#lie-valid.pdf +0 -0
  119. data/spec/fixtures/nfe/lib/dup#render.pdf +0 -0
  120. data/spec/fixtures/nfe/lib/emit_header#render-second_page.pdf +511 -509
  121. data/spec/fixtures/nfe/lib/emit_header#render-with_logo.pdf +510 -508
  122. data/spec/fixtures/nfe/lib/emit_header#render-without_logo.pdf +507 -505
  123. data/spec/fixtures/nfe/lib/icmstot#render.pdf +0 -0
  124. data/spec/fixtures/nfe/lib/infadic#address-shipment.pdf +0 -0
  125. data/spec/fixtures/nfe/lib/infadic#render-all_the_informations.pdf +0 -0
  126. data/spec/fixtures/nfe/lib/infadic#render-difal.pdf +0 -0
  127. data/spec/fixtures/nfe/lib/infadic#render-extra_volume.pdf +0 -0
  128. data/spec/fixtures/nfe/lib/infadic#render-with_complementary_information.pdf +0 -0
  129. data/spec/fixtures/nfe/lib/infadic#render-with_fisco_additional_information.pdf +0 -0
  130. data/spec/fixtures/nfe/lib/infadic#render-with_street_data.pdf +0 -0
  131. data/spec/fixtures/nfe/lib/infadic#render.pdf +0 -0
  132. data/spec/fixtures/nfe/lib/infadic_vol#render-extra_volume.pdf +0 -0
  133. data/spec/fixtures/nfe/lib/issqn#render-with_issqn.pdf +0 -0
  134. data/spec/fixtures/nfe/lib/issqn#render-with_one_issqn_value.pdf +0 -0
  135. data/spec/fixtures/nfe/lib/ticket#render.pdf +0 -0
  136. data/spec/fixtures/nfe/lib/transp#render-modfrete_0.pdf +0 -0
  137. data/spec/fixtures/nfe/lib/transp#render-modfrete_1.pdf +0 -0
  138. data/spec/fixtures/nfe/lib/transp#render-modfrete_2.pdf +0 -0
  139. data/spec/fixtures/nfe/lib/transp#render-modfrete_3.pdf +0 -0
  140. data/spec/fixtures/nfe/lib/transp#render-modfrete_4.pdf +0 -0
  141. data/spec/fixtures/nfe/lib/transp#render-modfrete_9.pdf +0 -0
  142. data/spec/fixtures/nfe/lib/transp#render.pdf +0 -0
  143. data/spec/fixtures/nfe/lib/vol#render-blank-boxes.pdf +0 -0
  144. data/spec/fixtures/nfe/lib/vol#render.pdf +0 -0
  145. data/spec/fixtures/nfe/v2.00/custom_options.fixture.pdf +733 -733
  146. data/spec/fixtures/nfe/v2.00/nfe_simples_nacional.xml.fixture.pdf +730 -730
  147. data/spec/fixtures/nfe/v2.00/nfe_with_extra_volumes.xml.fixture.pdf +3449 -3445
  148. data/spec/fixtures/nfe/v2.00/nfe_with_fci.xml.fixture.pdf +929 -927
  149. data/spec/fixtures/nfe/v2.00/nfe_with_ns.xml.fixture.pdf +3424 -3420
  150. data/spec/fixtures/nfe/v2.00/nfe_without_ns.xml.fixture.pdf +1178 -1176
  151. data/spec/fixtures/nfe/v3.10/multiples.xmls.on.the.same.pdf.pdf +11471 -0
  152. data/spec/fixtures/nfe/v3.10/nfe_simples_nacional.xml.fixture.pdf +1495 -1495
  153. data/spec/fixtures/nfe/v3.10/with_footer.fixture.pdf +2444 -2444
  154. data/spec/fixtures/nfe/v3.10/with_issqn.fixture.pdf +2142 -2142
  155. data/spec/fixtures/nfe/v3.10/with_three_pages.fixture.pdf +7096 -7096
  156. data/spec/fixtures/nfe/v3.10/without_issqn.fixture.pdf +2811 -2811
  157. data/spec/fixtures/qr_code/qr_code#render.pdf +0 -0
  158. metadata +90 -39
  159. data/lib/br_danfe/danfe_lib/nfce_lib/qr_code.rb +0 -25
  160. data/lib/br_danfe/danfe_lib/nfe_lib/cep.rb +0 -11
  161. data/spec/br_danfe/danfe_lib/nfe_lib/cep_spec.rb +0 -10
@@ -0,0 +1,1943 @@
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 5
16
+ /Kids [5 0 R 9 0 R 11 0 R 13 0 R 15 0 R]
17
+ >>
18
+ endobj
19
+ 4 0 obj
20
+ << /Length 6075
21
+ >>
22
+ stream
23
+ q
24
+ /DeviceRGB CS
25
+ 0.62745 0.62745 0.62745 SCN
26
+ 36.0 347.0 m
27
+ 562.0 347.0 l
28
+ S
29
+
30
+ BT
31
+ 36.0 352.876 Td
32
+ /F2.0 12 Tf
33
+ <4f6273657276618d9b6573> Tj
34
+ ET
35
+
36
+
37
+ BT
38
+ 36.0 334.07 Td
39
+ /F1.0 10 Tf
40
+ <494e464f524d4182cd45532041444943494f4e41495320444520494e5445524553534520444f20464953434f> Tj
41
+ ET
42
+
43
+
44
+ BT
45
+ 36.0 318.5 Td
46
+ /F1.0 10 Tf
47
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
48
+ ET
49
+
50
+
51
+ BT
52
+ 36.0 307.93 Td
53
+ /F1.0 10 Tf
54
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
55
+ ET
56
+
57
+
58
+ BT
59
+ 36.0 297.36 Td
60
+ /F1.0 10 Tf
61
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
62
+ ET
63
+
64
+
65
+ BT
66
+ 36.0 286.79 Td
67
+ /F1.0 10 Tf
68
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
69
+ ET
70
+
71
+
72
+ BT
73
+ 36.0 276.22 Td
74
+ /F1.0 10 Tf
75
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
76
+ ET
77
+
78
+
79
+ BT
80
+ 36.0 265.65 Td
81
+ /F1.0 10 Tf
82
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
83
+ ET
84
+
85
+
86
+ BT
87
+ 36.0 255.08 Td
88
+ /F1.0 10 Tf
89
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
90
+ ET
91
+
92
+
93
+ BT
94
+ 36.0 244.51 Td
95
+ /F1.0 10 Tf
96
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
97
+ ET
98
+
99
+
100
+ BT
101
+ 36.0 233.94 Td
102
+ /F1.0 10 Tf
103
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
104
+ ET
105
+
106
+
107
+ BT
108
+ 36.0 223.37 Td
109
+ /F1.0 10 Tf
110
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
111
+ ET
112
+
113
+
114
+ BT
115
+ 36.0 212.8 Td
116
+ /F1.0 10 Tf
117
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
118
+ ET
119
+
120
+
121
+ BT
122
+ 36.0 202.23 Td
123
+ /F1.0 10 Tf
124
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
125
+ ET
126
+
127
+
128
+ BT
129
+ 36.0 191.66 Td
130
+ /F1.0 10 Tf
131
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
132
+ ET
133
+
134
+
135
+ BT
136
+ 36.0 181.09 Td
137
+ /F1.0 10 Tf
138
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
139
+ ET
140
+
141
+
142
+ BT
143
+ 36.0 170.52 Td
144
+ /F1.0 10 Tf
145
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
146
+ ET
147
+
148
+
149
+ BT
150
+ 36.0 159.95 Td
151
+ /F1.0 10 Tf
152
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
153
+ ET
154
+
155
+
156
+ BT
157
+ 36.0 149.38 Td
158
+ /F1.0 10 Tf
159
+ <616c67756d6120636f697361> Tj
160
+ ET
161
+
162
+
163
+ BT
164
+ 36.0 128.81 Td
165
+ /F1.0 10 Tf
166
+ <494e464f524d4182cd45532041444943494f4e41495320444520494e5445524553534520444f20434f4e5452494255494e5445> Tj
167
+ ET
168
+
169
+
170
+ BT
171
+ 36.0 113.24 Td
172
+ /F1.0 10 Tf
173
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
174
+ ET
175
+
176
+
177
+ BT
178
+ 36.0 102.67 Td
179
+ /F1.0 10 Tf
180
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
181
+ ET
182
+
183
+
184
+ BT
185
+ 36.0 92.1 Td
186
+ /F1.0 10 Tf
187
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
188
+ ET
189
+
190
+
191
+ BT
192
+ 36.0 81.53 Td
193
+ /F1.0 10 Tf
194
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
195
+ ET
196
+
197
+ Q
198
+
199
+ endstream
200
+ endobj
201
+ 5 0 obj
202
+ << /Type /Page
203
+ /Parent 3 0 R
204
+ /MediaBox [0 0 595.28 841.89]
205
+ /CropBox [0 0 595.28 841.89]
206
+ /BleedBox [0 0 595.28 841.89]
207
+ /TrimBox [0 0 595.28 841.89]
208
+ /ArtBox [0 0 595.28 841.89]
209
+ /Contents 4 0 R
210
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
211
+ /Font << /F2.0 6 0 R
212
+ /F1.0 7 0 R
213
+ >>
214
+ >>
215
+ >>
216
+ endobj
217
+ 6 0 obj
218
+ << /Type /Font
219
+ /BaseFont /3d35e3+Tinos-Bold
220
+ /Subtype /TrueType
221
+ /FontDescriptor 17 0 R
222
+ /FirstChar 32
223
+ /LastChar 255
224
+ /Widths 19 0 R
225
+ /ToUnicode 18 0 R
226
+ >>
227
+ endobj
228
+ 7 0 obj
229
+ << /Type /Font
230
+ /BaseFont /e5c152+Tinos-Regular
231
+ /Subtype /TrueType
232
+ /FontDescriptor 21 0 R
233
+ /FirstChar 32
234
+ /LastChar 255
235
+ /Widths 23 0 R
236
+ /ToUnicode 22 0 R
237
+ >>
238
+ endobj
239
+ 8 0 obj
240
+ << /Length 16051
241
+ >>
242
+ stream
243
+ q
244
+ /DeviceRGB CS
245
+ 0.62745 0.62745 0.62745 SCN
246
+
247
+ BT
248
+ 36.0 629.07 Td
249
+ /F1.0 10 Tf
250
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
251
+ ET
252
+
253
+
254
+ BT
255
+ 36.0 618.5 Td
256
+ /F1.0 10 Tf
257
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
258
+ ET
259
+
260
+
261
+ BT
262
+ 36.0 607.93 Td
263
+ /F1.0 10 Tf
264
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
265
+ ET
266
+
267
+
268
+ BT
269
+ 36.0 597.36 Td
270
+ /F1.0 10 Tf
271
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
272
+ ET
273
+
274
+
275
+ BT
276
+ 36.0 586.79 Td
277
+ /F1.0 10 Tf
278
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
279
+ ET
280
+
281
+
282
+ BT
283
+ 36.0 576.22 Td
284
+ /F1.0 10 Tf
285
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
286
+ ET
287
+
288
+
289
+ BT
290
+ 36.0 565.65 Td
291
+ /F1.0 10 Tf
292
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
293
+ ET
294
+
295
+
296
+ BT
297
+ 36.0 555.08 Td
298
+ /F1.0 10 Tf
299
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
300
+ ET
301
+
302
+
303
+ BT
304
+ 36.0 544.51 Td
305
+ /F1.0 10 Tf
306
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
307
+ ET
308
+
309
+
310
+ BT
311
+ 36.0 533.94 Td
312
+ /F1.0 10 Tf
313
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
314
+ ET
315
+
316
+
317
+ BT
318
+ 36.0 523.37 Td
319
+ /F1.0 10 Tf
320
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
321
+ ET
322
+
323
+
324
+ BT
325
+ 36.0 512.8 Td
326
+ /F1.0 10 Tf
327
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
328
+ ET
329
+
330
+
331
+ BT
332
+ 36.0 502.23 Td
333
+ /F1.0 10 Tf
334
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
335
+ ET
336
+
337
+
338
+ BT
339
+ 36.0 491.66 Td
340
+ /F1.0 10 Tf
341
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
342
+ ET
343
+
344
+
345
+ BT
346
+ 36.0 481.09 Td
347
+ /F1.0 10 Tf
348
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
349
+ ET
350
+
351
+
352
+ BT
353
+ 36.0 470.52 Td
354
+ /F1.0 10 Tf
355
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
356
+ ET
357
+
358
+
359
+ BT
360
+ 36.0 459.95 Td
361
+ /F1.0 10 Tf
362
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
363
+ ET
364
+
365
+
366
+ BT
367
+ 36.0 449.38 Td
368
+ /F1.0 10 Tf
369
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
370
+ ET
371
+
372
+
373
+ BT
374
+ 36.0 438.81 Td
375
+ /F1.0 10 Tf
376
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
377
+ ET
378
+
379
+
380
+ BT
381
+ 36.0 428.24 Td
382
+ /F1.0 10 Tf
383
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
384
+ ET
385
+
386
+
387
+ BT
388
+ 36.0 417.67 Td
389
+ /F1.0 10 Tf
390
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
391
+ ET
392
+
393
+
394
+ BT
395
+ 36.0 407.1 Td
396
+ /F1.0 10 Tf
397
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
398
+ ET
399
+
400
+
401
+ BT
402
+ 36.0 396.53 Td
403
+ /F1.0 10 Tf
404
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
405
+ ET
406
+
407
+
408
+ BT
409
+ 36.0 385.96 Td
410
+ /F1.0 10 Tf
411
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
412
+ ET
413
+
414
+
415
+ BT
416
+ 36.0 375.39 Td
417
+ /F1.0 10 Tf
418
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
419
+ ET
420
+
421
+
422
+ BT
423
+ 36.0 364.82 Td
424
+ /F1.0 10 Tf
425
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
426
+ ET
427
+
428
+
429
+ BT
430
+ 36.0 354.25 Td
431
+ /F1.0 10 Tf
432
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
433
+ ET
434
+
435
+
436
+ BT
437
+ 36.0 343.68 Td
438
+ /F1.0 10 Tf
439
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
440
+ ET
441
+
442
+
443
+ BT
444
+ 36.0 333.11 Td
445
+ /F1.0 10 Tf
446
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
447
+ ET
448
+
449
+
450
+ BT
451
+ 36.0 322.54 Td
452
+ /F1.0 10 Tf
453
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
454
+ ET
455
+
456
+
457
+ BT
458
+ 36.0 311.97 Td
459
+ /F1.0 10 Tf
460
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
461
+ ET
462
+
463
+
464
+ BT
465
+ 36.0 301.4 Td
466
+ /F1.0 10 Tf
467
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
468
+ ET
469
+
470
+
471
+ BT
472
+ 36.0 290.83 Td
473
+ /F1.0 10 Tf
474
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
475
+ ET
476
+
477
+
478
+ BT
479
+ 36.0 280.26 Td
480
+ /F1.0 10 Tf
481
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
482
+ ET
483
+
484
+
485
+ BT
486
+ 36.0 269.69 Td
487
+ /F1.0 10 Tf
488
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
489
+ ET
490
+
491
+
492
+ BT
493
+ 36.0 259.12 Td
494
+ /F1.0 10 Tf
495
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
496
+ ET
497
+
498
+
499
+ BT
500
+ 36.0 248.55 Td
501
+ /F1.0 10 Tf
502
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
503
+ ET
504
+
505
+
506
+ BT
507
+ 36.0 237.98 Td
508
+ /F1.0 10 Tf
509
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
510
+ ET
511
+
512
+
513
+ BT
514
+ 36.0 227.41 Td
515
+ /F1.0 10 Tf
516
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
517
+ ET
518
+
519
+
520
+ BT
521
+ 36.0 216.84 Td
522
+ /F1.0 10 Tf
523
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
524
+ ET
525
+
526
+
527
+ BT
528
+ 36.0 206.27 Td
529
+ /F1.0 10 Tf
530
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
531
+ ET
532
+
533
+
534
+ BT
535
+ 36.0 195.7 Td
536
+ /F1.0 10 Tf
537
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
538
+ ET
539
+
540
+
541
+ BT
542
+ 36.0 185.13 Td
543
+ /F1.0 10 Tf
544
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
545
+ ET
546
+
547
+
548
+ BT
549
+ 36.0 174.56 Td
550
+ /F1.0 10 Tf
551
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
552
+ ET
553
+
554
+
555
+ BT
556
+ 36.0 163.99 Td
557
+ /F1.0 10 Tf
558
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
559
+ ET
560
+
561
+
562
+ BT
563
+ 36.0 153.42 Td
564
+ /F1.0 10 Tf
565
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
566
+ ET
567
+
568
+
569
+ BT
570
+ 36.0 142.85 Td
571
+ /F1.0 10 Tf
572
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
573
+ ET
574
+
575
+
576
+ BT
577
+ 36.0 132.28 Td
578
+ /F1.0 10 Tf
579
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
580
+ ET
581
+
582
+
583
+ BT
584
+ 36.0 121.71 Td
585
+ /F1.0 10 Tf
586
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
587
+ ET
588
+
589
+
590
+ BT
591
+ 36.0 111.14 Td
592
+ /F1.0 10 Tf
593
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
594
+ ET
595
+
596
+
597
+ BT
598
+ 36.0 100.57 Td
599
+ /F1.0 10 Tf
600
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
601
+ ET
602
+
603
+
604
+ BT
605
+ 36.0 90.0 Td
606
+ /F1.0 10 Tf
607
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
608
+ ET
609
+
610
+
611
+ BT
612
+ 36.0 79.43 Td
613
+ /F1.0 10 Tf
614
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
615
+ ET
616
+
617
+
618
+ BT
619
+ 36.0 68.86 Td
620
+ /F1.0 10 Tf
621
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
622
+ ET
623
+
624
+
625
+ BT
626
+ 36.0 58.29 Td
627
+ /F1.0 10 Tf
628
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
629
+ ET
630
+
631
+
632
+ BT
633
+ 36.0 47.72 Td
634
+ /F1.0 10 Tf
635
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
636
+ ET
637
+
638
+ Q
639
+
640
+ endstream
641
+ endobj
642
+ 9 0 obj
643
+ << /Type /Page
644
+ /Parent 3 0 R
645
+ /MediaBox [0 0 595.28 841.89]
646
+ /CropBox [0 0 595.28 841.89]
647
+ /BleedBox [0 0 595.28 841.89]
648
+ /TrimBox [0 0 595.28 841.89]
649
+ /ArtBox [0 0 595.28 841.89]
650
+ /Contents 8 0 R
651
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
652
+ /Font << /F1.0 7 0 R
653
+ >>
654
+ >>
655
+ >>
656
+ endobj
657
+ 10 0 obj
658
+ << /Length 16051
659
+ >>
660
+ stream
661
+ q
662
+ /DeviceRGB CS
663
+ 0.62745 0.62745 0.62745 SCN
664
+
665
+ BT
666
+ 36.0 629.07 Td
667
+ /F1.0 10 Tf
668
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
669
+ ET
670
+
671
+
672
+ BT
673
+ 36.0 618.5 Td
674
+ /F1.0 10 Tf
675
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
676
+ ET
677
+
678
+
679
+ BT
680
+ 36.0 607.93 Td
681
+ /F1.0 10 Tf
682
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
683
+ ET
684
+
685
+
686
+ BT
687
+ 36.0 597.36 Td
688
+ /F1.0 10 Tf
689
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
690
+ ET
691
+
692
+
693
+ BT
694
+ 36.0 586.79 Td
695
+ /F1.0 10 Tf
696
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
697
+ ET
698
+
699
+
700
+ BT
701
+ 36.0 576.22 Td
702
+ /F1.0 10 Tf
703
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
704
+ ET
705
+
706
+
707
+ BT
708
+ 36.0 565.65 Td
709
+ /F1.0 10 Tf
710
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
711
+ ET
712
+
713
+
714
+ BT
715
+ 36.0 555.08 Td
716
+ /F1.0 10 Tf
717
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
718
+ ET
719
+
720
+
721
+ BT
722
+ 36.0 544.51 Td
723
+ /F1.0 10 Tf
724
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
725
+ ET
726
+
727
+
728
+ BT
729
+ 36.0 533.94 Td
730
+ /F1.0 10 Tf
731
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
732
+ ET
733
+
734
+
735
+ BT
736
+ 36.0 523.37 Td
737
+ /F1.0 10 Tf
738
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
739
+ ET
740
+
741
+
742
+ BT
743
+ 36.0 512.8 Td
744
+ /F1.0 10 Tf
745
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
746
+ ET
747
+
748
+
749
+ BT
750
+ 36.0 502.23 Td
751
+ /F1.0 10 Tf
752
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
753
+ ET
754
+
755
+
756
+ BT
757
+ 36.0 491.66 Td
758
+ /F1.0 10 Tf
759
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
760
+ ET
761
+
762
+
763
+ BT
764
+ 36.0 481.09 Td
765
+ /F1.0 10 Tf
766
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
767
+ ET
768
+
769
+
770
+ BT
771
+ 36.0 470.52 Td
772
+ /F1.0 10 Tf
773
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
774
+ ET
775
+
776
+
777
+ BT
778
+ 36.0 459.95 Td
779
+ /F1.0 10 Tf
780
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
781
+ ET
782
+
783
+
784
+ BT
785
+ 36.0 449.38 Td
786
+ /F1.0 10 Tf
787
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
788
+ ET
789
+
790
+
791
+ BT
792
+ 36.0 438.81 Td
793
+ /F1.0 10 Tf
794
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
795
+ ET
796
+
797
+
798
+ BT
799
+ 36.0 428.24 Td
800
+ /F1.0 10 Tf
801
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
802
+ ET
803
+
804
+
805
+ BT
806
+ 36.0 417.67 Td
807
+ /F1.0 10 Tf
808
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
809
+ ET
810
+
811
+
812
+ BT
813
+ 36.0 407.1 Td
814
+ /F1.0 10 Tf
815
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
816
+ ET
817
+
818
+
819
+ BT
820
+ 36.0 396.53 Td
821
+ /F1.0 10 Tf
822
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
823
+ ET
824
+
825
+
826
+ BT
827
+ 36.0 385.96 Td
828
+ /F1.0 10 Tf
829
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
830
+ ET
831
+
832
+
833
+ BT
834
+ 36.0 375.39 Td
835
+ /F1.0 10 Tf
836
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
837
+ ET
838
+
839
+
840
+ BT
841
+ 36.0 364.82 Td
842
+ /F1.0 10 Tf
843
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
844
+ ET
845
+
846
+
847
+ BT
848
+ 36.0 354.25 Td
849
+ /F1.0 10 Tf
850
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
851
+ ET
852
+
853
+
854
+ BT
855
+ 36.0 343.68 Td
856
+ /F1.0 10 Tf
857
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
858
+ ET
859
+
860
+
861
+ BT
862
+ 36.0 333.11 Td
863
+ /F1.0 10 Tf
864
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
865
+ ET
866
+
867
+
868
+ BT
869
+ 36.0 322.54 Td
870
+ /F1.0 10 Tf
871
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
872
+ ET
873
+
874
+
875
+ BT
876
+ 36.0 311.97 Td
877
+ /F1.0 10 Tf
878
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
879
+ ET
880
+
881
+
882
+ BT
883
+ 36.0 301.4 Td
884
+ /F1.0 10 Tf
885
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
886
+ ET
887
+
888
+
889
+ BT
890
+ 36.0 290.83 Td
891
+ /F1.0 10 Tf
892
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
893
+ ET
894
+
895
+
896
+ BT
897
+ 36.0 280.26 Td
898
+ /F1.0 10 Tf
899
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
900
+ ET
901
+
902
+
903
+ BT
904
+ 36.0 269.69 Td
905
+ /F1.0 10 Tf
906
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
907
+ ET
908
+
909
+
910
+ BT
911
+ 36.0 259.12 Td
912
+ /F1.0 10 Tf
913
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
914
+ ET
915
+
916
+
917
+ BT
918
+ 36.0 248.55 Td
919
+ /F1.0 10 Tf
920
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
921
+ ET
922
+
923
+
924
+ BT
925
+ 36.0 237.98 Td
926
+ /F1.0 10 Tf
927
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
928
+ ET
929
+
930
+
931
+ BT
932
+ 36.0 227.41 Td
933
+ /F1.0 10 Tf
934
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
935
+ ET
936
+
937
+
938
+ BT
939
+ 36.0 216.84 Td
940
+ /F1.0 10 Tf
941
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
942
+ ET
943
+
944
+
945
+ BT
946
+ 36.0 206.27 Td
947
+ /F1.0 10 Tf
948
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
949
+ ET
950
+
951
+
952
+ BT
953
+ 36.0 195.7 Td
954
+ /F1.0 10 Tf
955
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
956
+ ET
957
+
958
+
959
+ BT
960
+ 36.0 185.13 Td
961
+ /F1.0 10 Tf
962
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
963
+ ET
964
+
965
+
966
+ BT
967
+ 36.0 174.56 Td
968
+ /F1.0 10 Tf
969
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
970
+ ET
971
+
972
+
973
+ BT
974
+ 36.0 163.99 Td
975
+ /F1.0 10 Tf
976
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
977
+ ET
978
+
979
+
980
+ BT
981
+ 36.0 153.42 Td
982
+ /F1.0 10 Tf
983
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
984
+ ET
985
+
986
+
987
+ BT
988
+ 36.0 142.85 Td
989
+ /F1.0 10 Tf
990
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
991
+ ET
992
+
993
+
994
+ BT
995
+ 36.0 132.28 Td
996
+ /F1.0 10 Tf
997
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
998
+ ET
999
+
1000
+
1001
+ BT
1002
+ 36.0 121.71 Td
1003
+ /F1.0 10 Tf
1004
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1005
+ ET
1006
+
1007
+
1008
+ BT
1009
+ 36.0 111.14 Td
1010
+ /F1.0 10 Tf
1011
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1012
+ ET
1013
+
1014
+
1015
+ BT
1016
+ 36.0 100.57 Td
1017
+ /F1.0 10 Tf
1018
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1019
+ ET
1020
+
1021
+
1022
+ BT
1023
+ 36.0 90.0 Td
1024
+ /F1.0 10 Tf
1025
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1026
+ ET
1027
+
1028
+
1029
+ BT
1030
+ 36.0 79.43 Td
1031
+ /F1.0 10 Tf
1032
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1033
+ ET
1034
+
1035
+
1036
+ BT
1037
+ 36.0 68.86 Td
1038
+ /F1.0 10 Tf
1039
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1040
+ ET
1041
+
1042
+
1043
+ BT
1044
+ 36.0 58.29 Td
1045
+ /F1.0 10 Tf
1046
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1047
+ ET
1048
+
1049
+
1050
+ BT
1051
+ 36.0 47.72 Td
1052
+ /F1.0 10 Tf
1053
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1054
+ ET
1055
+
1056
+ Q
1057
+
1058
+ endstream
1059
+ endobj
1060
+ 11 0 obj
1061
+ << /Type /Page
1062
+ /Parent 3 0 R
1063
+ /MediaBox [0 0 595.28 841.89]
1064
+ /CropBox [0 0 595.28 841.89]
1065
+ /BleedBox [0 0 595.28 841.89]
1066
+ /TrimBox [0 0 595.28 841.89]
1067
+ /ArtBox [0 0 595.28 841.89]
1068
+ /Contents 10 0 R
1069
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
1070
+ /Font << /F1.0 7 0 R
1071
+ >>
1072
+ >>
1073
+ >>
1074
+ endobj
1075
+ 12 0 obj
1076
+ << /Length 16051
1077
+ >>
1078
+ stream
1079
+ q
1080
+ /DeviceRGB CS
1081
+ 0.62745 0.62745 0.62745 SCN
1082
+
1083
+ BT
1084
+ 36.0 629.07 Td
1085
+ /F1.0 10 Tf
1086
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1087
+ ET
1088
+
1089
+
1090
+ BT
1091
+ 36.0 618.5 Td
1092
+ /F1.0 10 Tf
1093
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1094
+ ET
1095
+
1096
+
1097
+ BT
1098
+ 36.0 607.93 Td
1099
+ /F1.0 10 Tf
1100
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1101
+ ET
1102
+
1103
+
1104
+ BT
1105
+ 36.0 597.36 Td
1106
+ /F1.0 10 Tf
1107
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1108
+ ET
1109
+
1110
+
1111
+ BT
1112
+ 36.0 586.79 Td
1113
+ /F1.0 10 Tf
1114
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1115
+ ET
1116
+
1117
+
1118
+ BT
1119
+ 36.0 576.22 Td
1120
+ /F1.0 10 Tf
1121
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1122
+ ET
1123
+
1124
+
1125
+ BT
1126
+ 36.0 565.65 Td
1127
+ /F1.0 10 Tf
1128
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1129
+ ET
1130
+
1131
+
1132
+ BT
1133
+ 36.0 555.08 Td
1134
+ /F1.0 10 Tf
1135
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1136
+ ET
1137
+
1138
+
1139
+ BT
1140
+ 36.0 544.51 Td
1141
+ /F1.0 10 Tf
1142
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1143
+ ET
1144
+
1145
+
1146
+ BT
1147
+ 36.0 533.94 Td
1148
+ /F1.0 10 Tf
1149
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1150
+ ET
1151
+
1152
+
1153
+ BT
1154
+ 36.0 523.37 Td
1155
+ /F1.0 10 Tf
1156
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1157
+ ET
1158
+
1159
+
1160
+ BT
1161
+ 36.0 512.8 Td
1162
+ /F1.0 10 Tf
1163
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1164
+ ET
1165
+
1166
+
1167
+ BT
1168
+ 36.0 502.23 Td
1169
+ /F1.0 10 Tf
1170
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1171
+ ET
1172
+
1173
+
1174
+ BT
1175
+ 36.0 491.66 Td
1176
+ /F1.0 10 Tf
1177
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1178
+ ET
1179
+
1180
+
1181
+ BT
1182
+ 36.0 481.09 Td
1183
+ /F1.0 10 Tf
1184
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1185
+ ET
1186
+
1187
+
1188
+ BT
1189
+ 36.0 470.52 Td
1190
+ /F1.0 10 Tf
1191
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1192
+ ET
1193
+
1194
+
1195
+ BT
1196
+ 36.0 459.95 Td
1197
+ /F1.0 10 Tf
1198
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1199
+ ET
1200
+
1201
+
1202
+ BT
1203
+ 36.0 449.38 Td
1204
+ /F1.0 10 Tf
1205
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1206
+ ET
1207
+
1208
+
1209
+ BT
1210
+ 36.0 438.81 Td
1211
+ /F1.0 10 Tf
1212
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1213
+ ET
1214
+
1215
+
1216
+ BT
1217
+ 36.0 428.24 Td
1218
+ /F1.0 10 Tf
1219
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1220
+ ET
1221
+
1222
+
1223
+ BT
1224
+ 36.0 417.67 Td
1225
+ /F1.0 10 Tf
1226
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1227
+ ET
1228
+
1229
+
1230
+ BT
1231
+ 36.0 407.1 Td
1232
+ /F1.0 10 Tf
1233
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1234
+ ET
1235
+
1236
+
1237
+ BT
1238
+ 36.0 396.53 Td
1239
+ /F1.0 10 Tf
1240
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1241
+ ET
1242
+
1243
+
1244
+ BT
1245
+ 36.0 385.96 Td
1246
+ /F1.0 10 Tf
1247
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1248
+ ET
1249
+
1250
+
1251
+ BT
1252
+ 36.0 375.39 Td
1253
+ /F1.0 10 Tf
1254
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1255
+ ET
1256
+
1257
+
1258
+ BT
1259
+ 36.0 364.82 Td
1260
+ /F1.0 10 Tf
1261
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1262
+ ET
1263
+
1264
+
1265
+ BT
1266
+ 36.0 354.25 Td
1267
+ /F1.0 10 Tf
1268
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1269
+ ET
1270
+
1271
+
1272
+ BT
1273
+ 36.0 343.68 Td
1274
+ /F1.0 10 Tf
1275
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1276
+ ET
1277
+
1278
+
1279
+ BT
1280
+ 36.0 333.11 Td
1281
+ /F1.0 10 Tf
1282
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1283
+ ET
1284
+
1285
+
1286
+ BT
1287
+ 36.0 322.54 Td
1288
+ /F1.0 10 Tf
1289
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1290
+ ET
1291
+
1292
+
1293
+ BT
1294
+ 36.0 311.97 Td
1295
+ /F1.0 10 Tf
1296
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1297
+ ET
1298
+
1299
+
1300
+ BT
1301
+ 36.0 301.4 Td
1302
+ /F1.0 10 Tf
1303
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1304
+ ET
1305
+
1306
+
1307
+ BT
1308
+ 36.0 290.83 Td
1309
+ /F1.0 10 Tf
1310
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1311
+ ET
1312
+
1313
+
1314
+ BT
1315
+ 36.0 280.26 Td
1316
+ /F1.0 10 Tf
1317
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1318
+ ET
1319
+
1320
+
1321
+ BT
1322
+ 36.0 269.69 Td
1323
+ /F1.0 10 Tf
1324
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1325
+ ET
1326
+
1327
+
1328
+ BT
1329
+ 36.0 259.12 Td
1330
+ /F1.0 10 Tf
1331
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1332
+ ET
1333
+
1334
+
1335
+ BT
1336
+ 36.0 248.55 Td
1337
+ /F1.0 10 Tf
1338
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1339
+ ET
1340
+
1341
+
1342
+ BT
1343
+ 36.0 237.98 Td
1344
+ /F1.0 10 Tf
1345
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1346
+ ET
1347
+
1348
+
1349
+ BT
1350
+ 36.0 227.41 Td
1351
+ /F1.0 10 Tf
1352
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1353
+ ET
1354
+
1355
+
1356
+ BT
1357
+ 36.0 216.84 Td
1358
+ /F1.0 10 Tf
1359
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1360
+ ET
1361
+
1362
+
1363
+ BT
1364
+ 36.0 206.27 Td
1365
+ /F1.0 10 Tf
1366
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1367
+ ET
1368
+
1369
+
1370
+ BT
1371
+ 36.0 195.7 Td
1372
+ /F1.0 10 Tf
1373
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1374
+ ET
1375
+
1376
+
1377
+ BT
1378
+ 36.0 185.13 Td
1379
+ /F1.0 10 Tf
1380
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1381
+ ET
1382
+
1383
+
1384
+ BT
1385
+ 36.0 174.56 Td
1386
+ /F1.0 10 Tf
1387
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1388
+ ET
1389
+
1390
+
1391
+ BT
1392
+ 36.0 163.99 Td
1393
+ /F1.0 10 Tf
1394
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1395
+ ET
1396
+
1397
+
1398
+ BT
1399
+ 36.0 153.42 Td
1400
+ /F1.0 10 Tf
1401
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1402
+ ET
1403
+
1404
+
1405
+ BT
1406
+ 36.0 142.85 Td
1407
+ /F1.0 10 Tf
1408
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1409
+ ET
1410
+
1411
+
1412
+ BT
1413
+ 36.0 132.28 Td
1414
+ /F1.0 10 Tf
1415
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1416
+ ET
1417
+
1418
+
1419
+ BT
1420
+ 36.0 121.71 Td
1421
+ /F1.0 10 Tf
1422
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1423
+ ET
1424
+
1425
+
1426
+ BT
1427
+ 36.0 111.14 Td
1428
+ /F1.0 10 Tf
1429
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1430
+ ET
1431
+
1432
+
1433
+ BT
1434
+ 36.0 100.57 Td
1435
+ /F1.0 10 Tf
1436
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1437
+ ET
1438
+
1439
+
1440
+ BT
1441
+ 36.0 90.0 Td
1442
+ /F1.0 10 Tf
1443
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1444
+ ET
1445
+
1446
+
1447
+ BT
1448
+ 36.0 79.43 Td
1449
+ /F1.0 10 Tf
1450
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1451
+ ET
1452
+
1453
+
1454
+ BT
1455
+ 36.0 68.86 Td
1456
+ /F1.0 10 Tf
1457
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1458
+ ET
1459
+
1460
+
1461
+ BT
1462
+ 36.0 58.29 Td
1463
+ /F1.0 10 Tf
1464
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1465
+ ET
1466
+
1467
+
1468
+ BT
1469
+ 36.0 47.72 Td
1470
+ /F1.0 10 Tf
1471
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1472
+ ET
1473
+
1474
+ Q
1475
+
1476
+ endstream
1477
+ endobj
1478
+ 13 0 obj
1479
+ << /Type /Page
1480
+ /Parent 3 0 R
1481
+ /MediaBox [0 0 595.28 841.89]
1482
+ /CropBox [0 0 595.28 841.89]
1483
+ /BleedBox [0 0 595.28 841.89]
1484
+ /TrimBox [0 0 595.28 841.89]
1485
+ /ArtBox [0 0 595.28 841.89]
1486
+ /Contents 12 0 R
1487
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
1488
+ /Font << /F1.0 7 0 R
1489
+ >>
1490
+ >>
1491
+ >>
1492
+ endobj
1493
+ 14 0 obj
1494
+ << /Length 11195
1495
+ >>
1496
+ stream
1497
+ q
1498
+ /DeviceRGB CS
1499
+ 0.62745 0.62745 0.62745 SCN
1500
+
1501
+ BT
1502
+ 36.0 629.07 Td
1503
+ /F1.0 10 Tf
1504
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1505
+ ET
1506
+
1507
+
1508
+ BT
1509
+ 36.0 618.5 Td
1510
+ /F1.0 10 Tf
1511
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1512
+ ET
1513
+
1514
+
1515
+ BT
1516
+ 36.0 607.93 Td
1517
+ /F1.0 10 Tf
1518
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1519
+ ET
1520
+
1521
+
1522
+ BT
1523
+ 36.0 597.36 Td
1524
+ /F1.0 10 Tf
1525
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1526
+ ET
1527
+
1528
+
1529
+ BT
1530
+ 36.0 586.79 Td
1531
+ /F1.0 10 Tf
1532
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1533
+ ET
1534
+
1535
+
1536
+ BT
1537
+ 36.0 576.22 Td
1538
+ /F1.0 10 Tf
1539
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1540
+ ET
1541
+
1542
+
1543
+ BT
1544
+ 36.0 565.65 Td
1545
+ /F1.0 10 Tf
1546
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1547
+ ET
1548
+
1549
+
1550
+ BT
1551
+ 36.0 555.08 Td
1552
+ /F1.0 10 Tf
1553
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1554
+ ET
1555
+
1556
+
1557
+ BT
1558
+ 36.0 544.51 Td
1559
+ /F1.0 10 Tf
1560
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1561
+ ET
1562
+
1563
+
1564
+ BT
1565
+ 36.0 533.94 Td
1566
+ /F1.0 10 Tf
1567
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1568
+ ET
1569
+
1570
+
1571
+ BT
1572
+ 36.0 523.37 Td
1573
+ /F1.0 10 Tf
1574
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1575
+ ET
1576
+
1577
+
1578
+ BT
1579
+ 36.0 512.8 Td
1580
+ /F1.0 10 Tf
1581
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1582
+ ET
1583
+
1584
+
1585
+ BT
1586
+ 36.0 502.23 Td
1587
+ /F1.0 10 Tf
1588
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1589
+ ET
1590
+
1591
+
1592
+ BT
1593
+ 36.0 491.66 Td
1594
+ /F1.0 10 Tf
1595
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1596
+ ET
1597
+
1598
+
1599
+ BT
1600
+ 36.0 481.09 Td
1601
+ /F1.0 10 Tf
1602
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1603
+ ET
1604
+
1605
+
1606
+ BT
1607
+ 36.0 470.52 Td
1608
+ /F1.0 10 Tf
1609
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1610
+ ET
1611
+
1612
+
1613
+ BT
1614
+ 36.0 459.95 Td
1615
+ /F1.0 10 Tf
1616
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1617
+ ET
1618
+
1619
+
1620
+ BT
1621
+ 36.0 449.38 Td
1622
+ /F1.0 10 Tf
1623
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1624
+ ET
1625
+
1626
+
1627
+ BT
1628
+ 36.0 438.81 Td
1629
+ /F1.0 10 Tf
1630
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1631
+ ET
1632
+
1633
+
1634
+ BT
1635
+ 36.0 428.24 Td
1636
+ /F1.0 10 Tf
1637
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1638
+ ET
1639
+
1640
+
1641
+ BT
1642
+ 36.0 417.67 Td
1643
+ /F1.0 10 Tf
1644
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1645
+ ET
1646
+
1647
+
1648
+ BT
1649
+ 36.0 407.1 Td
1650
+ /F1.0 10 Tf
1651
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1652
+ ET
1653
+
1654
+
1655
+ BT
1656
+ 36.0 396.53 Td
1657
+ /F1.0 10 Tf
1658
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1659
+ ET
1660
+
1661
+
1662
+ BT
1663
+ 36.0 385.96 Td
1664
+ /F1.0 10 Tf
1665
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1666
+ ET
1667
+
1668
+
1669
+ BT
1670
+ 36.0 375.39 Td
1671
+ /F1.0 10 Tf
1672
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1673
+ ET
1674
+
1675
+
1676
+ BT
1677
+ 36.0 364.82 Td
1678
+ /F1.0 10 Tf
1679
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1680
+ ET
1681
+
1682
+
1683
+ BT
1684
+ 36.0 354.25 Td
1685
+ /F1.0 10 Tf
1686
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1687
+ ET
1688
+
1689
+
1690
+ BT
1691
+ 36.0 343.68 Td
1692
+ /F1.0 10 Tf
1693
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1694
+ ET
1695
+
1696
+
1697
+ BT
1698
+ 36.0 333.11 Td
1699
+ /F1.0 10 Tf
1700
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1701
+ ET
1702
+
1703
+
1704
+ BT
1705
+ 36.0 322.54 Td
1706
+ /F1.0 10 Tf
1707
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1708
+ ET
1709
+
1710
+
1711
+ BT
1712
+ 36.0 311.97 Td
1713
+ /F1.0 10 Tf
1714
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1715
+ ET
1716
+
1717
+
1718
+ BT
1719
+ 36.0 301.4 Td
1720
+ /F1.0 10 Tf
1721
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1722
+ ET
1723
+
1724
+
1725
+ BT
1726
+ 36.0 290.83 Td
1727
+ /F1.0 10 Tf
1728
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1729
+ ET
1730
+
1731
+
1732
+ BT
1733
+ 36.0 280.26 Td
1734
+ /F1.0 10 Tf
1735
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1736
+ ET
1737
+
1738
+
1739
+ BT
1740
+ 36.0 269.69 Td
1741
+ /F1.0 10 Tf
1742
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1743
+ ET
1744
+
1745
+
1746
+ BT
1747
+ 36.0 259.12 Td
1748
+ /F1.0 10 Tf
1749
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1750
+ ET
1751
+
1752
+
1753
+ BT
1754
+ 36.0 248.55 Td
1755
+ /F1.0 10 Tf
1756
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1757
+ ET
1758
+
1759
+
1760
+ BT
1761
+ 36.0 237.98 Td
1762
+ /F1.0 10 Tf
1763
+ <616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d61> Tj
1764
+ ET
1765
+
1766
+
1767
+ BT
1768
+ 36.0 227.41 Td
1769
+ /F1.0 10 Tf
1770
+ <636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f69736120616c67756d6120636f697361> Tj
1771
+ ET
1772
+
1773
+ Q
1774
+
1775
+ endstream
1776
+ endobj
1777
+ 15 0 obj
1778
+ << /Type /Page
1779
+ /Parent 3 0 R
1780
+ /MediaBox [0 0 595.28 841.89]
1781
+ /CropBox [0 0 595.28 841.89]
1782
+ /BleedBox [0 0 595.28 841.89]
1783
+ /TrimBox [0 0 595.28 841.89]
1784
+ /ArtBox [0 0 595.28 841.89]
1785
+ /Contents 14 0 R
1786
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
1787
+ /Font << /F1.0 7 0 R
1788
+ >>
1789
+ >>
1790
+ >>
1791
+ endobj
1792
+ 16 0 obj
1793
+ << /Length1 7888
1794
+ /Length 4925
1795
+ /Filter [/FlateDecode]
1796
+ >>
1797
+ stream
1798
+ x��9
1799
+ �=����C"����lrP/i�Q�D�u�aC[k(����x=F'~GI��'���'�f�D�tQ(C��
1800
+ ��0� �����7�nS��&-�X��z
1801
+ vuvl���ֺa}�-�M����Zo��ի�V�޼��zy�{Yy��Ғ�E�B�l˳H��,SFz�Ѡ׉B��aد�Ŋ%Q�j���L�����j �)E�NW�65q�є���P�Ck^��~�7���DIY����]hT�)��$�p�R�79��ú�d�t� ��V�k�;c�0鈓���a �� &3L���#��x
1802
+ ��P����-w��&��Q�^u��pZfy���0�[�9�a���=S��C�N���H�Nm|c����O���
1803
+ iB������b#�3#I���R�[:�1MW�ܯ���"��6ʲ�,@��e��p���R�q^�Es����K�Y4k��6%&q$��d���(��(�*�ar��?���c�Frx�+��A��H�7�����M3"a
1804
+ �P#��VG�<�7e� �����5htc�fin?�_�pcR&K�<
1805
+ 1D���o���8��D�T���UJ0�MjhK�@c�����YZ54�H30��449�!g��� 4���i̩M3Ct\�@�iC'1_�X�+Au@
1806
+ ����,́l����M
1807
+ �T���I/���I�;-ѥ~�3���BC��\D���
1808
+ �K�*0*#2Da����4��8��:N�x��������$MJ.T��ҕ�7�K�xg�uDKK��9��I`�bV�}h� ӵ�W�Y����Cl����C�����ܥ��D���e�>ͤ�����t�)5ъ4}~�h+*�?tĤ7�+Ct�Ĥߔ�`?� �"�($ZZ��p-�F/�d8��o ���p5}��"�!|�렋����M���~�:H�6�SA<n��)���2�3A-�ʨ�De�-�7Q�.���ޟ› ��h��ȼ}u�&<w
1809
+ O�0��\E
1810
+ p�B7��0�1
1811
+ ќ�u�����h|�]��7��N,�,����� �.;����A���W���.�,����O2����l��(a'5G��I�n!��.���3�"�ޠw�)���6R�B�J h�� �"-2`���l^����sHO��d����ó3��|
1812
+ lybo(/7;�7�����ۆ[�B� l�.K��Z<��
1813
+ �r<�9IP
1814
+ (9�H@-jg�71�3��i b8�������_�?�L[`
1815
+ k�5l�j֋ַ��f1���3��l�•�Ƅ�: �=[I�`o����Ɏ�Z�f�A��X�RJ���^��ĺ����[�е޷ �~�P�[Q|�9��g�l��k��ߋ��b�ziFc��� j�9_�w�@�E1��K��f�hSZC l�Hi�&Z�Kqb)�_��K�w)�-E�Ҕ�){<�Z�{R�k�U=�����)`Q���*)-aQ�T�R�Q�hP��3S�O�}%�h�G�6Ŏ�u��;��)EC�&���z.�җ�9��+|��/��?\teOQq���qq9��&]�:v�g�9�'�Bz��m����"=ZC&�9
1816
+ q�
1817
+ ��K$ ����:/��2�Kt����7� P��jbj�3�)�g�)�3eӕ/@�I�f)�O��N*�I^�_�ەd��ƻ�j���r �2r�BY�C�C��r��'�0�y"{�&�3���ݒ�{����|����r�Ǜ�.��ԅ��=�V�h��W�ޫ���=�牏��D�tw�>��,��-�4�2�fs� ��f�g���,o�Ԕ����cFNaS�^�`���Zy���u�n�@�|p�-,�&-X^���x3��;�T�e��3\p�h�[�ν�̭?��q��6��!9�p�7� 90�m��P�$淑G��
1818
+ ?��9;���#��Q���7�2�9s�
1819
+ փ
1820
+ 4<J�Y�+ ӳet���(���E�-'j%x�6@�R���U>��M���Jk�%)]��5�w��̢1�K?��M�(�F�a��!ݛinIb��p�0������G����������q
1821
+ �`� {���3D�3����
1822
+ endstream
1823
+ endobj
1824
+ 17 0 obj
1825
+ << /Type /FontDescriptor
1826
+ /FontName /3d35e3+Tinos-Bold
1827
+ /FontFile2 16 0 R
1828
+ /FontBBox [-543 -303 1344 1007]
1829
+ /Flags 6
1830
+ /StemV 0
1831
+ /ItalicAngle 0
1832
+ /Ascent 677
1833
+ /Descent -215
1834
+ /CapHeight 1341
1835
+ /XHeight 940
1836
+ >>
1837
+ endobj
1838
+ 18 0 obj
1839
+ << /Length 1278
1840
+ /Filter [/FlateDecode]
1841
+ >>
1842
+ stream
1843
+ x�e��n�F�ὮB�tHs&�@�n��u{stԒ + �}���ik��/��y�_�!}������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n?�[i(�JKiU:J��Sz��2���Qe�L*�E�J��̔Ye�,*+eU�(��N�U�-у�k�5x������5��F^���k�y
1844
+ ���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x� oS��7+[ƛețךyޢoV��浖 -㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x e#��e���_y+�h܊7k�:��/����Z�5�dU��l�uz5n��[��eB��&Si|y�(�%q& %+S%�*A����BijPU�6\�h,�(�+L���,��4G�5�<���cD� [˧��*t� [
1845
+ endstream
1846
+ endobj
1847
+ 19 0 obj
1848
+ [250 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 500 556 777 777 443 777 777 777 777 777 777 777 777 777 777 777 777 443 389 777 777 500 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 443 777 777 777 777 777 777 777 777 777 777 777 777 777 500 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777]
1849
+ endobj
1850
+ 20 0 obj
1851
+ << /Length1 12632
1852
+ /Length 7714
1853
+ /Filter [/FlateDecode]
1854
+ >>
1855
+ stream
1856
+ x��z xTյ�Z眙L23�9�yfs�!�� ��r�<!<�p3 dBH����
1857
+
1858
+ Oe8"5I�Y��j�4E��ɢO�8p8"�I�r�R�D�4�+Sx�ț���Y�@�垐����X_�b=
1859
+ ���}��
1860
+ �,�ʆ��?:�_(9O��B�
1861
+ ����-����eS�v����$58�9D+�4l )�G�1�dAb1S�PS�Y��a^\�B'dVL�ip��P F4���s�!"4@���'0�ޑ�L
1862
+ <�B�H�׎�������xAqe��I��ü���
1863
+
1864
+
1865
+ ��萼��MҖ�/�Z�/��᪮��2T��|UoU}P�i���
1866
+ �����T�\�˕3|�r�Tw�jg��o��Po��� X�~��F
1867
+ (��3B5�%)�.�3��uttzك^/�w����\������� �
1868
+ Al���*8(|H��;@y)Ho�I�c̱��׫���fc�v����}t�`T��{G��~�?9�����p�� ��J��E���+�6A�'k�i���}p��1�0T,�����$�|�,A���.�»8ޠ�T|N�nx��~N�e�ť�k�n}����<
1869
+ ԏ'`�5�㛢ۅFa�j����6��aq���ۢ-���ZOM��+?F��C��<�A�M��(�:��k�F��.�j��@�@�� K��%� @�ZK/���t���S����U~�B�L�O��i��Q�\L5�ި�%%>ͬOS�!�(��$����P
1870
+ �.��Ϛ��x̌�͸׌�fl1c���Xh��f4�Q0����[�S �fЌ\Č�f�1c���4�l�|3Jf4�q�M"Xa�u�g��Ӹc�� ��u���(�{E����R��T��{a�_4��X�O��..���iq�E?ڔ/��w�Ѫ���G��72|/�������)|uI�/��!���JF�>���d�9���i0E��j���Lr�3��P�ɥҩt�A�Z^���٭�!���4Kc(�ԛ�=9ؕ��9�A9�r� �a�A�� $�
1871
+ v�y�ep�X��r�q�i���M��V4�-��I(��D��h<� �@�^��Y;&�����F_�#Cd��*��S���Ę?��,pqkF�T�՘'�V<I>\B�r�P�Z��*�N�֐[4<�xUc�7��K��zl�c���(�ѨGA��z��Y=���@[���z<?~L��B� �|FffrJƨ�걓�$� ���cD��L@�qǴ \ E���q|��\vLr�8w�[�yT
1872
+ �<kI���F�L���Lx�(=}�?���p�lJ��Lz�k4z��П�J�����k�v1Y��J�44洼��k��V��i(Ϥ�`:Fұ7K��9��-�X��ƺT���A<ܞq��HZLJ�zO�2��ׇGp�Ǯ������Ko%��,��/m`��1�T�ai�r~Z�ڔ���N��U`�p��(��(��%�L`�dfAɂC�`"���1��j��L��+NPZ�3�o�5]~=�-wB�D��%��ܥGǔuQ��r��r�+̑��N-�D���7��i�����Zv��c˫+aW�*�}�h�<�8��eV 0���w���߼��r\J�s0�J4��F�=N�2\���ї������D��>I�cN�%�Y`*�Յ�ѩwR:��͢Iԫ�d��K�ԙ,$;YH��!�`2JxF�v eI ���C˕,�+)�baR��^��c����w����.�o| �r�^L������C�Ҩ�p��/��Z�ȟ�E�R�㑻G^�G�������y� m�� f��YS5�3)?��4���/fa؇C><��A�w�%_lW�=�W���l)��D,��6�r~(*��.*��/��t6Mm1O���L��޿ȓ�l�������}w6/~�ɗy6���w���y�'C[W�[��U��z���Y�Vߵ��9o�/ǖl /Z� �W�vO��w��dU&�Wh��8_>gⴜ��Xu��ÄF�L�����&�؁�Ԋ+Y�e+��]Vl�"%�q؊oY���ڭ�Š.���#V|����l�|FV��a�<�AJF�<1�� ���<��#� 1�a&h�M�Ű��/1Ƿ�����Wa܄��g�(��u(�<Ӓ�����<�HĒw�#�e��r���y�;]��ƒ��o'i/��T� ^��GY�|P���j�ڑnR�ޠo q>�B �&P6lIǺt,O��t����tH�c�x8��cgnLG�����M�3�\ڞ��x:m����O��C,=��4�(VD��T�W�Qѿ_�~��R�y��X����gß�� Y���ϝ��PM�g�
1873
+ ��L�&����LA�����9-e�ʐ�"�S�!��9/��I�& �P�,����1�l�����LQ�.2����̠�@�@I ٴ{��9t�-�|��U�LRӶR������F�v�����UKZj��{a�=�˛ �W����>G���h_�"^x��z߮7=ѩ�j����N+��L\οN�8,�UZ��j�k ��Nc��y��o�d���q>��F;��{��eG�?c�F;��gleb�c|��T�=�x%AH����\~��5ѹy��޹������ѡ���g�gqE�>�}�M׳�h%����l(�Gs}>�Y��0c�����Q93��ɋ|Q0d�zST�,����)�(�C�Q,��)�
1874
+ 
1875
+ �����1��c���<ψOO$n�Jf�x�c ��s W�M)3)���M;��)Z�aZF�I=̤���ψ'���,��4{5�X!�`'ﳕ�x�eU�X���t��NJ�R�8���*��Ū��6זd�)��J<+�"�V~ӫϭ�,����w���
1876
+ �9,(o1~�-�LK�beO*�n�����)�bWƲ�ʇo���ߛ^QQjD��������&L����
1877
+ ����_G�(��5�iR�œE�am(c�1�!8V�NP�P|A��
1878
+ ��
1879
+ `j0�1r�`��Rͣ8d� +���7�J�#���Z�n�0��1��'(�@c�&�Ǫh��ޓ�0)5�0׺�I!)�@)��'��g�������gϮ���ۅ�E��g�\���~�� C���؏�_�r�K�;ɜ�3̘�w�6��`�i3�Z:��֮��>�318����Ll��+fb" ���[�EtW�fg��bwK�`�M�_�����y�kn~����� ~س�1�̢�+�-pM�5��d�>�S~��� wys��]on�ˋ���*[M�8iI��}��ߕ���dS�ͮJ���V���U!�ѪK�S���-�`bm���-��[�Hb�bɎ�W%�X;�K�q�g�t�a?�a�;�������������h�^(������}�Ȼ��#oiv1��M���Q��.U~��e��I�T~���0��;2�[�)�l� "�2�)x?.�gSeq�FGܹ:Q��r�?]��DW�#�AT�*X-��e��ZLV�G��<���"s�]X"���c��Xq�7X�Ί������/���ѿj���P��%A_h��V4[鲍_Z�OV<k��V��1+aע��UV,����1z�J)��*cxҊ�F{�E*�f(g��:ꌩ�w&ԑudO\!�q�OhCzp1�Av3k��ii\�l�/�zc�oCv���h>��{�xܘ��n�؁�(~��ʞ��gܿu�B�R��9���Mk7���[�$%���^�~dUr-�IX�=�j�
1880
+ �o�:i�#����}����<̂�x_�t�U��� ���$8� ������d��3�������r�}=\�E��T��u��gx�lo��[�q�M;���fj��n����&7Q�ڠn������%�f:bIP�0�Z^�W@�*�o#ʭ$I�2��$~���fh��du��S�V�f�E�MD3�p��X+`9��q�y���`�I��4�I��|Ҙ��[�[���i�B<���k�MWY��x�I�µ��I����~'�A�����r Ӡ�A���7��;m ���|�A�^�n!��fVf��x7�Ӥ�ʹ��,cV�������:
1881
+ |����"9eo� y[�m�+^ɲ6�k����Tl���T���:�$���Y����6����vdi�g;)���<��*���,_D���.6�ȓK���P@����M�d�bq���['�T,XJkP���΋ˌ��<=�n��Z��~���E7��G��Ss`.�#�T�������to I����]�/�)�������?�( �
1882
+ endstream
1883
+ endobj
1884
+ 21 0 obj
1885
+ << /Type /FontDescriptor
1886
+ /FontName /e5c152+Tinos-Regular
1887
+ /FontFile2 20 0 R
1888
+ /FontBBox [-543 -303 1278 981]
1889
+ /Flags 6
1890
+ /StemV 0
1891
+ /ItalicAngle 0
1892
+ /Ascent 693
1893
+ /Descent -215
1894
+ /CapHeight 1341
1895
+ /XHeight 940
1896
+ >>
1897
+ endobj
1898
+ 22 0 obj
1899
+ << /Length 1278
1900
+ /Filter [/FlateDecode]
1901
+ >>
1902
+ stream
1903
+ x�e��n�F�ὮB�tHs&�@�n��u{stԒ + �}���ik��/��y�_�!}������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n?�[i(�JKiU:J��Sz��2���Qe�L*�E�J��̔Ye�,*+eU�(��N�U�-у�k�5x������5��F^���k�y
1904
+ ���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x� oS��7+[ƛețךyޢoV��浖 -㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x e#��e���_y+�h܊7k�:��/����Z�5�dU��l�uz5n��[��eB��&Si|y�(�%q& %+S%�*A����BijPU�6\�h,�(�+L���,��4G�5�<���cD� [˧��*t� [
1905
+ endstream
1906
+ endobj
1907
+ 23 0 obj
1908
+ [250 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 722 666 666 722 610 556 777 777 333 777 777 777 889 722 722 777 777 666 556 610 722 777 777 777 777 777 777 777 777 777 777 777 443 777 443 777 777 777 500 777 277 777 777 277 777 777 500 777 777 777 389 777 500 777 777 777 777 777 777 777 777 777 777 777 777 666 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 722 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777 777]
1909
+ endobj
1910
+ xref
1911
+ 0 24
1912
+ 0000000000 65535 f
1913
+ 0000000015 00000 n
1914
+ 0000000109 00000 n
1915
+ 0000000158 00000 n
1916
+ 0000000242 00000 n
1917
+ 0000006369 00000 n
1918
+ 0000006677 00000 n
1919
+ 0000006842 00000 n
1920
+ 0000007010 00000 n
1921
+ 0000023114 00000 n
1922
+ 0000023410 00000 n
1923
+ 0000039515 00000 n
1924
+ 0000039813 00000 n
1925
+ 0000055918 00000 n
1926
+ 0000056216 00000 n
1927
+ 0000067465 00000 n
1928
+ 0000067763 00000 n
1929
+ 0000072778 00000 n
1930
+ 0000072989 00000 n
1931
+ 0000074343 00000 n
1932
+ 0000075257 00000 n
1933
+ 0000083062 00000 n
1934
+ 0000083275 00000 n
1935
+ 0000084629 00000 n
1936
+ trailer
1937
+ << /Size 24
1938
+ /Root 2 0 R
1939
+ /Info 1 0 R
1940
+ >>
1941
+ startxref
1942
+ 85543
1943
+ %%EOF