payday 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 93a7b9df8926467ff4ef1b74328bcb3ee3b5415f
4
+ data.tar.gz: 1b8798db48db996c6361f1710d79a5635ee5ca19
5
+ SHA512:
6
+ metadata.gz: 8ab5469683b247667df125a97f2b066c41f0058623976ec96c746bcf7d614cf16385a9244876c8d24b4e2e0605014c5d045a785cd89a48c8a9cab39e126755d3
7
+ data.tar.gz: eed2f8315b300d9483012de8e399187c75a74caf55617f401f9d20d3a83ee13cb4294a9aed6c10491e529826f4e47e64698eb1e6543aa1ff006c7f26ae86f41e
data/.gitignore CHANGED
@@ -4,4 +4,5 @@ doc/
4
4
  *.gem
5
5
  Gemfile.lock
6
6
  .bundle
7
- pkg/*
7
+ pkg/*
8
+ bin/
@@ -0,0 +1 @@
1
+ ruby-2.1.1
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
- ## 1.1.1
3
+ ## 1.1.2 (2014-05-03)
4
4
 
5
- * Added support for zh-CN locale (thanks [Martin91](https://github.com/Martin91)!
5
+ * Added NL locale (thanks [jedi4ever](https://github.com/jedi4ever)!).
6
+ * Updated Prawn to 1.0.
7
+ * Updated Prawn SVG to 0.15.0.0.
8
+ * Updated Money to 6.1.1.
9
+ * Updated i18n to 0.6.9.
10
+
11
+ ## 1.1.1 (2013-07-20)
12
+
13
+ * Added support for zh-CN locale (thanks [Martin91](https://github.com/Martin91)!).
data/Gemfile CHANGED
@@ -1,5 +1,3 @@
1
1
  source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
- gem "rake"
5
- gem "rspec", "~> 2.11.0"
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ ![Build Status](https://www.codeship.io/projects/94d9b760-b088-0131-bef4-5a9e112e295d/status)
2
+
1
3
  Payday!
2
4
  ===
3
5
  Payday is a library for rendering invoices. At present it supports rendering invoices to pdfs, but we're planning on adding support for other formats in the near future.
@@ -20,9 +22,9 @@ It's pretty easy to use Payday with the built in objects. We include the Invoice
20
22
  Example:
21
23
 
22
24
  invoice = Payday::Invoice.new(:invoice_number => 12)
23
- invoice.line_items << LineItem.new(:price => 20, :quantity => 5, :description => "Pants")
24
- invoice.line_items << LineItem.new(:price => 10, :quantity => 3, :description => "Shirts")
25
- invoice.line_items << LineItem.new(:price => 5, :quantity => 200, :description => "Hats")
25
+ invoice.line_items << Payday::LineItem.new(:price => 20, :quantity => 5, :description => "Pants")
26
+ invoice.line_items << Payday::LineItem.new(:price => 10, :quantity => 3, :description => "Shirts")
27
+ invoice.line_items << Payday::LineItem.new(:price => 5, :quantity => 200, :description => "Hats")
26
28
  invoice.render_pdf_to_file("/path/to_file.pdf")
27
29
 
28
30
  Documentation
@@ -55,9 +57,9 @@ Payday's Invoiceable module includes methods for rendering pdfs to disk and for
55
57
  render to string method to render a pdf directly to the browser like this:
56
58
 
57
59
  In config/initializers/mime_types.rb:
58
-
60
+
59
61
  Mime::Type.register 'application/pdf', :pdf
60
-
62
+
61
63
  In your controller:
62
64
 
63
65
  respond_to do |format|
@@ -72,12 +74,13 @@ Be sure to restart your server after you edit the mime_types initializer. The up
72
74
  I18n
73
75
  ===
74
76
  Payday uses the i18n gem to provide support for custom labels and internationalized applications. You can change the default labels by adding a YAML file in the `config/locales` directory of your Rails app. Here are the default labels you can customize:
75
-
77
+
76
78
  en:
77
79
  payday:
78
80
  status:
79
81
  paid: PAID
80
82
  overdue: OVERDUE
83
+ refunded: REFUNDED
81
84
  invoice:
82
85
  bill_to: Bill To
83
86
  ship_to: Ship To
@@ -92,7 +95,7 @@ Payday uses the i18n gem to provide support for custom labels and internationali
92
95
  unit_price: Unit Price
93
96
  quantity: Quantity
94
97
  amount: Amount
95
-
98
+
96
99
  If you translate the invoice to your own language, please send me a copy of your locale.yml file so that we can include it with
97
100
  the main Payday distribution and other Payday users can enjoy the fruits of your labor.
98
101
 
@@ -2,7 +2,7 @@ class CreatePaydayTables < ActiveRecord::Migration
2
2
  def self.up
3
3
  create_table :<%= options.invoice_name.pluralize.underscore.split("/").last %> do |t|
4
4
  # invoices will work without anything but bill_to, but there are quite a few options for the fields you can save, like ship_to
5
- # due_at, and paid_at
5
+ # due_at, refunded_at, and paid_at
6
6
  t.string :bill_to
7
7
 
8
8
  t.timestamps
@@ -6,11 +6,11 @@ require 'prawn'
6
6
  require 'prawn-svg'
7
7
  require 'money'
8
8
 
9
- require 'payday/version'
10
- require 'payday/config'
11
- require 'payday/i18n'
12
- require 'payday/line_itemable'
13
- require 'payday/line_item'
14
- require 'payday/pdf_renderer'
15
- require 'payday/invoiceable'
16
- require 'payday/invoice'
9
+ require_relative 'payday/version'
10
+ require_relative 'payday/config'
11
+ require_relative 'payday/i18n'
12
+ require_relative 'payday/line_itemable'
13
+ require_relative 'payday/line_item'
14
+ require_relative 'payday/pdf_renderer'
15
+ require_relative 'payday/invoiceable'
16
+ require_relative 'payday/invoice'
@@ -19,7 +19,8 @@ module Payday
19
19
  #
20
20
  # Primarily intended for use in our tests.
21
21
  def reset
22
- self.invoice_logo = File.join(File.dirname(__FILE__), "..", "..", "assets", "default_logo.png")
22
+ # TODO: Move into specs and make minimal configuration required (company name / details)
23
+ self.invoice_logo = File.join(File.dirname(__FILE__), "..", "..", "spec", "assets", "default_logo.png")
23
24
  self.company_name = "Awesome Corp"
24
25
  self.company_details = "awesomecorp@commondream.net"
25
26
  self.date_format = "%B %e, %Y"
@@ -1,2 +1,3 @@
1
1
  # Load everything in the local folder
2
- I18n.load_path.concat(Dir[File.join(File.dirname(__FILE__), "locale", "*.yml")])
2
+ I18n.enforce_available_locales = false
3
+ I18n.load_path.concat(Dir[File.join(File.dirname(__FILE__), "locale", "*.yml")])
@@ -5,7 +5,7 @@ module Payday
5
5
  include Payday::Invoiceable
6
6
 
7
7
  attr_accessor :invoice_number, :bill_to, :ship_to, :notes, :line_items, :shipping_rate, :shipping_description,
8
- :tax_rate, :tax_description, :due_at, :paid_at, :currency, :invoice_details
8
+ :tax_rate, :tax_description, :due_at, :paid_at, :refunded_at, :currency, :invoice_details
9
9
 
10
10
  def initialize(options = {})
11
11
  self.invoice_number = options[:invoice_number] || nil
@@ -19,6 +19,7 @@ module Payday
19
19
  self.tax_description = options[:tax_description] || nil
20
20
  self.due_at = options[:due_at] || nil
21
21
  self.paid_at = options[:paid_at] || nil
22
+ self.refunded_at = options[:refunded_at] || nil
22
23
  self.currency = options[:currency] || nil
23
24
  self.invoice_details = options[:invoice_details] || []
24
25
  end
@@ -10,8 +10,8 @@
10
10
  # when generating an invoice. We include a simple tax method that calculates tax, but it's probably wiser
11
11
  # to override this in your class (our calculated tax won't be stored to a database by default, for example).
12
12
  #
13
- # If the +due_at+ and +paid_at+ methods are available, {Payday::Invoiceable} will use them to show due dates and
14
- # paid dates, as well as stamps showing if the invoice is paid or due.
13
+ # If the +due_at+, +paid_at+, and +refunded_at+ methods are available, {Payday::Invoiceable} will use them to show due dates,
14
+ # paid dates, and refunded dates, as well as stamps showing if the invoice is paid or due.
15
15
  module Payday::Invoiceable
16
16
 
17
17
  # Who the invoice is being sent to.
@@ -54,6 +54,10 @@ module Payday::Invoiceable
54
54
  defined?(:due_at) && ((due_at.is_a?(Date) && due_at < Date.today) || (due_at.is_a?(Time) && due_at < Time.now)) && !paid_at
55
55
  end
56
56
 
57
+ def refunded?
58
+ defined?(:refunded_at) && !!refunded_at
59
+ end
60
+
57
61
  def paid?
58
62
  defined?(:paid_at) && !!paid_at
59
63
  end
@@ -77,4 +81,5 @@ module Payday::Invoiceable
77
81
  block.call(detail[0], detail[1])
78
82
  end
79
83
  end
80
- end
84
+ end
85
+
@@ -1,9 +1,10 @@
1
1
  de:
2
2
  payday:
3
- status:
3
+ status:
4
4
  overdue: ÜBERFÄLLIG
5
5
  paid: BEZAHLT
6
- invoice:
6
+ refunded: ZURÜCKGEZAHLT
7
+ invoice:
7
8
  bill_to: Rechnung an
8
9
  ship_to: Versenden an
9
10
  invoice_no: "Rechnungsnr.:"
@@ -14,7 +15,7 @@ de:
14
15
  tax: "Steuern:"
15
16
  total: "Gesamt:"
16
17
  notes: "Anmerkungen"
17
- line_item:
18
+ line_item:
18
19
  description: Beschreibung
19
20
  unit_price: Stückpreis
20
21
  quantity: Menge
@@ -3,6 +3,7 @@ en:
3
3
  status:
4
4
  paid: PAID
5
5
  overdue: OVERDUE
6
+ refunded: REFUNDED
6
7
  invoice:
7
8
  bill_to: Bill To
8
9
  ship_to: Ship To
@@ -3,6 +3,7 @@ es:
3
3
  status:
4
4
  overdue: RETRASADO
5
5
  paid: PAGADO
6
+ refunded: REINTEGRADO
6
7
  invoice:
7
8
  bill_to: Facturar a
8
9
  invoice_no: "Recibo #:"
@@ -0,0 +1,22 @@
1
+ nl:
2
+ payday:
3
+ status:
4
+ paid: BETAALD
5
+ overdue: BETAALTERMIJN VERSTREKEN
6
+ refund: FAKTUUR
7
+ invoice:
8
+ bill_to: Te betalen door
9
+ ship_to: Te bezorgen aan
10
+ invoice_no: "Faktuur Nr:"
11
+ due_date: "Te betalen voor:"
12
+ paid_date: "Betaald op:"
13
+ subtotal: "Subtotaal:"
14
+ shipping: "Levering:"
15
+ tax: "Btw:"
16
+ total: "Totaal:"
17
+ notes: "Opmerkingen"
18
+ line_item:
19
+ description: Omschrijving
20
+ unit_price: Eenheidsprijs
21
+ quantity: Hoeveelheid
22
+ amount: Bedrag
@@ -36,7 +36,9 @@ module Payday
36
36
 
37
37
  def self.stamp(invoice, pdf)
38
38
  stamp = nil
39
- if invoice.paid?
39
+ if invoice.refunded?
40
+ stamp = I18n.t 'payday.status.refunded', :default => "REFUNDED"
41
+ elsif invoice.paid?
40
42
  stamp = I18n.t 'payday.status.paid', :default => "PAID"
41
43
  elsif invoice.overdue?
42
44
  stamp = I18n.t 'payday.status.overdue', :default => "OVERDUE"
@@ -149,6 +151,18 @@ module Payday
149
151
  bold_cell(pdf, paid_date, :align => :right)]
150
152
  end
151
153
 
154
+ # Refunded on
155
+ if defined?(invoice.refunded_at) && invoice.refunded_at
156
+ if invoice.refunded_at.is_a?(Date) || invoice.due_at.is_a?(Time)
157
+ refunded_date = invoice.refunded_at.strftime(Payday::Config.default.date_format)
158
+ else
159
+ refunded_date = invoice.refunded_at.to_s
160
+ end
161
+
162
+ table_data << [bold_cell(pdf, I18n.t('payday.invoice.refunded_date', :default => "Refunded Date:")),
163
+ bold_cell(pdf, refunded_date, :align => :right)]
164
+ end
165
+
152
166
  # loop through invoice_details and include them
153
167
  invoice.each_detail do |key, value|
154
168
  table_data << [bold_cell(pdf, key),
@@ -243,13 +257,12 @@ module Payday
243
257
  end
244
258
 
245
259
  def self.bold_cell(pdf, text, options = {})
246
- options[:font] = "Helvetica-Bold"
247
- cell(pdf, text, options)
260
+ cell(pdf, "<b>#{text}</b>", options.merge(:inline_format => true))
248
261
  end
249
262
 
250
263
  # Converts this number to a formatted currency string
251
264
  def self.number_to_currency(number, invoice)
252
- number.to_money(invoice_or_default(invoice, :currency)).format
265
+ Money.new(number, invoice_or_default(invoice, :currency)).format
253
266
  end
254
267
 
255
268
  def self.max_cell_width(cell_proxy)
@@ -2,5 +2,5 @@
2
2
  module Payday
3
3
 
4
4
  # Current Version
5
- VERSION = "1.1.1"
5
+ VERSION = "1.1.2"
6
6
  end
@@ -12,12 +12,12 @@ Gem::Specification.new do |s|
12
12
  s.summary = %q{git remote add origin git@github.com:commondream/payday.git}
13
13
  s.description = %q{Payday is a library for rendering invoices. At present it supports rendering invoices to pdfs, but we're planning on adding support for other formats in the near future.}
14
14
 
15
- s.add_dependency("prawn", "~> 0.12.0")
16
- s.add_dependency("money", "~> 3.6.1")
17
- s.add_dependency("prawn-svg", "~> 0.9.1")
18
- s.add_dependency("i18n", ">= 0.5.0")
15
+ s.add_dependency("prawn", "~> 1.0.0")
16
+ s.add_dependency("money", "~> 6.1.1")
17
+ s.add_dependency("prawn-svg", "~> 0.15.0.0")
18
+ s.add_dependency("i18n", ">= 0.6.9")
19
19
 
20
- s.add_development_dependency("minitest")
20
+ s.add_development_dependency("rspec", "~> 2.14.1")
21
21
 
22
22
  s.files = `git ls-files`.split("\n")
23
23
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
File without changes
@@ -0,0 +1,2360 @@
1
+ %PDF-1.3
2
+ %����
3
+ 1 0 obj
4
+ << /Creator <feff0050007200610077006e>
5
+ /Producer <feff0050007200610077006e>
6
+ >>
7
+ endobj
8
+ 2 0 obj
9
+ << /Type /Catalog
10
+ /Pages 3 0 R
11
+ >>
12
+ endobj
13
+ 3 0 obj
14
+ << /Type /Pages
15
+ /Count 1
16
+ /Kids [5 0 R]
17
+ >>
18
+ endobj
19
+ 4 0 obj
20
+ << /Length 44243
21
+ >>
22
+ stream
23
+ q
24
+ /DeviceRGB cs
25
+ 0.800 0.000 0.000 scn
26
+ q
27
+ 1.00000 0.00000 0.00000 1.00000 189.06404 -24.08398 cm
28
+ q
29
+ 0.96593 0.25882 -0.25882 0.96593 0.00000 0.00000 cm
30
+
31
+ BT
32
+ 277.3875 688.05 Td
33
+ /F1.0 25 Tf
34
+ [<50> 100 <414944>] TJ
35
+ ET
36
+
37
+ Q
38
+ Q
39
+ 0.000 0.000 0.000 scn
40
+ q
41
+ 36.000 656.000 m
42
+ 136.000 656.000 l
43
+ 136.000 756.000 l
44
+ 36.000 756.000 l
45
+ h
46
+ W n
47
+ 0.000 0.000 0.000 scn
48
+ q
49
+ Q
50
+ q
51
+ Q
52
+ q
53
+ f
54
+ Q
55
+ q
56
+ 0.000 0.000 0.000 scn
57
+ 2 j
58
+ 50.486 670.639 m
59
+ 36.000 685.279 l
60
+ 36.000 706.026 l
61
+ 36.000 726.773 l
62
+ 50.613 741.386 l
63
+ 65.225 756.000 l
64
+ 85.872 756.000 l
65
+ 106.518 756.000 l
66
+ 121.259 741.412 l
67
+ 136.000 726.825 l
68
+ 136.000 706.025 l
69
+ 136.000 685.225 l
70
+ 121.386 670.613 l
71
+ 106.773 656.000 l
72
+ 85.873 656.000 l
73
+ 64.972 656.000 l
74
+ 50.486 670.639 l
75
+ h
76
+ 115.341 670.063 m
77
+ 120.823 675.670 125.339 680.397 125.376 680.568 c
78
+ 125.414 680.739 125.386 681.118 125.312 681.410 c
79
+ 125.188 681.903 124.474 681.235 114.856 671.617 c
80
+ 104.532 661.295 l
81
+ 85.999 661.295 l
82
+ 67.465 661.295 l
83
+ 54.380 674.381 l
84
+ 41.295 687.468 l
85
+ 41.295 706.004 l
86
+ 41.295 724.539 l
87
+ 43.943 727.181 l
88
+ 45.593 728.828 46.673 730.074 46.810 730.488 c
89
+ 46.985 731.018 47.140 731.153 47.575 731.153 c
90
+ 48.022 731.153 49.866 732.900 57.894 740.929 c
91
+ 67.668 750.705 l
92
+ 85.974 750.705 l
93
+ 104.279 750.705 l
94
+ 117.466 737.671 l
95
+ 130.653 724.637 l
96
+ 130.761 715.318 l
97
+ 130.851 707.570 130.942 705.399 131.300 702.435 c
98
+ 131.538 700.474 131.813 698.595 131.913 698.260 c
99
+ 132.025 697.886 132.102 702.971 132.113 711.372 c
100
+ 132.130 725.093 l
101
+ 118.663 738.714 l
102
+ 105.196 752.334 l
103
+ 86.026 752.334 l
104
+ 66.857 752.334 l
105
+ 53.261 738.740 l
106
+ 39.666 725.146 l
107
+ 39.666 706.001 l
108
+ 39.666 686.857 l
109
+ 53.158 673.363 l
110
+ 66.651 659.870 l
111
+ 86.013 659.870 l
112
+ 105.375 659.870 l
113
+ 115.341 670.063 l
114
+ h
115
+ 113.851 672.649 m
116
+ 119.312 678.109 123.780 682.636 123.780 682.707 c
117
+ 123.780 682.779 123.345 682.900 122.813 682.976 c
118
+ 122.281 683.052 121.365 683.262 120.778 683.443 c
119
+ 120.192 683.623 119.677 683.732 119.634 683.684 c
120
+ 119.464 683.494 114.658 676.961 113.757 675.695 c
121
+ 112.635 674.120 110.085 671.947 108.736 671.418 c
122
+ 107.373 670.883 105.389 670.620 104.694 670.882 c
123
+ 104.382 671.000 103.600 671.435 102.957 671.848 c
124
+ 101.937 672.503 101.787 672.682 101.786 673.247 c
125
+ 101.784 673.970 102.025 674.183 104.228 675.397 c
126
+ 106.249 676.510 108.800 678.830 109.962 680.609 c
127
+ 110.511 681.451 110.889 682.202 110.802 682.280 c
128
+ 110.715 682.357 108.948 683.685 106.876 685.232 c
129
+ 102.818 688.261 100.874 689.951 99.747 691.429 c
130
+ 99.039 692.359 99.030 692.363 98.322 692.117 c
131
+ 97.930 691.980 97.358 691.863 97.051 691.857 c
132
+ 96.744 691.850 96.020 691.665 95.442 691.446 c
133
+ 94.863 691.226 92.640 690.712 90.501 690.303 c
134
+ 88.361 689.894 86.181 689.432 85.656 689.277 c
135
+ 85.131 689.121 84.558 688.994 84.383 688.994 c
136
+ 84.208 688.994 84.064 688.925 84.063 688.841 c
137
+ 84.062 688.757 83.832 687.359 83.552 685.735 c
138
+ 82.933 682.148 82.509 677.804 82.339 673.312 c
139
+ 82.195 669.509 81.959 668.210 81.239 667.239 c
140
+ 80.361 666.056 79.379 665.702 76.937 665.687 c
141
+ 75.761 665.680 74.546 665.745 74.238 665.831 c
142
+ 73.728 665.973 73.678 666.073 73.678 666.954 c
143
+ 73.678 668.202 74.149 669.033 75.384 669.970 c
144
+ 76.378 670.722 l
145
+ 76.234 672.882 l
146
+ 76.155 674.071 75.906 675.913 75.680 676.978 c
147
+ 75.455 678.042 75.196 679.371 75.105 679.931 c
148
+ 74.820 681.690 73.693 684.463 72.910 685.336 c
149
+ 72.512 685.780 72.130 686.143 72.062 686.143 c
150
+ 71.635 686.143 70.881 680.260 70.692 675.470 c
151
+ 70.530 671.346 70.510 671.295 68.110 668.987 c
152
+ 66.343 667.288 65.543 666.888 64.253 667.061 c
153
+ 63.430 667.172 l
154
+ 65.648 664.946 l
155
+ 67.867 662.721 l
156
+ 85.894 662.721 l
157
+ 103.921 662.721 l
158
+ 113.851 672.649 l
159
+ h
160
+ 77.439 667.144 m
161
+ 77.555 667.607 77.468 667.788 76.901 668.258 c
162
+ 76.054 668.961 75.958 668.962 75.697 668.271 c
163
+ 75.580 667.963 75.245 667.459 74.951 667.151 c
164
+ 74.417 666.591 l
165
+ 75.858 666.591 l
166
+ 77.257 666.591 77.304 666.607 77.439 667.144 c
167
+ h
168
+ 66.254 668.291 m
169
+ 66.641 668.667 66.955 669.148 66.953 669.361 c
170
+ 66.951 669.573 66.541 670.206 66.042 670.766 c
171
+ 65.135 671.784 l
172
+ 64.010 670.631 l
173
+ 62.563 669.150 62.562 668.382 64.004 667.862 c
174
+ 65.046 667.485 65.517 667.575 66.254 668.291 c
175
+ h
176
+ 63.624 670.948 m
177
+ 64.305 672.075 64.385 672.360 64.470 673.995 c
178
+ 64.576 676.003 64.283 678.642 63.664 681.255 c
179
+ 63.243 683.032 62.686 687.398 62.682 688.947 c
180
+ 62.680 689.956 61.271 692.972 58.046 698.872 c
181
+ 55.192 704.092 54.206 706.302 53.821 708.342 c
182
+ 53.641 709.294 53.440 710.338 53.375 710.661 c
183
+ 53.254 711.264 52.041 712.575 50.031 714.274 c
184
+ 48.917 715.217 l
185
+ 48.121 714.771 l
186
+ 47.636 714.500 46.964 713.800 46.399 712.979 c
187
+ 45.890 712.238 45.442 711.664 45.403 711.702 c
188
+ 45.364 711.741 45.246 712.158 45.140 712.629 c
189
+ 44.924 713.589 45.030 713.824 46.446 715.532 c
190
+ 47.258 716.510 l
191
+ 46.160 716.369 l
192
+ 45.557 716.291 44.851 716.149 44.592 716.053 c
193
+ 44.332 715.956 43.874 715.886 43.573 715.895 c
194
+ 43.026 715.913 l
195
+ 43.536 716.068 l
196
+ 44.342 716.314 45.677 717.040 45.967 717.390 c
197
+ 46.205 717.676 46.083 717.711 44.833 717.717 c
198
+ 43.247 717.724 43.384 717.927 45.254 718.340 c
199
+ 46.464 718.608 l
200
+ 45.764 718.915 l
201
+ 45.069 719.219 45.068 719.223 45.601 719.292 c
202
+ 46.093 719.357 46.150 719.463 46.270 720.523 c
203
+ 46.549 723.003 47.152 724.798 48.029 725.758 c
204
+ 48.393 726.157 48.388 726.191 47.802 727.132 c
205
+ 47.472 727.662 47.202 728.166 47.202 728.250 c
206
+ 47.203 728.334 46.194 727.441 44.960 726.265 c
207
+ 42.716 724.126 l
208
+ 42.708 706.000 l
209
+ 42.699 687.874 l
210
+ 52.333 678.371 l
211
+ 61.967 668.867 l
212
+ 62.420 669.286 l
213
+ 62.668 669.517 63.210 670.265 63.624 670.948 c
214
+ h
215
+ 107.538 673.463 m
216
+ 107.979 673.858 107.997 674.703 107.577 675.303 c
217
+ 107.184 675.865 106.975 675.866 105.731 675.318 c
218
+ 103.853 674.490 103.484 673.429 104.941 673.044 c
219
+ 105.603 672.869 107.153 673.119 107.538 673.463 c
220
+ h
221
+ 111.298 674.635 m
222
+ 112.086 674.793 113.774 676.389 114.895 678.034 c
223
+ 115.328 678.671 115.951 679.954 116.278 680.885 c
224
+ 117.371 683.996 117.380 683.599 116.185 684.862 c
225
+ 115.167 685.938 115.120 686.038 115.022 687.336 c
226
+ 114.921 688.688 l
227
+ 114.139 686.582 l
228
+ 113.357 684.476 l
229
+ 113.815 683.989 l
230
+ 114.067 683.720 114.602 683.331 115.004 683.123 c
231
+ 115.577 682.827 115.749 682.605 115.799 682.097 c
232
+ 115.856 681.523 115.781 681.414 115.144 681.148 c
233
+ 114.748 680.983 114.149 680.847 113.812 680.847 c
234
+ 113.230 680.847 113.210 680.819 113.404 680.287 c
235
+ 113.516 679.979 113.763 679.429 113.954 679.065 c
236
+ 114.284 678.434 114.282 678.369 113.906 677.670 c
237
+ 113.478 676.876 113.162 676.593 111.153 675.203 c
238
+ 110.425 674.699 110.012 674.336 110.236 674.395 c
239
+ 110.460 674.455 110.938 674.562 111.298 674.635 c
240
+ h
241
+ 80.202 678.357 m
242
+ 80.052 679.416 79.857 679.842 78.993 680.997 c
243
+ 78.115 682.170 76.530 683.568 76.530 683.170 c
244
+ 76.530 683.101 76.811 682.689 77.155 682.255 c
245
+ 77.814 681.422 78.566 679.555 78.566 678.750 c
246
+ 78.566 678.422 78.838 678.075 79.432 677.644 c
247
+ 79.908 677.298 80.316 677.033 80.339 677.055 c
248
+ 80.362 677.077 80.300 677.663 80.202 678.357 c
249
+ h
250
+ 68.391 683.235 m
251
+ 68.254 683.845 67.882 684.726 67.564 685.192 c
252
+ 66.797 686.316 64.103 688.963 64.115 688.581 c
253
+ 64.120 688.416 64.531 687.869 65.027 687.365 c
254
+ 65.660 686.722 66.281 685.703 67.100 683.958 c
255
+ 67.998 682.047 68.313 681.545 68.455 681.797 c
256
+ 68.569 682.001 68.544 682.548 68.391 683.235 c
257
+ h
258
+ 128.140 682.756 m
259
+ 128.898 683.393 l
260
+ 128.098 684.534 l
261
+ 127.299 685.672 127.298 685.677 127.679 686.163 c
262
+ 128.062 686.652 l
263
+ 128.518 686.139 l
264
+ 128.768 685.857 129.215 685.317 129.510 684.939 c
265
+ 130.047 684.252 l
266
+ 130.403 684.795 l
267
+ 130.743 685.315 130.742 685.357 130.378 685.759 c
268
+ 130.006 686.170 130.006 686.186 130.402 686.480 c
269
+ 130.624 686.646 130.944 686.866 131.112 686.969 c
270
+ 131.361 687.122 131.254 687.312 130.524 688.007 c
271
+ 129.631 688.857 l
272
+ 128.675 687.856 l
273
+ 127.189 686.301 126.401 685.691 124.881 684.921 c
274
+ 124.107 684.529 123.435 684.184 123.388 684.155 c
275
+ 123.305 684.104 123.495 683.917 124.558 683.000 c
276
+ 125.014 682.607 l
277
+ 125.924 683.501 l
278
+ 126.912 684.470 127.263 684.181 126.326 683.170 c
279
+ 125.846 682.652 125.676 682.074 125.930 681.820 c
280
+ 126.150 681.600 127.393 682.126 128.140 682.756 c
281
+ h
282
+ 110.602 685.485 m
283
+ 111.488 686.464 114.265 694.702 115.080 698.770 c
284
+ 115.136 699.050 115.329 700.012 115.509 700.908 c
285
+ 115.922 702.961 115.920 703.019 115.447 702.532 c
286
+ 114.493 701.550 112.792 697.412 111.682 693.373 c
287
+ 111.374 692.253 110.958 690.924 110.756 690.420 c
288
+ 110.555 689.915 110.327 689.228 110.250 688.892 c
289
+ 110.173 688.556 109.738 687.651 109.284 686.882 c
290
+ 108.628 685.771 108.515 685.447 108.736 685.307 c
291
+ 109.211 685.006 110.259 685.106 110.602 685.485 c
292
+ h
293
+ 119.440 685.780 m
294
+ 120.687 686.506 123.783 688.961 125.053 690.230 c
295
+ 126.137 691.313 126.574 692.253 125.994 692.253 c
296
+ 125.610 692.253 121.326 689.587 119.886 688.452 c
297
+ 118.778 687.579 117.466 685.948 117.466 685.444 c
298
+ 117.466 685.155 118.739 685.371 119.440 685.780 c
299
+ h
300
+ 77.829 698.770 m
301
+ 77.849 708.058 77.635 712.371 77.045 714.616 c
302
+ 76.793 715.572 l
303
+ 76.654 713.637 l
304
+ 76.577 712.573 76.495 706.427 76.471 699.979 c
305
+ 76.428 688.256 l
306
+ 76.937 687.508 l
307
+ 77.446 686.760 l
308
+ 77.628 688.132 l
309
+ 77.728 688.886 77.818 693.673 77.829 698.770 c
310
+ h
311
+ 83.370 689.652 m
312
+ 83.515 689.906 83.777 690.425 83.953 690.806 c
313
+ 84.129 691.187 84.404 691.599 84.563 691.723 c
314
+ 84.723 691.846 85.226 692.673 85.681 693.561 c
315
+ 86.559 695.273 86.692 696.160 86.232 697.238 c
316
+ 85.973 697.845 l
317
+ 85.433 696.321 l
318
+ 85.136 695.484 84.767 694.345 84.613 693.790 c
319
+ 84.334 692.782 l
320
+ 84.091 695.012 l
321
+ 83.853 697.204 83.441 698.450 82.883 698.664 c
322
+ 82.729 698.723 82.359 698.603 82.061 698.397 c
323
+ 80.985 697.652 80.939 697.645 81.090 698.244 c
324
+ 81.226 698.787 81.346 699.578 81.942 703.862 c
325
+ 82.351 706.806 82.512 709.973 82.282 710.574 c
326
+ 82.100 711.050 82.083 711.034 81.945 710.269 c
327
+ 81.866 709.825 81.480 708.133 81.089 706.509 c
328
+ 79.817 701.237 79.177 697.753 79.177 696.097 c
329
+ 79.177 695.255 79.324 695.066 80.399 694.517 c
330
+ 81.361 694.026 82.351 692.526 82.523 691.300 c
331
+ 82.873 688.796 82.878 688.787 83.370 689.652 c
332
+ h
333
+ 132.130 689.461 m
334
+ 132.130 689.606 131.664 690.225 131.095 690.836 c
335
+ 130.506 691.468 129.660 692.738 129.134 693.780 c
336
+ 128.625 694.788 127.925 696.009 127.579 696.493 c
337
+ 126.949 697.373 l
338
+ 126.704 696.697 l
339
+ 125.915 694.520 127.002 692.713 130.705 690.041 c
340
+ 131.940 689.149 132.130 689.072 132.130 689.461 c
341
+ h
342
+ 88.067 690.936 m
343
+ 88.945 691.532 89.885 692.530 90.281 693.286 c
344
+ 90.527 693.756 90.429 695.121 90.128 695.422 c
345
+ 90.083 695.468 89.594 694.750 89.043 693.828 c
346
+ 87.776 691.708 87.082 690.420 87.208 690.420 c
347
+ 87.262 690.420 87.648 690.652 88.067 690.936 c
348
+ h
349
+ 71.972 691.285 m
350
+ 72.404 691.779 72.584 692.151 73.223 693.882 c
351
+ 73.753 695.316 74.697 699.396 74.697 700.252 c
352
+ 74.696 701.200 74.155 703.938 73.639 705.593 c
353
+ 73.329 706.590 73.192 707.569 73.183 708.851 c
354
+ 73.171 710.652 73.188 710.718 74.137 712.541 c
355
+ 75.054 714.302 75.104 714.483 75.104 716.018 c
356
+ 75.104 717.684 74.697 719.345 74.128 720.002 c
357
+ 73.674 720.526 73.518 720.447 73.253 719.563 c
358
+ 73.059 718.917 73.077 718.491 73.346 717.298 c
359
+ 73.882 714.927 73.804 714.318 72.642 711.751 c
360
+ 71.607 709.462 l
361
+ 71.714 707.629 l
362
+ 71.773 706.621 72.000 705.246 72.218 704.574 c
363
+ 73.338 701.129 73.445 698.803 72.603 696.224 c
364
+ 71.581 693.093 71.040 690.827 71.315 690.827 c
365
+ 71.455 690.827 71.751 691.033 71.972 691.285 c
366
+ h
367
+ 131.798 694.697 m
368
+ 131.118 696.041 130.614 696.382 129.939 695.953 c
369
+ 129.738 695.825 129.767 695.552 130.075 694.683 c
370
+ 130.548 693.348 131.167 692.144 131.663 691.594 c
371
+ 132.019 691.199 132.030 691.225 132.094 692.586 c
372
+ 132.142 693.620 132.065 694.169 131.798 694.697 c
373
+ h
374
+ 63.125 692.912 m
375
+ 63.706 693.725 65.319 697.021 65.542 697.853 c
376
+ 65.632 698.189 66.494 700.801 67.459 703.656 c
377
+ 68.423 706.512 69.341 709.353 69.498 709.970 c
378
+ 71.032 715.991 71.182 717.136 70.754 719.580 c
379
+ 70.315 722.092 69.769 722.998 68.162 723.876 c
380
+ 67.229 724.386 l
381
+ 66.862 723.705 l
382
+ 66.496 723.025 l
383
+ 67.341 722.016 l
384
+ 68.921 720.129 69.086 719.516 69.080 715.572 c
385
+ 69.077 713.668 68.981 711.688 68.867 711.173 c
386
+ 68.558 709.770 67.261 706.288 66.106 703.760 c
387
+ 65.543 702.527 64.968 701.107 64.827 700.603 c
388
+ 64.687 700.099 64.201 698.816 63.748 697.752 c
389
+ 62.766 695.443 61.998 692.936 62.150 692.539 c
390
+ 62.323 692.088 62.614 692.199 63.125 692.912 c
391
+ h
392
+ 103.146 694.595 m
393
+ 105.033 697.741 105.599 698.815 105.752 699.543 c
394
+ 105.930 700.385 105.523 702.164 105.152 702.164 c
395
+ 105.001 702.164 104.925 702.042 104.982 701.893 c
396
+ 105.039 701.743 104.979 701.621 104.849 701.621 c
397
+ 104.718 701.621 104.667 701.532 104.734 701.422 c
398
+ 104.802 701.313 104.729 700.979 104.572 700.680 c
399
+ 104.287 700.136 l
400
+ 104.158 700.649 l
401
+ 104.087 700.932 103.933 704.198 103.816 707.907 c
402
+ 103.634 713.624 103.541 714.839 103.206 715.889 c
403
+ 102.595 717.801 101.654 718.748 100.068 719.045 c
404
+ 99.332 719.183 99.006 718.845 99.641 718.601 c
405
+ 99.977 718.472 101.151 716.903 101.698 715.851 c
406
+ 102.441 714.423 103.210 711.378 103.210 709.862 c
407
+ 103.210 708.145 103.032 707.080 102.773 707.240 c
408
+ 102.541 707.384 101.385 709.871 101.172 710.684 c
409
+ 101.084 711.020 100.870 711.708 100.696 712.212 c
410
+ 100.522 712.716 100.180 713.853 99.936 714.739 c
411
+ 99.430 716.572 98.504 717.963 97.307 718.685 c
412
+ 96.536 719.150 l
413
+ 97.633 716.902 l
414
+ 98.236 715.666 98.729 714.578 98.729 714.485 c
415
+ 98.729 714.391 99.191 713.239 99.756 711.926 c
416
+ 101.019 708.989 102.263 704.942 102.606 702.658 c
417
+ 102.912 700.613 102.746 696.021 102.322 694.798 c
418
+ 102.029 693.955 101.681 692.277 101.836 692.456 c
419
+ 101.884 692.512 102.474 693.475 103.146 694.595 c
420
+ h
421
+ 108.940 694.314 m
422
+ 110.003 697.093 110.367 698.259 110.725 700.026 c
423
+ 111.635 704.529 111.813 712.763 111.055 715.369 c
424
+ 110.523 717.202 109.327 718.289 107.227 718.848 c
425
+ 105.511 719.305 105.345 719.231 106.253 718.410 c
426
+ 107.121 717.626 108.371 715.498 109.116 713.536 c
427
+ 109.691 712.020 109.873 708.115 109.548 704.269 c
428
+ 109.177 699.893 108.740 695.404 108.634 694.887 c
429
+ 108.200 692.774 108.288 692.609 108.940 694.314 c
430
+ h
431
+ 98.591 693.525 m
432
+ 99.029 693.990 99.923 696.196 100.673 698.667 c
433
+ 101.291 700.700 101.395 702.709 100.908 703.195 c
434
+ 100.661 703.443 100.564 703.331 100.211 702.399 c
435
+ 99.986 701.803 99.661 700.857 99.489 700.297 c
436
+ 99.317 699.737 98.989 698.821 98.760 698.261 c
437
+ 98.531 697.701 98.145 696.692 97.901 696.020 c
438
+ 97.658 695.348 97.386 694.651 97.296 694.471 c
439
+ 97.185 694.249 97.274 694.002 97.569 693.707 c
440
+ 98.071 693.204 98.257 693.171 98.591 693.525 c
441
+ h
442
+ 95.036 695.594 m
443
+ 95.538 697.153 95.522 697.348 94.691 699.992 c
444
+ 94.147 701.723 l
445
+ 94.034 697.853 l
446
+ 93.973 695.725 93.961 693.865 94.009 693.720 c
447
+ 94.144 693.308 94.522 693.997 95.036 695.594 c
448
+ h
449
+ 120.473 694.395 m
450
+ 121.062 694.549 121.632 694.729 121.738 694.795 c
451
+ 121.845 694.861 122.731 695.030 123.707 695.171 c
452
+ 126.852 695.625 125.945 695.877 120.735 695.995 c
453
+ 119.688 696.019 119.597 695.981 119.156 695.328 c
454
+ 118.582 694.478 118.524 693.774 119.045 693.976 c
455
+ 119.241 694.052 119.883 694.241 120.473 694.395 c
456
+ h
457
+ 130.438 697.191 m
458
+ 130.941 697.968 131.023 698.701 130.752 699.992 c
459
+ 130.599 700.720 130.427 701.453 130.370 701.621 c
460
+ 130.263 701.934 130.079 701.756 128.725 700.033 c
461
+ 128.197 699.361 l
462
+ 128.920 698.607 l
463
+ 129.317 698.193 129.704 697.647 129.780 697.395 c
464
+ 129.933 696.885 130.189 696.806 130.438 697.191 c
465
+ h
466
+ 127.687 700.501 m
467
+ 128.034 701.173 128.524 701.998 128.775 702.334 c
468
+ 129.780 703.676 130.116 704.632 130.049 705.959 c
469
+ 130.004 706.865 129.938 707.107 129.817 706.815 c
470
+ 129.723 706.591 129.520 706.132 129.366 705.796 c
471
+ 127.724 702.231 126.837 700.095 126.730 699.447 c
472
+ 126.574 698.504 126.763 698.712 127.687 700.501 c
473
+ h
474
+ 61.019 700.646 m
475
+ 63.231 704.019 63.670 704.786 63.488 704.968 c
476
+ 63.259 705.197 63.366 705.319 62.167 703.454 c
477
+ 61.148 701.868 59.944 700.260 59.479 699.865 c
478
+ 59.332 699.739 59.267 699.489 59.337 699.309 c
479
+ 59.538 698.784 60.082 699.217 61.019 700.646 c
480
+ h
481
+ 124.825 700.520 m
482
+ 124.517 702.581 124.031 704.935 122.855 710.073 c
483
+ 122.447 711.857 121.585 713.683 120.620 714.809 c
484
+ 119.776 715.794 117.332 717.743 117.505 717.293 c
485
+ 117.568 717.131 118.767 714.340 120.170 711.092 c
486
+ 121.573 707.843 122.785 704.883 122.862 704.514 c
487
+ 122.939 704.145 123.367 702.953 123.813 701.866 c
488
+ 124.259 700.779 124.675 699.726 124.737 699.526 c
489
+ 124.957 698.816 125.003 699.332 124.825 700.520 c
490
+ h
491
+ 91.814 702.079 m
492
+ 92.131 703.755 92.136 707.110 91.823 708.276 c
493
+ 91.709 708.704 91.481 710.246 91.317 711.703 c
494
+ 91.077 713.838 91.066 714.646 91.260 715.878 c
495
+ 91.500 717.405 l
496
+ 92.046 716.183 l
497
+ 92.346 715.511 93.064 713.915 93.643 712.635 c
498
+ 95.027 709.575 95.389 708.388 95.573 706.307 c
499
+ 95.673 705.165 95.890 704.231 96.211 703.558 c
500
+ 96.696 702.538 l
501
+ 96.601 705.185 l
502
+ 96.447 709.464 95.534 713.588 94.005 716.916 c
503
+ 93.104 718.876 93.385 718.752 90.913 718.280 c
504
+ 89.717 718.052 l
505
+ 89.841 715.997 l
506
+ 89.909 714.867 90.017 712.385 90.081 710.481 c
507
+ 90.144 708.576 90.287 706.193 90.397 705.185 c
508
+ 90.625 703.099 91.164 700.603 91.386 700.603 c
509
+ 91.468 700.603 91.661 701.267 91.814 702.079 c
510
+ h
511
+ 105.450 702.652 m
512
+ 105.450 702.770 105.358 702.811 105.246 702.741 c
513
+ 105.134 702.672 105.043 702.575 105.043 702.526 c
514
+ 105.043 702.476 105.134 702.436 105.246 702.436 c
515
+ 105.358 702.436 105.450 702.533 105.450 702.652 c
516
+ h
517
+ 86.711 703.323 m
518
+ 86.710 703.563 86.532 705.643 86.316 707.946 c
519
+ 85.657 714.952 85.081 717.811 84.207 718.424 c
520
+ 83.760 718.737 81.922 718.851 81.757 718.576 c
521
+ 81.706 718.492 81.982 717.739 82.370 716.901 c
522
+ 82.758 716.064 83.123 715.102 83.181 714.763 c
523
+ 83.240 714.424 83.504 713.459 83.769 712.619 c
524
+ 84.034 711.779 84.435 710.121 84.659 708.934 c
525
+ 84.883 707.748 85.246 706.098 85.464 705.268 c
526
+ 85.683 704.439 85.917 703.511 85.984 703.207 c
527
+ 86.130 702.547 86.714 702.640 86.711 703.323 c
528
+ h
529
+ 117.447 707.222 m
530
+ 117.468 709.582 116.935 713.045 116.445 713.739 c
531
+ 116.365 713.851 116.239 714.201 116.163 714.517 c
532
+ 116.003 715.189 113.971 717.281 113.088 717.684 c
533
+ 112.752 717.837 112.316 718.044 112.120 718.144 c
534
+ 111.924 718.244 111.764 718.282 111.764 718.230 c
535
+ 111.764 718.177 112.252 717.191 112.849 716.039 c
536
+ 114.524 712.803 115.897 708.952 116.790 704.982 c
537
+ 117.156 703.352 l
538
+ 117.294 704.371 l
539
+ 117.369 704.931 117.438 706.214 117.447 707.222 c
540
+ h
541
+ 59.034 706.496 m
542
+ 59.270 707.546 58.993 708.050 58.595 707.295 c
543
+ 58.456 707.031 58.287 706.769 58.220 706.713 c
544
+ 58.153 706.657 57.768 706.236 57.364 705.778 c
545
+ 56.770 705.104 56.649 704.825 56.725 704.304 c
546
+ 56.820 703.662 l
547
+ 57.826 704.633 l
548
+ 58.573 705.352 58.885 705.835 59.034 706.496 c
549
+ h
550
+ 128.121 706.178 m
551
+ 129.062 707.281 129.277 707.830 129.278 709.117 c
552
+ 129.279 710.274 129.201 710.516 128.488 711.561 c
553
+ 127.276 713.340 125.101 714.956 122.253 716.195 c
554
+ 121.804 716.389 121.258 716.640 121.039 716.751 c
555
+ 120.819 716.862 121.170 716.368 121.819 715.652 c
556
+ 122.468 714.936 123.407 713.780 123.905 713.083 c
557
+ 124.878 711.722 126.426 708.099 126.430 707.174 c
558
+ 126.431 706.864 126.489 706.265 126.559 705.842 c
559
+ 126.686 705.073 l
560
+ 127.219 705.409 l
561
+ 127.512 705.594 127.918 705.940 128.121 706.178 c
562
+ h
563
+ 57.091 707.426 m
564
+ 57.660 708.121 57.865 708.579 57.934 709.310 c
565
+ 58.026 710.277 l
566
+ 57.607 709.768 l
567
+ 57.377 709.488 57.131 709.075 57.062 708.851 c
568
+ 56.993 708.627 56.617 708.143 56.225 707.775 c
569
+ 55.642 707.227 55.559 707.052 55.761 706.808 c
570
+ 56.132 706.361 56.271 706.426 57.091 707.426 c
571
+ h
572
+ 61.662 707.644 m
573
+ 61.662 707.919 61.581 708.303 61.483 708.498 c
574
+ 61.077 709.301 60.644 710.409 60.644 710.644 c
575
+ 60.644 710.963 59.456 713.803 59.086 714.367 c
576
+ 58.934 714.600 58.871 714.852 58.948 714.929 c
577
+ 59.024 715.005 58.798 714.967 58.446 714.844 c
578
+ 57.805 714.621 l
579
+ 59.123 712.010 l
580
+ 59.906 710.458 60.440 709.142 60.440 708.763 c
581
+ 60.440 708.384 60.564 708.078 60.745 708.008 c
582
+ 60.913 707.944 61.051 707.733 61.051 707.540 c
583
+ 61.051 707.346 61.110 707.129 61.181 707.058 c
584
+ 61.412 706.827 61.662 707.131 61.662 707.644 c
585
+ h
586
+ 63.036 710.582 m
587
+ 63.117 711.620 63.070 711.771 62.396 712.631 c
588
+ 61.996 713.141 61.304 713.764 60.858 714.014 c
589
+ 60.048 714.470 l
590
+ 60.466 713.392 l
591
+ 60.696 712.799 61.098 711.810 61.359 711.193 c
592
+ 61.621 710.577 61.951 709.618 62.092 709.062 c
593
+ 62.351 708.050 l
594
+ 62.649 708.756 l
595
+ 62.814 709.145 62.988 709.966 63.036 710.582 c
596
+ h
597
+ 56.780 710.927 m
598
+ 57.471 711.400 57.582 711.599 57.585 712.373 c
599
+ 57.588 712.890 57.377 713.270 56.664 714.032 c
600
+ 55.412 715.370 54.794 715.613 53.817 715.149 c
601
+ 53.173 714.844 52.964 714.830 52.359 715.049 c
602
+ 51.970 715.189 51.633 715.273 51.609 715.235 c
603
+ 51.586 715.196 51.452 715.014 51.311 714.829 c
604
+ 51.093 714.543 51.167 714.387 51.810 713.781 c
605
+ 52.224 713.390 52.921 712.952 53.357 712.808 c
606
+ 54.094 712.565 54.230 712.587 55.289 713.123 c
607
+ 56.132 713.549 56.512 713.646 56.753 713.495 c
608
+ 57.535 713.005 57.131 711.421 56.094 710.909 c
609
+ 55.596 710.664 55.544 710.591 55.863 710.587 c
610
+ 56.090 710.585 56.503 710.738 56.780 710.927 c
611
+ h
612
+ 66.208 712.067 m
613
+ 66.004 712.323 64.996 713.285 63.968 714.205 c
614
+ 62.716 715.325 61.993 715.836 61.779 715.753 c
615
+ 61.602 715.686 61.458 715.560 61.458 715.474 c
616
+ 61.458 715.061 65.880 711.601 66.407 711.601 c
617
+ 66.502 711.601 66.412 711.811 66.208 712.067 c
618
+ h
619
+ 116.605 736.597 m
620
+ 103.924 749.279 l
621
+ 85.898 749.279 l
622
+ 67.872 749.279 l
623
+ 58.651 740.056 l
624
+ 49.429 730.833 l
625
+ 50.358 730.382 l
626
+ 51.334 729.907 52.387 729.791 52.599 730.134 c
627
+ 52.668 730.246 52.904 730.338 53.123 730.338 c
628
+ 53.342 730.338 54.001 730.606 54.588 730.933 c
629
+ 55.802 731.611 57.190 732.029 58.129 732.001 c
630
+ 58.836 731.979 60.260 731.310 60.681 730.802 c
631
+ 61.118 730.273 63.336 729.319 64.106 729.329 c
632
+ 64.498 729.334 65.185 729.470 65.633 729.631 c
633
+ 66.853 730.070 67.260 730.002 67.925 729.245 c
634
+ 68.354 728.756 68.568 728.251 68.669 727.490 c
635
+ 68.747 726.902 68.764 726.374 68.707 726.318 c
636
+ 68.569 726.179 71.664 724.223 74.186 722.854 c
637
+ 75.305 722.247 76.268 721.680 76.324 721.594 c
638
+ 76.381 721.509 77.390 721.069 78.566 720.617 c
639
+ 81.866 719.349 83.151 719.246 91.677 719.574 c
640
+ 100.857 719.927 110.730 719.883 114.513 719.471 c
641
+ 117.569 719.139 120.051 718.682 120.703 718.334 c
642
+ 120.924 718.215 121.272 718.117 121.475 718.115 c
643
+ 121.679 718.114 122.771 717.667 123.902 717.123 c
644
+ 126.110 716.061 128.069 714.456 128.789 713.120 c
645
+ 129.177 712.398 l
646
+ 129.231 718.156 l
647
+ 129.286 723.915 l
648
+ 116.605 736.597 l
649
+ h
650
+ 66.366 716.238 m
651
+ 66.816 717.541 67.157 721.698 66.738 720.766 c
652
+ 66.149 719.456 65.939 718.897 65.939 718.637 c
653
+ 65.939 718.482 65.746 717.913 65.510 717.371 c
654
+ 64.733 715.591 64.692 715.291 65.163 714.821 c
655
+ 65.666 714.318 65.730 714.393 66.366 716.238 c
656
+ h
657
+ 56.897 716.234 m
658
+ 57.111 717.303 57.470 717.565 58.721 717.565 c
659
+ 59.867 717.565 l
660
+ 59.046 718.316 l
661
+ 58.171 719.116 57.873 719.840 58.080 720.664 c
662
+ 58.188 721.095 58.324 721.172 58.967 721.167 c
663
+ 59.917 721.159 60.532 720.422 60.532 719.291 c
664
+ 60.532 718.870 60.597 718.525 60.676 718.525 c
665
+ 60.755 718.525 61.152 718.931 61.558 719.426 c
666
+ 62.634 720.740 63.731 723.423 63.885 725.119 c
667
+ 64.000 726.392 64.075 726.572 64.702 727.096 c
668
+ 65.625 727.866 66.533 728.064 66.891 727.574 c
669
+ 67.396 726.884 67.220 726.311 66.350 725.813 c
670
+ 65.656 725.415 65.048 724.761 65.488 724.885 c
671
+ 65.568 724.907 65.853 724.804 66.122 724.656 c
672
+ 66.662 724.357 66.599 724.298 67.517 725.946 c
673
+ 67.769 726.398 67.975 727.090 67.975 727.484 c
674
+ 67.974 728.138 67.897 728.231 67.076 728.569 c
675
+ 66.126 728.959 65.611 728.886 63.533 728.062 c
676
+ 62.919 727.819 62.828 727.833 62.515 728.219 c
677
+ 62.326 728.452 61.667 728.909 61.051 729.236 c
678
+ 60.001 729.792 59.783 729.829 57.589 729.829 c
679
+ 55.246 729.829 l
680
+ 53.380 728.942 l
681
+ 51.671 728.130 51.454 728.074 50.817 728.285 c
682
+ 50.434 728.411 49.860 728.786 49.543 729.117 c
683
+ 49.101 729.578 48.902 729.667 48.695 729.495 c
684
+ 48.313 729.178 48.352 728.904 48.939 727.800 c
685
+ 49.529 726.691 49.528 726.683 48.379 724.156 c
686
+ 47.440 722.090 47.430 721.334 48.311 719.408 c
687
+ 48.802 718.336 48.820 718.322 49.703 718.322 c
688
+ 50.472 718.322 50.633 718.246 50.843 717.786 c
689
+ 50.977 717.492 51.060 717.233 51.028 717.210 c
690
+ 50.996 717.188 50.658 717.046 50.277 716.894 c
691
+ 49.584 716.618 l
692
+ 50.351 716.352 l
693
+ 51.046 716.112 51.174 716.127 51.714 716.511 c
694
+ 52.388 716.992 52.388 716.993 50.999 718.465 c
695
+ 49.985 719.539 50.102 719.738 52.399 720.843 c
696
+ 52.738 721.006 53.188 721.331 53.400 721.565 c
697
+ 53.769 721.973 53.802 721.976 54.187 721.633 c
698
+ 54.728 721.152 55.145 720.120 55.145 719.263 c
699
+ 55.145 718.750 54.921 718.279 54.312 717.509 c
700
+ 53.855 716.930 53.511 716.425 53.549 716.387 c
701
+ 53.611 716.325 56.232 715.732 56.626 715.691 c
702
+ 56.713 715.682 56.835 715.926 56.897 716.234 c
703
+ h
704
+ 60.644 724.007 m
705
+ 60.476 724.103 60.047 724.244 59.691 724.320 c
706
+ 59.335 724.395 58.730 724.753 58.347 725.115 c
707
+ 57.964 725.476 57.273 725.896 56.812 726.049 c
708
+ 55.639 726.436 55.962 726.744 57.359 726.571 c
709
+ 59.311 726.329 60.527 725.632 61.177 724.381 c
710
+ 61.488 723.785 61.284 723.642 60.644 724.007 c
711
+ h
712
+ 49.784 724.912 m
713
+ 50.079 725.400 50.510 725.918 50.742 726.063 c
714
+ 51.743 726.688 54.737 727.145 54.737 726.672 c
715
+ 54.737 726.560 54.617 726.468 54.470 726.468 c
716
+ 54.322 726.468 53.154 725.921 51.873 725.251 c
717
+ 50.592 724.582 49.477 724.032 49.396 724.029 c
718
+ 49.315 724.027 49.490 724.424 49.784 724.912 c
719
+ h
720
+ 63.274 716.989 m
721
+ 63.589 717.152 64.000 717.608 64.187 718.002 c
722
+ 64.555 718.777 65.192 721.155 65.404 722.548 c
723
+ 65.529 723.363 65.508 723.413 65.047 723.413 c
724
+ 64.479 723.413 64.457 723.368 64.096 721.479 c
725
+ 63.946 720.695 63.687 719.838 63.521 719.576 c
726
+ 63.355 719.313 62.545 718.783 61.721 718.397 c
727
+ 60.896 718.011 60.270 717.618 60.328 717.523 c
728
+ 60.387 717.428 60.864 717.286 61.388 717.207 c
729
+ 62.065 717.106 62.258 717.011 62.053 716.882 c
730
+ 61.550 716.563 62.635 716.659 63.274 716.989 c
731
+ h
732
+ f
733
+ Q
734
+ Q
735
+ 1 w
736
+ /DeviceRGB CS
737
+ 0.000 0.000 0.000 SCN
738
+
739
+ BT
740
+ 451.4 745.6320000000001 Td
741
+ /F1.0 12 Tf
742
+ [<41> 30 <7765736f6d6520436f7270>] TJ
743
+ ET
744
+
745
+ 1 w
746
+ 0.000 0.000 0.000 SCN
747
+
748
+ BT
749
+ 451.4 734.224 Td
750
+ /F2.0 8 Tf
751
+ [<61> 20 <77> 10 <65736f6d65636f72> -30 <7040636f6d6d6f6e647265616d2e6e6574>] TJ
752
+ ET
753
+
754
+ 1 w
755
+ 0.000 0.000 0.000 SCN
756
+
757
+ BT
758
+ 36 626.504 Td
759
+ /F1.0 8 Tf
760
+ [<42696c6c2054> 80 <6f>] TJ
761
+ ET
762
+
763
+ 1 w
764
+ 0.000 0.000 0.000 SCN
765
+
766
+ BT
767
+ 36 612.984 Td
768
+ /F2.0 8 Tf
769
+ [<416c616e204a6f686e736f6e>] TJ
770
+ ET
771
+
772
+
773
+ BT
774
+ 36 603.7360000000001 Td
775
+ /F2.0 8 Tf
776
+ [<31303120546869732057> 40 <61> 30 <79>] TJ
777
+ ET
778
+
779
+
780
+ BT
781
+ 36 594.488 Td
782
+ /F2.0 8 Tf
783
+ [<536f6d65> 20 <7768657265> 15 <2c205343203232323232>] TJ
784
+ ET
785
+
786
+ 1 w
787
+ 0.000 0.000 0.000 SCN
788
+
789
+ BT
790
+ 376.0 626.504 Td
791
+ /F1.0 8 Tf
792
+ [<536869702054> 80 <6f>] TJ
793
+ ET
794
+
795
+ 1 w
796
+ 0.000 0.000 0.000 SCN
797
+
798
+ BT
799
+ 376.0 612.984 Td
800
+ /F2.0 8 Tf
801
+ [<46> 45 <72> 10 <616e6b204a6f686e736f6e>] TJ
802
+ ET
803
+
804
+
805
+ BT
806
+ 376.0 603.7360000000001 Td
807
+ /F2.0 8 Tf
808
+ [<31303120546861742057> 40 <61> 30 <79>] TJ
809
+ ET
810
+
811
+
812
+ BT
813
+ 376.0 594.488 Td
814
+ /F2.0 8 Tf
815
+ [<4f74686572> 50 <2c205343203232323239>] TJ
816
+ ET
817
+
818
+ 1 w
819
+ 0.000 0.000 0.000 SCN
820
+
821
+ BT
822
+ 37 560.24 Td
823
+ /F1.0 8 Tf
824
+ [<496e> 40 <76> 30 <6f69636520233a>] TJ
825
+ ET
826
+
827
+ 1 w
828
+ 0.000 0.000 0.000 SCN
829
+
830
+ BT
831
+ 146.816 560.24 Td
832
+ /F1.0 8 Tf
833
+ [<3132>] TJ
834
+ ET
835
+
836
+ 1 w
837
+ 0.000 0.000 0.000 SCN
838
+
839
+ BT
840
+ 37 548.72 Td
841
+ /F1.0 8 Tf
842
+ [<44756520446174653a>] TJ
843
+ ET
844
+
845
+ 1 w
846
+ 0.000 0.000 0.000 SCN
847
+
848
+ BT
849
+ 91.672 548.72 Td
850
+ /F1.0 8 Tf
851
+ [<4a616e> 10 <756172> -10 <792032322c2032303131>] TJ
852
+ ET
853
+
854
+ 1 w
855
+ 0.000 0.000 0.000 SCN
856
+
857
+ BT
858
+ 37 537.2 Td
859
+ /F1.0 8 Tf
860
+ [<50> 30 <61696420446174653a>] TJ
861
+ ET
862
+
863
+ 1 w
864
+ 0.000 0.000 0.000 SCN
865
+
866
+ BT
867
+ 88.04 537.2 Td
868
+ /F1.0 8 Tf
869
+ [<46656272756172> -10 <792032322c2032303132>] TJ
870
+ ET
871
+
872
+ 0.875 0.875 0.875 scn
873
+ 36.000 475.408 379.992 19.248 re
874
+ f
875
+ 0.000 0.000 0.000 scn
876
+ 0.875 0.875 0.875 scn
877
+ 415.992 475.408 57.344 19.248 re
878
+ f
879
+ 0.000 0.000 0.000 scn
880
+ 0.875 0.875 0.875 scn
881
+ 473.336 475.408 52.448 19.248 re
882
+ f
883
+ 0.000 0.000 0.000 scn
884
+ 0.875 0.875 0.875 scn
885
+ 525.784 475.408 50.216 19.248 re
886
+ f
887
+ 0.000 0.000 0.000 scn
888
+ 1.000 1.000 1.000 scn
889
+ 36.000 456.160 379.992 19.248 re
890
+ f
891
+ 0.000 0.000 0.000 scn
892
+ 1.000 1.000 1.000 scn
893
+ 415.992 456.160 57.344 19.248 re
894
+ f
895
+ 0.000 0.000 0.000 scn
896
+ 1.000 1.000 1.000 scn
897
+ 473.336 456.160 52.448 19.248 re
898
+ f
899
+ 0.000 0.000 0.000 scn
900
+ 1.000 1.000 1.000 scn
901
+ 525.784 456.160 50.216 19.248 re
902
+ f
903
+ 0.000 0.000 0.000 scn
904
+ 0.875 0.875 0.875 scn
905
+ 36.000 436.912 379.992 19.248 re
906
+ f
907
+ 0.000 0.000 0.000 scn
908
+ 0.875 0.875 0.875 scn
909
+ 415.992 436.912 57.344 19.248 re
910
+ f
911
+ 0.000 0.000 0.000 scn
912
+ 0.875 0.875 0.875 scn
913
+ 473.336 436.912 52.448 19.248 re
914
+ f
915
+ 0.000 0.000 0.000 scn
916
+ 0.875 0.875 0.875 scn
917
+ 525.784 436.912 50.216 19.248 re
918
+ f
919
+ 0.000 0.000 0.000 scn
920
+ 1.000 1.000 1.000 scn
921
+ 36.000 417.664 379.992 19.248 re
922
+ f
923
+ 0.000 0.000 0.000 scn
924
+ 1.000 1.000 1.000 scn
925
+ 415.992 417.664 57.344 19.248 re
926
+ f
927
+ 0.000 0.000 0.000 scn
928
+ 1.000 1.000 1.000 scn
929
+ 473.336 417.664 52.448 19.248 re
930
+ f
931
+ 0.000 0.000 0.000 scn
932
+ 1.000 1.000 1.000 scn
933
+ 525.784 417.664 50.216 19.248 re
934
+ f
935
+ 0.000 0.000 0.000 scn
936
+ 0.875 0.875 0.875 scn
937
+ 36.000 398.416 379.992 19.248 re
938
+ f
939
+ 0.000 0.000 0.000 scn
940
+ 0.875 0.875 0.875 scn
941
+ 415.992 398.416 57.344 19.248 re
942
+ f
943
+ 0.000 0.000 0.000 scn
944
+ 0.875 0.875 0.875 scn
945
+ 473.336 398.416 52.448 19.248 re
946
+ f
947
+ 0.000 0.000 0.000 scn
948
+ 0.875 0.875 0.875 scn
949
+ 525.784 398.416 50.216 19.248 re
950
+ f
951
+ 0.000 0.000 0.000 scn
952
+ 1.000 1.000 1.000 scn
953
+ 36.000 379.168 379.992 19.248 re
954
+ f
955
+ 0.000 0.000 0.000 scn
956
+ 1.000 1.000 1.000 scn
957
+ 415.992 379.168 57.344 19.248 re
958
+ f
959
+ 0.000 0.000 0.000 scn
960
+ 1.000 1.000 1.000 scn
961
+ 473.336 379.168 52.448 19.248 re
962
+ f
963
+ 0.000 0.000 0.000 scn
964
+ 1.000 1.000 1.000 scn
965
+ 525.784 379.168 50.216 19.248 re
966
+ f
967
+ 0.000 0.000 0.000 scn
968
+ 0.875 0.875 0.875 scn
969
+ 36.000 359.920 379.992 19.248 re
970
+ f
971
+ 0.000 0.000 0.000 scn
972
+ 0.875 0.875 0.875 scn
973
+ 415.992 359.920 57.344 19.248 re
974
+ f
975
+ 0.000 0.000 0.000 scn
976
+ 0.875 0.875 0.875 scn
977
+ 473.336 359.920 52.448 19.248 re
978
+ f
979
+ 0.000 0.000 0.000 scn
980
+ 0.875 0.875 0.875 scn
981
+ 525.784 359.920 50.216 19.248 re
982
+ f
983
+ 0.000 0.000 0.000 scn
984
+ 1.000 1.000 1.000 scn
985
+ 36.000 340.672 379.992 19.248 re
986
+ f
987
+ 0.000 0.000 0.000 scn
988
+ 1.000 1.000 1.000 scn
989
+ 415.992 340.672 57.344 19.248 re
990
+ f
991
+ 0.000 0.000 0.000 scn
992
+ 1.000 1.000 1.000 scn
993
+ 473.336 340.672 52.448 19.248 re
994
+ f
995
+ 0.000 0.000 0.000 scn
996
+ 1.000 1.000 1.000 scn
997
+ 525.784 340.672 50.216 19.248 re
998
+ f
999
+ 0.000 0.000 0.000 scn
1000
+ 0.875 0.875 0.875 scn
1001
+ 36.000 321.424 379.992 19.248 re
1002
+ f
1003
+ 0.000 0.000 0.000 scn
1004
+ 0.875 0.875 0.875 scn
1005
+ 415.992 321.424 57.344 19.248 re
1006
+ f
1007
+ 0.000 0.000 0.000 scn
1008
+ 0.875 0.875 0.875 scn
1009
+ 473.336 321.424 52.448 19.248 re
1010
+ f
1011
+ 0.000 0.000 0.000 scn
1012
+ 0.875 0.875 0.875 scn
1013
+ 525.784 321.424 50.216 19.248 re
1014
+ f
1015
+ 0.000 0.000 0.000 scn
1016
+ 1 w
1017
+ 0.000 0.000 0.000 SCN
1018
+
1019
+ BT
1020
+ 46 501.68000000000006 Td
1021
+ /F1.0 8 Tf
1022
+ [<4465736372697074696f6e>] TJ
1023
+ ET
1024
+
1025
+ 1 w
1026
+ 0.000 0.000 0.000 SCN
1027
+
1028
+ BT
1029
+ 426.492 501.68000000000006 Td
1030
+ /F1.0 8 Tf
1031
+ [<556e6974205072696365>] TJ
1032
+ ET
1033
+
1034
+ 1 w
1035
+ 0.000 0.000 0.000 SCN
1036
+
1037
+ BT
1038
+ 483.836 501.68000000000006 Td
1039
+ /F1.0 8 Tf
1040
+ [<5175616e74697479>] TJ
1041
+ ET
1042
+
1043
+ 1 w
1044
+ 0.000 0.000 0.000 SCN
1045
+
1046
+ BT
1047
+ 536.284 501.68000000000006 Td
1048
+ /F1.0 8 Tf
1049
+ [<416d6f756e74>] TJ
1050
+ ET
1051
+
1052
+ 0.5 w
1053
+ 0.800 0.800 0.800 SCN
1054
+ 36.000 494.656 m
1055
+ 415.992 494.656 l
1056
+ S
1057
+ [ ] 0 d
1058
+ 0.5 w
1059
+ 0.800 0.800 0.800 SCN
1060
+ 36.000 475.408 m
1061
+ 415.992 475.408 l
1062
+ S
1063
+ [ ] 0 d
1064
+ 0.5 w
1065
+ 0.800 0.800 0.800 SCN
1066
+ 36.000 494.906 m
1067
+ 36.000 475.158 l
1068
+ S
1069
+ [ ] 0 d
1070
+ 0.5 w
1071
+ 0.800 0.800 0.800 SCN
1072
+ 415.992 494.906 m
1073
+ 415.992 475.158 l
1074
+ S
1075
+ [ ] 0 d
1076
+ 1 w
1077
+ 0.000 0.000 0.000 SCN
1078
+
1079
+ BT
1080
+ 46 482.1600000000001 Td
1081
+ /F2.0 8 Tf
1082
+ [<50> 40 <616e7473>] TJ
1083
+ ET
1084
+
1085
+ 0.5 w
1086
+ 0.800 0.800 0.800 SCN
1087
+ 415.992 494.656 m
1088
+ 473.336 494.656 l
1089
+ S
1090
+ [ ] 0 d
1091
+ 0.5 w
1092
+ 0.800 0.800 0.800 SCN
1093
+ 415.992 475.408 m
1094
+ 473.336 475.408 l
1095
+ S
1096
+ [ ] 0 d
1097
+ 0.5 w
1098
+ 0.800 0.800 0.800 SCN
1099
+ 415.992 494.906 m
1100
+ 415.992 475.158 l
1101
+ S
1102
+ [ ] 0 d
1103
+ 0.5 w
1104
+ 0.800 0.800 0.800 SCN
1105
+ 473.336 494.906 m
1106
+ 473.336 475.158 l
1107
+ S
1108
+ [ ] 0 d
1109
+ 1 w
1110
+ 0.000 0.000 0.000 SCN
1111
+
1112
+ BT
1113
+ 444.32 482.1600000000001 Td
1114
+ /F2.0 8 Tf
1115
+ [<24302e3230>] TJ
1116
+ ET
1117
+
1118
+ 0.5 w
1119
+ 0.800 0.800 0.800 SCN
1120
+ 473.336 494.656 m
1121
+ 525.784 494.656 l
1122
+ S
1123
+ [ ] 0 d
1124
+ 0.5 w
1125
+ 0.800 0.800 0.800 SCN
1126
+ 473.336 475.408 m
1127
+ 525.784 475.408 l
1128
+ S
1129
+ [ ] 0 d
1130
+ 0.5 w
1131
+ 0.800 0.800 0.800 SCN
1132
+ 473.336 494.906 m
1133
+ 473.336 475.158 l
1134
+ S
1135
+ [ ] 0 d
1136
+ 0.5 w
1137
+ 0.800 0.800 0.800 SCN
1138
+ 525.784 494.906 m
1139
+ 525.784 475.158 l
1140
+ S
1141
+ [ ] 0 d
1142
+ 1 w
1143
+ 0.000 0.000 0.000 SCN
1144
+
1145
+ BT
1146
+ 505.664 482.1600000000001 Td
1147
+ /F2.0 8 Tf
1148
+ [<352e30>] TJ
1149
+ ET
1150
+
1151
+ 0.5 w
1152
+ 0.800 0.800 0.800 SCN
1153
+ 525.784 494.656 m
1154
+ 576.000 494.656 l
1155
+ S
1156
+ [ ] 0 d
1157
+ 0.5 w
1158
+ 0.800 0.800 0.800 SCN
1159
+ 525.784 475.408 m
1160
+ 576.000 475.408 l
1161
+ S
1162
+ [ ] 0 d
1163
+ 0.5 w
1164
+ 0.800 0.800 0.800 SCN
1165
+ 525.784 494.906 m
1166
+ 525.784 475.158 l
1167
+ S
1168
+ [ ] 0 d
1169
+ 0.5 w
1170
+ 0.800 0.800 0.800 SCN
1171
+ 576.000 494.906 m
1172
+ 576.000 475.158 l
1173
+ S
1174
+ [ ] 0 d
1175
+ 1 w
1176
+ 0.000 0.000 0.000 SCN
1177
+
1178
+ BT
1179
+ 546.984 482.1600000000001 Td
1180
+ /F2.0 8 Tf
1181
+ [<24312e3030>] TJ
1182
+ ET
1183
+
1184
+ 0.5 w
1185
+ 0.800 0.800 0.800 SCN
1186
+ 36.000 475.408 m
1187
+ 415.992 475.408 l
1188
+ S
1189
+ [ ] 0 d
1190
+ 0.5 w
1191
+ 0.800 0.800 0.800 SCN
1192
+ 36.000 456.160 m
1193
+ 415.992 456.160 l
1194
+ S
1195
+ [ ] 0 d
1196
+ 0.5 w
1197
+ 0.800 0.800 0.800 SCN
1198
+ 36.000 475.658 m
1199
+ 36.000 455.910 l
1200
+ S
1201
+ [ ] 0 d
1202
+ 0.5 w
1203
+ 0.800 0.800 0.800 SCN
1204
+ 415.992 475.658 m
1205
+ 415.992 455.910 l
1206
+ S
1207
+ [ ] 0 d
1208
+ 1 w
1209
+ 0.000 0.000 0.000 SCN
1210
+
1211
+ BT
1212
+ 46 462.91200000000003 Td
1213
+ /F2.0 8 Tf
1214
+ [<53686972> -40 <7473>] TJ
1215
+ ET
1216
+
1217
+ 0.5 w
1218
+ 0.800 0.800 0.800 SCN
1219
+ 415.992 475.408 m
1220
+ 473.336 475.408 l
1221
+ S
1222
+ [ ] 0 d
1223
+ 0.5 w
1224
+ 0.800 0.800 0.800 SCN
1225
+ 415.992 456.160 m
1226
+ 473.336 456.160 l
1227
+ S
1228
+ [ ] 0 d
1229
+ 0.5 w
1230
+ 0.800 0.800 0.800 SCN
1231
+ 415.992 475.658 m
1232
+ 415.992 455.910 l
1233
+ S
1234
+ [ ] 0 d
1235
+ 0.5 w
1236
+ 0.800 0.800 0.800 SCN
1237
+ 473.336 475.658 m
1238
+ 473.336 455.910 l
1239
+ S
1240
+ [ ] 0 d
1241
+ 1 w
1242
+ 0.000 0.000 0.000 SCN
1243
+
1244
+ BT
1245
+ 444.32 462.91200000000003 Td
1246
+ /F2.0 8 Tf
1247
+ [<24302e3130>] TJ
1248
+ ET
1249
+
1250
+ 0.5 w
1251
+ 0.800 0.800 0.800 SCN
1252
+ 473.336 475.408 m
1253
+ 525.784 475.408 l
1254
+ S
1255
+ [ ] 0 d
1256
+ 0.5 w
1257
+ 0.800 0.800 0.800 SCN
1258
+ 473.336 456.160 m
1259
+ 525.784 456.160 l
1260
+ S
1261
+ [ ] 0 d
1262
+ 0.5 w
1263
+ 0.800 0.800 0.800 SCN
1264
+ 473.336 475.658 m
1265
+ 473.336 455.910 l
1266
+ S
1267
+ [ ] 0 d
1268
+ 0.5 w
1269
+ 0.800 0.800 0.800 SCN
1270
+ 525.784 475.658 m
1271
+ 525.784 455.910 l
1272
+ S
1273
+ [ ] 0 d
1274
+ 1 w
1275
+ 0.000 0.000 0.000 SCN
1276
+
1277
+ BT
1278
+ 505.664 462.91200000000003 Td
1279
+ /F2.0 8 Tf
1280
+ [<332e30>] TJ
1281
+ ET
1282
+
1283
+ 0.5 w
1284
+ 0.800 0.800 0.800 SCN
1285
+ 525.784 475.408 m
1286
+ 576.000 475.408 l
1287
+ S
1288
+ [ ] 0 d
1289
+ 0.5 w
1290
+ 0.800 0.800 0.800 SCN
1291
+ 525.784 456.160 m
1292
+ 576.000 456.160 l
1293
+ S
1294
+ [ ] 0 d
1295
+ 0.5 w
1296
+ 0.800 0.800 0.800 SCN
1297
+ 525.784 475.658 m
1298
+ 525.784 455.910 l
1299
+ S
1300
+ [ ] 0 d
1301
+ 0.5 w
1302
+ 0.800 0.800 0.800 SCN
1303
+ 576.000 475.658 m
1304
+ 576.000 455.910 l
1305
+ S
1306
+ [ ] 0 d
1307
+ 1 w
1308
+ 0.000 0.000 0.000 SCN
1309
+
1310
+ BT
1311
+ 546.984 462.91200000000003 Td
1312
+ /F2.0 8 Tf
1313
+ [<24302e3330>] TJ
1314
+ ET
1315
+
1316
+ 0.5 w
1317
+ 0.800 0.800 0.800 SCN
1318
+ 36.000 456.160 m
1319
+ 415.992 456.160 l
1320
+ S
1321
+ [ ] 0 d
1322
+ 0.5 w
1323
+ 0.800 0.800 0.800 SCN
1324
+ 36.000 436.912 m
1325
+ 415.992 436.912 l
1326
+ S
1327
+ [ ] 0 d
1328
+ 0.5 w
1329
+ 0.800 0.800 0.800 SCN
1330
+ 36.000 456.410 m
1331
+ 36.000 436.662 l
1332
+ S
1333
+ [ ] 0 d
1334
+ 0.5 w
1335
+ 0.800 0.800 0.800 SCN
1336
+ 415.992 456.410 m
1337
+ 415.992 436.662 l
1338
+ S
1339
+ [ ] 0 d
1340
+ 1 w
1341
+ 0.000 0.000 0.000 SCN
1342
+
1343
+ BT
1344
+ 46 443.664 Td
1345
+ /F2.0 8 Tf
1346
+ [<48617473>] TJ
1347
+ ET
1348
+
1349
+ 0.5 w
1350
+ 0.800 0.800 0.800 SCN
1351
+ 415.992 456.160 m
1352
+ 473.336 456.160 l
1353
+ S
1354
+ [ ] 0 d
1355
+ 0.5 w
1356
+ 0.800 0.800 0.800 SCN
1357
+ 415.992 436.912 m
1358
+ 473.336 436.912 l
1359
+ S
1360
+ [ ] 0 d
1361
+ 0.5 w
1362
+ 0.800 0.800 0.800 SCN
1363
+ 415.992 456.410 m
1364
+ 415.992 436.662 l
1365
+ S
1366
+ [ ] 0 d
1367
+ 0.5 w
1368
+ 0.800 0.800 0.800 SCN
1369
+ 473.336 456.410 m
1370
+ 473.336 436.662 l
1371
+ S
1372
+ [ ] 0 d
1373
+ 1 w
1374
+ 0.000 0.000 0.000 SCN
1375
+
1376
+ BT
1377
+ 444.32 443.664 Td
1378
+ /F2.0 8 Tf
1379
+ [<24302e3035>] TJ
1380
+ ET
1381
+
1382
+ 0.5 w
1383
+ 0.800 0.800 0.800 SCN
1384
+ 473.336 456.160 m
1385
+ 525.784 456.160 l
1386
+ S
1387
+ [ ] 0 d
1388
+ 0.5 w
1389
+ 0.800 0.800 0.800 SCN
1390
+ 473.336 436.912 m
1391
+ 525.784 436.912 l
1392
+ S
1393
+ [ ] 0 d
1394
+ 0.5 w
1395
+ 0.800 0.800 0.800 SCN
1396
+ 473.336 456.410 m
1397
+ 473.336 436.662 l
1398
+ S
1399
+ [ ] 0 d
1400
+ 0.5 w
1401
+ 0.800 0.800 0.800 SCN
1402
+ 525.784 456.410 m
1403
+ 525.784 436.662 l
1404
+ S
1405
+ [ ] 0 d
1406
+ 1 w
1407
+ 0.000 0.000 0.000 SCN
1408
+
1409
+ BT
1410
+ 496.76800000000003 443.664 Td
1411
+ /F2.0 8 Tf
1412
+ [<3230302e30>] TJ
1413
+ ET
1414
+
1415
+ 0.5 w
1416
+ 0.800 0.800 0.800 SCN
1417
+ 525.784 456.160 m
1418
+ 576.000 456.160 l
1419
+ S
1420
+ [ ] 0 d
1421
+ 0.5 w
1422
+ 0.800 0.800 0.800 SCN
1423
+ 525.784 436.912 m
1424
+ 576.000 436.912 l
1425
+ S
1426
+ [ ] 0 d
1427
+ 0.5 w
1428
+ 0.800 0.800 0.800 SCN
1429
+ 525.784 456.410 m
1430
+ 525.784 436.662 l
1431
+ S
1432
+ [ ] 0 d
1433
+ 0.5 w
1434
+ 0.800 0.800 0.800 SCN
1435
+ 576.000 456.410 m
1436
+ 576.000 436.662 l
1437
+ S
1438
+ [ ] 0 d
1439
+ 1 w
1440
+ 0.000 0.000 0.000 SCN
1441
+
1442
+ BT
1443
+ 542.536 443.664 Td
1444
+ /F2.0 8 Tf
1445
+ [<2431302e3030>] TJ
1446
+ ET
1447
+
1448
+ 0.5 w
1449
+ 0.800 0.800 0.800 SCN
1450
+ 36.000 436.912 m
1451
+ 415.992 436.912 l
1452
+ S
1453
+ [ ] 0 d
1454
+ 0.5 w
1455
+ 0.800 0.800 0.800 SCN
1456
+ 36.000 417.664 m
1457
+ 415.992 417.664 l
1458
+ S
1459
+ [ ] 0 d
1460
+ 0.5 w
1461
+ 0.800 0.800 0.800 SCN
1462
+ 36.000 437.162 m
1463
+ 36.000 417.414 l
1464
+ S
1465
+ [ ] 0 d
1466
+ 0.5 w
1467
+ 0.800 0.800 0.800 SCN
1468
+ 415.992 437.162 m
1469
+ 415.992 417.414 l
1470
+ S
1471
+ [ ] 0 d
1472
+ 1 w
1473
+ 0.000 0.000 0.000 SCN
1474
+
1475
+ BT
1476
+ 46 424.41600000000005 Td
1477
+ /F2.0 8 Tf
1478
+ [<50> 40 <616e7473>] TJ
1479
+ ET
1480
+
1481
+ 0.5 w
1482
+ 0.800 0.800 0.800 SCN
1483
+ 415.992 436.912 m
1484
+ 473.336 436.912 l
1485
+ S
1486
+ [ ] 0 d
1487
+ 0.5 w
1488
+ 0.800 0.800 0.800 SCN
1489
+ 415.992 417.664 m
1490
+ 473.336 417.664 l
1491
+ S
1492
+ [ ] 0 d
1493
+ 0.5 w
1494
+ 0.800 0.800 0.800 SCN
1495
+ 415.992 437.162 m
1496
+ 415.992 417.414 l
1497
+ S
1498
+ [ ] 0 d
1499
+ 0.5 w
1500
+ 0.800 0.800 0.800 SCN
1501
+ 473.336 437.162 m
1502
+ 473.336 417.414 l
1503
+ S
1504
+ [ ] 0 d
1505
+ 1 w
1506
+ 0.000 0.000 0.000 SCN
1507
+
1508
+ BT
1509
+ 444.32 424.41600000000005 Td
1510
+ /F2.0 8 Tf
1511
+ [<24302e3230>] TJ
1512
+ ET
1513
+
1514
+ 0.5 w
1515
+ 0.800 0.800 0.800 SCN
1516
+ 473.336 436.912 m
1517
+ 525.784 436.912 l
1518
+ S
1519
+ [ ] 0 d
1520
+ 0.5 w
1521
+ 0.800 0.800 0.800 SCN
1522
+ 473.336 417.664 m
1523
+ 525.784 417.664 l
1524
+ S
1525
+ [ ] 0 d
1526
+ 0.5 w
1527
+ 0.800 0.800 0.800 SCN
1528
+ 473.336 437.162 m
1529
+ 473.336 417.414 l
1530
+ S
1531
+ [ ] 0 d
1532
+ 0.5 w
1533
+ 0.800 0.800 0.800 SCN
1534
+ 525.784 437.162 m
1535
+ 525.784 417.414 l
1536
+ S
1537
+ [ ] 0 d
1538
+ 1 w
1539
+ 0.000 0.000 0.000 SCN
1540
+
1541
+ BT
1542
+ 505.664 424.41600000000005 Td
1543
+ /F2.0 8 Tf
1544
+ [<352e30>] TJ
1545
+ ET
1546
+
1547
+ 0.5 w
1548
+ 0.800 0.800 0.800 SCN
1549
+ 525.784 436.912 m
1550
+ 576.000 436.912 l
1551
+ S
1552
+ [ ] 0 d
1553
+ 0.5 w
1554
+ 0.800 0.800 0.800 SCN
1555
+ 525.784 417.664 m
1556
+ 576.000 417.664 l
1557
+ S
1558
+ [ ] 0 d
1559
+ 0.5 w
1560
+ 0.800 0.800 0.800 SCN
1561
+ 525.784 437.162 m
1562
+ 525.784 417.414 l
1563
+ S
1564
+ [ ] 0 d
1565
+ 0.5 w
1566
+ 0.800 0.800 0.800 SCN
1567
+ 576.000 437.162 m
1568
+ 576.000 417.414 l
1569
+ S
1570
+ [ ] 0 d
1571
+ 1 w
1572
+ 0.000 0.000 0.000 SCN
1573
+
1574
+ BT
1575
+ 546.984 424.41600000000005 Td
1576
+ /F2.0 8 Tf
1577
+ [<24312e3030>] TJ
1578
+ ET
1579
+
1580
+ 0.5 w
1581
+ 0.800 0.800 0.800 SCN
1582
+ 36.000 417.664 m
1583
+ 415.992 417.664 l
1584
+ S
1585
+ [ ] 0 d
1586
+ 0.5 w
1587
+ 0.800 0.800 0.800 SCN
1588
+ 36.000 398.416 m
1589
+ 415.992 398.416 l
1590
+ S
1591
+ [ ] 0 d
1592
+ 0.5 w
1593
+ 0.800 0.800 0.800 SCN
1594
+ 36.000 417.914 m
1595
+ 36.000 398.166 l
1596
+ S
1597
+ [ ] 0 d
1598
+ 0.5 w
1599
+ 0.800 0.800 0.800 SCN
1600
+ 415.992 417.914 m
1601
+ 415.992 398.166 l
1602
+ S
1603
+ [ ] 0 d
1604
+ 1 w
1605
+ 0.000 0.000 0.000 SCN
1606
+
1607
+ BT
1608
+ 46 405.168 Td
1609
+ /F2.0 8 Tf
1610
+ [<53686972> -40 <7473>] TJ
1611
+ ET
1612
+
1613
+ 0.5 w
1614
+ 0.800 0.800 0.800 SCN
1615
+ 415.992 417.664 m
1616
+ 473.336 417.664 l
1617
+ S
1618
+ [ ] 0 d
1619
+ 0.5 w
1620
+ 0.800 0.800 0.800 SCN
1621
+ 415.992 398.416 m
1622
+ 473.336 398.416 l
1623
+ S
1624
+ [ ] 0 d
1625
+ 0.5 w
1626
+ 0.800 0.800 0.800 SCN
1627
+ 415.992 417.914 m
1628
+ 415.992 398.166 l
1629
+ S
1630
+ [ ] 0 d
1631
+ 0.5 w
1632
+ 0.800 0.800 0.800 SCN
1633
+ 473.336 417.914 m
1634
+ 473.336 398.166 l
1635
+ S
1636
+ [ ] 0 d
1637
+ 1 w
1638
+ 0.000 0.000 0.000 SCN
1639
+
1640
+ BT
1641
+ 444.32 405.168 Td
1642
+ /F2.0 8 Tf
1643
+ [<24302e3130>] TJ
1644
+ ET
1645
+
1646
+ 0.5 w
1647
+ 0.800 0.800 0.800 SCN
1648
+ 473.336 417.664 m
1649
+ 525.784 417.664 l
1650
+ S
1651
+ [ ] 0 d
1652
+ 0.5 w
1653
+ 0.800 0.800 0.800 SCN
1654
+ 473.336 398.416 m
1655
+ 525.784 398.416 l
1656
+ S
1657
+ [ ] 0 d
1658
+ 0.5 w
1659
+ 0.800 0.800 0.800 SCN
1660
+ 473.336 417.914 m
1661
+ 473.336 398.166 l
1662
+ S
1663
+ [ ] 0 d
1664
+ 0.5 w
1665
+ 0.800 0.800 0.800 SCN
1666
+ 525.784 417.914 m
1667
+ 525.784 398.166 l
1668
+ S
1669
+ [ ] 0 d
1670
+ 1 w
1671
+ 0.000 0.000 0.000 SCN
1672
+
1673
+ BT
1674
+ 505.664 405.168 Td
1675
+ /F2.0 8 Tf
1676
+ [<332e30>] TJ
1677
+ ET
1678
+
1679
+ 0.5 w
1680
+ 0.800 0.800 0.800 SCN
1681
+ 525.784 417.664 m
1682
+ 576.000 417.664 l
1683
+ S
1684
+ [ ] 0 d
1685
+ 0.5 w
1686
+ 0.800 0.800 0.800 SCN
1687
+ 525.784 398.416 m
1688
+ 576.000 398.416 l
1689
+ S
1690
+ [ ] 0 d
1691
+ 0.5 w
1692
+ 0.800 0.800 0.800 SCN
1693
+ 525.784 417.914 m
1694
+ 525.784 398.166 l
1695
+ S
1696
+ [ ] 0 d
1697
+ 0.5 w
1698
+ 0.800 0.800 0.800 SCN
1699
+ 576.000 417.914 m
1700
+ 576.000 398.166 l
1701
+ S
1702
+ [ ] 0 d
1703
+ 1 w
1704
+ 0.000 0.000 0.000 SCN
1705
+
1706
+ BT
1707
+ 546.984 405.168 Td
1708
+ /F2.0 8 Tf
1709
+ [<24302e3330>] TJ
1710
+ ET
1711
+
1712
+ 0.5 w
1713
+ 0.800 0.800 0.800 SCN
1714
+ 36.000 398.416 m
1715
+ 415.992 398.416 l
1716
+ S
1717
+ [ ] 0 d
1718
+ 0.5 w
1719
+ 0.800 0.800 0.800 SCN
1720
+ 36.000 379.168 m
1721
+ 415.992 379.168 l
1722
+ S
1723
+ [ ] 0 d
1724
+ 0.5 w
1725
+ 0.800 0.800 0.800 SCN
1726
+ 36.000 398.666 m
1727
+ 36.000 378.918 l
1728
+ S
1729
+ [ ] 0 d
1730
+ 0.5 w
1731
+ 0.800 0.800 0.800 SCN
1732
+ 415.992 398.666 m
1733
+ 415.992 378.918 l
1734
+ S
1735
+ [ ] 0 d
1736
+ 1 w
1737
+ 0.000 0.000 0.000 SCN
1738
+
1739
+ BT
1740
+ 46 385.9200000000001 Td
1741
+ /F2.0 8 Tf
1742
+ [<48617473>] TJ
1743
+ ET
1744
+
1745
+ 0.5 w
1746
+ 0.800 0.800 0.800 SCN
1747
+ 415.992 398.416 m
1748
+ 473.336 398.416 l
1749
+ S
1750
+ [ ] 0 d
1751
+ 0.5 w
1752
+ 0.800 0.800 0.800 SCN
1753
+ 415.992 379.168 m
1754
+ 473.336 379.168 l
1755
+ S
1756
+ [ ] 0 d
1757
+ 0.5 w
1758
+ 0.800 0.800 0.800 SCN
1759
+ 415.992 398.666 m
1760
+ 415.992 378.918 l
1761
+ S
1762
+ [ ] 0 d
1763
+ 0.5 w
1764
+ 0.800 0.800 0.800 SCN
1765
+ 473.336 398.666 m
1766
+ 473.336 378.918 l
1767
+ S
1768
+ [ ] 0 d
1769
+ 1 w
1770
+ 0.000 0.000 0.000 SCN
1771
+
1772
+ BT
1773
+ 444.32 385.9200000000001 Td
1774
+ /F2.0 8 Tf
1775
+ [<24302e3035>] TJ
1776
+ ET
1777
+
1778
+ 0.5 w
1779
+ 0.800 0.800 0.800 SCN
1780
+ 473.336 398.416 m
1781
+ 525.784 398.416 l
1782
+ S
1783
+ [ ] 0 d
1784
+ 0.5 w
1785
+ 0.800 0.800 0.800 SCN
1786
+ 473.336 379.168 m
1787
+ 525.784 379.168 l
1788
+ S
1789
+ [ ] 0 d
1790
+ 0.5 w
1791
+ 0.800 0.800 0.800 SCN
1792
+ 473.336 398.666 m
1793
+ 473.336 378.918 l
1794
+ S
1795
+ [ ] 0 d
1796
+ 0.5 w
1797
+ 0.800 0.800 0.800 SCN
1798
+ 525.784 398.666 m
1799
+ 525.784 378.918 l
1800
+ S
1801
+ [ ] 0 d
1802
+ 1 w
1803
+ 0.000 0.000 0.000 SCN
1804
+
1805
+ BT
1806
+ 496.76800000000003 385.9200000000001 Td
1807
+ /F2.0 8 Tf
1808
+ [<3230302e30>] TJ
1809
+ ET
1810
+
1811
+ 0.5 w
1812
+ 0.800 0.800 0.800 SCN
1813
+ 525.784 398.416 m
1814
+ 576.000 398.416 l
1815
+ S
1816
+ [ ] 0 d
1817
+ 0.5 w
1818
+ 0.800 0.800 0.800 SCN
1819
+ 525.784 379.168 m
1820
+ 576.000 379.168 l
1821
+ S
1822
+ [ ] 0 d
1823
+ 0.5 w
1824
+ 0.800 0.800 0.800 SCN
1825
+ 525.784 398.666 m
1826
+ 525.784 378.918 l
1827
+ S
1828
+ [ ] 0 d
1829
+ 0.5 w
1830
+ 0.800 0.800 0.800 SCN
1831
+ 576.000 398.666 m
1832
+ 576.000 378.918 l
1833
+ S
1834
+ [ ] 0 d
1835
+ 1 w
1836
+ 0.000 0.000 0.000 SCN
1837
+
1838
+ BT
1839
+ 542.536 385.9200000000001 Td
1840
+ /F2.0 8 Tf
1841
+ [<2431302e3030>] TJ
1842
+ ET
1843
+
1844
+ 0.5 w
1845
+ 0.800 0.800 0.800 SCN
1846
+ 36.000 379.168 m
1847
+ 415.992 379.168 l
1848
+ S
1849
+ [ ] 0 d
1850
+ 0.5 w
1851
+ 0.800 0.800 0.800 SCN
1852
+ 36.000 359.920 m
1853
+ 415.992 359.920 l
1854
+ S
1855
+ [ ] 0 d
1856
+ 0.5 w
1857
+ 0.800 0.800 0.800 SCN
1858
+ 36.000 379.418 m
1859
+ 36.000 359.670 l
1860
+ S
1861
+ [ ] 0 d
1862
+ 0.5 w
1863
+ 0.800 0.800 0.800 SCN
1864
+ 415.992 379.418 m
1865
+ 415.992 359.670 l
1866
+ S
1867
+ [ ] 0 d
1868
+ 1 w
1869
+ 0.000 0.000 0.000 SCN
1870
+
1871
+ BT
1872
+ 46 366.672 Td
1873
+ /F2.0 8 Tf
1874
+ [<50> 40 <616e7473>] TJ
1875
+ ET
1876
+
1877
+ 0.5 w
1878
+ 0.800 0.800 0.800 SCN
1879
+ 415.992 379.168 m
1880
+ 473.336 379.168 l
1881
+ S
1882
+ [ ] 0 d
1883
+ 0.5 w
1884
+ 0.800 0.800 0.800 SCN
1885
+ 415.992 359.920 m
1886
+ 473.336 359.920 l
1887
+ S
1888
+ [ ] 0 d
1889
+ 0.5 w
1890
+ 0.800 0.800 0.800 SCN
1891
+ 415.992 379.418 m
1892
+ 415.992 359.670 l
1893
+ S
1894
+ [ ] 0 d
1895
+ 0.5 w
1896
+ 0.800 0.800 0.800 SCN
1897
+ 473.336 379.418 m
1898
+ 473.336 359.670 l
1899
+ S
1900
+ [ ] 0 d
1901
+ 1 w
1902
+ 0.000 0.000 0.000 SCN
1903
+
1904
+ BT
1905
+ 444.32 366.672 Td
1906
+ /F2.0 8 Tf
1907
+ [<24302e3230>] TJ
1908
+ ET
1909
+
1910
+ 0.5 w
1911
+ 0.800 0.800 0.800 SCN
1912
+ 473.336 379.168 m
1913
+ 525.784 379.168 l
1914
+ S
1915
+ [ ] 0 d
1916
+ 0.5 w
1917
+ 0.800 0.800 0.800 SCN
1918
+ 473.336 359.920 m
1919
+ 525.784 359.920 l
1920
+ S
1921
+ [ ] 0 d
1922
+ 0.5 w
1923
+ 0.800 0.800 0.800 SCN
1924
+ 473.336 379.418 m
1925
+ 473.336 359.670 l
1926
+ S
1927
+ [ ] 0 d
1928
+ 0.5 w
1929
+ 0.800 0.800 0.800 SCN
1930
+ 525.784 379.418 m
1931
+ 525.784 359.670 l
1932
+ S
1933
+ [ ] 0 d
1934
+ 1 w
1935
+ 0.000 0.000 0.000 SCN
1936
+
1937
+ BT
1938
+ 505.664 366.672 Td
1939
+ /F2.0 8 Tf
1940
+ [<352e30>] TJ
1941
+ ET
1942
+
1943
+ 0.5 w
1944
+ 0.800 0.800 0.800 SCN
1945
+ 525.784 379.168 m
1946
+ 576.000 379.168 l
1947
+ S
1948
+ [ ] 0 d
1949
+ 0.5 w
1950
+ 0.800 0.800 0.800 SCN
1951
+ 525.784 359.920 m
1952
+ 576.000 359.920 l
1953
+ S
1954
+ [ ] 0 d
1955
+ 0.5 w
1956
+ 0.800 0.800 0.800 SCN
1957
+ 525.784 379.418 m
1958
+ 525.784 359.670 l
1959
+ S
1960
+ [ ] 0 d
1961
+ 0.5 w
1962
+ 0.800 0.800 0.800 SCN
1963
+ 576.000 379.418 m
1964
+ 576.000 359.670 l
1965
+ S
1966
+ [ ] 0 d
1967
+ 1 w
1968
+ 0.000 0.000 0.000 SCN
1969
+
1970
+ BT
1971
+ 546.984 366.672 Td
1972
+ /F2.0 8 Tf
1973
+ [<24312e3030>] TJ
1974
+ ET
1975
+
1976
+ 0.5 w
1977
+ 0.800 0.800 0.800 SCN
1978
+ 36.000 359.920 m
1979
+ 415.992 359.920 l
1980
+ S
1981
+ [ ] 0 d
1982
+ 0.5 w
1983
+ 0.800 0.800 0.800 SCN
1984
+ 36.000 340.672 m
1985
+ 415.992 340.672 l
1986
+ S
1987
+ [ ] 0 d
1988
+ 0.5 w
1989
+ 0.800 0.800 0.800 SCN
1990
+ 36.000 360.170 m
1991
+ 36.000 340.422 l
1992
+ S
1993
+ [ ] 0 d
1994
+ 0.5 w
1995
+ 0.800 0.800 0.800 SCN
1996
+ 415.992 360.170 m
1997
+ 415.992 340.422 l
1998
+ S
1999
+ [ ] 0 d
2000
+ 1 w
2001
+ 0.000 0.000 0.000 SCN
2002
+
2003
+ BT
2004
+ 46 347.4240000000001 Td
2005
+ /F2.0 8 Tf
2006
+ [<53686972> -40 <7473>] TJ
2007
+ ET
2008
+
2009
+ 0.5 w
2010
+ 0.800 0.800 0.800 SCN
2011
+ 415.992 359.920 m
2012
+ 473.336 359.920 l
2013
+ S
2014
+ [ ] 0 d
2015
+ 0.5 w
2016
+ 0.800 0.800 0.800 SCN
2017
+ 415.992 340.672 m
2018
+ 473.336 340.672 l
2019
+ S
2020
+ [ ] 0 d
2021
+ 0.5 w
2022
+ 0.800 0.800 0.800 SCN
2023
+ 415.992 360.170 m
2024
+ 415.992 340.422 l
2025
+ S
2026
+ [ ] 0 d
2027
+ 0.5 w
2028
+ 0.800 0.800 0.800 SCN
2029
+ 473.336 360.170 m
2030
+ 473.336 340.422 l
2031
+ S
2032
+ [ ] 0 d
2033
+ 1 w
2034
+ 0.000 0.000 0.000 SCN
2035
+
2036
+ BT
2037
+ 444.32 347.4240000000001 Td
2038
+ /F2.0 8 Tf
2039
+ [<24302e3130>] TJ
2040
+ ET
2041
+
2042
+ 0.5 w
2043
+ 0.800 0.800 0.800 SCN
2044
+ 473.336 359.920 m
2045
+ 525.784 359.920 l
2046
+ S
2047
+ [ ] 0 d
2048
+ 0.5 w
2049
+ 0.800 0.800 0.800 SCN
2050
+ 473.336 340.672 m
2051
+ 525.784 340.672 l
2052
+ S
2053
+ [ ] 0 d
2054
+ 0.5 w
2055
+ 0.800 0.800 0.800 SCN
2056
+ 473.336 360.170 m
2057
+ 473.336 340.422 l
2058
+ S
2059
+ [ ] 0 d
2060
+ 0.5 w
2061
+ 0.800 0.800 0.800 SCN
2062
+ 525.784 360.170 m
2063
+ 525.784 340.422 l
2064
+ S
2065
+ [ ] 0 d
2066
+ 1 w
2067
+ 0.000 0.000 0.000 SCN
2068
+
2069
+ BT
2070
+ 505.664 347.4240000000001 Td
2071
+ /F2.0 8 Tf
2072
+ [<332e30>] TJ
2073
+ ET
2074
+
2075
+ 0.5 w
2076
+ 0.800 0.800 0.800 SCN
2077
+ 525.784 359.920 m
2078
+ 576.000 359.920 l
2079
+ S
2080
+ [ ] 0 d
2081
+ 0.5 w
2082
+ 0.800 0.800 0.800 SCN
2083
+ 525.784 340.672 m
2084
+ 576.000 340.672 l
2085
+ S
2086
+ [ ] 0 d
2087
+ 0.5 w
2088
+ 0.800 0.800 0.800 SCN
2089
+ 525.784 360.170 m
2090
+ 525.784 340.422 l
2091
+ S
2092
+ [ ] 0 d
2093
+ 0.5 w
2094
+ 0.800 0.800 0.800 SCN
2095
+ 576.000 360.170 m
2096
+ 576.000 340.422 l
2097
+ S
2098
+ [ ] 0 d
2099
+ 1 w
2100
+ 0.000 0.000 0.000 SCN
2101
+
2102
+ BT
2103
+ 546.984 347.4240000000001 Td
2104
+ /F2.0 8 Tf
2105
+ [<24302e3330>] TJ
2106
+ ET
2107
+
2108
+ 0.5 w
2109
+ 0.800 0.800 0.800 SCN
2110
+ 36.000 340.672 m
2111
+ 415.992 340.672 l
2112
+ S
2113
+ [ ] 0 d
2114
+ 0.5 w
2115
+ 0.800 0.800 0.800 SCN
2116
+ 36.000 321.424 m
2117
+ 415.992 321.424 l
2118
+ S
2119
+ [ ] 0 d
2120
+ 0.5 w
2121
+ 0.800 0.800 0.800 SCN
2122
+ 36.000 340.922 m
2123
+ 36.000 321.174 l
2124
+ S
2125
+ [ ] 0 d
2126
+ 0.5 w
2127
+ 0.800 0.800 0.800 SCN
2128
+ 415.992 340.922 m
2129
+ 415.992 321.174 l
2130
+ S
2131
+ [ ] 0 d
2132
+ 1 w
2133
+ 0.000 0.000 0.000 SCN
2134
+
2135
+ BT
2136
+ 46 328.17600000000004 Td
2137
+ /F2.0 8 Tf
2138
+ [<48617473>] TJ
2139
+ ET
2140
+
2141
+ 0.5 w
2142
+ 0.800 0.800 0.800 SCN
2143
+ 415.992 340.672 m
2144
+ 473.336 340.672 l
2145
+ S
2146
+ [ ] 0 d
2147
+ 0.5 w
2148
+ 0.800 0.800 0.800 SCN
2149
+ 415.992 321.424 m
2150
+ 473.336 321.424 l
2151
+ S
2152
+ [ ] 0 d
2153
+ 0.5 w
2154
+ 0.800 0.800 0.800 SCN
2155
+ 415.992 340.922 m
2156
+ 415.992 321.174 l
2157
+ S
2158
+ [ ] 0 d
2159
+ 0.5 w
2160
+ 0.800 0.800 0.800 SCN
2161
+ 473.336 340.922 m
2162
+ 473.336 321.174 l
2163
+ S
2164
+ [ ] 0 d
2165
+ 1 w
2166
+ 0.000 0.000 0.000 SCN
2167
+
2168
+ BT
2169
+ 444.32 328.17600000000004 Td
2170
+ /F2.0 8 Tf
2171
+ [<24302e3035>] TJ
2172
+ ET
2173
+
2174
+ 0.5 w
2175
+ 0.800 0.800 0.800 SCN
2176
+ 473.336 340.672 m
2177
+ 525.784 340.672 l
2178
+ S
2179
+ [ ] 0 d
2180
+ 0.5 w
2181
+ 0.800 0.800 0.800 SCN
2182
+ 473.336 321.424 m
2183
+ 525.784 321.424 l
2184
+ S
2185
+ [ ] 0 d
2186
+ 0.5 w
2187
+ 0.800 0.800 0.800 SCN
2188
+ 473.336 340.922 m
2189
+ 473.336 321.174 l
2190
+ S
2191
+ [ ] 0 d
2192
+ 0.5 w
2193
+ 0.800 0.800 0.800 SCN
2194
+ 525.784 340.922 m
2195
+ 525.784 321.174 l
2196
+ S
2197
+ [ ] 0 d
2198
+ 1 w
2199
+ 0.000 0.000 0.000 SCN
2200
+
2201
+ BT
2202
+ 496.76800000000003 328.17600000000004 Td
2203
+ /F2.0 8 Tf
2204
+ [<3230302e30>] TJ
2205
+ ET
2206
+
2207
+ 0.5 w
2208
+ 0.800 0.800 0.800 SCN
2209
+ 525.784 340.672 m
2210
+ 576.000 340.672 l
2211
+ S
2212
+ [ ] 0 d
2213
+ 0.5 w
2214
+ 0.800 0.800 0.800 SCN
2215
+ 525.784 321.424 m
2216
+ 576.000 321.424 l
2217
+ S
2218
+ [ ] 0 d
2219
+ 0.5 w
2220
+ 0.800 0.800 0.800 SCN
2221
+ 525.784 340.922 m
2222
+ 525.784 321.174 l
2223
+ S
2224
+ [ ] 0 d
2225
+ 0.5 w
2226
+ 0.800 0.800 0.800 SCN
2227
+ 576.000 340.922 m
2228
+ 576.000 321.174 l
2229
+ S
2230
+ [ ] 0 d
2231
+ 1 w
2232
+ 0.000 0.000 0.000 SCN
2233
+
2234
+ BT
2235
+ 542.536 328.17600000000004 Td
2236
+ /F2.0 8 Tf
2237
+ [<2431302e3030>] TJ
2238
+ ET
2239
+
2240
+ 1 w
2241
+ 0.000 0.000 0.000 SCN
2242
+
2243
+ BT
2244
+ 489.64 308.9280000000001 Td
2245
+ /F1.0 8 Tf
2246
+ [<537562746f74616c3a>] TJ
2247
+ ET
2248
+
2249
+ 1 w
2250
+ 0.000 0.000 0.000 SCN
2251
+
2252
+ BT
2253
+ 547.536 308.9280000000001 Td
2254
+ /F2.0 8 Tf
2255
+ [<2433332e3930>] TJ
2256
+ ET
2257
+
2258
+ 1 w
2259
+ 0.000 0.000 0.000 SCN
2260
+
2261
+ BT
2262
+ 489.64 289.40800000000013 Td
2263
+ /F1.0 8 Tf
2264
+ [<54> 80 <61783a>] TJ
2265
+ ET
2266
+
2267
+ 1 w
2268
+ 0.000 0.000 0.000 SCN
2269
+
2270
+ BT
2271
+ 551.9839999999999 289.40800000000013 Td
2272
+ /F2.0 8 Tf
2273
+ [<24332e3339>] TJ
2274
+ ET
2275
+
2276
+ 1 w
2277
+ 0.000 0.000 0.000 SCN
2278
+
2279
+ BT
2280
+ 489.64 267.0160000000001 Td
2281
+ /F1.0 12 Tf
2282
+ [<54> 80 <6f74616c3a>] TJ
2283
+ ET
2284
+
2285
+ 1 w
2286
+ 0.000 0.000 0.000 SCN
2287
+
2288
+ BT
2289
+ 535.304 267.0160000000001 Td
2290
+ /F2.0 12 Tf
2291
+ [<2433372e3239>] TJ
2292
+ ET
2293
+
2294
+
2295
+ BT
2296
+ 36 220.3600000000001 Td
2297
+ /F1.0 8 Tf
2298
+ [<4e6f746573>] TJ
2299
+ ET
2300
+
2301
+ 0.5 w
2302
+ 0.800 0.800 0.800 SCN
2303
+ 36.000 213.584 m
2304
+ 576.000 213.584 l
2305
+ S
2306
+
2307
+ BT
2308
+ 36 200.8400000000001 Td
2309
+ /F2.0 8 Tf
2310
+ [<54686573652061726520736f6d65206372> 10 <617a792061> 20 <77> 10 <65736f6d65206e6f74657321>] TJ
2311
+ ET
2312
+
2313
+ Q
2314
+
2315
+ endstream
2316
+ endobj
2317
+ 5 0 obj
2318
+ << /Type /Page
2319
+ /Parent 3 0 R
2320
+ /MediaBox [0 0 612.0 792.0]
2321
+ /Contents 4 0 R
2322
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
2323
+ /Font << /F1.0 6 0 R
2324
+ /F2.0 7 0 R
2325
+ >>
2326
+ >>
2327
+ >>
2328
+ endobj
2329
+ 6 0 obj
2330
+ << /Type /Font
2331
+ /Subtype /Type1
2332
+ /BaseFont /Helvetica-Bold
2333
+ /Encoding /WinAnsiEncoding
2334
+ >>
2335
+ endobj
2336
+ 7 0 obj
2337
+ << /Type /Font
2338
+ /Subtype /Type1
2339
+ /BaseFont /Helvetica
2340
+ /Encoding /WinAnsiEncoding
2341
+ >>
2342
+ endobj
2343
+ xref
2344
+ 0 8
2345
+ 0000000000 65535 f
2346
+ 0000000015 00000 n
2347
+ 0000000109 00000 n
2348
+ 0000000158 00000 n
2349
+ 0000000215 00000 n
2350
+ 0000044511 00000 n
2351
+ 0000044701 00000 n
2352
+ 0000044803 00000 n
2353
+ trailer
2354
+ << /Size 8
2355
+ /Root 2 0 R
2356
+ /Info 1 0 R
2357
+ >>
2358
+ startxref
2359
+ 44900
2360
+ %%EOF