Pinterest "Pin It" Button - Version 2.0.6

Version Description

  • More fixes to special characters rendering HTML codes incorrectly in pin descriptions.
Download this release

Release Info

Developer pderksen
Plugin Icon 128x128 Pinterest "Pin It" Button
Version 2.0.6
Comparing to
See all releases

Code changes from version 2.0.5 to 2.0.6

assets/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
class-pinterest-pin-it-button.php CHANGED
@@ -28,7 +28,7 @@ class Pinterest_Pin_It_Button {
28
  * and README.txt changelog
29
  **************************************/
30
 
31
- protected $version = '2.0.5';
32
 
33
  /**
34
  * Unique identifier for your plugin.
@@ -242,14 +242,8 @@ class Pinterest_Pin_It_Button {
242
  public function enqueue_admin_styles() {
243
 
244
  if ( $this->viewing_this_plugin() ) {
245
- // Plugin admin custom Bootstrap CSS. Tack on plugin version.
246
- wp_enqueue_style( $this->plugin_slug .'-bootstrap', plugins_url( 'css/bootstrap-custom.css', __FILE__ ), array(), $this->version );
247
-
248
- // Plugin admin custom Flat UI CSS. Tack on plugin version.
249
- wp_enqueue_style( $this->plugin_slug .'-flat-ui', plugins_url( 'css/flat-ui-custom.css', __FILE__ ), array( $this->plugin_slug .'-bootstrap' ), $this->version );
250
-
251
  // Plugin admin CSS. Tack on plugin version.
252
- wp_enqueue_style( $this->plugin_slug .'-admin-styles', plugins_url( 'css/admin.css', __FILE__ ), array( $this->plugin_slug .'-flat-ui' ), $this->version );
253
  }
254
  }
255
 
28
  * and README.txt changelog
29
  **************************************/
30
 
31
+ protected $version = '2.0.6';
32
 
33
  /**
34
  * Unique identifier for your plugin.
242
  public function enqueue_admin_styles() {
243
 
244
  if ( $this->viewing_this_plugin() ) {
 
 
 
 
 
 
245
  // Plugin admin CSS. Tack on plugin version.
246
+ wp_enqueue_style( $this->plugin_slug .'-admin-styles', plugins_url( 'css/admin.css', __FILE__ ), array(), $this->version );
247
  }
248
  }
249
 
css/admin.css CHANGED
@@ -29,85 +29,24 @@ a.pib-external-link {
29
  width: 290px;
30
  }
31
 
32
- #pib-settings-sidebar {
33
- font-family: "Lato", sans-serif; /* Base font from Flat UI body tag. */
34
- }
35
-
36
- /* Sidebar container. Taken from Flat UI .tile & popover classes. */
37
- #pib-settings-sidebar .sidebar-container {
38
- background-color: #fff;
39
- border: 1px solid #ccc;
40
- border-radius: 6px;
41
- font-size: 15px;
42
- margin-bottom: 18px;
43
- padding: 0;
44
- position: relative;
45
- text-align: left;
46
- }
47
-
48
- #pib-settings-sidebar .sidebar-title-large,
49
- #pib-settings-sidebar .sidebar-title-medium {
50
- background-color: #34495e;
51
- border-bottom: 1px solid #ebebeb;
52
- color: #ffffff;
53
- font-size: 12px;
54
- font-weight: 700;
55
- line-height: 18px;
56
- margin: 0;
57
- padding: 10px 20px 11px;
58
- text-align: center;
59
- -webkit-border-radius: 5px 5px 0 0;
60
- -moz-border-radius: 5px 5px 0 0;
61
- border-radius: 5px 5px 0 0;
62
- }
63
-
64
- #pib-settings-sidebar .sidebar-title-large {
65
- font-size: 20px;
66
- }
67
-
68
- #pib-settings-sidebar .sidebar-title-medium {
69
- font-size: 16px;
70
- }
71
-
72
- #pib-settings-sidebar .sidebar-title-small {
73
- font-size: 14px;
74
- font-weight: 700;
75
- line-height: 18px;
76
- margin: 0;
77
- padding: 10px 14px 5px;
78
- text-align: center;
79
- }
80
-
81
- #pib-settings-sidebar .sidebar-content {
82
- padding: 14px;
83
- }
84
-
85
- #pib-settings-sidebar .sidebar-content ul {
86
- margin: 0;
87
  }
88
 
89
- #pib-settings-sidebar .sidebar-content ul li {
90
- margin-bottom: 8px;
91
- }
92
-
93
- #pib-settings-sidebar .sidebar-content ul li i {
94
- margin-right: 5px;
95
- }
96
-
97
- #pib-settings-sidebar .sidebar-content p {
98
- font-size: 14px;
99
- line-height: 1.4em;
100
- margin: 0 0 10px;
101
  }
102
 
103
- #pib-settings-sidebar .sidebar-content p.last-blurb {
104
- font-size: 17px;
105
- margin: 10px 0 25px 0;
106
- text-align: center;
107
  }
108
 
109
- #pib-settings-sidebar .sidebar-content.pib-rss-news ul {
110
- font-size: 14px;
 
 
111
  }
112
 
113
  /* Admin pages styles */
29
  width: 290px;
30
  }
31
 
32
+ #pib-settings-sidebar .centered {
33
+ text-align: center;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  }
35
 
36
+ #pib-settings-sidebar .button-large {
37
+ font-size: 17px;
38
+ line-height: 30px;
39
+ height: 32px;
 
 
 
 
 
 
 
 
40
  }
41
 
42
+ #pib-settings-sidebar .last-blurb {
43
+ font-size: 17px;
 
 
44
  }
45
 
46
+ /* postbox overrides */
47
+ #pib-settings-sidebar .sidebar-container .postbox .inside,
48
+ #pib-settings-sidebar .sidebar-container .postbox .inside ul {
49
+ margin-bottom: 0;
50
  }
51
 
52
  /* Admin pages styles */
css/bootstrap-custom.css DELETED
@@ -1,435 +0,0 @@
1
- /*** Bootstrap buttons only ***/
2
-
3
- /* Some elements of this plugin are derived from the Bootstrap framework at
4
- * http://twitter.github.io/bootstrap/
5
- */
6
-
7
- /*!
8
- * Bootstrap v2.3.2
9
- *
10
- * Copyright 2012 Twitter, Inc
11
- * Licensed under the Apache License v2.0
12
- * http://www.apache.org/licenses/LICENSE-2.0
13
- *
14
- * Designed and built with all the love in the world @twitter by @mdo and @fat.
15
- */
16
- .clearfix {
17
- *zoom: 1;
18
- }
19
- .clearfix:before,
20
- .clearfix:after {
21
- display: table;
22
- content: "";
23
- line-height: 0;
24
- }
25
- .clearfix:after {
26
- clear: both;
27
- }
28
- .hide-text {
29
- font: 0/0 a;
30
- color: transparent;
31
- text-shadow: none;
32
- background-color: transparent;
33
- border: 0;
34
- }
35
- .input-block-level {
36
- display: block;
37
- width: 100%;
38
- min-height: 30px;
39
- -webkit-box-sizing: border-box;
40
- -moz-box-sizing: border-box;
41
- box-sizing: border-box;
42
- }
43
- .btn {
44
- display: inline-block;
45
- *display: inline;
46
- /* IE7 inline-block hack */
47
-
48
- *zoom: 1;
49
- padding: 4px 12px;
50
- margin-bottom: 0;
51
- font-size: 14px;
52
- line-height: 20px;
53
- text-align: center;
54
- vertical-align: middle;
55
- cursor: pointer;
56
- color: #333333;
57
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
58
- background-color: #f5f5f5;
59
- background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
60
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
61
- background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
62
- background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
63
- background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
64
- background-repeat: repeat-x;
65
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
66
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
67
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
68
- *background-color: #e6e6e6;
69
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
70
-
71
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
72
- border: 1px solid #cccccc;
73
- *border: 0;
74
- border-bottom-color: #b3b3b3;
75
- -webkit-border-radius: 4px;
76
- -moz-border-radius: 4px;
77
- border-radius: 4px;
78
- *margin-left: .3em;
79
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
80
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
81
- box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
82
- }
83
- .btn:hover,
84
- .btn:focus,
85
- .btn:active,
86
- .btn.active,
87
- .btn.disabled,
88
- .btn[disabled] {
89
- color: #333333;
90
- background-color: #e6e6e6;
91
- *background-color: #d9d9d9;
92
- }
93
- .btn:active,
94
- .btn.active {
95
- background-color: #cccccc \9;
96
- }
97
- .btn:first-child {
98
- *margin-left: 0;
99
- }
100
- .btn:hover,
101
- .btn:focus {
102
- color: #333333;
103
- text-decoration: none;
104
- background-position: 0 -15px;
105
- -webkit-transition: background-position 0.1s linear;
106
- -moz-transition: background-position 0.1s linear;
107
- -o-transition: background-position 0.1s linear;
108
- transition: background-position 0.1s linear;
109
- }
110
- .btn:focus {
111
- outline: thin dotted #333;
112
- outline: 5px auto -webkit-focus-ring-color;
113
- outline-offset: -2px;
114
- }
115
- .btn.active,
116
- .btn:active {
117
- background-image: none;
118
- outline: 0;
119
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
120
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
121
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
122
- }
123
- .btn.disabled,
124
- .btn[disabled] {
125
- cursor: default;
126
- background-image: none;
127
- opacity: 0.65;
128
- filter: alpha(opacity=65);
129
- -webkit-box-shadow: none;
130
- -moz-box-shadow: none;
131
- box-shadow: none;
132
- }
133
- .btn-large {
134
- padding: 11px 19px;
135
- font-size: 17.5px;
136
- -webkit-border-radius: 6px;
137
- -moz-border-radius: 6px;
138
- border-radius: 6px;
139
- }
140
- .btn-large [class^="icon-"],
141
- .btn-large [class*=" icon-"] {
142
- margin-top: 4px;
143
- }
144
- .btn-small {
145
- padding: 2px 10px;
146
- font-size: 11.9px;
147
- -webkit-border-radius: 3px;
148
- -moz-border-radius: 3px;
149
- border-radius: 3px;
150
- }
151
- .btn-small [class^="icon-"],
152
- .btn-small [class*=" icon-"] {
153
- margin-top: 0;
154
- }
155
- .btn-mini [class^="icon-"],
156
- .btn-mini [class*=" icon-"] {
157
- margin-top: -1px;
158
- }
159
- .btn-mini {
160
- padding: 0 6px;
161
- font-size: 10.5px;
162
- -webkit-border-radius: 3px;
163
- -moz-border-radius: 3px;
164
- border-radius: 3px;
165
- }
166
- .btn-block {
167
- display: block;
168
- width: 100%;
169
- padding-left: 0;
170
- padding-right: 0;
171
- -webkit-box-sizing: border-box;
172
- -moz-box-sizing: border-box;
173
- box-sizing: border-box;
174
- }
175
- .btn-block + .btn-block {
176
- margin-top: 5px;
177
- }
178
- input[type="submit"].btn-block,
179
- input[type="reset"].btn-block,
180
- input[type="button"].btn-block {
181
- width: 100%;
182
- }
183
- .btn-primary.active,
184
- .btn-warning.active,
185
- .btn-danger.active,
186
- .btn-success.active,
187
- .btn-info.active,
188
- .btn-inverse.active {
189
- color: rgba(255, 255, 255, 0.75);
190
- }
191
- .btn-primary {
192
- color: #ffffff;
193
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
194
- background-color: #006dcc;
195
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
196
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
197
- background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
198
- background-image: -o-linear-gradient(top, #0088cc, #0044cc);
199
- background-image: linear-gradient(to bottom, #0088cc, #0044cc);
200
- background-repeat: repeat-x;
201
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
202
- border-color: #0044cc #0044cc #002a80;
203
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
204
- *background-color: #0044cc;
205
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
206
-
207
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
208
- }
209
- .btn-primary:hover,
210
- .btn-primary:focus,
211
- .btn-primary:active,
212
- .btn-primary.active,
213
- .btn-primary.disabled,
214
- .btn-primary[disabled] {
215
- color: #ffffff;
216
- background-color: #0044cc;
217
- *background-color: #003bb3;
218
- }
219
- .btn-primary:active,
220
- .btn-primary.active {
221
- background-color: #003399 \9;
222
- }
223
- .btn-warning {
224
- color: #ffffff;
225
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
226
- background-color: #faa732;
227
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
228
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
229
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
230
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
231
- background-image: linear-gradient(to bottom, #fbb450, #f89406);
232
- background-repeat: repeat-x;
233
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
234
- border-color: #f89406 #f89406 #ad6704;
235
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
236
- *background-color: #f89406;
237
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
238
-
239
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
240
- }
241
- .btn-warning:hover,
242
- .btn-warning:focus,
243
- .btn-warning:active,
244
- .btn-warning.active,
245
- .btn-warning.disabled,
246
- .btn-warning[disabled] {
247
- color: #ffffff;
248
- background-color: #f89406;
249
- *background-color: #df8505;
250
- }
251
- .btn-warning:active,
252
- .btn-warning.active {
253
- background-color: #c67605 \9;
254
- }
255
- .btn-danger {
256
- color: #ffffff;
257
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
258
- background-color: #da4f49;
259
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
260
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
261
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
262
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
263
- background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
264
- background-repeat: repeat-x;
265
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
266
- border-color: #bd362f #bd362f #802420;
267
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
268
- *background-color: #bd362f;
269
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
270
-
271
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
272
- }
273
- .btn-danger:hover,
274
- .btn-danger:focus,
275
- .btn-danger:active,
276
- .btn-danger.active,
277
- .btn-danger.disabled,
278
- .btn-danger[disabled] {
279
- color: #ffffff;
280
- background-color: #bd362f;
281
- *background-color: #a9302a;
282
- }
283
- .btn-danger:active,
284
- .btn-danger.active {
285
- background-color: #942a25 \9;
286
- }
287
- .btn-success {
288
- color: #ffffff;
289
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
290
- background-color: #5bb75b;
291
- background-image: -moz-linear-gradient(top, #62c462, #51a351);
292
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
293
- background-image: -webkit-linear-gradient(top, #62c462, #51a351);
294
- background-image: -o-linear-gradient(top, #62c462, #51a351);
295
- background-image: linear-gradient(to bottom, #62c462, #51a351);
296
- background-repeat: repeat-x;
297
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
298
- border-color: #51a351 #51a351 #387038;
299
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
300
- *background-color: #51a351;
301
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
302
-
303
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
304
- }
305
- .btn-success:hover,
306
- .btn-success:focus,
307
- .btn-success:active,
308
- .btn-success.active,
309
- .btn-success.disabled,
310
- .btn-success[disabled] {
311
- color: #ffffff;
312
- background-color: #51a351;
313
- *background-color: #499249;
314
- }
315
- .btn-success:active,
316
- .btn-success.active {
317
- background-color: #408140 \9;
318
- }
319
- .btn-info {
320
- color: #ffffff;
321
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
322
- background-color: #49afcd;
323
- background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
324
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
325
- background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
326
- background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
327
- background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
328
- background-repeat: repeat-x;
329
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
330
- border-color: #2f96b4 #2f96b4 #1f6377;
331
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
332
- *background-color: #2f96b4;
333
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
334
-
335
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
336
- }
337
- .btn-info:hover,
338
- .btn-info:focus,
339
- .btn-info:active,
340
- .btn-info.active,
341
- .btn-info.disabled,
342
- .btn-info[disabled] {
343
- color: #ffffff;
344
- background-color: #2f96b4;
345
- *background-color: #2a85a0;
346
- }
347
- .btn-info:active,
348
- .btn-info.active {
349
- background-color: #24748c \9;
350
- }
351
- .btn-inverse {
352
- color: #ffffff;
353
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
354
- background-color: #363636;
355
- background-image: -moz-linear-gradient(top, #444444, #222222);
356
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
357
- background-image: -webkit-linear-gradient(top, #444444, #222222);
358
- background-image: -o-linear-gradient(top, #444444, #222222);
359
- background-image: linear-gradient(to bottom, #444444, #222222);
360
- background-repeat: repeat-x;
361
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
362
- border-color: #222222 #222222 #000000;
363
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
364
- *background-color: #222222;
365
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
366
-
367
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
368
- }
369
- .btn-inverse:hover,
370
- .btn-inverse:focus,
371
- .btn-inverse:active,
372
- .btn-inverse.active,
373
- .btn-inverse.disabled,
374
- .btn-inverse[disabled] {
375
- color: #ffffff;
376
- background-color: #222222;
377
- *background-color: #151515;
378
- }
379
- .btn-inverse:active,
380
- .btn-inverse.active {
381
- background-color: #080808 \9;
382
- }
383
- button.btn,
384
- input[type="submit"].btn {
385
- *padding-top: 3px;
386
- *padding-bottom: 3px;
387
- }
388
- button.btn::-moz-focus-inner,
389
- input[type="submit"].btn::-moz-focus-inner {
390
- padding: 0;
391
- border: 0;
392
- }
393
- button.btn.btn-large,
394
- input[type="submit"].btn.btn-large {
395
- *padding-top: 7px;
396
- *padding-bottom: 7px;
397
- }
398
- button.btn.btn-small,
399
- input[type="submit"].btn.btn-small {
400
- *padding-top: 3px;
401
- *padding-bottom: 3px;
402
- }
403
- button.btn.btn-mini,
404
- input[type="submit"].btn.btn-mini {
405
- *padding-top: 1px;
406
- *padding-bottom: 1px;
407
- }
408
- .btn-link,
409
- .btn-link:active,
410
- .btn-link[disabled] {
411
- background-color: transparent;
412
- background-image: none;
413
- -webkit-box-shadow: none;
414
- -moz-box-shadow: none;
415
- box-shadow: none;
416
- }
417
- .btn-link {
418
- border-color: transparent;
419
- cursor: pointer;
420
- color: #0088cc;
421
- -webkit-border-radius: 0;
422
- -moz-border-radius: 0;
423
- border-radius: 0;
424
- }
425
- .btn-link:hover,
426
- .btn-link:focus {
427
- color: #005580;
428
- text-decoration: underline;
429
- background-color: transparent;
430
- }
431
- .btn-link[disabled]:hover,
432
- .btn-link[disabled]:focus {
433
- color: #333333;
434
- text-decoration: none;
435
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/flat-ui-custom.css DELETED
@@ -1,212 +0,0 @@
1
- /*** Flat UI styles only ***/
2
-
3
- /* Some elements of this plugin are derived from the Flat UI design framework at
4
- * http://designmodo.github.io/Flat-UI/ and http://designmodo.com/flat/
5
- */
6
-
7
- @import url("https://fonts.googleapis.com/css?family=Lato:400,700,700italic,900,400italic,300");
8
- @font-face {
9
- font-family: "Flat-UI-Icons";
10
- src: url("../fonts/Flat-UI-Icons.eot");
11
- src: url("../fonts/Flat-UI-Icons.eot?#iefix") format("embedded-opentype"), url("../fonts/Flat-UI-Icons.woff") format("woff"), url("../fonts/Flat-UI-Icons.ttf") format("truetype"), url("../fonts/Flat-UI-Icons.svg#Flat-UI-Icons") format("svg");
12
- font-weight: normal;
13
- font-style: normal;
14
- }
15
- /* Use the following CSS code if you want to use data attributes for inserting your icons */
16
- [data-icon]:before {
17
- font-family: 'Flat-UI-Icons';
18
- content: attr(data-icon);
19
- speak: none;
20
- font-weight: normal;
21
- font-variant: normal;
22
- text-transform: none;
23
- -webkit-font-smoothing: antialiased;
24
- }
25
-
26
- /*** Glyphs ***/
27
-
28
- .fui-arrow-right,
29
- .fui-check,
30
- .fui-cross,
31
- .fui-pinterest {
32
- display: inline-block;
33
- font-family: 'Flat-UI-Icons';
34
- speak: none;
35
- font-style: normal;
36
- font-weight: normal;
37
- font-variant: normal;
38
- text-transform: none;
39
- -webkit-font-smoothing: antialiased;
40
- }
41
- .fui-arrow-right:before {
42
- content: "\e02c";
43
- }
44
- .fui-check:before {
45
- content: "\e00a";
46
- }
47
- .fui-cross:before {
48
- content: "\e00b";
49
- }
50
- .fui-pinterest:before {
51
- content: "\e046";
52
- }
53
- /* 62px */
54
- /* 52px */
55
- /* 40px */
56
- /* 29px */
57
- /* 28px */
58
- /* 24px */
59
-
60
- /*** Button base ***/
61
-
62
- .btn,
63
- .btn-group > .btn,
64
- .btn-group > .dropdown-menu,
65
- .btn-group > .popover {
66
- font-size: 14.994px;
67
- /* 15px */
68
-
69
- font-weight: 500;
70
- }
71
- .btn {
72
- border: none;
73
- background: #bdc3c7;
74
- color: #ffffff;
75
- padding: 9px 12px 10px;
76
- line-height: 22px;
77
- text-decoration: none;
78
- text-shadow: none;
79
- -webkit-border-radius: 6px;
80
- -moz-border-radius: 6px;
81
- border-radius: 6px;
82
- -webkit-box-shadow: none;
83
- -moz-box-shadow: none;
84
- box-shadow: none;
85
- -webkit-transition: 0.25s;
86
- -moz-transition: 0.25s;
87
- -o-transition: 0.25s;
88
- transition: 0.25s;
89
- -webkit-backface-visibility: hidden;
90
- }
91
- .btn:hover,
92
- .btn:focus,
93
- .btn-group:focus .btn.dropdown-toggle {
94
- background-color: #cacfd2;
95
- color: #ffffff;
96
- outline: none;
97
- -webkit-transition: 0.25s;
98
- -moz-transition: 0.25s;
99
- -o-transition: 0.25s;
100
- transition: 0.25s;
101
- -webkit-backface-visibility: hidden;
102
- }
103
- .btn:active,
104
- .btn-group.open .btn.dropdown-toggle,
105
- .btn.active {
106
- background-color: #a1a6a9;
107
- color: rgba(255, 255, 255, 0.75);
108
- -webkit-box-shadow: none;
109
- -moz-box-shadow: none;
110
- box-shadow: none;
111
- }
112
- .btn.disabled,
113
- .btn[disabled] {
114
- background-color: #bdc3c7;
115
- color: rgba(255, 255, 255, 0.75);
116
- -webkit-box-shadow: none;
117
- -moz-box-shadow: none;
118
- box-shadow: none;
119
- opacity: 0.7;
120
- filter: alpha(opacity=70);
121
- }
122
- .btn.btn-huge {
123
- font-size: 21.994px;
124
- /* 22px */
125
-
126
- line-height: 22px;
127
- padding: 15px 20px 16px;
128
- }
129
- .btn.btn-huge > [class^="fui-"] {
130
- top: 1px;
131
- }
132
- .btn.btn-huge > [class^="fui-"].pull-right {
133
- margin-right: -2px;
134
- }
135
- .btn.btn-large {
136
- font-size: 16.996px;
137
- /* 17px */
138
-
139
- line-height: 20px;
140
- padding: 12px 18px 13px;
141
- }
142
- .btn.btn-large > [class^="fui-"] {
143
- top: 0;
144
- }
145
- .btn.btn-large > [class^="fui-"].pull-right {
146
- margin-right: -2px;
147
- }
148
- .btn.btn-small {
149
- font-size: 12.992px;
150
- /* 13px */
151
-
152
- line-height: 20px;
153
- padding: 6px 13px 8px;
154
- }
155
- .btn.btn-small > [class^="fui-"] {
156
- top: 1px;
157
- }
158
- .btn.btn-mini {
159
- font-size: 11.998px;
160
- /* 12px */
161
-
162
- padding: 8px 13px 9px;
163
- line-height: 1.2;
164
- }
165
- .btn.btn-mini > [class^="fui-"] {
166
- top: 0;
167
- }
168
- .btn.btn-embossed {
169
- -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
170
- -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
171
- box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
172
- }
173
- .btn.btn-embossed.active,
174
- .btn.btn-embossed:active {
175
- -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15);
176
- -moz-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15);
177
- box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15);
178
- }
179
- .btn.btn-wide {
180
- min-width: 140px;
181
- padding-left: 30px;
182
- padding-right: 30px;
183
- }
184
-
185
- /*** Button palettes ***/
186
-
187
- .btn.btn-danger {
188
- background-color: #e74c3c;
189
- }
190
- .btn.btn-danger:hover,
191
- .btn.btn-danger:focus,
192
- .btn-group:focus .btn.btn-danger.dropdown-toggle {
193
- background-color: #ec7063;
194
- }
195
- .btn.btn-danger:active,
196
- .btn-group.open .btn.btn-danger.dropdown-toggle,
197
- .btn.btn-danger.active {
198
- background-color: #c44133;
199
- }
200
- .btn.btn-inverse {
201
- background-color: #34495e;
202
- }
203
- .btn.btn-inverse:hover,
204
- .btn.btn-inverse:focus,
205
- .btn-group:focus .btn.btn-inverse.dropdown-toggle {
206
- background-color: #415b76;
207
- }
208
- .btn.btn-inverse:active,
209
- .btn-group.open .btn.btn-inverse.dropdown-toggle,
210
- .btn.btn-inverse.active {
211
- background-color: #2c3e50;
212
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
css/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
fonts/Flat-UI-Icons.dev.svg DELETED
@@ -1,470 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <metadata>
5
- This is a custom SVG font generated by IcoMoon.
6
- <iconset id="Flat-UI-Icons" name="Flat UI Icons" href="http://designmodo.com/flat" grid="16"></iconset><author name="Sergey Shmidt" href="http://designmodo.com"></author><license name="Attribution-NonCommercial-NoDerivs 3.0 Unported" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"></license>
7
- </metadata>
8
- <defs>
9
- <font id="Flat-UI-Icons" horiz-adv-x="512" >
10
- <font-face units-per-em="512" ascent="480" descent="-32" />
11
- <missing-glyph horiz-adv-x="512" />
12
- <glyph unicode="&#xe000;" d="M 448.00,127.808L 256.00,384.00L 64.00,128.00L 448.00,127.808z" data-tags="triangle-up" />
13
- <glyph unicode="&#xe001;" d="M 447.744,96.064L 64.00,96.064 L 255.872,288.00L 447.744,96.064z" data-tags="triangle-up-small" />
14
- <glyph unicode="&#xe002;" d="M 64.00,416.00l 384.00-224.032L 64.00-31.968L 64.00,416.00 z" data-tags="triangle-right-large" />
15
- <glyph unicode="&#xe003;" d="M 448.00-31.968L 64.00,191.968L 448.00,416.00L 448.00-31.968 z" data-tags="triangle-left-large" />
16
- <glyph unicode="&#xe004;" d="M 64.00,320.00l 192.00-256.192L 448.00,320.00L 64.00,320.00 z" data-tags="triangle-down" />
17
- <glyph unicode="&#xe016;" d="M 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00c0.00-141.344, 114.624-256.00, 256.00-256.00c 141.408,0.00, 256.00,114.624, 256.00,256.00C 512.00,365.376, 397.408,480.00, 256.00,480.00z M 288.384,97.568
18
- c0.00-18.528-14.496-33.536-32.384-33.536s-32.384,15.008-32.384,33.536L 223.616,254.112 C 223.616,272.64, 238.112,287.648, 256.00,287.648S 288.384,272.64, 288.384,254.112L 288.384,97.568 z
19
- M 256.00,320.16c-17.888,0.00-32.384,14.304-32.384,31.936S 238.112,383.968, 256.00,383.968s 32.384-14.272, 32.384-31.904S 273.888,320.16, 256.00,320.16z" data-tags="info" />
20
- <glyph unicode="&#xe017;" d="M 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00c0.00-141.376, 114.624-256.00, 256.00-256.00c 141.376,0.00, 256.00,114.624, 256.00,256.00C 512.00,365.376, 397.376,480.00, 256.00,480.00z M 256.00,64.032
21
- c-17.888,0.00-32.384,14.272-32.384,31.904c0.00,17.60, 14.496,31.904, 32.384,31.904c 17.888,0.00, 32.384-14.304, 32.384-31.904
22
- C 288.384,78.304, 273.888,64.032, 256.00,64.032z M 288.384,193.888C 288.384,175.36, 273.888,160.352, 256.00,160.352c-17.888,0.00-32.384,15.04-32.384,33.536L 223.616,350.432
23
- c0.00,18.528, 14.496,33.536, 32.384,33.536c 17.888,0.00, 32.384-15.04, 32.384-33.536L 288.384,193.888 z" data-tags="alert" />
24
- <glyph unicode="&#xe018;" d="M 256.00-32.00c-141.376,0.00-256.00,114.624-256.00,256.00c0.00,141.344, 114.624,256.00, 256.00,256.00c 141.376,0.00, 256.00-114.624, 256.00-256.00C 512.00,82.624, 397.376-32.00, 256.00-32.00z M 256.00,64.032
25
- c 17.888,0.00, 32.384,14.272, 32.384,31.904c0.00,17.60-14.496,31.904-32.384,31.904c-17.888,0.00-32.384-14.304-32.384-31.904
26
- C 223.616,78.304, 238.112,64.032, 256.00,64.032z M 325.376,362.144C 308.416,376.096, 284.256,383.872, 255.36,383.872c-21.28,0.00-39.456-3.84-55.072-10.08
27
- C 192.00,370.432, 165.472,353.952, 159.968,349.344l 16.192-24.16c 2.656-4.672, 6.976-7.04, 12.96-7.04c 2.496,0.00, 5.312,0.992, 8.48,2.944
28
- c 2.304,1.44, 20.544,10.848, 28.256,13.184c 16.16,4.80, 33.92,2.848, 42.08,0.32c 11.136-3.424, 19.20-9.952, 23.68-18.88
29
- c 2.944-5.888, 6.688-22.08-2.112-37.216C 282.176,265.952, 270.72,256.416, 258.08,247.968C 251.328,243.36, 245.056,238.656, 239.392,233.76
30
- c-0.256,0.00-0.896-0.48-2.336-1.76C 237.76,232.608, 238.688,233.152, 239.392,233.76C 240.992,233.824, 224.00,212.096, 224.00,192.00c0.00-21.44,0.00-32.00,0.00-32.00l 64.00,0.00 L 288.00,192.00
31
- c0.00,16.64, 8.064,25.984, 8.224,28.352c 5.504,3.936, 30.528,23.072, 36.48,29.952C 343.808,263.104, 352.00,280.00, 352.00,303.808
32
- C 352.00,328.224, 342.304,348.224, 325.376,362.144z" data-tags="question" />
33
- <glyph unicode="&#xe019;" d="M 448.00,480.00L 64.00,480.00 C 28.672,480.00,0.00,451.328,0.00,416.00l0.00-384.00 c0.00-35.328, 28.672-64.00, 64.00-64.00l 384.00,0.00 c 35.328,0.00, 64.00,28.672, 64.00,64.00L 512.00,416.00 C 512.00,451.328, 483.328,480.00, 448.00,480.00z M 192.00,447.968
34
- c 17.664,0.00, 32.00-14.304, 32.00-31.968c0.00-17.696-14.336-32.00-32.00-32.00S 160.00,398.304, 160.00,416.00C 160.00,433.664, 174.336,447.968, 192.00,447.968z M 96.00,447.968c 17.664,0.00, 32.00-14.304, 32.00-31.968
35
- c0.00-17.696-14.336-32.00-32.00-32.00S 64.00,398.304, 64.00,416.00C 64.00,433.664, 78.336,447.968, 96.00,447.968z M 448.032,32.00L 64.00,32.00 L 64.00,352.00 l 384.032,0.00 L 448.032,32.00 z" data-tags="window" />
36
- <glyph unicode="&#xe01a;" d="M 469.376,383.872l-53.344,0.00L 416.032,437.184 c0.00,23.552-19.104,42.656-42.656,42.656L 42.656,479.84 c-23.552,0.00-42.656-19.104-42.656-42.656l0.00-330.336
37
- c0.00-23.584, 18.624-42.688, 41.568-42.688l 54.432,0.00 l0.00-53.344 c0.00-23.552, 18.624-42.656, 41.568-42.656l 332.896,0.00 c 22.976,0.00, 41.60,19.104, 41.60,42.656L 512.064,341.184
38
- C 512.032,364.736, 492.928,383.872, 469.376,383.872z M 192.00,447.808c 17.664,0.00, 32.00-14.304, 32.00-31.968c0.00-17.696-14.336-32.00-32.00-32.00s-32.00,14.304-32.00,32.00
39
- C 160.00,433.504, 174.336,447.808, 192.00,447.808z M 96.00,447.808c 17.664,0.00, 32.00-14.304, 32.00-31.968c0.00-17.696-14.336-32.00-32.00-32.00s-32.00,14.304-32.00,32.00C 64.00,433.504, 78.336,447.808, 96.00,447.808z
40
- M 64.00,127.84l-0.032,224.00L 352.00,351.84 l0.00-224.00 L 64.00,127.84 z M 448.00,31.84L 160.00,31.84 l0.00,32.32 l 214.432,0.00 c 22.976,0.00, 41.60,19.104, 41.60,42.688L 416.032,255.84 L 448.00,255.84 L 448.00,31.84 z" data-tags="windows" />
41
- <glyph unicode="&#xe02c;" d="M 192.576-33.056l-64.096,64.128l 160.544,160.448L 128.448,350.496l 64.00,65.504l 223.584-223.616L 192.576-33.056z" data-tags="arrow-right" />
42
- <glyph unicode="&#xe02d;" d="M 96.48,192.384L 320.064,416.00l 64.00-65.504L 223.488,191.488l 160.576-160.448l-64.128-64.128L 96.48,192.384z" data-tags="arrow-left" />
43
- <glyph unicode="&#xe02e;" d="M 384.00,95.968c-60.80,0.00-98.944,34.368-128.00,72.224C 226.944,130.336, 188.80,95.968, 128.00,95.968C 76.576,95.968,0.00,130.08,0.00,224.00c0.00,93.888, 76.576,128.00, 128.00,128.00
44
- c 60.80,0.00, 98.944-34.336, 128.00-72.224C 285.056,317.664, 323.20,352.00, 384.00,352.00c 51.456,0.00, 128.00-34.112, 128.00-128.00C 512.00,130.08, 435.456,95.968, 384.00,95.968z M 128.00,288.00
45
- C 113.184,287.744, 64.00,282.432, 64.00,224.00c0.00-60.928, 53.312-64.00, 64.00-64.00c 39.136,0.00, 61.632,23.904, 89.376,64.00C 189.632,264.064, 167.136,288.00, 128.00,288.00z M 294.624,224.00
46
- c 27.712-40.064, 50.176-63.936, 89.216-64.00C 399.008,160.224, 448.00,165.632, 448.00,224.00c0.00,60.928-53.312,64.00-64.00,64.00C 344.864,288.00, 322.368,264.064, 294.624,224.00z" data-tags="loop" />
47
- <glyph unicode="&#xe02f;" d="M 400.00,256.00c-11.488,0.00-29.664,0.00-48.00,0.00L 352.00,192.00 c 11.328,0.00, 22.40,0.00, 32.00,0.00c 6.048,0.00, 11.648,0.00, 16.00,0.00c 61.856,0.00, 112.00-50.144, 112.00-112.00S 461.856-32.00, 400.00-32.00
48
- S 288.00,18.112, 288.00,80.00c0.00,11.488,0.00,29.632,0.00,48.00L 224.00,128.00 c0.00-11.328,0.00-22.432,0.00-32.00c0.00-6.048,0.00-11.616,0.00-16.00C 224.00,18.112, 173.856-32.00, 112.00-32.00S0.00,18.112,0.00,80.00
49
- S 50.144,192.00, 112.00,192.00C 123.488,192.00, 141.664,192.00, 160.00,192.00L 160.00,256.00 C 148.704,256.00, 137.568,256.00, 128.00,256.00C 121.952,256.00, 116.384,256.00, 112.00,256.00C 50.144,256.00,0.00,306.112,0.00,368.00C0.00,429.856, 50.144,480.00, 112.00,480.00
50
- S 224.00,429.856, 224.00,368.00C 224.00,356.512, 224.00,338.336, 224.00,320.00l 64.00,0.00 c0.00,11.296,0.00,22.432,0.00,32.00c0.00,6.048,0.00,11.616,0.00,16.00C 288.00,429.856, 338.144,480.00, 400.00,480.00S 512.00,429.856, 512.00,368.00
51
- C 512.00,306.112, 461.856,256.00, 400.00,256.00z M 160.00,368.00C 160.00,394.496, 138.496,416.00, 112.00,416.00S 64.00,394.496, 64.00,368.00C 64.00,341.472, 85.504,320.00, 112.00,320.00C 115.872,320.00, 121.76,320.00, 128.00,320.00c 14.784,0.00, 32.00,0.00, 32.00,0.00
52
- S 160.00,354.528, 160.00,368.00z M 160.00,96.00c0.00,14.752,0.00,32.00,0.00,32.00s-34.528,0.00-48.00,0.00C 85.504,128.00, 64.00,106.496, 64.00,80.00S 85.504,32.00, 112.00,32.00S 160.00,53.504, 160.00,80.00
53
- C 160.00,83.872, 160.00,89.76, 160.00,96.00z M 352.00,80.00c0.00-26.496, 21.504-48.00, 48.00-48.00s 48.00,21.504, 48.00,48.00S 426.496,128.00, 400.00,128.00c-3.872,0.00-9.76,0.00-16.00,0.00
54
- c-14.784,0.00-32.00,0.00-32.00,0.00S 352.00,93.44, 352.00,80.00z M 288.00,256.00L 224.00,256.00 L 224.00,192.00 l 64.00,0.00 L 288.00,256.00 z M 400.00,416.00C 373.504,416.00, 352.00,394.496, 352.00,368.00c0.00-3.872,0.00-9.728,0.00-16.00c0.00-14.816,0.00-32.00,0.00-32.00
55
- s 34.528,0.00, 48.00,0.00C 426.496,320.00, 448.00,341.472, 448.00,368.00C 448.00,394.496, 426.496,416.00, 400.00,416.00z" data-tags="cmd" />
56
- <glyph unicode="&#xe030;" d="M 400.992,203.20c-14.336,8.832-32.704,3.616-40.96-11.68C 359.744,191.008, 359.744,190.40, 359.456,189.888L 358.72,190.368
57
- C 337.728,153.152, 299.872,128.00, 256.128,128.00s-81.568,25.152-102.592,62.368L 152.832,189.952C 152.48,190.752, 152.48,191.68, 152.032,192.512
58
- C 143.744,207.776, 125.376,213.024, 111.008,204.192S 91.744,175.776, 100.032,160.512c 0.64-1.12, 1.632-1.824, 2.336-2.848l-0.544-0.352
59
- c 26.56-47.104, 71.552-80.80, 124.288-90.304L 226.112,32.00 L 166.08,32.00 c-16.576,0.00-30.016-14.336-30.016-32.00c0.00-17.696, 13.44-32.00, 30.016-32.00l 180.064,0.00
60
- c 16.608,0.00, 30.016,14.304, 30.016,32.00c0.00,17.664-13.408,32.00-30.016,32.00L 286.144,32.00 l0.00,34.976 c 52.736,9.504, 97.728,43.264, 124.288,90.336L 410.24,157.44
61
- c 0.544,0.736, 1.312,1.216, 1.728,2.048C 420.288,174.816, 415.36,194.368, 400.992,203.20z M 256.128,160.00c 49.728,0.00, 90.016,42.976, 90.016,96.00L 346.144,384.00
62
- c0.00,53.024-40.32,96.00-90.016,96.00C 206.40,480.00, 166.08,437.024, 166.08,384.00l0.00-128.00 C 166.08,202.976, 206.40,160.00, 256.128,160.00z" data-tags="mic" />
63
- <glyph unicode="&#xe005;" d="M 255.872,128.064L 64.00,320.00l 383.744,0.00 L 255.872,128.064z" data-tags="triangle-down-small" />
64
- <glyph unicode="&#xe006;" d="M 256.00,480.00C 114.624,480.00,0.00,365.408,0.00,224.032C0.00,82.624, 114.624-32.00, 256.00-32.00c 141.376,0.00, 256.00,114.624, 256.00,256.032C 512.00,365.408, 397.376,480.00, 256.00,480.00z M 421.44,276.064
65
- l-183.648-183.616c-3.744-3.744-9.856-3.744-13.568,0.00l-27.136,27.392c-3.712,3.776-9.856,9.952-13.568,13.696L 120.352,199.936
66
- C 118.496,201.792, 117.504,204.416, 117.504,206.88c0.00,2.496, 0.992,4.864, 2.848,6.752l 27.68,24.96c 1.888,1.92, 4.384,2.816, 6.848,2.816
67
- c 2.432-0.032, 4.864-0.992, 6.72-2.816l 62.624-63.936c 3.744-3.808, 9.824-3.808, 13.568,0.00l 142.944,142.56c 3.712,3.744, 9.856,3.744, 13.568,0.00
68
- l 27.168-27.456C 425.184,286.016, 425.184,279.84, 421.44,276.064z" data-tags="check-inverted" />
69
- <glyph unicode="&#xe007;" d="M 474.272,191.424c 50.24,51.392, 50.176,134.656,0.00,186.016c-25.696,26.24-59.488,39.072-93.12,38.496C 334.08,415.168, 256.48,351.456, 256.48,351.456
70
- S 176.672,416.064, 128.48,416.00C 95.616,415.936, 62.784,403.072, 37.728,377.472c-50.208-51.392-50.24-134.624,0.00-186.016L 256.00-31.712L 474.272,191.424z" data-tags="heart" />
71
- <glyph unicode="&#xe008;" d="M 272.064,216.032c-43.936,0.00-79.552,36.864-79.552,82.40c0.00,45.568, 35.616,82.432, 79.552,82.432S 351.616,344.00, 351.616,298.432
72
- C 351.616,252.928, 316.00,216.032, 272.064,216.032 M 272.064,480.192c-97.248,0.00-176.064-81.664-176.064-182.40c0.00-95.136, 79.744-217.888, 132.992-277.632
73
- c 19.904-22.272, 43.072-52.352, 43.072-52.352s 24.896,30.176, 46.24,53.152c 53.184,57.248, 129.824,172.224, 129.824,276.80
74
- C 448.128,398.528, 369.312,480.192, 272.064,480.192" data-tags="location" />
75
- <glyph unicode="&#xe009;" d="M 448.00,159.968L 288.00,159.968 L 288.00,0.00 c0.00-17.696-14.304-32.00-32.00-32.00L 224.00-32.00 c-17.664,0.00-32.00,14.304-32.00,32.00L 192.00,159.968 L 32.00,159.968 C 14.336,159.968,0.00,174.336,0.00,192.00L0.00,224.032
76
- c0.00,17.664, 14.336,31.936, 32.00,31.936l 160.00,0.00 L 192.00,416.00 c0.00,17.664, 14.336,32.00, 32.00,32.00l 32.00,0.00 c 17.696,0.00, 32.00-14.336, 32.00-32.00l0.00-160.032 l 160.00,0.00 c 17.696,0.00, 32.00-14.272, 32.00-31.936L 480.00,192.00
77
- C 480.00,174.336, 465.696,159.968, 448.00,159.968z" data-tags="plus" />
78
- <glyph unicode="&#xe00a;" d="M 461.568,411.296c-6.176,6.272-16.384,6.272-22.56,0.00l-238.08-237.248c-6.24-6.272-16.416-6.272-22.624,0.00L 73.984,280.416
79
- C 70.912,283.52, 66.848,285.12, 62.816,285.152c-4.128,0.00-8.288-1.504-11.424-4.736l-46.08-41.504C 2.24,235.776, 0.576,231.84, 0.576,227.744
80
- c0.00-4.16, 1.664-8.512, 4.736-11.616l 105.184-110.496c 6.208-6.24, 16.416-16.512, 22.624-22.816l 45.216-45.632c 6.208-6.24, 16.384-6.24, 22.624,0.00
81
- l 305.856,305.664c 6.24,6.24, 6.24,16.544,0.00,22.816L 461.568,411.296z" data-tags="check" />
82
- <glyph unicode="&#xe00b;" d="M 443.904,366.016c 6.24-6.208, 6.24-16.416,0.00-22.624L 319.456,218.88c-6.176-6.208-6.176-16.416,0.00-22.656l 124.384-124.544
83
- c 6.24-6.208, 6.24-16.416,0.00-22.624l-45.312-45.216c-6.176-6.208-16.384-6.208-22.624,0.00L 251.584,128.384c-6.208,6.208-16.416,6.208-22.624,0.00
84
- l-124.448-124.448c-6.208-6.24-16.416-6.24-22.624,0.00l-45.248,45.312c-6.208,6.176-6.208,16.384,0.00,22.624l 124.48,124.448
85
- c 6.208,6.208, 6.208,16.416,0.00,22.656L 36.736,343.488c-6.208,6.24-6.208,16.416,0.00,22.624l 45.28,45.248c 6.208,6.208, 16.416,6.208, 22.624,0.00
86
- l 124.32-124.512c 6.208-6.24, 16.416-6.24, 22.624-0.032l 124.416,124.48c 6.24,6.176, 16.448,6.176, 22.624,0.00L 443.904,366.016z" data-tags="cross" />
87
- <glyph unicode="&#xe00c;" d="M 495.968,415.68L 16.032,415.68 c-8.80,0.00-16.00-7.68-16.00-17.088l0.00-62.336 c0.00-9.024, 7.20-16.416, 16.00-16.416l 479.936,0.00 c 8.80,0.00, 16.00,7.36, 16.00,16.416
88
- L 511.968,398.592 C 511.968,408.00, 504.768,415.68, 495.968,415.68z M 495.968,255.68L 16.032,255.68 c-8.80,0.00-16.00-7.68-16.00-17.12l0.00-62.304
89
- c0.00-9.056, 7.20-16.416, 16.00-16.416l 479.936,0.00 c 8.80,0.00, 16.00,7.36, 16.00,16.416L 511.968,238.592 C 511.968,248.00, 504.768,255.68, 495.968,255.68z M 495.968,95.68
90
- L 16.032,95.68 c-8.80,0.00-16.00-7.68-16.00-17.12l0.00-62.304 c0.00-8.992, 7.20-16.384, 16.00-16.384l 479.936,0.00 c 8.80,0.00, 16.00,7.36, 16.00,16.384l0.00,62.304
91
- C 511.968,88.00, 504.768,95.68, 495.968,95.68z" data-tags="list" />
92
- <glyph unicode="&#xe00d;" d="M 480.256,355.136c-10.88,17.984-24.288,35.584-40.672,51.904c-16.608,16.448-34.496,29.984-52.80,40.80L 418.944,480.00c0.00,0.00, 46.528,0.00, 69.824-23.264
93
- C 512.00,433.44, 512.00,386.912, 512.00,386.912L 480.256,355.136z M 193.60,64.384L 96.384,64.384 L 96.384,161.60 l 11.68,11.68c 19.776-9.28, 39.392-22.464, 57.088-40.16
94
- c 17.696-17.664, 30.848-37.344, 40.16-57.088L 193.60,64.384z M 453.376,328.256l-220.00-224.16c-11.36,18.816-25.344,37.152-42.496,54.176
95
- C 173.536,175.488, 154.848,189.632, 135.712,200.928l 224.576,220.448c 18.912-8.928, 37.728-21.472, 54.656-38.432S 444.448,347.232, 453.376,328.256z M 64.00,416.00l0.00-383.968 l 384.00,0.00
96
- L 448.00,192.00 l 64.00,63.968l0.00-241.44 C 512.00-11.168, 491.20-32.00, 465.472-32.00L 46.528-32.00 C 20.832-32.00,0.00-11.168,0.00,14.528L0.00,433.44 C0.00,459.168, 20.832,480.00, 46.528,480.00L 288.00,480.00 L 224.00,416.00L 64.00,416.00 z" data-tags="new" />
97
- <glyph unicode="&#xe00e;" d="M 480.128,32.032l0.00-0.384 L 352.00,159.776l0.00-63.744 C 352.00,60.672, 323.328,32.00, 288.00,32.00L 64.00,32.00 c-35.328,0.00-64.00,28.672-64.00,64.032L0.00,319.968 C0.00,355.328, 28.672,384.00, 64.00,384.00l 224.00,0.00
98
- c 35.328,0.00, 64.00-28.672, 64.00-64.032L 352.00,255.68 l 128.00,128.00L 480.00,384.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00l0.00-288.00 C 512.00,46.368, 497.728,32.096, 480.128,32.032z" data-tags="video" />
99
- <glyph unicode="&#xe00f;" d="M 448.512,384.00l-73.92,0.00 l-21.44,45.312C 348.256,439.968, 330.624,448.00, 313.472,448.00L 191.072,448.00 C 173.92,448.00, 156.288,439.968, 151.36,429.312L 130.432,384.00L 64.00,384.00 C0.00,384.00,0.00,352.00,0.00,352.00
100
- l0.00-320.00 c0.00,0.00,0.00-32.00, 64.00-32.00l 384.00,0.00 c 64.00,0.00, 64.00,32.00, 64.00,32.00L 512.00,352.00 C 512.00,352.00, 512.00,384.00, 448.512,384.00z M 256.00,64.032c-70.688,0.00-128.00,57.248-128.00,127.936C 128.00,262.688, 185.312,320.00, 256.00,320.00s 128.00-57.312, 128.00-128.032
101
- C 384.00,121.28, 326.688,64.032, 256.00,64.032z M 256.00,272.00C 211.808,272.00, 176.00,236.192, 176.00,192.00c0.00-44.16, 35.808-80.00, 80.00-80.00s 80.00,35.84, 80.00,80.00
102
- C 336.00,236.192, 300.192,272.00, 256.00,272.00z" data-tags="photo" />
103
- <glyph unicode="&#xe010;" d="M 246.592,448.00C 222.40,448.00, 215.072,434.08, 215.072,434.08S 123.52,325.984, 81.792,325.984c-41.088,0.00-40.672,0.00-40.672,0.00C 18.40,325.984,0.00,307.776,0.00,285.344
104
- l0.00-122.048 c0.00-22.464, 18.40-40.64, 41.088-40.64c0.00,0.00, 0.672,0.00, 41.088,0.00c 40.512,0.00, 134.784-109.44, 134.784-109.44c 7.456-7.744, 17.952-12.576, 29.632-12.576
105
- c 22.688,0.00, 41.088,18.176, 41.088,40.64L 287.68,407.328 C 287.68,429.792, 269.28,448.00, 246.592,448.00z M 421.984,408.864l-23.712-35.488
106
- c 43.328-35.20, 71.104-88.864, 71.104-149.088s-27.744-113.92-71.104-149.056l 23.712-35.488C 476.704,82.688, 512.00,149.312, 512.00,224.288
107
- C 512.00,299.296, 476.704,365.888, 421.984,408.864z M 374.40,337.664l-23.936-35.84c 20.672-19.456, 33.696-46.88, 33.696-77.536
108
- c0.00-30.656-13.024-58.048-33.696-77.536l 23.936-35.808c 31.936,27.36, 52.288,68.00, 52.288,113.344C 426.688,269.696, 406.336,310.272, 374.40,337.664z" data-tags="volume" />
109
- <glyph unicode="&#xe011;" d="M 256.032,480.00C 114.688,480.00, 0.096,365.408, 0.096,224.032c0.00-141.408, 114.592-255.968, 255.936-255.968c 141.376,0.00, 255.968,114.56, 255.968,255.968
110
- C 512.00,365.408, 397.408,480.00, 256.032,480.00z M 339.488,134.24l-7.424-7.488c-6.208-6.176-16.672-6.496-23.232-0.64L 223.072,199.872
111
- C 216.512,205.728, 211.552,217.728, 211.968,226.496l 8.928,141.536C 221.344,376.832, 228.896,384.00, 237.728,384.00l 10.528,0.00 c 8.80,0.00, 16.352-7.168, 16.768-15.968
112
- l 7.328-115.904c 0.448-8.768, 5.60-21.344, 11.424-27.904l 56.384-66.784C 345.984,150.944, 345.728,140.448, 339.488,134.24z" data-tags="time" />
113
- <glyph unicode="&#xe012;" d="M 256.032,400.00c-169.472,0.00-256.48-176.448-256.48-176.448s 65.664-176.48, 256.48-176.48c 172.736,0.00, 256.416,175.808, 256.416,175.808
114
- S 428.128,400.00, 256.032,400.00z M 256.416,113.248c-61.984,0.00-106.752,48.288-106.752,110.304c0.00,62.048, 44.768,110.272, 106.752,110.272
115
- c 61.952,0.00, 106.72-48.224, 106.72-110.272C 363.136,161.536, 318.336,113.248, 256.416,113.248z M 256.416,289.728c-35.392-0.064-64.064-30.72-64.064-66.176
116
- c0.00-35.424, 28.672-66.176, 64.064-66.176s 64.032,30.752, 64.032,66.176C 320.448,259.008, 291.808,289.824, 256.416,289.728z" data-tags="eye" />
117
- <glyph unicode="&#xe013;" d="M 228.928,84.032l 144.64-113.248c 2.368-1.888, 3.808-2.816, 5.184-2.816c 4.00,0.00, 5.248,2.752, 5.248,7.264l0.00,107.20
118
- C 384.00,89.984, 388.992,96.00, 395.68,96.00l 52.576,0.00 c 63.744,0.00, 63.68,30.72, 63.68,30.72L 511.936,446.752 c0.00,0.00,0.00,33.28-63.936,33.28L 64.032,480.032 c-64.00,0.00-64.00-33.28-64.00-33.28L 0.032,126.72
119
- c0.00,0.00-0.032-30.72, 64.224-30.72l 128.00,0.00 C 192.256,96.00, 219.04,95.264, 228.928,84.032z" data-tags="chat" />
120
- <glyph unicode="&#xe015;" d="M 512.00,13.376C 512.00-11.712, 491.20-32.00, 465.44-32.00L 319.808-32.00 l0.00,175.84 c0.00,26.528-19.008,48.064-42.528,48.064L 234.72,191.904
121
- c-23.488,0.00-42.56-21.536-42.56-48.064L 192.16-32.00 L 46.528-32.00 C 20.832-32.00,0.00-11.712,0.00,13.376L0.00,252.864 c0.00,11.68, 4.672,22.24, 12.096,30.272L 11.616,284.064
122
- l 212.96,186.496c 17.152,12.576, 44.992,12.576, 62.144,0.00l 213.632-186.496L 500.128,282.88C 507.424,274.848, 512.00,264.416, 512.00,252.864L 512.00,13.376 z" data-tags="home" />
123
- <glyph unicode="&#xe01b;" d="M 448.00-32.00l-96.00,0.00 l0.00,64.00 l 96.032,0.00 L 448.032,352.00 L 64.00,352.00 l0.00-320.00 l 96.00,0.00 l0.00-64.00 L 64.00-32.00 c-35.328,0.00-64.00,28.672-64.00,64.00L0.00,416.00 c0.00,35.328, 28.672,64.00, 64.00,64.00l 384.00,0.00 c 35.328,0.00, 64.00-28.672, 64.00-64.00l0.00-384.00
124
- C 512.00-3.328, 483.328-32.00, 448.00-32.00z M 96.00,447.968C 78.304,447.968, 64.00,433.664, 64.00,416.00c0.00-17.696, 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00C 128.00,433.664, 113.696,447.968, 96.00,447.968z
125
- M 192.00,447.968C 174.304,447.968, 160.00,433.664, 160.00,416.00c0.00-17.696, 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00C 224.00,433.664, 209.696,447.968, 192.00,447.968z M 135.968,100.352
126
- c-11.104,11.616-11.104,30.432,0.00,42.08l 98.464,104.704c 3.072,3.232, 6.72,5.248, 10.56,6.72c 0.032,0.032, 0.096,0.032, 0.16,0.064
127
- c 2.944,1.12, 5.92,1.728, 8.992,1.856c 1.12,0.096, 2.208,0.192, 3.328,0.128C 258.848,255.808, 260.16,255.392, 261.472,255.104
128
- c 5.664-1.12, 11.136-3.36, 15.488-7.936l 98.432-104.704c 11.136-11.648, 11.136-30.464,0.00-42.08c-11.136-11.552-29.152-11.552-40.288,0.00L 288.00,160.00l0.00-159.968
129
- C 288.00-17.056, 271.968-32.00, 255.68-32.00C 239.424-32.00, 224.00-17.056, 224.00,0.032L 224.00,160.00 l-47.744-59.648C 165.12,88.768, 147.104,88.768, 135.968,100.352z" data-tags="upload" />
130
- <glyph unicode="&#xe01c;" d="M 361.696,176.80c-5.664,5.728-7.552,16.352-4.192,23.648c0.00,0.00, 23.616,51.232, 23.616,88.864C 381.12,394.624, 295.904,480.00, 190.752,480.00
131
- s-190.40-85.376-190.40-190.656c0.00-105.312, 85.248-190.688, 190.40-190.688c 37.60,0.00, 88.704,23.68, 88.704,23.68c 7.328,3.392, 17.984,1.472, 23.616-4.224
132
- l 145.728-145.888c 5.728-5.696, 15.04-5.696, 20.672,0.00l 37.888,37.952c 5.728,5.728, 5.728,15.072,0.00,20.736L 361.696,176.80z M 190.752,186.688
133
- c-56.544,0.00-102.528,46.016-102.528,102.656c0.00,56.608, 46.016,102.656, 102.528,102.656s 102.496-46.048, 102.496-102.656C 293.248,232.704, 247.296,186.688, 190.752,186.688z" data-tags="search" />
134
- <glyph unicode="&#xe01d;" d="M 256.512,298.144c 53.28,0.00, 96.512,40.672, 96.512,90.944C 352.992,439.296, 309.792,480.00, 256.512,480.00S 160.00,439.296, 160.00,389.088
135
- C 160.00,338.848, 203.232,298.144, 256.512,298.144z M 332.16,291.84C 310.88,277.12, 284.864,268.128, 256.512,268.128c-28.48,0.00-54.56,9.056-75.872,23.872
136
- C 94.016,273.344, 32.00,223.584, 32.00,164.992l0.00-129.44 c0.00-8.576, 7.20-15.552, 16.00-15.552l 32.00,0.00 c 8.80,0.00, 16.00,6.304, 16.00,14.048c0.00,4.48,0.00,100.928,0.00,100.928
137
- c0.00,8.32, 4.768,4.992, 10.688,4.992c 5.888,0.00, 10.656-4.512, 10.656-9.984l 0.16-89.984c 0.448-5.184, 4.80-42.208, 10.272-43.296
138
- c0.00,0.00, 33.28-28.672, 128.224-28.672c 95.616,0.00, 128.224,28.672, 128.224,28.672c 5.472,1.056, 9.856,38.08, 10.272,43.296l 0.16,89.984
139
- c0.00,5.504, 4.768,9.984, 10.688,9.984c 5.888,0.00, 10.656-4.512, 10.656-9.984c0.00,0.00,0.00-91.456,0.00-95.936c0.00-7.744, 7.20-14.048, 16.00-14.048l 32.00,0.00
140
- c 8.80,0.00, 16.00,7.008, 16.00,15.552L 480.00,164.992 C 480.00,223.424, 418.304,273.056, 332.16,291.84z" data-tags="user" />
141
- <glyph unicode="&#xe01e;" d="M 448.00,416.00C 422.752,416.00, 64.00,416.00, 64.00,416.00C 38.752,416.00,0.00,395.424,0.00,370.528l0.00-9.056 c0.00,0.00, 216.384-180.928, 256.00-180.928s 256.00,180.352, 256.00,180.352l0.00,9.60
142
- C 512.00,395.424, 473.248,416.00, 448.00,416.00z M0.00,288.48l0.00-256.448 C0.00,32.032,0.00,0.00, 64.00,0.00l 384.00,0.00 c 64.096,0.00, 64.00,32.032, 64.00,32.032L 512.00,289.28 c0.00,0.00-182.08-162.496-256.00-162.496
143
- C 182.848,126.784,0.00,288.48,0.00,288.48z" data-tags="mail" />
144
- <glyph unicode="&#xe01f;" d="M 448.00-32.00L 64.00-32.00 c-17.664,0.00-32.00,14.304-32.00,32.032L 32.00,224.00 c0.00,17.664, 14.336,32.00, 32.00,32.00l 32.00,0.00 L 96.00,320.00 c0.00,88.352, 71.616,160.00, 160.00,160.00s 160.00-71.648, 160.00-160.00l0.00-64.00 l 32.00,0.00 c 17.696,0.00, 32.00-14.336, 32.00-32.00
145
- l0.00-223.968 C 480.00-17.696, 465.696-32.00, 448.00-32.00z M 352.00,320.00c0.00,52.992-42.976,96.00-96.00,96.00S 160.00,372.992, 160.00,320.00l0.00-64.00 l 192.00,0.00 L 352.00,320.00 z" data-tags="lock" />
146
- <glyph unicode="&#xe020;" d="M 383.936,377.504l-0.064-0.032c-0.448,0.32-0.80,0.768-1.312,1.12c-14.592,10.016-34.496,6.304-44.512-8.352
147
- c-9.984-14.656-6.24-34.656, 8.32-44.672C 346.752,325.248, 347.136,325.12, 347.488,324.928L 347.36,324.704C 388.80,295.68, 416.00,247.456, 416.00,192.832
148
- c0.00-88.768-71.648-160.736-160.00-160.736s-160.00,71.968-160.00,160.736C 96.00,247.456, 123.20,295.68, 164.64,324.704L 164.512,324.928c 0.352,0.192, 0.736,0.32, 1.12,0.608
149
- c 14.592,10.016, 18.304,30.016, 8.32,44.672C 163.936,384.864, 144.032,388.608, 129.44,378.56C 128.96,378.208, 128.576,377.792, 128.096,377.44L 128.064,377.504
150
- C 70.048,336.80, 32.00,269.344, 32.00,192.832c0.00-124.288, 100.288-225.088, 224.00-225.088s 224.00,100.80, 224.00,225.088C 480.00,269.344, 441.952,336.80, 383.936,377.504z M 256.00,160.00
151
- c 17.696,0.00, 32.00,14.304, 32.00,32.00L 288.00,415.968 C 288.00,433.664, 273.696,448.00, 256.00,448.00C 238.336,448.00, 224.00,433.664, 224.00,415.968L 224.00,192.00 C 224.00,174.304, 238.336,160.00, 256.00,160.00z" data-tags="power" />
152
- <glyph unicode="&#xe021;" d="M0.00,207.968C 144.00,224.00, 224.00,304.00, 240.00,448.00c 16.032-144.00, 96.032-224.00, 240.064-240.032c-144.032-16.00-224.032-96.00-240.064-240.00C 224.00,111.968, 144.00,191.968,0.00,207.968z" data-tags="star" />
153
- <glyph unicode="&#xe023;" d="M 160.00,288.00C 142.336,288.00, 128.00,273.696, 128.00,256.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 177.664,288.00, 160.00,288.00z M 256.00,192.00
154
- c-17.664,0.00-32.00-14.304-32.00-32.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 273.664,192.00, 256.00,192.00z M 160.00,192.00c-17.664,0.00-32.00-14.304-32.00-32.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 177.664,192.00, 160.00,192.00z
155
- M 448.00,447.968l-64.00,0.00 C 384.00,465.664, 369.696,480.00, 352.00,480.00s-32.00-14.336-32.00-32.032L 192.00,447.968 C 192.00,465.664, 177.664,480.00, 160.00,480.00S 128.00,465.664, 128.00,447.968L 64.00,447.968 C 28.672,447.968,0.00,419.328,0.00,384.00l0.00-320.00
156
- c0.00-35.36, 28.672-64.00, 64.00-64.00l 384.00,0.00 c 35.328,0.00, 64.00,28.64, 64.00,64.00L 512.00,384.00 C 512.00,419.328, 483.328,447.968, 448.00,447.968z M 448.00,64.00L 64.00,64.00 L 64.00,384.00 l 64.00,0.00 c0.00-17.696, 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00l 128.00,0.00
157
- c0.00-17.696, 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00l 64.00,0.00 L 448.00,64.00 z M 352.00,288.00c-17.696,0.00-32.00-14.304-32.00-32.00s 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 369.696,288.00, 352.00,288.00z M 256.00,288.00
158
- C 238.336,288.00, 224.00,273.696, 224.00,256.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 273.664,288.00, 256.00,288.00z M 352.00,192.00c-17.696,0.00-32.00-14.304-32.00-32.00s 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 369.696,192.00, 352.00,192.00z" data-tags="calendar" />
159
- <glyph unicode="&#xe024;" d="M 459.136,263.52c-8.672,1.28-17.984,9.152-20.672,17.504l-13.056,31.616c-4.064,7.776-3.136,19.936, 2.176,26.976l 21.056,28.096
160
- c 5.312,7.04, 4.864,18.176-0.992,24.768L 424.512,415.68c-6.56,5.856-17.76,6.272-24.80,0.992l-28.064-21.12
161
- c-7.072-5.248-19.20-6.24-27.008-2.144L 313.056,406.432C 304.64,409.088, 296.736,418.432, 295.552,427.168L 290.56,461.92
162
- C 289.312,470.624, 281.152,478.496, 272.384,479.392C 272.384,479.392, 266.976,480.00, 256.00,480.00S 239.616,479.392, 239.616,479.392C 230.848,478.496, 222.656,470.624, 221.44,461.92
163
- L 216.448,427.168C 215.232,418.432, 207.36,409.088, 198.944,406.432L 167.36,393.408C 159.584,389.312, 147.456,390.304, 140.416,395.552l-28.128,21.12
164
- C 105.28,421.984, 94.08,421.536, 87.488,415.68L 64.384,392.544C 58.56,385.952, 58.112,374.784, 63.392,367.744L 84.48,339.648c 5.28-7.04, 6.24-19.20, 2.144-26.976
165
- L 73.60,281.024C 70.912,272.672, 61.60,264.80, 52.896,263.52L 18.144,258.624C 9.408,257.344, 1.536,249.184, 0.64,240.416c0.00,0.00-0.576-5.44-0.576-16.416
166
- c0.00-10.976, 0.576-16.448, 0.576-16.448c 0.928-8.736, 8.80-16.896, 17.504-18.144l 34.752-4.928C 61.60,183.232, 70.912,175.328, 73.60,166.976l 13.056-31.616
167
- c 4.096-7.808, 3.136-19.904-2.144-26.944l-21.088-28.128c-5.28-7.072-6.56-16.64-2.816-21.248c 3.712-4.608, 14.432-16.032, 14.464-16.032
168
- c0.00-0.064, 3.616-3.36, 8.00-7.328c 4.384-4.032, 22.24-9.60, 29.28-4.32l 28.128,21.056c 7.04,5.312, 19.168,6.272, 26.944,2.176L 198.944,41.60
169
- c 8.416-2.72, 16.288-12.00, 17.504-20.736l 4.992-34.752c 1.216-8.672, 9.408-16.64, 18.144-17.536c0.00,0.00, 5.44-0.576, 16.416-0.576
170
- s 16.384,0.576, 16.384,0.576c 8.736,0.896, 16.928,8.832, 18.176,17.536l 4.992,34.752c 1.184,8.736, 9.056,18.016, 17.504,20.736l 31.552,12.992
171
- c 7.808,4.096, 19.936,3.136, 27.008-2.112l 28.128-21.12c 7.072-5.28, 18.176-4.832, 24.80,0.96l 23.136,23.168
172
- c 5.824,6.592, 6.24,17.76, 0.928,24.80l-21.056,28.128c-5.312,7.04-6.24,19.136-2.176,26.944l 13.056,31.616
173
- c 2.688,8.384, 12.00,16.256, 20.672,17.504l 34.752,4.928c 8.672,1.248, 16.576,9.408, 17.504,18.144c0.00,0.00, 0.576,5.44, 0.576,16.448
174
- c0.00,10.976-0.576,16.416-0.576,16.416c-0.928,8.768-8.80,16.928-17.504,18.208L 459.136,263.52z M 256.00,160.00c-35.328,0.00-64.00,28.672-64.00,64.00
175
- c0.00,35.36, 28.672,64.00, 64.00,64.00c 35.296,0.00, 64.00-28.672, 64.00-64.00C 320.00,188.672, 291.328,160.00, 256.00,160.00z" data-tags="gear" />
176
- <glyph unicode="&#xe025;" d="M 384.00,348.512L 384.00,348.512l 64.00,0.00 c 17.696,0.00, 32.00-14.336, 32.00-32.00l0.00-320.00 c0.00-17.696-14.304-32.00-32.00-32.00L 112.00-35.488 c-44.192,0.00-80.00,35.808-80.00,80.00L 32.00,396.48
177
- c0.00,44.192, 35.808,80.032, 80.00,80.032L 448.00,476.512 c 17.696,0.00, 32.00-14.336, 32.00-32.00c0.00-17.696-14.304-32.032-32.00-32.032l-64.00,0.00 L 192.00,412.48 L 128.00,412.48 c-17.664,0.00-32.00-14.304-32.00-32.00s 14.336-32.00, 32.00-32.00l 64.00,0.00 l0.00-128.00
178
- l 32.00,32.00l 32.00-32.00l0.00,128.00 L 384.00,348.48 z" data-tags="book" />
179
- <glyph unicode="&#xe026;" d="M 32.00,32.00l0.00,96.00 l 64.00,0.00 l0.00-96.064 l 320.00,0.00 L 416.00,416.00 L 96.00,416.00 L 96.00,320.00 L 32.00,320.00 L 32.00,416.00 C 32.00,451.328, 60.672,480.00, 96.00,480.00l 320.00,0.00 C 451.36,480.00, 480.00,451.328, 480.00,416.00l0.00-384.00 c0.00-35.36-28.64-64.00-64.00-64.00L 96.00-32.00
180
- C 60.672-32.00, 32.00-3.36, 32.00,32.00z M 164.384,344.00c 11.616,11.136, 30.432,11.136, 42.048,0.00l 104.704-98.40c 3.264-3.104, 5.248-6.784, 6.752-10.592
181
- c 0.032-0.064, 0.032-0.096, 0.064-0.16C 319.072,231.936, 319.68,228.928, 319.776,225.856C 319.904,224.736, 320.00,223.648, 319.904,222.496
182
- C 319.84,221.152, 319.392,219.872, 319.072,218.528C 317.984,212.896, 315.744,207.424, 311.136,203.04L 206.432,104.64c-11.616-11.136-30.432-11.136-42.048,0.00
183
- c-11.584,11.136-11.584,29.12,0.00,40.256L 224.00,192.00L 64.00,192.00 C 46.944,192.00, 32.00,208.032, 32.00,224.32C 32.00,240.576, 46.944,256.00, 64.00,256.00l 160.00,0.00 L 164.384,303.776
184
- C 152.768,314.848, 152.768,332.928, 164.384,344.00z" data-tags="exit" />
185
- <glyph unicode="&#xe027;" d="M 448.00,352.00l-32.00,0.00 l0.00-320.00 c0.00,0.00-0.992-64.00-64.00-64.00c0.00,0.00-159.008,0.00-224.00,0.00s-64.00,64.00-64.00,64.00L 64.00,352.00 L 32.00,352.00 C 14.336,352.00,0.00,366.336,0.00,384.00s 14.336,32.00, 32.00,32.00l 128.00,0.00 l 32.00,0.00 L 192.00,432.00 C 192.00,458.528, 213.472,480.00, 240.00,480.00
186
- C 266.496,480.00, 288.00,458.528, 288.00,432.00L 288.00,416.00 l 32.00,0.00 l 128.00,0.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00S 465.696,352.00, 448.00,352.00z M 352.00,352.00L 128.00,352.00 l0.00-320.00 l 224.00,0.00 L 352.00,352.00 z M 192.00,320.00C 209.664,320.00, 224.00,305.664, 224.00,288.00l0.00-192.00 c0.00-17.696-14.336-32.00-32.00-32.00
187
- s-32.00,14.304-32.00,32.00L 160.00,288.00 C 160.00,305.664, 174.336,320.00, 192.00,320.00z M 288.00,320.00C 305.696,320.00, 320.00,305.664, 320.00,288.00l0.00-192.00 c0.00-17.696-14.304-32.00-32.00-32.00s-32.00,14.304-32.00,32.00L 256.00,288.00 C 256.00,305.664, 270.304,320.00, 288.00,320.00z" data-tags="trash" />
188
- <glyph unicode="&#xe028;" d="M 448.00,352.00c0.00,0.00-139.008,0.032-160.00,0.032S 243.008,416.00, 224.00,416.00S 64.00,416.00, 64.00,416.00C 28.672,416.00,0.00,387.36,0.00,352.00l0.00-320.032 c0.00-63.328, 64.00-64.00, 64.00-64.00l 384.00,0.00 c 35.328,0.00, 64.00,28.672, 64.00,64.00
189
- l0.00,256.00 C 512.00,323.328, 483.328,352.00, 448.00,352.00z M 448.032,31.968L 64.00,31.968 L 64.00,352.00 c0.00,0.00, 107.008,0.00, 127.008,0.00s 44.992-64.00, 64.00-64.00c 20.00,0.00, 193.024,0.00, 193.024,0.00L 448.032,31.968 z" data-tags="folder" />
190
- <glyph unicode="&#xe029;" d="M 447.712,480.032L 63.776,480.032 C 0.128,480.032,0.00,416.00,0.00,416.00l0.00-255.968 C0.00,160.032, 0.352,96.00, 64.00,96.00l 128.00,0.00 c0.00,0.00, 26.784-0.736, 36.672-11.968l 144.672-113.248
191
- c 2.368-1.888, 3.808-2.816, 5.216-2.816c 4.00,0.00, 5.184,2.752, 5.184,7.296l0.00,107.168 c0.00,7.552, 4.992,13.60, 11.712,13.60L 448.00,96.032
192
- c 62.656,0.00, 64.00,64.032, 64.00,64.032L 512.00,416.00 C 512.00,416.00, 511.36,480.032, 447.712,480.032z M 448.00,160.032l-128.00,0.00 l0.00-64.00 l-82.304,64.00L 64.00,160.032 L 64.00,416.00 l 384.00,0.00 L 448.00,160.032 z" data-tags="bubble" />
193
- <glyph unicode="&#xe02a;" d="M 437.024,405.024c-99.968,100.00-262.048,99.968-362.048,0.00c-99.968-99.936-99.968-262.048, 0.032-362.016
194
- c 99.968-99.968, 262.048-99.968, 362.016-0.032C 537.024,142.944, 537.024,305.056, 437.024,405.024z M 373.60,154.528
195
- c 13.76-13.76, 14.112-35.648, 0.864-48.928c-13.28-13.28-35.20-12.864-48.896,0.864L 256.032,175.968L 186.24,106.176
196
- c-13.76-13.728-35.648-14.112-48.896-0.864c-13.28,13.28-12.864,35.20, 0.832,48.928L 208.00,224.032L 138.176,293.856
197
- C 124.448,307.552, 124.064,329.44, 137.344,342.72C 150.592,356.00, 172.512,355.616, 186.24,341.888l 69.792-69.792l 69.536,69.536
198
- c 13.728,13.728, 35.616,14.112, 48.896,0.832c 13.248-13.28, 12.864-35.168-0.864-48.896L 304.096,224.032L 373.60,154.528z" data-tags="cross-inverted" />
199
- <glyph unicode="&#xe031;" d="M 256.00,480.032C 114.624,480.032,0.00,365.376,0.00,224.00c0.00-141.408, 114.624-256.032, 256.00-256.032S 512.00,82.592, 512.00,224.00C 512.00,365.376, 397.376,480.032, 256.00,480.032z
200
- M 382.112,191.648L 288.416,191.648 l0.00-93.76 c0.00-18.496-14.496-33.536-32.384-33.536s-32.384,15.04-32.384,33.536l0.00,93.76 l-94.08,0.00 C 111.072,191.648, 96.032,206.112, 96.032,224.00
201
- s 15.04,32.384, 33.536,32.384l 94.08,0.00 l0.00,94.08 C 223.648,368.992, 238.144,384.00, 256.032,384.00s 32.384-15.008, 32.384-33.536l0.00-94.08 l 93.728,0.00
202
- c 18.528,0.00, 33.536-14.528, 33.536-32.384S 400.672,191.648, 382.112,191.648z" data-tags="plus-inverted" />
203
- <glyph unicode="&#xe014;" d="M 448.00,31.936L 64.00,31.936 l0.00,384.00 l 160.00,0.00 l0.00,64.00 L 44.512,479.968C 19.936,479.968,0.00,460.00,0.00,435.424l0.00-422.976 c0.00-24.576, 19.936-44.512, 44.512-44.512l 422.976,0.00
204
- c 24.576,0.00, 44.512,19.936, 44.512,44.512L 512.00,191.936 l-64.00,0.00 L 448.00,31.936 z M 512.00,448.00c0.00,7.328-3.04,13.76-7.36,19.136c-0.672,0.864-1.024,1.856-1.792,2.656
205
- c-0.096,0.064-0.128,0.192-0.192,0.288c-0.192,0.16-0.224,0.416-0.416,0.608c-2.048,2.048-4.576,3.264-6.976,4.64
206
- c-1.056,0.608-1.92,1.504-3.04,1.984c-4.352,1.888-8.96,2.688-13.632,2.56c-0.064,0.00-0.128,0.032-0.192,0.032l-156.512,0.00
207
- C 303.392,479.936, 288.384,465.632, 288.384,448.00c0.00-17.60, 15.04-31.904, 33.568-31.904l 80.608,0.00 L 201.28,214.432c-12.416-12.384-12.416-32.384,0.00-44.736
208
- c 12.416-12.384, 32.512-12.384, 44.896,0.00l 201.984,201.76l0.00-81.60 c0.00-18.528, 14.304-33.536, 31.936-33.536C 497.728,256.32, 512.00,271.328, 512.00,289.856L 512.00,446.368
209
- c0.00,0.32-0.16,0.576-0.16,0.864C 511.84,447.488, 512.00,447.744, 512.00,448.00z" data-tags="export" />
210
- <glyph unicode="&#xe02b;" d="M 256.00,480.00C 114.61,480.00,0.00,365.369,0.00,223.957c0.00-141.369, 114.61-255.979, 256.00-255.979c 141.39,0.00, 256.00,114.61, 256.00,255.979C 512.00,365.369, 397.39,480.00, 256.00,480.00z
211
- M 256.00,70.379c-84.814,0.00-153.60,68.764-153.60,153.579c0.00,84.857, 68.786,153.621, 153.60,153.621c 84.836,0.00, 153.60-68.764, 153.60-153.621C 409.60,139.143, 340.836,70.379, 256.00,70.379z" data-tags="radio-unchecked" />
212
- <glyph unicode="&#xe032;" d="M 256.00,480.00C 114.61,480.00,0.00,365.412,0.00,224.021c0.00-141.412, 114.61-256.043, 256.00-256.043c 141.39,0.00, 256.00,114.631, 256.00,256.043C 512.00,365.412, 397.39,480.00, 256.00,480.00z
213
- M 256.00,70.40c-84.814,0.00-153.60,68.786-153.60,153.621c0.00,84.793, 68.786,153.543, 153.60,153.543c 84.836,0.00, 153.60-68.764, 153.60-153.543C 409.60,139.186, 340.836,70.40, 256.00,70.40z M 256.00,300.80
214
- C 213.582,300.80, 179.20,266.418, 179.20,224.021C 179.20,181.582, 213.582,147.20, 256.00,147.20c 42.418,0.00, 76.80,34.382, 76.80,76.821C 332.80,266.418, 298.418,300.80, 256.00,300.80z" data-tags="radio-checked" />
215
- <glyph unicode="&#xe033;" d="M 128.00,480.00l 256.00,0.00 c 70.713,0.00, 128.00-57.287, 128.00-128.00l0.00-256.021 c0.00-70.713-57.287-128.00-128.00-128.00L 128.00-32.021 c-70.677,0.00-128.00,57.287-128.00,128.00L0.00,352.00 C0.00,422.713, 57.323,480.00, 128.00,480.00z" data-tags="checkbox-unchecked" />
216
- <glyph unicode="&#xe034;" d="M 384.00,480.00L 128.00,480.00 C 57.323,480.00,0.00,422.677,0.00,352.00l0.00-256.021 c0.00-70.713, 57.323-128.00, 128.00-128.00l 256.00,0.00 c 70.713,0.00, 128.00,57.287, 128.00,128.00L 512.00,352.00 C 512.00,422.677, 454.699,480.00, 384.00,480.00z M 421.433,276.046
217
- l-183.652-183.652c-3.74-3.74-9.849-3.74-13.568,0.00l-27.157,27.371c-3.74,3.783-9.849,9.963-13.568,13.724l-63.154,66.382
218
- c-1.849,1.892-2.837,4.473-2.837,6.933c0.00,2.503, 1.003,4.864, 2.837,6.756l 27.669,24.953c 1.87,1.913, 4.373,2.816, 6.855,2.816
219
- c 2.425,0.00, 4.864-0.946, 6.734-2.816l 62.62-63.90c 3.705-3.819, 9.828-3.819, 13.568,0.00l 142.948,142.514c 3.74,3.74, 9.828,3.74, 13.547,0.00
220
- l 27.157-27.392C 425.138,286.009, 425.138,279.787, 421.433,276.046z" data-tags="checkbox-checked" />
221
- <glyph unicode="&#xe035;" d="M 346.484,277.364c-18.711,0.00-77.615,1.396-126.813,2.071c 15.244,50.595, 28.416,96.303, 33.257,128.884c 69.306,0.00, 154.554-0.698, 167.703-0.698
222
- c 21.481,0.00, 31.884,7.633, 39.494,27.02c 4.841,12.474, 14.545,30.487, 14.545,36.026c0.00,11.078-6.935,14.545-18.711,14.545c-31.884,0.00-124.719,3.468-207.919,3.468
223
- C 110.895,488.681,0.00,441.553,0.00,369.501c0.00-18.013, 7.633-30.487, 15.942-30.487c 2.071,0.00, 4.841,0.698, 6.935,2.769c 29.789,26.345, 56.832,62.371, 135.843,66.513
224
- c-16.64-38.097-34.653-90.065-50.595-144.826c-65.14-17.315-92.858-42.938-92.858-64.442c0.00-4.166, 3.468-6.935, 9.007-6.935c 15.942,0.00, 39.494,2.071, 66.537,5.539
225
- c-18.013-69.306-29.789-135.145-29.789-171.148c0.00-42.263, 0.698-67.212, 23.552-67.212c 38.819,0.00, 79.709,6.935, 79.709,40.89c0.00,63.767, 16.64,138.589, 36.026,209.268
226
- c 6.237,0.698, 12.474,0.698, 18.711,0.698c 18.013,0.00, 93.556-4.841, 105.332-4.841c 13.172,0.00, 19.409,7.633, 24.25,25.623c 2.769,11.078, 9.007,27.718, 9.007,33.257
227
- C 357.585,274.548, 353.42,277.364, 346.484,277.364z M 1316.841,131.119c-5.539,0.00-14.545-6.237-24.948-20.108c-22.179-29.114-81.082-63.767-97.722-63.767
228
- c-11.055,0.00-15.919,18.735-15.919,47.825c0.00,29.789, 5.539,94.231, 14.545,147.596c 20.108,0.00, 58.205-3.468, 69.306-3.468c 10.403,0.00, 19.409,38.819, 19.409,47.825
229
- c0.00,8.308-0.698,11.078-7.633,11.078c-15.244,0.00-36.724,0.698-68.608,1.396l 28.393,49.897c-6.935,29.114-15.22,56.134-45.033,56.134
230
- c-24.948,0.00-48.524-44.358-67.91-106.729c-15.244-0.698-28.393-0.698-37.423-0.698c-15.919-18.711-17.99-29.789-17.99-51.968c0.00-4.166, 2.769-6.935, 8.285-6.935
231
- l 31.209,0.00 c-8.192-36.096-13.708-73.775-15.686-108.567c-19.735-13.777-74.496-83.363-100.119-83.363c-10.38,0.00-14.545,24.948-14.545,56.832
232
- c0.00,35.351, 0.698,63.767, 5.539,90.065c 10.403,17.315, 19.409,33.955, 28.393,54.761c0.00,22.877-38.097,60.998-66.513,60.998c-9.728,0.00-17.315-7.633-23.575-20.108
233
- c-4.841,2.769-11.776,4.841-20.783,6.935c-14.545,2.769-28.393,4.166-41.588,4.166c-57.507,0.00-107.404-36.026-139.264-74.147
234
- c-29.30-35.607-45.079-81.152-49.664-125.673c-23.11-27.648-52.62-53.108-96.582-53.108c-34.653,0.00-59.601,23.575-59.601,74.822l0.00,27.718
235
- c 86.621,112.943, 192.652,188.486, 192.652,273.711c0.00,38.819-24.25,61.649-63.767,61.649c-142.755,0.00-227.281-210.641-227.281-380.393c0.00-99.095, 71.377-137.914, 147.619-137.914
236
- c 43.055,0.00, 85.62,25.693, 114.269,58.927c 15.942-38.935, 52.387-62.371, 99.863-62.371c 63.791,0.00, 99.793,28.393, 124.044,67.887c 7.633-38.121, 22.877-64.442, 49.199-64.442
237
- c 53.807,0.00, 115.06,43.171, 143.407,90.042c 6.586-52.666, 25.786-90.042, 61.766-90.042c 75.567,0.00, 173.94,79.011, 173.94,139.264
238
- C 1326.545,122.81, 1323.776,131.119, 1316.841,131.119z M 616.82,418.001c 8.308,0.00, 11.776-4.841, 11.776-15.244c0.00-42.961-46.429-70.004-108.777-165.609
239
- C 539.881,352.186, 587.008,418.001, 616.82,418.001z M 892.672,120.739c-16.64-58.903-54.063-82.455-85.946-82.455c-31.185,0.00-39.494,26.345-39.494,53.364
240
- c0.00,93.556, 72.076,149.667, 139.287,162.141C 896.14,209.431, 893.347,149.178, 892.672,120.739z" horiz-adv-x="1326.5454545454545" data-tags="flat" />
241
- <glyph unicode="&#xe022;" d="M0.00,288.224L0.00,342.08 c0.00,22.976, 19.104,41.568, 42.656,41.568l 53.696,0.00 L 96.352,428.864
242
- c0.00,10.528, 10.784,51.104, 24.096,51.104L 168.64,479.968 c 13.312,0.00, 24.096-40.576, 24.096-51.104l0.00-45.216 l 159.616,0.00 L 352.352,428.864 c0.00,10.528, 10.816,51.104, 24.096,51.104l 48.192,0.00
243
- c 13.312,0.00, 24.096-40.576, 24.096-51.104l0.00-45.216 l 20.64,0.00 c 23.584,0.00, 42.688-18.592, 42.688-41.568l0.00-53.888 L0.00,288.192 z M 512.032,255.68l0.00-246.112
244
- c0.00-22.976-19.104-41.60-42.688-41.60L 42.656-32.032 c-23.552,0.00-42.656,18.624-42.656,41.60L0.00,255.68 L 512.032,255.68 z" data-tags="calendar-solid" />
245
- <glyph unicode="&#xe036;" d="M 512.00,224.00l-190.40-64.00l-5.152-192.00L 193.60,120.48L0.00,65.792L 114.496,224.00L0.00,382.208l 193.60-54.656L 316.448,480.00l 5.152-192.00L 512.00,224.00z" data-tags="star" />
246
- <glyph unicode="&#xe037;" d="M 384.00,63.776c 17.696,0.00, 32.00,14.336, 32.00,32.032s-14.304,32.032-32.00,32.032
247
- s-32.00-14.336-32.00-32.032S 366.304,63.776, 384.00,63.776z M 469.376,384.00L 42.688,384.00 c-23.584,0.00-42.688-19.104-42.688-42.688l0.00-330.592
248
- c0.00-23.584, 19.104-42.72, 42.688-42.72l 426.688,0.00 c 23.552,0.00, 42.656,19.136, 42.656,42.72L 512.032,341.312 C 512.032,364.896, 492.928,384.00, 469.376,384.00z
249
- M 448.032,32.096L 64.00,32.096 l0.00,127.776 l 384.032,0.00 L 448.032,32.096 z M 448.032,255.936L 64.00,255.936 l0.00,64.032 l 384.032,0.00 L 448.032,255.936 z" data-tags="credit-card" />
250
- <glyph unicode="&#xe038;" d="M 469.856,437.856c-56.224,56.224-147.392,56.224-203.648-0.032l-224.00-224.00c-56.256-56.256-56.256-147.424-0.032-203.648
251
- s 147.392-56.256, 203.648,0.00l 47.424,46.08c-25.504,0.576-48.768,8.864-68.48,22.336l-24.224-23.20c-31.264-31.264-81.92-31.264-113.152,0.00
252
- c-31.232,31.232-31.232,81.92, 0.032,113.152l 224.00,224.00c 31.264,31.264, 81.92,31.264, 113.12,0.00c 31.264-31.264, 31.296-81.888, 0.032-113.12L 312.96,167.04
253
- c-9.376-9.376-24.576-9.376-33.952,0.00s-9.376,24.576,0.00,33.952l 84.288,85.088c 6.24,6.24, 6.272,16.384,0.00,22.624l-22.624,22.624
254
- c-6.24,6.24-16.384,6.24-22.624,0.00l-84.288-85.088c-34.368-34.368-34.368-90.08,0.00-124.448c 34.368-34.368, 90.08-34.368, 124.448,0.00l 111.616,112.416
255
- C 526.048,290.432, 526.048,381.632, 469.856,437.856z" data-tags="clip" />
256
- <glyph unicode="&#xe039;" d="M 469.824,437.824C 442.592,465.024, 406.432,480.00, 368.00,480.00c-38.464,0.00-74.624-14.976-101.824-42.176
257
- c0.00,0.00-90.848-90.816-96.064-95.968c-27.104-27.168-42.048-63.36-42.112-102.048c 0.064-38.40, 15.04-74.496, 42.176-101.632l 11.68-11.712
258
- c 3.136-3.136, 7.264-4.672, 11.328-4.672c 4.096,0.00, 8.192,1.568, 11.328,4.672l 22.624,22.624c 6.24,6.24, 6.24,16.384,0.00,22.624l-11.712,11.712
259
- c-30.688,30.688-31.104,81.024-0.896,112.256c 0.928,0.928, 96.928,96.896, 96.928,96.896C 326.56,407.68, 346.624,416.00, 368.00,416.00
260
- s 41.44-8.32, 56.576-23.392l0.00-0.032 c 31.264-31.296, 31.264-81.888,0.00-113.12l-4.928-4.928C 427.36,253.728, 431.968,231.424, 432.00,208.00
261
- c0.00-4.256-0.608-8.352-0.832-12.512l 38.656,38.688C 526.048,290.432, 526.016,381.632, 469.824,437.824z M 330.08,321.568
262
- c-3.104,3.136-7.232,4.672-11.296,4.672c-4.128,0.00-8.224-1.568-11.328-4.672l-22.624-22.624c-6.272-6.24-6.272-16.384,0.00-22.624
263
- l 11.68-11.712c 30.688-30.688, 31.136-81.024, 0.928-112.256c-0.928-0.928-96.928-96.896-96.928-96.896C 185.44,40.32, 165.376,32.00, 143.968,32.00
264
- c-21.344,0.00-41.408,8.32-56.544,23.392l0.00,0.032 c-31.264,31.296-31.264,81.888-0.032,113.12l 4.96,4.928C 84.608,194.272, 80.00,216.576, 80.00,240.00
265
- c0.00,4.256, 0.576,8.352, 0.832,12.512l-38.656-38.688c-56.256-56.256-56.224-147.424,0.00-203.616C 69.408-17.024, 105.568-32.00, 144.00-32.00
266
- s 74.592,14.976, 101.824,42.176c0.00,0.00, 90.848,90.816, 96.064,95.968c 27.104,27.168, 42.048,63.36, 42.112,102.048c-0.064,38.40-15.072,74.496-42.176,101.632
267
- L 330.08,321.568z" data-tags="link" />
268
- <glyph unicode="&#xe03b;" d="M 128.00,480.00l-96.00,0.00 c-17.664,0.00-32.00-14.304-32.00-32.00l0.00-448.00 c0.00-17.696, 14.336-32.00, 32.00-32.00l 96.00,0.00
269
- c 17.664,0.00, 32.00,14.304, 32.00,32.00l0.00,448.00 C 160.00,465.696, 145.664,480.00, 128.00,480.00z M 448.00,480.00l-96.00,0.00 c-17.696,0.00-32.00-14.304-32.00-32.00l0.00-448.00 c0.00-17.696, 14.304-32.00, 32.00-32.00l 96.00,0.00
270
- c 17.696,0.00, 32.00,14.304, 32.00,32.00l0.00,448.00 C 480.00,465.696, 465.696,480.00, 448.00,480.00z" data-tags="pause" />
271
- <glyph unicode="&#xe03c;" d="M 440.00,237.888l-416.00,240.00c-4.928,2.848-11.072,2.848-16.00,0.00C 3.072,475.008, 0.00,469.728, 0.00,464.00l0.00-480.00
272
- c0.00-5.728, 3.072-11.008, 8.00-13.856C 10.464-31.296, 13.248-32.00, 16.00-32.00s 5.536,0.704, 8.00,2.144l 416.00,240.00c 4.928,2.848, 8.00,8.128, 8.00,13.856
273
- S 444.928,235.008, 440.00,237.888z" data-tags="play" />
274
- <glyph unicode="&#xe03d;" d="M 506.368,194.08l-120.608,176.00c-5.984,8.704-15.84,13.92-26.40,13.92
275
- L 32.00,384.00 c-17.696,0.00-32.00-14.336-32.00-32.00l0.00-352.00 c0.00-17.664, 14.304-32.00, 32.00-32.00l 327.36,0.00 c 10.56,0.00, 20.448,5.184, 26.40,13.92l 120.608,176.00
276
- C 513.888,168.80, 513.888,183.20, 506.368,194.08z M 368.00,128.00c-26.496,0.00-48.00,21.504-48.00,48.00s 21.504,48.00, 48.00,48.00s 48.00-21.504, 48.00-48.00
277
- S 394.496,128.00, 368.00,128.00z" data-tags="tag" />
278
- <glyph unicode="&#xe03e;" d="M 373.376,480.00L 43.104,480.00 c-23.776,0.00-43.104-19.072-43.104-32.00l0.00-426.688
279
- c0.00-34.208, 19.328-53.312, 43.104-53.312l 330.272,0.00 c 23.52,0.00, 42.624,19.104, 42.624,42.656L 416.00,437.344 C 416.00,460.928, 396.896,480.00, 373.376,480.00z M 224.00,64.00
280
- l-128.00,0.00 c-17.696,0.00-32.00,14.304-32.00,32.00s 14.304,32.00, 32.00,32.00l 128.00,0.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00S 241.696,64.00, 224.00,64.00z M 320.00,192.00l-224.00,0.00 c-17.696,0.00-32.00,14.304-32.00,32.00
281
- s 14.304,32.00, 32.00,32.00l 224.00,0.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00S 337.696,192.00, 320.00,192.00z M 320.00,320.00l-224.00,0.00 c-17.696,0.00-32.00,14.304-32.00,32.00s 14.304,32.00, 32.00,32.00l 224.00,0.00
282
- c 17.696,0.00, 32.00-14.304, 32.00-32.00S 337.696,320.00, 320.00,320.00z" data-tags="document" />
283
- <glyph unicode="&#xe03a;" d="M 469.376-32.00L 42.688-32.00 c-23.584,0.00-42.688,18.624-42.688,41.632L0.00,342.368 C0.00,365.376 19.104,384.00 42.688,384.00L 469.376,384.00
284
- c 23.552,0.00, 42.656-18.624, 42.656-41.632l0.00-332.736 C 512.032-13.376, 492.928-32.00, 469.376-32.00z M 448.032,320.00L 64.00,320.00 l0.00-255.904 c0.00,0.00, 32.00,32.032, 64.00,64.032
285
- c 32.00,32.032, 64.00,0.00, 64.00,0.00l 32.00-32.00c0.00,0.00, 59.36,60.384, 96.00,96.064c 33.44,33.472, 64.00,0.00, 64.00,0.00l 64.00-64.064L 448.032,320.00z M 160.00,192.00c-17.664,0.00-32.00,14.336-32.00,31.968
286
- c0.00,17.696, 14.336,32.032, 32.00,32.032s 32.00-14.336, 32.00-32.032C 192.00,206.336 177.664,192.00 160.00,192.00z" data-tags="image" />
287
- <glyph unicode="&#xe03f;" d="M 482.752,480.00L 29.248,480.00 C 13.184,480.00, 0.00,466.816, 0.00,450.752l0.00-453.504 C 0.00-18.816, 13.184-32.00, 29.248-32.00l 453.504,0.00
288
- C 498.816-32.00, 512.00-18.816, 512.00-2.752L 512.00,450.752 C 512.00,466.816, 498.816,480.00, 482.752,480.00z M 434.56,192.792l-70.312,0.00 l0.00-188.248 l-71.68,0.00 L 292.568,192.792 L 242.776,192.792 L 242.776,260.568 l 49.752,0.00
289
- c0.00,0.00,0.00,27.776,0.00,57.896c0.00,45.504, 29.44,87.296, 97.192,87.296c 27.352,0.00, 47.68-2.664, 47.68-2.664l-1.624-63.272c0.00,0.00-20.672,0.192-43.264,0.192
290
- c-24.448,0.00-28.328-11.264-28.328-29.952c0.00-2.304,0.00-3.136,0.00-3.20c0.00-5.248,0.00-17.96,0.00-46.312l 73.512,0.00 L 434.56,192.792z" data-tags="facebook" />
291
- <glyph unicode="&#xe040;" d="M 83.488,415.264L 83.488,416.00 C 83.36,415.648, 83.20,415.424, 83.072,415.264L 83.488,415.264 zM 508.64,288.832c0.00,41.184-33.12,74.624-73.984,74.624C 376.384,365.952, 316.80,367.04, 256.00,366.944
292
- C 195.20,367.008, 135.616,365.952, 77.344,363.456c-40.80,0.00-73.952-33.44-73.952-74.624C 0.96,256.16-0.096,223.584,0.00,190.944
293
- c-0.096-32.608, 0.96-65.248, 3.392-97.92c0.00-41.184, 33.12-74.624, 73.952-74.624C 135.552,15.968, 195.20,14.848, 256.00,14.976
294
- c 60.736-0.128, 120.352,0.992, 178.624,3.424c 40.80,0.00, 73.952,33.44, 73.952,74.624c 2.496,32.672, 3.52,65.312, 3.424,97.92
295
- C 512.096,223.584, 511.072,256.192, 508.64,288.832z M 192.032,78.976l0.00,224.00 l 160.00-112.00L 192.032,78.976z" data-tags="youtube" />
296
- <glyph unicode="&#xe041;" d="M 437.184,415.904C 366.016,418.24, 317.888,377.984, 292.64,294.976c 12.96,5.408, 25.632,8.16, 37.92,8.16
297
- c 25.984,0.00, 37.44-14.72, 34.336-44.224c-1.504-17.856-12.96-43.84-34.336-77.984C 309.056,146.784, 292.992,129.728, 282.368,129.728
298
- c-13.824,0.00-26.432,26.336-37.952,79.104C 240.576,224.352, 233.664,263.904, 223.776,327.552c-9.248,58.944-33.728,86.432-73.472,82.56
299
- C 133.504,408.576, 108.288,393.056, 74.688,363.616C 50.112,341.088, 25.28,318.592,0.00,296.096l 24.064-31.392c 23.008,16.384, 36.448,24.448, 40.16,24.448
300
- c 17.664,0.00, 34.08-27.872, 49.376-83.68c 13.792-51.264, 27.584-102.40, 41.376-153.632c 20.608-55.776, 45.92-83.712, 75.68-83.712
301
- c 48.16,0.00, 107.168,45.728, 176.704,137.216c 67.296,87.616, 102.016,156.672, 104.384,207.136C 514.848,379.872, 489.984,414.40, 437.184,415.904z" data-tags="vimeo" />
302
- <glyph unicode="&#xe042;" d="M 83.488,479.264L 83.488,480.00 C 83.36,479.648, 83.20,479.424, 83.072,479.264L 83.488,479.264 zM 512.00,413.696c-18.848-8.384-39.136-14.016-60.384-16.608c 21.728,12.992, 38.368,33.664, 46.24,58.112
303
- c-20.352-12.032-42.816-20.736-66.688-25.504c-19.232,20.448-46.496,33.184-76.704,33.184c-57.984,0.00-105.024-47.072-105.024-105.056
304
- c0.00-8.192, 0.928-16.256, 2.72-23.936c-87.296,4.448-164.704,46.208-216.512,109.76C 26.592,428.224, 21.408,410.144, 21.408,390.944
305
- c0.00-36.48, 18.56-68.608, 46.72-87.456C 50.912,304.032, 34.72,308.768, 20.544,316.64c0.00-0.448,0.00-0.832,0.00-1.344c0.00-50.912, 36.224-93.344, 84.256-103.008
306
- C 96.00,209.888, 86.72,208.608, 77.152,208.608c-6.752,0.00-13.344,0.64-19.776,1.888c 13.344-41.76, 52.16-72.128, 98.112-72.928
307
- c-35.936-28.192-81.248-44.992-130.432-44.992c-8.48,0.00-16.832,0.512-25.056,1.504c 46.496-29.824, 101.696-47.232, 161.024-47.232
308
- c 193.216,0.00, 298.88,160.064, 298.88,298.912c0.00,4.576-0.096,9.088-0.288,13.632C 480.128,374.144, 497.952,392.64, 512.00,413.696z" data-tags="twitter" />
309
- <glyph unicode="&#xe043;" d="M 256.00,480.00C 114.592,480.00,0.00,365.376,0.00,224.00s 114.592-256.00, 256.00-256.00s 256.00,114.624, 256.00,256.00S 397.408,480.00, 256.00,480.00z M 253.216,286.016c-8.576,0.00-15.488-7.008-15.488-15.52
310
- L 237.664,177.088c-0.512-35.744-29.568-64.576-65.408-64.576c-36.16,0.00-65.472,29.312-65.472,65.504c0.00,0.48,0.00,40.64,0.00,40.64l 50.048,0.00 L 156.832,178.56
311
- c0.00-8.608, 6.976-15.456, 15.488-15.456c 8.576,0.00, 15.488,6.944, 15.488,15.456L 187.808,273.152 c 1.28,35.072, 30.016,63.136, 65.344,63.136
312
- c 35.456,0.00, 64.32-28.288, 65.376-63.488l0.00-20.672 L 288.704,243.232L 268.672,252.544L 268.672,270.528 C 268.704,279.04, 261.792,286.016, 253.216,286.016z M 399.712,178.016
313
- c0.00-36.192-29.312-65.504-65.504-65.504c-36.00,0.00-65.184,28.992-65.504,64.864L 268.704,218.208 l 20.00-9.312l 29.888,8.864l0.00-41.12
314
- c0.00-8.608, 6.944-15.488, 15.488-15.488c 8.544,0.00, 15.456,6.944, 15.456,15.488L 349.536,218.624 l 50.08,0.00 C 399.712,218.624, 399.712,178.464, 399.712,178.016z" data-tags="stumbleupon" />
315
- <glyph unicode="&#xe044;" d="M 90.368,28.96c 39.424,56.80, 104.864,94.112, 179.264,94.112c 67.712,0.00, 128.064-30.976, 168.128-79.328
316
- C 483.616,90.016, 512.00,153.696, 512.00,224.00c0.00,141.376-114.624,256.00-256.00,256.00S0.00,365.376,0.00,224.00C0.00,145.856, 35.136,75.936, 90.368,28.96z M 392.80,147.232
317
- c-3.68-8.32-10.368-9.984-18.176-6.368c-34.048,15.744-72.00,24.608-112.00,24.608c-41.12,0.00-80.00-9.28-114.752-25.856
318
- c-3.744-1.824-11.936-2.56-15.616,8.064c-3.68,10.56, 2.112,16.64, 5.504,18.112c 37.984,17.76, 80.192,27.84, 124.864,27.84
319
- c 43.872,0.00, 86.048-8.352, 122.816-26.912C 391.264,163.776, 396.576,155.456, 392.80,147.232z M 414.624,212.608c-2.688-3.68-6.816-6.24-11.68-6.24
320
- c-1.376,0.00-2.56,0.416-3.808,0.736c-41.824,18.432-87.936,28.832-136.512,28.832c-48.256,0.00-94.048-10.208-135.616-28.416
321
- C 125.504,206.976, 123.936,206.528, 122.24,206.528c-4.928,0.00-9.152,2.688-11.776,6.496l-2.752,8.32C 107.776,225.664, 109.76,229.408, 112.736,232.032
322
- c 45.792,20.576, 96.448,32.128, 149.888,32.128c 53.408,0.00, 104.032-11.552, 149.824-32.128c 3.072-2.56, 4.96-6.432, 5.088-10.752L 414.624,212.608z
323
- M 94.112,315.968C 146.24,336.96, 202.976,348.704, 262.624,348.704c 59.008,0.00, 115.328-11.488, 167.008-32.128c 7.008-3.552, 11.872-10.624, 11.872-19.04
324
- c0.00-11.872-9.632-21.504-21.504-21.504c-1.696,0.00-3.264,0.416-4.80,0.704c-47.136,19.04-98.624,29.60-152.576,29.60
325
- c-54.016,0.00-105.568-10.56-152.736-29.664C 108.384,276.416, 106.88,276.064, 105.248,276.064c-11.872,0.00-21.504,9.632-21.504,21.504
326
- C 83.744,305.44, 87.936,312.224, 94.112,315.968z M 269.632,38.496c-43.328,0.00-81.728-20.896-106.24-52.96C 192.128-25.632, 223.328-32.00, 256.032-32.00
327
- c 40.544,0.00, 78.688,9.664, 112.704,26.40C 344.256,21.44, 308.928,38.496, 269.632,38.496z" data-tags="spotify" />
328
- <glyph unicode="&#xe045;" d="M 83.456,464.288L 83.456,465.024 c-0.128-0.352-0.32-0.576-0.448-0.736L 83.456,464.288 zM 490.592,186.944C 492.48,199.008, 493.536,211.36, 493.536,224.00c0.00,131.20-106.368,237.568-237.568,237.568
329
- c-12.576,0.00-24.992-1.056-37.056-2.944C 197.024,472.192, 171.232,480.00, 143.52,480.00C 64.256,480.00,0.00,415.744,0.00,336.448c0.00-27.68, 7.84-53.472, 21.376-75.36
330
- C 19.488,248.992, 18.464,236.64, 18.464,224.00c0.00-131.20, 106.304-237.472, 237.536-237.472c 12.608,0.00, 24.992,0.96, 37.088,2.88c 21.952-13.504, 47.68-21.376, 75.36-21.376
331
- c 79.264,0.00, 143.52,64.288, 143.52,143.52C 511.968,139.264, 504.16,165.024, 490.592,186.944z M 368.704,116.00c-10.016-14.496-24.768-25.824-44.064-33.952
332
- c-19.328-8.128-42.176-12.192-68.608-12.192c-31.584,0.00-57.792,5.504-78.464,16.672c-14.656,8.00-26.56,18.752-35.68,32.128
333
- c-9.184,13.408-13.856,26.496-13.856,39.328c0.00,7.488, 2.88,14.048, 8.48,19.392C 142.208,182.784, 149.504,185.504, 158.08,185.504
334
- c 7.04,0.00, 13.056-2.112, 18.016-6.304C 180.992,174.976, 185.12,168.864, 188.48,160.80c 4.00-9.312, 8.384-17.088, 13.024-23.36
335
- c 4.672-6.112, 11.104-11.328, 19.52-15.328c 8.32-4.064, 19.424-6.048, 33.248-6.048c 19.008,0.00, 34.368,4.16, 46.048,12.224
336
- c 11.808,8.224, 17.504,18.112, 17.504,30.144c0.00,9.60-3.072,17.184-9.312,23.136c-6.368,6.016-14.496,10.56-24.672,13.76
337
- c-10.144,3.264-23.84,6.688-40.96,10.272C 219.936,210.56, 200.704,216.448, 185.152,223.136C 169.568,229.888, 157.152,239.072, 147.936,250.72
338
- C 138.688,262.40, 134.08,276.992, 134.08,294.304c0.00,16.448, 4.832,31.20, 14.56,44.032C 158.40,351.20, 172.48,361.024, 190.752,367.904
339
- c 18.24,6.848, 39.744,10.208, 64.352,10.208c 19.68,0.00, 36.704-2.208, 51.136-6.816c 14.368-4.576, 26.368-10.56, 35.936-18.08
340
- c 9.60-7.552, 16.576-15.456, 20.992-23.872c 4.448-8.384, 6.688-16.608, 6.688-24.544c0.00-7.392-2.912-14.144-8.512-20.064
341
- c-5.632-5.952-12.736-8.896-21.152-8.864c-7.52,0.00-13.472,1.728-17.60,5.408C 318.592,284.80, 314.40,290.528, 309.856,298.464
342
- C 304.128,309.472, 297.248,318.048, 289.248,324.256C 281.472,330.24, 268.608,333.44, 250.72,333.408c-16.576,0.00-29.824-3.328-39.776-9.984
343
- C 200.896,316.672, 196.096,308.928, 196.064,299.776c 0.032-5.728, 1.664-10.56, 4.992-14.688C 204.416,280.864, 209.088,277.312, 215.104,274.24
344
- C 221.12,271.20, 227.232,268.736, 233.376,267.072c 6.208-1.76, 16.544-4.32, 30.88-7.68C 282.208,255.488, 298.56,251.20, 313.216,246.432s 27.136-10.464, 37.44-17.28
345
- c 10.40-6.816, 18.528-15.456, 24.384-25.92c 5.824-10.496, 8.704-23.328, 8.704-38.368C 383.872,146.752, 378.816,130.432, 368.704,116.00z" data-tags="skype" />
346
- <glyph unicode="&#xe046;" d="M 83.488,464.32L 83.488,465.056 C 83.36,464.704, 83.20,464.48, 83.072,464.32L 83.488,464.32 zM 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00c0.00-104.768, 63.072-194.848, 153.248-234.464c-0.672,17.888-0.16,39.36, 4.448,58.816
347
- C 162.624,69.088, 190.624,187.84, 190.624,187.84S 182.464,204.16, 182.464,228.32c0.00,37.984, 21.984,66.272, 49.344,66.272c 23.328,0.00, 34.56-17.504, 34.56-38.432
348
- c0.00-23.36-14.944-58.368-22.624-90.816c-6.40-27.20, 13.632-49.312, 40.384-49.312c 48.512,0.00, 81.184,62.304, 81.184,136.064
349
- c0.00,56.096-37.824,98.112-106.528,98.112c-77.664,0.00-126.016-57.952-126.016-122.624c0.00-22.272, 6.56-38.016, 16.896-50.208
350
- c 4.704-5.568, 5.408-7.808, 3.68-14.208c-1.248-4.736-4.032-16.064-5.216-20.576c-1.728-6.496-6.976-8.80-12.80-6.368
351
- C 99.552,150.784, 82.88,189.984, 82.88,233.984c0.00,72.704, 61.312,159.936, 183.008,159.936c 97.696,0.00, 162.048-70.752, 162.048-146.624
352
- c0.00-100.448-55.872-175.392-138.112-175.392c-27.68,0.00-53.696,14.944-62.56,31.872c0.00,0.00-14.88-59.04-17.984-70.368
353
- c-5.44-19.744-16.064-39.392-25.76-54.816C 206.464-28.256, 230.816-31.936, 256.00-31.936c 141.376,0.00, 256.00,114.624, 256.00,255.968S 397.376,480.00, 256.00,480.00z" data-tags="pinterest" />
354
- <glyph unicode="&#xe047;" d="M 127.104,457.44C 61.216,431.392, 16.48,381.088, 3.968,313.376c-7.68-41.60-4.736-86.976, 13.60-125.792
355
- C 21.664,178.944, 26.56,170.656, 32.416,162.944c 2.88-3.712, 5.888-7.328, 9.152-10.72c 5.856,2.048, 11.456,4.672, 16.832,7.744
356
- C 80.704,172.544, 97.088,191.872, 116.16,208.16C 52.48,281.984, 120.00,373.472, 204.544,393.92c 78.624,19.008, 185.248-13.792, 209.056-94.688
357
- c 9.888-33.536, 3.36-70.56-23.904-94.88c-14.272-12.672-32.448-21.056-51.584-24.512c-11.264-1.984-22.752-2.336-34.016-1.184
358
- c-6.272,0.64-12.608,1.664-18.752,3.136c-10.464,2.496-19.776,2.144-19.776,13.44c0.00,29.504,0.00,59.008,0.00,88.512c0.00,14.752,0.00,29.504,0.00,44.256
359
- c0.00,8.992, 0.896,7.328-6.592,8.256C 252.96,336.96, 247.104,337.536, 241.152,338.016c-20.864,1.664-42.688,2.752-63.36-0.768
360
- C 170.016,335.872, 169.504,337.088, 169.504,328.704c0.00-6.816,0.00-13.632,0.00-20.384c0.00-16.576,0.00-33.056,0.00-49.632c0.00-49.44, 3.744-99.424, 1.728-148.736
361
- c-0.608-14.688-0.992-49.984-17.44-57.248c-19.104-8.448-35.936,9.376-53.568,13.12c 2.40-24.768-13.056-73.888, 15.776-86.368
362
- c 26.464-11.424, 56.896-15.648, 84.832-6.24c 58.432,19.84, 77.376,84.864, 69.984,138.368c 90.272-27.008, 187.68,18.112, 226.304,99.616
363
- c 27.456,58.048, 15.84,130.112-25.536,179.488C 394.08,483.136, 236.768,500.896, 127.104,457.44z" data-tags="path" />
364
- <glyph unicode="&#xe048;" d="M 424.288,205.12c 44.096,0.00, 79.84,35.584, 79.84,79.52s-35.744,79.552-79.84,79.552c-44.128,0.00-79.84-35.616-79.84-79.552
365
- S 380.16,205.12, 424.288,205.12M 431.36,186.624c-0.64,0.064-1.248,0.128-1.824,0.192C 429.088,186.88, 428.64,186.88, 428.16,186.88
366
- c-1.28,0.064-2.528,0.128-3.808,0.128L 424.32,187.008 l-0.096,0.00 c-1.312,0.00-2.592-0.064-3.84-0.128c-0.512,0.00-0.928,0.00-1.408-0.064
367
- c-0.608-0.064-1.152-0.128-1.792-0.192c-45.12-3.872-80.672-44.128-80.672-90.048l0.00-30.88 c0.00-4.384, 3.552-7.936, 8.00-7.936l 2.816,0.00 l 153.952,0.00
368
- l 2.848,0.00 c 4.416,0.00, 7.968,3.552, 7.968,7.936l0.00,30.88 C 512.032,142.496, 476.512,182.752, 431.36,186.624M 239.328,190.368c 39.616,0.00, 71.872,32.064, 71.872,71.616S 278.944,333.568, 239.328,333.568c-39.744,0.00-71.872-32.00-71.872-71.552
369
- S 199.552,190.368, 239.328,190.368M 245.632,173.76C 245.12,173.824, 244.576,173.888, 244.064,173.952c-0.448,0.00-0.864,0.00-1.312,0.064
370
- c-1.12,0.00-2.24,0.064-3.36,0.064L 239.264,174.08 L 239.20,174.08 c-1.12,0.00-2.24-0.064-3.392-0.064C 235.36,173.952, 234.976,173.952, 234.528,173.952
371
- C 233.984,173.888, 233.472,173.824, 232.928,173.76c-40.672-3.488-72.672-39.68-72.672-81.056l0.00-27.744 l0.00-0.064 c0.00-3.936, 3.232-7.136, 7.232-7.136l 2.496,0.00 l 138.496,0.00
372
- l 2.56,0.00 c 3.968,0.00, 7.20,3.20, 7.20,7.136l0.00,0.064 l0.00,27.744 C 318.24,134.048, 286.24,170.24, 245.632,173.76M 71.136,177.12c 35.712,0.00, 64.672,28.768, 64.672,64.448c0.00,35.552-28.96,64.448-64.672,64.448
373
- c-35.744,0.00-64.672-28.864-64.672-64.448C 6.432,205.952, 35.36,177.12, 71.136,177.12M 76.80,162.176c-0.48,0.00-0.928,0.064-1.44,0.064C 75.008,162.304, 74.656,162.304, 74.24,162.304
374
- C 73.248,162.432, 72.224,162.432, 71.20,162.432L 71.136,162.432 L 71.04,162.432 c-1.024,0.00-2.016,0.00-3.136-0.128c-0.416,0.00-0.704,0.00-1.12-0.064
375
- c-0.48,0.00-0.896-0.064-1.44-0.064C 28.736,159.008,0.00,126.368,0.00,89.184l0.00-24.96 c0.00-3.552, 2.912-6.432, 6.464-6.432l 2.272,0.00 l 124.672,0.00 L 135.68,57.792
376
- c 3.552,0.00, 6.432,2.88, 6.432,6.432l0.00,24.96 C 142.176,126.368, 113.44,159.008, 76.80,162.176" data-tags="myspace" />
377
- <glyph unicode="&#xe049;" d="M 83.456,464.32L 83.456,465.056 C 83.328,464.704, 83.168,464.48, 83.04,464.32L 83.456,464.32 zM 479.968,480.00l-16.736,0.00 L 48.736,480.00 L 32.00,480.00 C 14.336,480.00,0.00,465.664,0.00,448.00l0.00-16.768 l0.00-414.528 l0.00-16.768 C0.00-17.728, 14.336-32.00, 32.00-32.00l 16.768,0.00 l 414.464,0.00 l 16.736,0.00
378
- c 17.696,0.00, 32.00,14.272, 32.00,31.936l0.00,16.768 L 511.968,431.264 L 511.968,448.032 C 511.968,465.664, 497.664,480.00, 479.968,480.00z M 438.656,65.024l-72.128,0.00 L 366.528,180.032
379
- c0.00,28.928-8.256,48.64-34.304,48.64c-19.968,0.00-31.872-13.312-37.056-26.08c-1.92-4.608-2.368-11.104-2.368-17.504l0.00-120.00 L 218.336,65.088
380
- c0.00,0.00, 0.928,200.896,0.00,221.088l 74.432,0.00 L 292.768,255.68 c 9.60,14.656, 26.688,35.52, 65.056,35.52c 47.424,0.00, 80.80-36.928, 80.80-102.912L 438.624,65.024 z M 130.336,382.464
381
- c 22.176,0.00, 35.808-16.032, 36.256-36.992c0.00-20.576-14.048-36.992-36.672-36.992L 129.536,308.48 c-21.792,0.00-35.808,16.448-35.808,36.992
382
- C 93.728,366.432, 108.16,382.464, 130.336,382.464z M 170.688,285.312l0.00-220.256 L 97.536,65.056 L 97.536,285.312 L 170.688,285.312 z" data-tags="linkedin" />
383
- <glyph unicode="&#xe04a;" d="M0.00,69.152c 18.848,8.736, 38.40,14.88, 58.624,18.40c 27.232,4.064, 49.856,6.304, 67.84,6.816c-5.536,7.392-10.528,15.296-14.848,23.68
384
- c-5.088,8.16-7.616,17.984-7.616,29.44c0.00,6.88, 0.96,12.608, 2.88,17.184c 1.696,4.80, 3.264,9.28, 4.704,13.376
385
- C 102.816,176.992, 94.56,176.512, 86.784,176.512C 50.016,176.96, 21.12,187.456,0.00,208.032L0.00,69.152 zM 187.488,276.512c0.00,30.688-7.776,61.664-23.328,92.896c-7.296,14.976-16.896,27.168-28.80,36.544c-12.16,8.896-26.112,13.60-41.92,14.08
386
- C 72.512,419.52, 55.136,411.008, 41.28,394.528C 29.60,377.28, 24.00,357.984, 24.512,336.672c0.00-28.16, 8.16-57.504, 24.48-87.968
387
- c 7.904-14.208, 18.112-26.272, 30.624-36.16c 12.48-9.888, 26.784-14.848, 42.848-14.848c 20.32,0.736, 37.248,8.128, 50.752,22.08
388
- C 179.744,229.696, 183.936,239.84, 185.824,250.24C 186.912,260.672, 187.488,269.408, 187.488,276.512zM 147.488,72.384c-4.928,0.544-10.688,0.768-17.312,0.768c-3.936,0.512-14.016,0.00-30.208-1.536c-15.968-2.24-32.32-5.952-48.992-11.008
389
- c-3.936-1.536-9.44-3.808-16.576-6.88c-7.136-3.264-14.368-7.936-21.728-14.016C 7.968,35.552, 3.744,30.688,0.00,25.152l0.00-21.152
390
- C0.00-15.872, 16.00-32.00, 35.648-32.00l 194.304,0.00 c0.00,0.48, 0.032,0.928, 0.032,1.44c0.00,19.744-6.40,36.96-19.168,51.648
391
- C 197.344,35.04, 176.224,52.128, 147.488,72.384zM 476.352,480.00l-92.096,0.00 L 256.032,480.00 l-130.24,0.00 L 35.648,480.00 C 16.00,480.00,0.00,463.872,0.00,444.00l0.00-38.976 l0.00-9.312 c 2.24,2.40, 4.576,4.80, 7.008,7.168
392
- c 21.952,18.24, 44.704,30.144, 68.352,35.712c 23.392,4.80, 45.344,7.232, 65.792,7.232l 154.24,0.00 L 247.776,417.76L 200.192,417.76
393
- C 205.056,414.72, 210.496,410.272, 216.544,404.448c 5.824-6.08, 11.52-13.536, 17.088-22.40c 5.344-8.384, 10.048-18.24, 14.176-29.632
394
- C 251.20,341.024, 252.864,327.712, 252.864,312.544c-0.448-27.872-6.56-50.144-18.272-66.88c-5.76-8.096-11.84-15.552-18.272-22.40
395
- C 209.216,216.416, 201.632,209.44, 193.60,202.368c-4.608-4.80-8.832-10.272-12.736-16.384C 176.256,179.68, 173.952,172.352, 173.952,164.00
396
- c0.00-8.128, 2.368-14.816, 7.072-20.128c 4.00-5.12, 7.904-9.504, 11.68-13.312l 26.144-21.696c 16.256-13.408, 30.528-28.192, 42.784-44.448
397
- c 11.552-16.448, 17.568-38.016, 18.016-64.576c0.00-11.008-1.408-21.632-4.224-31.872l 200.896,0.00 C 496.00-32.00, 512.00-15.872, 512.00,4.00L 512.00,405.024 L 512.00,444.00
398
- C 512.00,463.872, 496.00,480.00, 476.352,480.00z M 504.384,321.184l-80.928,0.00 l0.00-81.728 l-39.20,0.00 L 384.256,321.184 L 303.328,321.184 L 303.328,360.768 l 80.928,0.00 L 384.256,442.496 l 39.20,0.00 l0.00-81.728 l 80.928,0.00 L 504.384,321.184 z" data-tags="googleplus" />
399
- <glyph unicode="&#xe04c;" d="M 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00s 114.592-256.00, 256.00-256.00c 141.376,0.00, 256.00,114.624, 256.00,256.00S 397.376,480.00, 256.00,480.00z M 412.864,347.264
400
- c 24.992-31.68, 40.64-70.976, 42.56-113.888c-28.864,6.112-56.192,9.12-81.632,9.12l0.00,0.00l-0.224,0.00 c-20.512,0.00-39.712-1.888-57.856-5.056
401
- C 311.328,248.256, 306.88,258.624, 302.368,268.576C 342.752,286.24, 381.504,311.424, 412.864,347.264z M 256.00,423.712c 47.136,0.00, 90.304-16.48, 124.576-43.904
402
- C 354.40,348.512, 319.808,325.824, 282.464,309.76C 256.256,360.512, 230.88,396.736, 213.568,418.944C 227.328,422.016, 241.44,423.712, 256.00,423.712z M 167.808,402.912
403
- C 181.664,386.56, 209.44,350.528, 239.072,294.24C 178.784,276.288, 118.048,272.128, 81.344,272.128c-1.024,0.00-2.08,0.00-3.104,0.00L 78.176,272.128
404
- c-6.176,0.00-11.488,0.128-15.968,0.256C 76.576,329.76, 115.872,377.184, 167.808,402.912z M 56.288,224.00c0.00,0.928, 0.032,1.888, 0.096,2.88
405
- C 62.08,226.656, 69.376,226.464, 78.176,226.464l 0.064,0.00 C 118.40,226.752, 188.512,230.112, 259.488,252.512C 263.36,244.064, 267.264,235.264, 271.008,226.048
406
- C 223.552,210.24, 186.24,184.928, 158.592,159.744c-26.592-24.256-44.608-48.256-55.104-64.256C 74.112,130.304, 56.288,175.008, 56.288,224.00z M 256.00,24.256
407
- c-44.448,0.00-85.408,14.688-118.656,39.36c 7.104,11.616, 22.208,33.984, 46.336,57.056c 24.80,23.744, 59.04,48.256, 103.744,62.816
408
- c 15.232-42.624, 28.992-91.328, 39.456-146.144C 304.80,28.928, 280.992,24.256, 256.00,24.256z M 369.056,59.712c-10.112,49.60-22.944,94.272-36.864,134.208
409
- c 12.928,1.856, 26.56,2.88, 40.928,2.88l 0.512,0.00 l 0.064,0.00 l 0.064,0.00 c 23.808,0.00, 49.984-2.944, 78.336-9.376C 442.304,134.624, 411.68,89.12, 369.056,59.712z
410
- " data-tags="dribbble" />
411
- <glyph unicode="&#xe04d;" d="M 427.52,480.00L 84.48,480.00 C 38.016,480.00,0.00,441.984,0.00,395.52L0.00,52.48 c0.00-46.432, 38.016-84.512, 84.48-84.512L 427.52-32.032 c 46.432,0.00, 84.512,38.048, 84.512,84.512L 512.032,395.52
412
- C 512.00,441.984, 473.984,480.00, 427.52,480.00z M 411.168,167.296c-0.32-54.432-44.544-98.976-99.04-98.976L 198.272,68.32 c-54.496,0.00-99.072,44.544-99.072,98.976L 99.20,282.848
413
- c0.00,54.496, 44.576,99.20, 99.072,99.20l 69.312,0.00 c 25.568-3.072, 62.752-24.928, 76.512-54.08c 3.744-8.16, 5.76-9.44, 8.864-33.664
414
- c 1.696-12.448, 2.56-21.696, 8.096-26.816c 7.84-7.168, 36.96-2.304, 42.784-6.816l 4.384-3.424l 2.624-5.472l 0.928-4.416L 411.168,167.296zM 199.52,263.168l 54.944,0.00 c 10.496,0.00, 19.008,8.64, 19.008,19.008s-8.512,18.88-19.008,18.88L 199.52,301.056 c-10.432,0.00-18.944-8.512-18.944-18.88
415
- S 189.088,263.168, 199.52,263.168zM 311.232,187.52L 199.584,187.52 c-10.464,0.00-19.008-8.448-19.008-18.816c0.00-10.272, 8.544-18.88, 19.008-18.88l 111.616,0.00 c 10.336,0.00, 18.816,8.608, 18.816,18.88
416
- C 330.016,179.104, 321.568,187.52, 311.232,187.52z" data-tags="blogger" />
417
- <glyph unicode="&#xe04e;" d="M 462.368,242.752l-128.352,0.00 l0.00,32.00 l 128.352,0.00 L 462.368,242.752 z M 248.704,111.488c 8.32-12.896, 12.384-28.544, 12.384-46.944
418
- c0.00-18.944-4.64-36.00-14.112-51.04C 240.896,3.552, 233.408-4.736, 224.416-11.584C 214.272-19.36, 202.272-24.736, 188.48-27.68
419
- C 174.656-30.56, 159.648-32.00, 143.52-32.00L0.00-32.00 L0.00,288.00 l 153.92,0.00 c 38.752-0.64, 66.208-11.904, 82.496-34.048C 246.08,240.32, 250.944,224.00, 250.944,205.056
420
- c0.00-19.552-4.896-35.264-14.752-47.136C 230.72,151.328, 222.624,145.216, 211.936,139.744C 228.16,133.76, 240.48,124.416, 248.704,111.488z M 73.472,161.888l 67.36,0.00
421
- c 13.92,0.00, 25.056,2.688, 33.728,7.872c 8.672,5.312, 12.896,14.688, 12.896,28.192c0.00,14.944-5.696,24.768-17.088,29.568
422
- C 160.544,230.816, 148.00,232.512, 132.704,232.512L 73.44,232.512 L 73.472,161.888L 73.472,161.888z M 193.984,69.184c0.00,16.64-6.752,28.128-20.288,34.24
423
- C 166.144,106.976, 155.52,108.736, 141.92,108.928L 73.472,108.928 l0.00-85.312 l 67.328,0.00 c 13.856,0.00, 24.544,1.792, 32.288,5.632C 187.008,36.256, 193.984,49.472, 193.984,69.184z
424
- M 509.984,121.248c 1.568-10.464, 2.24-25.696, 1.984-45.536l-166.112,0.00 c 0.896-23.04, 8.80-39.168, 23.84-48.352c 9.024-5.824, 20.00-8.672, 32.896-8.672
425
- c 13.504,0.00, 24.576,3.456, 33.056,10.528c 4.672,3.744, 8.672,9.056, 12.256,15.68l 60.864,0.00 c-1.568-13.568-8.896-27.36-22.048-41.376
426
- c-20.384-22.304-49.024-33.504-85.824-33.504c-30.368,0.00-57.12,9.44-80.384,28.256C 297.344,17.12, 285.728,47.712, 285.728,90.112
427
- c0.00,39.68, 10.40,70.112, 31.36,91.328c 20.992,21.248, 48.192,31.808, 81.664,31.808c 19.808,0.00, 37.728-3.552, 53.664-10.752
428
- c 15.904-7.136, 29.024-18.432, 39.392-33.952C 501.12,155.008, 507.168,139.264, 509.984,121.248z M 450.016,115.328c-1.12,15.936-6.432,28.00-16.00,36.192
429
- c-9.44,8.352-21.248,12.448-35.328,12.448c-15.36,0.00-27.20-4.448-35.616-13.12c-8.48-8.672-13.76-20.576-15.872-35.488L 450.016,115.36 L 450.016,115.328z" data-tags="behance" />
430
- <glyph unicode="&#xe04b;" d="M 176.00,416.00l-160.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-160.00 C0.00,231.168, 7.168,224.00, 16.00,224.00l 160.00,0.00 C 184.832,224.00, 192.00,231.168, 192.00,240.00l0.00,160.00 C 192.00,408.832, 184.832,416.00, 176.00,416.00
431
- zM 176.00,160.00l-160.00,0.00 C 7.168,160.00,0.00,152.832,0.00,144.00l0.00-160.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 160.00,0.00 C 184.832-32.00, 192.00-24.832, 192.00-16.00l0.00,160.00
432
- C 192.00,152.832, 184.832,160.00, 176.00,160.00zM 496.00,416.00l-224.00,0.00 C 263.168,416.00, 256.00,408.832, 256.00,400.00l0.00-32.00 C 256.00,359.168, 263.168,352.00, 272.00,352.00l 224.00,0.00 C 504.864,352.00, 512.00,359.168, 512.00,368.00l0.00,32.00
433
- C 512.00,408.832, 504.864,416.00, 496.00,416.00zM 496.00,288.00l-224.00,0.00 C 263.168,288.00, 256.00,280.832, 256.00,272.00l0.00-32.00 C 256.00,231.168, 263.168,224.00, 272.00,224.00l 224.00,0.00 C 504.864,224.00, 512.00,231.168, 512.00,240.00l0.00,32.00
434
- C 512.00,280.832, 504.864,288.00, 496.00,288.00zM 496.00,160.00l-224.00,0.00 C 263.168,160.00, 256.00,152.832, 256.00,144.00l0.00-32.00 C 256.00,103.168, 263.168,96.00, 272.00,96.00l 224.00,0.00 c 8.864,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
435
- C 512.00,152.832, 504.864,160.00, 496.00,160.00zM 496.00,32.00l-224.00,0.00 C 263.168,32.00, 256.00,24.832, 256.00,16.00l0.00-32.00 C 256.00-24.832, 263.168-32.00, 272.00-32.00l 224.00,0.00 c 8.864,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
436
- C 512.00,24.832, 504.864,32.00, 496.00,32.00z" data-tags="list-thumbnailed" />
437
- <glyph unicode="&#xe04f;" d="M 112.00,416.00l-96.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-96.00 C0.00,295.168, 7.168,288.00, 16.00,288.00l 96.00,0.00 C 120.832,288.00, 128.00,295.168, 128.00,304.00l0.00,96.00 C 128.00,408.832, 120.832,416.00, 112.00,416.00z M 112.00,256.00l-96.00,0.00
438
- C 7.168,256.00,0.00,248.832,0.00,240.00l0.00-96.00 C0.00,135.168, 7.168,128.00, 16.00,128.00l 96.00,0.00 C 120.832,128.00, 128.00,135.168, 128.00,144.00l0.00,96.00 C 128.00,248.832, 120.832,256.00, 112.00,256.00z M 272.00,416.00l-96.00,0.00
439
- C 167.168,416.00, 160.00,408.832, 160.00,400.00l0.00-96.00 C 160.00,295.168, 167.168,288.00, 176.00,288.00l 96.00,0.00 C 280.832,288.00, 288.00,295.168, 288.00,304.00l0.00,96.00 C 288.00,408.832, 280.832,416.00, 272.00,416.00z M 272.00,256.00l-96.00,0.00
440
- C 167.168,256.00, 160.00,248.832, 160.00,240.00l0.00-96.00 C 160.00,135.168, 167.168,128.00, 176.00,128.00l 96.00,0.00 C 280.832,128.00, 288.00,135.168, 288.00,144.00l0.00,96.00 C 288.00,248.832, 280.832,256.00, 272.00,256.00z M 432.00,416.00l-96.00,0.00
441
- C 327.168,416.00, 320.00,408.832, 320.00,400.00l0.00-96.00 C 320.00,295.168, 327.168,288.00, 336.00,288.00l 96.00,0.00 C 440.832,288.00, 448.00,295.168, 448.00,304.00l0.00,96.00 C 448.00,408.832, 440.832,416.00, 432.00,416.00z M 432.00,256.00l-96.00,0.00
442
- C 327.168,256.00, 320.00,248.832, 320.00,240.00l0.00-96.00 C 320.00,135.168, 327.168,128.00, 336.00,128.00l 96.00,0.00 C 440.832,128.00, 448.00,135.168, 448.00,144.00l0.00,96.00 C 448.00,248.832, 440.832,256.00, 432.00,256.00z M 112.00,96.00l-96.00,0.00
443
- C 7.168,96.00,0.00,88.832,0.00,80.00l0.00-96.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 96.00,0.00 C 120.832-32.00, 128.00-24.832, 128.00-16.00l0.00,96.00 C 128.00,88.832, 120.832,96.00, 112.00,96.00z M 272.00,96.00l-96.00,0.00
444
- C 167.168,96.00, 160.00,88.832, 160.00,80.00l0.00-96.00 C 160.00-24.832, 167.168-32.00, 176.00-32.00l 96.00,0.00 C 280.832-32.00, 288.00-24.832, 288.00-16.00l0.00,96.00 C 288.00,88.832, 280.832,96.00, 272.00,96.00z M 432.00,96.00l-96.00,0.00
445
- c-8.832,0.00-16.00-7.168-16.00-16.00l0.00-96.00 c0.00-8.832, 7.168-16.00, 16.00-16.00l 96.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,96.00 C 448.00,88.832, 440.832,96.00, 432.00,96.00z" data-tags="list-small-thumbnails" />
446
- <glyph unicode="&#xe050;" d="M 496.00,416.00l-384.00,0.00 C 103.168,416.00, 96.00,408.832, 96.00,400.00l0.00-32.00 C 96.00,359.168, 103.168,352.00, 112.00,352.00l 384.00,0.00 C 504.832,352.00, 512.00,359.168, 512.00,368.00l0.00,32.00
447
- C 512.00,408.832, 504.832,416.00, 496.00,416.00zM 496.00,288.00l-384.00,0.00 C 103.168,288.00, 96.00,280.832, 96.00,272.00l0.00-32.00 C 96.00,231.168, 103.168,224.00, 112.00,224.00l 384.00,0.00 C 504.832,224.00, 512.00,231.168, 512.00,240.00l0.00,32.00
448
- C 512.00,280.832, 504.832,288.00, 496.00,288.00zM 496.00,160.00l-384.00,0.00 C 103.168,160.00, 96.00,152.832, 96.00,144.00l0.00-32.00 C 96.00,103.168, 103.168,96.00, 112.00,96.00l 384.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
449
- C 512.00,152.832, 504.832,160.00, 496.00,160.00zM 496.00,32.00l-384.00,0.00 C 103.168,32.00, 96.00,24.832, 96.00,16.00l0.00-32.00 C 96.00-24.832, 103.168-32.00, 112.00-32.00l 384.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
450
- C 512.00,24.832, 504.832,32.00, 496.00,32.00zM 48.00,416.00l-32.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-32.00 C0.00,359.168, 7.168,352.00, 16.00,352.00l 32.00,0.00 C 56.832,352.00, 64.00,359.168, 64.00,368.00l0.00,32.00 C 64.00,408.832, 56.832,416.00, 48.00,416.00
451
- zM 48.00,288.00l-32.00,0.00 C 7.168,288.00,0.00,280.832,0.00,272.00l0.00-32.00 C0.00,231.168, 7.168,224.00, 16.00,224.00l 32.00,0.00 C 56.832,224.00, 64.00,231.168, 64.00,240.00l0.00,32.00 C 64.00,280.832, 56.832,288.00, 48.00,288.00
452
- zM 48.00,160.00l-32.00,0.00 C 7.168,160.00,0.00,152.832,0.00,144.00l0.00-32.00 C0.00,103.168, 7.168,96.00, 16.00,96.00l 32.00,0.00 C 56.832,96.00, 64.00,103.168, 64.00,112.00l0.00,32.00
453
- C 64.00,152.832, 56.832,160.00, 48.00,160.00zM 48.00,32.00l-32.00,0.00 C 7.168,32.00,0.00,24.832,0.00,16.00l0.00-32.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 32.00,0.00 C 56.832-32.00, 64.00-24.832, 64.00-16.00l0.00,32.00
454
- C 64.00,24.832, 56.832,32.00, 48.00,32.00z" data-tags="list-numbered" />
455
- <glyph unicode="&#xe051;" d="M 208.00,480.00l-192.00,0.00 C 7.168,480.00,0.00,472.832,0.00,464.00l0.00-192.00 C0.00,263.168, 7.168,256.00, 16.00,256.00l 192.00,0.00 C 216.832,256.00, 224.00,263.168, 224.00,272.00l0.00,192.00 C 224.00,472.832, 216.832,480.00, 208.00,480.00z M 496.00,480.00l-192.00,0.00
456
- C 295.168,480.00, 288.00,472.832, 288.00,464.00l0.00-192.00 C 288.00,263.168, 295.168,256.00, 304.00,256.00l 192.00,0.00 C 504.832,256.00, 512.00,263.168, 512.00,272.00l0.00,192.00 C 512.00,472.832, 504.832,480.00, 496.00,480.00z M 208.00,192.00l-192.00,0.00
457
- C 7.168,192.00,0.00,184.832,0.00,176.00l0.00-192.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 192.00,0.00 C 216.832-32.00, 224.00-24.832, 224.00-16.00l0.00,192.00 C 224.00,184.832, 216.832,192.00, 208.00,192.00z M 496.00,192.00l-192.00,0.00
458
- C 295.168,192.00, 288.00,184.832, 288.00,176.00l0.00-192.00 C 288.00-24.832, 295.168-32.00, 304.00-32.00l 192.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,192.00 C 512.00,184.832, 504.832,192.00, 496.00,192.00z" data-tags="list-large-thumbnails" />
459
- <glyph unicode="&#xe052;" d="M 496.00,416.00l-480.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-32.00 C0.00,359.168, 7.168,352.00, 16.00,352.00l 480.00,0.00 C 504.832,352.00, 512.00,359.168, 512.00,368.00l0.00,32.00
460
- C 512.00,408.832, 504.832,416.00, 496.00,416.00zM 496.00,288.00l-480.00,0.00 C 7.168,288.00,0.00,280.832,0.00,272.00l0.00-32.00 C0.00,231.168, 7.168,224.00, 16.00,224.00l 480.00,0.00 C 504.832,224.00, 512.00,231.168, 512.00,240.00l0.00,32.00
461
- C 512.00,280.832, 504.832,288.00, 496.00,288.00zM 496.00,160.00l-480.00,0.00 C 7.168,160.00,0.00,152.832,0.00,144.00l0.00-32.00 C0.00,103.168, 7.168,96.00, 16.00,96.00l 480.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
462
- C 512.00,152.832, 504.832,160.00, 496.00,160.00zM 496.00,32.00l-480.00,0.00 C 7.168,32.00,0.00,24.832,0.00,16.00l0.00-32.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 480.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
463
- C 512.00,24.832, 504.832,32.00, 496.00,32.00z" data-tags="list-columned" />
464
- <glyph unicode="&#xe053;" d="M 496.00,384.00l-320.00,0.00 C 167.168,384.00, 160.00,376.832, 160.00,368.00l0.00-32.00 C 160.00,327.168, 167.168,320.00, 176.00,320.00l 320.00,0.00 C 504.832,320.00, 512.00,327.168, 512.00,336.00l0.00,32.00
465
- C 512.00,376.832, 504.832,384.00, 496.00,384.00zM 496.00,224.00l-320.00,0.00 C 167.168,224.00, 160.00,216.832, 160.00,208.00l0.00-32.00 C 160.00,167.168, 167.168,160.00, 176.00,160.00l 320.00,0.00 C 504.832,160.00, 512.00,167.168, 512.00,176.00l0.00,32.00
466
- C 512.00,216.832, 504.832,224.00, 496.00,224.00zM 496.00,64.00l-320.00,0.00 C 167.168,64.00, 160.00,56.832, 160.00,48.00l0.00-32.00 C 160.00,7.168, 167.168,0.00, 176.00,0.00l 320.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
467
- C 512.00,56.832, 504.832,64.00, 496.00,64.00zM0.00,352.00A64.00,64.00 180.00 1 1 128.00,352A64.00,64.00 180.00 1 1 0.00,352zM0.00,192.00A64.00,64.00 180.00 1 1 128.00,192A64.00,64.00 180.00 1 1 0.00,192zM0.00,32.00A64.00,64.00 180.00 1 1 128.00,32A64.00,64.00 180.00 1 1 0.00,32z" data-tags="list-bulleted" />
468
- <glyph unicode="&#x20;" horiz-adv-x="256" />
469
- <glyph class="hidden" unicode="&#xf000;" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
470
- </font></defs></svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fonts/Flat-UI-Icons.eot DELETED
Binary file
fonts/Flat-UI-Icons.svg DELETED
@@ -1,470 +0,0 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <metadata>
5
- This is a custom SVG font generated by IcoMoon.
6
- <iconset id="Flat-UI-Icons" name="Flat UI Icons" href="http://designmodo.com/flat" grid="16"></iconset><author name="Sergey Shmidt" href="http://designmodo.com"></author><license name="Attribution-NonCommercial-NoDerivs 3.0 Unported" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"></license>
7
- </metadata>
8
- <defs>
9
- <font id="Flat-UI-Icons" horiz-adv-x="512" >
10
- <font-face units-per-em="512" ascent="480" descent="-32" />
11
- <missing-glyph horiz-adv-x="512" />
12
- <glyph unicode="&#xe000;" d="M 448.00,127.808L 256.00,384.00L 64.00,128.00L 448.00,127.808z" />
13
- <glyph unicode="&#xe001;" d="M 447.744,96.064L 64.00,96.064 L 255.872,288.00L 447.744,96.064z" />
14
- <glyph unicode="&#xe002;" d="M 64.00,416.00l 384.00-224.032L 64.00-31.968L 64.00,416.00 z" />
15
- <glyph unicode="&#xe003;" d="M 448.00-31.968L 64.00,191.968L 448.00,416.00L 448.00-31.968 z" />
16
- <glyph unicode="&#xe004;" d="M 64.00,320.00l 192.00-256.192L 448.00,320.00L 64.00,320.00 z" />
17
- <glyph unicode="&#xe016;" d="M 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00c0.00-141.344, 114.624-256.00, 256.00-256.00c 141.408,0.00, 256.00,114.624, 256.00,256.00C 512.00,365.376, 397.408,480.00, 256.00,480.00z M 288.384,97.568
18
- c0.00-18.528-14.496-33.536-32.384-33.536s-32.384,15.008-32.384,33.536L 223.616,254.112 C 223.616,272.64, 238.112,287.648, 256.00,287.648S 288.384,272.64, 288.384,254.112L 288.384,97.568 z
19
- M 256.00,320.16c-17.888,0.00-32.384,14.304-32.384,31.936S 238.112,383.968, 256.00,383.968s 32.384-14.272, 32.384-31.904S 273.888,320.16, 256.00,320.16z" />
20
- <glyph unicode="&#xe017;" d="M 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00c0.00-141.376, 114.624-256.00, 256.00-256.00c 141.376,0.00, 256.00,114.624, 256.00,256.00C 512.00,365.376, 397.376,480.00, 256.00,480.00z M 256.00,64.032
21
- c-17.888,0.00-32.384,14.272-32.384,31.904c0.00,17.60, 14.496,31.904, 32.384,31.904c 17.888,0.00, 32.384-14.304, 32.384-31.904
22
- C 288.384,78.304, 273.888,64.032, 256.00,64.032z M 288.384,193.888C 288.384,175.36, 273.888,160.352, 256.00,160.352c-17.888,0.00-32.384,15.04-32.384,33.536L 223.616,350.432
23
- c0.00,18.528, 14.496,33.536, 32.384,33.536c 17.888,0.00, 32.384-15.04, 32.384-33.536L 288.384,193.888 z" />
24
- <glyph unicode="&#xe018;" d="M 256.00-32.00c-141.376,0.00-256.00,114.624-256.00,256.00c0.00,141.344, 114.624,256.00, 256.00,256.00c 141.376,0.00, 256.00-114.624, 256.00-256.00C 512.00,82.624, 397.376-32.00, 256.00-32.00z M 256.00,64.032
25
- c 17.888,0.00, 32.384,14.272, 32.384,31.904c0.00,17.60-14.496,31.904-32.384,31.904c-17.888,0.00-32.384-14.304-32.384-31.904
26
- C 223.616,78.304, 238.112,64.032, 256.00,64.032z M 325.376,362.144C 308.416,376.096, 284.256,383.872, 255.36,383.872c-21.28,0.00-39.456-3.84-55.072-10.08
27
- C 192.00,370.432, 165.472,353.952, 159.968,349.344l 16.192-24.16c 2.656-4.672, 6.976-7.04, 12.96-7.04c 2.496,0.00, 5.312,0.992, 8.48,2.944
28
- c 2.304,1.44, 20.544,10.848, 28.256,13.184c 16.16,4.80, 33.92,2.848, 42.08,0.32c 11.136-3.424, 19.20-9.952, 23.68-18.88
29
- c 2.944-5.888, 6.688-22.08-2.112-37.216C 282.176,265.952, 270.72,256.416, 258.08,247.968C 251.328,243.36, 245.056,238.656, 239.392,233.76
30
- c-0.256,0.00-0.896-0.48-2.336-1.76C 237.76,232.608, 238.688,233.152, 239.392,233.76C 240.992,233.824, 224.00,212.096, 224.00,192.00c0.00-21.44,0.00-32.00,0.00-32.00l 64.00,0.00 L 288.00,192.00
31
- c0.00,16.64, 8.064,25.984, 8.224,28.352c 5.504,3.936, 30.528,23.072, 36.48,29.952C 343.808,263.104, 352.00,280.00, 352.00,303.808
32
- C 352.00,328.224, 342.304,348.224, 325.376,362.144z" />
33
- <glyph unicode="&#xe019;" d="M 448.00,480.00L 64.00,480.00 C 28.672,480.00,0.00,451.328,0.00,416.00l0.00-384.00 c0.00-35.328, 28.672-64.00, 64.00-64.00l 384.00,0.00 c 35.328,0.00, 64.00,28.672, 64.00,64.00L 512.00,416.00 C 512.00,451.328, 483.328,480.00, 448.00,480.00z M 192.00,447.968
34
- c 17.664,0.00, 32.00-14.304, 32.00-31.968c0.00-17.696-14.336-32.00-32.00-32.00S 160.00,398.304, 160.00,416.00C 160.00,433.664, 174.336,447.968, 192.00,447.968z M 96.00,447.968c 17.664,0.00, 32.00-14.304, 32.00-31.968
35
- c0.00-17.696-14.336-32.00-32.00-32.00S 64.00,398.304, 64.00,416.00C 64.00,433.664, 78.336,447.968, 96.00,447.968z M 448.032,32.00L 64.00,32.00 L 64.00,352.00 l 384.032,0.00 L 448.032,32.00 z" />
36
- <glyph unicode="&#xe01a;" d="M 469.376,383.872l-53.344,0.00L 416.032,437.184 c0.00,23.552-19.104,42.656-42.656,42.656L 42.656,479.84 c-23.552,0.00-42.656-19.104-42.656-42.656l0.00-330.336
37
- c0.00-23.584, 18.624-42.688, 41.568-42.688l 54.432,0.00 l0.00-53.344 c0.00-23.552, 18.624-42.656, 41.568-42.656l 332.896,0.00 c 22.976,0.00, 41.60,19.104, 41.60,42.656L 512.064,341.184
38
- C 512.032,364.736, 492.928,383.872, 469.376,383.872z M 192.00,447.808c 17.664,0.00, 32.00-14.304, 32.00-31.968c0.00-17.696-14.336-32.00-32.00-32.00s-32.00,14.304-32.00,32.00
39
- C 160.00,433.504, 174.336,447.808, 192.00,447.808z M 96.00,447.808c 17.664,0.00, 32.00-14.304, 32.00-31.968c0.00-17.696-14.336-32.00-32.00-32.00s-32.00,14.304-32.00,32.00C 64.00,433.504, 78.336,447.808, 96.00,447.808z
40
- M 64.00,127.84l-0.032,224.00L 352.00,351.84 l0.00-224.00 L 64.00,127.84 z M 448.00,31.84L 160.00,31.84 l0.00,32.32 l 214.432,0.00 c 22.976,0.00, 41.60,19.104, 41.60,42.688L 416.032,255.84 L 448.00,255.84 L 448.00,31.84 z" />
41
- <glyph unicode="&#xe02c;" d="M 192.576-33.056l-64.096,64.128l 160.544,160.448L 128.448,350.496l 64.00,65.504l 223.584-223.616L 192.576-33.056z" />
42
- <glyph unicode="&#xe02d;" d="M 96.48,192.384L 320.064,416.00l 64.00-65.504L 223.488,191.488l 160.576-160.448l-64.128-64.128L 96.48,192.384z" />
43
- <glyph unicode="&#xe02e;" d="M 384.00,95.968c-60.80,0.00-98.944,34.368-128.00,72.224C 226.944,130.336, 188.80,95.968, 128.00,95.968C 76.576,95.968,0.00,130.08,0.00,224.00c0.00,93.888, 76.576,128.00, 128.00,128.00
44
- c 60.80,0.00, 98.944-34.336, 128.00-72.224C 285.056,317.664, 323.20,352.00, 384.00,352.00c 51.456,0.00, 128.00-34.112, 128.00-128.00C 512.00,130.08, 435.456,95.968, 384.00,95.968z M 128.00,288.00
45
- C 113.184,287.744, 64.00,282.432, 64.00,224.00c0.00-60.928, 53.312-64.00, 64.00-64.00c 39.136,0.00, 61.632,23.904, 89.376,64.00C 189.632,264.064, 167.136,288.00, 128.00,288.00z M 294.624,224.00
46
- c 27.712-40.064, 50.176-63.936, 89.216-64.00C 399.008,160.224, 448.00,165.632, 448.00,224.00c0.00,60.928-53.312,64.00-64.00,64.00C 344.864,288.00, 322.368,264.064, 294.624,224.00z" />
47
- <glyph unicode="&#xe02f;" d="M 400.00,256.00c-11.488,0.00-29.664,0.00-48.00,0.00L 352.00,192.00 c 11.328,0.00, 22.40,0.00, 32.00,0.00c 6.048,0.00, 11.648,0.00, 16.00,0.00c 61.856,0.00, 112.00-50.144, 112.00-112.00S 461.856-32.00, 400.00-32.00
48
- S 288.00,18.112, 288.00,80.00c0.00,11.488,0.00,29.632,0.00,48.00L 224.00,128.00 c0.00-11.328,0.00-22.432,0.00-32.00c0.00-6.048,0.00-11.616,0.00-16.00C 224.00,18.112, 173.856-32.00, 112.00-32.00S0.00,18.112,0.00,80.00
49
- S 50.144,192.00, 112.00,192.00C 123.488,192.00, 141.664,192.00, 160.00,192.00L 160.00,256.00 C 148.704,256.00, 137.568,256.00, 128.00,256.00C 121.952,256.00, 116.384,256.00, 112.00,256.00C 50.144,256.00,0.00,306.112,0.00,368.00C0.00,429.856, 50.144,480.00, 112.00,480.00
50
- S 224.00,429.856, 224.00,368.00C 224.00,356.512, 224.00,338.336, 224.00,320.00l 64.00,0.00 c0.00,11.296,0.00,22.432,0.00,32.00c0.00,6.048,0.00,11.616,0.00,16.00C 288.00,429.856, 338.144,480.00, 400.00,480.00S 512.00,429.856, 512.00,368.00
51
- C 512.00,306.112, 461.856,256.00, 400.00,256.00z M 160.00,368.00C 160.00,394.496, 138.496,416.00, 112.00,416.00S 64.00,394.496, 64.00,368.00C 64.00,341.472, 85.504,320.00, 112.00,320.00C 115.872,320.00, 121.76,320.00, 128.00,320.00c 14.784,0.00, 32.00,0.00, 32.00,0.00
52
- S 160.00,354.528, 160.00,368.00z M 160.00,96.00c0.00,14.752,0.00,32.00,0.00,32.00s-34.528,0.00-48.00,0.00C 85.504,128.00, 64.00,106.496, 64.00,80.00S 85.504,32.00, 112.00,32.00S 160.00,53.504, 160.00,80.00
53
- C 160.00,83.872, 160.00,89.76, 160.00,96.00z M 352.00,80.00c0.00-26.496, 21.504-48.00, 48.00-48.00s 48.00,21.504, 48.00,48.00S 426.496,128.00, 400.00,128.00c-3.872,0.00-9.76,0.00-16.00,0.00
54
- c-14.784,0.00-32.00,0.00-32.00,0.00S 352.00,93.44, 352.00,80.00z M 288.00,256.00L 224.00,256.00 L 224.00,192.00 l 64.00,0.00 L 288.00,256.00 z M 400.00,416.00C 373.504,416.00, 352.00,394.496, 352.00,368.00c0.00-3.872,0.00-9.728,0.00-16.00c0.00-14.816,0.00-32.00,0.00-32.00
55
- s 34.528,0.00, 48.00,0.00C 426.496,320.00, 448.00,341.472, 448.00,368.00C 448.00,394.496, 426.496,416.00, 400.00,416.00z" />
56
- <glyph unicode="&#xe030;" d="M 400.992,203.20c-14.336,8.832-32.704,3.616-40.96-11.68C 359.744,191.008, 359.744,190.40, 359.456,189.888L 358.72,190.368
57
- C 337.728,153.152, 299.872,128.00, 256.128,128.00s-81.568,25.152-102.592,62.368L 152.832,189.952C 152.48,190.752, 152.48,191.68, 152.032,192.512
58
- C 143.744,207.776, 125.376,213.024, 111.008,204.192S 91.744,175.776, 100.032,160.512c 0.64-1.12, 1.632-1.824, 2.336-2.848l-0.544-0.352
59
- c 26.56-47.104, 71.552-80.80, 124.288-90.304L 226.112,32.00 L 166.08,32.00 c-16.576,0.00-30.016-14.336-30.016-32.00c0.00-17.696, 13.44-32.00, 30.016-32.00l 180.064,0.00
60
- c 16.608,0.00, 30.016,14.304, 30.016,32.00c0.00,17.664-13.408,32.00-30.016,32.00L 286.144,32.00 l0.00,34.976 c 52.736,9.504, 97.728,43.264, 124.288,90.336L 410.24,157.44
61
- c 0.544,0.736, 1.312,1.216, 1.728,2.048C 420.288,174.816, 415.36,194.368, 400.992,203.20z M 256.128,160.00c 49.728,0.00, 90.016,42.976, 90.016,96.00L 346.144,384.00
62
- c0.00,53.024-40.32,96.00-90.016,96.00C 206.40,480.00, 166.08,437.024, 166.08,384.00l0.00-128.00 C 166.08,202.976, 206.40,160.00, 256.128,160.00z" />
63
- <glyph unicode="&#xe005;" d="M 255.872,128.064L 64.00,320.00l 383.744,0.00 L 255.872,128.064z" />
64
- <glyph unicode="&#xe006;" d="M 256.00,480.00C 114.624,480.00,0.00,365.408,0.00,224.032C0.00,82.624, 114.624-32.00, 256.00-32.00c 141.376,0.00, 256.00,114.624, 256.00,256.032C 512.00,365.408, 397.376,480.00, 256.00,480.00z M 421.44,276.064
65
- l-183.648-183.616c-3.744-3.744-9.856-3.744-13.568,0.00l-27.136,27.392c-3.712,3.776-9.856,9.952-13.568,13.696L 120.352,199.936
66
- C 118.496,201.792, 117.504,204.416, 117.504,206.88c0.00,2.496, 0.992,4.864, 2.848,6.752l 27.68,24.96c 1.888,1.92, 4.384,2.816, 6.848,2.816
67
- c 2.432-0.032, 4.864-0.992, 6.72-2.816l 62.624-63.936c 3.744-3.808, 9.824-3.808, 13.568,0.00l 142.944,142.56c 3.712,3.744, 9.856,3.744, 13.568,0.00
68
- l 27.168-27.456C 425.184,286.016, 425.184,279.84, 421.44,276.064z" />
69
- <glyph unicode="&#xe007;" d="M 474.272,191.424c 50.24,51.392, 50.176,134.656,0.00,186.016c-25.696,26.24-59.488,39.072-93.12,38.496C 334.08,415.168, 256.48,351.456, 256.48,351.456
70
- S 176.672,416.064, 128.48,416.00C 95.616,415.936, 62.784,403.072, 37.728,377.472c-50.208-51.392-50.24-134.624,0.00-186.016L 256.00-31.712L 474.272,191.424z" />
71
- <glyph unicode="&#xe008;" d="M 272.064,216.032c-43.936,0.00-79.552,36.864-79.552,82.40c0.00,45.568, 35.616,82.432, 79.552,82.432S 351.616,344.00, 351.616,298.432
72
- C 351.616,252.928, 316.00,216.032, 272.064,216.032 M 272.064,480.192c-97.248,0.00-176.064-81.664-176.064-182.40c0.00-95.136, 79.744-217.888, 132.992-277.632
73
- c 19.904-22.272, 43.072-52.352, 43.072-52.352s 24.896,30.176, 46.24,53.152c 53.184,57.248, 129.824,172.224, 129.824,276.80
74
- C 448.128,398.528, 369.312,480.192, 272.064,480.192" />
75
- <glyph unicode="&#xe009;" d="M 448.00,159.968L 288.00,159.968 L 288.00,0.00 c0.00-17.696-14.304-32.00-32.00-32.00L 224.00-32.00 c-17.664,0.00-32.00,14.304-32.00,32.00L 192.00,159.968 L 32.00,159.968 C 14.336,159.968,0.00,174.336,0.00,192.00L0.00,224.032
76
- c0.00,17.664, 14.336,31.936, 32.00,31.936l 160.00,0.00 L 192.00,416.00 c0.00,17.664, 14.336,32.00, 32.00,32.00l 32.00,0.00 c 17.696,0.00, 32.00-14.336, 32.00-32.00l0.00-160.032 l 160.00,0.00 c 17.696,0.00, 32.00-14.272, 32.00-31.936L 480.00,192.00
77
- C 480.00,174.336, 465.696,159.968, 448.00,159.968z" />
78
- <glyph unicode="&#xe00a;" d="M 461.568,411.296c-6.176,6.272-16.384,6.272-22.56,0.00l-238.08-237.248c-6.24-6.272-16.416-6.272-22.624,0.00L 73.984,280.416
79
- C 70.912,283.52, 66.848,285.12, 62.816,285.152c-4.128,0.00-8.288-1.504-11.424-4.736l-46.08-41.504C 2.24,235.776, 0.576,231.84, 0.576,227.744
80
- c0.00-4.16, 1.664-8.512, 4.736-11.616l 105.184-110.496c 6.208-6.24, 16.416-16.512, 22.624-22.816l 45.216-45.632c 6.208-6.24, 16.384-6.24, 22.624,0.00
81
- l 305.856,305.664c 6.24,6.24, 6.24,16.544,0.00,22.816L 461.568,411.296z" />
82
- <glyph unicode="&#xe00b;" d="M 443.904,366.016c 6.24-6.208, 6.24-16.416,0.00-22.624L 319.456,218.88c-6.176-6.208-6.176-16.416,0.00-22.656l 124.384-124.544
83
- c 6.24-6.208, 6.24-16.416,0.00-22.624l-45.312-45.216c-6.176-6.208-16.384-6.208-22.624,0.00L 251.584,128.384c-6.208,6.208-16.416,6.208-22.624,0.00
84
- l-124.448-124.448c-6.208-6.24-16.416-6.24-22.624,0.00l-45.248,45.312c-6.208,6.176-6.208,16.384,0.00,22.624l 124.48,124.448
85
- c 6.208,6.208, 6.208,16.416,0.00,22.656L 36.736,343.488c-6.208,6.24-6.208,16.416,0.00,22.624l 45.28,45.248c 6.208,6.208, 16.416,6.208, 22.624,0.00
86
- l 124.32-124.512c 6.208-6.24, 16.416-6.24, 22.624-0.032l 124.416,124.48c 6.24,6.176, 16.448,6.176, 22.624,0.00L 443.904,366.016z" />
87
- <glyph unicode="&#xe00c;" d="M 495.968,415.68L 16.032,415.68 c-8.80,0.00-16.00-7.68-16.00-17.088l0.00-62.336 c0.00-9.024, 7.20-16.416, 16.00-16.416l 479.936,0.00 c 8.80,0.00, 16.00,7.36, 16.00,16.416
88
- L 511.968,398.592 C 511.968,408.00, 504.768,415.68, 495.968,415.68z M 495.968,255.68L 16.032,255.68 c-8.80,0.00-16.00-7.68-16.00-17.12l0.00-62.304
89
- c0.00-9.056, 7.20-16.416, 16.00-16.416l 479.936,0.00 c 8.80,0.00, 16.00,7.36, 16.00,16.416L 511.968,238.592 C 511.968,248.00, 504.768,255.68, 495.968,255.68z M 495.968,95.68
90
- L 16.032,95.68 c-8.80,0.00-16.00-7.68-16.00-17.12l0.00-62.304 c0.00-8.992, 7.20-16.384, 16.00-16.384l 479.936,0.00 c 8.80,0.00, 16.00,7.36, 16.00,16.384l0.00,62.304
91
- C 511.968,88.00, 504.768,95.68, 495.968,95.68z" />
92
- <glyph unicode="&#xe00d;" d="M 480.256,355.136c-10.88,17.984-24.288,35.584-40.672,51.904c-16.608,16.448-34.496,29.984-52.80,40.80L 418.944,480.00c0.00,0.00, 46.528,0.00, 69.824-23.264
93
- C 512.00,433.44, 512.00,386.912, 512.00,386.912L 480.256,355.136z M 193.60,64.384L 96.384,64.384 L 96.384,161.60 l 11.68,11.68c 19.776-9.28, 39.392-22.464, 57.088-40.16
94
- c 17.696-17.664, 30.848-37.344, 40.16-57.088L 193.60,64.384z M 453.376,328.256l-220.00-224.16c-11.36,18.816-25.344,37.152-42.496,54.176
95
- C 173.536,175.488, 154.848,189.632, 135.712,200.928l 224.576,220.448c 18.912-8.928, 37.728-21.472, 54.656-38.432S 444.448,347.232, 453.376,328.256z M 64.00,416.00l0.00-383.968 l 384.00,0.00
96
- L 448.00,192.00 l 64.00,63.968l0.00-241.44 C 512.00-11.168, 491.20-32.00, 465.472-32.00L 46.528-32.00 C 20.832-32.00,0.00-11.168,0.00,14.528L0.00,433.44 C0.00,459.168, 20.832,480.00, 46.528,480.00L 288.00,480.00 L 224.00,416.00L 64.00,416.00 z" />
97
- <glyph unicode="&#xe00e;" d="M 480.128,32.032l0.00-0.384 L 352.00,159.776l0.00-63.744 C 352.00,60.672, 323.328,32.00, 288.00,32.00L 64.00,32.00 c-35.328,0.00-64.00,28.672-64.00,64.032L0.00,319.968 C0.00,355.328, 28.672,384.00, 64.00,384.00l 224.00,0.00
98
- c 35.328,0.00, 64.00-28.672, 64.00-64.032L 352.00,255.68 l 128.00,128.00L 480.00,384.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00l0.00-288.00 C 512.00,46.368, 497.728,32.096, 480.128,32.032z" />
99
- <glyph unicode="&#xe00f;" d="M 448.512,384.00l-73.92,0.00 l-21.44,45.312C 348.256,439.968, 330.624,448.00, 313.472,448.00L 191.072,448.00 C 173.92,448.00, 156.288,439.968, 151.36,429.312L 130.432,384.00L 64.00,384.00 C0.00,384.00,0.00,352.00,0.00,352.00
100
- l0.00-320.00 c0.00,0.00,0.00-32.00, 64.00-32.00l 384.00,0.00 c 64.00,0.00, 64.00,32.00, 64.00,32.00L 512.00,352.00 C 512.00,352.00, 512.00,384.00, 448.512,384.00z M 256.00,64.032c-70.688,0.00-128.00,57.248-128.00,127.936C 128.00,262.688, 185.312,320.00, 256.00,320.00s 128.00-57.312, 128.00-128.032
101
- C 384.00,121.28, 326.688,64.032, 256.00,64.032z M 256.00,272.00C 211.808,272.00, 176.00,236.192, 176.00,192.00c0.00-44.16, 35.808-80.00, 80.00-80.00s 80.00,35.84, 80.00,80.00
102
- C 336.00,236.192, 300.192,272.00, 256.00,272.00z" />
103
- <glyph unicode="&#xe010;" d="M 246.592,448.00C 222.40,448.00, 215.072,434.08, 215.072,434.08S 123.52,325.984, 81.792,325.984c-41.088,0.00-40.672,0.00-40.672,0.00C 18.40,325.984,0.00,307.776,0.00,285.344
104
- l0.00-122.048 c0.00-22.464, 18.40-40.64, 41.088-40.64c0.00,0.00, 0.672,0.00, 41.088,0.00c 40.512,0.00, 134.784-109.44, 134.784-109.44c 7.456-7.744, 17.952-12.576, 29.632-12.576
105
- c 22.688,0.00, 41.088,18.176, 41.088,40.64L 287.68,407.328 C 287.68,429.792, 269.28,448.00, 246.592,448.00z M 421.984,408.864l-23.712-35.488
106
- c 43.328-35.20, 71.104-88.864, 71.104-149.088s-27.744-113.92-71.104-149.056l 23.712-35.488C 476.704,82.688, 512.00,149.312, 512.00,224.288
107
- C 512.00,299.296, 476.704,365.888, 421.984,408.864z M 374.40,337.664l-23.936-35.84c 20.672-19.456, 33.696-46.88, 33.696-77.536
108
- c0.00-30.656-13.024-58.048-33.696-77.536l 23.936-35.808c 31.936,27.36, 52.288,68.00, 52.288,113.344C 426.688,269.696, 406.336,310.272, 374.40,337.664z" />
109
- <glyph unicode="&#xe011;" d="M 256.032,480.00C 114.688,480.00, 0.096,365.408, 0.096,224.032c0.00-141.408, 114.592-255.968, 255.936-255.968c 141.376,0.00, 255.968,114.56, 255.968,255.968
110
- C 512.00,365.408, 397.408,480.00, 256.032,480.00z M 339.488,134.24l-7.424-7.488c-6.208-6.176-16.672-6.496-23.232-0.64L 223.072,199.872
111
- C 216.512,205.728, 211.552,217.728, 211.968,226.496l 8.928,141.536C 221.344,376.832, 228.896,384.00, 237.728,384.00l 10.528,0.00 c 8.80,0.00, 16.352-7.168, 16.768-15.968
112
- l 7.328-115.904c 0.448-8.768, 5.60-21.344, 11.424-27.904l 56.384-66.784C 345.984,150.944, 345.728,140.448, 339.488,134.24z" />
113
- <glyph unicode="&#xe012;" d="M 256.032,400.00c-169.472,0.00-256.48-176.448-256.48-176.448s 65.664-176.48, 256.48-176.48c 172.736,0.00, 256.416,175.808, 256.416,175.808
114
- S 428.128,400.00, 256.032,400.00z M 256.416,113.248c-61.984,0.00-106.752,48.288-106.752,110.304c0.00,62.048, 44.768,110.272, 106.752,110.272
115
- c 61.952,0.00, 106.72-48.224, 106.72-110.272C 363.136,161.536, 318.336,113.248, 256.416,113.248z M 256.416,289.728c-35.392-0.064-64.064-30.72-64.064-66.176
116
- c0.00-35.424, 28.672-66.176, 64.064-66.176s 64.032,30.752, 64.032,66.176C 320.448,259.008, 291.808,289.824, 256.416,289.728z" />
117
- <glyph unicode="&#xe013;" d="M 228.928,84.032l 144.64-113.248c 2.368-1.888, 3.808-2.816, 5.184-2.816c 4.00,0.00, 5.248,2.752, 5.248,7.264l0.00,107.20
118
- C 384.00,89.984, 388.992,96.00, 395.68,96.00l 52.576,0.00 c 63.744,0.00, 63.68,30.72, 63.68,30.72L 511.936,446.752 c0.00,0.00,0.00,33.28-63.936,33.28L 64.032,480.032 c-64.00,0.00-64.00-33.28-64.00-33.28L 0.032,126.72
119
- c0.00,0.00-0.032-30.72, 64.224-30.72l 128.00,0.00 C 192.256,96.00, 219.04,95.264, 228.928,84.032z" />
120
- <glyph unicode="&#xe015;" d="M 512.00,13.376C 512.00-11.712, 491.20-32.00, 465.44-32.00L 319.808-32.00 l0.00,175.84 c0.00,26.528-19.008,48.064-42.528,48.064L 234.72,191.904
121
- c-23.488,0.00-42.56-21.536-42.56-48.064L 192.16-32.00 L 46.528-32.00 C 20.832-32.00,0.00-11.712,0.00,13.376L0.00,252.864 c0.00,11.68, 4.672,22.24, 12.096,30.272L 11.616,284.064
122
- l 212.96,186.496c 17.152,12.576, 44.992,12.576, 62.144,0.00l 213.632-186.496L 500.128,282.88C 507.424,274.848, 512.00,264.416, 512.00,252.864L 512.00,13.376 z" />
123
- <glyph unicode="&#xe01b;" d="M 448.00-32.00l-96.00,0.00 l0.00,64.00 l 96.032,0.00 L 448.032,352.00 L 64.00,352.00 l0.00-320.00 l 96.00,0.00 l0.00-64.00 L 64.00-32.00 c-35.328,0.00-64.00,28.672-64.00,64.00L0.00,416.00 c0.00,35.328, 28.672,64.00, 64.00,64.00l 384.00,0.00 c 35.328,0.00, 64.00-28.672, 64.00-64.00l0.00-384.00
124
- C 512.00-3.328, 483.328-32.00, 448.00-32.00z M 96.00,447.968C 78.304,447.968, 64.00,433.664, 64.00,416.00c0.00-17.696, 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00C 128.00,433.664, 113.696,447.968, 96.00,447.968z
125
- M 192.00,447.968C 174.304,447.968, 160.00,433.664, 160.00,416.00c0.00-17.696, 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00C 224.00,433.664, 209.696,447.968, 192.00,447.968z M 135.968,100.352
126
- c-11.104,11.616-11.104,30.432,0.00,42.08l 98.464,104.704c 3.072,3.232, 6.72,5.248, 10.56,6.72c 0.032,0.032, 0.096,0.032, 0.16,0.064
127
- c 2.944,1.12, 5.92,1.728, 8.992,1.856c 1.12,0.096, 2.208,0.192, 3.328,0.128C 258.848,255.808, 260.16,255.392, 261.472,255.104
128
- c 5.664-1.12, 11.136-3.36, 15.488-7.936l 98.432-104.704c 11.136-11.648, 11.136-30.464,0.00-42.08c-11.136-11.552-29.152-11.552-40.288,0.00L 288.00,160.00l0.00-159.968
129
- C 288.00-17.056, 271.968-32.00, 255.68-32.00C 239.424-32.00, 224.00-17.056, 224.00,0.032L 224.00,160.00 l-47.744-59.648C 165.12,88.768, 147.104,88.768, 135.968,100.352z" />
130
- <glyph unicode="&#xe01c;" d="M 361.696,176.80c-5.664,5.728-7.552,16.352-4.192,23.648c0.00,0.00, 23.616,51.232, 23.616,88.864C 381.12,394.624, 295.904,480.00, 190.752,480.00
131
- s-190.40-85.376-190.40-190.656c0.00-105.312, 85.248-190.688, 190.40-190.688c 37.60,0.00, 88.704,23.68, 88.704,23.68c 7.328,3.392, 17.984,1.472, 23.616-4.224
132
- l 145.728-145.888c 5.728-5.696, 15.04-5.696, 20.672,0.00l 37.888,37.952c 5.728,5.728, 5.728,15.072,0.00,20.736L 361.696,176.80z M 190.752,186.688
133
- c-56.544,0.00-102.528,46.016-102.528,102.656c0.00,56.608, 46.016,102.656, 102.528,102.656s 102.496-46.048, 102.496-102.656C 293.248,232.704, 247.296,186.688, 190.752,186.688z" />
134
- <glyph unicode="&#xe01d;" d="M 256.512,298.144c 53.28,0.00, 96.512,40.672, 96.512,90.944C 352.992,439.296, 309.792,480.00, 256.512,480.00S 160.00,439.296, 160.00,389.088
135
- C 160.00,338.848, 203.232,298.144, 256.512,298.144z M 332.16,291.84C 310.88,277.12, 284.864,268.128, 256.512,268.128c-28.48,0.00-54.56,9.056-75.872,23.872
136
- C 94.016,273.344, 32.00,223.584, 32.00,164.992l0.00-129.44 c0.00-8.576, 7.20-15.552, 16.00-15.552l 32.00,0.00 c 8.80,0.00, 16.00,6.304, 16.00,14.048c0.00,4.48,0.00,100.928,0.00,100.928
137
- c0.00,8.32, 4.768,4.992, 10.688,4.992c 5.888,0.00, 10.656-4.512, 10.656-9.984l 0.16-89.984c 0.448-5.184, 4.80-42.208, 10.272-43.296
138
- c0.00,0.00, 33.28-28.672, 128.224-28.672c 95.616,0.00, 128.224,28.672, 128.224,28.672c 5.472,1.056, 9.856,38.08, 10.272,43.296l 0.16,89.984
139
- c0.00,5.504, 4.768,9.984, 10.688,9.984c 5.888,0.00, 10.656-4.512, 10.656-9.984c0.00,0.00,0.00-91.456,0.00-95.936c0.00-7.744, 7.20-14.048, 16.00-14.048l 32.00,0.00
140
- c 8.80,0.00, 16.00,7.008, 16.00,15.552L 480.00,164.992 C 480.00,223.424, 418.304,273.056, 332.16,291.84z" />
141
- <glyph unicode="&#xe01e;" d="M 448.00,416.00C 422.752,416.00, 64.00,416.00, 64.00,416.00C 38.752,416.00,0.00,395.424,0.00,370.528l0.00-9.056 c0.00,0.00, 216.384-180.928, 256.00-180.928s 256.00,180.352, 256.00,180.352l0.00,9.60
142
- C 512.00,395.424, 473.248,416.00, 448.00,416.00z M0.00,288.48l0.00-256.448 C0.00,32.032,0.00,0.00, 64.00,0.00l 384.00,0.00 c 64.096,0.00, 64.00,32.032, 64.00,32.032L 512.00,289.28 c0.00,0.00-182.08-162.496-256.00-162.496
143
- C 182.848,126.784,0.00,288.48,0.00,288.48z" />
144
- <glyph unicode="&#xe01f;" d="M 448.00-32.00L 64.00-32.00 c-17.664,0.00-32.00,14.304-32.00,32.032L 32.00,224.00 c0.00,17.664, 14.336,32.00, 32.00,32.00l 32.00,0.00 L 96.00,320.00 c0.00,88.352, 71.616,160.00, 160.00,160.00s 160.00-71.648, 160.00-160.00l0.00-64.00 l 32.00,0.00 c 17.696,0.00, 32.00-14.336, 32.00-32.00
145
- l0.00-223.968 C 480.00-17.696, 465.696-32.00, 448.00-32.00z M 352.00,320.00c0.00,52.992-42.976,96.00-96.00,96.00S 160.00,372.992, 160.00,320.00l0.00-64.00 l 192.00,0.00 L 352.00,320.00 z" />
146
- <glyph unicode="&#xe020;" d="M 383.936,377.504l-0.064-0.032c-0.448,0.32-0.80,0.768-1.312,1.12c-14.592,10.016-34.496,6.304-44.512-8.352
147
- c-9.984-14.656-6.24-34.656, 8.32-44.672C 346.752,325.248, 347.136,325.12, 347.488,324.928L 347.36,324.704C 388.80,295.68, 416.00,247.456, 416.00,192.832
148
- c0.00-88.768-71.648-160.736-160.00-160.736s-160.00,71.968-160.00,160.736C 96.00,247.456, 123.20,295.68, 164.64,324.704L 164.512,324.928c 0.352,0.192, 0.736,0.32, 1.12,0.608
149
- c 14.592,10.016, 18.304,30.016, 8.32,44.672C 163.936,384.864, 144.032,388.608, 129.44,378.56C 128.96,378.208, 128.576,377.792, 128.096,377.44L 128.064,377.504
150
- C 70.048,336.80, 32.00,269.344, 32.00,192.832c0.00-124.288, 100.288-225.088, 224.00-225.088s 224.00,100.80, 224.00,225.088C 480.00,269.344, 441.952,336.80, 383.936,377.504z M 256.00,160.00
151
- c 17.696,0.00, 32.00,14.304, 32.00,32.00L 288.00,415.968 C 288.00,433.664, 273.696,448.00, 256.00,448.00C 238.336,448.00, 224.00,433.664, 224.00,415.968L 224.00,192.00 C 224.00,174.304, 238.336,160.00, 256.00,160.00z" />
152
- <glyph unicode="&#xe021;" d="M0.00,207.968C 144.00,224.00, 224.00,304.00, 240.00,448.00c 16.032-144.00, 96.032-224.00, 240.064-240.032c-144.032-16.00-224.032-96.00-240.064-240.00C 224.00,111.968, 144.00,191.968,0.00,207.968z" />
153
- <glyph unicode="&#xe023;" d="M 160.00,288.00C 142.336,288.00, 128.00,273.696, 128.00,256.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 177.664,288.00, 160.00,288.00z M 256.00,192.00
154
- c-17.664,0.00-32.00-14.304-32.00-32.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 273.664,192.00, 256.00,192.00z M 160.00,192.00c-17.664,0.00-32.00-14.304-32.00-32.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 177.664,192.00, 160.00,192.00z
155
- M 448.00,447.968l-64.00,0.00 C 384.00,465.664, 369.696,480.00, 352.00,480.00s-32.00-14.336-32.00-32.032L 192.00,447.968 C 192.00,465.664, 177.664,480.00, 160.00,480.00S 128.00,465.664, 128.00,447.968L 64.00,447.968 C 28.672,447.968,0.00,419.328,0.00,384.00l0.00-320.00
156
- c0.00-35.36, 28.672-64.00, 64.00-64.00l 384.00,0.00 c 35.328,0.00, 64.00,28.64, 64.00,64.00L 512.00,384.00 C 512.00,419.328, 483.328,447.968, 448.00,447.968z M 448.00,64.00L 64.00,64.00 L 64.00,384.00 l 64.00,0.00 c0.00-17.696, 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00l 128.00,0.00
157
- c0.00-17.696, 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00l 64.00,0.00 L 448.00,64.00 z M 352.00,288.00c-17.696,0.00-32.00-14.304-32.00-32.00s 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 369.696,288.00, 352.00,288.00z M 256.00,288.00
158
- C 238.336,288.00, 224.00,273.696, 224.00,256.00s 14.336-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 273.664,288.00, 256.00,288.00z M 352.00,192.00c-17.696,0.00-32.00-14.304-32.00-32.00s 14.304-32.00, 32.00-32.00s 32.00,14.304, 32.00,32.00S 369.696,192.00, 352.00,192.00z" />
159
- <glyph unicode="&#xe024;" d="M 459.136,263.52c-8.672,1.28-17.984,9.152-20.672,17.504l-13.056,31.616c-4.064,7.776-3.136,19.936, 2.176,26.976l 21.056,28.096
160
- c 5.312,7.04, 4.864,18.176-0.992,24.768L 424.512,415.68c-6.56,5.856-17.76,6.272-24.80,0.992l-28.064-21.12
161
- c-7.072-5.248-19.20-6.24-27.008-2.144L 313.056,406.432C 304.64,409.088, 296.736,418.432, 295.552,427.168L 290.56,461.92
162
- C 289.312,470.624, 281.152,478.496, 272.384,479.392C 272.384,479.392, 266.976,480.00, 256.00,480.00S 239.616,479.392, 239.616,479.392C 230.848,478.496, 222.656,470.624, 221.44,461.92
163
- L 216.448,427.168C 215.232,418.432, 207.36,409.088, 198.944,406.432L 167.36,393.408C 159.584,389.312, 147.456,390.304, 140.416,395.552l-28.128,21.12
164
- C 105.28,421.984, 94.08,421.536, 87.488,415.68L 64.384,392.544C 58.56,385.952, 58.112,374.784, 63.392,367.744L 84.48,339.648c 5.28-7.04, 6.24-19.20, 2.144-26.976
165
- L 73.60,281.024C 70.912,272.672, 61.60,264.80, 52.896,263.52L 18.144,258.624C 9.408,257.344, 1.536,249.184, 0.64,240.416c0.00,0.00-0.576-5.44-0.576-16.416
166
- c0.00-10.976, 0.576-16.448, 0.576-16.448c 0.928-8.736, 8.80-16.896, 17.504-18.144l 34.752-4.928C 61.60,183.232, 70.912,175.328, 73.60,166.976l 13.056-31.616
167
- c 4.096-7.808, 3.136-19.904-2.144-26.944l-21.088-28.128c-5.28-7.072-6.56-16.64-2.816-21.248c 3.712-4.608, 14.432-16.032, 14.464-16.032
168
- c0.00-0.064, 3.616-3.36, 8.00-7.328c 4.384-4.032, 22.24-9.60, 29.28-4.32l 28.128,21.056c 7.04,5.312, 19.168,6.272, 26.944,2.176L 198.944,41.60
169
- c 8.416-2.72, 16.288-12.00, 17.504-20.736l 4.992-34.752c 1.216-8.672, 9.408-16.64, 18.144-17.536c0.00,0.00, 5.44-0.576, 16.416-0.576
170
- s 16.384,0.576, 16.384,0.576c 8.736,0.896, 16.928,8.832, 18.176,17.536l 4.992,34.752c 1.184,8.736, 9.056,18.016, 17.504,20.736l 31.552,12.992
171
- c 7.808,4.096, 19.936,3.136, 27.008-2.112l 28.128-21.12c 7.072-5.28, 18.176-4.832, 24.80,0.96l 23.136,23.168
172
- c 5.824,6.592, 6.24,17.76, 0.928,24.80l-21.056,28.128c-5.312,7.04-6.24,19.136-2.176,26.944l 13.056,31.616
173
- c 2.688,8.384, 12.00,16.256, 20.672,17.504l 34.752,4.928c 8.672,1.248, 16.576,9.408, 17.504,18.144c0.00,0.00, 0.576,5.44, 0.576,16.448
174
- c0.00,10.976-0.576,16.416-0.576,16.416c-0.928,8.768-8.80,16.928-17.504,18.208L 459.136,263.52z M 256.00,160.00c-35.328,0.00-64.00,28.672-64.00,64.00
175
- c0.00,35.36, 28.672,64.00, 64.00,64.00c 35.296,0.00, 64.00-28.672, 64.00-64.00C 320.00,188.672, 291.328,160.00, 256.00,160.00z" />
176
- <glyph unicode="&#xe025;" d="M 384.00,348.512L 384.00,348.512l 64.00,0.00 c 17.696,0.00, 32.00-14.336, 32.00-32.00l0.00-320.00 c0.00-17.696-14.304-32.00-32.00-32.00L 112.00-35.488 c-44.192,0.00-80.00,35.808-80.00,80.00L 32.00,396.48
177
- c0.00,44.192, 35.808,80.032, 80.00,80.032L 448.00,476.512 c 17.696,0.00, 32.00-14.336, 32.00-32.00c0.00-17.696-14.304-32.032-32.00-32.032l-64.00,0.00 L 192.00,412.48 L 128.00,412.48 c-17.664,0.00-32.00-14.304-32.00-32.00s 14.336-32.00, 32.00-32.00l 64.00,0.00 l0.00-128.00
178
- l 32.00,32.00l 32.00-32.00l0.00,128.00 L 384.00,348.48 z" />
179
- <glyph unicode="&#xe026;" d="M 32.00,32.00l0.00,96.00 l 64.00,0.00 l0.00-96.064 l 320.00,0.00 L 416.00,416.00 L 96.00,416.00 L 96.00,320.00 L 32.00,320.00 L 32.00,416.00 C 32.00,451.328, 60.672,480.00, 96.00,480.00l 320.00,0.00 C 451.36,480.00, 480.00,451.328, 480.00,416.00l0.00-384.00 c0.00-35.36-28.64-64.00-64.00-64.00L 96.00-32.00
180
- C 60.672-32.00, 32.00-3.36, 32.00,32.00z M 164.384,344.00c 11.616,11.136, 30.432,11.136, 42.048,0.00l 104.704-98.40c 3.264-3.104, 5.248-6.784, 6.752-10.592
181
- c 0.032-0.064, 0.032-0.096, 0.064-0.16C 319.072,231.936, 319.68,228.928, 319.776,225.856C 319.904,224.736, 320.00,223.648, 319.904,222.496
182
- C 319.84,221.152, 319.392,219.872, 319.072,218.528C 317.984,212.896, 315.744,207.424, 311.136,203.04L 206.432,104.64c-11.616-11.136-30.432-11.136-42.048,0.00
183
- c-11.584,11.136-11.584,29.12,0.00,40.256L 224.00,192.00L 64.00,192.00 C 46.944,192.00, 32.00,208.032, 32.00,224.32C 32.00,240.576, 46.944,256.00, 64.00,256.00l 160.00,0.00 L 164.384,303.776
184
- C 152.768,314.848, 152.768,332.928, 164.384,344.00z" />
185
- <glyph unicode="&#xe027;" d="M 448.00,352.00l-32.00,0.00 l0.00-320.00 c0.00,0.00-0.992-64.00-64.00-64.00c0.00,0.00-159.008,0.00-224.00,0.00s-64.00,64.00-64.00,64.00L 64.00,352.00 L 32.00,352.00 C 14.336,352.00,0.00,366.336,0.00,384.00s 14.336,32.00, 32.00,32.00l 128.00,0.00 l 32.00,0.00 L 192.00,432.00 C 192.00,458.528, 213.472,480.00, 240.00,480.00
186
- C 266.496,480.00, 288.00,458.528, 288.00,432.00L 288.00,416.00 l 32.00,0.00 l 128.00,0.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00S 465.696,352.00, 448.00,352.00z M 352.00,352.00L 128.00,352.00 l0.00-320.00 l 224.00,0.00 L 352.00,352.00 z M 192.00,320.00C 209.664,320.00, 224.00,305.664, 224.00,288.00l0.00-192.00 c0.00-17.696-14.336-32.00-32.00-32.00
187
- s-32.00,14.304-32.00,32.00L 160.00,288.00 C 160.00,305.664, 174.336,320.00, 192.00,320.00z M 288.00,320.00C 305.696,320.00, 320.00,305.664, 320.00,288.00l0.00-192.00 c0.00-17.696-14.304-32.00-32.00-32.00s-32.00,14.304-32.00,32.00L 256.00,288.00 C 256.00,305.664, 270.304,320.00, 288.00,320.00z" />
188
- <glyph unicode="&#xe028;" d="M 448.00,352.00c0.00,0.00-139.008,0.032-160.00,0.032S 243.008,416.00, 224.00,416.00S 64.00,416.00, 64.00,416.00C 28.672,416.00,0.00,387.36,0.00,352.00l0.00-320.032 c0.00-63.328, 64.00-64.00, 64.00-64.00l 384.00,0.00 c 35.328,0.00, 64.00,28.672, 64.00,64.00
189
- l0.00,256.00 C 512.00,323.328, 483.328,352.00, 448.00,352.00z M 448.032,31.968L 64.00,31.968 L 64.00,352.00 c0.00,0.00, 107.008,0.00, 127.008,0.00s 44.992-64.00, 64.00-64.00c 20.00,0.00, 193.024,0.00, 193.024,0.00L 448.032,31.968 z" />
190
- <glyph unicode="&#xe029;" d="M 447.712,480.032L 63.776,480.032 C 0.128,480.032,0.00,416.00,0.00,416.00l0.00-255.968 C0.00,160.032, 0.352,96.00, 64.00,96.00l 128.00,0.00 c0.00,0.00, 26.784-0.736, 36.672-11.968l 144.672-113.248
191
- c 2.368-1.888, 3.808-2.816, 5.216-2.816c 4.00,0.00, 5.184,2.752, 5.184,7.296l0.00,107.168 c0.00,7.552, 4.992,13.60, 11.712,13.60L 448.00,96.032
192
- c 62.656,0.00, 64.00,64.032, 64.00,64.032L 512.00,416.00 C 512.00,416.00, 511.36,480.032, 447.712,480.032z M 448.00,160.032l-128.00,0.00 l0.00-64.00 l-82.304,64.00L 64.00,160.032 L 64.00,416.00 l 384.00,0.00 L 448.00,160.032 z" />
193
- <glyph unicode="&#xe02a;" d="M 437.024,405.024c-99.968,100.00-262.048,99.968-362.048,0.00c-99.968-99.936-99.968-262.048, 0.032-362.016
194
- c 99.968-99.968, 262.048-99.968, 362.016-0.032C 537.024,142.944, 537.024,305.056, 437.024,405.024z M 373.60,154.528
195
- c 13.76-13.76, 14.112-35.648, 0.864-48.928c-13.28-13.28-35.20-12.864-48.896,0.864L 256.032,175.968L 186.24,106.176
196
- c-13.76-13.728-35.648-14.112-48.896-0.864c-13.28,13.28-12.864,35.20, 0.832,48.928L 208.00,224.032L 138.176,293.856
197
- C 124.448,307.552, 124.064,329.44, 137.344,342.72C 150.592,356.00, 172.512,355.616, 186.24,341.888l 69.792-69.792l 69.536,69.536
198
- c 13.728,13.728, 35.616,14.112, 48.896,0.832c 13.248-13.28, 12.864-35.168-0.864-48.896L 304.096,224.032L 373.60,154.528z" />
199
- <glyph unicode="&#xe031;" d="M 256.00,480.032C 114.624,480.032,0.00,365.376,0.00,224.00c0.00-141.408, 114.624-256.032, 256.00-256.032S 512.00,82.592, 512.00,224.00C 512.00,365.376, 397.376,480.032, 256.00,480.032z
200
- M 382.112,191.648L 288.416,191.648 l0.00-93.76 c0.00-18.496-14.496-33.536-32.384-33.536s-32.384,15.04-32.384,33.536l0.00,93.76 l-94.08,0.00 C 111.072,191.648, 96.032,206.112, 96.032,224.00
201
- s 15.04,32.384, 33.536,32.384l 94.08,0.00 l0.00,94.08 C 223.648,368.992, 238.144,384.00, 256.032,384.00s 32.384-15.008, 32.384-33.536l0.00-94.08 l 93.728,0.00
202
- c 18.528,0.00, 33.536-14.528, 33.536-32.384S 400.672,191.648, 382.112,191.648z" />
203
- <glyph unicode="&#xe014;" d="M 448.00,31.936L 64.00,31.936 l0.00,384.00 l 160.00,0.00 l0.00,64.00 L 44.512,479.968C 19.936,479.968,0.00,460.00,0.00,435.424l0.00-422.976 c0.00-24.576, 19.936-44.512, 44.512-44.512l 422.976,0.00
204
- c 24.576,0.00, 44.512,19.936, 44.512,44.512L 512.00,191.936 l-64.00,0.00 L 448.00,31.936 z M 512.00,448.00c0.00,7.328-3.04,13.76-7.36,19.136c-0.672,0.864-1.024,1.856-1.792,2.656
205
- c-0.096,0.064-0.128,0.192-0.192,0.288c-0.192,0.16-0.224,0.416-0.416,0.608c-2.048,2.048-4.576,3.264-6.976,4.64
206
- c-1.056,0.608-1.92,1.504-3.04,1.984c-4.352,1.888-8.96,2.688-13.632,2.56c-0.064,0.00-0.128,0.032-0.192,0.032l-156.512,0.00
207
- C 303.392,479.936, 288.384,465.632, 288.384,448.00c0.00-17.60, 15.04-31.904, 33.568-31.904l 80.608,0.00 L 201.28,214.432c-12.416-12.384-12.416-32.384,0.00-44.736
208
- c 12.416-12.384, 32.512-12.384, 44.896,0.00l 201.984,201.76l0.00-81.60 c0.00-18.528, 14.304-33.536, 31.936-33.536C 497.728,256.32, 512.00,271.328, 512.00,289.856L 512.00,446.368
209
- c0.00,0.32-0.16,0.576-0.16,0.864C 511.84,447.488, 512.00,447.744, 512.00,448.00z" />
210
- <glyph unicode="&#xe02b;" d="M 256.00,480.00C 114.61,480.00,0.00,365.369,0.00,223.957c0.00-141.369, 114.61-255.979, 256.00-255.979c 141.39,0.00, 256.00,114.61, 256.00,255.979C 512.00,365.369, 397.39,480.00, 256.00,480.00z
211
- M 256.00,70.379c-84.814,0.00-153.60,68.764-153.60,153.579c0.00,84.857, 68.786,153.621, 153.60,153.621c 84.836,0.00, 153.60-68.764, 153.60-153.621C 409.60,139.143, 340.836,70.379, 256.00,70.379z" />
212
- <glyph unicode="&#xe032;" d="M 256.00,480.00C 114.61,480.00,0.00,365.412,0.00,224.021c0.00-141.412, 114.61-256.043, 256.00-256.043c 141.39,0.00, 256.00,114.631, 256.00,256.043C 512.00,365.412, 397.39,480.00, 256.00,480.00z
213
- M 256.00,70.40c-84.814,0.00-153.60,68.786-153.60,153.621c0.00,84.793, 68.786,153.543, 153.60,153.543c 84.836,0.00, 153.60-68.764, 153.60-153.543C 409.60,139.186, 340.836,70.40, 256.00,70.40z M 256.00,300.80
214
- C 213.582,300.80, 179.20,266.418, 179.20,224.021C 179.20,181.582, 213.582,147.20, 256.00,147.20c 42.418,0.00, 76.80,34.382, 76.80,76.821C 332.80,266.418, 298.418,300.80, 256.00,300.80z" />
215
- <glyph unicode="&#xe033;" d="M 128.00,480.00l 256.00,0.00 c 70.713,0.00, 128.00-57.287, 128.00-128.00l0.00-256.021 c0.00-70.713-57.287-128.00-128.00-128.00L 128.00-32.021 c-70.677,0.00-128.00,57.287-128.00,128.00L0.00,352.00 C0.00,422.713, 57.323,480.00, 128.00,480.00z" />
216
- <glyph unicode="&#xe034;" d="M 384.00,480.00L 128.00,480.00 C 57.323,480.00,0.00,422.677,0.00,352.00l0.00-256.021 c0.00-70.713, 57.323-128.00, 128.00-128.00l 256.00,0.00 c 70.713,0.00, 128.00,57.287, 128.00,128.00L 512.00,352.00 C 512.00,422.677, 454.699,480.00, 384.00,480.00z M 421.433,276.046
217
- l-183.652-183.652c-3.74-3.74-9.849-3.74-13.568,0.00l-27.157,27.371c-3.74,3.783-9.849,9.963-13.568,13.724l-63.154,66.382
218
- c-1.849,1.892-2.837,4.473-2.837,6.933c0.00,2.503, 1.003,4.864, 2.837,6.756l 27.669,24.953c 1.87,1.913, 4.373,2.816, 6.855,2.816
219
- c 2.425,0.00, 4.864-0.946, 6.734-2.816l 62.62-63.90c 3.705-3.819, 9.828-3.819, 13.568,0.00l 142.948,142.514c 3.74,3.74, 9.828,3.74, 13.547,0.00
220
- l 27.157-27.392C 425.138,286.009, 425.138,279.787, 421.433,276.046z" />
221
- <glyph unicode="&#xe035;" d="M 346.484,277.364c-18.711,0.00-77.615,1.396-126.813,2.071c 15.244,50.595, 28.416,96.303, 33.257,128.884c 69.306,0.00, 154.554-0.698, 167.703-0.698
222
- c 21.481,0.00, 31.884,7.633, 39.494,27.02c 4.841,12.474, 14.545,30.487, 14.545,36.026c0.00,11.078-6.935,14.545-18.711,14.545c-31.884,0.00-124.719,3.468-207.919,3.468
223
- C 110.895,488.681,0.00,441.553,0.00,369.501c0.00-18.013, 7.633-30.487, 15.942-30.487c 2.071,0.00, 4.841,0.698, 6.935,2.769c 29.789,26.345, 56.832,62.371, 135.843,66.513
224
- c-16.64-38.097-34.653-90.065-50.595-144.826c-65.14-17.315-92.858-42.938-92.858-64.442c0.00-4.166, 3.468-6.935, 9.007-6.935c 15.942,0.00, 39.494,2.071, 66.537,5.539
225
- c-18.013-69.306-29.789-135.145-29.789-171.148c0.00-42.263, 0.698-67.212, 23.552-67.212c 38.819,0.00, 79.709,6.935, 79.709,40.89c0.00,63.767, 16.64,138.589, 36.026,209.268
226
- c 6.237,0.698, 12.474,0.698, 18.711,0.698c 18.013,0.00, 93.556-4.841, 105.332-4.841c 13.172,0.00, 19.409,7.633, 24.25,25.623c 2.769,11.078, 9.007,27.718, 9.007,33.257
227
- C 357.585,274.548, 353.42,277.364, 346.484,277.364z M 1316.841,131.119c-5.539,0.00-14.545-6.237-24.948-20.108c-22.179-29.114-81.082-63.767-97.722-63.767
228
- c-11.055,0.00-15.919,18.735-15.919,47.825c0.00,29.789, 5.539,94.231, 14.545,147.596c 20.108,0.00, 58.205-3.468, 69.306-3.468c 10.403,0.00, 19.409,38.819, 19.409,47.825
229
- c0.00,8.308-0.698,11.078-7.633,11.078c-15.244,0.00-36.724,0.698-68.608,1.396l 28.393,49.897c-6.935,29.114-15.22,56.134-45.033,56.134
230
- c-24.948,0.00-48.524-44.358-67.91-106.729c-15.244-0.698-28.393-0.698-37.423-0.698c-15.919-18.711-17.99-29.789-17.99-51.968c0.00-4.166, 2.769-6.935, 8.285-6.935
231
- l 31.209,0.00 c-8.192-36.096-13.708-73.775-15.686-108.567c-19.735-13.777-74.496-83.363-100.119-83.363c-10.38,0.00-14.545,24.948-14.545,56.832
232
- c0.00,35.351, 0.698,63.767, 5.539,90.065c 10.403,17.315, 19.409,33.955, 28.393,54.761c0.00,22.877-38.097,60.998-66.513,60.998c-9.728,0.00-17.315-7.633-23.575-20.108
233
- c-4.841,2.769-11.776,4.841-20.783,6.935c-14.545,2.769-28.393,4.166-41.588,4.166c-57.507,0.00-107.404-36.026-139.264-74.147
234
- c-29.30-35.607-45.079-81.152-49.664-125.673c-23.11-27.648-52.62-53.108-96.582-53.108c-34.653,0.00-59.601,23.575-59.601,74.822l0.00,27.718
235
- c 86.621,112.943, 192.652,188.486, 192.652,273.711c0.00,38.819-24.25,61.649-63.767,61.649c-142.755,0.00-227.281-210.641-227.281-380.393c0.00-99.095, 71.377-137.914, 147.619-137.914
236
- c 43.055,0.00, 85.62,25.693, 114.269,58.927c 15.942-38.935, 52.387-62.371, 99.863-62.371c 63.791,0.00, 99.793,28.393, 124.044,67.887c 7.633-38.121, 22.877-64.442, 49.199-64.442
237
- c 53.807,0.00, 115.06,43.171, 143.407,90.042c 6.586-52.666, 25.786-90.042, 61.766-90.042c 75.567,0.00, 173.94,79.011, 173.94,139.264
238
- C 1326.545,122.81, 1323.776,131.119, 1316.841,131.119z M 616.82,418.001c 8.308,0.00, 11.776-4.841, 11.776-15.244c0.00-42.961-46.429-70.004-108.777-165.609
239
- C 539.881,352.186, 587.008,418.001, 616.82,418.001z M 892.672,120.739c-16.64-58.903-54.063-82.455-85.946-82.455c-31.185,0.00-39.494,26.345-39.494,53.364
240
- c0.00,93.556, 72.076,149.667, 139.287,162.141C 896.14,209.431, 893.347,149.178, 892.672,120.739z" horiz-adv-x="1326.5454545454545" />
241
- <glyph unicode="&#xe022;" d="M0.00,288.224L0.00,342.08 c0.00,22.976, 19.104,41.568, 42.656,41.568l 53.696,0.00 L 96.352,428.864
242
- c0.00,10.528, 10.784,51.104, 24.096,51.104L 168.64,479.968 c 13.312,0.00, 24.096-40.576, 24.096-51.104l0.00-45.216 l 159.616,0.00 L 352.352,428.864 c0.00,10.528, 10.816,51.104, 24.096,51.104l 48.192,0.00
243
- c 13.312,0.00, 24.096-40.576, 24.096-51.104l0.00-45.216 l 20.64,0.00 c 23.584,0.00, 42.688-18.592, 42.688-41.568l0.00-53.888 L0.00,288.192 z M 512.032,255.68l0.00-246.112
244
- c0.00-22.976-19.104-41.60-42.688-41.60L 42.656-32.032 c-23.552,0.00-42.656,18.624-42.656,41.60L0.00,255.68 L 512.032,255.68 z" />
245
- <glyph unicode="&#xe036;" d="M 512.00,224.00l-190.40-64.00l-5.152-192.00L 193.60,120.48L0.00,65.792L 114.496,224.00L0.00,382.208l 193.60-54.656L 316.448,480.00l 5.152-192.00L 512.00,224.00z" />
246
- <glyph unicode="&#xe037;" d="M 384.00,63.776c 17.696,0.00, 32.00,14.336, 32.00,32.032s-14.304,32.032-32.00,32.032
247
- s-32.00-14.336-32.00-32.032S 366.304,63.776, 384.00,63.776z M 469.376,384.00L 42.688,384.00 c-23.584,0.00-42.688-19.104-42.688-42.688l0.00-330.592
248
- c0.00-23.584, 19.104-42.72, 42.688-42.72l 426.688,0.00 c 23.552,0.00, 42.656,19.136, 42.656,42.72L 512.032,341.312 C 512.032,364.896, 492.928,384.00, 469.376,384.00z
249
- M 448.032,32.096L 64.00,32.096 l0.00,127.776 l 384.032,0.00 L 448.032,32.096 z M 448.032,255.936L 64.00,255.936 l0.00,64.032 l 384.032,0.00 L 448.032,255.936 z" />
250
- <glyph unicode="&#xe038;" d="M 469.856,437.856c-56.224,56.224-147.392,56.224-203.648-0.032l-224.00-224.00c-56.256-56.256-56.256-147.424-0.032-203.648
251
- s 147.392-56.256, 203.648,0.00l 47.424,46.08c-25.504,0.576-48.768,8.864-68.48,22.336l-24.224-23.20c-31.264-31.264-81.92-31.264-113.152,0.00
252
- c-31.232,31.232-31.232,81.92, 0.032,113.152l 224.00,224.00c 31.264,31.264, 81.92,31.264, 113.12,0.00c 31.264-31.264, 31.296-81.888, 0.032-113.12L 312.96,167.04
253
- c-9.376-9.376-24.576-9.376-33.952,0.00s-9.376,24.576,0.00,33.952l 84.288,85.088c 6.24,6.24, 6.272,16.384,0.00,22.624l-22.624,22.624
254
- c-6.24,6.24-16.384,6.24-22.624,0.00l-84.288-85.088c-34.368-34.368-34.368-90.08,0.00-124.448c 34.368-34.368, 90.08-34.368, 124.448,0.00l 111.616,112.416
255
- C 526.048,290.432, 526.048,381.632, 469.856,437.856z" />
256
- <glyph unicode="&#xe039;" d="M 469.824,437.824C 442.592,465.024, 406.432,480.00, 368.00,480.00c-38.464,0.00-74.624-14.976-101.824-42.176
257
- c0.00,0.00-90.848-90.816-96.064-95.968c-27.104-27.168-42.048-63.36-42.112-102.048c 0.064-38.40, 15.04-74.496, 42.176-101.632l 11.68-11.712
258
- c 3.136-3.136, 7.264-4.672, 11.328-4.672c 4.096,0.00, 8.192,1.568, 11.328,4.672l 22.624,22.624c 6.24,6.24, 6.24,16.384,0.00,22.624l-11.712,11.712
259
- c-30.688,30.688-31.104,81.024-0.896,112.256c 0.928,0.928, 96.928,96.896, 96.928,96.896C 326.56,407.68, 346.624,416.00, 368.00,416.00
260
- s 41.44-8.32, 56.576-23.392l0.00-0.032 c 31.264-31.296, 31.264-81.888,0.00-113.12l-4.928-4.928C 427.36,253.728, 431.968,231.424, 432.00,208.00
261
- c0.00-4.256-0.608-8.352-0.832-12.512l 38.656,38.688C 526.048,290.432, 526.016,381.632, 469.824,437.824z M 330.08,321.568
262
- c-3.104,3.136-7.232,4.672-11.296,4.672c-4.128,0.00-8.224-1.568-11.328-4.672l-22.624-22.624c-6.272-6.24-6.272-16.384,0.00-22.624
263
- l 11.68-11.712c 30.688-30.688, 31.136-81.024, 0.928-112.256c-0.928-0.928-96.928-96.896-96.928-96.896C 185.44,40.32, 165.376,32.00, 143.968,32.00
264
- c-21.344,0.00-41.408,8.32-56.544,23.392l0.00,0.032 c-31.264,31.296-31.264,81.888-0.032,113.12l 4.96,4.928C 84.608,194.272, 80.00,216.576, 80.00,240.00
265
- c0.00,4.256, 0.576,8.352, 0.832,12.512l-38.656-38.688c-56.256-56.256-56.224-147.424,0.00-203.616C 69.408-17.024, 105.568-32.00, 144.00-32.00
266
- s 74.592,14.976, 101.824,42.176c0.00,0.00, 90.848,90.816, 96.064,95.968c 27.104,27.168, 42.048,63.36, 42.112,102.048c-0.064,38.40-15.072,74.496-42.176,101.632
267
- L 330.08,321.568z" />
268
- <glyph unicode="&#xe03b;" d="M 128.00,480.00l-96.00,0.00 c-17.664,0.00-32.00-14.304-32.00-32.00l0.00-448.00 c0.00-17.696, 14.336-32.00, 32.00-32.00l 96.00,0.00
269
- c 17.664,0.00, 32.00,14.304, 32.00,32.00l0.00,448.00 C 160.00,465.696, 145.664,480.00, 128.00,480.00z M 448.00,480.00l-96.00,0.00 c-17.696,0.00-32.00-14.304-32.00-32.00l0.00-448.00 c0.00-17.696, 14.304-32.00, 32.00-32.00l 96.00,0.00
270
- c 17.696,0.00, 32.00,14.304, 32.00,32.00l0.00,448.00 C 480.00,465.696, 465.696,480.00, 448.00,480.00z" />
271
- <glyph unicode="&#xe03c;" d="M 440.00,237.888l-416.00,240.00c-4.928,2.848-11.072,2.848-16.00,0.00C 3.072,475.008, 0.00,469.728, 0.00,464.00l0.00-480.00
272
- c0.00-5.728, 3.072-11.008, 8.00-13.856C 10.464-31.296, 13.248-32.00, 16.00-32.00s 5.536,0.704, 8.00,2.144l 416.00,240.00c 4.928,2.848, 8.00,8.128, 8.00,13.856
273
- S 444.928,235.008, 440.00,237.888z" />
274
- <glyph unicode="&#xe03d;" d="M 506.368,194.08l-120.608,176.00c-5.984,8.704-15.84,13.92-26.40,13.92
275
- L 32.00,384.00 c-17.696,0.00-32.00-14.336-32.00-32.00l0.00-352.00 c0.00-17.664, 14.304-32.00, 32.00-32.00l 327.36,0.00 c 10.56,0.00, 20.448,5.184, 26.40,13.92l 120.608,176.00
276
- C 513.888,168.80, 513.888,183.20, 506.368,194.08z M 368.00,128.00c-26.496,0.00-48.00,21.504-48.00,48.00s 21.504,48.00, 48.00,48.00s 48.00-21.504, 48.00-48.00
277
- S 394.496,128.00, 368.00,128.00z" />
278
- <glyph unicode="&#xe03e;" d="M 373.376,480.00L 43.104,480.00 c-23.776,0.00-43.104-19.072-43.104-32.00l0.00-426.688
279
- c0.00-34.208, 19.328-53.312, 43.104-53.312l 330.272,0.00 c 23.52,0.00, 42.624,19.104, 42.624,42.656L 416.00,437.344 C 416.00,460.928, 396.896,480.00, 373.376,480.00z M 224.00,64.00
280
- l-128.00,0.00 c-17.696,0.00-32.00,14.304-32.00,32.00s 14.304,32.00, 32.00,32.00l 128.00,0.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00S 241.696,64.00, 224.00,64.00z M 320.00,192.00l-224.00,0.00 c-17.696,0.00-32.00,14.304-32.00,32.00
281
- s 14.304,32.00, 32.00,32.00l 224.00,0.00 c 17.696,0.00, 32.00-14.304, 32.00-32.00S 337.696,192.00, 320.00,192.00z M 320.00,320.00l-224.00,0.00 c-17.696,0.00-32.00,14.304-32.00,32.00s 14.304,32.00, 32.00,32.00l 224.00,0.00
282
- c 17.696,0.00, 32.00-14.304, 32.00-32.00S 337.696,320.00, 320.00,320.00z" />
283
- <glyph unicode="&#xe03a;" d="M 469.376-32.00L 42.688-32.00 c-23.584,0.00-42.688,18.624-42.688,41.632L0.00,342.368 C0.00,365.376 19.104,384.00 42.688,384.00L 469.376,384.00
284
- c 23.552,0.00, 42.656-18.624, 42.656-41.632l0.00-332.736 C 512.032-13.376, 492.928-32.00, 469.376-32.00z M 448.032,320.00L 64.00,320.00 l0.00-255.904 c0.00,0.00, 32.00,32.032, 64.00,64.032
285
- c 32.00,32.032, 64.00,0.00, 64.00,0.00l 32.00-32.00c0.00,0.00, 59.36,60.384, 96.00,96.064c 33.44,33.472, 64.00,0.00, 64.00,0.00l 64.00-64.064L 448.032,320.00z M 160.00,192.00c-17.664,0.00-32.00,14.336-32.00,31.968
286
- c0.00,17.696, 14.336,32.032, 32.00,32.032s 32.00-14.336, 32.00-32.032C 192.00,206.336 177.664,192.00 160.00,192.00z" />
287
- <glyph unicode="&#xe03f;" d="M 482.752,480.00L 29.248,480.00 C 13.184,480.00, 0.00,466.816, 0.00,450.752l0.00-453.504 C 0.00-18.816, 13.184-32.00, 29.248-32.00l 453.504,0.00
288
- C 498.816-32.00, 512.00-18.816, 512.00-2.752L 512.00,450.752 C 512.00,466.816, 498.816,480.00, 482.752,480.00z M 434.56,192.792l-70.312,0.00 l0.00-188.248 l-71.68,0.00 L 292.568,192.792 L 242.776,192.792 L 242.776,260.568 l 49.752,0.00
289
- c0.00,0.00,0.00,27.776,0.00,57.896c0.00,45.504, 29.44,87.296, 97.192,87.296c 27.352,0.00, 47.68-2.664, 47.68-2.664l-1.624-63.272c0.00,0.00-20.672,0.192-43.264,0.192
290
- c-24.448,0.00-28.328-11.264-28.328-29.952c0.00-2.304,0.00-3.136,0.00-3.20c0.00-5.248,0.00-17.96,0.00-46.312l 73.512,0.00 L 434.56,192.792z" />
291
- <glyph unicode="&#xe040;" d="M 83.488,415.264L 83.488,416.00 C 83.36,415.648, 83.20,415.424, 83.072,415.264L 83.488,415.264 zM 508.64,288.832c0.00,41.184-33.12,74.624-73.984,74.624C 376.384,365.952, 316.80,367.04, 256.00,366.944
292
- C 195.20,367.008, 135.616,365.952, 77.344,363.456c-40.80,0.00-73.952-33.44-73.952-74.624C 0.96,256.16-0.096,223.584,0.00,190.944
293
- c-0.096-32.608, 0.96-65.248, 3.392-97.92c0.00-41.184, 33.12-74.624, 73.952-74.624C 135.552,15.968, 195.20,14.848, 256.00,14.976
294
- c 60.736-0.128, 120.352,0.992, 178.624,3.424c 40.80,0.00, 73.952,33.44, 73.952,74.624c 2.496,32.672, 3.52,65.312, 3.424,97.92
295
- C 512.096,223.584, 511.072,256.192, 508.64,288.832z M 192.032,78.976l0.00,224.00 l 160.00-112.00L 192.032,78.976z" />
296
- <glyph unicode="&#xe041;" d="M 437.184,415.904C 366.016,418.24, 317.888,377.984, 292.64,294.976c 12.96,5.408, 25.632,8.16, 37.92,8.16
297
- c 25.984,0.00, 37.44-14.72, 34.336-44.224c-1.504-17.856-12.96-43.84-34.336-77.984C 309.056,146.784, 292.992,129.728, 282.368,129.728
298
- c-13.824,0.00-26.432,26.336-37.952,79.104C 240.576,224.352, 233.664,263.904, 223.776,327.552c-9.248,58.944-33.728,86.432-73.472,82.56
299
- C 133.504,408.576, 108.288,393.056, 74.688,363.616C 50.112,341.088, 25.28,318.592,0.00,296.096l 24.064-31.392c 23.008,16.384, 36.448,24.448, 40.16,24.448
300
- c 17.664,0.00, 34.08-27.872, 49.376-83.68c 13.792-51.264, 27.584-102.40, 41.376-153.632c 20.608-55.776, 45.92-83.712, 75.68-83.712
301
- c 48.16,0.00, 107.168,45.728, 176.704,137.216c 67.296,87.616, 102.016,156.672, 104.384,207.136C 514.848,379.872, 489.984,414.40, 437.184,415.904z" />
302
- <glyph unicode="&#xe042;" d="M 83.488,479.264L 83.488,480.00 C 83.36,479.648, 83.20,479.424, 83.072,479.264L 83.488,479.264 zM 512.00,413.696c-18.848-8.384-39.136-14.016-60.384-16.608c 21.728,12.992, 38.368,33.664, 46.24,58.112
303
- c-20.352-12.032-42.816-20.736-66.688-25.504c-19.232,20.448-46.496,33.184-76.704,33.184c-57.984,0.00-105.024-47.072-105.024-105.056
304
- c0.00-8.192, 0.928-16.256, 2.72-23.936c-87.296,4.448-164.704,46.208-216.512,109.76C 26.592,428.224, 21.408,410.144, 21.408,390.944
305
- c0.00-36.48, 18.56-68.608, 46.72-87.456C 50.912,304.032, 34.72,308.768, 20.544,316.64c0.00-0.448,0.00-0.832,0.00-1.344c0.00-50.912, 36.224-93.344, 84.256-103.008
306
- C 96.00,209.888, 86.72,208.608, 77.152,208.608c-6.752,0.00-13.344,0.64-19.776,1.888c 13.344-41.76, 52.16-72.128, 98.112-72.928
307
- c-35.936-28.192-81.248-44.992-130.432-44.992c-8.48,0.00-16.832,0.512-25.056,1.504c 46.496-29.824, 101.696-47.232, 161.024-47.232
308
- c 193.216,0.00, 298.88,160.064, 298.88,298.912c0.00,4.576-0.096,9.088-0.288,13.632C 480.128,374.144, 497.952,392.64, 512.00,413.696z" />
309
- <glyph unicode="&#xe043;" d="M 256.00,480.00C 114.592,480.00,0.00,365.376,0.00,224.00s 114.592-256.00, 256.00-256.00s 256.00,114.624, 256.00,256.00S 397.408,480.00, 256.00,480.00z M 253.216,286.016c-8.576,0.00-15.488-7.008-15.488-15.52
310
- L 237.664,177.088c-0.512-35.744-29.568-64.576-65.408-64.576c-36.16,0.00-65.472,29.312-65.472,65.504c0.00,0.48,0.00,40.64,0.00,40.64l 50.048,0.00 L 156.832,178.56
311
- c0.00-8.608, 6.976-15.456, 15.488-15.456c 8.576,0.00, 15.488,6.944, 15.488,15.456L 187.808,273.152 c 1.28,35.072, 30.016,63.136, 65.344,63.136
312
- c 35.456,0.00, 64.32-28.288, 65.376-63.488l0.00-20.672 L 288.704,243.232L 268.672,252.544L 268.672,270.528 C 268.704,279.04, 261.792,286.016, 253.216,286.016z M 399.712,178.016
313
- c0.00-36.192-29.312-65.504-65.504-65.504c-36.00,0.00-65.184,28.992-65.504,64.864L 268.704,218.208 l 20.00-9.312l 29.888,8.864l0.00-41.12
314
- c0.00-8.608, 6.944-15.488, 15.488-15.488c 8.544,0.00, 15.456,6.944, 15.456,15.488L 349.536,218.624 l 50.08,0.00 C 399.712,218.624, 399.712,178.464, 399.712,178.016z" />
315
- <glyph unicode="&#xe044;" d="M 90.368,28.96c 39.424,56.80, 104.864,94.112, 179.264,94.112c 67.712,0.00, 128.064-30.976, 168.128-79.328
316
- C 483.616,90.016, 512.00,153.696, 512.00,224.00c0.00,141.376-114.624,256.00-256.00,256.00S0.00,365.376,0.00,224.00C0.00,145.856, 35.136,75.936, 90.368,28.96z M 392.80,147.232
317
- c-3.68-8.32-10.368-9.984-18.176-6.368c-34.048,15.744-72.00,24.608-112.00,24.608c-41.12,0.00-80.00-9.28-114.752-25.856
318
- c-3.744-1.824-11.936-2.56-15.616,8.064c-3.68,10.56, 2.112,16.64, 5.504,18.112c 37.984,17.76, 80.192,27.84, 124.864,27.84
319
- c 43.872,0.00, 86.048-8.352, 122.816-26.912C 391.264,163.776, 396.576,155.456, 392.80,147.232z M 414.624,212.608c-2.688-3.68-6.816-6.24-11.68-6.24
320
- c-1.376,0.00-2.56,0.416-3.808,0.736c-41.824,18.432-87.936,28.832-136.512,28.832c-48.256,0.00-94.048-10.208-135.616-28.416
321
- C 125.504,206.976, 123.936,206.528, 122.24,206.528c-4.928,0.00-9.152,2.688-11.776,6.496l-2.752,8.32C 107.776,225.664, 109.76,229.408, 112.736,232.032
322
- c 45.792,20.576, 96.448,32.128, 149.888,32.128c 53.408,0.00, 104.032-11.552, 149.824-32.128c 3.072-2.56, 4.96-6.432, 5.088-10.752L 414.624,212.608z
323
- M 94.112,315.968C 146.24,336.96, 202.976,348.704, 262.624,348.704c 59.008,0.00, 115.328-11.488, 167.008-32.128c 7.008-3.552, 11.872-10.624, 11.872-19.04
324
- c0.00-11.872-9.632-21.504-21.504-21.504c-1.696,0.00-3.264,0.416-4.80,0.704c-47.136,19.04-98.624,29.60-152.576,29.60
325
- c-54.016,0.00-105.568-10.56-152.736-29.664C 108.384,276.416, 106.88,276.064, 105.248,276.064c-11.872,0.00-21.504,9.632-21.504,21.504
326
- C 83.744,305.44, 87.936,312.224, 94.112,315.968z M 269.632,38.496c-43.328,0.00-81.728-20.896-106.24-52.96C 192.128-25.632, 223.328-32.00, 256.032-32.00
327
- c 40.544,0.00, 78.688,9.664, 112.704,26.40C 344.256,21.44, 308.928,38.496, 269.632,38.496z" />
328
- <glyph unicode="&#xe045;" d="M 83.456,464.288L 83.456,465.024 c-0.128-0.352-0.32-0.576-0.448-0.736L 83.456,464.288 zM 490.592,186.944C 492.48,199.008, 493.536,211.36, 493.536,224.00c0.00,131.20-106.368,237.568-237.568,237.568
329
- c-12.576,0.00-24.992-1.056-37.056-2.944C 197.024,472.192, 171.232,480.00, 143.52,480.00C 64.256,480.00,0.00,415.744,0.00,336.448c0.00-27.68, 7.84-53.472, 21.376-75.36
330
- C 19.488,248.992, 18.464,236.64, 18.464,224.00c0.00-131.20, 106.304-237.472, 237.536-237.472c 12.608,0.00, 24.992,0.96, 37.088,2.88c 21.952-13.504, 47.68-21.376, 75.36-21.376
331
- c 79.264,0.00, 143.52,64.288, 143.52,143.52C 511.968,139.264, 504.16,165.024, 490.592,186.944z M 368.704,116.00c-10.016-14.496-24.768-25.824-44.064-33.952
332
- c-19.328-8.128-42.176-12.192-68.608-12.192c-31.584,0.00-57.792,5.504-78.464,16.672c-14.656,8.00-26.56,18.752-35.68,32.128
333
- c-9.184,13.408-13.856,26.496-13.856,39.328c0.00,7.488, 2.88,14.048, 8.48,19.392C 142.208,182.784, 149.504,185.504, 158.08,185.504
334
- c 7.04,0.00, 13.056-2.112, 18.016-6.304C 180.992,174.976, 185.12,168.864, 188.48,160.80c 4.00-9.312, 8.384-17.088, 13.024-23.36
335
- c 4.672-6.112, 11.104-11.328, 19.52-15.328c 8.32-4.064, 19.424-6.048, 33.248-6.048c 19.008,0.00, 34.368,4.16, 46.048,12.224
336
- c 11.808,8.224, 17.504,18.112, 17.504,30.144c0.00,9.60-3.072,17.184-9.312,23.136c-6.368,6.016-14.496,10.56-24.672,13.76
337
- c-10.144,3.264-23.84,6.688-40.96,10.272C 219.936,210.56, 200.704,216.448, 185.152,223.136C 169.568,229.888, 157.152,239.072, 147.936,250.72
338
- C 138.688,262.40, 134.08,276.992, 134.08,294.304c0.00,16.448, 4.832,31.20, 14.56,44.032C 158.40,351.20, 172.48,361.024, 190.752,367.904
339
- c 18.24,6.848, 39.744,10.208, 64.352,10.208c 19.68,0.00, 36.704-2.208, 51.136-6.816c 14.368-4.576, 26.368-10.56, 35.936-18.08
340
- c 9.60-7.552, 16.576-15.456, 20.992-23.872c 4.448-8.384, 6.688-16.608, 6.688-24.544c0.00-7.392-2.912-14.144-8.512-20.064
341
- c-5.632-5.952-12.736-8.896-21.152-8.864c-7.52,0.00-13.472,1.728-17.60,5.408C 318.592,284.80, 314.40,290.528, 309.856,298.464
342
- C 304.128,309.472, 297.248,318.048, 289.248,324.256C 281.472,330.24, 268.608,333.44, 250.72,333.408c-16.576,0.00-29.824-3.328-39.776-9.984
343
- C 200.896,316.672, 196.096,308.928, 196.064,299.776c 0.032-5.728, 1.664-10.56, 4.992-14.688C 204.416,280.864, 209.088,277.312, 215.104,274.24
344
- C 221.12,271.20, 227.232,268.736, 233.376,267.072c 6.208-1.76, 16.544-4.32, 30.88-7.68C 282.208,255.488, 298.56,251.20, 313.216,246.432s 27.136-10.464, 37.44-17.28
345
- c 10.40-6.816, 18.528-15.456, 24.384-25.92c 5.824-10.496, 8.704-23.328, 8.704-38.368C 383.872,146.752, 378.816,130.432, 368.704,116.00z" />
346
- <glyph unicode="&#xe046;" d="M 83.488,464.32L 83.488,465.056 C 83.36,464.704, 83.20,464.48, 83.072,464.32L 83.488,464.32 zM 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00c0.00-104.768, 63.072-194.848, 153.248-234.464c-0.672,17.888-0.16,39.36, 4.448,58.816
347
- C 162.624,69.088, 190.624,187.84, 190.624,187.84S 182.464,204.16, 182.464,228.32c0.00,37.984, 21.984,66.272, 49.344,66.272c 23.328,0.00, 34.56-17.504, 34.56-38.432
348
- c0.00-23.36-14.944-58.368-22.624-90.816c-6.40-27.20, 13.632-49.312, 40.384-49.312c 48.512,0.00, 81.184,62.304, 81.184,136.064
349
- c0.00,56.096-37.824,98.112-106.528,98.112c-77.664,0.00-126.016-57.952-126.016-122.624c0.00-22.272, 6.56-38.016, 16.896-50.208
350
- c 4.704-5.568, 5.408-7.808, 3.68-14.208c-1.248-4.736-4.032-16.064-5.216-20.576c-1.728-6.496-6.976-8.80-12.80-6.368
351
- C 99.552,150.784, 82.88,189.984, 82.88,233.984c0.00,72.704, 61.312,159.936, 183.008,159.936c 97.696,0.00, 162.048-70.752, 162.048-146.624
352
- c0.00-100.448-55.872-175.392-138.112-175.392c-27.68,0.00-53.696,14.944-62.56,31.872c0.00,0.00-14.88-59.04-17.984-70.368
353
- c-5.44-19.744-16.064-39.392-25.76-54.816C 206.464-28.256, 230.816-31.936, 256.00-31.936c 141.376,0.00, 256.00,114.624, 256.00,255.968S 397.376,480.00, 256.00,480.00z" />
354
- <glyph unicode="&#xe047;" d="M 127.104,457.44C 61.216,431.392, 16.48,381.088, 3.968,313.376c-7.68-41.60-4.736-86.976, 13.60-125.792
355
- C 21.664,178.944, 26.56,170.656, 32.416,162.944c 2.88-3.712, 5.888-7.328, 9.152-10.72c 5.856,2.048, 11.456,4.672, 16.832,7.744
356
- C 80.704,172.544, 97.088,191.872, 116.16,208.16C 52.48,281.984, 120.00,373.472, 204.544,393.92c 78.624,19.008, 185.248-13.792, 209.056-94.688
357
- c 9.888-33.536, 3.36-70.56-23.904-94.88c-14.272-12.672-32.448-21.056-51.584-24.512c-11.264-1.984-22.752-2.336-34.016-1.184
358
- c-6.272,0.64-12.608,1.664-18.752,3.136c-10.464,2.496-19.776,2.144-19.776,13.44c0.00,29.504,0.00,59.008,0.00,88.512c0.00,14.752,0.00,29.504,0.00,44.256
359
- c0.00,8.992, 0.896,7.328-6.592,8.256C 252.96,336.96, 247.104,337.536, 241.152,338.016c-20.864,1.664-42.688,2.752-63.36-0.768
360
- C 170.016,335.872, 169.504,337.088, 169.504,328.704c0.00-6.816,0.00-13.632,0.00-20.384c0.00-16.576,0.00-33.056,0.00-49.632c0.00-49.44, 3.744-99.424, 1.728-148.736
361
- c-0.608-14.688-0.992-49.984-17.44-57.248c-19.104-8.448-35.936,9.376-53.568,13.12c 2.40-24.768-13.056-73.888, 15.776-86.368
362
- c 26.464-11.424, 56.896-15.648, 84.832-6.24c 58.432,19.84, 77.376,84.864, 69.984,138.368c 90.272-27.008, 187.68,18.112, 226.304,99.616
363
- c 27.456,58.048, 15.84,130.112-25.536,179.488C 394.08,483.136, 236.768,500.896, 127.104,457.44z" />
364
- <glyph unicode="&#xe048;" d="M 424.288,205.12c 44.096,0.00, 79.84,35.584, 79.84,79.52s-35.744,79.552-79.84,79.552c-44.128,0.00-79.84-35.616-79.84-79.552
365
- S 380.16,205.12, 424.288,205.12M 431.36,186.624c-0.64,0.064-1.248,0.128-1.824,0.192C 429.088,186.88, 428.64,186.88, 428.16,186.88
366
- c-1.28,0.064-2.528,0.128-3.808,0.128L 424.32,187.008 l-0.096,0.00 c-1.312,0.00-2.592-0.064-3.84-0.128c-0.512,0.00-0.928,0.00-1.408-0.064
367
- c-0.608-0.064-1.152-0.128-1.792-0.192c-45.12-3.872-80.672-44.128-80.672-90.048l0.00-30.88 c0.00-4.384, 3.552-7.936, 8.00-7.936l 2.816,0.00 l 153.952,0.00
368
- l 2.848,0.00 c 4.416,0.00, 7.968,3.552, 7.968,7.936l0.00,30.88 C 512.032,142.496, 476.512,182.752, 431.36,186.624M 239.328,190.368c 39.616,0.00, 71.872,32.064, 71.872,71.616S 278.944,333.568, 239.328,333.568c-39.744,0.00-71.872-32.00-71.872-71.552
369
- S 199.552,190.368, 239.328,190.368M 245.632,173.76C 245.12,173.824, 244.576,173.888, 244.064,173.952c-0.448,0.00-0.864,0.00-1.312,0.064
370
- c-1.12,0.00-2.24,0.064-3.36,0.064L 239.264,174.08 L 239.20,174.08 c-1.12,0.00-2.24-0.064-3.392-0.064C 235.36,173.952, 234.976,173.952, 234.528,173.952
371
- C 233.984,173.888, 233.472,173.824, 232.928,173.76c-40.672-3.488-72.672-39.68-72.672-81.056l0.00-27.744 l0.00-0.064 c0.00-3.936, 3.232-7.136, 7.232-7.136l 2.496,0.00 l 138.496,0.00
372
- l 2.56,0.00 c 3.968,0.00, 7.20,3.20, 7.20,7.136l0.00,0.064 l0.00,27.744 C 318.24,134.048, 286.24,170.24, 245.632,173.76M 71.136,177.12c 35.712,0.00, 64.672,28.768, 64.672,64.448c0.00,35.552-28.96,64.448-64.672,64.448
373
- c-35.744,0.00-64.672-28.864-64.672-64.448C 6.432,205.952, 35.36,177.12, 71.136,177.12M 76.80,162.176c-0.48,0.00-0.928,0.064-1.44,0.064C 75.008,162.304, 74.656,162.304, 74.24,162.304
374
- C 73.248,162.432, 72.224,162.432, 71.20,162.432L 71.136,162.432 L 71.04,162.432 c-1.024,0.00-2.016,0.00-3.136-0.128c-0.416,0.00-0.704,0.00-1.12-0.064
375
- c-0.48,0.00-0.896-0.064-1.44-0.064C 28.736,159.008,0.00,126.368,0.00,89.184l0.00-24.96 c0.00-3.552, 2.912-6.432, 6.464-6.432l 2.272,0.00 l 124.672,0.00 L 135.68,57.792
376
- c 3.552,0.00, 6.432,2.88, 6.432,6.432l0.00,24.96 C 142.176,126.368, 113.44,159.008, 76.80,162.176" />
377
- <glyph unicode="&#xe049;" d="M 83.456,464.32L 83.456,465.056 C 83.328,464.704, 83.168,464.48, 83.04,464.32L 83.456,464.32 zM 479.968,480.00l-16.736,0.00 L 48.736,480.00 L 32.00,480.00 C 14.336,480.00,0.00,465.664,0.00,448.00l0.00-16.768 l0.00-414.528 l0.00-16.768 C0.00-17.728, 14.336-32.00, 32.00-32.00l 16.768,0.00 l 414.464,0.00 l 16.736,0.00
378
- c 17.696,0.00, 32.00,14.272, 32.00,31.936l0.00,16.768 L 511.968,431.264 L 511.968,448.032 C 511.968,465.664, 497.664,480.00, 479.968,480.00z M 438.656,65.024l-72.128,0.00 L 366.528,180.032
379
- c0.00,28.928-8.256,48.64-34.304,48.64c-19.968,0.00-31.872-13.312-37.056-26.08c-1.92-4.608-2.368-11.104-2.368-17.504l0.00-120.00 L 218.336,65.088
380
- c0.00,0.00, 0.928,200.896,0.00,221.088l 74.432,0.00 L 292.768,255.68 c 9.60,14.656, 26.688,35.52, 65.056,35.52c 47.424,0.00, 80.80-36.928, 80.80-102.912L 438.624,65.024 z M 130.336,382.464
381
- c 22.176,0.00, 35.808-16.032, 36.256-36.992c0.00-20.576-14.048-36.992-36.672-36.992L 129.536,308.48 c-21.792,0.00-35.808,16.448-35.808,36.992
382
- C 93.728,366.432, 108.16,382.464, 130.336,382.464z M 170.688,285.312l0.00-220.256 L 97.536,65.056 L 97.536,285.312 L 170.688,285.312 z" />
383
- <glyph unicode="&#xe04a;" d="M0.00,69.152c 18.848,8.736, 38.40,14.88, 58.624,18.40c 27.232,4.064, 49.856,6.304, 67.84,6.816c-5.536,7.392-10.528,15.296-14.848,23.68
384
- c-5.088,8.16-7.616,17.984-7.616,29.44c0.00,6.88, 0.96,12.608, 2.88,17.184c 1.696,4.80, 3.264,9.28, 4.704,13.376
385
- C 102.816,176.992, 94.56,176.512, 86.784,176.512C 50.016,176.96, 21.12,187.456,0.00,208.032L0.00,69.152 zM 187.488,276.512c0.00,30.688-7.776,61.664-23.328,92.896c-7.296,14.976-16.896,27.168-28.80,36.544c-12.16,8.896-26.112,13.60-41.92,14.08
386
- C 72.512,419.52, 55.136,411.008, 41.28,394.528C 29.60,377.28, 24.00,357.984, 24.512,336.672c0.00-28.16, 8.16-57.504, 24.48-87.968
387
- c 7.904-14.208, 18.112-26.272, 30.624-36.16c 12.48-9.888, 26.784-14.848, 42.848-14.848c 20.32,0.736, 37.248,8.128, 50.752,22.08
388
- C 179.744,229.696, 183.936,239.84, 185.824,250.24C 186.912,260.672, 187.488,269.408, 187.488,276.512zM 147.488,72.384c-4.928,0.544-10.688,0.768-17.312,0.768c-3.936,0.512-14.016,0.00-30.208-1.536c-15.968-2.24-32.32-5.952-48.992-11.008
389
- c-3.936-1.536-9.44-3.808-16.576-6.88c-7.136-3.264-14.368-7.936-21.728-14.016C 7.968,35.552, 3.744,30.688,0.00,25.152l0.00-21.152
390
- C0.00-15.872, 16.00-32.00, 35.648-32.00l 194.304,0.00 c0.00,0.48, 0.032,0.928, 0.032,1.44c0.00,19.744-6.40,36.96-19.168,51.648
391
- C 197.344,35.04, 176.224,52.128, 147.488,72.384zM 476.352,480.00l-92.096,0.00 L 256.032,480.00 l-130.24,0.00 L 35.648,480.00 C 16.00,480.00,0.00,463.872,0.00,444.00l0.00-38.976 l0.00-9.312 c 2.24,2.40, 4.576,4.80, 7.008,7.168
392
- c 21.952,18.24, 44.704,30.144, 68.352,35.712c 23.392,4.80, 45.344,7.232, 65.792,7.232l 154.24,0.00 L 247.776,417.76L 200.192,417.76
393
- C 205.056,414.72, 210.496,410.272, 216.544,404.448c 5.824-6.08, 11.52-13.536, 17.088-22.40c 5.344-8.384, 10.048-18.24, 14.176-29.632
394
- C 251.20,341.024, 252.864,327.712, 252.864,312.544c-0.448-27.872-6.56-50.144-18.272-66.88c-5.76-8.096-11.84-15.552-18.272-22.40
395
- C 209.216,216.416, 201.632,209.44, 193.60,202.368c-4.608-4.80-8.832-10.272-12.736-16.384C 176.256,179.68, 173.952,172.352, 173.952,164.00
396
- c0.00-8.128, 2.368-14.816, 7.072-20.128c 4.00-5.12, 7.904-9.504, 11.68-13.312l 26.144-21.696c 16.256-13.408, 30.528-28.192, 42.784-44.448
397
- c 11.552-16.448, 17.568-38.016, 18.016-64.576c0.00-11.008-1.408-21.632-4.224-31.872l 200.896,0.00 C 496.00-32.00, 512.00-15.872, 512.00,4.00L 512.00,405.024 L 512.00,444.00
398
- C 512.00,463.872, 496.00,480.00, 476.352,480.00z M 504.384,321.184l-80.928,0.00 l0.00-81.728 l-39.20,0.00 L 384.256,321.184 L 303.328,321.184 L 303.328,360.768 l 80.928,0.00 L 384.256,442.496 l 39.20,0.00 l0.00-81.728 l 80.928,0.00 L 504.384,321.184 z" />
399
- <glyph unicode="&#xe04c;" d="M 256.00,480.00C 114.624,480.00,0.00,365.376,0.00,224.00s 114.592-256.00, 256.00-256.00c 141.376,0.00, 256.00,114.624, 256.00,256.00S 397.376,480.00, 256.00,480.00z M 412.864,347.264
400
- c 24.992-31.68, 40.64-70.976, 42.56-113.888c-28.864,6.112-56.192,9.12-81.632,9.12l0.00,0.00l-0.224,0.00 c-20.512,0.00-39.712-1.888-57.856-5.056
401
- C 311.328,248.256, 306.88,258.624, 302.368,268.576C 342.752,286.24, 381.504,311.424, 412.864,347.264z M 256.00,423.712c 47.136,0.00, 90.304-16.48, 124.576-43.904
402
- C 354.40,348.512, 319.808,325.824, 282.464,309.76C 256.256,360.512, 230.88,396.736, 213.568,418.944C 227.328,422.016, 241.44,423.712, 256.00,423.712z M 167.808,402.912
403
- C 181.664,386.56, 209.44,350.528, 239.072,294.24C 178.784,276.288, 118.048,272.128, 81.344,272.128c-1.024,0.00-2.08,0.00-3.104,0.00L 78.176,272.128
404
- c-6.176,0.00-11.488,0.128-15.968,0.256C 76.576,329.76, 115.872,377.184, 167.808,402.912z M 56.288,224.00c0.00,0.928, 0.032,1.888, 0.096,2.88
405
- C 62.08,226.656, 69.376,226.464, 78.176,226.464l 0.064,0.00 C 118.40,226.752, 188.512,230.112, 259.488,252.512C 263.36,244.064, 267.264,235.264, 271.008,226.048
406
- C 223.552,210.24, 186.24,184.928, 158.592,159.744c-26.592-24.256-44.608-48.256-55.104-64.256C 74.112,130.304, 56.288,175.008, 56.288,224.00z M 256.00,24.256
407
- c-44.448,0.00-85.408,14.688-118.656,39.36c 7.104,11.616, 22.208,33.984, 46.336,57.056c 24.80,23.744, 59.04,48.256, 103.744,62.816
408
- c 15.232-42.624, 28.992-91.328, 39.456-146.144C 304.80,28.928, 280.992,24.256, 256.00,24.256z M 369.056,59.712c-10.112,49.60-22.944,94.272-36.864,134.208
409
- c 12.928,1.856, 26.56,2.88, 40.928,2.88l 0.512,0.00 l 0.064,0.00 l 0.064,0.00 c 23.808,0.00, 49.984-2.944, 78.336-9.376C 442.304,134.624, 411.68,89.12, 369.056,59.712z
410
- " />
411
- <glyph unicode="&#xe04d;" d="M 427.52,480.00L 84.48,480.00 C 38.016,480.00,0.00,441.984,0.00,395.52L0.00,52.48 c0.00-46.432, 38.016-84.512, 84.48-84.512L 427.52-32.032 c 46.432,0.00, 84.512,38.048, 84.512,84.512L 512.032,395.52
412
- C 512.00,441.984, 473.984,480.00, 427.52,480.00z M 411.168,167.296c-0.32-54.432-44.544-98.976-99.04-98.976L 198.272,68.32 c-54.496,0.00-99.072,44.544-99.072,98.976L 99.20,282.848
413
- c0.00,54.496, 44.576,99.20, 99.072,99.20l 69.312,0.00 c 25.568-3.072, 62.752-24.928, 76.512-54.08c 3.744-8.16, 5.76-9.44, 8.864-33.664
414
- c 1.696-12.448, 2.56-21.696, 8.096-26.816c 7.84-7.168, 36.96-2.304, 42.784-6.816l 4.384-3.424l 2.624-5.472l 0.928-4.416L 411.168,167.296zM 199.52,263.168l 54.944,0.00 c 10.496,0.00, 19.008,8.64, 19.008,19.008s-8.512,18.88-19.008,18.88L 199.52,301.056 c-10.432,0.00-18.944-8.512-18.944-18.88
415
- S 189.088,263.168, 199.52,263.168zM 311.232,187.52L 199.584,187.52 c-10.464,0.00-19.008-8.448-19.008-18.816c0.00-10.272, 8.544-18.88, 19.008-18.88l 111.616,0.00 c 10.336,0.00, 18.816,8.608, 18.816,18.88
416
- C 330.016,179.104, 321.568,187.52, 311.232,187.52z" />
417
- <glyph unicode="&#xe04e;" d="M 462.368,242.752l-128.352,0.00 l0.00,32.00 l 128.352,0.00 L 462.368,242.752 z M 248.704,111.488c 8.32-12.896, 12.384-28.544, 12.384-46.944
418
- c0.00-18.944-4.64-36.00-14.112-51.04C 240.896,3.552, 233.408-4.736, 224.416-11.584C 214.272-19.36, 202.272-24.736, 188.48-27.68
419
- C 174.656-30.56, 159.648-32.00, 143.52-32.00L0.00-32.00 L0.00,288.00 l 153.92,0.00 c 38.752-0.64, 66.208-11.904, 82.496-34.048C 246.08,240.32, 250.944,224.00, 250.944,205.056
420
- c0.00-19.552-4.896-35.264-14.752-47.136C 230.72,151.328, 222.624,145.216, 211.936,139.744C 228.16,133.76, 240.48,124.416, 248.704,111.488z M 73.472,161.888l 67.36,0.00
421
- c 13.92,0.00, 25.056,2.688, 33.728,7.872c 8.672,5.312, 12.896,14.688, 12.896,28.192c0.00,14.944-5.696,24.768-17.088,29.568
422
- C 160.544,230.816, 148.00,232.512, 132.704,232.512L 73.44,232.512 L 73.472,161.888L 73.472,161.888z M 193.984,69.184c0.00,16.64-6.752,28.128-20.288,34.24
423
- C 166.144,106.976, 155.52,108.736, 141.92,108.928L 73.472,108.928 l0.00-85.312 l 67.328,0.00 c 13.856,0.00, 24.544,1.792, 32.288,5.632C 187.008,36.256, 193.984,49.472, 193.984,69.184z
424
- M 509.984,121.248c 1.568-10.464, 2.24-25.696, 1.984-45.536l-166.112,0.00 c 0.896-23.04, 8.80-39.168, 23.84-48.352c 9.024-5.824, 20.00-8.672, 32.896-8.672
425
- c 13.504,0.00, 24.576,3.456, 33.056,10.528c 4.672,3.744, 8.672,9.056, 12.256,15.68l 60.864,0.00 c-1.568-13.568-8.896-27.36-22.048-41.376
426
- c-20.384-22.304-49.024-33.504-85.824-33.504c-30.368,0.00-57.12,9.44-80.384,28.256C 297.344,17.12, 285.728,47.712, 285.728,90.112
427
- c0.00,39.68, 10.40,70.112, 31.36,91.328c 20.992,21.248, 48.192,31.808, 81.664,31.808c 19.808,0.00, 37.728-3.552, 53.664-10.752
428
- c 15.904-7.136, 29.024-18.432, 39.392-33.952C 501.12,155.008, 507.168,139.264, 509.984,121.248z M 450.016,115.328c-1.12,15.936-6.432,28.00-16.00,36.192
429
- c-9.44,8.352-21.248,12.448-35.328,12.448c-15.36,0.00-27.20-4.448-35.616-13.12c-8.48-8.672-13.76-20.576-15.872-35.488L 450.016,115.36 L 450.016,115.328z" />
430
- <glyph unicode="&#xe04b;" d="M 176.00,416.00l-160.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-160.00 C0.00,231.168, 7.168,224.00, 16.00,224.00l 160.00,0.00 C 184.832,224.00, 192.00,231.168, 192.00,240.00l0.00,160.00 C 192.00,408.832, 184.832,416.00, 176.00,416.00
431
- zM 176.00,160.00l-160.00,0.00 C 7.168,160.00,0.00,152.832,0.00,144.00l0.00-160.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 160.00,0.00 C 184.832-32.00, 192.00-24.832, 192.00-16.00l0.00,160.00
432
- C 192.00,152.832, 184.832,160.00, 176.00,160.00zM 496.00,416.00l-224.00,0.00 C 263.168,416.00, 256.00,408.832, 256.00,400.00l0.00-32.00 C 256.00,359.168, 263.168,352.00, 272.00,352.00l 224.00,0.00 C 504.864,352.00, 512.00,359.168, 512.00,368.00l0.00,32.00
433
- C 512.00,408.832, 504.864,416.00, 496.00,416.00zM 496.00,288.00l-224.00,0.00 C 263.168,288.00, 256.00,280.832, 256.00,272.00l0.00-32.00 C 256.00,231.168, 263.168,224.00, 272.00,224.00l 224.00,0.00 C 504.864,224.00, 512.00,231.168, 512.00,240.00l0.00,32.00
434
- C 512.00,280.832, 504.864,288.00, 496.00,288.00zM 496.00,160.00l-224.00,0.00 C 263.168,160.00, 256.00,152.832, 256.00,144.00l0.00-32.00 C 256.00,103.168, 263.168,96.00, 272.00,96.00l 224.00,0.00 c 8.864,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
435
- C 512.00,152.832, 504.864,160.00, 496.00,160.00zM 496.00,32.00l-224.00,0.00 C 263.168,32.00, 256.00,24.832, 256.00,16.00l0.00-32.00 C 256.00-24.832, 263.168-32.00, 272.00-32.00l 224.00,0.00 c 8.864,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
436
- C 512.00,24.832, 504.864,32.00, 496.00,32.00z" />
437
- <glyph unicode="&#xe04f;" d="M 112.00,416.00l-96.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-96.00 C0.00,295.168, 7.168,288.00, 16.00,288.00l 96.00,0.00 C 120.832,288.00, 128.00,295.168, 128.00,304.00l0.00,96.00 C 128.00,408.832, 120.832,416.00, 112.00,416.00z M 112.00,256.00l-96.00,0.00
438
- C 7.168,256.00,0.00,248.832,0.00,240.00l0.00-96.00 C0.00,135.168, 7.168,128.00, 16.00,128.00l 96.00,0.00 C 120.832,128.00, 128.00,135.168, 128.00,144.00l0.00,96.00 C 128.00,248.832, 120.832,256.00, 112.00,256.00z M 272.00,416.00l-96.00,0.00
439
- C 167.168,416.00, 160.00,408.832, 160.00,400.00l0.00-96.00 C 160.00,295.168, 167.168,288.00, 176.00,288.00l 96.00,0.00 C 280.832,288.00, 288.00,295.168, 288.00,304.00l0.00,96.00 C 288.00,408.832, 280.832,416.00, 272.00,416.00z M 272.00,256.00l-96.00,0.00
440
- C 167.168,256.00, 160.00,248.832, 160.00,240.00l0.00-96.00 C 160.00,135.168, 167.168,128.00, 176.00,128.00l 96.00,0.00 C 280.832,128.00, 288.00,135.168, 288.00,144.00l0.00,96.00 C 288.00,248.832, 280.832,256.00, 272.00,256.00z M 432.00,416.00l-96.00,0.00
441
- C 327.168,416.00, 320.00,408.832, 320.00,400.00l0.00-96.00 C 320.00,295.168, 327.168,288.00, 336.00,288.00l 96.00,0.00 C 440.832,288.00, 448.00,295.168, 448.00,304.00l0.00,96.00 C 448.00,408.832, 440.832,416.00, 432.00,416.00z M 432.00,256.00l-96.00,0.00
442
- C 327.168,256.00, 320.00,248.832, 320.00,240.00l0.00-96.00 C 320.00,135.168, 327.168,128.00, 336.00,128.00l 96.00,0.00 C 440.832,128.00, 448.00,135.168, 448.00,144.00l0.00,96.00 C 448.00,248.832, 440.832,256.00, 432.00,256.00z M 112.00,96.00l-96.00,0.00
443
- C 7.168,96.00,0.00,88.832,0.00,80.00l0.00-96.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 96.00,0.00 C 120.832-32.00, 128.00-24.832, 128.00-16.00l0.00,96.00 C 128.00,88.832, 120.832,96.00, 112.00,96.00z M 272.00,96.00l-96.00,0.00
444
- C 167.168,96.00, 160.00,88.832, 160.00,80.00l0.00-96.00 C 160.00-24.832, 167.168-32.00, 176.00-32.00l 96.00,0.00 C 280.832-32.00, 288.00-24.832, 288.00-16.00l0.00,96.00 C 288.00,88.832, 280.832,96.00, 272.00,96.00z M 432.00,96.00l-96.00,0.00
445
- c-8.832,0.00-16.00-7.168-16.00-16.00l0.00-96.00 c0.00-8.832, 7.168-16.00, 16.00-16.00l 96.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,96.00 C 448.00,88.832, 440.832,96.00, 432.00,96.00z" />
446
- <glyph unicode="&#xe050;" d="M 496.00,416.00l-384.00,0.00 C 103.168,416.00, 96.00,408.832, 96.00,400.00l0.00-32.00 C 96.00,359.168, 103.168,352.00, 112.00,352.00l 384.00,0.00 C 504.832,352.00, 512.00,359.168, 512.00,368.00l0.00,32.00
447
- C 512.00,408.832, 504.832,416.00, 496.00,416.00zM 496.00,288.00l-384.00,0.00 C 103.168,288.00, 96.00,280.832, 96.00,272.00l0.00-32.00 C 96.00,231.168, 103.168,224.00, 112.00,224.00l 384.00,0.00 C 504.832,224.00, 512.00,231.168, 512.00,240.00l0.00,32.00
448
- C 512.00,280.832, 504.832,288.00, 496.00,288.00zM 496.00,160.00l-384.00,0.00 C 103.168,160.00, 96.00,152.832, 96.00,144.00l0.00-32.00 C 96.00,103.168, 103.168,96.00, 112.00,96.00l 384.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
449
- C 512.00,152.832, 504.832,160.00, 496.00,160.00zM 496.00,32.00l-384.00,0.00 C 103.168,32.00, 96.00,24.832, 96.00,16.00l0.00-32.00 C 96.00-24.832, 103.168-32.00, 112.00-32.00l 384.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
450
- C 512.00,24.832, 504.832,32.00, 496.00,32.00zM 48.00,416.00l-32.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-32.00 C0.00,359.168, 7.168,352.00, 16.00,352.00l 32.00,0.00 C 56.832,352.00, 64.00,359.168, 64.00,368.00l0.00,32.00 C 64.00,408.832, 56.832,416.00, 48.00,416.00
451
- zM 48.00,288.00l-32.00,0.00 C 7.168,288.00,0.00,280.832,0.00,272.00l0.00-32.00 C0.00,231.168, 7.168,224.00, 16.00,224.00l 32.00,0.00 C 56.832,224.00, 64.00,231.168, 64.00,240.00l0.00,32.00 C 64.00,280.832, 56.832,288.00, 48.00,288.00
452
- zM 48.00,160.00l-32.00,0.00 C 7.168,160.00,0.00,152.832,0.00,144.00l0.00-32.00 C0.00,103.168, 7.168,96.00, 16.00,96.00l 32.00,0.00 C 56.832,96.00, 64.00,103.168, 64.00,112.00l0.00,32.00
453
- C 64.00,152.832, 56.832,160.00, 48.00,160.00zM 48.00,32.00l-32.00,0.00 C 7.168,32.00,0.00,24.832,0.00,16.00l0.00-32.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 32.00,0.00 C 56.832-32.00, 64.00-24.832, 64.00-16.00l0.00,32.00
454
- C 64.00,24.832, 56.832,32.00, 48.00,32.00z" />
455
- <glyph unicode="&#xe051;" d="M 208.00,480.00l-192.00,0.00 C 7.168,480.00,0.00,472.832,0.00,464.00l0.00-192.00 C0.00,263.168, 7.168,256.00, 16.00,256.00l 192.00,0.00 C 216.832,256.00, 224.00,263.168, 224.00,272.00l0.00,192.00 C 224.00,472.832, 216.832,480.00, 208.00,480.00z M 496.00,480.00l-192.00,0.00
456
- C 295.168,480.00, 288.00,472.832, 288.00,464.00l0.00-192.00 C 288.00,263.168, 295.168,256.00, 304.00,256.00l 192.00,0.00 C 504.832,256.00, 512.00,263.168, 512.00,272.00l0.00,192.00 C 512.00,472.832, 504.832,480.00, 496.00,480.00z M 208.00,192.00l-192.00,0.00
457
- C 7.168,192.00,0.00,184.832,0.00,176.00l0.00-192.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 192.00,0.00 C 216.832-32.00, 224.00-24.832, 224.00-16.00l0.00,192.00 C 224.00,184.832, 216.832,192.00, 208.00,192.00z M 496.00,192.00l-192.00,0.00
458
- C 295.168,192.00, 288.00,184.832, 288.00,176.00l0.00-192.00 C 288.00-24.832, 295.168-32.00, 304.00-32.00l 192.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,192.00 C 512.00,184.832, 504.832,192.00, 496.00,192.00z" />
459
- <glyph unicode="&#xe052;" d="M 496.00,416.00l-480.00,0.00 C 7.168,416.00,0.00,408.832,0.00,400.00l0.00-32.00 C0.00,359.168, 7.168,352.00, 16.00,352.00l 480.00,0.00 C 504.832,352.00, 512.00,359.168, 512.00,368.00l0.00,32.00
460
- C 512.00,408.832, 504.832,416.00, 496.00,416.00zM 496.00,288.00l-480.00,0.00 C 7.168,288.00,0.00,280.832,0.00,272.00l0.00-32.00 C0.00,231.168, 7.168,224.00, 16.00,224.00l 480.00,0.00 C 504.832,224.00, 512.00,231.168, 512.00,240.00l0.00,32.00
461
- C 512.00,280.832, 504.832,288.00, 496.00,288.00zM 496.00,160.00l-480.00,0.00 C 7.168,160.00,0.00,152.832,0.00,144.00l0.00-32.00 C0.00,103.168, 7.168,96.00, 16.00,96.00l 480.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
462
- C 512.00,152.832, 504.832,160.00, 496.00,160.00zM 496.00,32.00l-480.00,0.00 C 7.168,32.00,0.00,24.832,0.00,16.00l0.00-32.00 C0.00-24.832, 7.168-32.00, 16.00-32.00l 480.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
463
- C 512.00,24.832, 504.832,32.00, 496.00,32.00z" />
464
- <glyph unicode="&#xe053;" d="M 496.00,384.00l-320.00,0.00 C 167.168,384.00, 160.00,376.832, 160.00,368.00l0.00-32.00 C 160.00,327.168, 167.168,320.00, 176.00,320.00l 320.00,0.00 C 504.832,320.00, 512.00,327.168, 512.00,336.00l0.00,32.00
465
- C 512.00,376.832, 504.832,384.00, 496.00,384.00zM 496.00,224.00l-320.00,0.00 C 167.168,224.00, 160.00,216.832, 160.00,208.00l0.00-32.00 C 160.00,167.168, 167.168,160.00, 176.00,160.00l 320.00,0.00 C 504.832,160.00, 512.00,167.168, 512.00,176.00l0.00,32.00
466
- C 512.00,216.832, 504.832,224.00, 496.00,224.00zM 496.00,64.00l-320.00,0.00 C 167.168,64.00, 160.00,56.832, 160.00,48.00l0.00-32.00 C 160.00,7.168, 167.168,0.00, 176.00,0.00l 320.00,0.00 c 8.832,0.00, 16.00,7.168, 16.00,16.00l0.00,32.00
467
- C 512.00,56.832, 504.832,64.00, 496.00,64.00zM0.00,352.00A64.00,64.00 180.00 1 1 128.00,352A64.00,64.00 180.00 1 1 0.00,352zM0.00,192.00A64.00,64.00 180.00 1 1 128.00,192A64.00,64.00 180.00 1 1 0.00,192zM0.00,32.00A64.00,64.00 180.00 1 1 128.00,32A64.00,64.00 180.00 1 1 0.00,32z" />
468
- <glyph unicode="&#x20;" horiz-adv-x="256" />
469
- <glyph class="hidden" unicode="&#xf000;" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
470
- </font></defs></svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fonts/Flat-UI-Icons.ttf DELETED
Binary file
fonts/Flat-UI-Icons.woff DELETED
Binary file
fonts/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
includes/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
includes/misc-functions.php CHANGED
@@ -89,7 +89,8 @@ function pib_rss_news() {
89
  ), esc_url( $item->get_permalink() ) ); ?>
90
 
91
  <li>
92
- &raquo; <a href="<?php echo $post_url; ?>" target="_blank" class="pib-external-link"><?php echo esc_html( $item->get_title() ); ?></a>
 
93
  </li>
94
  <?php endforeach; ?>
95
  <?php endif; ?>
89
  ), esc_url( $item->get_permalink() ) ); ?>
90
 
91
  <li>
92
+ <div class="dashicons dashicons-arrow-right-alt2"></div>
93
+ <a href="<?php echo $post_url; ?>" target="_blank" class="pib-external-link"><?php echo esc_html( $item->get_title() ); ?></a>
94
  </li>
95
  <?php endforeach; ?>
96
  <?php endif; ?>
index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
pinterest-pin-it-button.php CHANGED
@@ -13,7 +13,7 @@
13
  * Plugin Name: Pinterest "Pin It" Button Lite
14
  * Plugin URI: http://pinplugins.com/pin-it-button-pro/
15
  * Description: Add a Pinterest "Pin It" Button to your site and get your visitors to start pinning your awesome content!
16
- * Version: 2.0.5
17
  * Author: Phil Derksen
18
  * Author URI: http://philderksen.com
19
  * License: GPL-2.0+
13
  * Plugin Name: Pinterest "Pin It" Button Lite
14
  * Plugin URI: http://pinplugins.com/pin-it-button-pro/
15
  * Description: Add a Pinterest "Pin It" Button to your site and get your visitors to start pinning your awesome content!
16
+ * Version: 2.0.6
17
  * Author: Phil Derksen
18
  * Author URI: http://philderksen.com
19
  * License: GPL-2.0+
readme.txt CHANGED
@@ -122,6 +122,10 @@ CSS styling and shortcode help available within the plugin admin.
122
 
123
  == Changelog ==
124
 
 
 
 
 
125
  = 2.0.5 =
126
 
127
  * Fixed a bug with shortcode buttons not enqueueing CSS & JS correctly.
122
 
123
  == Changelog ==
124
 
125
+ = 2.0.6 =
126
+
127
+ * More fixes to special characters rendering HTML codes incorrectly in pin descriptions.
128
+
129
  = 2.0.5 =
130
 
131
  * Fixed a bug with shortcode buttons not enqueueing CSS & JS correctly.
views/admin-sidebar.php CHANGED
@@ -14,34 +14,41 @@ if ( ! defined( 'ABSPATH' ) ) {
14
  }
15
  ?>
16
 
17
- <div class="sidebar-container">
18
- <h3 class="sidebar-title-large"><?php _e( 'Need More Options?', 'pib' ); ?></h3>
19
-
20
- <div class="sidebar-content">
21
- <ul>
22
- <li><i class="fui-check"></i> <?php _e( 'Add "Pin It" buttons on image hover', 'pib' ); ?></li>
23
- <li><i class="fui-check"></i> <?php _e( 'Add "Pin It" buttons under images', 'pib' ); ?></li>
24
- <li><i class="fui-check"></i> <?php _e( '30 custom "Pin It" button designs', 'pib' ); ?></li>
25
- <li><i class="fui-check"></i> <?php _e( 'Upload your own button designs', 'pib' ); ?></li>
26
- <li><i class="fui-check"></i> <?php _e( 'Twitter, Facebook & G+ buttons', 'pib' ); ?></li>
27
- <li><i class="fui-check"></i> <?php _e( 'Use with featured images', 'pib' ); ?></li>
28
- <li><i class="fui-check"></i> <?php _e( 'Use with custom post types', 'pib' ); ?></li>
29
-
30
- <?php if ( pib_is_woo_commerce_active() ): ?>
31
- <li><i class="fui-check"></i> <?php _e( 'WooCommerce support', 'pib' ); ?></li>
32
- <?php endif; ?>
33
-
34
- <li><i class="fui-check"></i> <?php _e( 'Customer support & auto updates', 'pib' ); ?></li>
35
- </ul>
36
-
37
- <p class="last-blurb">
38
- <?php _e( 'Get all of these and more with Pinterest "Pin It" Button Pro!', 'pib' ); ?>
39
- </p>
40
-
41
- <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'pin-it-button-pro/', 'pib_lite_2', 'sidebar_link', 'pro_upgrade' ); ?>"
42
- class="btn btn-large btn-block btn-danger" target="_blank">
43
- <?php _e( 'Upgrade to Pro Now', 'pib' ); ?></a>
44
- <br/>
 
 
 
 
 
 
 
45
  </div>
46
  </div>
47
 
@@ -49,18 +56,22 @@ if ( ! defined( 'ABSPATH' ) ) {
49
 
50
  <?php if ( ! pib_is_wc_rich_pins_active() ): // If WooCommerce Rich Pins is already active don't show. ?>
51
 
52
- <div class="sidebar-container">
53
- <h4 class="sidebar-title-medium"><?php _e( 'WooCommerce Rich Pins', 'pib' ); ?></h4>
54
- <div class="sidebar-content">
55
- <p>
56
- <?php _e( 'Running a WooCommerce store and want to give your product pins a boost? There\'s a plugin for that.', 'pib' ); ?>
57
- </p>
58
- <p>
59
- <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'plugins/product-rich-pins-for-woocommerce/', 'pib_lite_2', 'sidebar_link', 'wc_rich_pins' ); ?>"
60
- class="btn btn-small btn-block btn-inverse" target="_blank">
61
- <?php _e( 'Check out Rich Pins for WooCommerce', 'pib' ); ?>
62
- </a>
63
- </p>
 
 
 
 
64
  </div>
65
  </div>
66
 
@@ -70,18 +81,22 @@ if ( ! defined( 'ABSPATH' ) ) {
70
 
71
  <?php if ( ! pib_is_article_rich_pins_active() ): // Unless of course Article Rich Pins is already active. ?>
72
 
73
- <div class="sidebar-container">
74
- <h4 class="sidebar-title-medium"><?php _e( 'Article Rich Pins', 'pib' ); ?></h4>
75
- <div class="sidebar-content">
76
- <p>
77
- <?php _e( 'Want give your pins a boost with <strong>Article Rich Pins</strong>? There\'s a plugin for that.', 'pib' ); ?>
78
- </p>
79
- <p>
80
- <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'plugins/article-rich-pins/', 'pib_lite_2', 'sidebar_link', 'article_rich_pins' ); ?>"
81
- class="btn btn-small btn-block btn-inverse" target="_blank">
82
- <?php _e( 'Check out Article Rich Pins', 'pib' ); ?>
83
- </a>
84
- </p>
 
 
 
 
85
  </div>
86
  </div>
87
 
@@ -89,43 +104,49 @@ if ( ! defined( 'ABSPATH' ) ) {
89
 
90
  <?php endif; // End WooCommerce check ?>
91
 
92
- <div class="sidebar-container">
93
- <div class="sidebar-content">
94
- <p>
95
- <?php _e( 'Help us get noticed (and boost our egos) with a rating and short review.', 'pib' ); ?>
96
- </p>
97
-
98
- <a href="http://wordpress.org/support/view/plugin-reviews/pinterest-pin-it-button" class="btn btn-small btn-block btn-inverse" target="_blank">
99
- <?php _e( 'Rate this plugin on WordPress.org', 'pib' ); ?></a>
 
 
 
100
  </div>
101
  </div>
102
 
103
- <div class="sidebar-container">
104
- <div class="sidebar-content">
105
- <ul>
106
- <li>
107
- <i class="fui-arrow-right"></i>
108
- <a href="<?php echo add_query_arg( 'page', PIB_PLUGIN_SLUG . '_help', admin_url( 'admin.php' ) ); ?>">
109
- <?php _e( 'Shortcode & CSS Help', 'pib' ); ?></a>
110
- </li>
111
- <li>
112
- <i class="fui-arrow-right"></i>
113
- <a href="http://wordpress.org/support/plugin/pinterest-pin-it-button" target="_blank">
114
- <?php _e( 'Community Support Forums', 'pib' ); ?></a>
115
- </li>
116
- <li>
117
- <i class="fui-arrow-right"></i>
118
- <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'support', 'pib_lite_2', 'sidebar_link', 'support' ); ?>" target="_blank">
119
- <?php _e( 'Knowledgebase', 'pib' ); ?></a>
120
- </li>
121
- </ul>
 
 
122
  </div>
123
  </div>
124
 
125
- <div class="sidebar-container">
126
- <h4 class="sidebar-title-small"><?php _e( 'Recent News from PinterestPlugin.com', 'pib' ); ?></h4>
127
-
128
- <div class="sidebar-content pib-rss-news">
129
- <?php pib_rss_news(); ?>
 
130
  </div>
131
  </div>
14
  }
15
  ?>
16
 
17
+ <!-- Use some built-in WP admin theme styles. -->
18
+ <div class="sidebar-container metabox-holder">
19
+
20
+ <div class="postbox">
21
+ <h3 class="wp-ui-primary"><span><?php _e( 'Need More Options?', 'pib' ); ?></span></h3>
22
+ <div class="inside">
23
+ <div class="main">
24
+ <ul>
25
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Add "Pin It" buttons on image hover', 'pib' ); ?></li>
26
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Add "Pin It" buttons under images', 'pib' ); ?></li>
27
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( '30 custom "Pin It" button designs', 'pib' ); ?></li>
28
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Upload your own button designs', 'pib' ); ?></li>
29
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Twitter, Facebook & G+ buttons', 'pib' ); ?></li>
30
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Use with featured images', 'pib' ); ?></li>
31
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Use with custom post types', 'pib' ); ?></li>
32
+
33
+ <?php if ( pib_is_woo_commerce_active() ): ?>
34
+ <div class="dashicons dashicons-yes"></div> <?php _e( 'WooCommerce support', 'pib' ); ?></li>
35
+ <?php endif; ?>
36
+
37
+ <li><div class="dashicons dashicons-yes"></div> <?php _e( 'Customer support & auto updates', 'pib' ); ?></li>
38
+ </ul>
39
+
40
+ <p class="last-blurb centered">
41
+ <?php _e( 'Get all of these and more with Pinterest "Pin It" Button Pro!', 'pib' ); ?>
42
+ </p>
43
+
44
+ <div class="centered">
45
+ <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'pin-it-button-pro/', 'pib_lite_2', 'sidebar_link', 'pro_upgrade' ); ?>"
46
+ class="button-primary button-large" target="_blank">
47
+ <?php _e( 'Upgrade to Pro Now', 'pib' ); ?></a>
48
+ </div>
49
+
50
+ </div>
51
+ </div>
52
  </div>
53
  </div>
54
 
56
 
57
  <?php if ( ! pib_is_wc_rich_pins_active() ): // If WooCommerce Rich Pins is already active don't show. ?>
58
 
59
+ <div class="sidebar-container metabox-holder">
60
+ <div class="postbox">
61
+ <h3 class="wp-ui-primary"><span><?php _e( 'WooCommerce Rich Pins', 'pib' ); ?></span></h3>
62
+ <div class="inside">
63
+ <div class="main">
64
+ <p>
65
+ <?php _e( 'Running a WooCommerce store and want to give your product pins a boost? There\'s a plugin for that.', 'pib' ); ?>
66
+ </p>
67
+ <div class="centered">
68
+ <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'plugins/product-rich-pins-for-woocommerce/', 'pib_lite_2', 'sidebar_link', 'wc_rich_pins' ); ?>"
69
+ class="button-primary" target="_blank">
70
+ <?php _e( 'Check out Rich Pins for WooCommerce', 'pib' ); ?>
71
+ </a>
72
+ </div>
73
+ </div>
74
+ </div>
75
  </div>
76
  </div>
77
 
81
 
82
  <?php if ( ! pib_is_article_rich_pins_active() ): // Unless of course Article Rich Pins is already active. ?>
83
 
84
+ <div class="sidebar-container metabox-holder">
85
+ <div class="postbox">
86
+ <h3 class="wp-ui-primary"><span><?php _e( 'Article Rich Pins', 'pib' ); ?></span></h3>
87
+ <div class="inside">
88
+ <div class="main">
89
+ <p>
90
+ <?php _e( 'Want give your pins a boost with <strong>Article Rich Pins</strong>? There\'s a plugin for that.', 'pib' ); ?>
91
+ </p>
92
+ <div class="centered">
93
+ <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'plugins/article-rich-pins/', 'pib_lite_2', 'sidebar_link', 'article_rich_pins' ); ?>"
94
+ class="button-primary" target="_blank">
95
+ <?php _e( 'Check out Article Rich Pins', 'pib' ); ?>
96
+ </a>
97
+ </div>
98
+ </div>
99
+ </div>
100
  </div>
101
  </div>
102
 
104
 
105
  <?php endif; // End WooCommerce check ?>
106
 
107
+ <div class="sidebar-container metabox-holder">
108
+ <div class="postbox">
109
+ <div class="inside">
110
+ <p>
111
+ <?php _e( 'Help us get noticed (and boost our egos) with a rating and short review.', 'pib' ); ?>
112
+ </p>
113
+ <div class="centered">
114
+ <a href="http://wordpress.org/support/view/plugin-reviews/pinterest-pin-it-button" class="button-primary" target="_blank">
115
+ <?php _e( 'Rate this plugin on WordPress.org', 'pib' ); ?></a>
116
+ </div>
117
+ </div>
118
  </div>
119
  </div>
120
 
121
+ <div class="sidebar-container metabox-holder">
122
+ <div class="postbox">
123
+ <div class="inside">
124
+ <ul>
125
+ <li>
126
+ <div class="dashicons dashicons-arrow-right-alt2"></div>
127
+ <a href="<?php echo add_query_arg( 'page', PIB_PLUGIN_SLUG . '_help', admin_url( 'admin.php' ) ); ?>">
128
+ <?php _e( 'Shortcode & CSS Help', 'pib' ); ?></a>
129
+ </li>
130
+ <li>
131
+ <div class="dashicons dashicons-arrow-right-alt2"></div>
132
+ <a href="http://wordpress.org/support/plugin/pinterest-pin-it-button" target="_blank">
133
+ <?php _e( 'Community Support Forums', 'pib' ); ?></a>
134
+ </li>
135
+ <li>
136
+ <div class="dashicons dashicons-arrow-right-alt2"></div>
137
+ <a href="<?php echo pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'support', 'pib_lite_2', 'sidebar_link', 'support' ); ?>" target="_blank">
138
+ <?php _e( 'Knowledgebase', 'pib' ); ?></a>
139
+ </li>
140
+ </ul>
141
+ </div>
142
  </div>
143
  </div>
144
 
145
+ <div class="sidebar-container metabox-holder">
146
+ <div class="postbox">
147
+ <h3><?php _e( 'Recent News from pinplugins.com', 'pib' ); ?></h3>
148
+ <div class="inside">
149
+ <?php pib_rss_news(); ?>
150
+ </div>
151
  </div>
152
  </div>
views/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
views/public.php CHANGED
@@ -92,7 +92,7 @@ function pib_button_base( $button_type, $post_url, $image_url, $description, $co
92
 
93
  // Set description to post title if still blank.
94
  if ( empty( $description ) )
95
- $description = get_the_title( $postID );
96
 
97
  $utm = '';
98
  $utm_meta = get_post_meta( $post->ID, 'pib_utm_meta', true );
@@ -112,7 +112,7 @@ function pib_button_base( $button_type, $post_url, $image_url, $description, $co
112
  $link_href = '//www.pinterest.com/pin/create/button/' .
113
  '?url=' . rawurlencode( $post_url ) . $utm .
114
  '&media=' . rawurlencode( $image_url ) .
115
- '&description=' . esc_attr( $description );
116
 
117
  // New options that were added to the widget builder on Pinterest
118
  // the size is different depending on the shape of the button, so first we determine the shape and then set the size
92
 
93
  // Set description to post title if still blank.
94
  if ( empty( $description ) )
95
+ $description = get_post_field( 'post_title', $postID, 'raw' );
96
 
97
  $utm = '';
98
  $utm_meta = get_post_meta( $post->ID, 'pib_utm_meta', true );
112
  $link_href = '//www.pinterest.com/pin/create/button/' .
113
  '?url=' . rawurlencode( $post_url ) . $utm .
114
  '&media=' . rawurlencode( $image_url ) .
115
+ '&description=' . rawurlencode( $description );
116
 
117
  // New options that were added to the widget builder on Pinterest
118
  // the size is different depending on the shape of the button, so first we determine the shape and then set the size