rabbit-slide-daijiro-groonga-night-3 2012.11.29
Sign up to get free protection for your applications and to get access to all the features.
- data/.rabbit +1 -0
- data/README.rd +24 -0
- data/Rakefile +10 -0
- data/config.yaml +20 -0
- data/introduction.rab +205 -0
- data/pdf/groonga-night-3-introduction.pdf +0 -0
- data/rabbit/theme/groonga/groonga-logo.png +0 -0
- data/rabbit/theme/groonga/groonga-logo.svg +152 -0
- data/rabbit/theme/groonga/groonga.rb +4 -0
- data/yuube2012-fig01.svg +974 -0
- data/yuube2012-fig02.svg +2068 -0
- data/yuube2012-fig03.svg +2174 -0
- data/yuube2012-fig04.svg +1722 -0
- data/yuube2012-fig05.svg +885 -0
- data/yuube2012-fig06.svg +5379 -0
- data/yuube2012-fig07.svg +398 -0
- data/yuube2012-fig08.svg +966 -0
- data/yuube2012-fig09.svg +1101 -0
- data/yuube2012-fig10.svg +3950 -0
- metadata +81 -0
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
introduction.rab
|
data/README.rd
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
= グルンガの紹介
|
2
|
+
|
3
|
+
groongaは全文検索エンジンだと言われたり、カラムストアだと言われたりして、なんだかとらえどころがないと感じるかもしれません。そこで今回は、groongaの一番根っこの部分の仕組みについて簡潔に説明してみました。
|
4
|
+
|
5
|
+
== For author
|
6
|
+
|
7
|
+
=== Show
|
8
|
+
|
9
|
+
rake
|
10
|
+
|
11
|
+
=== Publish
|
12
|
+
|
13
|
+
rake publish
|
14
|
+
|
15
|
+
== For viewers
|
16
|
+
|
17
|
+
=== Install
|
18
|
+
|
19
|
+
gem install rabbit-slide-daijiro-groonga-night-3
|
20
|
+
|
21
|
+
=== Show
|
22
|
+
|
23
|
+
rabbit rabbit-slide-daijiro-groonga-night-3.gem
|
24
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
Rabbit::Task::Slide.new do |task|
|
6
|
+
# task.spec.licenses = ["CC BY-SA 3.0"]
|
7
|
+
# task.spec.files += Dir.glob("doc/**/*.*")
|
8
|
+
# task.spec.files -= Dir.glob("private/**/*.*")
|
9
|
+
# task.spec.add_runtime_dependency("YOUR THEME")
|
10
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
id: groonga-night-3
|
3
|
+
base_name: introduction
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- groonga
|
7
|
+
presentation_date: 2012/11/29
|
8
|
+
version: 2012.11.29
|
9
|
+
licenses:
|
10
|
+
- CC BY 3.0
|
11
|
+
|
12
|
+
slideshare_id:
|
13
|
+
speaker_deck_id:
|
14
|
+
author:
|
15
|
+
markup_language: :rd
|
16
|
+
name: Daijiro MORI
|
17
|
+
email: daijiro.mori@gmail.com
|
18
|
+
rubygems_user: daijiro
|
19
|
+
slideshare_user:
|
20
|
+
speaker_deck_user:
|
data/introduction.rab
ADDED
@@ -0,0 +1,205 @@
|
|
1
|
+
= グルンガの紹介
|
2
|
+
: subtitle
|
3
|
+
groonga開発者から
|
4
|
+
: institution
|
5
|
+
未来検索ブラジル\n
|
6
|
+
森大二郎
|
7
|
+
: theme
|
8
|
+
groonga
|
9
|
+
|
10
|
+
= 今日の内容
|
11
|
+
|
12
|
+
* 3分でわかるgroongaの核心
|
13
|
+
* *roonga族の使い分け
|
14
|
+
* groonga開発予報
|
15
|
+
|
16
|
+
= groongaって何ですか?
|
17
|
+
|
18
|
+
* 全文検索が得意な
|
19
|
+
* カラム指向のデータストア
|
20
|
+
* 巷のKVSやNoSQLとどう違う?
|
21
|
+
|
22
|
+
= KVSのkey-valueペア
|
23
|
+
|
24
|
+
# image
|
25
|
+
# src = yuube2012-fig01.svg
|
26
|
+
# relative_width = 100
|
27
|
+
|
28
|
+
= KVSへのアクセス
|
29
|
+
|
30
|
+
# image
|
31
|
+
# src = yuube2012-fig02.svg
|
32
|
+
# relative_width = 100
|
33
|
+
|
34
|
+
= groongaのデータモデル
|
35
|
+
|
36
|
+
# image
|
37
|
+
# src = yuube2012-fig03.svg
|
38
|
+
# relative_width = 100
|
39
|
+
|
40
|
+
= groongaへのアクセス
|
41
|
+
|
42
|
+
# image
|
43
|
+
# src = yuube2012-fig04.svg
|
44
|
+
# relative_width = 100
|
45
|
+
|
46
|
+
= groongaにおけるtableとcolumn
|
47
|
+
|
48
|
+
# image
|
49
|
+
# src = yuube2012-fig05.svg
|
50
|
+
# relative_width = 100
|
51
|
+
|
52
|
+
= groongaにおけるtable
|
53
|
+
|
54
|
+
* key→id, id→keyを高速に検索
|
55
|
+
* ハッシュ表, トライなど
|
56
|
+
* 機能面・性能面でそれぞれ個性がある
|
57
|
+
|
58
|
+
= groongaにおけるcolumn
|
59
|
+
|
60
|
+
個々に固有のデータ構造を持つ
|
61
|
+
|
62
|
+
# image
|
63
|
+
# src = yuube2012-fig06.svg
|
64
|
+
# relative_width = 80
|
65
|
+
|
66
|
+
= idとvalueを分けることで
|
67
|
+
|
68
|
+
複数のカラムを持てる
|
69
|
+
|
70
|
+
# image
|
71
|
+
# src = yuube2012-fig07.svg
|
72
|
+
# relative_width = 100
|
73
|
+
|
74
|
+
= 多様なデータ構造も表現
|
75
|
+
|
76
|
+
# image
|
77
|
+
# src = yuube2012-fig08.svg
|
78
|
+
# relative_width = 100
|
79
|
+
|
80
|
+
= groongaの特徴
|
81
|
+
|
82
|
+
* DBを複数プロセスで共有可能
|
83
|
+
* 更新処理は、
|
84
|
+
* table,column単位で
|
85
|
+
* atomicに実行
|
86
|
+
|
87
|
+
= リアルタイムウェブなどに!
|
88
|
+
|
89
|
+
* 更新も検索も頻繁な環境で
|
90
|
+
* 更新性能と検索性能を両立
|
91
|
+
* コア数の多い環境で
|
92
|
+
* CPU性能を最大限発揮
|
93
|
+
|
94
|
+
= *roonga族の使い分け
|
95
|
+
|
96
|
+
クエリによって処理時間が異なる
|
97
|
+
|
98
|
+
* key参照 : usec単位
|
99
|
+
* index参照 : msec単位
|
100
|
+
* 全文検索 : 10m~100msec
|
101
|
+
* tablescan: sec単位
|
102
|
+
|
103
|
+
= *roonga族の使い分け
|
104
|
+
|
105
|
+
:kvs的に使うなら
|
106
|
+
低レイヤAPIが高速
|
107
|
+
:全文検索なら
|
108
|
+
ネットワーク経由で十分
|
109
|
+
|
110
|
+
= 使用可能なAPIの違い
|
111
|
+
|
112
|
+
# image
|
113
|
+
# src = yuube2012-fig09.svg
|
114
|
+
# relative_width = 100
|
115
|
+
|
116
|
+
= 今日のgroonga
|
117
|
+
|
118
|
+
:groonga2.0.9 リリース!
|
119
|
+
高度な検索機能をサポート!
|
120
|
+
:fluent-plugin-groonga
|
121
|
+
fluentdを使ってお手軽レプリケーション
|
122
|
+
|
123
|
+
= groonga開発予報
|
124
|
+
|
125
|
+
* スケーラビリティ向上
|
126
|
+
* scale up, scale out どちらも
|
127
|
+
|
128
|
+
= scale up
|
129
|
+
|
130
|
+
groonga++
|
131
|
+
|
132
|
+
最大レコード数を1000倍に拡大
|
133
|
+
静的なデータは圧縮
|
134
|
+
MARISA-trieが使用可能に
|
135
|
+
(gzipより小さく圧縮 & 高速検索!!)
|
136
|
+
https://github.com/groonga/grnxx
|
137
|
+
|
138
|
+
= scale out
|
139
|
+
|
140
|
+
* MySQL使いなら迷わずSpider
|
141
|
+
* MySQLでない人は..
|
142
|
+
|
143
|
+
= fluentdでsharding
|
144
|
+
|
145
|
+
・fluentedでreplicationだけでなく
|
146
|
+
shardingもできないか?
|
147
|
+
・複数へのクエリの配信と結果のマージを
|
148
|
+
fluentdでできないか?
|
149
|
+
・絶賛実験中
|
150
|
+
|
151
|
+
= 実験システムの構成
|
152
|
+
|
153
|
+
# image
|
154
|
+
# src = yuube2012-fig10.svg
|
155
|
+
# relative_width = 100
|
156
|
+
|
157
|
+
= plugin out-merge
|
158
|
+
|
159
|
+
<source>
|
160
|
+
type forward
|
161
|
+
port 24224
|
162
|
+
</source>
|
163
|
+
<match groonga.**>
|
164
|
+
type merge
|
165
|
+
<store>
|
166
|
+
type groonga_stream
|
167
|
+
database MULTIDB/wiki1
|
168
|
+
</store>
|
169
|
+
<store>
|
170
|
+
type groonga_stream
|
171
|
+
database MULTIDB/wiki2
|
172
|
+
</store>
|
173
|
+
<store>
|
174
|
+
type groonga_stream
|
175
|
+
database MULTIDB/wiki3
|
176
|
+
</store>
|
177
|
+
<store>
|
178
|
+
type groonga_stream
|
179
|
+
database MULTIDB/wiki4
|
180
|
+
</store>
|
181
|
+
<emit>
|
182
|
+
type socket_io
|
183
|
+
dest http://localhost:3000
|
184
|
+
</emit>
|
185
|
+
</match>
|
186
|
+
|
187
|
+
= 実験環境
|
188
|
+
|
189
|
+
検索対象: Wikipedia(en) 4343516件(15GB)
|
190
|
+
クエリ: "test" (クエリキャッシュ無効) (95972件hit)
|
191
|
+
出力: 上位100件のスコアと主キー
|
192
|
+
サーバ(1台): CPU: Xeon X5550 2.67GHz * 2
|
193
|
+
クライアント(1台): ab -c 100 -n 10000
|
194
|
+
|
195
|
+
= 実験結果
|
196
|
+
|
197
|
+
groonga server(単一DB): 184qps
|
198
|
+
fluentd + node (4shard): 308qps
|
199
|
+
|
200
|
+
・まだまだ検証が必要ですが、
|
201
|
+
・素のgroongaより1.6倍以上高速!
|
202
|
+
・近々リリースを目指します
|
203
|
+
・とりあえずfluentd優秀
|
204
|
+
|
205
|
+
= ご静聴ありがとうございました
|
Binary file
|
Binary file
|
@@ -0,0 +1,152 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 13.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="レイヤー_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="427.54px" height="133px" viewBox="0 0 427.54 133" enable-background="new 0 0 427.54 133" xml:space="preserve">
|
5
|
+
<pattern x="-210.521" y="364.437" width="69" height="69" patternUnits="userSpaceOnUse" id="Unnamed_Pattern" viewBox="2.125 -70.896 69 69" overflow="visible">
|
6
|
+
<g>
|
7
|
+
<polygon fill="none" points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896"/>
|
8
|
+
<polygon fill="#F7C454" points="71.125,-1.896 2.125,-1.896 2.125,-70.896 71.125,-70.896"/>
|
9
|
+
<g>
|
10
|
+
<path fill="#FFFFFF" d="M61.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
11
|
+
<path fill="#FFFFFF" d="M54.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
12
|
+
<path fill="#FFFFFF" d="M46.439-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
13
|
+
<path fill="#FFFFFF" d="M38.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
14
|
+
<path fill="#FFFFFF" d="M31.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
15
|
+
<path fill="#FFFFFF" d="M23.439-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
16
|
+
<path fill="#FFFFFF" d="M15.772-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
17
|
+
<path fill="#FFFFFF" d="M8.105-71.653c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
18
|
+
<path fill="#FFFFFF" d="M0.439-71.653c0.018,0.072,0.008,0.127-0.026,0.19C0.361-71.362,0.3-71.4,0.248-71.335 c-0.051,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
19
|
+
</g>
|
20
|
+
<g>
|
21
|
+
<path fill="#FFFFFF" d="M69.439-71.653c0.018,0.072,0.008,0.127-0.026,0.19c-0.052,0.101-0.113,0.063-0.165,0.128 c-0.051,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
22
|
+
</g>
|
23
|
+
<path fill="#FFFFFF" d="M0.495-71.653c0.018,0.072,0.008,0.127-0.026,0.19c-0.052,0.101-0.113,0.063-0.165,0.128 c-0.051,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224C0.5-71.68,0.503-71.744,0.51-71.626 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
24
|
+
<g>
|
25
|
+
<g>
|
26
|
+
<path fill="#FFFFFF" d="M69.439-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
27
|
+
<path fill="#FFFFFF" d="M61.778-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
28
|
+
<path fill="#FFFFFF" d="M54.118-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
29
|
+
<path fill="#FFFFFF" d="M46.458-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
30
|
+
<path fill="#FFFFFF" d="M38.797-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
31
|
+
<path fill="#FFFFFF" d="M31.137-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
32
|
+
<path fill="#FFFFFF" d="M23.477-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
33
|
+
<path fill="#FFFFFF" d="M15.816-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
34
|
+
<path fill="#FFFFFF" d="M8.156-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
35
|
+
<path fill="#FFFFFF" d="M0.495-64.001c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143C2-61.45,2.217-61.397,2.391-61.46c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
36
|
+
</g>
|
37
|
+
<g>
|
38
|
+
<path fill="#FFFFFF" d="M69.439-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
39
|
+
<path fill="#FFFFFF" d="M61.778-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
40
|
+
<path fill="#FFFFFF" d="M54.118-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
41
|
+
<path fill="#FFFFFF" d="M46.458-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
42
|
+
<path fill="#FFFFFF" d="M38.797-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
43
|
+
<path fill="#FFFFFF" d="M31.137-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
44
|
+
<path fill="#FFFFFF" d="M23.477-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
45
|
+
<path fill="#FFFFFF" d="M15.816-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
46
|
+
<path fill="#FFFFFF" d="M8.156-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
47
|
+
<path fill="#FFFFFF" d="M0.495-56.348c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-56.374,0.503-56.438,0.51-56.32 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
48
|
+
</g>
|
49
|
+
<g>
|
50
|
+
<path fill="#FFFFFF" d="M69.439-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
51
|
+
<path fill="#FFFFFF" d="M61.778-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
52
|
+
<path fill="#FFFFFF" d="M54.118-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
53
|
+
<path fill="#FFFFFF" d="M46.458-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
54
|
+
<path fill="#FFFFFF" d="M38.797-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
55
|
+
<path fill="#FFFFFF" d="M31.137-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
56
|
+
<path fill="#FFFFFF" d="M23.477-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
57
|
+
<path fill="#FFFFFF" d="M15.816-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
58
|
+
<path fill="#FFFFFF" d="M8.156-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
59
|
+
<path fill="#FFFFFF" d="M0.495-48.695c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
60
|
+
</g>
|
61
|
+
<g>
|
62
|
+
<path fill="#FFFFFF" d="M69.439-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
63
|
+
<path fill="#FFFFFF" d="M61.778-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
64
|
+
<path fill="#FFFFFF" d="M54.118-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
65
|
+
<path fill="#FFFFFF" d="M46.458-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
66
|
+
<path fill="#FFFFFF" d="M38.797-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
67
|
+
<path fill="#FFFFFF" d="M31.137-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
68
|
+
<path fill="#FFFFFF" d="M23.477-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
69
|
+
<path fill="#FFFFFF" d="M15.816-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
70
|
+
<path fill="#FFFFFF" d="M8.156-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 C8.15-41.004,8.149-41.02,8.14-41.04"/>
|
71
|
+
<path fill="#FFFFFF" d="M0.495-41.042c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
72
|
+
</g>
|
73
|
+
<g>
|
74
|
+
<path fill="#FFFFFF" d="M69.439-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
75
|
+
<path fill="#FFFFFF" d="M61.778-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
76
|
+
<path fill="#FFFFFF" d="M54.118-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
77
|
+
<path fill="#FFFFFF" d="M46.458-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
78
|
+
<path fill="#FFFFFF" d="M38.797-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
79
|
+
<path fill="#FFFFFF" d="M31.137-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
80
|
+
<path fill="#FFFFFF" d="M23.477-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
81
|
+
<path fill="#FFFFFF" d="M15.816-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
82
|
+
<path fill="#FFFFFF" d="M8.156-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
83
|
+
<path fill="#FFFFFF" d="M0.495-33.39c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-33.416,0.503-33.48,0.51-33.362 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
84
|
+
</g>
|
85
|
+
<g>
|
86
|
+
<path fill="#FFFFFF" d="M69.439-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
87
|
+
<path fill="#FFFFFF" d="M61.778-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
88
|
+
<path fill="#FFFFFF" d="M54.118-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
89
|
+
<path fill="#FFFFFF" d="M46.458-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
90
|
+
<path fill="#FFFFFF" d="M38.797-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
91
|
+
<path fill="#FFFFFF" d="M31.137-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
92
|
+
<path fill="#FFFFFF" d="M23.477-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
93
|
+
<path fill="#FFFFFF" d="M15.816-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
94
|
+
<path fill="#FFFFFF" d="M8.156-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
95
|
+
<path fill="#FFFFFF" d="M0.495-25.736c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
96
|
+
</g>
|
97
|
+
<g>
|
98
|
+
<path fill="#FFFFFF" d="M69.439-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
99
|
+
<path fill="#FFFFFF" d="M61.778-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
100
|
+
<path fill="#FFFFFF" d="M54.118-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
101
|
+
<path fill="#FFFFFF" d="M46.458-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
102
|
+
<path fill="#FFFFFF" d="M38.797-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
103
|
+
<path fill="#FFFFFF" d="M31.137-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
104
|
+
<path fill="#FFFFFF" d="M23.477-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
105
|
+
<path fill="#FFFFFF" d="M15.816-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
106
|
+
<path fill="#FFFFFF" d="M8.156-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
107
|
+
<path fill="#FFFFFF" d="M0.495-18.084c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224C0.5-18.11,0.503-18.175,0.51-18.057 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
108
|
+
</g>
|
109
|
+
<g>
|
110
|
+
<path fill="#FFFFFF" d="M69.439-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362C69-9.692,69.159-9.523,69.154-9.4c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
111
|
+
<path fill="#FFFFFF" d="M61.778-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
112
|
+
<path fill="#FFFFFF" d="M54.118-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
113
|
+
<path fill="#FFFFFF" d="M46.458-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
114
|
+
<path fill="#FFFFFF" d="M38.797-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
115
|
+
<path fill="#FFFFFF" d="M31.137-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
116
|
+
<path fill="#FFFFFF" d="M23.477-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
117
|
+
<path fill="#FFFFFF" d="M15.816-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.009,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 c0.177,0.042,0.384-0.104,0.543-0.143c0.18-0.043,0.397,0.01,0.571-0.053C17.933-7.969,17.839-8.227,18-8.34 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
118
|
+
<path fill="#FFFFFF" d="M8.156-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 C7.915-10.05,7.866-9.836,7.886-9.75C7.717-9.692,7.876-9.523,7.871-9.4C7.868-9.351,7.83-9.295,7.826-9.239 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C9.114-7.652,9.321-7.799,9.48-7.837c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
119
|
+
<path fill="#FFFFFF" d="M0.495-10.431c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 C0.254-10.05,0.205-9.836,0.225-9.75C0.056-9.692,0.215-9.523,0.21-9.4c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37C0.33-8.671,0.501-8.456,0.668-8.325c0.19,0.148,0.365,0.572,0.608,0.631 C1.454-7.652,1.66-7.799,1.819-7.837C2-7.88,2.217-7.827,2.391-7.89c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46C3.477-8.933,3.471-8.995,3.5-9.071 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
120
|
+
</g>
|
121
|
+
</g>
|
122
|
+
<g>
|
123
|
+
<path fill="#FFFFFF" d="M69.439-2.778c0.018,0.072,0.008,0.127-0.026,0.19C69.361-2.487,69.3-2.525,69.248-2.46 c-0.051,0.063-0.099,0.276-0.079,0.362C69-2.04,69.159-1.871,69.154-1.748c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C70.397,0,70.604-0.146,70.763-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.215,0.124-0.215,0.224c0.002,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
124
|
+
<path fill="#FFFFFF" d="M61.778-2.778c0.018,0.072,0.007,0.127-0.026,0.19C61.7-2.487,61.64-2.525,61.587-2.46 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C62.737,0,62.943-0.146,63.103-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224C61.915-3.117,61.78-3.02,61.781-2.92c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
125
|
+
<path fill="#FFFFFF" d="M54.118-2.778c0.018,0.072,0.007,0.127-0.026,0.19C54.04-2.487,53.98-2.525,53.927-2.46 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C55.077,0,55.283-0.146,55.442-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224C54.255-3.117,54.12-3.02,54.121-2.92c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
126
|
+
<path fill="#FFFFFF" d="M46.458-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C47.416,0,47.623-0.146,47.782-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224C46.594-3.117,46.459-3.02,46.46-2.92c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
127
|
+
<path fill="#FFFFFF" d="M38.797-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C39.756,0,39.962-0.146,40.122-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224C38.934-3.117,38.799-3.02,38.8-2.92c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
128
|
+
<path fill="#FFFFFF" d="M31.137-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C32.095,0,32.302-0.146,32.461-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224C31.273-3.117,31.139-3.02,31.14-2.92c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
129
|
+
<path fill="#FFFFFF" d="M23.477-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C24.435,0,24.642-0.146,24.801-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 c-0.021,0.011-0.021-0.005-0.03-0.025"/>
|
130
|
+
<path fill="#FFFFFF" d="M15.816-2.778c0.018,0.072,0.007,0.127-0.026,0.19c-0.053,0.101-0.112,0.063-0.165,0.128 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C16.774,0,16.981-0.146,17.14-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789c-0.18,0.034-0.287,0.126-0.442,0.207 c-0.17,0.088-0.139,0.166-0.318,0.224c-0.081,0.026-0.216,0.124-0.215,0.224c0.001,0.115,0.005,0.051,0.012,0.169 C15.81-2.74,15.809-2.756,15.8-2.776"/>
|
131
|
+
<path fill="#FFFFFF" d="M8.156-2.778c0.018,0.072,0.007,0.127-0.026,0.19C8.077-2.487,8.018-2.525,7.965-2.46 c-0.05,0.063-0.099,0.276-0.079,0.362c-0.169,0.058-0.01,0.227-0.015,0.35C7.868-1.698,7.83-1.643,7.826-1.587 c-0.01,0.119,0.017,0.266,0.068,0.37c0.097,0.198,0.268,0.413,0.435,0.544c0.19,0.148,0.365,0.572,0.608,0.631 C9.114,0,9.321-0.146,9.48-0.185c0.18-0.043,0.397,0.01,0.571-0.053c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.069,0.339-0.263,0.376-0.46c0.016-0.082,0.01-0.145,0.039-0.221 c0.039-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.052-0.12-0.064-0.187c-0.022-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789C8.954-3.54,8.847-3.448,8.692-3.367 c-0.17,0.088-0.139,0.166-0.318,0.224C8.292-3.117,8.158-3.02,8.159-2.92C8.16-2.805,8.164-2.869,8.17-2.751 C8.15-2.74,8.149-2.756,8.14-2.776"/>
|
132
|
+
<path fill="#FFFFFF" d="M0.495-2.778c0.018,0.072,0.008,0.127-0.026,0.19C0.417-2.487,0.356-2.525,0.304-2.46 C0.253-2.397,0.205-2.184,0.225-2.098C0.056-2.04,0.215-1.871,0.21-1.748c-0.002,0.05-0.041,0.105-0.045,0.161 c-0.01,0.119,0.017,0.266,0.068,0.37C0.33-1.019,0.501-0.804,0.668-0.673c0.19,0.148,0.365,0.572,0.608,0.631 C1.454,0,1.66-0.146,1.819-0.185C2-0.228,2.217-0.175,2.391-0.237c0.222-0.079,0.127-0.337,0.288-0.45 c0.104-0.074,0.287-0.01,0.406-0.051c0.2-0.07,0.339-0.263,0.376-0.46C3.477-1.28,3.471-1.343,3.5-1.419 c0.038-0.103,0.111-0.16,0.09-0.293c-0.01-0.062-0.051-0.12-0.064-0.187c-0.021-0.114,0.002-0.224,0-0.337 c-0.003-0.2,0.017-0.379-0.078-0.55c-0.38-0.688-1.236-0.929-1.975-0.789C1.293-3.54,1.187-3.448,1.031-3.367 c-0.17,0.088-0.139,0.166-0.318,0.224C0.632-3.117,0.498-3.02,0.498-2.92C0.5-2.805,0.503-2.869,0.51-2.751 C0.489-2.74,0.488-2.756,0.479-2.776"/>
|
133
|
+
</g>
|
134
|
+
</g>
|
135
|
+
</pattern>
|
136
|
+
<g>
|
137
|
+
<path fill="#49474E" d="M217.589,21.432c-12.238,0-22.162,9.923-22.162,22.163c0,12.241,9.924,22.165,22.162,22.165 c12.24,0,22.164-9.924,22.164-22.165C239.753,31.354,229.829,21.432,217.589,21.432z M217.589,55.785 c-6.73,0-12.189-5.458-12.189-12.19s5.459-12.189,12.189-12.189c6.734,0,12.191,5.457,12.191,12.189S224.323,55.785,217.589,55.785 z"/>
|
138
|
+
<path fill="#49474E" d="M264.536,21.432c-12.24,0-22.164,9.923-22.164,22.163c0,12.241,9.924,22.165,22.164,22.165 S286.7,55.836,286.7,43.595C286.7,31.354,276.776,21.432,264.536,21.432z M264.536,55.785c-6.732,0-12.189-5.458-12.189-12.19 s5.457-12.189,12.189-12.189s12.189,5.457,12.189,12.189S271.269,55.785,264.536,55.785z"/>
|
139
|
+
<path fill="#49474E" d="M160.897,43.595c0-12.24-9.923-22.163-22.163-22.163c-12.241,0-22.164,9.923-22.164,22.163 c0,12.241,9.923,22.165,22.164,22.165c4.505,0,8.692-1.349,12.19-3.657c0,0,0,15.746,0,15.778c0,6.731-5.458,12.19-12.19,12.19 s-12.19-5.459-12.19-12.19c0-2.268,0.631-4.38,1.711-6.196l-8.635-5.014c-1.934,3.289-3.05,7.117-3.05,11.21 c0,12.241,9.923,22.164,22.164,22.164c12.24,0,22.163-9.923,22.163-22.164C160.897,77.849,160.897,43.595,160.897,43.595z M138.734,55.785c-6.732,0-12.19-5.458-12.19-12.19s5.458-12.189,12.19-12.189s12.19,5.457,12.19,12.189 S145.467,55.785,138.734,55.785z"/>
|
140
|
+
<path fill="#49474E" d="M405.376,21.432c-12.24,0-22.164,9.923-22.164,22.163c0,12.241,9.924,22.165,22.164,22.165 c0.008,0,0.016-0.001,0.023-0.001v0.015h22.141V43.595C427.54,31.354,417.616,21.432,405.376,21.432z M393.185,43.595 c0-6.732,5.459-12.189,12.191-12.189s12.189,5.457,12.189,12.189s-5.457,12.19-12.189,12.19S393.185,50.327,393.185,43.595z"/>
|
141
|
+
<path fill="#49474E" d="M333.647,43.595c0-12.24-9.924-22.163-22.164-22.163c-12.242,0-22.164,9.923-22.164,22.163v22.179h9.973 V43.595l0,0c0-6.732,5.459-12.189,12.191-12.189s12.189,5.457,12.189,12.189l-0.02,22.179h9.969L333.647,43.595z"/>
|
142
|
+
<path fill="#49474E" d="M380.593,43.595c0-12.24-9.924-22.163-22.164-22.163s-22.164,9.923-22.164,22.163 c0,12.241,9.924,22.165,22.164,22.165c4.504,0,8.693-1.349,12.189-3.657c0,0,0,15.746,0,15.778c0,6.731-5.457,12.19-12.189,12.19 s-12.189-5.459-12.189-12.19c0-2.268,0.631-4.38,1.711-6.196l-8.635-5.014c-1.934,3.289-3.051,7.117-3.051,11.21 c0,12.241,9.924,22.164,22.164,22.164s22.164-9.923,22.164-22.164C380.593,77.849,380.593,43.595,380.593,43.595z M358.429,55.785 c-6.732,0-12.189-5.458-12.189-12.19s5.457-12.189,12.189-12.189s12.189,5.457,12.189,12.189S365.161,55.785,358.429,55.785z"/>
|
143
|
+
<path fill="#49474E" d="M186.681,21.432c-12.24,0-22.164,9.923-22.164,22.163c0,0.079,0.006,0.157,0.006,0.236v21.942h9.973V43.595 h-0.004c0-6.732,5.457-12.189,12.189-12.189c2.418,0,4.66,0.717,6.553,1.932l5.109-8.587 C194.954,22.648,190.96,21.432,186.681,21.432z"/>
|
144
|
+
</g>
|
145
|
+
<ellipse fill="#49474E" cx="49.22" cy="66.499" rx="49.22" ry="66.501"/>
|
146
|
+
<path fill="#F8B857" d="M37.708,46.239c-0.01-5.29-4.289-9.568-9.578-9.578c-5.291,0.01-9.568,4.288-9.578,9.578 c0.01,5.288,4.288,9.566,9.578,9.578C33.419,55.806,37.698,51.527,37.708,46.239z M50.254,82.699v-36.46 c0-11.07,8.973-20.044,20.043-20.044c4.258,0,8.198,1.337,11.445,3.601C75.419,14.322,63.228,3.836,49.22,3.836 c-14.002,0-26.191,10.479-32.515,25.946c3.243-2.256,7.176-3.587,11.425-3.587c11.07,0,20.043,8.974,20.043,20.044v36.46 c0,8.505-5.303,15.198-12.776,17.853c4.273,2.319,8.936,3.608,13.823,3.608c4.886,0,9.546-1.288,13.819-3.605 C55.562,97.902,50.254,91.206,50.254,82.699z M37.708,82.699V63.845c-2.846,1.553-6.111,2.438-9.578,2.438 c-6.478,0-12.221-3.085-15.885-7.852C13.05,70.835,17.194,81.938,23.458,90.1c1.381,0.778,2.971,1.233,4.671,1.237 C33.417,91.325,37.698,87.988,37.708,82.699z M60.719,46.239c0.009,5.288,4.288,9.566,9.578,9.578 c5.288-0.011,9.568-4.29,9.578-9.578c-0.01-5.29-4.29-9.568-9.578-9.578C65.007,36.671,60.729,40.949,60.719,46.239z M70.297,66.282 c-3.467,0-6.733-0.884-9.578-2.436v18.853c0.009,5.289,4.288,8.626,9.578,8.638c1.709-0.004,3.307-0.461,4.693-1.248 c6.263-8.164,10.404-19.271,11.206-31.678C82.533,63.189,76.783,66.282,70.297,66.282z"/>
|
147
|
+
<path opacity="0.2" fill="#FFFFFF" d="M51.035,3.055c7.857-0.737,14.749,2.713,19.573,4.375c-6.402-4.234-13.594-6.615-21.196-6.615 c-25.419,0-46.253,26.58-48.271,60.381C4.955,29.344,24.464,5.546,51.035,3.055z"/>
|
148
|
+
<path opacity="0.1" fill="#FFFFFF" d="M96.202,49.379c0.015,0.695,0.029,1.389,0.041,2.091 c0.729,43.419-24.039,85.767-60.218,77.337c-0.793-0.186-1.623-0.039-2.428-0.08c5.049,2.504,10.489,3.877,16.158,3.877 c26.499,0,47.98-29.773,47.98-66.5C97.735,60.327,97.202,54.723,96.202,49.379z"/>
|
149
|
+
<path opacity="0.1" fill="#040000" d="M97.682,61.094c0,0.198,0.009,0.395,0.009,0.595c0,38.365-22.915,69.468-51.179,69.468 c-3.978,0-7.844-0.637-11.561-1.8c4.569,1.937,9.425,2.979,14.461,2.979c26.756,0,48.45-29.442,48.45-65.762 C97.862,64.727,97.791,62.903,97.682,61.094z"/>
|
150
|
+
<image overflow="visible" opacity="0.2" width="330" height="527" xlink:href="data:image/png;base64,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 fwowAEZoHeXvbIZkAAAAAElFTkSuQmCC" transform="matrix(0.24, 0, 0, 0.24, 0.9653, 0.855)">
|
151
|
+
</image>
|
152
|
+
</svg>
|
data/yuube2012-fig01.svg
ADDED
@@ -0,0 +1,974 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360pt" height="234pt" viewBox="0 0 360 234" version="1.1">
|
3
|
+
<defs>
|
4
|
+
<g>
|
5
|
+
<symbol overflow="visible" id="glyph0-0">
|
6
|
+
<path style="stroke:none;" d="M 9.546875 -12.640625 L 9.546875 0 L 0.4375 0 L 0.4375 -12.640625 L 9.546875 -12.640625 Z M 8.703125 -0.796875 L 8.703125 -11.84375 L 1.265625 -11.84375 L 1.265625 -0.796875 L 8.703125 -0.796875 Z M 7.484375 -8.34375 C 7.484375 -7.96875 7.425781 -7.628906 7.3125 -7.328125 C 7.207031 -7.023438 7.050781 -6.769531 6.84375 -6.5625 C 6.632812 -6.363281 6.390625 -6.203125 6.109375 -6.078125 C 5.828125 -5.960938 5.523438 -5.894531 5.203125 -5.875 L 5.140625 -4.390625 C 5.140625 -4.328125 5.09375 -4.28125 5 -4.25 C 4.90625 -4.226562 4.769531 -4.21875 4.59375 -4.21875 C 4.5 -4.21875 4.421875 -4.21875 4.359375 -4.21875 C 4.296875 -4.226562 4.238281 -4.238281 4.1875 -4.25 C 4.144531 -4.269531 4.113281 -4.289062 4.09375 -4.3125 C 4.082031 -4.332031 4.078125 -4.359375 4.078125 -4.390625 L 4.03125 -6.1875 C 4.007812 -6.382812 4.046875 -6.519531 4.140625 -6.59375 C 4.234375 -6.675781 4.359375 -6.71875 4.515625 -6.71875 L 4.6875 -6.71875 C 4.976562 -6.71875 5.222656 -6.757812 5.421875 -6.84375 C 5.617188 -6.925781 5.773438 -7.035156 5.890625 -7.171875 C 6.015625 -7.304688 6.101562 -7.46875 6.15625 -7.65625 C 6.207031 -7.851562 6.234375 -8.054688 6.234375 -8.265625 C 6.234375 -8.742188 6.097656 -9.125 5.828125 -9.40625 C 5.554688 -9.6875 5.125 -9.828125 4.53125 -9.828125 C 4.289062 -9.828125 4.070312 -9.800781 3.875 -9.75 C 3.675781 -9.695312 3.503906 -9.640625 3.359375 -9.578125 C 3.210938 -9.523438 3.09375 -9.472656 3 -9.421875 C 2.90625 -9.367188 2.832031 -9.34375 2.78125 -9.34375 C 2.757812 -9.34375 2.738281 -9.347656 2.71875 -9.359375 C 2.695312 -9.367188 2.675781 -9.390625 2.65625 -9.421875 C 2.632812 -9.460938 2.617188 -9.515625 2.609375 -9.578125 C 2.597656 -9.640625 2.59375 -9.722656 2.59375 -9.828125 C 2.59375 -9.929688 2.597656 -10.019531 2.609375 -10.09375 C 2.628906 -10.164062 2.664062 -10.226562 2.71875 -10.28125 C 2.769531 -10.332031 2.859375 -10.382812 2.984375 -10.4375 C 3.117188 -10.5 3.273438 -10.554688 3.453125 -10.609375 C 3.628906 -10.660156 3.820312 -10.707031 4.03125 -10.75 C 4.25 -10.789062 4.472656 -10.8125 4.703125 -10.8125 C 5.191406 -10.8125 5.609375 -10.742188 5.953125 -10.609375 C 6.304688 -10.484375 6.59375 -10.304688 6.8125 -10.078125 C 7.039062 -9.859375 7.207031 -9.597656 7.3125 -9.296875 C 7.425781 -9.003906 7.484375 -8.6875 7.484375 -8.34375 Z M 5.359375 -2.671875 C 5.359375 -2.535156 5.347656 -2.421875 5.328125 -2.328125 C 5.304688 -2.234375 5.265625 -2.15625 5.203125 -2.09375 C 5.148438 -2.039062 5.078125 -2 4.984375 -1.96875 C 4.890625 -1.945312 4.773438 -1.9375 4.640625 -1.9375 C 4.492188 -1.9375 4.375 -1.945312 4.28125 -1.96875 C 4.1875 -2 4.109375 -2.039062 4.046875 -2.09375 C 3.992188 -2.15625 3.953125 -2.234375 3.921875 -2.328125 C 3.898438 -2.421875 3.890625 -2.535156 3.890625 -2.671875 C 3.890625 -2.804688 3.898438 -2.921875 3.921875 -3.015625 C 3.953125 -3.109375 3.992188 -3.179688 4.046875 -3.234375 C 4.109375 -3.296875 4.1875 -3.335938 4.28125 -3.359375 C 4.375 -3.390625 4.492188 -3.40625 4.640625 -3.40625 C 4.773438 -3.40625 4.890625 -3.390625 4.984375 -3.359375 C 5.078125 -3.335938 5.148438 -3.296875 5.203125 -3.234375 C 5.265625 -3.179688 5.304688 -3.109375 5.328125 -3.015625 C 5.347656 -2.921875 5.359375 -2.804688 5.359375 -2.671875 Z M 0 3.875 L 0 3.875 Z M 0 3.875 "/>
|
7
|
+
</symbol>
|
8
|
+
<symbol overflow="visible" id="glyph0-1">
|
9
|
+
<path style="stroke:none;" d="M 8.71875 -0.25 C 8.71875 -0.195312 8.703125 -0.148438 8.671875 -0.109375 C 8.648438 -0.078125 8.609375 -0.046875 8.546875 -0.015625 C 8.484375 0.00390625 8.394531 0.0195312 8.28125 0.03125 C 8.164062 0.0507812 8.023438 0.0625 7.859375 0.0625 C 7.679688 0.0625 7.535156 0.0546875 7.421875 0.046875 C 7.304688 0.0351562 7.207031 0.0195312 7.125 0 C 7.050781 -0.03125 6.988281 -0.0664062 6.9375 -0.109375 C 6.894531 -0.148438 6.851562 -0.195312 6.8125 -0.25 L 3.109375 -5.125 L 3.109375 -0.25 C 3.109375 -0.195312 3.09375 -0.148438 3.0625 -0.109375 C 3.039062 -0.078125 3 -0.046875 2.9375 -0.015625 C 2.882812 0.00390625 2.804688 0.0195312 2.703125 0.03125 C 2.597656 0.0507812 2.460938 0.0625 2.296875 0.0625 C 2.140625 0.0625 2.007812 0.0507812 1.90625 0.03125 C 1.800781 0.0195312 1.71875 0.00390625 1.65625 -0.015625 C 1.59375 -0.046875 1.550781 -0.078125 1.53125 -0.109375 C 1.507812 -0.148438 1.5 -0.195312 1.5 -0.25 L 1.5 -13.296875 C 1.5 -13.347656 1.507812 -13.390625 1.53125 -13.421875 C 1.550781 -13.460938 1.59375 -13.492188 1.65625 -13.515625 C 1.71875 -13.546875 1.800781 -13.566406 1.90625 -13.578125 C 2.007812 -13.597656 2.140625 -13.609375 2.296875 -13.609375 C 2.460938 -13.609375 2.597656 -13.597656 2.703125 -13.578125 C 2.804688 -13.566406 2.882812 -13.546875 2.9375 -13.515625 C 3 -13.492188 3.039062 -13.460938 3.0625 -13.421875 C 3.09375 -13.390625 3.109375 -13.347656 3.109375 -13.296875 L 3.109375 -5.34375 L 6.421875 -9 C 6.472656 -9.0625 6.53125 -9.113281 6.59375 -9.15625 C 6.65625 -9.195312 6.722656 -9.234375 6.796875 -9.265625 C 6.878906 -9.296875 6.972656 -9.316406 7.078125 -9.328125 C 7.191406 -9.335938 7.328125 -9.34375 7.484375 -9.34375 C 7.648438 -9.34375 7.785156 -9.335938 7.890625 -9.328125 C 8.003906 -9.316406 8.09375 -9.296875 8.15625 -9.265625 C 8.226562 -9.242188 8.28125 -9.210938 8.3125 -9.171875 C 8.34375 -9.140625 8.359375 -9.097656 8.359375 -9.046875 C 8.359375 -8.960938 8.335938 -8.878906 8.296875 -8.796875 C 8.253906 -8.722656 8.1875 -8.632812 8.09375 -8.53125 L 4.90625 -5.359375 L 8.484375 -0.71875 C 8.566406 -0.601562 8.625 -0.507812 8.65625 -0.4375 C 8.695312 -0.375 8.71875 -0.3125 8.71875 -0.25 Z M 8.71875 -0.25 "/>
|
10
|
+
</symbol>
|
11
|
+
<symbol overflow="visible" id="glyph0-2">
|
12
|
+
<path style="stroke:none;" d="M 9 -5.015625 C 9 -4.765625 8.929688 -4.582031 8.796875 -4.46875 C 8.671875 -4.363281 8.53125 -4.3125 8.375 -4.3125 L 2.609375 -4.3125 C 2.609375 -3.820312 2.65625 -3.378906 2.75 -2.984375 C 2.851562 -2.597656 3.015625 -2.265625 3.234375 -1.984375 C 3.460938 -1.710938 3.757812 -1.5 4.125 -1.34375 C 4.488281 -1.195312 4.9375 -1.125 5.46875 -1.125 C 5.882812 -1.125 6.253906 -1.15625 6.578125 -1.21875 C 6.910156 -1.289062 7.191406 -1.367188 7.421875 -1.453125 C 7.660156 -1.535156 7.859375 -1.609375 8.015625 -1.671875 C 8.171875 -1.742188 8.285156 -1.78125 8.359375 -1.78125 C 8.398438 -1.78125 8.4375 -1.769531 8.46875 -1.75 C 8.507812 -1.726562 8.539062 -1.691406 8.5625 -1.640625 C 8.582031 -1.597656 8.597656 -1.535156 8.609375 -1.453125 C 8.617188 -1.378906 8.625 -1.28125 8.625 -1.15625 C 8.625 -1.070312 8.617188 -1 8.609375 -0.9375 C 8.609375 -0.875 8.601562 -0.816406 8.59375 -0.765625 C 8.582031 -0.722656 8.5625 -0.679688 8.53125 -0.640625 C 8.507812 -0.609375 8.484375 -0.570312 8.453125 -0.53125 C 8.421875 -0.5 8.316406 -0.441406 8.140625 -0.359375 C 7.960938 -0.273438 7.734375 -0.191406 7.453125 -0.109375 C 7.171875 -0.0351562 6.84375 0.03125 6.46875 0.09375 C 6.101562 0.15625 5.710938 0.1875 5.296875 0.1875 C 4.578125 0.1875 3.945312 0.0859375 3.40625 -0.109375 C 2.863281 -0.316406 2.40625 -0.617188 2.03125 -1.015625 C 1.65625 -1.410156 1.375 -1.90625 1.1875 -2.5 C 1 -3.101562 0.90625 -3.800781 0.90625 -4.59375 C 0.90625 -5.351562 1.003906 -6.035156 1.203125 -6.640625 C 1.398438 -7.242188 1.679688 -7.753906 2.046875 -8.171875 C 2.410156 -8.585938 2.851562 -8.90625 3.375 -9.125 C 3.894531 -9.351562 4.476562 -9.46875 5.125 -9.46875 C 5.8125 -9.46875 6.398438 -9.359375 6.890625 -9.140625 C 7.378906 -8.921875 7.78125 -8.625 8.09375 -8.25 C 8.40625 -7.875 8.632812 -7.429688 8.78125 -6.921875 C 8.925781 -6.421875 9 -5.882812 9 -5.3125 L 9 -5.015625 Z M 7.375 -5.5 C 7.394531 -6.34375 7.207031 -7.003906 6.8125 -7.484375 C 6.414062 -7.972656 5.832031 -8.21875 5.0625 -8.21875 C 4.664062 -8.21875 4.316406 -8.140625 4.015625 -7.984375 C 3.710938 -7.835938 3.457031 -7.640625 3.25 -7.390625 C 3.050781 -7.140625 2.894531 -6.847656 2.78125 -6.515625 C 2.675781 -6.191406 2.617188 -5.851562 2.609375 -5.5 L 7.375 -5.5 Z M 7.375 -5.5 "/>
|
13
|
+
</symbol>
|
14
|
+
<symbol overflow="visible" id="glyph0-3">
|
15
|
+
<path style="stroke:none;" d="M 5.5 0 L 4.328125 3.234375 C 4.285156 3.335938 4.1875 3.414062 4.03125 3.46875 C 3.875 3.53125 3.628906 3.5625 3.296875 3.5625 C 3.128906 3.5625 2.992188 3.550781 2.890625 3.53125 C 2.785156 3.507812 2.703125 3.476562 2.640625 3.4375 C 2.585938 3.40625 2.554688 3.351562 2.546875 3.28125 C 2.546875 3.21875 2.566406 3.144531 2.609375 3.0625 L 3.8125 0 C 3.757812 -0.03125 3.707031 -0.0703125 3.65625 -0.125 C 3.601562 -0.1875 3.566406 -0.25 3.546875 -0.3125 L 0.40625 -8.71875 C 0.351562 -8.851562 0.328125 -8.957031 0.328125 -9.03125 C 0.328125 -9.113281 0.351562 -9.175781 0.40625 -9.21875 C 0.457031 -9.257812 0.539062 -9.289062 0.65625 -9.3125 C 0.78125 -9.332031 0.941406 -9.34375 1.140625 -9.34375 C 1.328125 -9.34375 1.476562 -9.335938 1.59375 -9.328125 C 1.707031 -9.316406 1.796875 -9.296875 1.859375 -9.265625 C 1.921875 -9.242188 1.96875 -9.207031 2 -9.15625 C 2.03125 -9.101562 2.0625 -9.035156 2.09375 -8.953125 L 4.59375 -1.90625 L 4.625 -1.90625 L 7.046875 -9 C 7.085938 -9.125 7.132812 -9.203125 7.1875 -9.234375 C 7.25 -9.265625 7.332031 -9.289062 7.4375 -9.3125 C 7.550781 -9.332031 7.710938 -9.34375 7.921875 -9.34375 C 8.097656 -9.34375 8.242188 -9.332031 8.359375 -9.3125 C 8.484375 -9.289062 8.570312 -9.257812 8.625 -9.21875 C 8.6875 -9.175781 8.71875 -9.113281 8.71875 -9.03125 C 8.71875 -8.957031 8.695312 -8.859375 8.65625 -8.734375 L 5.5 0 Z M 5.5 0 "/>
|
16
|
+
</symbol>
|
17
|
+
<symbol overflow="visible" id="glyph0-4">
|
18
|
+
<path style="stroke:none;" d="M 8.703125 -9.046875 C 8.703125 -9.023438 8.695312 -9 8.6875 -8.96875 C 8.6875 -8.9375 8.679688 -8.90625 8.671875 -8.875 C 8.671875 -8.84375 8.664062 -8.804688 8.65625 -8.765625 C 8.644531 -8.734375 8.632812 -8.691406 8.625 -8.640625 L 5.625 -0.296875 C 5.601562 -0.222656 5.566406 -0.160156 5.515625 -0.109375 C 5.472656 -0.0664062 5.410156 -0.03125 5.328125 0 C 5.242188 0.0195312 5.132812 0.0351562 5 0.046875 C 4.875 0.0546875 4.710938 0.0625 4.515625 0.0625 C 4.328125 0.0625 4.164062 0.0507812 4.03125 0.03125 C 3.90625 0.0195312 3.800781 0.00390625 3.71875 -0.015625 C 3.632812 -0.046875 3.566406 -0.0820312 3.515625 -0.125 C 3.472656 -0.175781 3.441406 -0.234375 3.421875 -0.296875 L 0.4375 -8.640625 C 0.40625 -8.722656 0.378906 -8.789062 0.359375 -8.84375 C 0.347656 -8.90625 0.335938 -8.953125 0.328125 -8.984375 C 0.328125 -9.015625 0.328125 -9.035156 0.328125 -9.046875 C 0.328125 -9.097656 0.335938 -9.144531 0.359375 -9.1875 C 0.390625 -9.226562 0.4375 -9.257812 0.5 -9.28125 C 0.5625 -9.300781 0.644531 -9.316406 0.75 -9.328125 C 0.851562 -9.335938 0.976562 -9.34375 1.125 -9.34375 C 1.3125 -9.34375 1.460938 -9.335938 1.578125 -9.328125 C 1.691406 -9.316406 1.78125 -9.296875 1.84375 -9.265625 C 1.90625 -9.242188 1.945312 -9.210938 1.96875 -9.171875 C 2 -9.128906 2.03125 -9.082031 2.0625 -9.03125 L 4.546875 -1.78125 L 4.578125 -1.65625 L 4.609375 -1.78125 L 7.0625 -9.03125 C 7.070312 -9.082031 7.09375 -9.128906 7.125 -9.171875 C 7.15625 -9.210938 7.203125 -9.242188 7.265625 -9.265625 C 7.328125 -9.296875 7.410156 -9.316406 7.515625 -9.328125 C 7.628906 -9.335938 7.773438 -9.34375 7.953125 -9.34375 C 8.097656 -9.34375 8.21875 -9.335938 8.3125 -9.328125 C 8.414062 -9.316406 8.492188 -9.296875 8.546875 -9.265625 C 8.609375 -9.242188 8.648438 -9.210938 8.671875 -9.171875 C 8.691406 -9.140625 8.703125 -9.097656 8.703125 -9.046875 Z M 8.703125 -9.046875 "/>
|
19
|
+
</symbol>
|
20
|
+
<symbol overflow="visible" id="glyph0-5">
|
21
|
+
<path style="stroke:none;" d="M 8.109375 -0.234375 C 8.109375 -0.160156 8.082031 -0.101562 8.03125 -0.0625 C 7.976562 -0.0195312 7.90625 0.0078125 7.8125 0.03125 C 7.726562 0.0507812 7.597656 0.0625 7.421875 0.0625 C 7.253906 0.0625 7.117188 0.0507812 7.015625 0.03125 C 6.910156 0.0078125 6.835938 -0.0195312 6.796875 -0.0625 C 6.753906 -0.101562 6.734375 -0.160156 6.734375 -0.234375 L 6.734375 -1.109375 C 6.347656 -0.703125 5.914062 -0.382812 5.4375 -0.15625 C 4.96875 0.0703125 4.472656 0.1875 3.953125 0.1875 C 3.484375 0.1875 3.0625 0.125 2.6875 0 C 2.3125 -0.113281 1.992188 -0.285156 1.734375 -0.515625 C 1.472656 -0.742188 1.269531 -1.023438 1.125 -1.359375 C 0.976562 -1.691406 0.90625 -2.066406 0.90625 -2.484375 C 0.90625 -2.984375 1.003906 -3.414062 1.203125 -3.78125 C 1.398438 -4.144531 1.6875 -4.445312 2.0625 -4.6875 C 2.445312 -4.925781 2.910156 -5.101562 3.453125 -5.21875 C 4.003906 -5.34375 4.617188 -5.40625 5.296875 -5.40625 L 6.515625 -5.40625 L 6.515625 -6.09375 C 6.515625 -6.4375 6.476562 -6.738281 6.40625 -7 C 6.332031 -7.257812 6.21875 -7.472656 6.0625 -7.640625 C 5.90625 -7.816406 5.695312 -7.945312 5.4375 -8.03125 C 5.1875 -8.125 4.875 -8.171875 4.5 -8.171875 C 4.101562 -8.171875 3.742188 -8.117188 3.421875 -8.015625 C 3.109375 -7.921875 2.832031 -7.816406 2.59375 -7.703125 C 2.363281 -7.597656 2.164062 -7.492188 2 -7.390625 C 1.84375 -7.296875 1.726562 -7.25 1.65625 -7.25 C 1.601562 -7.25 1.554688 -7.257812 1.515625 -7.28125 C 1.472656 -7.3125 1.4375 -7.351562 1.40625 -7.40625 C 1.382812 -7.457031 1.363281 -7.523438 1.34375 -7.609375 C 1.332031 -7.691406 1.328125 -7.78125 1.328125 -7.875 C 1.328125 -8.039062 1.335938 -8.171875 1.359375 -8.265625 C 1.378906 -8.359375 1.429688 -8.445312 1.515625 -8.53125 C 1.609375 -8.613281 1.765625 -8.710938 1.984375 -8.828125 C 2.203125 -8.941406 2.445312 -9.046875 2.71875 -9.140625 C 3 -9.234375 3.304688 -9.3125 3.640625 -9.375 C 3.972656 -9.4375 4.3125 -9.46875 4.65625 -9.46875 C 5.28125 -9.46875 5.8125 -9.394531 6.25 -9.25 C 6.695312 -9.113281 7.054688 -8.90625 7.328125 -8.625 C 7.609375 -8.351562 7.804688 -8.007812 7.921875 -7.59375 C 8.046875 -7.1875 8.109375 -6.707031 8.109375 -6.15625 L 8.109375 -0.234375 Z M 6.515625 -4.25 L 5.140625 -4.25 C 4.691406 -4.25 4.304688 -4.210938 3.984375 -4.140625 C 3.660156 -4.066406 3.390625 -3.953125 3.171875 -3.796875 C 2.960938 -3.648438 2.804688 -3.472656 2.703125 -3.265625 C 2.597656 -3.066406 2.546875 -2.832031 2.546875 -2.5625 C 2.546875 -2.113281 2.691406 -1.753906 2.984375 -1.484375 C 3.273438 -1.210938 3.679688 -1.078125 4.203125 -1.078125 C 4.617188 -1.078125 5.007812 -1.179688 5.375 -1.390625 C 5.738281 -1.609375 6.117188 -1.941406 6.515625 -2.390625 L 6.515625 -4.25 Z M 6.515625 -4.25 "/>
|
22
|
+
</symbol>
|
23
|
+
<symbol overflow="visible" id="glyph0-6">
|
24
|
+
<path style="stroke:none;" d="M 3.109375 -0.25 C 3.109375 -0.195312 3.09375 -0.148438 3.0625 -0.109375 C 3.039062 -0.078125 3 -0.046875 2.9375 -0.015625 C 2.882812 0.00390625 2.804688 0.0195312 2.703125 0.03125 C 2.597656 0.0507812 2.460938 0.0625 2.296875 0.0625 C 2.140625 0.0625 2.007812 0.0507812 1.90625 0.03125 C 1.800781 0.0195312 1.71875 0.00390625 1.65625 -0.015625 C 1.59375 -0.046875 1.550781 -0.078125 1.53125 -0.109375 C 1.507812 -0.148438 1.5 -0.195312 1.5 -0.25 L 1.5 -13.296875 C 1.5 -13.347656 1.507812 -13.390625 1.53125 -13.421875 C 1.550781 -13.460938 1.59375 -13.492188 1.65625 -13.515625 C 1.71875 -13.546875 1.800781 -13.566406 1.90625 -13.578125 C 2.007812 -13.597656 2.140625 -13.609375 2.296875 -13.609375 C 2.460938 -13.609375 2.597656 -13.597656 2.703125 -13.578125 C 2.804688 -13.566406 2.882812 -13.546875 2.9375 -13.515625 C 3 -13.492188 3.039062 -13.460938 3.0625 -13.421875 C 3.09375 -13.390625 3.109375 -13.347656 3.109375 -13.296875 L 3.109375 -0.25 Z M 3.109375 -0.25 "/>
|
25
|
+
</symbol>
|
26
|
+
<symbol overflow="visible" id="glyph0-7">
|
27
|
+
<path style="stroke:none;" d="M 9.03125 -0.25 C 9.03125 -0.195312 9.015625 -0.148438 8.984375 -0.109375 C 8.960938 -0.078125 8.921875 -0.046875 8.859375 -0.015625 C 8.804688 0.00390625 8.734375 0.0195312 8.640625 0.03125 C 8.546875 0.0507812 8.429688 0.0625 8.296875 0.0625 C 8.140625 0.0625 8.015625 0.0507812 7.921875 0.03125 C 7.828125 0.0195312 7.753906 0.00390625 7.703125 -0.015625 C 7.648438 -0.046875 7.613281 -0.078125 7.59375 -0.109375 C 7.570312 -0.148438 7.5625 -0.195312 7.5625 -0.25 L 7.5625 -1.40625 C 7.0625 -0.851562 6.566406 -0.445312 6.078125 -0.1875 C 5.585938 0.0625 5.09375 0.1875 4.59375 0.1875 C 4.007812 0.1875 3.515625 0.0859375 3.109375 -0.109375 C 2.710938 -0.304688 2.390625 -0.570312 2.140625 -0.90625 C 1.890625 -1.238281 1.710938 -1.628906 1.609375 -2.078125 C 1.503906 -2.523438 1.453125 -3.066406 1.453125 -3.703125 L 1.453125 -9.03125 C 1.453125 -9.082031 1.460938 -9.125 1.484375 -9.15625 C 1.503906 -9.195312 1.546875 -9.234375 1.609375 -9.265625 C 1.671875 -9.296875 1.753906 -9.316406 1.859375 -9.328125 C 1.960938 -9.335938 2.09375 -9.34375 2.25 -9.34375 C 2.40625 -9.34375 2.535156 -9.335938 2.640625 -9.328125 C 2.742188 -9.316406 2.828125 -9.296875 2.890625 -9.265625 C 2.953125 -9.234375 2.992188 -9.195312 3.015625 -9.15625 C 3.046875 -9.125 3.0625 -9.082031 3.0625 -9.03125 L 3.0625 -3.921875 C 3.0625 -3.398438 3.097656 -2.984375 3.171875 -2.671875 C 3.253906 -2.367188 3.367188 -2.109375 3.515625 -1.890625 C 3.671875 -1.671875 3.863281 -1.5 4.09375 -1.375 C 4.332031 -1.257812 4.609375 -1.203125 4.921875 -1.203125 C 5.328125 -1.203125 5.726562 -1.34375 6.125 -1.625 C 6.53125 -1.914062 6.957031 -2.335938 7.40625 -2.890625 L 7.40625 -9.03125 C 7.40625 -9.082031 7.414062 -9.125 7.4375 -9.15625 C 7.457031 -9.195312 7.5 -9.234375 7.5625 -9.265625 C 7.632812 -9.296875 7.71875 -9.316406 7.8125 -9.328125 C 7.914062 -9.335938 8.050781 -9.34375 8.21875 -9.34375 C 8.375 -9.34375 8.503906 -9.335938 8.609375 -9.328125 C 8.710938 -9.316406 8.789062 -9.296875 8.84375 -9.265625 C 8.90625 -9.234375 8.953125 -9.195312 8.984375 -9.15625 C 9.015625 -9.125 9.03125 -9.082031 9.03125 -9.03125 L 9.03125 -0.25 Z M 9.03125 -0.25 "/>
|
28
|
+
</symbol>
|
29
|
+
<symbol overflow="visible" id="glyph0-8">
|
30
|
+
<path style="stroke:none;" d=""/>
|
31
|
+
</symbol>
|
32
|
+
<symbol overflow="visible" id="glyph1-0">
|
33
|
+
<path style="stroke:none;" d="M 4.140625 -13.125 L 4.140625 -1.171875 L 15.9375 -1.171875 L 15.9375 -13.125 L 4.140625 -13.125 Z M 2.578125 -14.609375 L 17.5 -14.609375 L 17.5 0.3125 L 2.578125 0.3125 L 2.578125 -14.609375 Z M 2.578125 -14.609375 "/>
|
34
|
+
</symbol>
|
35
|
+
<symbol overflow="visible" id="glyph1-1">
|
36
|
+
<path style="stroke:none;" d=""/>
|
37
|
+
</symbol>
|
38
|
+
</g>
|
39
|
+
<clipPath id="clip1">
|
40
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
41
|
+
</clipPath>
|
42
|
+
<clipPath id="clip2">
|
43
|
+
<path d="M 0 0 L 360 0 L 360 234 L 0 234 L 0 0 Z M 20.023438 48.128906 L 104.210938 48.128906 L 131.785156 75.703125 L 104.210938 103.277344 L 20.023438 103.277344 L 20.023438 48.128906 Z M 20.023438 48.128906 "/>
|
44
|
+
</clipPath>
|
45
|
+
<clipPath id="clip3">
|
46
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
47
|
+
</clipPath>
|
48
|
+
<clipPath id="clip4">
|
49
|
+
<path d="M 16.035156 108.980469 L 135.816406 108.980469 L 135.816406 45.816406 L 16.035156 45.816406 Z M 16.035156 108.980469 "/>
|
50
|
+
</clipPath>
|
51
|
+
<pattern id="pattern0" patternUnits="userSpaceOnUse" width="366" height="193" patternTransform="matrix(0.327273,0,0,0.327273,16.03636,45.81816)">
|
52
|
+
<image width="366" height="193" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW4AAADBCAAAAADK9AXcAAAAAmJLR0QA/4ePzL8AAAWtSURBVHic7d3bbuM6DIVhUnYy7/+2sSWRc2HnfLAOJDZma/1A66AokuYDISu9ERFCCKF/Lf74cODU9dn58QGPba7blyc4365MzENrEymp+oLz9cJ7w4orKemWnzfv35lDCIHD0NwqKqLi6D0TXbWnaZoC87jcopIlC6koO3nP24U5TPNpHtlbVSXnlDJncvPeuJlCmE/n02maRl1OlDbtGJmIVHy8Z9r2fzxNp/P5fJpCGJRbVSTFGAITJwk+3vt0cwjTfPrz5zRPY64mSqqSc1ynwBwpZx/v+61ymk6n8/kUwqDcpJLTPF3fvo/3fqvc75Wn8/31BktJReZ43yq4eF8Xk23jPU3DcpOSyBQedmYe3rfpJt723oMuJkSkQeTpxuXgfeXeBpyZB+amDfv+9u295/tDvmX6Cv9ISkwUaH568+be8/GvjBETKVN4GTVrb3DfYyKi6flnxt7gfozJ2RvcT3l7g/s5Z29wv+TrDe7XXL3B/ZanN7jfc/QG94f8vMH9KTdvcH/Myxvcn3PyBveXfLzB/S0Xb3B/zcMb3N9z8Ab3j+y9wf0rc29w/8zaG9y/M/YG90G23uA+ytQb3IdZeoP7OENvcBdk5w3uksy8wV2UlTe4yzLyBndhNt7gLs3EG9zFWXiDuzwDb3BX1O8N7pq6vcFdVa83uOvq9AZ3ZX3e4K6tyxvc1fV4g7u+Dm9wN9TuDe6Wmr3B3VSrN7jbavQGd2Nt3uBurckb3M21eIO7vQZvcHdU7w3unqq9wd1VrTe4+6r0Bndndd7g7q3KG9zd1XiDu78Kb3AbVO4NbouKvcFtUqk3uG0q9Aa3UWXe4LaqyBvcZpV4g9uuAm9wG3bsDW7LDr3BbdqRN7hte/fWx/PTwG3cu3cSvp3HCG7rXr1V6X7+JbjNe/FWImXCdLt181ZSVVEJSvt4g9uhq7eqSM6SRTMWE8eYiAKpikjOacqCW6VrTBQoTHOepqdDEsN/+lf9j2PiwCGEsJ3Zt3uD2y1V0m0NuX+IB7dLup0VLSJZ5O4ObqdURXJKMaaUs97GG9weqarklOIa15hSFrl6g9shVZWc07quy7rGlEWxmPi1acd1XS6XZY3bcG/e4Dbvpn25LMuC6fbtrr0s1+HGrdKrB+3LZVlTzqJKuFX69Kq9bUsw3T4daIPbtCNtcFt2qA1uw461wW1XgTa4zSrRBrdVRdrgNqpMG9w2FWqD26RSbXBbVKwNboPKtcHdX4U2uLur0QZ3b1Xa4O6sThvcfVVqg7urWm1w91StDe6O6rXB3V6DNriba9EGd2tN2uBurE0b3G01aoO7qVZtcLfUrA3uhtq1wV1fhza4q+vRBndtXdrgrqxPG9x1dWqDu6pebXDX1K0N7or6tcFdnoE2uIuz0AZ3aSba4C7MRhvcZRlpg7soK21wl2SmDe6C7LTBfZyhNrgPs9QG91Gm2uA+yFYb3L8z1gb3z6y1wf0rc21w/8heG9zfc9AG99c8tMH9LRdtcH/JRxvcn3PSBvfHvLTB/Sk3bXB/yE8b3O85aoP7LU9tcL/mqg3ul3y1wf2csza4n/LWxol+Dyl5a79yq6rls/9juWs/cOvQ1ErbOWUpeWrfuXV7OWG6nWU5VkoqkmNclsvipX3lViUVEZFMOiq3quQUV0/tnXs/XDGnRMrjcud9uN2079MtklMMQR4Oxh0pJRLNKa7rsixrzD7aG7cyqeQcA+kcBp1upW0tWdfVT/u6mKhKjoEkT8Nyb/uSuMYYkzhp00z7cEtOrDmFwDQmN6nknFKKOT2dCmfa7VaZiVTSxIMO9/UDfM5J/LQf1m4izSGEMWebaF9Osoj4ad92JkRC+65kUG8lVRUVVT/tqy0TEzPzoAv3lm7/yLgdDOwQ369MQ2PT9o8M8httelw5mIZdR24pOU420TPw6NjkbI0QQlb9BQVcFPPaISAeAAAAAElFTkSuQmCC"/>
|
53
|
+
</pattern>
|
54
|
+
<mask id="mask0">
|
55
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern0);stroke:none;"/>
|
56
|
+
</mask>
|
57
|
+
<pattern id="pattern1" patternUnits="userSpaceOnUse" width="366" height="193" patternTransform="matrix(0.327273,0,0,0.327273,16.03636,45.81816)">
|
58
|
+
<image width="366" height="193" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW4AAADBCAIAAABg/c1XAAAABmJLR0QA/wD/AP+gvaeTAAAA5ElEQVR4nO3BgQAAAADDoPlT3+AEVQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADANTy4AAFtmtLtAAAAAElFTkSuQmCC"/>
|
59
|
+
</pattern>
|
60
|
+
<clipPath id="clip5">
|
61
|
+
<path d="M 0 0 L 360 0 L 360 234 L 0 234 L 0 0 Z M 20.023438 48.128906 L 104.210938 48.128906 L 131.785156 75.703125 L 104.210938 103.277344 L 20.023438 103.277344 L 20.023438 48.128906 Z M 20.023438 48.128906 "/>
|
62
|
+
</clipPath>
|
63
|
+
<clipPath id="clip6">
|
64
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
65
|
+
</clipPath>
|
66
|
+
<clipPath id="clip7">
|
67
|
+
<path d="M 48.761719 96.21875 L 88.6875 96.21875 L 88.6875 59.890625 L 48.761719 59.890625 Z M 48.761719 96.21875 "/>
|
68
|
+
</clipPath>
|
69
|
+
<pattern id="pattern2" patternUnits="userSpaceOnUse" width="122" height="111" patternTransform="matrix(0.327273,0,0,0.327273,48.76363,59.89093)">
|
70
|
+
<image width="122" height="111" xlink:href="data:image/png;base64,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"/>
|
71
|
+
</pattern>
|
72
|
+
<mask id="mask1">
|
73
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern2);stroke:none;"/>
|
74
|
+
</mask>
|
75
|
+
<pattern id="pattern3" patternUnits="userSpaceOnUse" width="122" height="111" patternTransform="matrix(0.327273,0,0,0.327273,48.76363,59.89093)">
|
76
|
+
<image width="122" height="111" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHoAAABvCAIAAACsIEObAAAABmJLR0QA/wD/AP+gvaeTAAAAPUlEQVR4nO3BAQEAAACCIP+vbkhAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcGGfIQABP2rEaQAAAABJRU5ErkJggg=="/>
|
77
|
+
</pattern>
|
78
|
+
<clipPath id="clip8">
|
79
|
+
<path d="M 20.023438 48.128906 L 104.210938 48.128906 L 131.785156 75.703125 L 104.210938 103.277344 L 20.023438 103.277344 L 20.023438 48.128906 Z M 20.023438 48.128906 "/>
|
80
|
+
</clipPath>
|
81
|
+
<clipPath id="clip9">
|
82
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
83
|
+
</clipPath>
|
84
|
+
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="709669" y1="0" x2="709669" y2="700392.457031" gradientTransform="matrix(0.0000787401,0,0,0.0000787401,20.02527,48.1298)">
|
85
|
+
<stop offset="0" style="stop-color:rgb(66.668193%,80.78584%,100%);stop-opacity:1;"/>
|
86
|
+
<stop offset="0.00390625" style="stop-color:rgb(66.276036%,80.78584%,100%);stop-opacity:1;"/>
|
87
|
+
<stop offset="0.0078125" style="stop-color:rgb(66.276036%,80.393683%,100%);stop-opacity:1;"/>
|
88
|
+
<stop offset="0.0117188" style="stop-color:rgb(66.276036%,80.393683%,99.609369%);stop-opacity:1;"/>
|
89
|
+
<stop offset="0.015625" style="stop-color:rgb(66.276036%,80.393683%,99.609369%);stop-opacity:1;"/>
|
90
|
+
<stop offset="0.0195312" style="stop-color:rgb(65.883879%,80.393683%,99.609369%);stop-opacity:1;"/>
|
91
|
+
<stop offset="0.0234375" style="stop-color:rgb(66.276036%,80.001526%,99.609369%);stop-opacity:1;"/>
|
92
|
+
<stop offset="0.0273438" style="stop-color:rgb(65.883879%,80.001526%,99.609369%);stop-opacity:1;"/>
|
93
|
+
<stop offset="0.03125" style="stop-color:rgb(65.883879%,80.001526%,99.609369%);stop-opacity:1;"/>
|
94
|
+
<stop offset="0.0351562" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
95
|
+
<stop offset="0.0390625" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
96
|
+
<stop offset="0.046875" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
97
|
+
<stop offset="0.0507812" style="stop-color:rgb(65.099565%,79.217212%,99.217212%);stop-opacity:1;"/>
|
98
|
+
<stop offset="0.0546875" style="stop-color:rgb(65.099565%,79.217212%,99.217212%);stop-opacity:1;"/>
|
99
|
+
<stop offset="0.0585938" style="stop-color:rgb(64.707408%,79.217212%,99.217212%);stop-opacity:1;"/>
|
100
|
+
<stop offset="0.0625" style="stop-color:rgb(64.707408%,79.217212%,99.217212%);stop-opacity:1;"/>
|
101
|
+
<stop offset="0.0664062" style="stop-color:rgb(64.707408%,78.825055%,99.217212%);stop-opacity:1;"/>
|
102
|
+
<stop offset="0.0703125" style="stop-color:rgb(64.707408%,78.825055%,98.825055%);stop-opacity:1;"/>
|
103
|
+
<stop offset="0.0742188" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
104
|
+
<stop offset="0.078125" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
105
|
+
<stop offset="0.0820312" style="stop-color:rgb(63.923095%,78.825055%,98.825055%);stop-opacity:1;"/>
|
106
|
+
<stop offset="0.0859375" style="stop-color:rgb(63.923095%,78.825055%,98.825055%);stop-opacity:1;"/>
|
107
|
+
<stop offset="0.0898438" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
108
|
+
<stop offset="0.09375" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
109
|
+
<stop offset="0.0976562" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
110
|
+
<stop offset="0.101562" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
111
|
+
<stop offset="0.105469" style="stop-color:rgb(63.138781%,78.432898%,98.432898%);stop-opacity:1;"/>
|
112
|
+
<stop offset="0.109375" style="stop-color:rgb(63.138781%,78.432898%,98.432898%);stop-opacity:1;"/>
|
113
|
+
<stop offset="0.113281" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
114
|
+
<stop offset="0.117188" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
115
|
+
<stop offset="0.125" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
116
|
+
<stop offset="0.128906" style="stop-color:rgb(62.354467%,77.648585%,98.040742%);stop-opacity:1;"/>
|
117
|
+
<stop offset="0.132812" style="stop-color:rgb(62.354467%,77.648585%,98.040742%);stop-opacity:1;"/>
|
118
|
+
<stop offset="0.136719" style="stop-color:rgb(61.96231%,77.648585%,98.040742%);stop-opacity:1;"/>
|
119
|
+
<stop offset="0.140625" style="stop-color:rgb(61.96231%,77.648585%,98.040742%);stop-opacity:1;"/>
|
120
|
+
<stop offset="0.144531" style="stop-color:rgb(61.570153%,77.256428%,98.040742%);stop-opacity:1;"/>
|
121
|
+
<stop offset="0.148438" style="stop-color:rgb(61.570153%,77.256428%,98.040742%);stop-opacity:1;"/>
|
122
|
+
<stop offset="0.152344" style="stop-color:rgb(61.570153%,77.256428%,97.648585%);stop-opacity:1;"/>
|
123
|
+
<stop offset="0.15625" style="stop-color:rgb(61.570153%,77.256428%,97.648585%);stop-opacity:1;"/>
|
124
|
+
<stop offset="0.160156" style="stop-color:rgb(61.570153%,76.864271%,97.648585%);stop-opacity:1;"/>
|
125
|
+
<stop offset="0.164062" style="stop-color:rgb(61.570153%,76.864271%,97.648585%);stop-opacity:1;"/>
|
126
|
+
<stop offset="0.167969" style="stop-color:rgb(61.177996%,76.864271%,97.256428%);stop-opacity:1;"/>
|
127
|
+
<stop offset="0.171875" style="stop-color:rgb(61.177996%,76.864271%,97.256428%);stop-opacity:1;"/>
|
128
|
+
<stop offset="0.175781" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
129
|
+
<stop offset="0.179688" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
130
|
+
<stop offset="0.1875" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
131
|
+
<stop offset="0.191406" style="stop-color:rgb(60.393683%,76.472114%,96.864271%);stop-opacity:1;"/>
|
132
|
+
<stop offset="0.195312" style="stop-color:rgb(60.393683%,76.472114%,96.864271%);stop-opacity:1;"/>
|
133
|
+
<stop offset="0.199219" style="stop-color:rgb(60.001526%,76.472114%,96.864271%);stop-opacity:1;"/>
|
134
|
+
<stop offset="0.203125" style="stop-color:rgb(60.001526%,76.472114%,96.864271%);stop-opacity:1;"/>
|
135
|
+
<stop offset="0.207031" style="stop-color:rgb(60.001526%,76.079957%,96.472114%);stop-opacity:1;"/>
|
136
|
+
<stop offset="0.210938" style="stop-color:rgb(60.001526%,76.079957%,96.472114%);stop-opacity:1;"/>
|
137
|
+
<stop offset="0.214844" style="stop-color:rgb(59.609369%,76.079957%,96.472114%);stop-opacity:1;"/>
|
138
|
+
<stop offset="0.21875" style="stop-color:rgb(59.609369%,76.079957%,96.472114%);stop-opacity:1;"/>
|
139
|
+
<stop offset="0.222656" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
140
|
+
<stop offset="0.226562" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
141
|
+
<stop offset="0.230469" style="stop-color:rgb(58.825055%,75.6878%,96.472114%);stop-opacity:1;"/>
|
142
|
+
<stop offset="0.234375" style="stop-color:rgb(58.825055%,75.6878%,96.472114%);stop-opacity:1;"/>
|
143
|
+
<stop offset="0.238281" style="stop-color:rgb(58.825055%,75.295644%,96.472114%);stop-opacity:1;"/>
|
144
|
+
<stop offset="0.242188" style="stop-color:rgb(58.825055%,75.295644%,96.472114%);stop-opacity:1;"/>
|
145
|
+
<stop offset="0.246094" style="stop-color:rgb(58.432898%,75.295644%,96.472114%);stop-opacity:1;"/>
|
146
|
+
<stop offset="0.25" style="stop-color:rgb(58.432898%,75.295644%,96.472114%);stop-opacity:1;"/>
|
147
|
+
<stop offset="0.253906" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
148
|
+
<stop offset="0.257812" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
149
|
+
<stop offset="0.265625" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
150
|
+
<stop offset="0.269531" style="stop-color:rgb(57.648585%,74.51133%,95.6878%);stop-opacity:1;"/>
|
151
|
+
<stop offset="0.273438" style="stop-color:rgb(57.648585%,74.51133%,95.6878%);stop-opacity:1;"/>
|
152
|
+
<stop offset="0.277344" style="stop-color:rgb(57.256428%,74.51133%,95.6878%);stop-opacity:1;"/>
|
153
|
+
<stop offset="0.28125" style="stop-color:rgb(57.256428%,74.51133%,95.6878%);stop-opacity:1;"/>
|
154
|
+
<stop offset="0.285156" style="stop-color:rgb(56.864271%,74.119173%,95.6878%);stop-opacity:1;"/>
|
155
|
+
<stop offset="0.289062" style="stop-color:rgb(56.864271%,74.119173%,95.6878%);stop-opacity:1;"/>
|
156
|
+
<stop offset="0.292969" style="stop-color:rgb(56.864271%,74.119173%,95.295644%);stop-opacity:1;"/>
|
157
|
+
<stop offset="0.296875" style="stop-color:rgb(56.864271%,74.119173%,95.295644%);stop-opacity:1;"/>
|
158
|
+
<stop offset="0.300781" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
159
|
+
<stop offset="0.304688" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
160
|
+
<stop offset="0.308594" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
161
|
+
<stop offset="0.3125" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
162
|
+
<stop offset="0.316406" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
163
|
+
<stop offset="0.320312" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
164
|
+
<stop offset="0.324219" style="stop-color:rgb(55.6878%,73.727016%,94.903487%);stop-opacity:1;"/>
|
165
|
+
<stop offset="0.328125" style="stop-color:rgb(55.6878%,73.727016%,94.903487%);stop-opacity:1;"/>
|
166
|
+
<stop offset="0.332031" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
167
|
+
<stop offset="0.335938" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
168
|
+
<stop offset="0.339844" style="stop-color:rgb(54.903487%,73.334859%,94.903487%);stop-opacity:1;"/>
|
169
|
+
<stop offset="0.34375" style="stop-color:rgb(54.903487%,73.334859%,94.903487%);stop-opacity:1;"/>
|
170
|
+
<stop offset="0.347656" style="stop-color:rgb(54.903487%,72.942702%,94.51133%);stop-opacity:1;"/>
|
171
|
+
<stop offset="0.351562" style="stop-color:rgb(54.903487%,72.942702%,94.51133%);stop-opacity:1;"/>
|
172
|
+
<stop offset="0.355469" style="stop-color:rgb(54.51133%,72.942702%,94.51133%);stop-opacity:1;"/>
|
173
|
+
<stop offset="0.359375" style="stop-color:rgb(54.51133%,72.942702%,94.51133%);stop-opacity:1;"/>
|
174
|
+
<stop offset="0.363281" style="stop-color:rgb(54.51133%,72.550546%,94.51133%);stop-opacity:1;"/>
|
175
|
+
<stop offset="0.367188" style="stop-color:rgb(54.51133%,72.550546%,94.51133%);stop-opacity:1;"/>
|
176
|
+
<stop offset="0.371094" style="stop-color:rgb(54.51133%,72.550546%,94.119173%);stop-opacity:1;"/>
|
177
|
+
<stop offset="0.375" style="stop-color:rgb(54.119173%,72.550546%,94.119173%);stop-opacity:1;"/>
|
178
|
+
<stop offset="0.378906" style="stop-color:rgb(54.119173%,72.158389%,94.119173%);stop-opacity:1;"/>
|
179
|
+
<stop offset="0.382812" style="stop-color:rgb(54.119173%,72.158389%,94.119173%);stop-opacity:1;"/>
|
180
|
+
<stop offset="0.386719" style="stop-color:rgb(53.727016%,72.158389%,93.727016%);stop-opacity:1;"/>
|
181
|
+
<stop offset="0.390625" style="stop-color:rgb(53.727016%,72.158389%,93.727016%);stop-opacity:1;"/>
|
182
|
+
<stop offset="0.394531" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
183
|
+
<stop offset="0.398438" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
184
|
+
<stop offset="0.40625" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
185
|
+
<stop offset="0.410156" style="stop-color:rgb(52.942702%,71.374075%,93.334859%);stop-opacity:1;"/>
|
186
|
+
<stop offset="0.414062" style="stop-color:rgb(52.942702%,71.374075%,93.334859%);stop-opacity:1;"/>
|
187
|
+
<stop offset="0.417969" style="stop-color:rgb(52.550546%,71.374075%,93.334859%);stop-opacity:1;"/>
|
188
|
+
<stop offset="0.421875" style="stop-color:rgb(52.550546%,71.374075%,93.334859%);stop-opacity:1;"/>
|
189
|
+
<stop offset="0.425781" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
190
|
+
<stop offset="0.429688" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
191
|
+
<stop offset="0.4375" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
192
|
+
<stop offset="0.441406" style="stop-color:rgb(51.766232%,70.981918%,93.334859%);stop-opacity:1;"/>
|
193
|
+
<stop offset="0.445312" style="stop-color:rgb(51.766232%,70.981918%,93.334859%);stop-opacity:1;"/>
|
194
|
+
<stop offset="0.449219" style="stop-color:rgb(51.374075%,70.981918%,92.942702%);stop-opacity:1;"/>
|
195
|
+
<stop offset="0.453125" style="stop-color:rgb(51.374075%,70.981918%,92.942702%);stop-opacity:1;"/>
|
196
|
+
<stop offset="0.457031" style="stop-color:rgb(51.374075%,70.589761%,92.942702%);stop-opacity:1;"/>
|
197
|
+
<stop offset="0.460938" style="stop-color:rgb(51.374075%,70.589761%,92.942702%);stop-opacity:1;"/>
|
198
|
+
<stop offset="0.464844" style="stop-color:rgb(50.981918%,70.589761%,92.942702%);stop-opacity:1;"/>
|
199
|
+
<stop offset="0.46875" style="stop-color:rgb(50.981918%,70.589761%,92.942702%);stop-opacity:1;"/>
|
200
|
+
<stop offset="0.472656" style="stop-color:rgb(50.589761%,70.197604%,92.550546%);stop-opacity:1;"/>
|
201
|
+
<stop offset="0.476562" style="stop-color:rgb(50.589761%,70.197604%,92.550546%);stop-opacity:1;"/>
|
202
|
+
<stop offset="0.480469" style="stop-color:rgb(50.197604%,70.197604%,92.550546%);stop-opacity:1;"/>
|
203
|
+
<stop offset="0.484375" style="stop-color:rgb(50.197604%,70.197604%,92.550546%);stop-opacity:1;"/>
|
204
|
+
<stop offset="0.488281" style="stop-color:rgb(50.197604%,69.805447%,92.158389%);stop-opacity:1;"/>
|
205
|
+
<stop offset="0.492188" style="stop-color:rgb(50.197604%,69.805447%,92.158389%);stop-opacity:1;"/>
|
206
|
+
<stop offset="0.496094" style="stop-color:rgb(49.803922%,69.805447%,92.158389%);stop-opacity:1;"/>
|
207
|
+
<stop offset="0.5" style="stop-color:rgb(49.803922%,69.805447%,92.158389%);stop-opacity:1;"/>
|
208
|
+
<stop offset="0.503906" style="stop-color:rgb(49.411765%,69.413291%,92.158389%);stop-opacity:1;"/>
|
209
|
+
<stop offset="0.507812" style="stop-color:rgb(49.411765%,69.413291%,92.158389%);stop-opacity:1;"/>
|
210
|
+
<stop offset="0.511719" style="stop-color:rgb(49.411765%,69.021134%,91.766232%);stop-opacity:1;"/>
|
211
|
+
<stop offset="0.515625" style="stop-color:rgb(49.411765%,69.021134%,91.766232%);stop-opacity:1;"/>
|
212
|
+
<stop offset="0.519531" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
213
|
+
<stop offset="0.523438" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
214
|
+
<stop offset="0.527344" style="stop-color:rgb(48.627451%,68.628977%,91.766232%);stop-opacity:1;"/>
|
215
|
+
<stop offset="0.53125" style="stop-color:rgb(48.627451%,68.628977%,91.766232%);stop-opacity:1;"/>
|
216
|
+
<stop offset="0.535156" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
217
|
+
<stop offset="0.539062" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
218
|
+
<stop offset="0.542969" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
219
|
+
<stop offset="0.546875" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
220
|
+
<stop offset="0.550781" style="stop-color:rgb(47.843137%,68.628977%,91.374075%);stop-opacity:1;"/>
|
221
|
+
<stop offset="0.554688" style="stop-color:rgb(47.843137%,68.628977%,91.374075%);stop-opacity:1;"/>
|
222
|
+
<stop offset="0.558594" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
223
|
+
<stop offset="0.5625" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
224
|
+
<stop offset="0.570312" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
225
|
+
<stop offset="0.574219" style="stop-color:rgb(47.058824%,67.844663%,90.981918%);stop-opacity:1;"/>
|
226
|
+
<stop offset="0.578125" style="stop-color:rgb(47.058824%,67.844663%,90.981918%);stop-opacity:1;"/>
|
227
|
+
<stop offset="0.582031" style="stop-color:rgb(46.666667%,67.844663%,90.981918%);stop-opacity:1;"/>
|
228
|
+
<stop offset="0.585938" style="stop-color:rgb(46.666667%,67.844663%,90.981918%);stop-opacity:1;"/>
|
229
|
+
<stop offset="0.589844" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
230
|
+
<stop offset="0.59375" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
231
|
+
<stop offset="0.601562" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
232
|
+
<stop offset="0.605469" style="stop-color:rgb(45.882353%,67.060349%,90.589761%);stop-opacity:1;"/>
|
233
|
+
<stop offset="0.609375" style="stop-color:rgb(45.882353%,67.060349%,90.589761%);stop-opacity:1;"/>
|
234
|
+
<stop offset="0.613281" style="stop-color:rgb(45.490196%,67.060349%,90.197604%);stop-opacity:1;"/>
|
235
|
+
<stop offset="0.617188" style="stop-color:rgb(45.490196%,67.060349%,90.197604%);stop-opacity:1;"/>
|
236
|
+
<stop offset="0.621094" style="stop-color:rgb(45.490196%,66.668193%,90.197604%);stop-opacity:1;"/>
|
237
|
+
<stop offset="0.625" style="stop-color:rgb(45.098039%,66.668193%,90.197604%);stop-opacity:1;"/>
|
238
|
+
<stop offset="0.628906" style="stop-color:rgb(45.098039%,66.668193%,89.805447%);stop-opacity:1;"/>
|
239
|
+
<stop offset="0.632812" style="stop-color:rgb(45.098039%,66.668193%,89.805447%);stop-opacity:1;"/>
|
240
|
+
<stop offset="0.636719" style="stop-color:rgb(44.705882%,66.276036%,89.805447%);stop-opacity:1;"/>
|
241
|
+
<stop offset="0.640625" style="stop-color:rgb(44.705882%,66.276036%,89.805447%);stop-opacity:1;"/>
|
242
|
+
<stop offset="0.644531" style="stop-color:rgb(44.313725%,66.276036%,89.805447%);stop-opacity:1;"/>
|
243
|
+
<stop offset="0.648438" style="stop-color:rgb(44.313725%,66.276036%,89.805447%);stop-opacity:1;"/>
|
244
|
+
<stop offset="0.652344" style="stop-color:rgb(44.313725%,65.883879%,89.805447%);stop-opacity:1;"/>
|
245
|
+
<stop offset="0.65625" style="stop-color:rgb(44.313725%,65.883879%,89.805447%);stop-opacity:1;"/>
|
246
|
+
<stop offset="0.660156" style="stop-color:rgb(43.921569%,65.883879%,89.805447%);stop-opacity:1;"/>
|
247
|
+
<stop offset="0.664062" style="stop-color:rgb(43.921569%,65.883879%,89.805447%);stop-opacity:1;"/>
|
248
|
+
<stop offset="0.667969" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
249
|
+
<stop offset="0.671875" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
250
|
+
<stop offset="0.675781" style="stop-color:rgb(42.745098%,65.491722%,89.413291%);stop-opacity:1;"/>
|
251
|
+
<stop offset="0.679688" style="stop-color:rgb(42.745098%,65.491722%,89.413291%);stop-opacity:1;"/>
|
252
|
+
<stop offset="0.683594" style="stop-color:rgb(43.137255%,65.491722%,89.413291%);stop-opacity:1;"/>
|
253
|
+
<stop offset="0.6875" style="stop-color:rgb(43.137255%,65.491722%,89.413291%);stop-opacity:1;"/>
|
254
|
+
<stop offset="0.691406" style="stop-color:rgb(42.352941%,65.491722%,89.021134%);stop-opacity:1;"/>
|
255
|
+
<stop offset="0.695312" style="stop-color:rgb(42.352941%,65.491722%,89.021134%);stop-opacity:1;"/>
|
256
|
+
<stop offset="0.699219" style="stop-color:rgb(41.960784%,65.099565%,89.021134%);stop-opacity:1;"/>
|
257
|
+
<stop offset="0.703125" style="stop-color:rgb(41.960784%,65.099565%,89.021134%);stop-opacity:1;"/>
|
258
|
+
<stop offset="0.707031" style="stop-color:rgb(41.960784%,65.099565%,88.628977%);stop-opacity:1;"/>
|
259
|
+
<stop offset="0.710938" style="stop-color:rgb(41.960784%,65.099565%,88.628977%);stop-opacity:1;"/>
|
260
|
+
<stop offset="0.714844" style="stop-color:rgb(41.568627%,64.707408%,88.628977%);stop-opacity:1;"/>
|
261
|
+
<stop offset="0.71875" style="stop-color:rgb(41.568627%,64.707408%,88.628977%);stop-opacity:1;"/>
|
262
|
+
<stop offset="0.722656" style="stop-color:rgb(41.176471%,64.707408%,88.628977%);stop-opacity:1;"/>
|
263
|
+
<stop offset="0.726562" style="stop-color:rgb(41.176471%,64.707408%,88.628977%);stop-opacity:1;"/>
|
264
|
+
<stop offset="0.730469" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
265
|
+
<stop offset="0.734375" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
266
|
+
<stop offset="0.742188" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
267
|
+
<stop offset="0.746094" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
268
|
+
<stop offset="0.75" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
269
|
+
<stop offset="0.753906" style="stop-color:rgb(40%,63.923095%,88.23682%);stop-opacity:1;"/>
|
270
|
+
<stop offset="0.757812" style="stop-color:rgb(40%,63.923095%,88.23682%);stop-opacity:1;"/>
|
271
|
+
<stop offset="0.761719" style="stop-color:rgb(40%,63.530938%,88.23682%);stop-opacity:1;"/>
|
272
|
+
<stop offset="0.765625" style="stop-color:rgb(40%,63.530938%,88.23682%);stop-opacity:1;"/>
|
273
|
+
<stop offset="0.769531" style="stop-color:rgb(39.607843%,63.530938%,87.844663%);stop-opacity:1;"/>
|
274
|
+
<stop offset="0.773438" style="stop-color:rgb(39.607843%,63.530938%,87.844663%);stop-opacity:1;"/>
|
275
|
+
<stop offset="0.777344" style="stop-color:rgb(39.215686%,63.138781%,87.844663%);stop-opacity:1;"/>
|
276
|
+
<stop offset="0.78125" style="stop-color:rgb(39.215686%,63.138781%,87.844663%);stop-opacity:1;"/>
|
277
|
+
<stop offset="0.785156" style="stop-color:rgb(38.823529%,63.138781%,87.844663%);stop-opacity:1;"/>
|
278
|
+
<stop offset="0.789062" style="stop-color:rgb(38.823529%,63.138781%,87.844663%);stop-opacity:1;"/>
|
279
|
+
<stop offset="0.792969" style="stop-color:rgb(38.823529%,62.746624%,87.452506%);stop-opacity:1;"/>
|
280
|
+
<stop offset="0.796875" style="stop-color:rgb(38.823529%,62.746624%,87.452506%);stop-opacity:1;"/>
|
281
|
+
<stop offset="0.800781" style="stop-color:rgb(38.431373%,62.746624%,87.452506%);stop-opacity:1;"/>
|
282
|
+
<stop offset="0.804688" style="stop-color:rgb(38.431373%,62.746624%,87.452506%);stop-opacity:1;"/>
|
283
|
+
<stop offset="0.808594" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
284
|
+
<stop offset="0.8125" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
285
|
+
<stop offset="0.820312" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
286
|
+
<stop offset="0.824219" style="stop-color:rgb(37.647059%,61.96231%,87.060349%);stop-opacity:1;"/>
|
287
|
+
<stop offset="0.828125" style="stop-color:rgb(37.647059%,61.96231%,87.060349%);stop-opacity:1;"/>
|
288
|
+
<stop offset="0.832031" style="stop-color:rgb(37.254902%,61.96231%,86.668193%);stop-opacity:1;"/>
|
289
|
+
<stop offset="0.835938" style="stop-color:rgb(37.254902%,61.96231%,86.668193%);stop-opacity:1;"/>
|
290
|
+
<stop offset="0.839844" style="stop-color:rgb(36.862745%,61.96231%,86.668193%);stop-opacity:1;"/>
|
291
|
+
<stop offset="0.84375" style="stop-color:rgb(36.862745%,61.96231%,86.668193%);stop-opacity:1;"/>
|
292
|
+
<stop offset="0.847656" style="stop-color:rgb(36.862745%,61.570153%,86.276036%);stop-opacity:1;"/>
|
293
|
+
<stop offset="0.851562" style="stop-color:rgb(36.862745%,61.570153%,86.276036%);stop-opacity:1;"/>
|
294
|
+
<stop offset="0.855469" style="stop-color:rgb(36.078431%,61.570153%,86.276036%);stop-opacity:1;"/>
|
295
|
+
<stop offset="0.859375" style="stop-color:rgb(36.078431%,61.570153%,86.276036%);stop-opacity:1;"/>
|
296
|
+
<stop offset="0.863281" style="stop-color:rgb(35.686275%,61.570153%,86.276036%);stop-opacity:1;"/>
|
297
|
+
<stop offset="0.867188" style="stop-color:rgb(35.686275%,61.570153%,86.276036%);stop-opacity:1;"/>
|
298
|
+
<stop offset="0.871094" style="stop-color:rgb(35.686275%,61.177996%,86.276036%);stop-opacity:1;"/>
|
299
|
+
<stop offset="0.875" style="stop-color:rgb(35.294118%,61.177996%,86.276036%);stop-opacity:1;"/>
|
300
|
+
<stop offset="0.882812" style="stop-color:rgb(35.294118%,61.177996%,86.276036%);stop-opacity:1;"/>
|
301
|
+
<stop offset="0.886719" style="stop-color:rgb(34.901961%,60.78584%,85.883879%);stop-opacity:1;"/>
|
302
|
+
<stop offset="0.890625" style="stop-color:rgb(34.901961%,60.78584%,85.883879%);stop-opacity:1;"/>
|
303
|
+
<stop offset="0.894531" style="stop-color:rgb(34.509804%,60.78584%,85.883879%);stop-opacity:1;"/>
|
304
|
+
<stop offset="0.898438" style="stop-color:rgb(34.509804%,60.78584%,85.883879%);stop-opacity:1;"/>
|
305
|
+
<stop offset="0.902344" style="stop-color:rgb(34.509804%,60.393683%,85.883879%);stop-opacity:1;"/>
|
306
|
+
<stop offset="0.90625" style="stop-color:rgb(34.509804%,60.393683%,85.883879%);stop-opacity:1;"/>
|
307
|
+
<stop offset="0.910156" style="stop-color:rgb(34.117647%,60.393683%,85.491722%);stop-opacity:1;"/>
|
308
|
+
<stop offset="0.914062" style="stop-color:rgb(34.117647%,60.393683%,85.491722%);stop-opacity:1;"/>
|
309
|
+
<stop offset="0.917969" style="stop-color:rgb(33.72549%,60.001526%,85.491722%);stop-opacity:1;"/>
|
310
|
+
<stop offset="0.921875" style="stop-color:rgb(33.72549%,60.001526%,85.491722%);stop-opacity:1;"/>
|
311
|
+
<stop offset="0.925781" style="stop-color:rgb(33.333333%,60.001526%,85.491722%);stop-opacity:1;"/>
|
312
|
+
<stop offset="0.929688" style="stop-color:rgb(33.333333%,60.001526%,85.491722%);stop-opacity:1;"/>
|
313
|
+
<stop offset="0.933594" style="stop-color:rgb(33.333333%,59.609369%,85.099565%);stop-opacity:1;"/>
|
314
|
+
<stop offset="0.9375" style="stop-color:rgb(33.333333%,59.609369%,85.099565%);stop-opacity:1;"/>
|
315
|
+
<stop offset="0.941406" style="stop-color:rgb(32.941176%,59.609369%,85.099565%);stop-opacity:1;"/>
|
316
|
+
<stop offset="0.945312" style="stop-color:rgb(32.941176%,59.609369%,85.099565%);stop-opacity:1;"/>
|
317
|
+
<stop offset="0.949219" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
318
|
+
<stop offset="0.953125" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
319
|
+
<stop offset="0.960938" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
320
|
+
<stop offset="0.964844" style="stop-color:rgb(31.764706%,58.825055%,84.707408%);stop-opacity:1;"/>
|
321
|
+
<stop offset="0.96875" style="stop-color:rgb(31.764706%,58.825055%,84.707408%);stop-opacity:1;"/>
|
322
|
+
<stop offset="0.972656" style="stop-color:rgb(31.372549%,58.825055%,84.315251%);stop-opacity:1;"/>
|
323
|
+
<stop offset="0.976562" style="stop-color:rgb(31.372549%,58.825055%,84.315251%);stop-opacity:1;"/>
|
324
|
+
<stop offset="0.980469" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
325
|
+
<stop offset="0.984375" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
326
|
+
<stop offset="0.988281" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
327
|
+
<stop offset="0.992188" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
328
|
+
<stop offset="0.996094" style="stop-color:rgb(30.588235%,58.040742%,84.315251%);stop-opacity:1;"/>
|
329
|
+
<stop offset="1" style="stop-color:rgb(30.588235%,58.040742%,84.315251%);stop-opacity:1;"/>
|
330
|
+
</linearGradient>
|
331
|
+
<clipPath id="clip10">
|
332
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
333
|
+
</clipPath>
|
334
|
+
<clipPath id="clip11">
|
335
|
+
<path d="M 0 0 L 360 0 L 360 234 L 0 234 L 0 0 Z M 131.785156 48.128906 L 342.433594 48.128906 C 342.3125 57.566406 342.4375 67.003906 342.316406 76.441406 C 342.4375 85.386719 342.3125 94.332031 342.433594 103.277344 L 131.785156 103.277344 L 159.359375 75.703125 L 131.785156 48.128906 Z M 131.785156 48.128906 "/>
|
336
|
+
</clipPath>
|
337
|
+
<clipPath id="clip12">
|
338
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
339
|
+
</clipPath>
|
340
|
+
<clipPath id="clip13">
|
341
|
+
<path d="M 127.964844 108.980469 L 346.253906 108.980469 L 346.253906 45.816406 L 127.964844 45.816406 Z M 127.964844 108.980469 "/>
|
342
|
+
</clipPath>
|
343
|
+
<pattern id="pattern4" patternUnits="userSpaceOnUse" width="667" height="193" patternTransform="matrix(0.327273,0,0,0.327273,127.9636,45.81816)">
|
344
|
+
<image width="667" height="193" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAApsAAADBCAAAAAClcyQAAAAAAmJLR0QA/4ePzL8AAAbWSURBVHic7d3RcqJKEIDh7h7Qff/HXZnucwEqGJMgDDPU2f/LZtfoViUXf/UwYFQEAAAAOI6+vQm0Eo9bOruhQqBoKMbPe536+FdFlTTRUkhIPOqcYlTRCaMTbYRIRISHxBhnJyJjmmZqpsxONBIS4eHqU5pTm6JqliwlG0cnUF2IR/acxUM0ZGpTRVQtdV1KiTjRRoT7kAeR5ZouqpZS1/ddGtd1oLKI8Hy7aYTrfE2/D86+75MZx5yoLiQ8D8nE3aetevd4cBkn23VUFeKeBxPPOU+Ds5s9KKKW0j1O2kRFIe6DhQ/J7uWNbYZKhLt7iFoiTlQX4tnEh/Tc73QiIqER7p7zMHTuopY4z4m6QlylG8zM7ulNa3pEeB7MUkopWxI1NuuoKkQiq6nKYm5KaLhmVTNTVb1vhsgTtYRKjKv1o7r7XijEx0vqMv01TVbyRCU6G5ki8lzTNcLzdKJz+mRyoqnH3NSQvHwoUSZaepzfDJEvcboFeaKV5bl34kRzj1/K6Jb3ESdOY9YmceIU7oOze72TOHESizaJE43F7Hb39SHixCm8tEmcaGs2OF/bJE6cxZc2iROtxOJw802bxIlzeNMmceIU3rVJnDiDt20SJ5p5vpDc+zaJE+190yZxornv2iROtPZtm8SJxr5vkzjR1g9tEiea+qlN4kRLP7ZJnGjo5zaJE+380iZxopnf2iROtPJrm8SJRn5vkzjRxoo2iRNNrGmTONHCqjaJEw2sa5M4Ud/KNokT1a1tkzhR2+o2iROVrW+TOFHXB20SJ6r6pE3iRE0ftUmcqOizNokT9XzYJnGimk/bJE7U8nGbxIlKPm+TOFHHhjaJE1VsaZM4UcOmNokTFWxrU0LCiBOH2tjm2/dbJ06UtLVNlnUcbXObxImDbW+TOHGsHW0SJw61p03ixJF2tUmcONC+NokTx9nZJnHiMHvbJE4cZXebxImD7G+Ta+s4RoE2ubaOQ5Rok2UdBT3epLpIm8SJA5RpkzhRQiy+KtQmcaK4Um0SJ/YZZ2bMRmexNokThZVrkzhRVsE238SpFkqcWG2xGSrZ5kucKqIiRpzYpmibyzhVVEVDSBMfiMfwLNvm7Nq6Thic2Khwm/dr6yqqZpbMTEgTm5Ruc1rWVc1S6oaUgjSxTfE2JUTEsw3dMAzZI4KtOjYp36ZISISHu0dExO//HxAZp1o8t0JiR3yT8ewRsEv5NlVUzMwsJTNTIsVGB8zNaR/Ud12XzFSVIYotirepqpZS118ul0vfJQYntird5phmf7lcr9dLPw7Owt8C/4jCbU5p9pfrvU32RVhJRWR+BFi2zXua1+ufP9dL33XJlLmJbYq2uUjzeuk7ysR2Jdv8kmYyY5OOrQq2SZooqlybpIkSns0Ua5M0sd+il1JtkiZKK9QmaaK4Mm2SJvYaa5mfcyzSJmniACXaJE2UsWymQJukiUPsb5M0UdTj2UG72yRNHGRvm6SJo+xskzRxmH1tkiaOs6tN0sSB9rRJmjjSjjZJE4fa3iZp4lib2yRNHGxrm6SJo21skzRxuG1tkiaOt6lN0kQFW9okTdSwoU3SRBWft0maqOPjNkkTlXzaJmmilg/bJE1U81mbpIl6PmqTNFHRJ22SJmr6oE3SRFXr2yRN1LW6TdJEZWvfa3We5p8LaeJ4K+cmaaK6dW2SJupb1SZpooE1bZImWljRJmmiid/bJE208WubpIlGfmuTNNHKL22SJpr5uU3SRDs/tkmaaOinNkkTLf3QJmmiqe/bJE209W2bpInGvmuTNNHaN22SJpp73yZpor23bZImmnm81erbNkkTZ/CmTdLEKXxtkzTRyEtmX9okTZzEa5ukibN4aZM00dastWWbpIm25q0t2iRNnMi8TdLEGdyLm7VJmjiVZ5ukiVN4JPdokzRxMvc2VdXs/tKvpIkTmF4bVkXUUtdfrn+u06sSq4hE058N/5KI19zur1usZqnr++v1siyTyYkqYvwTs4E4tqmq49i8XJ5lBpMT1YS4u0fMxudsblrX9X3XJVOJcCYmagrx7O7hzzjvx5uqllJKZirhGk6ZqCsiD0PO/pycnch4UKmqqioSniOrCoeaqCnEfbjdxjrHu6bjTRmPMN0HcU4eoYEIz7e/f4fsvlzTJULC86CRTZU2UVtIuA+3v7chR8zWdAmV8Gw38YE00UJIhOfhdhvyuFuf2gyNCM8SPrCgo5EI95yH4eua7iIxLehACxHunv2xGZraDBEXd7XX33UDKgmJCA9/nOGcQlRRFRMONdFQSMTsytA9RRVR5Zwm2orpQ0TmMVIm2gt5PodjniNpojmeXAQAwP/Of+7zxSsKoD08AAAAAElFTkSuQmCC"/>
|
345
|
+
</pattern>
|
346
|
+
<mask id="mask2">
|
347
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern4);stroke:none;"/>
|
348
|
+
</mask>
|
349
|
+
<pattern id="pattern5" patternUnits="userSpaceOnUse" width="667" height="193" patternTransform="matrix(0.327273,0,0,0.327273,127.9636,45.81816)">
|
350
|
+
<image width="667" height="193" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAApsAAADBCAIAAAAPeuyLAAAABmJLR0QA/wD/AP+gvaeTAAABjUlEQVR4nO3BMQEAAADCoPVPbQ0PoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+DblnQABTt63KAAAAABJRU5ErkJggg=="/>
|
351
|
+
</pattern>
|
352
|
+
<clipPath id="clip14">
|
353
|
+
<path d="M 0 0 L 360 0 L 360 234 L 0 234 L 0 0 Z M 131.785156 48.128906 L 342.433594 48.128906 C 342.3125 57.566406 342.4375 67.003906 342.316406 76.441406 C 342.4375 85.386719 342.3125 94.332031 342.433594 103.277344 L 131.785156 103.277344 L 159.359375 75.703125 L 131.785156 48.128906 Z M 131.785156 48.128906 "/>
|
354
|
+
</clipPath>
|
355
|
+
<clipPath id="clip15">
|
356
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
357
|
+
</clipPath>
|
358
|
+
<clipPath id="clip16">
|
359
|
+
<path d="M 209.453125 96.21875 L 264.433594 96.21875 L 264.433594 59.890625 L 209.453125 59.890625 Z M 209.453125 96.21875 "/>
|
360
|
+
</clipPath>
|
361
|
+
<pattern id="pattern6" patternUnits="userSpaceOnUse" width="168" height="111" patternTransform="matrix(0.327273,0,0,0.327273,209.4545,59.89093)">
|
362
|
+
<image width="168" height="111" xlink:href="data:image/png;base64,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"/>
|
363
|
+
</pattern>
|
364
|
+
<mask id="mask3">
|
365
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern6);stroke:none;"/>
|
366
|
+
</mask>
|
367
|
+
<pattern id="pattern7" patternUnits="userSpaceOnUse" width="168" height="111" patternTransform="matrix(0.327273,0,0,0.327273,209.4545,59.89093)">
|
368
|
+
<image width="168" height="111" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKgAAABvCAIAAAD3xBzvAAAABmJLR0QA/wD/AP+gvaeTAAAATUlEQVR4nO3BMQEAAADCoPVPbQlPoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgY2vcAAUAqfTEAAAAASUVORK5CYII="/>
|
369
|
+
</pattern>
|
370
|
+
<clipPath id="clip17">
|
371
|
+
<path d="M 131.785156 48.128906 L 342.433594 48.128906 C 342.3125 57.566406 342.4375 67.003906 342.316406 76.441406 C 342.4375 85.386719 342.3125 94.332031 342.433594 103.277344 L 131.785156 103.277344 L 159.359375 75.703125 L 131.785156 48.128906 Z M 131.785156 48.128906 "/>
|
372
|
+
</clipPath>
|
373
|
+
<clipPath id="clip18">
|
374
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
375
|
+
</clipPath>
|
376
|
+
<linearGradient id="linear1" gradientUnits="userSpaceOnUse" x1="1337619" y1="0" x2="1337619" y2="700392.457031" gradientTransform="matrix(0.0000787401,0,0,0.0000787401,131.7841,48.1298)">
|
377
|
+
<stop offset="0" style="stop-color:rgb(66.668193%,80.78584%,100%);stop-opacity:1;"/>
|
378
|
+
<stop offset="0.00390625" style="stop-color:rgb(66.276036%,80.78584%,100%);stop-opacity:1;"/>
|
379
|
+
<stop offset="0.0078125" style="stop-color:rgb(66.276036%,80.393683%,100%);stop-opacity:1;"/>
|
380
|
+
<stop offset="0.0117188" style="stop-color:rgb(66.276036%,80.393683%,99.609369%);stop-opacity:1;"/>
|
381
|
+
<stop offset="0.015625" style="stop-color:rgb(66.276036%,80.393683%,99.609369%);stop-opacity:1;"/>
|
382
|
+
<stop offset="0.0195312" style="stop-color:rgb(65.883879%,80.393683%,99.609369%);stop-opacity:1;"/>
|
383
|
+
<stop offset="0.0234375" style="stop-color:rgb(66.276036%,80.001526%,99.609369%);stop-opacity:1;"/>
|
384
|
+
<stop offset="0.0273438" style="stop-color:rgb(65.883879%,80.001526%,99.609369%);stop-opacity:1;"/>
|
385
|
+
<stop offset="0.03125" style="stop-color:rgb(65.883879%,80.001526%,99.609369%);stop-opacity:1;"/>
|
386
|
+
<stop offset="0.0351562" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
387
|
+
<stop offset="0.0390625" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
388
|
+
<stop offset="0.046875" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
389
|
+
<stop offset="0.0507812" style="stop-color:rgb(65.099565%,79.217212%,99.217212%);stop-opacity:1;"/>
|
390
|
+
<stop offset="0.0546875" style="stop-color:rgb(65.099565%,79.217212%,99.217212%);stop-opacity:1;"/>
|
391
|
+
<stop offset="0.0585938" style="stop-color:rgb(64.707408%,79.217212%,99.217212%);stop-opacity:1;"/>
|
392
|
+
<stop offset="0.0625" style="stop-color:rgb(64.707408%,79.217212%,99.217212%);stop-opacity:1;"/>
|
393
|
+
<stop offset="0.0664062" style="stop-color:rgb(64.707408%,78.825055%,99.217212%);stop-opacity:1;"/>
|
394
|
+
<stop offset="0.0703125" style="stop-color:rgb(64.707408%,78.825055%,98.825055%);stop-opacity:1;"/>
|
395
|
+
<stop offset="0.0742188" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
396
|
+
<stop offset="0.078125" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
397
|
+
<stop offset="0.0820312" style="stop-color:rgb(63.923095%,78.825055%,98.825055%);stop-opacity:1;"/>
|
398
|
+
<stop offset="0.0859375" style="stop-color:rgb(63.923095%,78.825055%,98.825055%);stop-opacity:1;"/>
|
399
|
+
<stop offset="0.0898438" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
400
|
+
<stop offset="0.09375" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
401
|
+
<stop offset="0.0976562" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
402
|
+
<stop offset="0.101562" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
403
|
+
<stop offset="0.105469" style="stop-color:rgb(63.138781%,78.432898%,98.432898%);stop-opacity:1;"/>
|
404
|
+
<stop offset="0.109375" style="stop-color:rgb(63.138781%,78.432898%,98.432898%);stop-opacity:1;"/>
|
405
|
+
<stop offset="0.113281" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
406
|
+
<stop offset="0.117188" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
407
|
+
<stop offset="0.125" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
408
|
+
<stop offset="0.128906" style="stop-color:rgb(62.354467%,77.648585%,98.040742%);stop-opacity:1;"/>
|
409
|
+
<stop offset="0.132812" style="stop-color:rgb(62.354467%,77.648585%,98.040742%);stop-opacity:1;"/>
|
410
|
+
<stop offset="0.136719" style="stop-color:rgb(61.96231%,77.648585%,98.040742%);stop-opacity:1;"/>
|
411
|
+
<stop offset="0.140625" style="stop-color:rgb(61.96231%,77.648585%,98.040742%);stop-opacity:1;"/>
|
412
|
+
<stop offset="0.144531" style="stop-color:rgb(61.570153%,77.256428%,98.040742%);stop-opacity:1;"/>
|
413
|
+
<stop offset="0.148438" style="stop-color:rgb(61.570153%,77.256428%,98.040742%);stop-opacity:1;"/>
|
414
|
+
<stop offset="0.152344" style="stop-color:rgb(61.570153%,77.256428%,97.648585%);stop-opacity:1;"/>
|
415
|
+
<stop offset="0.15625" style="stop-color:rgb(61.570153%,77.256428%,97.648585%);stop-opacity:1;"/>
|
416
|
+
<stop offset="0.160156" style="stop-color:rgb(61.570153%,76.864271%,97.648585%);stop-opacity:1;"/>
|
417
|
+
<stop offset="0.164062" style="stop-color:rgb(61.570153%,76.864271%,97.648585%);stop-opacity:1;"/>
|
418
|
+
<stop offset="0.167969" style="stop-color:rgb(61.177996%,76.864271%,97.256428%);stop-opacity:1;"/>
|
419
|
+
<stop offset="0.171875" style="stop-color:rgb(61.177996%,76.864271%,97.256428%);stop-opacity:1;"/>
|
420
|
+
<stop offset="0.175781" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
421
|
+
<stop offset="0.179688" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
422
|
+
<stop offset="0.1875" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
423
|
+
<stop offset="0.191406" style="stop-color:rgb(60.393683%,76.472114%,96.864271%);stop-opacity:1;"/>
|
424
|
+
<stop offset="0.195312" style="stop-color:rgb(60.393683%,76.472114%,96.864271%);stop-opacity:1;"/>
|
425
|
+
<stop offset="0.199219" style="stop-color:rgb(60.001526%,76.472114%,96.864271%);stop-opacity:1;"/>
|
426
|
+
<stop offset="0.203125" style="stop-color:rgb(60.001526%,76.472114%,96.864271%);stop-opacity:1;"/>
|
427
|
+
<stop offset="0.207031" style="stop-color:rgb(60.001526%,76.079957%,96.472114%);stop-opacity:1;"/>
|
428
|
+
<stop offset="0.210938" style="stop-color:rgb(60.001526%,76.079957%,96.472114%);stop-opacity:1;"/>
|
429
|
+
<stop offset="0.214844" style="stop-color:rgb(59.609369%,76.079957%,96.472114%);stop-opacity:1;"/>
|
430
|
+
<stop offset="0.21875" style="stop-color:rgb(59.609369%,76.079957%,96.472114%);stop-opacity:1;"/>
|
431
|
+
<stop offset="0.222656" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
432
|
+
<stop offset="0.226562" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
433
|
+
<stop offset="0.230469" style="stop-color:rgb(58.825055%,75.6878%,96.472114%);stop-opacity:1;"/>
|
434
|
+
<stop offset="0.234375" style="stop-color:rgb(58.825055%,75.6878%,96.472114%);stop-opacity:1;"/>
|
435
|
+
<stop offset="0.238281" style="stop-color:rgb(58.825055%,75.295644%,96.472114%);stop-opacity:1;"/>
|
436
|
+
<stop offset="0.242188" style="stop-color:rgb(58.825055%,75.295644%,96.472114%);stop-opacity:1;"/>
|
437
|
+
<stop offset="0.246094" style="stop-color:rgb(58.432898%,75.295644%,96.472114%);stop-opacity:1;"/>
|
438
|
+
<stop offset="0.25" style="stop-color:rgb(58.432898%,75.295644%,96.472114%);stop-opacity:1;"/>
|
439
|
+
<stop offset="0.253906" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
440
|
+
<stop offset="0.257812" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
441
|
+
<stop offset="0.265625" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
442
|
+
<stop offset="0.269531" style="stop-color:rgb(57.648585%,74.51133%,95.6878%);stop-opacity:1;"/>
|
443
|
+
<stop offset="0.273438" style="stop-color:rgb(57.648585%,74.51133%,95.6878%);stop-opacity:1;"/>
|
444
|
+
<stop offset="0.277344" style="stop-color:rgb(57.256428%,74.51133%,95.6878%);stop-opacity:1;"/>
|
445
|
+
<stop offset="0.28125" style="stop-color:rgb(57.256428%,74.51133%,95.6878%);stop-opacity:1;"/>
|
446
|
+
<stop offset="0.285156" style="stop-color:rgb(56.864271%,74.119173%,95.6878%);stop-opacity:1;"/>
|
447
|
+
<stop offset="0.289062" style="stop-color:rgb(56.864271%,74.119173%,95.6878%);stop-opacity:1;"/>
|
448
|
+
<stop offset="0.292969" style="stop-color:rgb(56.864271%,74.119173%,95.295644%);stop-opacity:1;"/>
|
449
|
+
<stop offset="0.296875" style="stop-color:rgb(56.864271%,74.119173%,95.295644%);stop-opacity:1;"/>
|
450
|
+
<stop offset="0.300781" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
451
|
+
<stop offset="0.304688" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
452
|
+
<stop offset="0.308594" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
453
|
+
<stop offset="0.3125" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
454
|
+
<stop offset="0.316406" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
455
|
+
<stop offset="0.320312" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
456
|
+
<stop offset="0.324219" style="stop-color:rgb(55.6878%,73.727016%,94.903487%);stop-opacity:1;"/>
|
457
|
+
<stop offset="0.328125" style="stop-color:rgb(55.6878%,73.727016%,94.903487%);stop-opacity:1;"/>
|
458
|
+
<stop offset="0.332031" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
459
|
+
<stop offset="0.335938" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
460
|
+
<stop offset="0.339844" style="stop-color:rgb(54.903487%,73.334859%,94.903487%);stop-opacity:1;"/>
|
461
|
+
<stop offset="0.34375" style="stop-color:rgb(54.903487%,73.334859%,94.903487%);stop-opacity:1;"/>
|
462
|
+
<stop offset="0.347656" style="stop-color:rgb(54.903487%,72.942702%,94.51133%);stop-opacity:1;"/>
|
463
|
+
<stop offset="0.351562" style="stop-color:rgb(54.903487%,72.942702%,94.51133%);stop-opacity:1;"/>
|
464
|
+
<stop offset="0.355469" style="stop-color:rgb(54.51133%,72.942702%,94.51133%);stop-opacity:1;"/>
|
465
|
+
<stop offset="0.359375" style="stop-color:rgb(54.51133%,72.942702%,94.51133%);stop-opacity:1;"/>
|
466
|
+
<stop offset="0.363281" style="stop-color:rgb(54.51133%,72.550546%,94.51133%);stop-opacity:1;"/>
|
467
|
+
<stop offset="0.367188" style="stop-color:rgb(54.51133%,72.550546%,94.51133%);stop-opacity:1;"/>
|
468
|
+
<stop offset="0.371094" style="stop-color:rgb(54.51133%,72.550546%,94.119173%);stop-opacity:1;"/>
|
469
|
+
<stop offset="0.375" style="stop-color:rgb(54.119173%,72.550546%,94.119173%);stop-opacity:1;"/>
|
470
|
+
<stop offset="0.378906" style="stop-color:rgb(54.119173%,72.158389%,94.119173%);stop-opacity:1;"/>
|
471
|
+
<stop offset="0.382812" style="stop-color:rgb(54.119173%,72.158389%,94.119173%);stop-opacity:1;"/>
|
472
|
+
<stop offset="0.386719" style="stop-color:rgb(53.727016%,72.158389%,93.727016%);stop-opacity:1;"/>
|
473
|
+
<stop offset="0.390625" style="stop-color:rgb(53.727016%,72.158389%,93.727016%);stop-opacity:1;"/>
|
474
|
+
<stop offset="0.394531" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
475
|
+
<stop offset="0.398438" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
476
|
+
<stop offset="0.40625" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
477
|
+
<stop offset="0.410156" style="stop-color:rgb(52.942702%,71.374075%,93.334859%);stop-opacity:1;"/>
|
478
|
+
<stop offset="0.414062" style="stop-color:rgb(52.942702%,71.374075%,93.334859%);stop-opacity:1;"/>
|
479
|
+
<stop offset="0.417969" style="stop-color:rgb(52.550546%,71.374075%,93.334859%);stop-opacity:1;"/>
|
480
|
+
<stop offset="0.421875" style="stop-color:rgb(52.550546%,71.374075%,93.334859%);stop-opacity:1;"/>
|
481
|
+
<stop offset="0.425781" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
482
|
+
<stop offset="0.429688" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
483
|
+
<stop offset="0.4375" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
484
|
+
<stop offset="0.441406" style="stop-color:rgb(51.766232%,70.981918%,93.334859%);stop-opacity:1;"/>
|
485
|
+
<stop offset="0.445312" style="stop-color:rgb(51.766232%,70.981918%,93.334859%);stop-opacity:1;"/>
|
486
|
+
<stop offset="0.449219" style="stop-color:rgb(51.374075%,70.981918%,92.942702%);stop-opacity:1;"/>
|
487
|
+
<stop offset="0.453125" style="stop-color:rgb(51.374075%,70.981918%,92.942702%);stop-opacity:1;"/>
|
488
|
+
<stop offset="0.457031" style="stop-color:rgb(51.374075%,70.589761%,92.942702%);stop-opacity:1;"/>
|
489
|
+
<stop offset="0.460938" style="stop-color:rgb(51.374075%,70.589761%,92.942702%);stop-opacity:1;"/>
|
490
|
+
<stop offset="0.464844" style="stop-color:rgb(50.981918%,70.589761%,92.942702%);stop-opacity:1;"/>
|
491
|
+
<stop offset="0.46875" style="stop-color:rgb(50.981918%,70.589761%,92.942702%);stop-opacity:1;"/>
|
492
|
+
<stop offset="0.472656" style="stop-color:rgb(50.589761%,70.197604%,92.550546%);stop-opacity:1;"/>
|
493
|
+
<stop offset="0.476562" style="stop-color:rgb(50.589761%,70.197604%,92.550546%);stop-opacity:1;"/>
|
494
|
+
<stop offset="0.480469" style="stop-color:rgb(50.197604%,70.197604%,92.550546%);stop-opacity:1;"/>
|
495
|
+
<stop offset="0.484375" style="stop-color:rgb(50.197604%,70.197604%,92.550546%);stop-opacity:1;"/>
|
496
|
+
<stop offset="0.488281" style="stop-color:rgb(50.197604%,69.805447%,92.158389%);stop-opacity:1;"/>
|
497
|
+
<stop offset="0.492188" style="stop-color:rgb(50.197604%,69.805447%,92.158389%);stop-opacity:1;"/>
|
498
|
+
<stop offset="0.496094" style="stop-color:rgb(49.803922%,69.805447%,92.158389%);stop-opacity:1;"/>
|
499
|
+
<stop offset="0.5" style="stop-color:rgb(49.803922%,69.805447%,92.158389%);stop-opacity:1;"/>
|
500
|
+
<stop offset="0.503906" style="stop-color:rgb(49.411765%,69.413291%,92.158389%);stop-opacity:1;"/>
|
501
|
+
<stop offset="0.507812" style="stop-color:rgb(49.411765%,69.413291%,92.158389%);stop-opacity:1;"/>
|
502
|
+
<stop offset="0.511719" style="stop-color:rgb(49.411765%,69.021134%,91.766232%);stop-opacity:1;"/>
|
503
|
+
<stop offset="0.515625" style="stop-color:rgb(49.411765%,69.021134%,91.766232%);stop-opacity:1;"/>
|
504
|
+
<stop offset="0.519531" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
505
|
+
<stop offset="0.523438" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
506
|
+
<stop offset="0.527344" style="stop-color:rgb(48.627451%,68.628977%,91.766232%);stop-opacity:1;"/>
|
507
|
+
<stop offset="0.53125" style="stop-color:rgb(48.627451%,68.628977%,91.766232%);stop-opacity:1;"/>
|
508
|
+
<stop offset="0.535156" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
509
|
+
<stop offset="0.539062" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
510
|
+
<stop offset="0.542969" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
511
|
+
<stop offset="0.546875" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
512
|
+
<stop offset="0.550781" style="stop-color:rgb(47.843137%,68.628977%,91.374075%);stop-opacity:1;"/>
|
513
|
+
<stop offset="0.554688" style="stop-color:rgb(47.843137%,68.628977%,91.374075%);stop-opacity:1;"/>
|
514
|
+
<stop offset="0.558594" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
515
|
+
<stop offset="0.5625" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
516
|
+
<stop offset="0.570312" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
517
|
+
<stop offset="0.574219" style="stop-color:rgb(47.058824%,67.844663%,90.981918%);stop-opacity:1;"/>
|
518
|
+
<stop offset="0.578125" style="stop-color:rgb(47.058824%,67.844663%,90.981918%);stop-opacity:1;"/>
|
519
|
+
<stop offset="0.582031" style="stop-color:rgb(46.666667%,67.844663%,90.981918%);stop-opacity:1;"/>
|
520
|
+
<stop offset="0.585938" style="stop-color:rgb(46.666667%,67.844663%,90.981918%);stop-opacity:1;"/>
|
521
|
+
<stop offset="0.589844" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
522
|
+
<stop offset="0.59375" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
523
|
+
<stop offset="0.601562" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
524
|
+
<stop offset="0.605469" style="stop-color:rgb(45.882353%,67.060349%,90.589761%);stop-opacity:1;"/>
|
525
|
+
<stop offset="0.609375" style="stop-color:rgb(45.882353%,67.060349%,90.589761%);stop-opacity:1;"/>
|
526
|
+
<stop offset="0.613281" style="stop-color:rgb(45.490196%,67.060349%,90.197604%);stop-opacity:1;"/>
|
527
|
+
<stop offset="0.617188" style="stop-color:rgb(45.490196%,67.060349%,90.197604%);stop-opacity:1;"/>
|
528
|
+
<stop offset="0.621094" style="stop-color:rgb(45.490196%,66.668193%,90.197604%);stop-opacity:1;"/>
|
529
|
+
<stop offset="0.625" style="stop-color:rgb(45.098039%,66.668193%,90.197604%);stop-opacity:1;"/>
|
530
|
+
<stop offset="0.628906" style="stop-color:rgb(45.098039%,66.668193%,89.805447%);stop-opacity:1;"/>
|
531
|
+
<stop offset="0.632812" style="stop-color:rgb(45.098039%,66.668193%,89.805447%);stop-opacity:1;"/>
|
532
|
+
<stop offset="0.636719" style="stop-color:rgb(44.705882%,66.276036%,89.805447%);stop-opacity:1;"/>
|
533
|
+
<stop offset="0.640625" style="stop-color:rgb(44.705882%,66.276036%,89.805447%);stop-opacity:1;"/>
|
534
|
+
<stop offset="0.644531" style="stop-color:rgb(44.313725%,66.276036%,89.805447%);stop-opacity:1;"/>
|
535
|
+
<stop offset="0.648438" style="stop-color:rgb(44.313725%,66.276036%,89.805447%);stop-opacity:1;"/>
|
536
|
+
<stop offset="0.652344" style="stop-color:rgb(44.313725%,65.883879%,89.805447%);stop-opacity:1;"/>
|
537
|
+
<stop offset="0.65625" style="stop-color:rgb(44.313725%,65.883879%,89.805447%);stop-opacity:1;"/>
|
538
|
+
<stop offset="0.660156" style="stop-color:rgb(43.921569%,65.883879%,89.805447%);stop-opacity:1;"/>
|
539
|
+
<stop offset="0.664062" style="stop-color:rgb(43.921569%,65.883879%,89.805447%);stop-opacity:1;"/>
|
540
|
+
<stop offset="0.667969" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
541
|
+
<stop offset="0.671875" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
542
|
+
<stop offset="0.675781" style="stop-color:rgb(42.745098%,65.491722%,89.413291%);stop-opacity:1;"/>
|
543
|
+
<stop offset="0.679688" style="stop-color:rgb(42.745098%,65.491722%,89.413291%);stop-opacity:1;"/>
|
544
|
+
<stop offset="0.683594" style="stop-color:rgb(43.137255%,65.491722%,89.413291%);stop-opacity:1;"/>
|
545
|
+
<stop offset="0.6875" style="stop-color:rgb(43.137255%,65.491722%,89.413291%);stop-opacity:1;"/>
|
546
|
+
<stop offset="0.691406" style="stop-color:rgb(42.352941%,65.491722%,89.021134%);stop-opacity:1;"/>
|
547
|
+
<stop offset="0.695312" style="stop-color:rgb(42.352941%,65.491722%,89.021134%);stop-opacity:1;"/>
|
548
|
+
<stop offset="0.699219" style="stop-color:rgb(41.960784%,65.099565%,89.021134%);stop-opacity:1;"/>
|
549
|
+
<stop offset="0.703125" style="stop-color:rgb(41.960784%,65.099565%,89.021134%);stop-opacity:1;"/>
|
550
|
+
<stop offset="0.707031" style="stop-color:rgb(41.960784%,65.099565%,88.628977%);stop-opacity:1;"/>
|
551
|
+
<stop offset="0.710938" style="stop-color:rgb(41.960784%,65.099565%,88.628977%);stop-opacity:1;"/>
|
552
|
+
<stop offset="0.714844" style="stop-color:rgb(41.568627%,64.707408%,88.628977%);stop-opacity:1;"/>
|
553
|
+
<stop offset="0.71875" style="stop-color:rgb(41.568627%,64.707408%,88.628977%);stop-opacity:1;"/>
|
554
|
+
<stop offset="0.722656" style="stop-color:rgb(41.176471%,64.707408%,88.628977%);stop-opacity:1;"/>
|
555
|
+
<stop offset="0.726562" style="stop-color:rgb(41.176471%,64.707408%,88.628977%);stop-opacity:1;"/>
|
556
|
+
<stop offset="0.730469" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
557
|
+
<stop offset="0.734375" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
558
|
+
<stop offset="0.742188" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
559
|
+
<stop offset="0.746094" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
560
|
+
<stop offset="0.75" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
561
|
+
<stop offset="0.753906" style="stop-color:rgb(40%,63.923095%,88.23682%);stop-opacity:1;"/>
|
562
|
+
<stop offset="0.757812" style="stop-color:rgb(40%,63.923095%,88.23682%);stop-opacity:1;"/>
|
563
|
+
<stop offset="0.761719" style="stop-color:rgb(40%,63.530938%,88.23682%);stop-opacity:1;"/>
|
564
|
+
<stop offset="0.765625" style="stop-color:rgb(40%,63.530938%,88.23682%);stop-opacity:1;"/>
|
565
|
+
<stop offset="0.769531" style="stop-color:rgb(39.607843%,63.530938%,87.844663%);stop-opacity:1;"/>
|
566
|
+
<stop offset="0.773438" style="stop-color:rgb(39.607843%,63.530938%,87.844663%);stop-opacity:1;"/>
|
567
|
+
<stop offset="0.777344" style="stop-color:rgb(39.215686%,63.138781%,87.844663%);stop-opacity:1;"/>
|
568
|
+
<stop offset="0.78125" style="stop-color:rgb(39.215686%,63.138781%,87.844663%);stop-opacity:1;"/>
|
569
|
+
<stop offset="0.785156" style="stop-color:rgb(38.823529%,63.138781%,87.844663%);stop-opacity:1;"/>
|
570
|
+
<stop offset="0.789062" style="stop-color:rgb(38.823529%,63.138781%,87.844663%);stop-opacity:1;"/>
|
571
|
+
<stop offset="0.792969" style="stop-color:rgb(38.823529%,62.746624%,87.452506%);stop-opacity:1;"/>
|
572
|
+
<stop offset="0.796875" style="stop-color:rgb(38.823529%,62.746624%,87.452506%);stop-opacity:1;"/>
|
573
|
+
<stop offset="0.800781" style="stop-color:rgb(38.431373%,62.746624%,87.452506%);stop-opacity:1;"/>
|
574
|
+
<stop offset="0.804688" style="stop-color:rgb(38.431373%,62.746624%,87.452506%);stop-opacity:1;"/>
|
575
|
+
<stop offset="0.808594" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
576
|
+
<stop offset="0.8125" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
577
|
+
<stop offset="0.820312" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
578
|
+
<stop offset="0.824219" style="stop-color:rgb(37.647059%,61.96231%,87.060349%);stop-opacity:1;"/>
|
579
|
+
<stop offset="0.828125" style="stop-color:rgb(37.647059%,61.96231%,87.060349%);stop-opacity:1;"/>
|
580
|
+
<stop offset="0.832031" style="stop-color:rgb(37.254902%,61.96231%,86.668193%);stop-opacity:1;"/>
|
581
|
+
<stop offset="0.835938" style="stop-color:rgb(37.254902%,61.96231%,86.668193%);stop-opacity:1;"/>
|
582
|
+
<stop offset="0.839844" style="stop-color:rgb(36.862745%,61.96231%,86.668193%);stop-opacity:1;"/>
|
583
|
+
<stop offset="0.84375" style="stop-color:rgb(36.862745%,61.96231%,86.668193%);stop-opacity:1;"/>
|
584
|
+
<stop offset="0.847656" style="stop-color:rgb(36.862745%,61.570153%,86.276036%);stop-opacity:1;"/>
|
585
|
+
<stop offset="0.851562" style="stop-color:rgb(36.862745%,61.570153%,86.276036%);stop-opacity:1;"/>
|
586
|
+
<stop offset="0.855469" style="stop-color:rgb(36.078431%,61.570153%,86.276036%);stop-opacity:1;"/>
|
587
|
+
<stop offset="0.859375" style="stop-color:rgb(36.078431%,61.570153%,86.276036%);stop-opacity:1;"/>
|
588
|
+
<stop offset="0.863281" style="stop-color:rgb(35.686275%,61.570153%,86.276036%);stop-opacity:1;"/>
|
589
|
+
<stop offset="0.867188" style="stop-color:rgb(35.686275%,61.570153%,86.276036%);stop-opacity:1;"/>
|
590
|
+
<stop offset="0.871094" style="stop-color:rgb(35.686275%,61.177996%,86.276036%);stop-opacity:1;"/>
|
591
|
+
<stop offset="0.875" style="stop-color:rgb(35.294118%,61.177996%,86.276036%);stop-opacity:1;"/>
|
592
|
+
<stop offset="0.882812" style="stop-color:rgb(35.294118%,61.177996%,86.276036%);stop-opacity:1;"/>
|
593
|
+
<stop offset="0.886719" style="stop-color:rgb(34.901961%,60.78584%,85.883879%);stop-opacity:1;"/>
|
594
|
+
<stop offset="0.890625" style="stop-color:rgb(34.901961%,60.78584%,85.883879%);stop-opacity:1;"/>
|
595
|
+
<stop offset="0.894531" style="stop-color:rgb(34.509804%,60.78584%,85.883879%);stop-opacity:1;"/>
|
596
|
+
<stop offset="0.898438" style="stop-color:rgb(34.509804%,60.78584%,85.883879%);stop-opacity:1;"/>
|
597
|
+
<stop offset="0.902344" style="stop-color:rgb(34.509804%,60.393683%,85.883879%);stop-opacity:1;"/>
|
598
|
+
<stop offset="0.90625" style="stop-color:rgb(34.509804%,60.393683%,85.883879%);stop-opacity:1;"/>
|
599
|
+
<stop offset="0.910156" style="stop-color:rgb(34.117647%,60.393683%,85.491722%);stop-opacity:1;"/>
|
600
|
+
<stop offset="0.914062" style="stop-color:rgb(34.117647%,60.393683%,85.491722%);stop-opacity:1;"/>
|
601
|
+
<stop offset="0.917969" style="stop-color:rgb(33.72549%,60.001526%,85.491722%);stop-opacity:1;"/>
|
602
|
+
<stop offset="0.921875" style="stop-color:rgb(33.72549%,60.001526%,85.491722%);stop-opacity:1;"/>
|
603
|
+
<stop offset="0.925781" style="stop-color:rgb(33.333333%,60.001526%,85.491722%);stop-opacity:1;"/>
|
604
|
+
<stop offset="0.929688" style="stop-color:rgb(33.333333%,60.001526%,85.491722%);stop-opacity:1;"/>
|
605
|
+
<stop offset="0.933594" style="stop-color:rgb(33.333333%,59.609369%,85.099565%);stop-opacity:1;"/>
|
606
|
+
<stop offset="0.9375" style="stop-color:rgb(33.333333%,59.609369%,85.099565%);stop-opacity:1;"/>
|
607
|
+
<stop offset="0.941406" style="stop-color:rgb(32.941176%,59.609369%,85.099565%);stop-opacity:1;"/>
|
608
|
+
<stop offset="0.945312" style="stop-color:rgb(32.941176%,59.609369%,85.099565%);stop-opacity:1;"/>
|
609
|
+
<stop offset="0.949219" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
610
|
+
<stop offset="0.953125" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
611
|
+
<stop offset="0.960938" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
612
|
+
<stop offset="0.964844" style="stop-color:rgb(31.764706%,58.825055%,84.707408%);stop-opacity:1;"/>
|
613
|
+
<stop offset="0.96875" style="stop-color:rgb(31.764706%,58.825055%,84.707408%);stop-opacity:1;"/>
|
614
|
+
<stop offset="0.972656" style="stop-color:rgb(31.372549%,58.825055%,84.315251%);stop-opacity:1;"/>
|
615
|
+
<stop offset="0.976562" style="stop-color:rgb(31.372549%,58.825055%,84.315251%);stop-opacity:1;"/>
|
616
|
+
<stop offset="0.980469" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
617
|
+
<stop offset="0.984375" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
618
|
+
<stop offset="0.988281" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
619
|
+
<stop offset="0.992188" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
620
|
+
<stop offset="0.996094" style="stop-color:rgb(30.588235%,58.040742%,84.315251%);stop-opacity:1;"/>
|
621
|
+
<stop offset="1" style="stop-color:rgb(30.588235%,58.040742%,84.315251%);stop-opacity:1;"/>
|
622
|
+
</linearGradient>
|
623
|
+
<clipPath id="clip19">
|
624
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
625
|
+
</clipPath>
|
626
|
+
<clipPath id="clip20">
|
627
|
+
<path d="M 0 0 L 360 0 L 360 234 L 0 234 L 0 0 Z M 96.050781 44.65625 C 98.222656 32.316406 111.28125 23.871094 125.222656 25.792969 C 133.550781 26.9375 140.703125 31.648438 144.339844 38.375 L 151.507812 37.753906 L 143.484375 46.203125 L 130.015625 39.621094 L 137.007812 39.011719 C 131.054688 31.671875 119.195312 29.804688 110.515625 34.839844 C 106.222656 37.328125 103.324219 41.195312 102.488281 45.539062 L 96.050781 44.65625 Z M 96.050781 44.65625 "/>
|
628
|
+
</clipPath>
|
629
|
+
<clipPath id="clip21">
|
630
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
631
|
+
</clipPath>
|
632
|
+
<clipPath id="clip22">
|
633
|
+
<path d="M 91.964844 52.035156 L 155.457031 52.035156 L 155.457031 23.234375 L 91.964844 23.234375 Z M 91.964844 52.035156 "/>
|
634
|
+
</clipPath>
|
635
|
+
<pattern id="pattern8" patternUnits="userSpaceOnUse" width="194" height="88" patternTransform="matrix(0.327273,0,0,0.327273,91.96363,23.2364)">
|
636
|
+
<image width="194" height="88" xlink:href="data:image/png;base64,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"/>
|
637
|
+
</pattern>
|
638
|
+
<mask id="mask4">
|
639
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern8);stroke:none;"/>
|
640
|
+
</mask>
|
641
|
+
<pattern id="pattern9" patternUnits="userSpaceOnUse" width="194" height="88" patternTransform="matrix(0.327273,0,0,0.327273,91.96363,23.2364)">
|
642
|
+
<image width="194" height="88" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMIAAABYCAIAAAAofr9DAAAABmJLR0QA/wD/AP+gvaeTAAAASElEQVR4nO3BAQ0AAADCoPdPbQ8HFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8GshoAAHou1WFAAAAAElFTkSuQmCC"/>
|
643
|
+
</pattern>
|
644
|
+
<clipPath id="clip23">
|
645
|
+
<path d="M 96.050781 44.65625 C 98.222656 32.316406 111.28125 23.871094 125.222656 25.792969 C 133.550781 26.9375 140.703125 31.648438 144.339844 38.375 L 151.507812 37.753906 L 143.484375 46.203125 L 130.015625 39.621094 L 137.007812 39.011719 C 131.054688 31.671875 119.195312 29.804688 110.515625 34.839844 C 106.222656 37.328125 103.324219 41.195312 102.488281 45.539062 L 96.050781 44.65625 Z M 96.050781 44.65625 "/>
|
646
|
+
</clipPath>
|
647
|
+
<clipPath id="clip24">
|
648
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
649
|
+
</clipPath>
|
650
|
+
<linearGradient id="linear2" gradientUnits="userSpaceOnUse" x1="451775" y1="74806.828125" x2="451775" y2="358418.210938" gradientTransform="matrix(0.0000787401,0,0,0.0000787401,88.20763,17.9817)">
|
651
|
+
<stop offset="0.0625" style="stop-color:rgb(66.668193%,80.78584%,100%);stop-opacity:1;"/>
|
652
|
+
<stop offset="0.0737699" style="stop-color:rgb(66.668193%,80.78584%,100%);stop-opacity:1;"/>
|
653
|
+
<stop offset="0.078125" style="stop-color:rgb(66.668193%,80.78584%,100%);stop-opacity:1;"/>
|
654
|
+
<stop offset="0.0820312" style="stop-color:rgb(66.276036%,80.393683%,99.609369%);stop-opacity:1;"/>
|
655
|
+
<stop offset="0.0859375" style="stop-color:rgb(66.276036%,80.393683%,99.609369%);stop-opacity:1;"/>
|
656
|
+
<stop offset="0.0898438" style="stop-color:rgb(65.883879%,80.393683%,99.609369%);stop-opacity:1;"/>
|
657
|
+
<stop offset="0.09375" style="stop-color:rgb(65.883879%,80.393683%,99.609369%);stop-opacity:1;"/>
|
658
|
+
<stop offset="0.0976562" style="stop-color:rgb(65.883879%,80.001526%,99.609369%);stop-opacity:1;"/>
|
659
|
+
<stop offset="0.101562" style="stop-color:rgb(65.883879%,80.001526%,99.609369%);stop-opacity:1;"/>
|
660
|
+
<stop offset="0.105469" style="stop-color:rgb(65.491722%,80.001526%,99.609369%);stop-opacity:1;"/>
|
661
|
+
<stop offset="0.109375" style="stop-color:rgb(65.491722%,80.001526%,99.609369%);stop-opacity:1;"/>
|
662
|
+
<stop offset="0.117188" style="stop-color:rgb(65.491722%,79.609369%,99.609369%);stop-opacity:1;"/>
|
663
|
+
<stop offset="0.121094" style="stop-color:rgb(65.099565%,79.217212%,99.217212%);stop-opacity:1;"/>
|
664
|
+
<stop offset="0.125" style="stop-color:rgb(65.099565%,79.217212%,99.217212%);stop-opacity:1;"/>
|
665
|
+
<stop offset="0.128906" style="stop-color:rgb(64.707408%,79.217212%,99.217212%);stop-opacity:1;"/>
|
666
|
+
<stop offset="0.132812" style="stop-color:rgb(64.707408%,79.217212%,99.217212%);stop-opacity:1;"/>
|
667
|
+
<stop offset="0.136719" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
668
|
+
<stop offset="0.140625" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
669
|
+
<stop offset="0.148438" style="stop-color:rgb(64.315251%,78.825055%,98.825055%);stop-opacity:1;"/>
|
670
|
+
<stop offset="0.152344" style="stop-color:rgb(63.923095%,78.825055%,98.825055%);stop-opacity:1;"/>
|
671
|
+
<stop offset="0.15625" style="stop-color:rgb(63.923095%,78.825055%,98.825055%);stop-opacity:1;"/>
|
672
|
+
<stop offset="0.160156" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
673
|
+
<stop offset="0.164062" style="stop-color:rgb(63.530938%,78.432898%,98.432898%);stop-opacity:1;"/>
|
674
|
+
<stop offset="0.167969" style="stop-color:rgb(63.138781%,78.432898%,98.432898%);stop-opacity:1;"/>
|
675
|
+
<stop offset="0.171875" style="stop-color:rgb(63.138781%,78.432898%,98.432898%);stop-opacity:1;"/>
|
676
|
+
<stop offset="0.175781" style="stop-color:rgb(63.138781%,78.432898%,98.040742%);stop-opacity:1;"/>
|
677
|
+
<stop offset="0.179688" style="stop-color:rgb(62.746624%,78.432898%,98.040742%);stop-opacity:1;"/>
|
678
|
+
<stop offset="0.183594" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
679
|
+
<stop offset="0.1875" style="stop-color:rgb(62.746624%,78.040742%,98.040742%);stop-opacity:1;"/>
|
680
|
+
<stop offset="0.191406" style="stop-color:rgb(62.354467%,78.040742%,98.040742%);stop-opacity:1;"/>
|
681
|
+
<stop offset="0.195312" style="stop-color:rgb(62.354467%,77.648585%,98.040742%);stop-opacity:1;"/>
|
682
|
+
<stop offset="0.199219" style="stop-color:rgb(61.96231%,77.648585%,98.040742%);stop-opacity:1;"/>
|
683
|
+
<stop offset="0.203125" style="stop-color:rgb(61.96231%,77.648585%,98.040742%);stop-opacity:1;"/>
|
684
|
+
<stop offset="0.207031" style="stop-color:rgb(61.570153%,77.256428%,98.040742%);stop-opacity:1;"/>
|
685
|
+
<stop offset="0.210938" style="stop-color:rgb(61.570153%,77.256428%,98.040742%);stop-opacity:1;"/>
|
686
|
+
<stop offset="0.214844" style="stop-color:rgb(61.570153%,77.256428%,97.648585%);stop-opacity:1;"/>
|
687
|
+
<stop offset="0.21875" style="stop-color:rgb(61.570153%,77.256428%,97.648585%);stop-opacity:1;"/>
|
688
|
+
<stop offset="0.222656" style="stop-color:rgb(61.570153%,76.864271%,97.648585%);stop-opacity:1;"/>
|
689
|
+
<stop offset="0.226562" style="stop-color:rgb(61.570153%,76.864271%,97.648585%);stop-opacity:1;"/>
|
690
|
+
<stop offset="0.230469" style="stop-color:rgb(61.177996%,76.864271%,97.256428%);stop-opacity:1;"/>
|
691
|
+
<stop offset="0.234375" style="stop-color:rgb(61.177996%,76.864271%,97.256428%);stop-opacity:1;"/>
|
692
|
+
<stop offset="0.238281" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
693
|
+
<stop offset="0.242188" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
694
|
+
<stop offset="0.25" style="stop-color:rgb(60.78584%,76.472114%,97.256428%);stop-opacity:1;"/>
|
695
|
+
<stop offset="0.253906" style="stop-color:rgb(60.393683%,76.472114%,96.864271%);stop-opacity:1;"/>
|
696
|
+
<stop offset="0.257812" style="stop-color:rgb(60.393683%,76.472114%,96.864271%);stop-opacity:1;"/>
|
697
|
+
<stop offset="0.261719" style="stop-color:rgb(60.001526%,76.472114%,96.864271%);stop-opacity:1;"/>
|
698
|
+
<stop offset="0.265625" style="stop-color:rgb(60.001526%,76.472114%,96.864271%);stop-opacity:1;"/>
|
699
|
+
<stop offset="0.269531" style="stop-color:rgb(59.609369%,76.079957%,96.472114%);stop-opacity:1;"/>
|
700
|
+
<stop offset="0.273438" style="stop-color:rgb(59.609369%,76.079957%,96.472114%);stop-opacity:1;"/>
|
701
|
+
<stop offset="0.277344" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
702
|
+
<stop offset="0.28125" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
703
|
+
<stop offset="0.285156" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
704
|
+
<stop offset="0.289062" style="stop-color:rgb(59.217212%,75.6878%,96.472114%);stop-opacity:1;"/>
|
705
|
+
<stop offset="0.292969" style="stop-color:rgb(58.825055%,75.295644%,96.472114%);stop-opacity:1;"/>
|
706
|
+
<stop offset="0.296875" style="stop-color:rgb(58.825055%,75.295644%,96.472114%);stop-opacity:1;"/>
|
707
|
+
<stop offset="0.300781" style="stop-color:rgb(58.432898%,75.295644%,96.472114%);stop-opacity:1;"/>
|
708
|
+
<stop offset="0.304688" style="stop-color:rgb(58.432898%,75.295644%,96.472114%);stop-opacity:1;"/>
|
709
|
+
<stop offset="0.308594" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
710
|
+
<stop offset="0.3125" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
711
|
+
<stop offset="0.320312" style="stop-color:rgb(58.040742%,74.903487%,96.079957%);stop-opacity:1;"/>
|
712
|
+
<stop offset="0.324219" style="stop-color:rgb(57.648585%,74.51133%,95.6878%);stop-opacity:1;"/>
|
713
|
+
<stop offset="0.328125" style="stop-color:rgb(57.648585%,74.51133%,95.6878%);stop-opacity:1;"/>
|
714
|
+
<stop offset="0.332031" style="stop-color:rgb(57.256428%,74.51133%,95.6878%);stop-opacity:1;"/>
|
715
|
+
<stop offset="0.335938" style="stop-color:rgb(57.256428%,74.51133%,95.6878%);stop-opacity:1;"/>
|
716
|
+
<stop offset="0.339844" style="stop-color:rgb(56.864271%,74.119173%,95.295644%);stop-opacity:1;"/>
|
717
|
+
<stop offset="0.34375" style="stop-color:rgb(56.864271%,74.119173%,95.295644%);stop-opacity:1;"/>
|
718
|
+
<stop offset="0.347656" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
719
|
+
<stop offset="0.351562" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
720
|
+
<stop offset="0.359375" style="stop-color:rgb(56.472114%,74.119173%,95.295644%);stop-opacity:1;"/>
|
721
|
+
<stop offset="0.363281" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
722
|
+
<stop offset="0.367188" style="stop-color:rgb(56.079957%,73.727016%,94.903487%);stop-opacity:1;"/>
|
723
|
+
<stop offset="0.371094" style="stop-color:rgb(55.6878%,73.727016%,94.903487%);stop-opacity:1;"/>
|
724
|
+
<stop offset="0.375" style="stop-color:rgb(55.6878%,73.727016%,94.903487%);stop-opacity:1;"/>
|
725
|
+
<stop offset="0.378906" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
726
|
+
<stop offset="0.382812" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
727
|
+
<stop offset="0.390625" style="stop-color:rgb(55.295644%,73.334859%,94.903487%);stop-opacity:1;"/>
|
728
|
+
<stop offset="0.394531" style="stop-color:rgb(54.903487%,72.942702%,94.51133%);stop-opacity:1;"/>
|
729
|
+
<stop offset="0.398438" style="stop-color:rgb(54.903487%,72.942702%,94.51133%);stop-opacity:1;"/>
|
730
|
+
<stop offset="0.402344" style="stop-color:rgb(54.51133%,72.942702%,94.51133%);stop-opacity:1;"/>
|
731
|
+
<stop offset="0.40625" style="stop-color:rgb(54.51133%,72.942702%,94.51133%);stop-opacity:1;"/>
|
732
|
+
<stop offset="0.410156" style="stop-color:rgb(54.51133%,72.550546%,94.51133%);stop-opacity:1;"/>
|
733
|
+
<stop offset="0.414062" style="stop-color:rgb(54.51133%,72.550546%,94.51133%);stop-opacity:1;"/>
|
734
|
+
<stop offset="0.417969" style="stop-color:rgb(54.119173%,72.550546%,94.119173%);stop-opacity:1;"/>
|
735
|
+
<stop offset="0.421875" style="stop-color:rgb(54.119173%,72.550546%,94.119173%);stop-opacity:1;"/>
|
736
|
+
<stop offset="0.425781" style="stop-color:rgb(54.119173%,72.158389%,94.119173%);stop-opacity:1;"/>
|
737
|
+
<stop offset="0.429688" style="stop-color:rgb(54.119173%,72.158389%,94.119173%);stop-opacity:1;"/>
|
738
|
+
<stop offset="0.433594" style="stop-color:rgb(53.727016%,72.158389%,93.727016%);stop-opacity:1;"/>
|
739
|
+
<stop offset="0.4375" style="stop-color:rgb(53.727016%,71.766232%,93.727016%);stop-opacity:1;"/>
|
740
|
+
<stop offset="0.441406" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
741
|
+
<stop offset="0.445312" style="stop-color:rgb(53.334859%,71.766232%,93.727016%);stop-opacity:1;"/>
|
742
|
+
<stop offset="0.449219" style="stop-color:rgb(52.942702%,71.374075%,93.727016%);stop-opacity:1;"/>
|
743
|
+
<stop offset="0.453125" style="stop-color:rgb(52.942702%,71.374075%,93.727016%);stop-opacity:1;"/>
|
744
|
+
<stop offset="0.457031" style="stop-color:rgb(52.942702%,71.374075%,93.334859%);stop-opacity:1;"/>
|
745
|
+
<stop offset="0.460938" style="stop-color:rgb(52.942702%,71.374075%,93.334859%);stop-opacity:1;"/>
|
746
|
+
<stop offset="0.464844" style="stop-color:rgb(52.550546%,71.374075%,93.334859%);stop-opacity:1;"/>
|
747
|
+
<stop offset="0.46875" style="stop-color:rgb(52.550546%,71.374075%,93.334859%);stop-opacity:1;"/>
|
748
|
+
<stop offset="0.472656" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
749
|
+
<stop offset="0.476562" style="stop-color:rgb(52.158389%,71.374075%,93.334859%);stop-opacity:1;"/>
|
750
|
+
<stop offset="0.480469" style="stop-color:rgb(51.766232%,70.981918%,93.334859%);stop-opacity:1;"/>
|
751
|
+
<stop offset="0.484375" style="stop-color:rgb(51.766232%,70.981918%,93.334859%);stop-opacity:1;"/>
|
752
|
+
<stop offset="0.488281" style="stop-color:rgb(51.374075%,70.981918%,92.942702%);stop-opacity:1;"/>
|
753
|
+
<stop offset="0.492188" style="stop-color:rgb(51.374075%,70.981918%,92.942702%);stop-opacity:1;"/>
|
754
|
+
<stop offset="0.496094" style="stop-color:rgb(51.374075%,70.589761%,92.942702%);stop-opacity:1;"/>
|
755
|
+
<stop offset="0.5" style="stop-color:rgb(51.374075%,70.589761%,92.942702%);stop-opacity:1;"/>
|
756
|
+
<stop offset="0.503906" style="stop-color:rgb(50.981918%,70.589761%,92.942702%);stop-opacity:1;"/>
|
757
|
+
<stop offset="0.507812" style="stop-color:rgb(50.981918%,70.589761%,92.942702%);stop-opacity:1;"/>
|
758
|
+
<stop offset="0.511719" style="stop-color:rgb(50.589761%,70.197604%,92.550546%);stop-opacity:1;"/>
|
759
|
+
<stop offset="0.515625" style="stop-color:rgb(50.589761%,70.197604%,92.550546%);stop-opacity:1;"/>
|
760
|
+
<stop offset="0.519531" style="stop-color:rgb(50.197604%,69.805447%,92.550546%);stop-opacity:1;"/>
|
761
|
+
<stop offset="0.523437" style="stop-color:rgb(50.197604%,69.805447%,92.550546%);stop-opacity:1;"/>
|
762
|
+
<stop offset="0.527344" style="stop-color:rgb(50.197604%,69.805447%,92.158389%);stop-opacity:1;"/>
|
763
|
+
<stop offset="0.53125" style="stop-color:rgb(50.197604%,69.805447%,92.158389%);stop-opacity:1;"/>
|
764
|
+
<stop offset="0.535156" style="stop-color:rgb(49.803922%,69.413291%,92.158389%);stop-opacity:1;"/>
|
765
|
+
<stop offset="0.539062" style="stop-color:rgb(49.803922%,69.413291%,92.158389%);stop-opacity:1;"/>
|
766
|
+
<stop offset="0.542969" style="stop-color:rgb(49.411765%,69.413291%,91.766232%);stop-opacity:1;"/>
|
767
|
+
<stop offset="0.546875" style="stop-color:rgb(49.411765%,69.413291%,91.766232%);stop-opacity:1;"/>
|
768
|
+
<stop offset="0.550781" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
769
|
+
<stop offset="0.554687" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
770
|
+
<stop offset="0.5625" style="stop-color:rgb(49.019608%,69.021134%,91.766232%);stop-opacity:1;"/>
|
771
|
+
<stop offset="0.566406" style="stop-color:rgb(48.627451%,68.628977%,91.766232%);stop-opacity:1;"/>
|
772
|
+
<stop offset="0.570312" style="stop-color:rgb(48.627451%,68.628977%,91.766232%);stop-opacity:1;"/>
|
773
|
+
<stop offset="0.574219" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
774
|
+
<stop offset="0.578125" style="stop-color:rgb(48.235294%,68.628977%,91.766232%);stop-opacity:1;"/>
|
775
|
+
<stop offset="0.582031" style="stop-color:rgb(47.843137%,68.628977%,91.374075%);stop-opacity:1;"/>
|
776
|
+
<stop offset="0.585937" style="stop-color:rgb(47.843137%,68.628977%,91.374075%);stop-opacity:1;"/>
|
777
|
+
<stop offset="0.589844" style="stop-color:rgb(47.45098%,68.628977%,91.374075%);stop-opacity:1;"/>
|
778
|
+
<stop offset="0.59375" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
779
|
+
<stop offset="0.601562" style="stop-color:rgb(47.45098%,68.23682%,91.374075%);stop-opacity:1;"/>
|
780
|
+
<stop offset="0.605469" style="stop-color:rgb(47.058824%,67.844663%,90.981918%);stop-opacity:1;"/>
|
781
|
+
<stop offset="0.609375" style="stop-color:rgb(47.058824%,67.844663%,90.981918%);stop-opacity:1;"/>
|
782
|
+
<stop offset="0.613281" style="stop-color:rgb(46.666667%,67.844663%,90.981918%);stop-opacity:1;"/>
|
783
|
+
<stop offset="0.617187" style="stop-color:rgb(46.666667%,67.844663%,90.981918%);stop-opacity:1;"/>
|
784
|
+
<stop offset="0.621094" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
785
|
+
<stop offset="0.625" style="stop-color:rgb(46.27451%,67.452506%,90.589761%);stop-opacity:1;"/>
|
786
|
+
<stop offset="0.628906" style="stop-color:rgb(45.882353%,67.452506%,90.589761%);stop-opacity:1;"/>
|
787
|
+
<stop offset="0.632812" style="stop-color:rgb(45.882353%,67.452506%,90.589761%);stop-opacity:1;"/>
|
788
|
+
<stop offset="0.636719" style="stop-color:rgb(45.882353%,67.060349%,90.197604%);stop-opacity:1;"/>
|
789
|
+
<stop offset="0.640625" style="stop-color:rgb(45.882353%,67.060349%,90.197604%);stop-opacity:1;"/>
|
790
|
+
<stop offset="0.644531" style="stop-color:rgb(45.490196%,67.060349%,90.197604%);stop-opacity:1;"/>
|
791
|
+
<stop offset="0.648437" style="stop-color:rgb(45.490196%,67.060349%,90.197604%);stop-opacity:1;"/>
|
792
|
+
<stop offset="0.652344" style="stop-color:rgb(45.098039%,66.668193%,90.197604%);stop-opacity:1;"/>
|
793
|
+
<stop offset="0.65625" style="stop-color:rgb(45.098039%,66.668193%,90.197604%);stop-opacity:1;"/>
|
794
|
+
<stop offset="0.660156" style="stop-color:rgb(44.705882%,66.668193%,89.805447%);stop-opacity:1;"/>
|
795
|
+
<stop offset="0.664062" style="stop-color:rgb(44.705882%,66.668193%,89.805447%);stop-opacity:1;"/>
|
796
|
+
<stop offset="0.667969" style="stop-color:rgb(44.705882%,66.276036%,89.805447%);stop-opacity:1;"/>
|
797
|
+
<stop offset="0.671875" style="stop-color:rgb(44.705882%,66.276036%,89.805447%);stop-opacity:1;"/>
|
798
|
+
<stop offset="0.675781" style="stop-color:rgb(44.313725%,65.883879%,89.805447%);stop-opacity:1;"/>
|
799
|
+
<stop offset="0.679687" style="stop-color:rgb(44.313725%,65.883879%,89.805447%);stop-opacity:1;"/>
|
800
|
+
<stop offset="0.683594" style="stop-color:rgb(43.921569%,65.883879%,89.805447%);stop-opacity:1;"/>
|
801
|
+
<stop offset="0.6875" style="stop-color:rgb(43.921569%,65.883879%,89.805447%);stop-opacity:1;"/>
|
802
|
+
<stop offset="0.691406" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
803
|
+
<stop offset="0.695312" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
804
|
+
<stop offset="0.703125" style="stop-color:rgb(43.529412%,65.491722%,89.413291%);stop-opacity:1;"/>
|
805
|
+
<stop offset="0.707031" style="stop-color:rgb(43.137255%,65.491722%,89.413291%);stop-opacity:1;"/>
|
806
|
+
<stop offset="0.710937" style="stop-color:rgb(43.137255%,65.491722%,89.413291%);stop-opacity:1;"/>
|
807
|
+
<stop offset="0.714844" style="stop-color:rgb(42.352941%,65.491722%,89.021134%);stop-opacity:1;"/>
|
808
|
+
<stop offset="0.71875" style="stop-color:rgb(42.352941%,65.491722%,89.021134%);stop-opacity:1;"/>
|
809
|
+
<stop offset="0.722656" style="stop-color:rgb(41.960784%,65.099565%,89.021134%);stop-opacity:1;"/>
|
810
|
+
<stop offset="0.726562" style="stop-color:rgb(41.960784%,65.099565%,89.021134%);stop-opacity:1;"/>
|
811
|
+
<stop offset="0.730469" style="stop-color:rgb(41.568627%,65.099565%,88.628977%);stop-opacity:1;"/>
|
812
|
+
<stop offset="0.734375" style="stop-color:rgb(41.568627%,65.099565%,88.628977%);stop-opacity:1;"/>
|
813
|
+
<stop offset="0.738281" style="stop-color:rgb(41.568627%,64.707408%,88.628977%);stop-opacity:1;"/>
|
814
|
+
<stop offset="0.742187" style="stop-color:rgb(41.568627%,64.707408%,88.628977%);stop-opacity:1;"/>
|
815
|
+
<stop offset="0.746094" style="stop-color:rgb(41.176471%,64.707408%,88.628977%);stop-opacity:1;"/>
|
816
|
+
<stop offset="0.75" style="stop-color:rgb(41.176471%,64.707408%,88.23682%);stop-opacity:1;"/>
|
817
|
+
<stop offset="0.753906" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
818
|
+
<stop offset="0.757812" style="stop-color:rgb(40.784314%,64.315251%,88.23682%);stop-opacity:1;"/>
|
819
|
+
<stop offset="0.761719" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
820
|
+
<stop offset="0.765625" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
821
|
+
<stop offset="0.769531" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
822
|
+
<stop offset="0.773437" style="stop-color:rgb(40.392157%,63.923095%,88.23682%);stop-opacity:1;"/>
|
823
|
+
<stop offset="0.777344" style="stop-color:rgb(40%,63.530938%,88.23682%);stop-opacity:1;"/>
|
824
|
+
<stop offset="0.78125" style="stop-color:rgb(40%,63.530938%,88.23682%);stop-opacity:1;"/>
|
825
|
+
<stop offset="0.785156" style="stop-color:rgb(39.607843%,63.530938%,87.844663%);stop-opacity:1;"/>
|
826
|
+
<stop offset="0.789062" style="stop-color:rgb(39.607843%,63.530938%,87.844663%);stop-opacity:1;"/>
|
827
|
+
<stop offset="0.792969" style="stop-color:rgb(39.215686%,63.138781%,87.844663%);stop-opacity:1;"/>
|
828
|
+
<stop offset="0.796875" style="stop-color:rgb(39.215686%,63.138781%,87.844663%);stop-opacity:1;"/>
|
829
|
+
<stop offset="0.800781" style="stop-color:rgb(38.823529%,63.138781%,87.844663%);stop-opacity:1;"/>
|
830
|
+
<stop offset="0.804687" style="stop-color:rgb(38.823529%,63.138781%,87.844663%);stop-opacity:1;"/>
|
831
|
+
<stop offset="0.808594" style="stop-color:rgb(38.823529%,62.746624%,87.452506%);stop-opacity:1;"/>
|
832
|
+
<stop offset="0.8125" style="stop-color:rgb(38.823529%,62.746624%,87.452506%);stop-opacity:1;"/>
|
833
|
+
<stop offset="0.816406" style="stop-color:rgb(38.431373%,62.746624%,87.452506%);stop-opacity:1;"/>
|
834
|
+
<stop offset="0.820312" style="stop-color:rgb(38.431373%,62.746624%,87.452506%);stop-opacity:1;"/>
|
835
|
+
<stop offset="0.824219" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
836
|
+
<stop offset="0.828125" style="stop-color:rgb(38.039216%,62.354467%,87.060349%);stop-opacity:1;"/>
|
837
|
+
<stop offset="0.832031" style="stop-color:rgb(37.647059%,62.354467%,87.060349%);stop-opacity:1;"/>
|
838
|
+
<stop offset="0.835937" style="stop-color:rgb(37.647059%,62.354467%,87.060349%);stop-opacity:1;"/>
|
839
|
+
<stop offset="0.839844" style="stop-color:rgb(37.647059%,61.96231%,86.668193%);stop-opacity:1;"/>
|
840
|
+
<stop offset="0.84375" style="stop-color:rgb(37.647059%,61.96231%,86.668193%);stop-opacity:1;"/>
|
841
|
+
<stop offset="0.847656" style="stop-color:rgb(37.254902%,61.96231%,86.668193%);stop-opacity:1;"/>
|
842
|
+
<stop offset="0.851562" style="stop-color:rgb(37.254902%,61.96231%,86.668193%);stop-opacity:1;"/>
|
843
|
+
<stop offset="0.855469" style="stop-color:rgb(36.862745%,61.96231%,86.668193%);stop-opacity:1;"/>
|
844
|
+
<stop offset="0.859375" style="stop-color:rgb(36.862745%,61.96231%,86.668193%);stop-opacity:1;"/>
|
845
|
+
<stop offset="0.863281" style="stop-color:rgb(36.078431%,61.570153%,86.276036%);stop-opacity:1;"/>
|
846
|
+
<stop offset="0.867187" style="stop-color:rgb(36.078431%,61.570153%,86.276036%);stop-opacity:1;"/>
|
847
|
+
<stop offset="0.871094" style="stop-color:rgb(35.686275%,61.570153%,86.276036%);stop-opacity:1;"/>
|
848
|
+
<stop offset="0.875" style="stop-color:rgb(35.686275%,61.570153%,86.276036%);stop-opacity:1;"/>
|
849
|
+
<stop offset="0.878906" style="stop-color:rgb(35.686275%,61.177996%,86.276036%);stop-opacity:1;"/>
|
850
|
+
<stop offset="0.882812" style="stop-color:rgb(35.686275%,61.177996%,86.276036%);stop-opacity:1;"/>
|
851
|
+
<stop offset="0.886719" style="stop-color:rgb(35.294118%,61.177996%,86.276036%);stop-opacity:1;"/>
|
852
|
+
<stop offset="0.890625" style="stop-color:rgb(35.294118%,61.177996%,86.276036%);stop-opacity:1;"/>
|
853
|
+
<stop offset="0.894531" style="stop-color:rgb(34.901961%,60.78584%,85.883879%);stop-opacity:1;"/>
|
854
|
+
<stop offset="0.898437" style="stop-color:rgb(34.901961%,60.78584%,85.883879%);stop-opacity:1;"/>
|
855
|
+
<stop offset="0.902344" style="stop-color:rgb(34.509804%,60.78584%,85.883879%);stop-opacity:1;"/>
|
856
|
+
<stop offset="0.90625" style="stop-color:rgb(34.509804%,60.78584%,85.883879%);stop-opacity:1;"/>
|
857
|
+
<stop offset="0.910156" style="stop-color:rgb(34.509804%,60.393683%,85.883879%);stop-opacity:1;"/>
|
858
|
+
<stop offset="0.914062" style="stop-color:rgb(34.509804%,60.393683%,85.883879%);stop-opacity:1;"/>
|
859
|
+
<stop offset="0.917969" style="stop-color:rgb(34.117647%,60.393683%,85.491722%);stop-opacity:1;"/>
|
860
|
+
<stop offset="0.921875" style="stop-color:rgb(34.117647%,60.001526%,85.491722%);stop-opacity:1;"/>
|
861
|
+
<stop offset="0.925781" style="stop-color:rgb(33.72549%,60.001526%,85.491722%);stop-opacity:1;"/>
|
862
|
+
<stop offset="0.929688" style="stop-color:rgb(33.72549%,60.001526%,85.491722%);stop-opacity:1;"/>
|
863
|
+
<stop offset="0.933594" style="stop-color:rgb(33.333333%,59.609369%,85.099565%);stop-opacity:1;"/>
|
864
|
+
<stop offset="0.9375" style="stop-color:rgb(33.333333%,59.609369%,85.099565%);stop-opacity:1;"/>
|
865
|
+
<stop offset="0.941406" style="stop-color:rgb(32.941176%,59.609369%,85.099565%);stop-opacity:1;"/>
|
866
|
+
<stop offset="0.945312" style="stop-color:rgb(32.941176%,59.609369%,85.099565%);stop-opacity:1;"/>
|
867
|
+
<stop offset="0.949219" style="stop-color:rgb(32.941176%,59.217212%,85.099565%);stop-opacity:1;"/>
|
868
|
+
<stop offset="0.953125" style="stop-color:rgb(32.941176%,59.217212%,85.099565%);stop-opacity:1;"/>
|
869
|
+
<stop offset="0.957031" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
870
|
+
<stop offset="0.960938" style="stop-color:rgb(32.156863%,59.217212%,84.707408%);stop-opacity:1;"/>
|
871
|
+
<stop offset="0.964844" style="stop-color:rgb(31.764706%,58.825055%,84.707408%);stop-opacity:1;"/>
|
872
|
+
<stop offset="0.96875" style="stop-color:rgb(31.764706%,58.825055%,84.707408%);stop-opacity:1;"/>
|
873
|
+
<stop offset="0.972656" style="stop-color:rgb(31.372549%,58.825055%,84.315251%);stop-opacity:1;"/>
|
874
|
+
<stop offset="0.976562" style="stop-color:rgb(31.372549%,58.825055%,84.315251%);stop-opacity:1;"/>
|
875
|
+
<stop offset="0.980469" style="stop-color:rgb(31.372549%,58.432898%,84.315251%);stop-opacity:1;"/>
|
876
|
+
<stop offset="0.984375" style="stop-color:rgb(31.372549%,58.432898%,84.315251%);stop-opacity:1;"/>
|
877
|
+
<stop offset="0.988281" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
878
|
+
<stop offset="0.992188" style="stop-color:rgb(30.980392%,58.432898%,84.315251%);stop-opacity:1;"/>
|
879
|
+
<stop offset="0.996094" style="stop-color:rgb(30.588235%,58.040742%,84.315251%);stop-opacity:1;"/>
|
880
|
+
<stop offset="1" style="stop-color:rgb(30.588235%,58.040742%,84.315251%);stop-opacity:1;"/>
|
881
|
+
</linearGradient>
|
882
|
+
<clipPath id="clip25">
|
883
|
+
<path d="M 0 234 L 360 234 L 360 0 L 0 0 L 0 234 Z M 0 234 "/>
|
884
|
+
</clipPath>
|
885
|
+
</defs>
|
886
|
+
<g id="surface0">
|
887
|
+
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
888
|
+
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 0 L 360 0 L 360 234 L 0 234 L 0 0 Z M 0 0 "/>
|
889
|
+
</g>
|
890
|
+
<g clip-path="url(#clip2)" clip-rule="evenodd">
|
891
|
+
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
892
|
+
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
893
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern1);stroke:none;" mask="url(#mask0)"/>
|
894
|
+
</g>
|
895
|
+
</g>
|
896
|
+
</g>
|
897
|
+
<g clip-path="url(#clip5)" clip-rule="evenodd">
|
898
|
+
<g clip-path="url(#clip6)" clip-rule="nonzero">
|
899
|
+
<g clip-path="url(#clip7)" clip-rule="nonzero">
|
900
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern3);stroke:none;" mask="url(#mask1)"/>
|
901
|
+
</g>
|
902
|
+
</g>
|
903
|
+
</g>
|
904
|
+
<g clip-path="url(#clip8)" clip-rule="evenodd">
|
905
|
+
<g clip-path="url(#clip9)" clip-rule="nonzero">
|
906
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 20.023438 48.128906 L 20.023438 103.277344 L 131.785156 103.277344 L 131.785156 48.128906 L 20.023438 48.128906 Z M 20.023438 48.128906 "/>
|
907
|
+
</g>
|
908
|
+
</g>
|
909
|
+
<g clip-path="url(#clip10)" clip-rule="nonzero">
|
910
|
+
<path style="fill:none;stroke-width:9525;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(35.686275%,57.256428%,78.040742%);stroke-opacity:1;stroke-miterlimit:10;" d="M -23.272755 -11.350628 L 1069158.214603 -11.350628 L 1419350.870471 350181.30524 L 1069158.214603 700373.961108 L -23.272755 700373.961108 L -23.272755 -11.350628 Z M -23.272755 -11.350628 " transform="matrix(0.0000787401,0,0,0.0000787401,20.02527,48.1298)"/>
|
911
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
912
|
+
<use xlink:href="#glyph0-1" x="55.17742" y="83.7043"/>
|
913
|
+
<use xlink:href="#glyph0-2" x="64.26942" y="83.7043"/>
|
914
|
+
<use xlink:href="#glyph0-3" x="74.22142" y="83.7043"/>
|
915
|
+
</g>
|
916
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
917
|
+
<use xlink:href="#glyph1-1" x="83.27312" y="83.7043"/>
|
918
|
+
</g>
|
919
|
+
</g>
|
920
|
+
<g clip-path="url(#clip11)" clip-rule="evenodd">
|
921
|
+
<g clip-path="url(#clip12)" clip-rule="nonzero">
|
922
|
+
<g clip-path="url(#clip13)" clip-rule="nonzero">
|
923
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern5);stroke:none;" mask="url(#mask2)"/>
|
924
|
+
</g>
|
925
|
+
</g>
|
926
|
+
</g>
|
927
|
+
<g clip-path="url(#clip14)" clip-rule="evenodd">
|
928
|
+
<g clip-path="url(#clip15)" clip-rule="nonzero">
|
929
|
+
<g clip-path="url(#clip16)" clip-rule="nonzero">
|
930
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern7);stroke:none;" mask="url(#mask3)"/>
|
931
|
+
</g>
|
932
|
+
</g>
|
933
|
+
</g>
|
934
|
+
<g clip-path="url(#clip17)" clip-rule="evenodd">
|
935
|
+
<g clip-path="url(#clip18)" clip-rule="nonzero">
|
936
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear1);" d="M 131.785156 48.128906 L 131.785156 103.277344 L 342.4375 103.277344 L 342.4375 48.128906 L 131.785156 48.128906 Z M 131.785156 48.128906 "/>
|
937
|
+
</g>
|
938
|
+
</g>
|
939
|
+
<g clip-path="url(#clip19)" clip-rule="nonzero">
|
940
|
+
<path style="fill:none;stroke-width:9525;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(35.686275%,57.256428%,78.040742%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.414378 -11.350628 L 2675249.16453 -11.350628 C 2673711.273564 119844.925981 2675298.773916 239701.202589 2673760.88295 359557.479197 C 2675298.773916 473162.973167 2673711.273564 586768.467138 2675249.16453 700373.961108 L 13.414378 700373.961108 L 350206.070246 350181.30524 L 13.414378 -11.350628 Z M 13.414378 -11.350628 " transform="matrix(0.0000787401,0,0,0.0000787401,131.7841,48.1298)"/>
|
941
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
942
|
+
<use xlink:href="#glyph0-4" x="215.46553" y="83.7043"/>
|
943
|
+
</g>
|
944
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
945
|
+
<use xlink:href="#glyph0-5" x="224.49953" y="83.7043"/>
|
946
|
+
<use xlink:href="#glyph0-6" x="234.07953" y="83.7043"/>
|
947
|
+
</g>
|
948
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
949
|
+
<use xlink:href="#glyph0-7" x="238.66953" y="83.7043"/>
|
950
|
+
</g>
|
951
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
952
|
+
<use xlink:href="#glyph0-2" x="249.17753" y="83.7043"/>
|
953
|
+
</g>
|
954
|
+
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
955
|
+
<use xlink:href="#glyph0-8" x="259.12953" y="83.7043"/>
|
956
|
+
</g>
|
957
|
+
</g>
|
958
|
+
<g clip-path="url(#clip20)" clip-rule="evenodd">
|
959
|
+
<g clip-path="url(#clip21)" clip-rule="nonzero">
|
960
|
+
<g clip-path="url(#clip22)" clip-rule="nonzero">
|
961
|
+
<rect x="0" y="0" width="360" height="234" style="fill:url(#pattern9);stroke:none;" mask="url(#mask4)"/>
|
962
|
+
</g>
|
963
|
+
</g>
|
964
|
+
</g>
|
965
|
+
<g clip-path="url(#clip23)" clip-rule="evenodd">
|
966
|
+
<g clip-path="url(#clip24)" clip-rule="nonzero">
|
967
|
+
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear2);" d="M 96.050781 23.871094 L 96.050781 46.203125 L 151.507812 46.203125 L 151.507812 23.871094 L 96.050781 23.871094 Z M 96.050781 23.871094 "/>
|
968
|
+
</g>
|
969
|
+
</g>
|
970
|
+
<g clip-path="url(#clip25)" clip-rule="nonzero">
|
971
|
+
<path style="fill:none;stroke-width:9525;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(35.686275%,57.256428%,78.040742%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99608.042988 338766.860206 C 127190.861611 182050.80979 293035.039054 74795.31723 470090.937735 99203.135148 C 575858.148716 113738.68525 666692.934506 173567.604782 712879.272884 258994.967497 L 803912.496219 251107.075121 L 702014.817347 358412.177068 L 530961.654373 274820.361635 L 619762.455337 267081.297417 C 544157.751053 173865.261098 393543.655117 150151.974584 283311.599395 214098.473155 C 228790.884167 245699.652045 191980.719745 294812.944198 181364.311138 349978.581445 L 99608.042988 338766.860206 Z M 99608.042988 338766.860206 " transform="matrix(0.0000787401,0,0,0.0000787401,88.20763,17.9817)"/>
|
972
|
+
</g>
|
973
|
+
</g>
|
974
|
+
</svg>
|