refinerycms-core 4.0.3 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/config/refinery_core_manifest.js +9 -1
- data/app/assets/images/refinery/logo-large.png +0 -0
- data/app/assets/images/refinery/logo-medium.png +0 -0
- data/app/assets/images/refinery/logo-site-bar.png +0 -0
- data/app/assets/images/refinery/logo-small-medium.png +0 -0
- data/app/assets/images/refinery/logo-small.png +0 -0
- data/app/assets/images/refinery/logo-tiny.png +0 -0
- data/app/assets/images/refinery/logo.png +0 -0
- data/app/assets/images/refinery/refinery-cms-logo.svg +1 -558
- data/app/assets/javascripts/refinery/admin.js.erb +37 -21
- data/app/assets/javascripts/refinery/ajaxy_pagination.js +16 -0
- data/app/assets/javascripts/refinery/image_crop.js +101 -0
- data/app/assets/javascripts/refinery/interface.js.erb +42 -0
- data/app/assets/javascripts/refinery/refinery.js.erb +3 -3
- data/app/assets/javascripts/refinery/submit_continue.js.erb +23 -0
- data/app/assets/stylesheets/refinery/components/_file_type_icons.scss +36 -0
- data/app/assets/stylesheets/refinery/components/_icons.scss +89 -47
- data/app/assets/stylesheets/refinery/global/_colours.scss +12 -5
- data/app/assets/stylesheets/refinery/mixins/_images.scss +99 -0
- data/app/assets/stylesheets/refinery/mixins/_locales.scss +22 -0
- data/app/assets/stylesheets/refinery/mixins/_rounded.scss +9 -23
- data/app/assets/stylesheets/refinery/plugins/_ui.scss +7 -4
- data/app/assets/stylesheets/refinery/refinery.scss +4 -1
- data/app/assets/stylesheets/refinery/sections/_layout.scss +490 -265
- data/app/controllers/refinery/admin/dialogs_controller.rb +6 -6
- data/app/helpers/refinery/action_helper.rb +75 -0
- data/app/helpers/refinery/icon_helper.rb +51 -0
- data/app/helpers/refinery/image_helper.rb +1 -1
- data/app/helpers/refinery/pagination_helper.rb +1 -0
- data/app/helpers/refinery/site_bar_helper.rb +10 -7
- data/app/helpers/refinery/tag_helper.rb +5 -36
- data/app/helpers/refinery/translation_helper.rb +12 -1
- data/app/views/refinery/_head.html.erb +1 -0
- data/app/views/refinery/_matomo_analytics.html.erb +18 -0
- data/app/views/refinery/_site_bar.html.erb +9 -9
- data/app/views/refinery/admin/_error_messages.html.erb +4 -4
- data/app/views/refinery/admin/_locale_picker.html.erb +8 -14
- data/config/initializers/assets.rb +5 -1
- data/config/initializers/zeitwerk.rb +12 -0
- data/config/locales/en.yml +3 -1
- data/config/locales/sk.yml +7 -0
- data/lib/generators/refinery/cms/cms_generator.rb +24 -20
- data/lib/generators/refinery/core/templates/config/initializers/refinery/core.rb.erb +5 -0
- data/lib/generators/refinery/dummy/dummy_generator.rb +32 -10
- data/lib/generators/refinery/dummy/templates/rails/application.rb.erb +27 -7
- data/lib/generators/refinery/dummy/templates/rails/boot.rb.erb +1 -2
- data/lib/generators/refinery/dummy/templates/rails/database.yml +55 -14
- data/lib/generators/refinery/dummy/templates/rails/manifest.js +3 -0
- data/lib/generators/refinery/dummy/templates/rails/storage.yml +7 -0
- data/lib/generators/refinery/engine/engine_generator.rb +1 -0
- data/lib/generators/refinery/engine/templates/Gemfile +1 -2
- data/lib/generators/refinery/engine/templates/Rakefile +2 -2
- data/lib/generators/refinery/engine/templates/app/controllers/refinery/namespace/admin/plural_name_controller.rb.erb +1 -1
- data/lib/generators/refinery/engine/templates/app/controllers/refinery/namespace/plural_name_controller.rb.erb +1 -1
- data/lib/generators/refinery/engine/templates/app/models/refinery/namespace/singular_name.rb.erb +1 -0
- data/lib/generators/refinery/engine/templates/app/views/refinery/namespace/admin/plural_name/_form.html.erb +1 -1
- data/lib/generators/refinery/engine/templates/db/migrate/1_create_namespace_plural_name.rb.erb +15 -4
- data/lib/generators/refinery/engine/templates/lib/generators/refinery/extension_plural_name_generator.rb.erb +1 -1
- data/lib/generators/refinery/engine/templates/lib/refinery/plural_name.rb.erb +1 -1
- data/lib/refinery/admin/base_controller.rb +2 -2
- data/lib/refinery/application_controller.rb +1 -2
- data/lib/refinery/cli.rb +1 -1
- data/lib/refinery/core/configuration.rb +4 -1
- data/lib/refinery/core/engine.rb +20 -0
- data/lib/refinery/core.rb +0 -1
- data/lib/refinery/crud.rb +33 -32
- data/lib/refinery/extension_generation.rb +55 -8
- data/lib/refinery/generators/generated_attribute.rb +13 -0
- data/lib/refinery/plugins.rb +1 -1
- data/lib/refinery/version.rb +4 -4
- data/lib/refinery.rb +9 -2
- data/lib/refinerycms/core.rb +1 -0
- data/lib/tasks/refinery.rake +3 -3
- data/refinerycms-core.gemspec +21 -27
- data/spec/controllers/refinery/sitemap_controller_spec.rb +1 -1
- data/spec/helpers/refinery/tag_helper_spec.rb +1 -1
- data/spec/helpers/refinery/translation_helper_spec.rb +46 -10
- data/spec/lib/generators/refinery/cms/cms_generator_spec.rb +6 -6
- data/spec/lib/generators/refinery/engine/engine_generator_multiple_resources_spec.rb +23 -2
- data/spec/lib/refinery/cli_spec.rb +2 -2
- data/spec/lib/refinery/{users_manager_spec.rb → core/users_manager_spec.rb} +1 -1
- data/spec/lib/refinery/crud_spec.rb +2 -1
- data/spec/presenters/refinery/translated_field_presenter_spec.rb +5 -7
- data/spec/support/refinery.rb +2 -2
- data/spec/{features → system}/refinery/admin/custom_assets_spec.rb +1 -1
- data/spec/system/refinery/admin/dialogs_spec.rb +29 -0
- data/spec/{features → system}/refinery/admin/xhr_paging_spec.rb +10 -7
- data/spec/{features → system}/refinery/application_layout_spec.rb +3 -4
- data/spec/{features → system}/refinery/core_spec.rb +1 -1
- data/spec/{features → system}/refinery/site_bar_spec.rb +5 -3
- data/vendor/assets/javascripts/canvas-to-blob.js +126 -0
- data/vendor/assets/javascripts/cropper.js +3715 -0
- data/vendor/assets/stylesheets/cropper.css +305 -0
- metadata +108 -171
- checksums.yaml.gz.sig +0 -0
- data/app/assets/javascripts/refinery/ajaxy_pagination.js.coffee +0 -10
- data/app/assets/javascripts/refinery/interface.js.coffee.erb +0 -33
- data/app/assets/javascripts/refinery/submit_continue.js.coffee.erb +0 -12
- data/spec/features/refinery/admin/dialogs_spec.rb +0 -29
- data/spec/support/database_cleaner.rb +0 -21
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -5
- /data/lib/generators/refinery/cms/templates/config/{database.yml.mysql → database.mysql.yml} +0 -0
- /data/lib/generators/refinery/cms/templates/config/{database.yml.postgresql → database.postgresql.yml} +0 -0
- /data/lib/generators/refinery/cms/templates/config/{database.yml.sqlite3 → database.sqlite3.yml} +0 -0
- /data/lib/refinery/{users_manager.rb → core/users_manager.rb} +0 -0
|
@@ -1,558 +1 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
viewBox="0 0 6412.3066 1919.7333"
|
|
9
|
-
height="1919.7333"
|
|
10
|
-
width="6412.3066"
|
|
11
|
-
xml:space="preserve"
|
|
12
|
-
id="svg2"
|
|
13
|
-
version="1.1"><metadata
|
|
14
|
-
id="metadata8"><rdf:RDF><cc:Work
|
|
15
|
-
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
16
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
|
17
|
-
id="defs6"><clipPath
|
|
18
|
-
id="clipPath26"
|
|
19
|
-
clipPathUnits="userSpaceOnUse"><path
|
|
20
|
-
id="path24"
|
|
21
|
-
d="m 1868.239,1439.801 c -35.698,-0.031 -82.189,-11.794 -120.548,-60.859 v 0 c -52.283,-66.872 -44.38,-73.559 -124.296,-126.061 v 0 c 0,0 111.033,-18.515 171.218,78.147 v 0 c 60.186,96.661 129.986,98.98 129.986,98.98 v 0 c 0,0 -23.494,9.758 -56.041,9.793 v 0 z" /></clipPath><linearGradient
|
|
22
|
-
id="linearGradient36"
|
|
23
|
-
spreadMethod="pad"
|
|
24
|
-
gradientTransform="matrix(301.20374,0,0,-301.20374,1623.395,1345.6311)"
|
|
25
|
-
gradientUnits="userSpaceOnUse"
|
|
26
|
-
y2="0"
|
|
27
|
-
x2="1"
|
|
28
|
-
y1="0"
|
|
29
|
-
x1="0"><stop
|
|
30
|
-
id="stop32"
|
|
31
|
-
offset="0"
|
|
32
|
-
style="stop-opacity:1;stop-color:#f6eb5e" /><stop
|
|
33
|
-
id="stop34"
|
|
34
|
-
offset="1"
|
|
35
|
-
style="stop-opacity:1;stop-color:#f8c721" /></linearGradient><clipPath
|
|
36
|
-
id="clipPath46"
|
|
37
|
-
clipPathUnits="userSpaceOnUse"><path
|
|
38
|
-
id="path44"
|
|
39
|
-
d="m 1748.298,1359.488 c -40.411,-55.725 -41.947,-60.793 -108.819,-102.131 v 0 c 0,0 92.406,0 140.432,77.815 v 0 c 51.012,82.651 107.604,93.013 107.604,93.013 v 0 c 0,0 -3.786,0.508 -10.304,0.508 v 0 c -23.717,0 -83.609,-6.733 -128.913,-69.205" /></clipPath><linearGradient
|
|
40
|
-
id="linearGradient62"
|
|
41
|
-
spreadMethod="pad"
|
|
42
|
-
gradientTransform="matrix(254.02196,162.08633,162.08633,-254.02196,1652.7844,1274.6074)"
|
|
43
|
-
gradientUnits="userSpaceOnUse"
|
|
44
|
-
y2="0"
|
|
45
|
-
x2="1"
|
|
46
|
-
y1="0"
|
|
47
|
-
x1="0"><stop
|
|
48
|
-
id="stop52"
|
|
49
|
-
offset="0"
|
|
50
|
-
style="stop-opacity:1;stop-color:#f7ea4e" /><stop
|
|
51
|
-
id="stop54"
|
|
52
|
-
offset="0.242458"
|
|
53
|
-
style="stop-opacity:1;stop-color:#f7ea46" /><stop
|
|
54
|
-
id="stop56"
|
|
55
|
-
offset="0.653736"
|
|
56
|
-
style="stop-opacity:1;stop-color:#f7ea46" /><stop
|
|
57
|
-
id="stop58"
|
|
58
|
-
offset="0.940053"
|
|
59
|
-
style="stop-opacity:1;stop-color:#f8c721" /><stop
|
|
60
|
-
id="stop60"
|
|
61
|
-
offset="1"
|
|
62
|
-
style="stop-opacity:1;stop-color:#f8c721" /></linearGradient><clipPath
|
|
63
|
-
id="clipPath72"
|
|
64
|
-
clipPathUnits="userSpaceOnUse"><path
|
|
65
|
-
id="path70"
|
|
66
|
-
d="m 1820.593,1400.82 c 0.032,0.01 0.049,0.01 0.049,0.01 v 0 c 0,0 -0.016,0 -0.049,-0.01 m -68.648,-57.745 c -28.572,-41.34 -30.755,-40.774 -77.206,-75.992 v 0 c 0,0 61.44,15.867 96.053,74.168 v 0 c 33.028,55.633 48.819,59.385 49.801,59.569 v 0 c -1.409,-0.247 -33.082,-6.289 -68.648,-57.745" /></clipPath><linearGradient
|
|
67
|
-
id="linearGradient92"
|
|
68
|
-
spreadMethod="pad"
|
|
69
|
-
gradientTransform="matrix(145.90378,0,0,-145.90378,1674.7385,1333.9557)"
|
|
70
|
-
gradientUnits="userSpaceOnUse"
|
|
71
|
-
y2="0"
|
|
72
|
-
x2="1"
|
|
73
|
-
y1="0"
|
|
74
|
-
x1="0"><stop
|
|
75
|
-
id="stop78"
|
|
76
|
-
offset="0"
|
|
77
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
78
|
-
id="stop80"
|
|
79
|
-
offset="0.126934"
|
|
80
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
81
|
-
id="stop82"
|
|
82
|
-
offset="0.394686"
|
|
83
|
-
style="stop-opacity:1;stop-color:#f7f19f" /><stop
|
|
84
|
-
id="stop84"
|
|
85
|
-
offset="0.395711"
|
|
86
|
-
style="stop-opacity:1;stop-color:#f7f09a" /><stop
|
|
87
|
-
id="stop86"
|
|
88
|
-
offset="0.684135"
|
|
89
|
-
style="stop-opacity:1;stop-color:#faf5bb" /><stop
|
|
90
|
-
id="stop88"
|
|
91
|
-
offset="0.945216"
|
|
92
|
-
style="stop-opacity:1;stop-color:#f7ea46" /><stop
|
|
93
|
-
id="stop90"
|
|
94
|
-
offset="1"
|
|
95
|
-
style="stop-opacity:1;stop-color:#f7ea46" /></linearGradient><linearGradient
|
|
96
|
-
id="linearGradient116"
|
|
97
|
-
spreadMethod="pad"
|
|
98
|
-
gradientTransform="matrix(860.98108,169.56853,169.56853,-860.98108,1647.6389,1126.1357)"
|
|
99
|
-
gradientUnits="userSpaceOnUse"
|
|
100
|
-
y2="0"
|
|
101
|
-
x2="1"
|
|
102
|
-
y1="0"
|
|
103
|
-
x1="0"><stop
|
|
104
|
-
id="stop108"
|
|
105
|
-
offset="0"
|
|
106
|
-
style="stop-opacity:1;stop-color:#f6e93f" /><stop
|
|
107
|
-
id="stop110"
|
|
108
|
-
offset="0.394937"
|
|
109
|
-
style="stop-opacity:1;stop-color:#f8ca18" /><stop
|
|
110
|
-
id="stop112"
|
|
111
|
-
offset="0.776377"
|
|
112
|
-
style="stop-opacity:1;stop-color:#e74927" /><stop
|
|
113
|
-
id="stop114"
|
|
114
|
-
offset="1"
|
|
115
|
-
style="stop-opacity:1;stop-color:#c02f2a" /></linearGradient><linearGradient
|
|
116
|
-
id="linearGradient144"
|
|
117
|
-
spreadMethod="pad"
|
|
118
|
-
gradientTransform="matrix(810.06989,0,0,-810.06989,1654.8422,1195.7229)"
|
|
119
|
-
gradientUnits="userSpaceOnUse"
|
|
120
|
-
y2="0"
|
|
121
|
-
x2="1"
|
|
122
|
-
y1="0"
|
|
123
|
-
x1="0"><stop
|
|
124
|
-
id="stop132"
|
|
125
|
-
offset="0"
|
|
126
|
-
style="stop-opacity:1;stop-color:#f9ec60" /><stop
|
|
127
|
-
id="stop134"
|
|
128
|
-
offset="0.288405"
|
|
129
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
130
|
-
id="stop136"
|
|
131
|
-
offset="0.695351"
|
|
132
|
-
style="stop-opacity:1;stop-color:#f9b01d" /><stop
|
|
133
|
-
id="stop138"
|
|
134
|
-
offset="0.81368"
|
|
135
|
-
style="stop-opacity:1;stop-color:#ef8a24" /><stop
|
|
136
|
-
id="stop140"
|
|
137
|
-
offset="0.97078"
|
|
138
|
-
style="stop-opacity:1;stop-color:#d0282a" /><stop
|
|
139
|
-
id="stop142"
|
|
140
|
-
offset="1"
|
|
141
|
-
style="stop-opacity:1;stop-color:#d0282a" /></linearGradient><linearGradient
|
|
142
|
-
id="linearGradient168"
|
|
143
|
-
spreadMethod="pad"
|
|
144
|
-
gradientTransform="matrix(610.86871,118.94531,118.94531,-610.86871,1703.5983,1128.413)"
|
|
145
|
-
gradientUnits="userSpaceOnUse"
|
|
146
|
-
y2="0"
|
|
147
|
-
x2="1"
|
|
148
|
-
y1="0"
|
|
149
|
-
x1="0"><stop
|
|
150
|
-
id="stop160"
|
|
151
|
-
offset="0"
|
|
152
|
-
style="stop-opacity:1;stop-color:#f9ec60" /><stop
|
|
153
|
-
id="stop162"
|
|
154
|
-
offset="0.351388"
|
|
155
|
-
style="stop-opacity:1;stop-color:#f9f4b5" /><stop
|
|
156
|
-
id="stop164"
|
|
157
|
-
offset="0.699335"
|
|
158
|
-
style="stop-opacity:1;stop-color:#f9ec60" /><stop
|
|
159
|
-
id="stop166"
|
|
160
|
-
offset="1"
|
|
161
|
-
style="stop-opacity:1;stop-color:#f08321" /></linearGradient><clipPath
|
|
162
|
-
id="clipPath178"
|
|
163
|
-
clipPathUnits="userSpaceOnUse"><path
|
|
164
|
-
id="path176"
|
|
165
|
-
d="M 0,1439.801 H 4809.233 V 0 H 0 Z" /></clipPath><linearGradient
|
|
166
|
-
id="linearGradient320"
|
|
167
|
-
spreadMethod="pad"
|
|
168
|
-
gradientTransform="matrix(512.59393,208.08199,208.08199,-512.59393,1656.5482,1206.9635)"
|
|
169
|
-
gradientUnits="userSpaceOnUse"
|
|
170
|
-
y2="0"
|
|
171
|
-
x2="1"
|
|
172
|
-
y1="0"
|
|
173
|
-
x1="0"><stop
|
|
174
|
-
id="stop314"
|
|
175
|
-
offset="0"
|
|
176
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
177
|
-
id="stop316"
|
|
178
|
-
offset="0.175627"
|
|
179
|
-
style="stop-opacity:1;stop-color:#f6e130" /><stop
|
|
180
|
-
id="stop318"
|
|
181
|
-
offset="1"
|
|
182
|
-
style="stop-opacity:1;stop-color:#ef8a24" /></linearGradient><linearGradient
|
|
183
|
-
id="linearGradient348"
|
|
184
|
-
spreadMethod="pad"
|
|
185
|
-
gradientTransform="matrix(501.54422,0,0,-501.54422,1656.5006,1303.793)"
|
|
186
|
-
gradientUnits="userSpaceOnUse"
|
|
187
|
-
y2="0"
|
|
188
|
-
x2="1"
|
|
189
|
-
y1="0"
|
|
190
|
-
x1="0"><stop
|
|
191
|
-
id="stop336"
|
|
192
|
-
offset="0"
|
|
193
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
194
|
-
id="stop338"
|
|
195
|
-
offset="0.00019338"
|
|
196
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
197
|
-
id="stop340"
|
|
198
|
-
offset="0.116221"
|
|
199
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
200
|
-
id="stop342"
|
|
201
|
-
offset="0.268526"
|
|
202
|
-
style="stop-opacity:1;stop-color:#f6ee8c" /><stop
|
|
203
|
-
id="stop344"
|
|
204
|
-
offset="0.570525"
|
|
205
|
-
style="stop-opacity:1;stop-color:#fbd50f" /><stop
|
|
206
|
-
id="stop346"
|
|
207
|
-
offset="1"
|
|
208
|
-
style="stop-opacity:1;stop-color:#ef8a24" /></linearGradient><linearGradient
|
|
209
|
-
id="linearGradient378"
|
|
210
|
-
spreadMethod="pad"
|
|
211
|
-
gradientTransform="matrix(402.79117,230.20638,230.20638,-402.79117,1716.8589,1197.2815)"
|
|
212
|
-
gradientUnits="userSpaceOnUse"
|
|
213
|
-
y2="0"
|
|
214
|
-
x2="1"
|
|
215
|
-
y1="0"
|
|
216
|
-
x1="0"><stop
|
|
217
|
-
id="stop364"
|
|
218
|
-
offset="0"
|
|
219
|
-
style="stop-opacity:1;stop-color:#f4e83f" /><stop
|
|
220
|
-
id="stop366"
|
|
221
|
-
offset="0.0882967"
|
|
222
|
-
style="stop-opacity:1;stop-color:#f7ed78" /><stop
|
|
223
|
-
id="stop368"
|
|
224
|
-
offset="0.329904"
|
|
225
|
-
style="stop-opacity:1;stop-color:#faf5bb" /><stop
|
|
226
|
-
id="stop370"
|
|
227
|
-
offset="0.465791"
|
|
228
|
-
style="stop-opacity:1;stop-color:#faf3ab" /><stop
|
|
229
|
-
id="stop372"
|
|
230
|
-
offset="0.696898"
|
|
231
|
-
style="stop-opacity:1;stop-color:#fbd50f" /><stop
|
|
232
|
-
id="stop374"
|
|
233
|
-
offset="0.940053"
|
|
234
|
-
style="stop-opacity:1;stop-color:#ef8a24" /><stop
|
|
235
|
-
id="stop376"
|
|
236
|
-
offset="1"
|
|
237
|
-
style="stop-opacity:1;stop-color:#ef8a24" /></linearGradient><linearGradient
|
|
238
|
-
id="linearGradient402"
|
|
239
|
-
spreadMethod="pad"
|
|
240
|
-
gradientTransform="matrix(510.18481,162.42668,162.42668,-510.18481,1936.4523,1027.8645)"
|
|
241
|
-
gradientUnits="userSpaceOnUse"
|
|
242
|
-
y2="0"
|
|
243
|
-
x2="1"
|
|
244
|
-
y1="0"
|
|
245
|
-
x1="0"><stop
|
|
246
|
-
id="stop394"
|
|
247
|
-
offset="0"
|
|
248
|
-
style="stop-opacity:1;stop-color:#f8c51a" /><stop
|
|
249
|
-
id="stop396"
|
|
250
|
-
offset="0.230411"
|
|
251
|
-
style="stop-opacity:1;stop-color:#f8ca18" /><stop
|
|
252
|
-
id="stop398"
|
|
253
|
-
offset="0.784112"
|
|
254
|
-
style="stop-opacity:1;stop-color:#ee7622" /><stop
|
|
255
|
-
id="stop400"
|
|
256
|
-
offset="1"
|
|
257
|
-
style="stop-opacity:1;stop-color:#e34329" /></linearGradient><linearGradient
|
|
258
|
-
id="linearGradient430"
|
|
259
|
-
spreadMethod="pad"
|
|
260
|
-
gradientTransform="matrix(413.85007,0,0,-413.85007,1959.4028,1098.24)"
|
|
261
|
-
gradientUnits="userSpaceOnUse"
|
|
262
|
-
y2="0"
|
|
263
|
-
x2="1"
|
|
264
|
-
y1="0"
|
|
265
|
-
x1="0"><stop
|
|
266
|
-
id="stop418"
|
|
267
|
-
offset="0"
|
|
268
|
-
style="stop-opacity:1;stop-color:#f8c51a" /><stop
|
|
269
|
-
id="stop420"
|
|
270
|
-
offset="0.173151"
|
|
271
|
-
style="stop-opacity:1;stop-color:#f8e22f" /><stop
|
|
272
|
-
id="stop422"
|
|
273
|
-
offset="0.392888"
|
|
274
|
-
style="stop-opacity:1;stop-color:#f8e22f" /><stop
|
|
275
|
-
id="stop424"
|
|
276
|
-
offset="0.68984"
|
|
277
|
-
style="stop-opacity:1;stop-color:#fbbf19" /><stop
|
|
278
|
-
id="stop426"
|
|
279
|
-
offset="0.826327"
|
|
280
|
-
style="stop-opacity:1;stop-color:#f28f1f" /><stop
|
|
281
|
-
id="stop428"
|
|
282
|
-
offset="1"
|
|
283
|
-
style="stop-opacity:1;stop-color:#ec6322" /></linearGradient><linearGradient
|
|
284
|
-
id="linearGradient454"
|
|
285
|
-
spreadMethod="pad"
|
|
286
|
-
gradientTransform="matrix(244.38882,0,0,-244.38882,2012.7489,1091.1769)"
|
|
287
|
-
gradientUnits="userSpaceOnUse"
|
|
288
|
-
y2="0"
|
|
289
|
-
x2="1"
|
|
290
|
-
y1="0"
|
|
291
|
-
x1="0"><stop
|
|
292
|
-
id="stop446"
|
|
293
|
-
offset="0"
|
|
294
|
-
style="stop-opacity:1;stop-color:#f8e22f" /><stop
|
|
295
|
-
id="stop448"
|
|
296
|
-
offset="0.27599"
|
|
297
|
-
style="stop-opacity:1;stop-color:#faee75" /><stop
|
|
298
|
-
id="stop450"
|
|
299
|
-
offset="0.727645"
|
|
300
|
-
style="stop-opacity:1;stop-color:#faec5d" /><stop
|
|
301
|
-
id="stop452"
|
|
302
|
-
offset="1"
|
|
303
|
-
style="stop-opacity:1;stop-color:#fbb91c" /></linearGradient></defs><g
|
|
304
|
-
transform="matrix(1.3333333,0,0,-1.3333333,0,1919.7333)"
|
|
305
|
-
id="g10"><g
|
|
306
|
-
transform="translate(4595.8496,868.4269)"
|
|
307
|
-
id="g12"><path
|
|
308
|
-
id="path14"
|
|
309
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
310
|
-
d="M 0,0 H -45.146 V 15.175 H 63.163 V 0 H 18.021 V -120.257 H 0 Z" /></g><g
|
|
311
|
-
transform="translate(4784.5767,883.6013)"
|
|
312
|
-
id="g16"><path
|
|
313
|
-
id="path18"
|
|
314
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
315
|
-
d="M 0,0 -42.866,-113.816 -85.548,0 h -24.657 v -135.43 h 17.07 v 112.661 h 0.382 l 42.298,-112.661 h 15.362 L 7.209,-22.769 H 7.587 V -135.43 h 17.07 l 0,135.43 z" /></g><g
|
|
316
|
-
id="g20"><g
|
|
317
|
-
clip-path="url(#clipPath26)"
|
|
318
|
-
id="g22"><g
|
|
319
|
-
id="g28"><g
|
|
320
|
-
id="g30"><path
|
|
321
|
-
id="path38"
|
|
322
|
-
style="fill:url(#linearGradient36);stroke:none"
|
|
323
|
-
d="m 1868.239,1439.801 c -35.698,-0.031 -82.189,-11.794 -120.548,-60.859 v 0 c -52.283,-66.872 -44.38,-73.559 -124.296,-126.061 v 0 c 0,0 111.033,-18.515 171.218,78.147 v 0 c 60.186,96.661 129.986,98.98 129.986,98.98 v 0 c 0,0 -23.494,9.758 -56.041,9.793 v 0 z" /></g></g></g></g><g
|
|
324
|
-
id="g40"><g
|
|
325
|
-
clip-path="url(#clipPath46)"
|
|
326
|
-
id="g42"><g
|
|
327
|
-
id="g48"><g
|
|
328
|
-
id="g50"><path
|
|
329
|
-
id="path64"
|
|
330
|
-
style="fill:url(#linearGradient62);stroke:none"
|
|
331
|
-
d="m 1748.298,1359.488 c -40.411,-55.725 -41.947,-60.793 -108.819,-102.131 v 0 c 0,0 92.406,0 140.432,77.815 v 0 c 51.012,82.651 107.604,93.013 107.604,93.013 v 0 c 0,0 -3.786,0.508 -10.304,0.508 v 0 c -23.717,0 -83.609,-6.733 -128.913,-69.205" /></g></g></g></g><g
|
|
332
|
-
id="g66"><g
|
|
333
|
-
clip-path="url(#clipPath72)"
|
|
334
|
-
id="g68"><g
|
|
335
|
-
id="g74"><g
|
|
336
|
-
id="g76"><path
|
|
337
|
-
id="path94"
|
|
338
|
-
style="fill:url(#linearGradient92);stroke:none"
|
|
339
|
-
d="m 1820.593,1400.82 c 0.032,0.01 0.049,0.01 0.049,0.01 v 0 c 0,0 -0.016,0 -0.049,-0.01 m -68.648,-57.745 c -28.572,-41.34 -30.755,-40.774 -77.206,-75.992 v 0 c 0,0 61.44,15.867 96.053,74.168 v 0 c 33.028,55.633 48.819,59.385 49.801,59.569 v 0 c -1.409,-0.247 -33.082,-6.289 -68.648,-57.745" /></g></g></g></g><g
|
|
340
|
-
id="g96"><g
|
|
341
|
-
id="g98"><g
|
|
342
|
-
id="g104"><g
|
|
343
|
-
id="g106"><path
|
|
344
|
-
id="path118"
|
|
345
|
-
style="fill:url(#linearGradient116);stroke:none"
|
|
346
|
-
d="m 2162.77,1341.39 c 0,0 -45.291,-7.6 -65.353,-18.543 v 0 c -16.855,-9.193 -53.939,-17.744 -131.314,-87.542 v 0 c -92.71,-83.631 -165.358,-150.159 -332.539,-89.973 v 0 c 0,0 124.626,-180.557 339.834,-44.38 v 0 c 215.208,136.177 258.98,173.869 538.02,128.274 v 0 c 0,0 -96.9,116.132 -286.854,116.132 v 0 c -19.608,0 -40.207,-1.238 -61.794,-3.968" /></g></g></g></g><g
|
|
347
|
-
id="g120"><g
|
|
348
|
-
id="g122"><g
|
|
349
|
-
id="g128"><g
|
|
350
|
-
id="g130"><path
|
|
351
|
-
id="path146"
|
|
352
|
-
style="fill:url(#linearGradient144);stroke:none"
|
|
353
|
-
d="m 2139.502,1319.061 c -10.334,-3.039 -57.283,-16.883 -84.64,-36.337 v 0 c -30.605,-21.763 -47.786,-32.015 -97.27,-74.168 v 0 c -82.071,-69.912 -145.894,-123.486 -302.75,-78.424 v 0 c 0,0 119.763,-128.273 284.817,-35.259 v 0 c 15.633,8.81 82.191,53.612 99.397,64.744 v 0 c 139.52,90.278 207.913,118.548 425.856,90.278 v 0 c 0,0 -89.328,80.508 -232.027,80.51 v 0 c -29.022,0 -60.248,-3.33 -93.383,-11.344" /></g></g></g></g><g
|
|
354
|
-
id="g148"><g
|
|
355
|
-
id="g150"><g
|
|
356
|
-
id="g156"><g
|
|
357
|
-
id="g158"><path
|
|
358
|
-
id="path170"
|
|
359
|
-
style="fill:url(#linearGradient168);stroke:none"
|
|
360
|
-
d="m 1960.632,1185.15 c -63.456,-54.908 -138.608,-104.259 -257.156,-79.943 v 0 c 0,0 111.86,-65.656 232.231,10.944 v 0 c 4.872,3.099 65.048,43.163 115.507,80.854 v 0 c 64.389,48.099 161.406,92.387 248.645,89.367 v 0 c 0,0 -28.312,12.39 -76.225,12.391 v 0 c -61.496,0 -155.288,-20.405 -263.002,-113.613" /></g></g></g></g><g
|
|
361
|
-
id="g172"><g
|
|
362
|
-
clip-path="url(#clipPath178)"
|
|
363
|
-
id="g174"><g
|
|
364
|
-
transform="translate(3.7723,882.8247)"
|
|
365
|
-
id="g180"><path
|
|
366
|
-
id="path182"
|
|
367
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
368
|
-
d="m 0,0 h 276.06 v -82.356 c 46.396,66.116 106.709,100.915 182.105,100.915 6.96,0 13.921,0 20.877,-1.162 V -266.78 c -30.156,16.243 -56.833,25.519 -80.033,25.519 -71.915,0 -113.67,-40.594 -113.67,-112.513 V -585.752 H 0 Z" /></g><g
|
|
369
|
-
transform="translate(875.355,670.559)"
|
|
370
|
-
id="g184"><path
|
|
371
|
-
id="path186"
|
|
372
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
373
|
-
d="M 0,0 C -3.48,46.396 -23.196,67.277 -63.794,67.277 -99.753,67.277 -122.95,45.239 -128.749,0 Z m -131.068,-127.587 v -9.276 c 0,-59.16 20.878,-88.155 64.955,-88.155 25.516,0 45.235,15.075 57.995,45.232 l 263.3,-17.398 C 212.266,-320.133 95.115,-395.522 -70.754,-395.522 c -199.503,0 -342.172,141.501 -342.172,313.173 0,171.662 141.508,313.173 342.172,313.173 200.664,0 344.494,-134.551 344.494,-327.093 0,-10.437 0,-20.881 -1.161,-31.318 z" /></g><g
|
|
374
|
-
transform="translate(1214.5485,667.0788)"
|
|
375
|
-
id="g188"><path
|
|
376
|
-
id="path190"
|
|
377
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
378
|
-
d="M 0,0 H -76.553 V 215.746 H 0 v 190.409 c 0,162.389 90.474,251.701 251.698,251.701 42.92,0 84.675,-4.641 127.591,-13.92 V 423.555 c -15.078,2.319 -27.838,4.638 -40.597,4.638 -42.916,0 -54.515,-24.357 -54.515,-70.754 V 215.746 h 95.112 V 0 H 284.177 V -370.006 H 0 Z" /></g><path
|
|
379
|
-
id="path192"
|
|
380
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
381
|
-
d="m 1623.737,882.825 h 284.177 V 297.073 h -284.177 z" /><g
|
|
382
|
-
transform="translate(1941.5437,882.8247)"
|
|
383
|
-
id="g194"><path
|
|
384
|
-
id="path196"
|
|
385
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
386
|
-
d="m 0,0 h 276.06 v -81.195 c 48.715,67.274 106.713,99.754 182.108,99.754 122.95,0 202.983,-78.876 202.983,-211.105 V -585.752 H 376.974 v 295.775 c 0,51.035 -6.961,76.554 -40.601,76.554 -33.633,0 -51.038,-25.519 -51.038,-76.554 V -585.752 H 0 Z" /></g><g
|
|
387
|
-
transform="translate(3006.6187,670.559)"
|
|
388
|
-
id="g198"><path
|
|
389
|
-
id="path200"
|
|
390
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
391
|
-
d="m 0,0 c -3.484,46.396 -23.204,67.277 -63.797,67.277 -35.956,0 -59.152,-22.038 -64.959,-67.277 z m -131.071,-127.587 v -9.276 c 0,-59.16 20.874,-88.155 64.951,-88.155 25.519,0 45.239,15.075 57.998,45.232 l 263.297,-17.398 C 212.259,-320.133 95.108,-395.522 -70.758,-395.522 c -199.506,0 -342.175,141.501 -342.175,313.173 0,171.662 141.515,313.173 342.175,313.173 200.668,0 344.491,-134.551 344.491,-327.093 0,-10.437 0,-20.881 -1.154,-31.318 z" /></g><g
|
|
392
|
-
transform="translate(3277.5925,882.8247)"
|
|
393
|
-
id="g202"><path
|
|
394
|
-
id="path204"
|
|
395
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
396
|
-
d="M 0,0 H 276.056 V -82.356 C 322.456,-16.24 382.77,0.7 458.165,0.7 c 6.96,0 13.921,0 20.881,-1.161 V -266.78 c -30.157,16.243 -56.837,25.519 -80.033,25.519 -71.919,0 -113.674,-40.594 -113.674,-112.513 V -585.752 H 0 Z" /></g><g
|
|
397
|
-
transform="translate(3742.1528,882.8247)"
|
|
398
|
-
id="g206"><path
|
|
399
|
-
id="path208"
|
|
400
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
401
|
-
d="m 0,0 h 312.012 l 44.077,-149.63 c 11.598,-40.597 28.995,-93.954 38.279,-164.704 20.874,90.47 35.955,147.307 41.755,168.184 L 479.039,0 H 771.338 L 414.087,-824.691 H 111.351 l 142.662,289.977 z" /></g><g
|
|
402
|
-
transform="translate(109.4813,162.0544)"
|
|
403
|
-
id="g210"><path
|
|
404
|
-
id="path212"
|
|
405
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
406
|
-
d="m 0,0 c -3.754,18.772 -16.756,29.751 -36.975,29.751 -35.532,0 -46.506,-28.02 -46.506,-58.348 0,-27.442 12.421,-54.6 43.618,-54.6 23.687,0 37.84,13.864 41.017,36.398 h 25.131 c -5.486,-36.398 -28.308,-58.062 -65.86,-58.062 -45.641,0 -69.906,31.774 -69.906,76.264 0,44.769 23.111,80.012 70.483,80.012 33.797,0 60.951,-15.887 64.417,-51.415 z" /></g><g
|
|
407
|
-
transform="translate(227.6362,78.8579)"
|
|
408
|
-
id="g214"><path
|
|
409
|
-
id="path216"
|
|
410
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
411
|
-
d="m 0,0 c 25.708,0 46.507,20.219 46.507,56.331 0,36.398 -20.799,56.616 -46.507,56.616 -25.708,0 -46.507,-20.218 -46.507,-56.616 C -46.507,20.219 -25.708,0 0,0 m 0,134.612 c 47.372,0 72.503,-34.374 72.503,-78.281 0,-43.621 -25.131,-77.996 -72.503,-77.996 -47.372,0 -72.507,34.375 -72.507,77.996 0,43.907 25.135,78.281 72.507,78.281" /></g><g
|
|
412
|
-
transform="translate(329.0387,210.0003)"
|
|
413
|
-
id="g218"><path
|
|
414
|
-
id="path220"
|
|
415
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
416
|
-
d="m 0,0 h 23.107 v -23.681 h 0.581 c 10.398,18.487 27.154,27.15 48.527,27.15 39.286,0 51.418,-22.533 51.418,-54.592 v -98.215 H 99.08 v 101.1 c 0,18.202 -11.556,30.043 -30.331,30.043 -29.751,0 -44.195,-19.934 -44.195,-46.799 v -84.344 H 0 Z" /></g><g
|
|
417
|
-
transform="translate(523.7468,210.0003)"
|
|
418
|
-
id="g222"><path
|
|
419
|
-
id="path224"
|
|
420
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
421
|
-
d="M 0,0 H 29.754 V -21.665 H 0 v -92.721 c 0,-11.264 3.177,-13.287 18.487,-13.287 h 11.267 v -21.665 H 10.978 c -25.422,0 -35.532,5.201 -35.532,32.643 v 95.03 H -49.973 V 0 h 25.419 v 44.776 l 24.554,0 z" /></g><g
|
|
422
|
-
transform="translate(684.3621,149.6298)"
|
|
423
|
-
id="g226"><path
|
|
424
|
-
id="path228"
|
|
425
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
426
|
-
d="M 0,0 C -1.158,23.396 -18.776,42.175 -43.041,42.175 -68.752,42.175 -84.062,22.819 -85.793,0 Z m 23.684,-41.598 c -6.643,-32.928 -30.331,-50.839 -63.836,-50.839 -47.665,0 -70.195,32.936 -71.641,78.573 0,44.776 29.466,77.704 70.195,77.704 52.861,0 69.04,-49.392 67.594,-85.505 H -85.793 c -0.866,-25.996 13.863,-49.107 46.507,-49.107 20.218,0 34.374,9.824 38.705,29.174 z" /></g><g
|
|
427
|
-
transform="translate(735.7881,210.0003)"
|
|
428
|
-
id="g230"><path
|
|
429
|
-
id="path232"
|
|
430
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
431
|
-
d="m 0,0 h 23.107 v -23.681 h 0.581 c 10.398,18.487 27.154,27.15 48.527,27.15 39.286,0 51.419,-22.533 51.419,-54.592 v -98.215 H 99.08 v 101.1 c 0,18.202 -11.556,30.043 -30.331,30.043 -29.751,0 -44.195,-19.934 -44.195,-46.799 v -84.344 H 0 Z" /></g><g
|
|
432
|
-
transform="translate(930.4963,210.0003)"
|
|
433
|
-
id="g234"><path
|
|
434
|
-
id="path236"
|
|
435
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
436
|
-
d="M 0,0 H 29.754 V -21.665 H 0 v -92.721 c 0,-11.264 3.177,-13.287 18.487,-13.287 h 11.267 v -21.665 H 10.978 c -25.422,0 -35.532,5.201 -35.532,32.643 v 95.03 H -49.973 V 0 h 25.419 v 44.776 l 24.554,0 z" /></g><g
|
|
437
|
-
transform="translate(1067.7192,210.0003)"
|
|
438
|
-
id="g238"><path
|
|
439
|
-
id="path240"
|
|
440
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
441
|
-
d="m 0,0 h 23.107 v -21.95 h 0.581 c 10.975,16.756 27.731,25.419 48.238,25.419 18.199,0 34.955,-7.223 41.021,-25.419 10.109,15.887 27.731,25.419 46.796,25.419 29.75,0 49.684,-12.417 49.684,-43.329 v -109.478 h -24.554 v 97.923 c 0,18.487 -4.912,33.22 -28.885,33.22 -23.688,0 -38.998,-15.018 -38.998,-38.129 v -93.014 H 92.437 v 97.923 c 0,19.356 -6.067,33.22 -28.02,33.22 -29.177,0 -39.863,-26.866 -39.863,-38.129 v -93.014 H 0 Z" /></g><g
|
|
442
|
-
transform="translate(1406.5786,137.7893)"
|
|
443
|
-
id="g242"><path
|
|
444
|
-
id="path244"
|
|
445
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
446
|
-
d="m 0,0 c -9.532,-6.932 -28.02,-7.224 -44.484,-10.109 -16.179,-2.893 -30.042,-8.67 -30.042,-26.866 0,-16.179 13.863,-21.956 28.885,-21.956 32.354,0 45.641,20.218 45.641,33.797 z m 39.864,-76.55 c -4.332,-2.6 -9.821,-4.046 -17.622,-4.046 -12.71,0 -20.799,6.932 -20.799,23.111 -13.576,-15.887 -31.774,-23.111 -52.573,-23.111 -27.151,0 -49.396,12.132 -49.396,41.883 0,33.797 25.134,41.021 50.553,45.93 27.154,5.2 50.262,3.469 50.262,21.957 0,21.372 -17.622,24.842 -33.221,24.842 -20.795,0 -36.105,-6.355 -37.263,-28.312 h -24.553 c 1.446,36.975 30.042,49.976 63.263,49.976 26.861,0 56.039,-6.062 56.039,-41.021 v -76.834 c 0,-11.556 0,-16.756 7.797,-16.756 2.023,0 4.335,0.292 7.513,1.446 z" /></g><g
|
|
447
|
-
transform="translate(1469.2716,210.0003)"
|
|
448
|
-
id="g246"><path
|
|
449
|
-
id="path248"
|
|
450
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
451
|
-
d="m 0,0 h 23.111 v -23.681 h 0.577 c 10.398,18.487 27.15,27.15 48.527,27.15 39.286,0 51.419,-22.533 51.419,-54.592 v -98.215 H 99.08 v 101.1 c 0,18.202 -11.555,30.043 -30.331,30.043 -29.751,0 -44.195,-19.934 -44.195,-46.799 v -84.344 H 0 Z" /></g><g
|
|
452
|
-
transform="translate(1722.3306,137.7893)"
|
|
453
|
-
id="g250"><path
|
|
454
|
-
id="path252"
|
|
455
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
456
|
-
d="m 0,0 c -9.532,-6.932 -28.019,-7.224 -44.484,-10.109 -16.179,-2.893 -30.042,-8.67 -30.042,-26.866 0,-16.179 13.863,-21.956 28.885,-21.956 32.354,0 45.641,20.218 45.641,33.797 z m 39.864,-76.55 c -4.332,-2.6 -9.821,-4.046 -17.622,-4.046 -12.71,0 -20.799,6.932 -20.799,23.111 -13.575,-15.887 -31.774,-23.111 -52.573,-23.111 -27.151,0 -49.396,12.132 -49.396,41.883 0,33.797 25.134,41.021 50.553,45.93 27.154,5.2 50.262,3.469 50.262,21.957 0,21.372 -17.622,24.842 -33.221,24.842 -20.795,0 -36.105,-6.355 -37.263,-28.312 h -24.553 c 1.446,36.975 30.042,49.976 63.263,49.976 26.861,0 56.039,-6.062 56.039,-41.021 v -76.834 c 0,-11.556 0,-16.756 7.797,-16.756 2.023,0 4.335,0.292 7.513,1.446 z" /></g><g
|
|
457
|
-
transform="translate(1889.5928,138.3664)"
|
|
458
|
-
id="g254"><path
|
|
459
|
-
id="path256"
|
|
460
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
461
|
-
d="m 0,0 c 0,26.288 -11.555,53.439 -42.464,53.439 -31.485,0 -44.195,-25.712 -44.195,-54.308 0,-26.866 9.821,-56.908 42.175,-56.908 C -12.133,-57.777 0,-28.02 0,0 m 24.265,-64.994 c 0,-48.53 -22.242,-73.372 -69.329,-73.372 -28.02,0 -60.371,11.263 -61.817,43.906 h 24.554 c 1.157,-17.91 22.534,-24.265 38.709,-24.265 32.063,0 44.772,23.111 44.772,56.616 v 9.824 H 0.577 c -8.086,-18.202 -27.731,-27.157 -46.507,-27.157 -44.483,0 -66.729,34.958 -66.729,75.688 0,35.236 17.334,78.857 69.041,78.857 18.776,0 35.528,-8.378 44.484,-24.842 H 0.577 1.154 v 21.373 h 23.111 z" /></g><g
|
|
462
|
-
transform="translate(2054.5466,149.6298)"
|
|
463
|
-
id="g258"><path
|
|
464
|
-
id="path260"
|
|
465
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
466
|
-
d="M 0,0 C -1.158,23.396 -18.776,42.175 -43.041,42.175 -68.752,42.175 -84.062,22.819 -85.793,0 Z m 23.685,-41.598 c -6.644,-32.928 -30.332,-50.839 -63.837,-50.839 -47.665,0 -70.195,32.936 -71.641,78.573 0,44.776 29.466,77.704 70.195,77.704 52.861,0 69.04,-49.392 67.594,-85.505 H -85.793 c -0.866,-25.996 13.863,-49.107 46.507,-49.107 20.218,0 34.374,9.824 38.705,29.174 z" /></g><g
|
|
467
|
-
transform="translate(2105.9727,210.0003)"
|
|
468
|
-
id="g262"><path
|
|
469
|
-
id="path264"
|
|
470
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
471
|
-
d="m 0,0 h 23.107 v -21.95 h 0.581 c 10.975,16.756 27.731,25.419 48.238,25.419 18.199,0 34.955,-7.223 41.021,-25.419 10.11,15.887 27.731,25.419 46.796,25.419 29.75,0 49.684,-12.417 49.684,-43.329 v -109.478 h -24.55 v 97.923 c 0,18.487 -4.916,33.22 -28.889,33.22 -23.688,0 -38.998,-15.018 -38.998,-38.129 v -93.014 H 92.437 v 97.923 c 0,19.356 -6.067,33.22 -28.02,33.22 -29.177,0 -39.863,-26.866 -39.863,-38.129 v -93.014 H 0 Z" /></g><g
|
|
472
|
-
transform="translate(2456.0955,149.6298)"
|
|
473
|
-
id="g266"><path
|
|
474
|
-
id="path268"
|
|
475
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
476
|
-
d="M 0,0 C -1.154,23.396 -18.772,42.175 -43.037,42.175 -68.749,42.175 -84.059,22.819 -85.79,0 Z m 23.688,-41.598 c -6.64,-32.928 -30.328,-50.839 -63.84,-50.839 -47.661,0 -70.195,32.936 -71.634,78.573 0,44.776 29.459,77.704 70.195,77.704 52.862,0 69.033,-49.392 67.594,-85.505 H -85.79 c -0.869,-25.996 13.864,-49.107 46.507,-49.107 20.219,0 34.375,9.824 38.706,29.174 z" /></g><g
|
|
477
|
-
transform="translate(2507.5251,210.0003)"
|
|
478
|
-
id="g270"><path
|
|
479
|
-
id="path272"
|
|
480
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
481
|
-
d="m 0,0 h 23.111 v -23.681 h 0.577 c 10.401,18.487 27.15,27.15 48.53,27.15 39.283,0 51.416,-22.533 51.416,-54.592 v -98.215 H 99.083 v 101.1 c 0,18.202 -11.555,30.043 -30.334,30.043 -29.751,0 -44.199,-19.934 -44.199,-46.799 v -84.344 H 0 Z" /></g><g
|
|
482
|
-
transform="translate(2702.2368,210.0003)"
|
|
483
|
-
id="g274"><path
|
|
484
|
-
id="path276"
|
|
485
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
486
|
-
d="M 0,0 H 29.751 V -21.665 H 0 v -92.721 c 0,-11.264 3.177,-13.287 18.487,-13.287 h 11.264 v -21.665 h -18.78 c -25.419,0 -35.528,5.201 -35.528,32.643 v 95.03 H -49.976 V 0 h 25.419 v 44.776 l 24.557,0 z" /></g><g
|
|
487
|
-
transform="translate(2854.4741,107.7466)"
|
|
488
|
-
id="g278"><path
|
|
489
|
-
id="path280"
|
|
490
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
491
|
-
d="m 0,0 c 0.869,-21.957 19.934,-28.889 40.152,-28.889 15.31,0 36.113,3.47 36.113,22.242 0,19.064 -24.265,22.242 -48.823,27.735 -24.265,5.485 -48.815,13.578 -48.815,42.175 0,30.043 29.751,42.46 55.754,42.46 32.929,0 59.217,-10.401 61.233,-46.799 H 71.064 C 69.333,77.996 52.577,84.059 36.397,84.059 21.665,84.059 4.624,80.012 4.624,64.994 c 0,-17.618 25.996,-20.51 48.822,-25.996 24.55,-5.493 48.815,-13.579 48.815,-42.467 0,-35.529 -33.22,-47.084 -63.548,-47.084 -33.512,0 -61.817,13.578 -63.263,50.553 z" /></g><g
|
|
492
|
-
transform="translate(3042.5388,40.7291)"
|
|
493
|
-
id="g282"><path
|
|
494
|
-
id="path284"
|
|
495
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
496
|
-
d="m 0,0 c -11.263,-29.174 -21.373,-39.86 -43.329,-39.86 -5.778,0 -11.556,0.577 -17.041,2.593 v 22.534 c 4.616,-1.446 9.532,-3.462 14.44,-3.462 10.11,0 15.602,4.908 20.219,13.571 l 10.109,25.42 -59.216,148.475 h 27.734 L -3.469,47.084 h 0.584 l 41.883,122.187 h 25.996 z" /></g><g
|
|
497
|
-
transform="translate(3143.3606,107.7466)"
|
|
498
|
-
id="g286"><path
|
|
499
|
-
id="path288"
|
|
500
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
501
|
-
d="m 0,0 c 0.869,-21.957 19.934,-28.889 40.152,-28.889 15.31,0 36.113,3.47 36.113,22.242 0,19.064 -24.265,22.242 -48.822,27.735 -24.266,5.485 -48.816,13.578 -48.816,42.175 0,30.043 29.751,42.46 55.755,42.46 32.928,0 59.216,-10.401 61.232,-46.799 H 71.064 C 69.333,77.996 52.577,84.059 36.398,84.059 21.665,84.059 4.624,80.012 4.624,64.994 c 0,-17.618 25.996,-20.51 48.822,-25.996 24.55,-5.493 48.815,-13.579 48.815,-42.467 0,-35.529 -33.22,-47.084 -63.548,-47.084 -33.512,0 -61.817,13.578 -63.263,50.553 z" /></g><g
|
|
502
|
-
transform="translate(3306.8755,210.0003)"
|
|
503
|
-
id="g290"><path
|
|
504
|
-
id="path292"
|
|
505
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
506
|
-
d="M 0,0 H 29.751 V -21.665 H 0 v -92.721 c 0,-11.264 3.177,-13.287 18.487,-13.287 h 11.264 v -21.665 h -18.78 c -25.419,0 -35.528,5.201 -35.528,32.643 v 95.03 H -49.976 V 0 h 25.419 v 44.776 l 24.557,0 z" /></g><g
|
|
507
|
-
transform="translate(3467.4836,149.6298)"
|
|
508
|
-
id="g294"><path
|
|
509
|
-
id="path296"
|
|
510
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
511
|
-
d="M 0,0 C -1.154,23.396 -18.772,42.175 -43.037,42.175 -68.749,42.175 -84.059,22.819 -85.79,0 Z m 23.688,-41.598 c -6.64,-32.928 -30.328,-50.839 -63.84,-50.839 -47.661,0 -70.195,32.936 -71.634,78.573 0,44.776 29.459,77.704 70.195,77.704 52.862,0 69.033,-49.392 67.594,-85.505 H -85.79 c -0.869,-25.996 13.864,-49.107 46.507,-49.107 20.219,0 34.374,9.824 38.706,29.174 z" /></g><g
|
|
512
|
-
transform="translate(3518.9133,210.0003)"
|
|
513
|
-
id="g298"><path
|
|
514
|
-
id="path300"
|
|
515
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
516
|
-
d="m 0,0 h 23.111 v -21.95 h 0.577 c 10.978,16.756 27.727,25.419 48.238,25.419 18.202,0 34.951,-7.223 41.021,-25.419 10.109,15.887 27.728,25.419 46.792,25.419 29.758,0 49.684,-12.417 49.684,-43.329 v -109.478 h -24.55 v 97.923 c 0,18.487 -4.908,33.22 -28.889,33.22 -23.688,0 -38.997,-15.018 -38.997,-38.129 v -93.014 h -24.55 v 97.923 c 0,19.356 -6.063,33.22 -28.02,33.22 -29.174,0 -39.867,-26.866 -39.867,-38.129 v -93.014 H 0 Z" /></g></g></g><g
|
|
517
|
-
id="g302"><g
|
|
518
|
-
id="g304"><g
|
|
519
|
-
id="g310"><g
|
|
520
|
-
id="g312"><path
|
|
521
|
-
id="path322"
|
|
522
|
-
style="fill:url(#linearGradient320);stroke:none"
|
|
523
|
-
d="m 1910.009,1385.63 c -124.019,-95.445 -109.428,-152.591 -268.098,-180.556 v 0 c 0,0 179.948,-70.521 286.943,53.498 v 0 c 106.996,124.019 266.275,120.37 266.275,120.37 v 0 c 0,0 -74.837,47.437 -161.755,47.441 v 0 c -40.618,10e-4 -83.868,-10.356 -123.365,-40.753" /></g></g></g></g><g
|
|
524
|
-
id="g324"><g
|
|
525
|
-
id="g326"><g
|
|
526
|
-
id="g332"><g
|
|
527
|
-
id="g334"><path
|
|
528
|
-
id="path350"
|
|
529
|
-
style="fill:url(#linearGradient348);stroke:none"
|
|
530
|
-
d="M 1911.224,1369.216 C 1803.455,1286.275 1804.229,1222.097 1656.5,1204.301 v 0 c 0,0 166.981,-40.788 263.843,71.901 v 0 c 93.014,108.212 237.702,108.212 237.702,108.212 v 0 c 0,0 -53.506,26.06 -119.849,26.064 v 0 c -40.62,0 -86.045,-9.764 -126.972,-41.262" /></g></g></g></g><g
|
|
531
|
-
id="g352"><g
|
|
532
|
-
id="g354"><g
|
|
533
|
-
id="g360"><g
|
|
534
|
-
id="g362"><path
|
|
535
|
-
id="path380"
|
|
536
|
-
style="fill:url(#linearGradient378);stroke:none"
|
|
537
|
-
d="m 1857.726,1287.753 c -62.617,-70.521 -156.239,-83.895 -156.239,-83.895 v 0 c 138.609,-5.471 196.363,78.423 196.363,78.423 v 0 c 6.432,7.522 26.578,29.315 32.22,34.652 v 0 c 67.481,63.834 142.257,71.736 142.257,71.736 v 0 c -103.35,0 -156.576,-35.568 -214.601,-100.916" /></g></g></g></g><g
|
|
538
|
-
id="g382"><g
|
|
539
|
-
id="g384"><g
|
|
540
|
-
id="g390"><g
|
|
541
|
-
id="g392"><path
|
|
542
|
-
id="path404"
|
|
543
|
-
style="fill:url(#linearGradient402);stroke:none"
|
|
544
|
-
d="m 2183.578,1164.038 c -113.075,-67.48 -134.961,-118.546 -252.596,-138.608 v 0 c 0,0 144.992,-59.274 262.627,41.035 v 0 c 117.635,100.309 220.679,94.838 220.679,94.838 v 0 c 0,0 -53.67,32.032 -123.347,32.034 v 0 c -33.484,10e-4 -70.66,-7.395 -107.363,-29.299" /></g></g></g></g><g
|
|
545
|
-
id="g406"><g
|
|
546
|
-
id="g408"><g
|
|
547
|
-
id="g414"><g
|
|
548
|
-
id="g416"><path
|
|
549
|
-
id="path432"
|
|
550
|
-
style="fill:url(#linearGradient430);stroke:none"
|
|
551
|
-
d="m 2175.675,1143.065 c -98.553,-64.633 -111.843,-96.44 -216.273,-118.843 v 0 c 0,0 118.841,-35.741 224.176,53.794 v 0 c 109.428,93.014 189.675,88.15 189.675,88.15 v 0 c 0,0 -31.323,13.135 -76.263,13.136 v 0 c -34.971,0 -78.187,-7.953 -121.315,-36.237" /></g></g></g></g><g
|
|
552
|
-
id="g434"><g
|
|
553
|
-
id="g436"><g
|
|
554
|
-
id="g442"><g
|
|
555
|
-
id="g444"><path
|
|
556
|
-
id="path456"
|
|
557
|
-
style="fill:url(#linearGradient454);stroke:none"
|
|
558
|
-
d="m 2136.159,1095.039 c -46.202,-38.909 -106.388,-60.794 -123.41,-66.266 v 0 c 0,0 56.537,-6.686 120.371,32.829 v 0 c 63.832,39.515 35.867,32.828 124.017,92.405 v 0 c 0,0 -60.43,-7.98 -120.978,-58.968" /></g></g></g></g></g></svg>
|
|
1
|
+
<svg height="1919.7333" viewBox="0 0 6412.3066 1919.7333" width="6412.3066" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m1868.239 1439.801c-35.698-.031-82.189-11.794-120.548-60.859-52.283-66.872-44.38-73.559-124.296-126.061s111.033-18.515 171.218 78.147c60.186 96.661 129.986 98.98 129.986 98.98s-23.494 9.758-56.041 9.793z"/></clipPath><linearGradient id="b" gradientTransform="matrix(301.20374 0 0 -301.20374 1623.395 1345.6311)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f6eb5e"/><stop offset="1" stop-color="#f8c721"/></linearGradient><clipPath id="c"><path d="m1748.298 1359.488c-40.411-55.725-41.947-60.793-108.819-102.131s92.406 0 140.432 77.815c51.012 82.651 107.604 93.013 107.604 93.013s-3.786.508-10.304.508c-23.717 0-83.609-6.733-128.913-69.205"/></clipPath><linearGradient id="d" gradientTransform="matrix(254.02196 162.08633 162.08633 -254.02196 1652.7844 1274.6074)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f7ea4e"/><stop offset=".242458" stop-color="#f7ea46"/><stop offset=".653736" stop-color="#f7ea46"/><stop offset=".940053" stop-color="#f8c721"/><stop offset="1" stop-color="#f8c721"/></linearGradient><clipPath id="e"><path d="m1820.593 1400.82c.032.01.049.01.049.01s-.016 0-.049-.01m-68.648-57.745c-28.572-41.34-30.755-40.774-77.206-75.992s61.44 15.867 96.053 74.168c33.028 55.633 48.819 59.385 49.801 59.569-1.409-.247-33.082-6.289-68.648-57.745"/></clipPath><linearGradient id="f" gradientTransform="matrix(145.90378 0 0 -145.90378 1674.7385 1333.9557)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f4e83f"/><stop offset=".126934" stop-color="#f4e83f"/><stop offset=".394686" stop-color="#f7f19f"/><stop offset=".395711" stop-color="#f7f09a"/><stop offset=".684135" stop-color="#faf5bb"/><stop offset=".945216" stop-color="#f7ea46"/><stop offset="1" stop-color="#f7ea46"/></linearGradient><linearGradient id="g" gradientTransform="matrix(860.98108 169.56853 169.56853 -860.98108 1647.6389 1126.1357)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f6e93f"/><stop offset=".394937" stop-color="#f8ca18"/><stop offset=".776377" stop-color="#e74927"/><stop offset="1" stop-color="#c02f2a"/></linearGradient><linearGradient id="h" gradientTransform="matrix(810.06989 0 0 -810.06989 1654.8422 1195.7229)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f9ec60"/><stop offset=".288405" stop-color="#f4e83f"/><stop offset=".695351" stop-color="#f9b01d"/><stop offset=".81368" stop-color="#ef8a24"/><stop offset=".97078" stop-color="#d0282a"/><stop offset="1" stop-color="#d0282a"/></linearGradient><linearGradient id="i" gradientTransform="matrix(610.86871 118.94531 118.94531 -610.86871 1703.5983 1128.413)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f9ec60"/><stop offset=".351388" stop-color="#f9f4b5"/><stop offset=".699335" stop-color="#f9ec60"/><stop offset="1" stop-color="#f08321"/></linearGradient><clipPath id="j"><path d="m0 1439.801h4809.233v-1439.801h-4809.233z"/></clipPath><linearGradient id="k" gradientTransform="matrix(512.59393 208.08199 208.08199 -512.59393 1656.5482 1206.9635)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f4e83f"/><stop offset=".175627" stop-color="#f6e130"/><stop offset="1" stop-color="#ef8a24"/></linearGradient><linearGradient id="l" gradientTransform="matrix(501.54422 0 0 -501.54422 1656.5006 1303.793)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f4e83f"/><stop offset=".00019338" stop-color="#f4e83f"/><stop offset=".116221" stop-color="#f4e83f"/><stop offset=".268526" stop-color="#f6ee8c"/><stop offset=".570525" stop-color="#fbd50f"/><stop offset="1" stop-color="#ef8a24"/></linearGradient><linearGradient id="m" gradientTransform="matrix(402.79117 230.20638 230.20638 -402.79117 1716.8589 1197.2815)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f4e83f"/><stop offset=".0882967" stop-color="#f7ed78"/><stop offset=".329904" stop-color="#faf5bb"/><stop offset=".465791" stop-color="#faf3ab"/><stop offset=".696898" stop-color="#fbd50f"/><stop offset=".940053" stop-color="#ef8a24"/><stop offset="1" stop-color="#ef8a24"/></linearGradient><linearGradient id="n" gradientTransform="matrix(510.18481 162.42668 162.42668 -510.18481 1936.4523 1027.8645)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f8c51a"/><stop offset=".230411" stop-color="#f8ca18"/><stop offset=".784112" stop-color="#ee7622"/><stop offset="1" stop-color="#e34329"/></linearGradient><linearGradient id="o" gradientTransform="matrix(413.85007 0 0 -413.85007 1959.4028 1098.24)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f8c51a"/><stop offset=".173151" stop-color="#f8e22f"/><stop offset=".392888" stop-color="#f8e22f"/><stop offset=".68984" stop-color="#fbbf19"/><stop offset=".826327" stop-color="#f28f1f"/><stop offset="1" stop-color="#ec6322"/></linearGradient><linearGradient id="p" gradientTransform="matrix(244.38882 0 0 -244.38882 2012.7489 1091.1769)" gradientUnits="userSpaceOnUse" spreadMethod="pad" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f8e22f"/><stop offset=".27599" stop-color="#faee75"/><stop offset=".727645" stop-color="#faec5d"/><stop offset="1" stop-color="#fbb91c"/></linearGradient><g transform="matrix(1.3333333 0 0 -1.3333333 0 1919.7333)"><g clip-path="url(#a)"><path d="m1868.239 1439.801c-35.698-.031-82.189-11.794-120.548-60.859-52.283-66.872-44.38-73.559-124.296-126.061s111.033-18.515 171.218 78.147c60.186 96.661 129.986 98.98 129.986 98.98s-23.494 9.758-56.041 9.793z" fill="url(#b)"/></g><g clip-path="url(#c)"><path d="m1748.298 1359.488c-40.411-55.725-41.947-60.793-108.819-102.131s92.406 0 140.432 77.815c51.012 82.651 107.604 93.013 107.604 93.013s-3.786.508-10.304.508c-23.717 0-83.609-6.733-128.913-69.205" fill="url(#d)"/></g><g clip-path="url(#e)"><path d="m1820.593 1400.82c.032.01.049.01.049.01s-.016 0-.049-.01m-68.648-57.745c-28.572-41.34-30.755-40.774-77.206-75.992s61.44 15.867 96.053 74.168c33.028 55.633 48.819 59.385 49.801 59.569-1.409-.247-33.082-6.289-68.648-57.745" fill="url(#f)"/></g><path d="m2162.77 1341.39s-45.291-7.6-65.353-18.543c-16.855-9.193-53.939-17.744-131.314-87.542-92.71-83.631-165.358-150.159-332.539-89.973s124.626-180.557 339.834-44.38c215.208 136.177 258.98 173.869 538.02 128.274s-96.9 116.132-286.854 116.132c-19.608 0-40.207-1.238-61.794-3.968" fill="url(#g)"/><path d="m2139.502 1319.061c-10.334-3.039-57.283-16.883-84.64-36.337-30.605-21.763-47.786-32.015-97.27-74.168-82.071-69.912-145.894-123.486-302.75-78.424s119.763-128.273 284.817-35.259c15.633 8.81 82.191 53.612 99.397 64.744 139.52 90.278 207.913 118.548 425.856 90.278s-89.328 80.508-232.027 80.51c-29.022 0-60.248-3.33-93.383-11.344" fill="url(#h)"/><path d="m1960.632 1185.15c-63.456-54.908-138.608-104.259-257.156-79.943s111.86-65.656 232.231 10.944c4.872 3.099 65.048 43.163 115.507 80.854 64.389 48.099 161.406 92.387 248.645 89.367s-28.312 12.39-76.225 12.391c-61.496 0-155.288-20.405-263.002-113.613" fill="url(#i)"/><g clip-path="url(#j)" fill="#fff"><path d="m0 0h276.06v-82.356c46.396 66.116 106.709 100.915 182.105 100.915 6.96 0 13.921 0 20.877-1.162v-284.177c-30.156 16.243-56.833 25.519-80.033 25.519-71.915 0-113.67-40.594-113.67-112.513v-231.978h-285.339z" transform="translate(3.7723 882.8247)"/><path d="m0 0c-3.48 46.396-23.196 67.277-63.794 67.277-35.959 0-59.156-22.038-64.955-67.277zm-131.068-127.587v-9.276c0-59.16 20.878-88.155 64.955-88.155 25.516 0 45.235 15.075 57.995 45.232l263.3-17.398c-42.916-122.949-160.067-198.338-325.936-198.338-199.503 0-342.172 141.501-342.172 313.173 0 171.662 141.508 313.173 342.172 313.173s344.494-134.551 344.494-327.093c0-10.437 0-20.881-1.161-31.318z" transform="translate(875.355 670.559)"/><path d="m0 0h-76.553v215.746h76.553v190.409c0 162.389 90.474 251.701 251.698 251.701 42.92 0 84.675-4.641 127.591-13.92v-220.381c-15.078 2.319-27.838 4.638-40.597 4.638-42.916 0-54.515-24.357-54.515-70.754v-141.693h95.112v-215.746h-95.112v-370.006h-284.177z" transform="translate(1214.5485 667.0788)"/><path d="m1623.737 882.825h284.177v-585.752h-284.177z"/><path d="m0 0h276.06v-81.195c48.715 67.274 106.713 99.754 182.108 99.754 122.95 0 202.983-78.876 202.983-211.105v-393.206h-284.177v295.775c0 51.035-6.961 76.554-40.601 76.554-33.633 0-51.038-25.519-51.038-76.554v-295.775h-285.335z" transform="translate(1941.5437 882.8247)"/><path d="m0 0c-3.484 46.396-23.204 67.277-63.797 67.277-35.956 0-59.152-22.038-64.959-67.277zm-131.071-127.587v-9.276c0-59.16 20.874-88.155 64.951-88.155 25.519 0 45.239 15.075 57.998 45.232l263.297-17.398c-42.916-122.949-160.067-198.338-325.933-198.338-199.506 0-342.175 141.501-342.175 313.173 0 171.662 141.515 313.173 342.175 313.173 200.668 0 344.491-134.551 344.491-327.093 0-10.437 0-20.881-1.154-31.318z" transform="translate(3006.6187 670.559)"/><path d="m0 0h276.056v-82.356c46.4 66.116 106.714 83.056 182.109 83.056 6.96 0 13.921 0 20.881-1.161v-266.319c-30.157 16.243-56.837 25.519-80.033 25.519-71.919 0-113.674-40.594-113.674-112.513v-231.978h-285.339z" transform="translate(3277.5925 882.8247)"/><path d="m0 0h312.012l44.077-149.63c11.598-40.597 28.995-93.954 38.279-164.704 20.874 90.47 35.955 147.307 41.755 168.184l42.916 146.15h292.299l-357.251-824.691h-302.736l142.662 289.977z" transform="translate(3742.1528 882.8247)"/><path d="m0 0c-3.754 18.772-16.756 29.751-36.975 29.751-35.532 0-46.506-28.02-46.506-58.348 0-27.442 12.421-54.6 43.618-54.6 23.687 0 37.84 13.864 41.017 36.398h25.131c-5.486-36.398-28.308-58.062-65.86-58.062-45.641 0-69.906 31.774-69.906 76.264 0 44.769 23.111 80.012 70.483 80.012 33.797 0 60.951-15.887 64.417-51.415z" transform="translate(109.4813 162.0544)"/><path d="m0 0c25.708 0 46.507 20.219 46.507 56.331 0 36.398-20.799 56.616-46.507 56.616s-46.507-20.218-46.507-56.616c0-36.112 20.799-56.331 46.507-56.331m0 134.612c47.372 0 72.503-34.374 72.503-78.281 0-43.621-25.131-77.996-72.503-77.996s-72.507 34.375-72.507 77.996c0 43.907 25.135 78.281 72.507 78.281" transform="translate(227.6362 78.8579)"/><path d="m0 0h23.107v-23.681h.581c10.398 18.487 27.154 27.15 48.527 27.15 39.286 0 51.418-22.533 51.418-54.592v-98.215h-24.553v101.1c0 18.202-11.556 30.043-30.331 30.043-29.751 0-44.195-19.934-44.195-46.799v-84.344h-24.554z" transform="translate(329.0387 210.0003)"/><path d="m0 0h29.754v-21.665h-29.754v-92.721c0-11.264 3.177-13.287 18.487-13.287h11.267v-21.665h-18.776c-25.422 0-35.532 5.201-35.532 32.643v95.03h-25.419v21.665h25.419v44.776h24.554z" transform="translate(523.7468 210.0003)"/><path d="m0 0c-1.158 23.396-18.776 42.175-43.041 42.175-25.711 0-41.021-19.356-42.752-42.175zm23.684-41.598c-6.643-32.928-30.331-50.839-63.836-50.839-47.665 0-70.195 32.936-71.641 78.573 0 44.776 29.466 77.704 70.195 77.704 52.861 0 69.04-49.392 67.594-85.505h-111.789c-.866-25.996 13.863-49.107 46.507-49.107 20.218 0 34.374 9.824 38.705 29.174z" transform="translate(684.3621 149.6298)"/><path d="m0 0h23.107v-23.681h.581c10.398 18.487 27.154 27.15 48.527 27.15 39.286 0 51.419-22.533 51.419-54.592v-98.215h-24.554v101.1c0 18.202-11.556 30.043-30.331 30.043-29.751 0-44.195-19.934-44.195-46.799v-84.344h-24.554z" transform="translate(735.7881 210.0003)"/><path d="m0 0h29.754v-21.665h-29.754v-92.721c0-11.264 3.177-13.287 18.487-13.287h11.267v-21.665h-18.776c-25.422 0-35.532 5.201-35.532 32.643v95.03h-25.419v21.665h25.419v44.776h24.554z" transform="translate(930.4963 210.0003)"/><path d="m0 0h23.107v-21.95h.581c10.975 16.756 27.731 25.419 48.238 25.419 18.199 0 34.955-7.223 41.021-25.419 10.109 15.887 27.731 25.419 46.796 25.419 29.75 0 49.684-12.417 49.684-43.329v-109.478h-24.554v97.923c0 18.487-4.912 33.22-28.885 33.22-23.688 0-38.998-15.018-38.998-38.129v-93.014h-24.553v97.923c0 19.356-6.067 33.22-28.02 33.22-29.177 0-39.863-26.866-39.863-38.129v-93.014h-24.554z" transform="translate(1067.7192 210.0003)"/><path d="m0 0c-9.532-6.932-28.02-7.224-44.484-10.109-16.179-2.893-30.042-8.67-30.042-26.866 0-16.179 13.863-21.956 28.885-21.956 32.354 0 45.641 20.218 45.641 33.797zm39.864-76.55c-4.332-2.6-9.821-4.046-17.622-4.046-12.71 0-20.799 6.932-20.799 23.111-13.576-15.887-31.774-23.111-52.573-23.111-27.151 0-49.396 12.132-49.396 41.883 0 33.797 25.134 41.021 50.553 45.93 27.154 5.2 50.262 3.469 50.262 21.957 0 21.372-17.622 24.842-33.221 24.842-20.795 0-36.105-6.355-37.263-28.312h-24.553c1.446 36.975 30.042 49.976 63.263 49.976 26.861 0 56.039-6.062 56.039-41.021v-76.834c0-11.556 0-16.756 7.797-16.756 2.023 0 4.335.292 7.513 1.446z" transform="translate(1406.5786 137.7893)"/><path d="m0 0h23.111v-23.681h.577c10.398 18.487 27.15 27.15 48.527 27.15 39.286 0 51.419-22.533 51.419-54.592v-98.215h-24.554v101.1c0 18.202-11.555 30.043-30.331 30.043-29.751 0-44.195-19.934-44.195-46.799v-84.344h-24.554z" transform="translate(1469.2716 210.0003)"/><path d="m0 0c-9.532-6.932-28.019-7.224-44.484-10.109-16.179-2.893-30.042-8.67-30.042-26.866 0-16.179 13.863-21.956 28.885-21.956 32.354 0 45.641 20.218 45.641 33.797zm39.864-76.55c-4.332-2.6-9.821-4.046-17.622-4.046-12.71 0-20.799 6.932-20.799 23.111-13.575-15.887-31.774-23.111-52.573-23.111-27.151 0-49.396 12.132-49.396 41.883 0 33.797 25.134 41.021 50.553 45.93 27.154 5.2 50.262 3.469 50.262 21.957 0 21.372-17.622 24.842-33.221 24.842-20.795 0-36.105-6.355-37.263-28.312h-24.553c1.446 36.975 30.042 49.976 63.263 49.976 26.861 0 56.039-6.062 56.039-41.021v-76.834c0-11.556 0-16.756 7.797-16.756 2.023 0 4.335.292 7.513 1.446z" transform="translate(1722.3306 137.7893)"/><path d="m0 0c0 26.288-11.555 53.439-42.464 53.439-31.485 0-44.195-25.712-44.195-54.308 0-26.866 9.821-56.908 42.175-56.908 32.351 0 44.484 29.757 44.484 57.777m24.265-64.994c0-48.53-22.242-73.372-69.329-73.372-28.02 0-60.371 11.263-61.817 43.906h24.554c1.157-17.91 22.534-24.265 38.709-24.265 32.063 0 44.772 23.111 44.772 56.616v9.824h-.577c-8.086-18.202-27.731-27.157-46.507-27.157-44.483 0-66.729 34.958-66.729 75.688 0 35.236 17.334 78.857 69.041 78.857 18.776 0 35.528-8.378 44.484-24.842h-.289.577v21.373h23.111z" transform="translate(1889.5928 138.3664)"/><path d="m0 0c-1.158 23.396-18.776 42.175-43.041 42.175-25.711 0-41.021-19.356-42.752-42.175zm23.685-41.598c-6.644-32.928-30.332-50.839-63.837-50.839-47.665 0-70.195 32.936-71.641 78.573 0 44.776 29.466 77.704 70.195 77.704 52.861 0 69.04-49.392 67.594-85.505h-111.789c-.866-25.996 13.863-49.107 46.507-49.107 20.218 0 34.374 9.824 38.705 29.174z" transform="translate(2054.5466 149.6298)"/><path d="m0 0h23.107v-21.95h.581c10.975 16.756 27.731 25.419 48.238 25.419 18.199 0 34.955-7.223 41.021-25.419 10.11 15.887 27.731 25.419 46.796 25.419 29.75 0 49.684-12.417 49.684-43.329v-109.478h-24.55v97.923c0 18.487-4.916 33.22-28.889 33.22-23.688 0-38.998-15.018-38.998-38.129v-93.014h-24.553v97.923c0 19.356-6.067 33.22-28.02 33.22-29.177 0-39.863-26.866-39.863-38.129v-93.014h-24.554z" transform="translate(2105.9727 210.0003)"/><path d="m0 0c-1.154 23.396-18.772 42.175-43.037 42.175-25.712 0-41.022-19.356-42.753-42.175zm23.688-41.598c-6.64-32.928-30.328-50.839-63.84-50.839-47.661 0-70.195 32.936-71.634 78.573 0 44.776 29.459 77.704 70.195 77.704 52.862 0 69.033-49.392 67.594-85.505h-111.793c-.869-25.996 13.864-49.107 46.507-49.107 20.219 0 34.375 9.824 38.706 29.174z" transform="translate(2456.0955 149.6298)"/><path d="m0 0h23.111v-23.681h.577c10.401 18.487 27.15 27.15 48.53 27.15 39.283 0 51.416-22.533 51.416-54.592v-98.215h-24.551v101.1c0 18.202-11.555 30.043-30.334 30.043-29.751 0-44.199-19.934-44.199-46.799v-84.344h-24.55z" transform="translate(2507.5251 210.0003)"/><path d="m0 0h29.751v-21.665h-29.751v-92.721c0-11.264 3.177-13.287 18.487-13.287h11.264v-21.665h-18.78c-25.419 0-35.528 5.201-35.528 32.643v95.03h-25.419v21.665h25.419v44.776h24.557z" transform="translate(2702.2368 210.0003)"/><path d="m0 0c.869-21.957 19.934-28.889 40.152-28.889 15.31 0 36.113 3.47 36.113 22.242 0 19.064-24.265 22.242-48.823 27.735-24.265 5.485-48.815 13.578-48.815 42.175 0 30.043 29.751 42.46 55.754 42.46 32.929 0 59.217-10.401 61.233-46.799h-24.55c-1.731 19.072-18.487 25.135-34.667 25.135-14.732 0-31.773-4.047-31.773-19.065 0-17.618 25.996-20.51 48.822-25.996 24.55-5.493 48.815-13.579 48.815-42.467 0-35.529-33.22-47.084-63.548-47.084-33.512 0-61.817 13.578-63.263 50.553z" transform="translate(2854.4741 107.7466)"/><path d="m0 0c-11.263-29.174-21.373-39.86-43.329-39.86-5.778 0-11.556.577-17.041 2.593v22.534c4.616-1.446 9.532-3.462 14.44-3.462 10.11 0 15.602 4.908 20.219 13.571l10.109 25.42-59.216 148.475h27.734l43.615-122.187h.584l41.883 122.187h25.996z" transform="translate(3042.5388 40.7291)"/><path d="m0 0c.869-21.957 19.934-28.889 40.152-28.889 15.31 0 36.113 3.47 36.113 22.242 0 19.064-24.265 22.242-48.822 27.735-24.266 5.485-48.816 13.578-48.816 42.175 0 30.043 29.751 42.46 55.755 42.46 32.928 0 59.216-10.401 61.232-46.799h-24.55c-1.731 19.072-18.487 25.135-34.666 25.135-14.733 0-31.774-4.047-31.774-19.065 0-17.618 25.996-20.51 48.822-25.996 24.55-5.493 48.815-13.579 48.815-42.467 0-35.529-33.22-47.084-63.548-47.084-33.512 0-61.817 13.578-63.263 50.553z" transform="translate(3143.3606 107.7466)"/><path d="m0 0h29.751v-21.665h-29.751v-92.721c0-11.264 3.177-13.287 18.487-13.287h11.264v-21.665h-18.78c-25.419 0-35.528 5.201-35.528 32.643v95.03h-25.419v21.665h25.419v44.776h24.557z" transform="translate(3306.8755 210.0003)"/><path d="m0 0c-1.154 23.396-18.772 42.175-43.037 42.175-25.712 0-41.022-19.356-42.753-42.175zm23.688-41.598c-6.64-32.928-30.328-50.839-63.84-50.839-47.661 0-70.195 32.936-71.634 78.573 0 44.776 29.459 77.704 70.195 77.704 52.862 0 69.033-49.392 67.594-85.505h-111.793c-.869-25.996 13.864-49.107 46.507-49.107 20.219 0 34.374 9.824 38.706 29.174z" transform="translate(3467.4836 149.6298)"/><path d="m0 0h23.111v-21.95h.577c10.978 16.756 27.727 25.419 48.238 25.419 18.202 0 34.951-7.223 41.021-25.419 10.109 15.887 27.728 25.419 46.792 25.419 29.758 0 49.684-12.417 49.684-43.329v-109.478h-24.55v97.923c0 18.487-4.908 33.22-28.889 33.22-23.688 0-38.997-15.018-38.997-38.129v-93.014h-24.55v97.923c0 19.356-6.063 33.22-28.02 33.22-29.174 0-39.867-26.866-39.867-38.129v-93.014h-24.55z" transform="translate(3518.9133 210.0003)"/></g><path d="m1910.009 1385.63c-124.019-95.445-109.428-152.591-268.098-180.556s179.948-70.521 286.943 53.498c106.996 124.019 266.275 120.37 266.275 120.37s-74.837 47.437-161.755 47.441c-40.618.001-83.868-10.356-123.365-40.753" fill="url(#k)"/><path d="m1911.224 1369.216c-107.769-82.941-106.995-147.119-254.724-164.915s166.981-40.788 263.843 71.901c93.014 108.212 237.702 108.212 237.702 108.212s-53.506 26.06-119.849 26.064c-40.62 0-86.045-9.764-126.972-41.262" fill="url(#l)"/><path d="m1857.726 1287.753c-62.617-70.521-156.239-83.895-156.239-83.895 138.609-5.471 196.363 78.423 196.363 78.423 6.432 7.522 26.578 29.315 32.22 34.652 67.481 63.834 142.257 71.736 142.257 71.736-103.35 0-156.576-35.568-214.601-100.916" fill="url(#m)"/><path d="m2183.578 1164.038c-113.075-67.48-134.961-118.546-252.596-138.608s144.992-59.274 262.627 41.035c117.635 100.309 220.679 94.838 220.679 94.838s-53.67 32.032-123.347 32.034c-33.484.001-70.66-7.395-107.363-29.299" fill="url(#n)"/><path d="m2175.675 1143.065c-98.553-64.633-111.843-96.44-216.273-118.843s118.841-35.741 224.176 53.794c109.428 93.014 189.675 88.15 189.675 88.15s-31.323 13.135-76.263 13.136c-34.971 0-78.187-7.953-121.315-36.237" fill="url(#o)"/><path d="m2136.159 1095.039c-46.202-38.909-106.388-60.794-123.41-66.266s56.537-6.686 120.371 32.829c63.832 39.515 35.867 32.828 124.017 92.405s-60.43-7.98-120.978-58.968" fill="url(#p)"/></g></svg>
|