CTX Feed – WooCommerce Product Feed Manager Plugin - Version 4.4.15

Version Description

(2021-07-28) = * Added: WordPress 5.8 version compatibility tested. * Fixed: Bundled product compatibility issues fixed. * Fixed: Composite product compatibility issues fixed.

Download this release

Release Info

Developer wahid0003
Plugin Icon 128x128 CTX Feed – WooCommerce Product Feed Manager Plugin
Version 4.4.15
Comparing to
See all releases

Code changes from version 4.4.14 to 4.4.15

Files changed (28) hide show
  1. README.txt +8 -3
  2. admin/class-woo-feed-admin.php +1 -1
  3. admin/class-woo-feed-category-list.php +2 -2
  4. admin/css/woo-feed-admin-pro.css +216 -39
  5. admin/css/woo-feed-admin-pro.min.css +1 -1
  6. admin/css/woo-feed-admin-pro.scss +265 -39
  7. admin/css/woo-feed-admin.css +10 -0
  8. admin/css/woo-feed-admin.min.css +1 -1
  9. admin/css/woo-feed-admin.scss +12 -0
  10. admin/images/ctx-feed-features/attributes-mapping-thumbnail.svg +1 -0
  11. admin/images/ctx-feed-features/built-in-templates-thumbnail.svg +1 -0
  12. admin/images/ctx-feed-features/category-filter-thumbnail.svg +1 -0
  13. admin/images/ctx-feed-features/category-mapping-thumbnail.svg +1 -0
  14. admin/images/ctx-feed-features/custom-taxonomy-thumbnail.svg +1 -0
  15. admin/images/ctx-feed-features/custom-template-1-thumbnail.svg +1 -0
  16. admin/images/ctx-feed-features/default-schema-override-thumbnail.svg +1 -0
  17. admin/images/ctx-feed-features/extended-product-title-thumbnail.svg +1 -0
  18. admin/images/ctx-feed-features/facebook-feed-thumbnail.svg +1 -0
  19. admin/images/ctx-feed-features/facebook-pixel-thumbnail.svg +1 -0
  20. admin/images/ctx-feed-features/feed-making-batches-thumbnail.svg +32 -0
  21. admin/images/ctx-feed-features/feed-type-thumbnail.svg +1 -0
  22. admin/images/ctx-feed-features/google-ads-remarketing-thumbnail.svg +1 -0
  23. admin/images/ctx-feed-features/google-feed-thumbnail.svg +1 -0
  24. admin/images/ctx-feed-features/number-format-thumbnail.svg +1 -0
  25. admin/images/ctx-feed-features/options-thumbnail.svg +1 -0
  26. admin/images/ctx-feed-features/pinterest-feed-thumbnail.svg +1 -0
  27. admin/images/feature-advanced-filter-thumbnail.svg +192 -0
  28. admin/images/feature-auto-update-interval-thumbnail.svg +29 -0
README.txt CHANGED
@@ -2,10 +2,10 @@
2
  Contributors: wahid0003, webappick, mhamudul_hk, shuvo586, nayanchamp7
3
  Donate link: https://webappick.com
4
  Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Catalog, Bing Shopping, Instagram Shop, Skroutz Data Feed, xml feed, csv feed, txt feed, woocommerce product feed
5
- Requires at least: 3.6
6
- Tested Up To: 5.7
7
  Requires PHP: 5.6
8
- Stable tag: 4.4.14
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -516,6 +516,11 @@ Using pro version:
516
 
517
  == Changelog ==
518
 
 
 
 
 
 
519
  = 4.4.14 (2021-07-16) =
520
  * Fixed: Custom Attributes not adding to variation title issue fixed.
521
  * Fixed: Shipping settings label updated.
2
  Contributors: wahid0003, webappick, mhamudul_hk, shuvo586, nayanchamp7
3
  Donate link: https://webappick.com
4
  Tags: Product Feed, WooCommerce, Google Shopping, Google Merchant, Facebook Catalog, Bing Shopping, Instagram Shop, Skroutz Data Feed, xml feed, csv feed, txt feed, woocommerce product feed
5
+ Requires at least: 4.4
6
+ Tested Up To: 5.8
7
  Requires PHP: 5.6
8
+ Stable tag: 4.4.15
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
516
 
517
  == Changelog ==
518
 
519
+ = 4.4.15 (2021-07-28) =
520
+ * Added: WordPress 5.8 version compatibility tested.
521
+ * Fixed: Bundled product compatibility issues fixed.
522
+ * Fixed: Composite product compatibility issues fixed.
523
+
524
  = 4.4.14 (2021-07-16) =
525
  * Fixed: Custom Attributes not adding to variation title issue fixed.
526
  * Fixed: Shipping settings label updated.
admin/class-woo-feed-admin.php CHANGED
@@ -231,8 +231,8 @@ class Woo_Feed_Admin {
231
  add_submenu_page( 'webappick-manage-feeds', __( 'Manage Feeds', 'woo-feed' ), __( 'Manage Feeds', 'woo-feed' ), 'manage_woocommerce', 'webappick-manage-feeds', 'woo_feed_manage_feed' );
232
  add_submenu_page( 'webappick-manage-feeds', __( 'Make Feed', 'woo-feed' ), __( 'Make Feed', 'woo-feed' ), 'manage_woocommerce', 'webappick-new-feed', 'woo_feed_generate_new_feed' );
233
  add_submenu_page( 'webappick-manage-feeds', __( 'Category Mapping', 'woo-feed' ), __( 'Category Mapping', 'woo-feed' ), 'manage_woocommerce', 'webappick-feed-category-mapping', 'woo_feed_category_mapping' );
234
- add_submenu_page( 'webappick-manage-feeds', __( 'Settings', 'woo-feed' ), __( 'Settings', 'woo-feed' ), 'manage_woocommerce', 'webappick-feed-settings', 'woo_feed_config_feed' );
235
  add_submenu_page( 'webappick-manage-feeds', __( 'WP Options', 'woo-feed' ), __( 'WP Options', 'woo-feed' ), 'manage_woocommerce', 'webappick-wp-options', 'woo_feed_wp_options' );
 
236
  add_submenu_page( 'webappick-manage-feeds', __( 'Status', 'woo-feed' ), __( 'Status', 'woo-feed' ), 'manage_woocommerce', 'webappick-wp-status', 'woo_feed_system_status' );
237
  add_submenu_page( 'webappick-manage-feeds', __( 'Documentation', 'woo-feed' ), '<span class="woo-feed-docs">' . __( 'Docs', 'woo-feed' ) . '</span>', 'manage_woocommerce', 'webappick-feed-docs', array( WooFeedDocs::getInstance(), 'woo_feed_docs' ) );
238
  }
231
  add_submenu_page( 'webappick-manage-feeds', __( 'Manage Feeds', 'woo-feed' ), __( 'Manage Feeds', 'woo-feed' ), 'manage_woocommerce', 'webappick-manage-feeds', 'woo_feed_manage_feed' );
232
  add_submenu_page( 'webappick-manage-feeds', __( 'Make Feed', 'woo-feed' ), __( 'Make Feed', 'woo-feed' ), 'manage_woocommerce', 'webappick-new-feed', 'woo_feed_generate_new_feed' );
233
  add_submenu_page( 'webappick-manage-feeds', __( 'Category Mapping', 'woo-feed' ), __( 'Category Mapping', 'woo-feed' ), 'manage_woocommerce', 'webappick-feed-category-mapping', 'woo_feed_category_mapping' );
 
234
  add_submenu_page( 'webappick-manage-feeds', __( 'WP Options', 'woo-feed' ), __( 'WP Options', 'woo-feed' ), 'manage_woocommerce', 'webappick-wp-options', 'woo_feed_wp_options' );
235
+ add_submenu_page( 'webappick-manage-feeds', __( 'Settings', 'woo-feed' ), __( 'Settings', 'woo-feed' ), 'manage_woocommerce', 'webappick-feed-settings', 'woo_feed_config_feed' );
236
  add_submenu_page( 'webappick-manage-feeds', __( 'Status', 'woo-feed' ), __( 'Status', 'woo-feed' ), 'manage_woocommerce', 'webappick-wp-status', 'woo_feed_system_status' );
237
  add_submenu_page( 'webappick-manage-feeds', __( 'Documentation', 'woo-feed' ), '<span class="woo-feed-docs">' . __( 'Docs', 'woo-feed' ) . '</span>', 'manage_woocommerce', 'webappick-feed-docs', array( WooFeedDocs::getInstance(), 'woo_feed_docs' ) );
238
  }
admin/class-woo-feed-category-list.php CHANGED
@@ -245,8 +245,8 @@ class Woo_Feed_Category_list extends Woo_Feed_List_Table {
245
  function get_columns() {
246
  $columns = array(
247
  'cb' => '<input type="checkbox" />', // Render a checkbox instead of text
248
- 'option_name' => __( 'Category Name', 'woo-feed' ),
249
- 'provider' => __( 'Category Type', 'woo-feed' ),
250
  'view' => __( 'Action', 'woo-feed' ),
251
  );
252
 
245
  function get_columns() {
246
  $columns = array(
247
  'cb' => '<input type="checkbox" />', // Render a checkbox instead of text
248
+ 'option_name' => __( 'Category Mapping Name', 'woo-feed' ),
249
+ 'provider' => __( 'Template', 'woo-feed' ),
250
  'view' => __( 'Action', 'woo-feed' ),
251
  );
252
 
admin/css/woo-feed-admin-pro.css CHANGED
@@ -140,14 +140,7 @@ table.wf-info-table th a.support {
140
  /*noinspection CssFloatPxLength*/
141
  letter-spacing: 0.5px; }
142
 
143
- .wapk-admin .feed-features,
144
- .wapk-admin .wapk-testimonial,
145
- .wapk-admin .feed-pricing {
146
- text-align: center;
147
- padding: 75px 30px 85px;
148
- background-color: #f7f8f9; }
149
-
150
- .wapk-admin .feed-features .feed-feature__list {
151
  display: -ms-flexbox;
152
  display: flex;
153
  -ms-flex-wrap: wrap;
@@ -157,49 +150,226 @@ table.wf-info-table th a.support {
157
  -ms-flex-pack: center;
158
  justify-content: center; }
159
 
160
- .wapk-admin .feed-features .feed-features__more {
161
  margin-top: 25px; }
162
 
163
- .feed-feature__item {
164
- -ms-flex: 0 0 28.9%;
165
- flex: 0 0 28.9%;
166
- margin: 0 2.2% 4.4% 2.2%;
167
  text-align: center;
168
  border-radius: 5px;
169
  background-color: #ffffff;
170
- transition: all 100ms linear;
171
- overflow: hidden; }
172
-
173
- .feed-feature__item:hover {
174
- box-shadow: 5px 4px 32px -16px rgba(0, 0, 0, 0.63); }
175
-
176
- .feed-feature__thumb {
 
 
 
 
 
 
 
177
  overflow: hidden; }
178
 
179
- .feed-feature__item .feed-feature__thumb img {
180
- border-radius: 5px 5px 0 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  max-width: 100%;
182
  width: 100%;
 
183
  transition: all 100ms linear; }
184
 
185
- .feed-feature__item:hover .feed-feature__thumb img {
186
- -webkit-transform: scale(1.05);
187
- transform: scale(1.05); }
188
-
189
- .feed-feature__item .feed-feature__description {
190
- padding: 20px 15px 25px; }
191
-
192
- .feed-feature__item .feed-feature__description h3 {
193
- font-size: 15px;
194
  line-height: 1.5em;
195
- font-weight: 300;
196
- margin: 0; }
 
 
 
197
 
198
  .wapk-admin .feed-pro-comparison {
199
  background-color: #f1f1f1;
200
  padding: 75px; }
201
 
202
- .wapk-admin .feed-features .section-title h2,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  .wapk-admin .wapk-testimonial .section-title h2,
204
  .wapk-admin .feed-pro-comparison .section-title h2,
205
  .wapk-admin .feed-pricing .section-title h2 {
@@ -605,10 +775,6 @@ span.wapk-price__table__feature span.dashicons {
605
  font-weight: 300; }
606
 
607
  @media screen and (min-width: 1281px) {
608
- .wapk-admin .wapk-banner,
609
- .wapk-admin .feed-features {
610
- padding-left: 20%;
611
- padding-right: 20%; }
612
  .wapk-admin .wapk-payment {
613
  padding-left: 15%;
614
  padding-right: 15%; }
@@ -618,11 +784,22 @@ span.wapk-price__table__feature span.dashicons {
618
  .wapk-admin .wapk-testimonial-wrapper {
619
  width: 55%; } }
620
 
 
 
 
 
 
 
 
 
 
 
 
 
621
  .wapk-feed-pro-upgrade .wapk-feed-cta,
622
  .wapk-feed-docs .wapk-feed-cta,
623
  .wapk-admin .feed-pro-comparison,
624
  .wapk-admin .wapk-payment,
625
- .wapk-admin .feed-features,
626
  .wapk-admin .wapk-testimonial,
627
  .wapk-admin .wapk-feed-banner {
628
  margin: 0; }
140
  /*noinspection CssFloatPxLength*/
141
  letter-spacing: 0.5px; }
142
 
143
+ .wapk-admin .wapk-feed-features .wapk-feed-feature__list {
 
 
 
 
 
 
 
144
  display: -ms-flexbox;
145
  display: flex;
146
  -ms-flex-wrap: wrap;
150
  -ms-flex-pack: center;
151
  justify-content: center; }
152
 
153
+ .wapk-admin .wapk-feed-features .wapk-feed-features__more {
154
  margin-top: 25px; }
155
 
156
+ .wapk-feed-feature__item {
157
+ -ms-flex: 0 0 47%;
158
+ flex: 0 0 47%;
 
159
  text-align: center;
160
  border-radius: 5px;
161
  background-color: #ffffff;
162
+ overflow: hidden;
163
+ margin-bottom: 40px;
164
+ padding: 40px;
165
+ box-shadow: 0 0 5px rgba(115, 115, 166, 0.15);
166
+ position: relative;
167
+ transition: all 0.3s ease-in-out; }
168
+ .wapk-feed-feature__item:nth-child(2n+1) {
169
+ margin-right: 20px; }
170
+ .wapk-feed-feature__item:nth-child(2n+2) {
171
+ margin-left: 20px; }
172
+ .wapk-feed-feature__item:hover {
173
+ box-shadow: 0px 10px 10px rgba(17, 17, 85, 0.15); }
174
+
175
+ .wapk-feed-feature__thumb {
176
  overflow: hidden; }
177
 
178
+ .wapk-feed-feature__links a, .wapk-feed-buy-now-btn a {
179
+ display: inline-block;
180
+ background: linear-gradient(67.36deg, #3D41DA 3.09%, #0088F7 64.97%);
181
+ font-weight: 600;
182
+ padding: 12px 32px 12px 48px;
183
+ border-radius: 5px;
184
+ margin-top: 24px;
185
+ color: white;
186
+ text-decoration: none;
187
+ position: relative; }
188
+ .wapk-feed-feature__links a:before, .wapk-feed-buy-now-btn a:before {
189
+ content: "";
190
+ position: absolute;
191
+ width: 16px;
192
+ height: 16px;
193
+ background-size: 16px;
194
+ margin-left: -20px;
195
+ background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M12%208.66667V12.6667C12%2013.0203%2011.8595%2013.3594%2011.6095%2013.6095C11.3594%2013.8595%2011.0203%2014%2010.6667%2014H3.33333C2.97971%2014%202.64057%2013.8595%202.39052%2013.6095C2.14048%2013.3594%202%2013.0203%202%2012.6667V5.33333C2%204.97971%202.14048%204.64057%202.39052%204.39052C2.64057%204.14048%202.97971%204%203.33333%204H7.33333%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M10%202H14V6%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M6.66699%209.33333L14.0003%202%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A"); }
196
+
197
+ .wapk-feed-feature__item:hover .wapk-feed-feature__links a, .wapk-feed-feature__item:hover .wapk-feed-buy-now-btn a {
198
+ opacity: 1; }
199
+
200
+ .wapk-feed-feature__item .wapk-feed-feature__thumb img {
201
  max-width: 100%;
202
  width: 100%;
203
+ height: auto;
204
  transition: all 100ms linear; }
205
 
206
+ .wapk-feed-feature__item .wapk-feed-feature__description h3 {
207
+ font-size: 18px;
 
 
 
 
 
 
 
208
  line-height: 1.5em;
209
+ font-weight: 500;
210
+ margin-top: 20px; }
211
+
212
+ .wapk-feed-feature__item .wapk-feed-feature__description p {
213
+ margin: 20px auto 0; }
214
 
215
  .wapk-admin .feed-pro-comparison {
216
  background-color: #f1f1f1;
217
  padding: 75px; }
218
 
219
+ .wapk-admin .wapk-feed-features {
220
+ text-align: center;
221
+ max-width: 1320px;
222
+ margin: 40px auto 0; }
223
+
224
+ .wapk-feed-buy-now {
225
+ margin-bottom: 40px; }
226
+
227
+ .wapk-feed-buy-now-container {
228
+ background: #ffffff;
229
+ padding: 0.75rem;
230
+ z-index: 999999999;
231
+ left: 160px;
232
+ right: 0;
233
+ bottom: -100%; }
234
+ .wapk-feed-buy-now-container.fixed {
235
+ bottom: 0;
236
+ position: fixed; }
237
+
238
+ .wapk-feed-buy-now-wrapper {
239
+ max-width: 1320px;
240
+ margin: 0 auto;
241
+ display: -ms-flexbox;
242
+ display: flex;
243
+ -ms-flex-align: center;
244
+ align-items: center;
245
+ -ms-flex-pack: center;
246
+ justify-content: center; }
247
+
248
+ .wapk-feed-buy-now-thumbnail {
249
+ float: left; }
250
+ .wapk-feed-buy-now-thumbnail img {
251
+ width: 3.75rem;
252
+ height: auto;
253
+ padding: 0.1875rem; }
254
+
255
+ .wapk-feed-buy-now-product-container {
256
+ display: -ms-flexbox;
257
+ display: flex;
258
+ -ms-flex-align: center;
259
+ align-items: center; }
260
+
261
+ .wapk-feed-buy-now-product-meta {
262
+ float: right; }
263
+
264
+ .wapk-feed-buy-now-product-description {
265
+ max-width: 460px;
266
+ line-height: 1.5; }
267
+
268
+ .wapk-feed-buy-now-details {
269
+ float: left;
270
+ margin-top: 9px; }
271
+
272
+ .wapk-feed-buy-now-title {
273
+ float: left;
274
+ margin-left: 1.5rem;
275
+ max-width: 180px;
276
+ line-height: 1.15; }
277
+
278
+ .wapk-feed-buy-now-product-name {
279
+ font-size: 16px;
280
+ font-weight: 700; }
281
+
282
+ .wapk-feed-buy-now-product-description {
283
+ float: right;
284
+ font-size: 1rem;
285
+ margin-left: 1.5rem; }
286
+
287
+ .wapk-feed-buy-now-price {
288
+ position: relative;
289
+ font-weight: 400;
290
+ line-height: 1.5;
291
+ margin-top: 6px; }
292
+
293
+ .wapk-feed-buy-now-product-meta {
294
+ margin: 0 0 0 42px; }
295
+ .wapk-feed-buy-now-product-meta div {
296
+ display: inline-block;
297
+ margin-left: 20px; }
298
+
299
+ .wapk-feed-buy-now-btn a {
300
+ margin-top: 0; }
301
+ .wapk-feed-buy-now-btn a:before {
302
+ background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url%28%23clip0%29%22%3E%0A%3Cpath%20d%3D%22M5.99967%2014.6668C6.36786%2014.6668%206.66634%2014.3684%206.66634%2014.0002C6.66634%2013.632%206.36786%2013.3335%205.99967%2013.3335C5.63148%2013.3335%205.33301%2013.632%205.33301%2014.0002C5.33301%2014.3684%205.63148%2014.6668%205.99967%2014.6668Z%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M13.3337%2014.6668C13.7018%2014.6668%2014.0003%2014.3684%2014.0003%2014.0002C14.0003%2013.632%2013.7018%2013.3335%2013.3337%2013.3335C12.9655%2013.3335%2012.667%2013.632%2012.667%2014.0002C12.667%2014.3684%2012.9655%2014.6668%2013.3337%2014.6668Z%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M0.666992%200.666504H3.33366L5.12033%209.59317C5.18129%209.9001%205.34826%2010.1758%205.59202%2010.372C5.83578%2010.5683%206.14079%2010.6725%206.45366%2010.6665H12.9337C13.2465%2010.6725%2013.5515%2010.5683%2013.7953%2010.372C14.0391%2010.1758%2014.206%209.9001%2014.267%209.59317L15.3337%203.99984H4.00033%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A"); }
303
+
304
+ .folded.sticky-menu .wapk-feed-buy-now-container {
305
+ left: 36px; }
306
+
307
+ @media (max-width: 780px) {
308
+ .folded.sticky-menu .wapk-feed-buy-now-container {
309
+ left: 0; } }
310
+
311
+ @media (max-width: 780px) {
312
+ .wapk-feed-buy-now-container {
313
+ left: 0; } }
314
+
315
+ @media (min-width: 781px) and (max-width: 960px) {
316
+ .wapk-feed-buy-now-container {
317
+ left: 36px; } }
318
+
319
+ @media (max-width: 1120px) {
320
+ .wapk-feed-buy-now-product-container {
321
+ float: none;
322
+ margin: 0 auto; }
323
+ .wapk-feed-buy-now-product-meta {
324
+ float: none;
325
+ clear: both;
326
+ margin: 10px auto 0;
327
+ text-align: center;
328
+ display: block; }
329
+ .wapk-feed-buy-now-wrapper {
330
+ max-width: 1035px;
331
+ margin: 0 auto;
332
+ display: block; }
333
+ .wapk-feed-buy-now-thumbnail {
334
+ float: none;
335
+ margin: 0 auto; }
336
+ .wapk-feed-buy-now-product-container {
337
+ float: none;
338
+ display: block;
339
+ text-align: center; }
340
+ .wapk-feed-buy-now-product-meta {
341
+ float: none;
342
+ margin-top: 1.5rem; }
343
+ .wapk-feed-buy-now-product-description {
344
+ max-width: 500px;
345
+ line-height: 1.5;
346
+ margin: 0 auto; }
347
+ .wapk-feed-buy-now-details {
348
+ float: none;
349
+ margin-top: 10px;
350
+ text-align: center; }
351
+ .wapk-feed-buy-now-title {
352
+ float: none;
353
+ clear: both;
354
+ max-width: 100%;
355
+ margin: 1rem 0; }
356
+ .wapk-feed-buy-now-product-description {
357
+ float: none;
358
+ margin-top: 10px; } }
359
+
360
+ @media (max-width: 449px) {
361
+ .wapk-feed-buy-now-product-meta div {
362
+ display: -ms-flexbox;
363
+ display: flex;
364
+ margin: 20px auto 0;
365
+ -ms-flex-pack: center;
366
+ justify-content: center; }
367
+ .wapk-feed-buy-now-price:before {
368
+ position: unset;
369
+ margin-top: -6px;
370
+ margin-right: 6px; } }
371
+
372
+ .wapk-admin .wapk-feed-features .section-title h2,
373
  .wapk-admin .wapk-testimonial .section-title h2,
374
  .wapk-admin .feed-pro-comparison .section-title h2,
375
  .wapk-admin .feed-pricing .section-title h2 {
775
  font-weight: 300; }
776
 
777
  @media screen and (min-width: 1281px) {
 
 
 
 
778
  .wapk-admin .wapk-payment {
779
  padding-left: 15%;
780
  padding-right: 15%; }
784
  .wapk-admin .wapk-testimonial-wrapper {
785
  width: 55%; } }
786
 
787
+ @media screen and (max-width: 782px) {
788
+ .wapk-admin .wapk-feed-features {
789
+ display: block; }
790
+ .wapk-feed-feature__item {
791
+ -ms-flex: 0 0 80%;
792
+ flex: 0 0 80%;
793
+ width: 80%; }
794
+ .wapk-feed-feature__item:nth-child(2n+1) {
795
+ margin-right: initial; }
796
+ .wapk-feed-feature__item:nth-child(2n+2) {
797
+ margin-left: initial; } }
798
+
799
  .wapk-feed-pro-upgrade .wapk-feed-cta,
800
  .wapk-feed-docs .wapk-feed-cta,
801
  .wapk-admin .feed-pro-comparison,
802
  .wapk-admin .wapk-payment,
 
803
  .wapk-admin .wapk-testimonial,
804
  .wapk-admin .wapk-feed-banner {
805
  margin: 0; }
admin/css/woo-feed-admin-pro.min.css CHANGED
@@ -1 +1 @@
1
- table.wf-info-table th a,table.wf-rate-table th strong{font-weight:700}table.wf-info-table th a,table.wf-rate-table a{color:#0073aa}table.wf-info-table th a.get-woo-feed-pro{display:inline-block;text-decoration:none;background:#f3f5f6;color:#f35;vertical-align:top;font-size:14px;line-height:3.14285714;box-sizing:border-box;margin:0;border-radius:35px;box-shadow:1px 2px 10px 1px rgba(255,51,85,.5)}table.wf-info-table th a.get-woo-feed-pro img{display:block;position:relative;margin:-2px;width:180px;height:auto}table.wf-info-table th a.button{border-color:#0073aa;border-radius:35px}table.wf-info-table th a.documentation{color:#0073aa}table.wf-info-table th a.tutorial{color:#ee264a}table.wf-info-table th a.support{color:#0dd41e}.wp-submenu li span.woo-feed-premium{font-weight:700;color:#28e499}.wp-submenu li.current span.woo-feed-premium,.wp-submenu li:hover span.woo-feed-premium{color:#1dc381}.woo_feed_free_manage_attribute{margin:0 auto;width:100%}.woo_feed_screenshort{max-width:100%;width:1000px;border:3px solid #00b9eb;display:block;margin:0 auto}.woo-feed-screen-shot-title{font-size:36px;text-align:center;box-sizing:content-box;color:#00b9eb}.woo_feed_screen{background:#fff;padding:25px 20px;margin-bottom:20px}.woo_feed_screen_des{text-align:center;margin:20px 50px 20px 50px;font-size:16px;color:#666}.woo_feed_screen_des_2{text-align:center;margin:20px 50px 5px 50px;font-size:14px;color:#32373c}.wapk-admin .wapk-feed-upgrade{font-family:'Open Sans',sans-serif;margin:-10px -20px 0 -22px}.wapk-admin .wapk-feed-upgrade a{transition:all .2s ease}.wapk-admin .section-title{text-align:center;font-size:30px;line-height:1.5em;font-weight:400;position:relative;margin:0 0 58px}.wapk-admin .section-title:after{content:'';position:absolute;bottom:-21px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:38px;height:5px;border-radius:3px;background-color:#00d4d4}.wapk-admin .section-title .section-sub-title{font-size:22px;font-weight:300}.wapk-admin .wapk-banner{background-color:#f2f2f2;font-size:16px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:50px 8%;border-bottom:1px solid #eee}.wapk-admin .wapk-banner .wapk-banner__graphics{width:100%}.wapk-admin .wapk-banner .wapk-banner__content h1{font-size:27px;line-height:1.5em}.wapk-admin .wapk-banner .wapk-banner__content p{font-size:16px;line-height:1.5em;font-weight:300;margin:0;letter-spacing:.5px}.wapk-admin .feed-features,.wapk-admin .feed-pricing,.wapk-admin .wapk-testimonial{text-align:center;padding:75px 30px 85px;background-color:#f7f8f9}.wapk-admin .feed-features .feed-feature__list{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.wapk-admin .feed-features .feed-features__more{margin-top:25px}.feed-feature__item{-ms-flex:0 0 28.9%;flex:0 0 28.9%;margin:0 2.2% 4.4% 2.2%;text-align:center;border-radius:5px;background-color:#fff;transition:all .1s linear;overflow:hidden}.feed-feature__item:hover{box-shadow:5px 4px 32px -16px rgba(0,0,0,.63)}.feed-feature__thumb{overflow:hidden}.feed-feature__item .feed-feature__thumb img{border-radius:5px 5px 0 0;max-width:100%;width:100%;transition:all .1s linear}.feed-feature__item:hover .feed-feature__thumb img{-webkit-transform:scale(1.05);transform:scale(1.05)}.feed-feature__item .feed-feature__description{padding:20px 15px 25px}.feed-feature__item .feed-feature__description h3{font-size:15px;line-height:1.5em;font-weight:300;margin:0}.wapk-admin .feed-pro-comparison{background-color:#f1f1f1;padding:75px}.wapk-admin .feed-features .section-title h2,.wapk-admin .feed-pricing .section-title h2,.wapk-admin .feed-pro-comparison .section-title h2,.wapk-admin .wapk-testimonial .section-title h2{margin-top:0;margin-bottom:0}.wapk-admin .comparison-table{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.wapk-admin .comparison-table .comparison{-ms-flex:0 0 48%;flex:0 0 48%;background-color:#fff;border:1px solid #e0e9ec;border-radius:5px;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);padding:50px;box-sizing:border-box}.wapk-admin .comparison .product-header{margin-bottom:58px;position:relative}.wapk-admin .comparison .product-header:after{content:"";position:absolute;bottom:-23px;left:0;width:38px;height:5px;border-radius:3px;background-color:#d7d7d7}.wapk-admin .comparison .product-header img{max-width:160px;width:100%}.wapk-admin .comparison .product-features{margin:0}.wapk-admin .comparison li{position:relative;display:-ms-flexbox;display:flex;margin-bottom:15px;padding-left:30px;font-size:14px;line-height:1.3em;font-weight:300;-ms-flex-align:center;align-items:center}.wapk-admin .comparison li.unavailable{color:#ced2d6}.wapk-admin .comparison li span.dashicons{position:absolute;top:1px;left:6px;width:18px;height:18px;border-radius:100%;background:#00d4d4;color:#fff;line-height:22px;font-size:14px;text-align:center}.wapk-admin .comparison li.unavailable{color:#ced2d6}.wapk-admin .comparison li.unavailable span.dashicons{background:#ced2d6}.wapk-admin .comparison li span.dashicons-no{font-size:12px}.wapk-admin .comparison li span.dashicons-no:before{left:0}.wapk-admin .comparison li span.dashicons:before{position:relative;left:-.5px;top:-2px}.wapk-admin .comparison li img{width:18px;margin-right:12px}.wapk-pricing__table{width:100%;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-line-pack:start;align-content:flex-start;-ms-flex-pack:center;justify-content:center}.wapk-pricing__table__item{position:relative;-ms-flex:0 0 23%;flex:0 0 23%}.wapk-price__table__wrapper{position:relative;padding:10px}.wapk-price__table{text-align:center;display:block;width:100%;padding:10px;background-color:#fff;border-radius:8px 8px 8px 8px;box-shadow:0 0 25px 0 rgba(0,0,0,.1);overflow:hidden;transition:background .3s,border .3s,border-radius .3s,box-shadow .3s}.wapk-price__table__header{background-color:#fff;padding:40px 0 0}.wapk-price__table__heading{color:#6d7882;font-size:17px;font-weight:500;text-transform:uppercase;letter-spacing:10px;font-family:sans-serif;margin:0;padding:0;line-height:1.2}.wapk-price__table__price{font-family:sans-serif;font-weight:600;padding:30px 0 10px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:row;flex-direction:row;color:#434363;font-size:45px}.wapk-price__table__currency{-ms-flex-item-align:start;align-self:flex-start;color:#434363;line-height:1;font-size:.3em;margin-right:3px}.wapk-price__table__amount .free,.wapk-price__table__amount .integer-part{color:#434363;line-height:.8}.wapk-price__table__amount .decimal-part{font-size:14px;font-weight:400}.wapk-price__table__amount .period{font-size:14px;font-weight:400}.wapk-price__table__amount___legend{width:100%;color:#ff4b4b;font-size:18px;font-weight:500;line-height:2.5em}.wapk-price__table__features{list-style-type:none;margin:0;padding:0;line-height:1;color:#697279;text-align:left}.wapk-price__table__features li.item{list-style-type:none;margin:0;padding:0;font-size:13px;line-height:1.5em}.wapk-price__table__features li:not(:first-child):before{content:"";display:block;margin:10px 12.5%}.wapk-price__table__feature{display:block;margin-left:calc(((100% - 80%)/ 2) + 20px);margin-right:calc((100% - 80%)/ 2)}span.wapk-price__table__feature span.dashicons{margin-left:-20px;top:2px;position:relative}.wapk-price__table__footer{padding:40px 0}.wapk-price__table__footer a{font-size:14px;text-transform:uppercase;letter-spacing:3px;border-radius:100px 100px 100px 100px;padding:16px 42px;transition:all 250ms}.wapk-price__table__footer a:active,.wapk-price__table__footer a:focus,.wapk-price__table__footer a:hover{-webkit-transform:scale(1.02)!important;transform:scale(1.02)!important}.wapk-price__table__ribbon{pointer-events:none;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;top:10px;left:auto;right:10px;-webkit-transform:rotate(90deg);transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.wapk-price__table__ribbon__inner{background:#ff4b4b;font-family:sans-serif;font-weight:500;color:#fff;font-size:11px;letter-spacing:1.1px;box-shadow:0 0 30px 0 rgba(0,0,0,.21);text-align:center;left:0;width:200%;-webkit-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top:35px;line-height:2;text-transform:uppercase}.wapk-admin .wapk-payment{display:-ms-flexbox;display:flex;background:#fff;-ms-flex-pack:justify;justify-content:space-between;padding:85px 65px 85px;-ms-flex-align:center;align-items:center}.wapk-payment .payment-guarantee{display:-ms-flexbox;display:flex;-ms-flex:0 0 63%;flex:0 0 63%;-ms-flex-line-pack:center;align-content:center;-ms-flex-align:center;align-items:center;position:relative}.wapk-payment .payment-guarantee:after{content:"";position:absolute;right:-18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:5px;height:38px;border-radius:3px;background:#00d4d4}.wapk-payment .payment-guarantee .guarantee-seal img{max-width:100%;width:280px}.wapk-payment .payment-guarantee .guarantee-detail{padding-left:25px}.wapk-payment .payment-guarantee .guarantee-detail h2{font-size:24px;line-height:1.5em;font-weight:400;margin:0}.wapk-payment .payment-guarantee .guarantee-detail p{font-size:15px;line-height:1.5em;font-weight:300;margin:5px 0 20px}.wapk-payment .payment-guarantee .guarantee-detail a{color:#00d4d4;font-size:15px;line-height:1.5em;text-decoration:none}.wapk-payment .payment-guarantee .guarantee-detail a img,.wapk-payment .payment-guarantee .guarantee-detail a span.dashicons{width:18px;margin-right:4px;margin-top:1px}.wapk-payment .payment-options{-ms-flex-positive:.5;flex-grow:.5}.wapk-payment .payment-options h3{font-size:15px;font-weight:300;margin:0 0 17px}.wapk-payment .payment-options .options h4{color:#ced2d6}.wapk-payment .payment-options .options li{float:left;overflow:hidden}.wapk-payment .payment-options .options li img{height:20px;margin-right:5px}.wapk-admin .wapk-testimonial-wrapper:before{content:'';position:absolute;left:79px;top:-15px;width:80px;height:56px;border-radius:3px;background:transparent url(../images/block-quote.svg) no-repeat;background-size:cover}.wapk-admin .wapk-testimonial-wrapper{position:relative;display:block;width:80%;margin:0 auto;padding:0;text-align:center}.testimonial-item__user .avatar{width:100px;height:100px;margin:0 auto;border-radius:100%;border:3px solid #efefef;overflow:hidden}.testimonial-item{margin-bottom:25px}.testimonial-item__user .avatar img{max-width:100%;width:100%;margin:0 auto;padding:0;display:block}.testimonial-item__comment{position:relative;display:block;width:70%;margin:0 auto 30px}.testimonial-item__user h4.author-name{font-size:25px;font-weight:300;margin:10px auto}.testimonial-item__user span.author-meta{font-size:16px;font-weight:300}@media screen and (min-width:1281px){.wapk-admin .feed-features,.wapk-admin .wapk-banner{padding-left:20%;padding-right:20%}.wapk-admin .wapk-payment{padding-left:15%;padding-right:15%}.wapk-admin .feed-pro-comparison{padding-left:21.2%;padding-right:21.2%}.wapk-admin .wapk-testimonial-wrapper{width:55%}}.wapk-admin .feed-features,.wapk-admin .feed-pro-comparison,.wapk-admin .wapk-feed-banner,.wapk-admin .wapk-payment,.wapk-admin .wapk-testimonial,.wapk-feed-docs .wapk-feed-cta,.wapk-feed-pro-upgrade .wapk-feed-cta{margin:0}.wapk-feed-banner .wapk-banner{margin:0;padding:0}
1
+ table.wf-info-table th a,table.wf-rate-table th strong{font-weight:700}table.wf-info-table th a,table.wf-rate-table a{color:#0073aa}table.wf-info-table th a.get-woo-feed-pro{display:inline-block;text-decoration:none;background:#f3f5f6;color:#f35;vertical-align:top;font-size:14px;line-height:3.14285714;box-sizing:border-box;margin:0;border-radius:35px;box-shadow:1px 2px 10px 1px rgba(255,51,85,.5)}table.wf-info-table th a.get-woo-feed-pro img{display:block;position:relative;margin:-2px;width:180px;height:auto}table.wf-info-table th a.button{border-color:#0073aa;border-radius:35px}table.wf-info-table th a.documentation{color:#0073aa}table.wf-info-table th a.tutorial{color:#ee264a}table.wf-info-table th a.support{color:#0dd41e}.wp-submenu li span.woo-feed-premium{font-weight:700;color:#28e499}.wp-submenu li.current span.woo-feed-premium,.wp-submenu li:hover span.woo-feed-premium{color:#1dc381}.woo_feed_free_manage_attribute{margin:0 auto;width:100%}.woo_feed_screenshort{max-width:100%;width:1000px;border:3px solid #00b9eb;display:block;margin:0 auto}.woo-feed-screen-shot-title{font-size:36px;text-align:center;box-sizing:content-box;color:#00b9eb}.woo_feed_screen{background:#fff;padding:25px 20px;margin-bottom:20px}.woo_feed_screen_des{text-align:center;margin:20px 50px 20px 50px;font-size:16px;color:#666}.woo_feed_screen_des_2{text-align:center;margin:20px 50px 5px 50px;font-size:14px;color:#32373c}.wapk-admin .wapk-feed-upgrade{font-family:'Open Sans',sans-serif;margin:-10px -20px 0 -22px}.wapk-admin .wapk-feed-upgrade a{transition:all .2s ease}.wapk-admin .section-title{text-align:center;font-size:30px;line-height:1.5em;font-weight:400;position:relative;margin:0 0 58px}.wapk-admin .section-title:after{content:'';position:absolute;bottom:-21px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:38px;height:5px;border-radius:3px;background-color:#00d4d4}.wapk-admin .section-title .section-sub-title{font-size:22px;font-weight:300}.wapk-admin .wapk-banner{background-color:#f2f2f2;font-size:16px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:50px 8%;border-bottom:1px solid #eee}.wapk-admin .wapk-banner .wapk-banner__graphics{width:100%}.wapk-admin .wapk-banner .wapk-banner__content h1{font-size:27px;line-height:1.5em}.wapk-admin .wapk-banner .wapk-banner__content p{font-size:16px;line-height:1.5em;font-weight:300;margin:0;letter-spacing:.5px}.wapk-admin .wapk-feed-features .wapk-feed-feature__list{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.wapk-admin .wapk-feed-features .wapk-feed-features__more{margin-top:25px}.wapk-feed-feature__item{-ms-flex:0 0 47%;flex:0 0 47%;text-align:center;border-radius:5px;background-color:#fff;overflow:hidden;margin-bottom:40px;padding:40px;box-shadow:0 0 5px rgba(115,115,166,.15);position:relative;transition:all .3s ease-in-out}.wapk-feed-feature__item:nth-child(2n+1){margin-right:20px}.wapk-feed-feature__item:nth-child(2n+2){margin-left:20px}.wapk-feed-feature__item:hover{box-shadow:0 10px 10px rgba(17,17,85,.15)}.wapk-feed-feature__thumb{overflow:hidden}.wapk-feed-buy-now-btn a,.wapk-feed-feature__links a{display:inline-block;background:linear-gradient(67.36deg,#3d41da 3.09%,#0088f7 64.97%);font-weight:600;padding:12px 32px 12px 48px;border-radius:5px;margin-top:24px;color:#fff;text-decoration:none;position:relative}.wapk-feed-buy-now-btn a:before,.wapk-feed-feature__links a:before{content:"";position:absolute;width:16px;height:16px;background-size:16px;margin-left:-20px;background:url(data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M12%208.66667V12.6667C12%2013.0203%2011.8595%2013.3594%2011.6095%2013.6095C11.3594%2013.8595%2011.0203%2014%2010.6667%2014H3.33333C2.97971%2014%202.64057%2013.8595%202.39052%2013.6095C2.14048%2013.3594%202%2013.0203%202%2012.6667V5.33333C2%204.97971%202.14048%204.64057%202.39052%204.39052C2.64057%204.14048%202.97971%204%203.33333%204H7.33333%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M10%202H14V6%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M6.66699%209.33333L14.0003%202%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.wapk-feed-feature__item:hover .wapk-feed-buy-now-btn a,.wapk-feed-feature__item:hover .wapk-feed-feature__links a{opacity:1}.wapk-feed-feature__item .wapk-feed-feature__thumb img{max-width:100%;width:100%;height:auto;transition:all .1s linear}.wapk-feed-feature__item .wapk-feed-feature__description h3{font-size:18px;line-height:1.5em;font-weight:500;margin-top:20px}.wapk-feed-feature__item .wapk-feed-feature__description p{margin:20px auto 0}.wapk-admin .feed-pro-comparison{background-color:#f1f1f1;padding:75px}.wapk-admin .wapk-feed-features{text-align:center;max-width:1320px;margin:40px auto 0}.wapk-feed-buy-now{margin-bottom:40px}.wapk-feed-buy-now-container{background:#fff;padding:.75rem;z-index:999999999;left:160px;right:0;bottom:-100%}.wapk-feed-buy-now-container.fixed{bottom:0;position:fixed}.wapk-feed-buy-now-wrapper{max-width:1320px;margin:0 auto;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.wapk-feed-buy-now-thumbnail{float:left}.wapk-feed-buy-now-thumbnail img{width:3.75rem;height:auto;padding:.1875rem}.wapk-feed-buy-now-product-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.wapk-feed-buy-now-product-meta{float:right}.wapk-feed-buy-now-product-description{max-width:460px;line-height:1.5}.wapk-feed-buy-now-details{float:left;margin-top:9px}.wapk-feed-buy-now-title{float:left;margin-left:1.5rem;max-width:180px;line-height:1.15}.wapk-feed-buy-now-product-name{font-size:16px;font-weight:700}.wapk-feed-buy-now-product-description{float:right;font-size:1rem;margin-left:1.5rem}.wapk-feed-buy-now-price{position:relative;font-weight:400;line-height:1.5;margin-top:6px}.wapk-feed-buy-now-product-meta{margin:0 0 0 42px}.wapk-feed-buy-now-product-meta div{display:inline-block;margin-left:20px}.wapk-feed-buy-now-btn a{margin-top:0}.wapk-feed-buy-now-btn a:before{background:url(data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url%28%23clip0%29%22%3E%0A%3Cpath%20d%3D%22M5.99967%2014.6668C6.36786%2014.6668%206.66634%2014.3684%206.66634%2014.0002C6.66634%2013.632%206.36786%2013.3335%205.99967%2013.3335C5.63148%2013.3335%205.33301%2013.632%205.33301%2014.0002C5.33301%2014.3684%205.63148%2014.6668%205.99967%2014.6668Z%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M13.3337%2014.6668C13.7018%2014.6668%2014.0003%2014.3684%2014.0003%2014.0002C14.0003%2013.632%2013.7018%2013.3335%2013.3337%2013.3335C12.9655%2013.3335%2012.667%2013.632%2012.667%2014.0002C12.667%2014.3684%2012.9655%2014.6668%2013.3337%2014.6668Z%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M0.666992%200.666504H3.33366L5.12033%209.59317C5.18129%209.9001%205.34826%2010.1758%205.59202%2010.372C5.83578%2010.5683%206.14079%2010.6725%206.45366%2010.6665H12.9337C13.2465%2010.6725%2013.5515%2010.5683%2013.7953%2010.372C14.0391%2010.1758%2014.206%209.9001%2014.267%209.59317L15.3337%203.99984H4.00033%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A)}.folded.sticky-menu .wapk-feed-buy-now-container{left:36px}@media (max-width:780px){.folded.sticky-menu .wapk-feed-buy-now-container{left:0}}@media (max-width:780px){.wapk-feed-buy-now-container{left:0}}@media (min-width:781px) and (max-width:960px){.wapk-feed-buy-now-container{left:36px}}@media (max-width:1120px){.wapk-feed-buy-now-product-container{float:none;margin:0 auto}.wapk-feed-buy-now-product-meta{float:none;clear:both;margin:10px auto 0;text-align:center;display:block}.wapk-feed-buy-now-wrapper{max-width:1035px;margin:0 auto;display:block}.wapk-feed-buy-now-thumbnail{float:none;margin:0 auto}.wapk-feed-buy-now-product-container{float:none;display:block;text-align:center}.wapk-feed-buy-now-product-meta{float:none;margin-top:1.5rem}.wapk-feed-buy-now-product-description{max-width:500px;line-height:1.5;margin:0 auto}.wapk-feed-buy-now-details{float:none;margin-top:10px;text-align:center}.wapk-feed-buy-now-title{float:none;clear:both;max-width:100%;margin:1rem 0}.wapk-feed-buy-now-product-description{float:none;margin-top:10px}}@media (max-width:449px){.wapk-feed-buy-now-product-meta div{display:-ms-flexbox;display:flex;margin:20px auto 0;-ms-flex-pack:center;justify-content:center}.wapk-feed-buy-now-price:before{position:unset;margin-top:-6px;margin-right:6px}}.wapk-admin .feed-pricing .section-title h2,.wapk-admin .feed-pro-comparison .section-title h2,.wapk-admin .wapk-feed-features .section-title h2,.wapk-admin .wapk-testimonial .section-title h2{margin-top:0;margin-bottom:0}.wapk-admin .comparison-table{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.wapk-admin .comparison-table .comparison{-ms-flex:0 0 48%;flex:0 0 48%;background-color:#fff;border:1px solid #e0e9ec;border-radius:5px;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);padding:50px;box-sizing:border-box}.wapk-admin .comparison .product-header{margin-bottom:58px;position:relative}.wapk-admin .comparison .product-header:after{content:"";position:absolute;bottom:-23px;left:0;width:38px;height:5px;border-radius:3px;background-color:#d7d7d7}.wapk-admin .comparison .product-header img{max-width:160px;width:100%}.wapk-admin .comparison .product-features{margin:0}.wapk-admin .comparison li{position:relative;display:-ms-flexbox;display:flex;margin-bottom:15px;padding-left:30px;font-size:14px;line-height:1.3em;font-weight:300;-ms-flex-align:center;align-items:center}.wapk-admin .comparison li.unavailable{color:#ced2d6}.wapk-admin .comparison li span.dashicons{position:absolute;top:1px;left:6px;width:18px;height:18px;border-radius:100%;background:#00d4d4;color:#fff;line-height:22px;font-size:14px;text-align:center}.wapk-admin .comparison li.unavailable{color:#ced2d6}.wapk-admin .comparison li.unavailable span.dashicons{background:#ced2d6}.wapk-admin .comparison li span.dashicons-no{font-size:12px}.wapk-admin .comparison li span.dashicons-no:before{left:0}.wapk-admin .comparison li span.dashicons:before{position:relative;left:-.5px;top:-2px}.wapk-admin .comparison li img{width:18px;margin-right:12px}.wapk-pricing__table{width:100%;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-line-pack:start;align-content:flex-start;-ms-flex-pack:center;justify-content:center}.wapk-pricing__table__item{position:relative;-ms-flex:0 0 23%;flex:0 0 23%}.wapk-price__table__wrapper{position:relative;padding:10px}.wapk-price__table{text-align:center;display:block;width:100%;padding:10px;background-color:#fff;border-radius:8px 8px 8px 8px;box-shadow:0 0 25px 0 rgba(0,0,0,.1);overflow:hidden;transition:background .3s,border .3s,border-radius .3s,box-shadow .3s}.wapk-price__table__header{background-color:#fff;padding:40px 0 0}.wapk-price__table__heading{color:#6d7882;font-size:17px;font-weight:500;text-transform:uppercase;letter-spacing:10px;font-family:sans-serif;margin:0;padding:0;line-height:1.2}.wapk-price__table__price{font-family:sans-serif;font-weight:600;padding:30px 0 10px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:row;flex-direction:row;color:#434363;font-size:45px}.wapk-price__table__currency{-ms-flex-item-align:start;align-self:flex-start;color:#434363;line-height:1;font-size:.3em;margin-right:3px}.wapk-price__table__amount .free,.wapk-price__table__amount .integer-part{color:#434363;line-height:.8}.wapk-price__table__amount .decimal-part{font-size:14px;font-weight:400}.wapk-price__table__amount .period{font-size:14px;font-weight:400}.wapk-price__table__amount___legend{width:100%;color:#ff4b4b;font-size:18px;font-weight:500;line-height:2.5em}.wapk-price__table__features{list-style-type:none;margin:0;padding:0;line-height:1;color:#697279;text-align:left}.wapk-price__table__features li.item{list-style-type:none;margin:0;padding:0;font-size:13px;line-height:1.5em}.wapk-price__table__features li:not(:first-child):before{content:"";display:block;margin:10px 12.5%}.wapk-price__table__feature{display:block;margin-left:calc(((100% - 80%)/ 2) + 20px);margin-right:calc((100% - 80%)/ 2)}span.wapk-price__table__feature span.dashicons{margin-left:-20px;top:2px;position:relative}.wapk-price__table__footer{padding:40px 0}.wapk-price__table__footer a{font-size:14px;text-transform:uppercase;letter-spacing:3px;border-radius:100px 100px 100px 100px;padding:16px 42px;transition:all 250ms}.wapk-price__table__footer a:active,.wapk-price__table__footer a:focus,.wapk-price__table__footer a:hover{-webkit-transform:scale(1.02)!important;transform:scale(1.02)!important}.wapk-price__table__ribbon{pointer-events:none;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:absolute;top:10px;left:auto;right:10px;-webkit-transform:rotate(90deg);transform:rotate(90deg);width:150px;overflow:hidden;height:150px}.wapk-price__table__ribbon__inner{background:#ff4b4b;font-family:sans-serif;font-weight:500;color:#fff;font-size:11px;letter-spacing:1.1px;box-shadow:0 0 30px 0 rgba(0,0,0,.21);text-align:center;left:0;width:200%;-webkit-transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);transform:translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);margin-top:35px;line-height:2;text-transform:uppercase}.wapk-admin .wapk-payment{display:-ms-flexbox;display:flex;background:#fff;-ms-flex-pack:justify;justify-content:space-between;padding:85px 65px 85px;-ms-flex-align:center;align-items:center}.wapk-payment .payment-guarantee{display:-ms-flexbox;display:flex;-ms-flex:0 0 63%;flex:0 0 63%;-ms-flex-line-pack:center;align-content:center;-ms-flex-align:center;align-items:center;position:relative}.wapk-payment .payment-guarantee:after{content:"";position:absolute;right:-18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:5px;height:38px;border-radius:3px;background:#00d4d4}.wapk-payment .payment-guarantee .guarantee-seal img{max-width:100%;width:280px}.wapk-payment .payment-guarantee .guarantee-detail{padding-left:25px}.wapk-payment .payment-guarantee .guarantee-detail h2{font-size:24px;line-height:1.5em;font-weight:400;margin:0}.wapk-payment .payment-guarantee .guarantee-detail p{font-size:15px;line-height:1.5em;font-weight:300;margin:5px 0 20px}.wapk-payment .payment-guarantee .guarantee-detail a{color:#00d4d4;font-size:15px;line-height:1.5em;text-decoration:none}.wapk-payment .payment-guarantee .guarantee-detail a img,.wapk-payment .payment-guarantee .guarantee-detail a span.dashicons{width:18px;margin-right:4px;margin-top:1px}.wapk-payment .payment-options{-ms-flex-positive:.5;flex-grow:.5}.wapk-payment .payment-options h3{font-size:15px;font-weight:300;margin:0 0 17px}.wapk-payment .payment-options .options h4{color:#ced2d6}.wapk-payment .payment-options .options li{float:left;overflow:hidden}.wapk-payment .payment-options .options li img{height:20px;margin-right:5px}.wapk-admin .wapk-testimonial-wrapper:before{content:'';position:absolute;left:79px;top:-15px;width:80px;height:56px;border-radius:3px;background:transparent url(../images/block-quote.svg) no-repeat;background-size:cover}.wapk-admin .wapk-testimonial-wrapper{position:relative;display:block;width:80%;margin:0 auto;padding:0;text-align:center}.testimonial-item__user .avatar{width:100px;height:100px;margin:0 auto;border-radius:100%;border:3px solid #efefef;overflow:hidden}.testimonial-item{margin-bottom:25px}.testimonial-item__user .avatar img{max-width:100%;width:100%;margin:0 auto;padding:0;display:block}.testimonial-item__comment{position:relative;display:block;width:70%;margin:0 auto 30px}.testimonial-item__user h4.author-name{font-size:25px;font-weight:300;margin:10px auto}.testimonial-item__user span.author-meta{font-size:16px;font-weight:300}@media screen and (min-width:1281px){.wapk-admin .wapk-payment{padding-left:15%;padding-right:15%}.wapk-admin .feed-pro-comparison{padding-left:21.2%;padding-right:21.2%}.wapk-admin .wapk-testimonial-wrapper{width:55%}}@media screen and (max-width:782px){.wapk-admin .wapk-feed-features{display:block}.wapk-feed-feature__item{-ms-flex:0 0 80%;flex:0 0 80%;width:80%}.wapk-feed-feature__item:nth-child(2n+1){margin-right:initial}.wapk-feed-feature__item:nth-child(2n+2){margin-left:initial}}.wapk-admin .feed-pro-comparison,.wapk-admin .wapk-feed-banner,.wapk-admin .wapk-payment,.wapk-admin .wapk-testimonial,.wapk-feed-docs .wapk-feed-cta,.wapk-feed-pro-upgrade .wapk-feed-cta{margin:0}.wapk-feed-banner .wapk-banner{margin:0;padding:0}
admin/css/woo-feed-admin-pro.scss CHANGED
@@ -163,75 +163,283 @@ table.wf-info-table th a.support {
163
  letter-spacing: 0.5px;
164
  }
165
 
166
- .wapk-admin .feed-features,
167
- .wapk-admin .wapk-testimonial,
168
- .wapk-admin .feed-pricing {
169
- text-align: center;
170
- padding: 75px 30px 85px;
171
- background-color: #f7f8f9;
172
- }
173
-
174
- .wapk-admin .feed-features .feed-feature__list {
175
  display: flex;
176
  flex-wrap: wrap;
177
  align-items: flex-start;
178
  justify-content: center;
179
  }
180
 
181
- .wapk-admin .feed-features .feed-features__more {
182
  margin-top: 25px;
183
  }
184
 
185
- .feed-feature__item {
186
- flex: 0 0 28.9%;
187
- margin: 0 2.2% 4.4% 2.2%;
188
  text-align: center;
189
  border-radius: 5px;
190
  background-color: #ffffff;
191
- transition: all 100ms linear;
192
  overflow: hidden;
193
- }
 
 
 
 
 
 
 
 
 
 
 
 
194
 
195
- .feed-feature__item:hover {
196
- box-shadow: 5px 4px 32px -16px rgba(0, 0, 0, 0.63);
 
197
  }
198
 
199
- .feed-feature__thumb {
200
  overflow: hidden;
201
  }
202
-
203
- .feed-feature__item .feed-feature__thumb img {
204
- border-radius: 5px 5px 0 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  max-width: 100%;
206
  width: 100%;
 
207
  -webkit-transition: all 100ms linear;
208
  -moz-transition: all 100ms linear;
209
  -ms-transition: all 100ms linear;
210
  -o-transition: all 100ms linear;
211
  transition: all 100ms linear;
212
  }
213
-
214
- .feed-feature__item:hover .feed-feature__thumb img {
215
- transform: scale(1.05);
 
 
 
 
 
 
 
 
 
216
  }
217
 
218
- .feed-feature__item .feed-feature__description {
219
- padding: 20px 15px 25px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
 
222
- .feed-feature__item .feed-feature__description h3 {
223
- font-size: 15px;
224
- line-height: 1.5em;
225
- font-weight: 300;
226
- margin: 0;
 
 
 
 
 
 
 
 
 
227
  }
228
 
229
- .wapk-admin .feed-pro-comparison {
230
- background-color: #f1f1f1;
231
- padding: 75px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  }
233
 
234
- .wapk-admin .feed-features .section-title h2,
235
  .wapk-admin .wapk-testimonial .section-title h2,
236
  .wapk-admin .feed-pro-comparison .section-title h2,
237
  .wapk-admin .feed-pricing .section-title h2 {
@@ -706,9 +914,9 @@ span.wapk-price__table__feature span.dashicons {
706
 
707
  @media screen and (min-width: 1281px) {
708
  .wapk-admin .wapk-banner,
709
- .wapk-admin .feed-features {
710
- padding-left: 20%;
711
- padding-right: 20%;
712
  }
713
 
714
  .wapk-admin .wapk-payment {
@@ -726,11 +934,29 @@ span.wapk-price__table__feature span.dashicons {
726
  }
727
  }
728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
  .wapk-feed-pro-upgrade .wapk-feed-cta,
730
  .wapk-feed-docs .wapk-feed-cta,
731
  .wapk-admin .feed-pro-comparison,
732
  .wapk-admin .wapk-payment,
733
- .wapk-admin .feed-features,
734
  .wapk-admin .wapk-testimonial,
735
  .wapk-admin .wapk-feed-banner {
736
  margin: 0;
163
  letter-spacing: 0.5px;
164
  }
165
 
166
+ .wapk-admin .wapk-feed-features .wapk-feed-feature__list {
 
 
 
 
 
 
 
 
167
  display: flex;
168
  flex-wrap: wrap;
169
  align-items: flex-start;
170
  justify-content: center;
171
  }
172
 
173
+ .wapk-admin .wapk-feed-features .wapk-feed-features__more {
174
  margin-top: 25px;
175
  }
176
 
177
+ .wapk-feed-feature__item {
178
+ flex: 0 0 47%;
179
+ //margin: 0 2.2% 4.4% 2.2%;
180
  text-align: center;
181
  border-radius: 5px;
182
  background-color: #ffffff;
 
183
  overflow: hidden;
184
+ margin-bottom: 40px;
185
+ padding: 40px;
186
+ box-shadow: 0 0 5px rgba(115, 115, 166, 0.15);
187
+ position: relative;
188
+ transition: all 0.3s ease-in-out;
189
+
190
+ &:nth-child(2n+1) {
191
+ margin-right: 20px;
192
+ }
193
+
194
+ &:nth-child(2n+2) {
195
+ margin-left: 20px;
196
+ }
197
 
198
+ &:hover {
199
+ box-shadow: 0px 10px 10px rgba(17, 17, 85, 0.15);
200
+ }
201
  }
202
 
203
+ .wapk-feed-feature__thumb {
204
  overflow: hidden;
205
  }
206
+ .wapk-feed-feature__links {
207
+ a {
208
+ display: inline-block;
209
+ background: linear-gradient(67.36deg, #3D41DA 3.09%, #0088F7 64.97%);;
210
+ font-weight: 600;
211
+ padding: 12px 32px 12px 48px;
212
+ border-radius: 5px;
213
+ margin-top: 24px;
214
+ color: white;
215
+ text-decoration: none;
216
+ position: relative;
217
+
218
+ &:before {
219
+ content: "";
220
+ position: absolute;
221
+ width: 16px;
222
+ height: 16px;
223
+ background-size: 16px;
224
+ margin-left: -20px;
225
+ background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M12%208.66667V12.6667C12%2013.0203%2011.8595%2013.3594%2011.6095%2013.6095C11.3594%2013.8595%2011.0203%2014%2010.6667%2014H3.33333C2.97971%2014%202.64057%2013.8595%202.39052%2013.6095C2.14048%2013.3594%202%2013.0203%202%2012.6667V5.33333C2%204.97971%202.14048%204.64057%202.39052%204.39052C2.64057%204.14048%202.97971%204%203.33333%204H7.33333%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M10%202H14V6%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M6.66699%209.33333L14.0003%202%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
226
+ }
227
+ }
228
+ }
229
+ .wapk-feed-feature__item {
230
+ &:hover {
231
+ .wapk-feed-feature__links {
232
+ a {
233
+ opacity: 1;
234
+ }
235
+ }
236
+ }
237
+ }
238
+ .wapk-feed-feature__item .wapk-feed-feature__thumb img {
239
  max-width: 100%;
240
  width: 100%;
241
+ height: auto;
242
  -webkit-transition: all 100ms linear;
243
  -moz-transition: all 100ms linear;
244
  -ms-transition: all 100ms linear;
245
  -o-transition: all 100ms linear;
246
  transition: all 100ms linear;
247
  }
248
+ .wapk-feed-feature__item .wapk-feed-feature__description h3 {
249
+ font-size: 18px;
250
+ line-height: 1.5em;
251
+ font-weight: 500;
252
+ margin-top: 20px;
253
+ }
254
+ .wapk-feed-feature__item .wapk-feed-feature__description p {
255
+ margin: 20px auto 0;
256
+ }
257
+ .wapk-admin .feed-pro-comparison {
258
+ background-color: #f1f1f1;
259
+ padding: 75px;
260
  }
261
 
262
+ .wapk-admin .wapk-feed-features {
263
+ text-align: center;
264
+ max-width: 1320px;
265
+ margin: 40px auto 0;
266
+ }
267
+ .wapk-feed-buy-now {
268
+ margin-bottom: 40px;
269
+ }
270
+ .wapk-feed-buy-now-container {
271
+ background: #ffffff;
272
+ padding: 0.75rem;
273
+ z-index: 999999999;
274
+ left: 160px;
275
+ right: 0;
276
+ bottom: -100%;
277
+
278
+ &.fixed {
279
+ bottom: 0;
280
+ position: fixed;
281
+ }
282
+ }
283
+ .wapk-feed-buy-now-wrapper {
284
+ max-width: 1320px;
285
+ margin: 0 auto;
286
+ display: flex;
287
+ align-items: center;
288
+ justify-content: center;
289
+ }
290
+ .wapk-feed-buy-now-thumbnail {
291
+ float: left;
292
+ img {
293
+ width: 3.75rem;
294
+ height: auto;
295
+ padding: 0.1875rem;
296
+ }
297
+ }
298
+ .wapk-feed-buy-now-product-container {
299
+ display: flex;
300
+ align-items: center;
301
+ }
302
+ .wapk-feed-buy-now-product-meta {
303
+ float: right;
304
+ }
305
+ .wapk-feed-buy-now-product-description {
306
+ max-width: 460px;
307
+ line-height: 1.5;
308
  }
309
+ .wapk-feed-buy-now-details {
310
+ float: left;
311
+ margin-top: 9px;
312
+ }
313
+ .wapk-feed-buy-now-title {
314
+ float: left;
315
+ margin-left: 1.5rem;
316
+ max-width: 180px;
317
+ line-height: 1.15;
318
+ }
319
+ .wapk-feed-buy-now-product-name {
320
+ font-size: 16px;
321
+ font-weight: 700;
322
+ }
323
+ .wapk-feed-buy-now-product-description {
324
+ float: right;
325
+ font-size: 1rem;
326
+ margin-left: 1.5rem;
327
+ }
328
+ .wapk-feed-buy-now-price {
329
+ position: relative;
330
+ font-weight: 400;
331
+ line-height: 1.5;
332
+ margin-top: 6px;
333
+ }
334
+ .wapk-feed-buy-now-product-meta{
335
+ margin: 0 0 0 42px;
336
+ div {
337
+ display: inline-block;
338
+ margin-left: 20px;
339
+ }
340
+ }
341
+ .wapk-feed-buy-now-btn {
342
+ @extend .wapk-feed-feature__links;
343
+ a {
344
+ margin-top: 0;
345
 
346
+ &:before {
347
+ background: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url%28%23clip0%29%22%3E%0A%3Cpath%20d%3D%22M5.99967%2014.6668C6.36786%2014.6668%206.66634%2014.3684%206.66634%2014.0002C6.66634%2013.632%206.36786%2013.3335%205.99967%2013.3335C5.63148%2013.3335%205.33301%2013.632%205.33301%2014.0002C5.33301%2014.3684%205.63148%2014.6668%205.99967%2014.6668Z%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M13.3337%2014.6668C13.7018%2014.6668%2014.0003%2014.3684%2014.0003%2014.0002C14.0003%2013.632%2013.7018%2013.3335%2013.3337%2013.3335C12.9655%2013.3335%2012.667%2013.632%2012.667%2014.0002C12.667%2014.3684%2012.9655%2014.6668%2013.3337%2014.6668Z%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M0.666992%200.666504H3.33366L5.12033%209.59317C5.18129%209.9001%205.34826%2010.1758%205.59202%2010.372C5.83578%2010.5683%206.14079%2010.6725%206.45366%2010.6665H12.9337C13.2465%2010.6725%2013.5515%2010.5683%2013.7953%2010.372C14.0391%2010.1758%2014.206%209.9001%2014.267%209.59317L15.3337%203.99984H4.00033%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
348
+ }
349
+ }
350
+ }
351
+ .folded.sticky-menu {
352
+ .wapk-feed-buy-now-container {
353
+ left: 36px;
354
+ }
355
+ @media ( max-width: 780px) {
356
+ .wapk-feed-buy-now-container {
357
+ left: 0;
358
+ }
359
+ }
360
  }
361
 
362
+ @media ( max-width: 780px) {
363
+ .wapk-feed-buy-now-container {
364
+ left: 0;
365
+ }
366
+ }
367
+ @media ( min-width: 781px ) and ( max-width: 960px) {
368
+ .wapk-feed-buy-now-container {
369
+ left: 36px;
370
+ }
371
+ }
372
+ // Medium Device
373
+ @media (max-width: 1120px) {
374
+ .wapk-feed-buy-now-product-container {
375
+ float: none;
376
+ margin: 0 auto;
377
+ }
378
+ .wapk-feed-buy-now-product-meta {
379
+ float: none;
380
+ clear: both;
381
+ margin: 10px auto 0;
382
+ text-align: center;
383
+ display: block;
384
+ }
385
+ .wapk-feed-buy-now-wrapper {
386
+ max-width: 1035px;
387
+ margin: 0 auto;
388
+ display: block;
389
+ }
390
+ .wapk-feed-buy-now-thumbnail {
391
+ float: none;
392
+ margin: 0 auto;
393
+ }
394
+ .wapk-feed-buy-now-product-container {
395
+ float: none;
396
+ display: block;
397
+ text-align: center;
398
+ }
399
+ .wapk-feed-buy-now-product-meta {
400
+ float: none;
401
+ margin-top: 1.5rem;
402
+ }
403
+ .wapk-feed-buy-now-product-description {
404
+ max-width: 500px;
405
+ line-height: 1.5;
406
+ margin: 0 auto;
407
+ }
408
+ .wapk-feed-buy-now-details {
409
+ float: none;
410
+ margin-top: 10px;
411
+ text-align: center;
412
+ }
413
+ .wapk-feed-buy-now-title {
414
+ float: none;
415
+ clear: both;
416
+ max-width: 100%;
417
+ margin: 1rem 0;
418
+ }
419
+ .wapk-feed-buy-now-product-description {
420
+ float: none;
421
+ margin-top: 10px;
422
+ }
423
+ }
424
+ // Small Device
425
+ @media (max-width: 449px) {
426
+ .wapk-feed-buy-now-product-meta{
427
+ div {
428
+ display: flex;
429
+ margin: 20px auto 0;
430
+ justify-content: center;
431
+ }
432
+ }
433
+ .wapk-feed-buy-now-price {
434
+ &:before {
435
+ position: unset;
436
+ margin-top: -6px;
437
+ margin-right: 6px;
438
+ }
439
+ }
440
  }
441
 
442
+ .wapk-admin .wapk-feed-features .section-title h2,
443
  .wapk-admin .wapk-testimonial .section-title h2,
444
  .wapk-admin .feed-pro-comparison .section-title h2,
445
  .wapk-admin .feed-pricing .section-title h2 {
914
 
915
  @media screen and (min-width: 1281px) {
916
  .wapk-admin .wapk-banner,
917
+ .wapk-admin .wapk-feed-features {
918
+ //padding-left: 20%;
919
+ //padding-right: 20%;
920
  }
921
 
922
  .wapk-admin .wapk-payment {
934
  }
935
  }
936
 
937
+ @media screen and (max-width: 782px) {
938
+ .wapk-admin .wapk-feed-features {
939
+ display: block;
940
+ }
941
+ .wapk-feed-feature__item {
942
+ flex: 0 0 80%;
943
+ width: 80%;
944
+ //margin: 40px auto 0;
945
+
946
+ &:nth-child(2n+1) {
947
+ margin-right: initial;
948
+ }
949
+
950
+ &:nth-child(2n+2) {
951
+ margin-left: initial;
952
+ }
953
+ }
954
+ }
955
+
956
  .wapk-feed-pro-upgrade .wapk-feed-cta,
957
  .wapk-feed-docs .wapk-feed-cta,
958
  .wapk-admin .feed-pro-comparison,
959
  .wapk-admin .wapk-payment,
 
960
  .wapk-admin .wapk-testimonial,
961
  .wapk-admin .wapk-feed-banner {
962
  margin: 0;
admin/css/woo-feed-admin.css CHANGED
@@ -1461,6 +1461,16 @@ input[type="submit"][data-id="wf_action_submit"] {
1461
  .woo-feed-status-table-wrapper .woo-feed-status-table tr th {
1462
  background: #353b48;
1463
  color: #fff; }
 
 
 
 
 
 
 
 
 
 
1464
  .woo-feed-status-table-wrapper .woo-feed-status-table tr th, .woo-feed-status-table-wrapper .woo-feed-status-table tr td {
1465
  padding: 0.5rem 20px;
1466
  text-align: left; }
1461
  .woo-feed-status-table-wrapper .woo-feed-status-table tr th {
1462
  background: #353b48;
1463
  color: #fff; }
1464
+ .woo-feed-status-table-wrapper .woo-feed-status-table tr th.woo-feed-status-message-header {
1465
+ display: -ms-flexbox;
1466
+ display: flex;
1467
+ -ms-flex-pack: justify;
1468
+ justify-content: space-between;
1469
+ -ms-flex-align: center;
1470
+ align-items: center; }
1471
+ .woo-feed-status-table-wrapper .woo-feed-status-table tr th.woo-feed-status-message-header #woo-feed-copy-status-btn {
1472
+ background: linear-gradient(125deg, #3cb0fd 0, #6c5ce7 140%);
1473
+ border: none; }
1474
  .woo-feed-status-table-wrapper .woo-feed-status-table tr th, .woo-feed-status-table-wrapper .woo-feed-status-table tr td {
1475
  padding: 0.5rem 20px;
1476
  text-align: left; }
admin/css/woo-feed-admin.min.css CHANGED
@@ -1 +1 @@
1
- .wpf_spin{-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear}.wpf_spin.reverse_spin{animation-direction:reverse}.wpf_regenerate.disabled{color:#737373;box-shadow:none;cursor:not-allowed}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.wfbtn{background:#3498db;background-image:linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);border-radius:17px;box-shadow:inset 0 1px 3px #666;font-family:Arial,sans-serif;color:#fff;font-size:20px;padding:10px 20px 10px 20px;border:solid #2b698f 0;text-decoration:none}.wfbtn:hover{background:#3cb0fd;background-image:linear-gradient(to bottom,#3cb0fd,#3498db);text-decoration:none}.woo_feed_manage_list_table .wf_update_interval_btn{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);border:none}.woo_feed_manage_list_table .wf_update_interval_btn:hover{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%)}.woo-feed-promotion{position:relative;display:none}.woo-feed-promotion .woo-feed-campaign-close-button{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:15px;width:24px;height:24px;border-radius:12px;background:#595d6b;line-height:24px;color:#fff;cursor:pointer;transition:.3s ease}.woo-feed-promotion .woo-feed-campaign-close-button:hover{background:#fff;color:#d61e48}.wftooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px}.feed-actions .makeFeedResponse{width:70%;color:green}.woo-feed-mapping-input{width:100%}.requiredIn{color:red}.generalInput{width:200px}.generalInput:not(.selectize-control){margin:5px auto}.error{color:red}.widefat td input,.widefat td select{max-width:100%}#wf_newRow{margin-left:0}.mtable tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable th:nth-child(1){width:17px}.mtable th:nth-child(2){width:160px}.mtable th:nth-child(3){width:100px}.mtable th:nth-child(4){width:100px}.mtable th:nth-child(5){width:150px}.mtable th:nth-child(6){width:100px}.mtable th:nth-child(7){width:150px}.mtable th:nth-child(8){width:90px}.mtable th:nth-child(9){width:29px}.mtable2 tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable2 th:nth-child(1){width:30px}.mtable2 th:nth-child(2){width:150px}.mtable2 th:nth-child(3){width:230px}.mtable2 th:nth-child(4){width:220px}.mtable2 th:nth-child(7){width:50px}.mtable2 th:nth-child(8){width:50px}.mtable2 th:nth-child(9){width:29px}.wp-admin select.wf_mattributes{width:150px;left:0;height:25px}div#wf-tab-content1 select:not([name^=output_type]){width:100%}div#wf-tab-content1 input{width:100%}div#wf-tab-content1 .dashicons{vertical-align:middle}.wf_attributes{width:150px;left:0}.wf_compare{max-width:245px;left:0}.wf_ps{width:100px;left:0}.wf_sortedtable{cursor:move}.sorted_table{position:relative}.sorted_table .dragged{position:absolute;opacity:.8;z-index:9999;background:#fff;width:100%;display:table}.sorted_table tbody tr.placeholder td{border:1px dashed #2cc185;height:46px}.wfnoempty{width:120px}.wf_tabs{position:relative;margin:0 auto;width:100%;list-style:none}.wf_tabs:after{display:table;clear:both;content:""}.wf_tabs li{float:left;width:20%;display:block;border:2px solid #ccc}.wf_tabs li>input[type=radio][name=wf_tabs]{position:absolute;top:auto;left:-9999px}.wf-tab-name{display:block;padding:15px;font-size:15px;font-weight:700;line-height:1;background:#fff;cursor:pointer;position:relative;text-align:center;text-transform:uppercase;color:#2cc185}.wf-tab-name:hover{background:#2cc185;color:#fff}.wf_tabs [id^=tab]:checked+label{background:#2cc185;color:#fff}.wf_tabs .wf-tab-content{z-index:2;display:none;width:100%;font-size:.9rem;position:absolute;left:0;background:#fff;border:2px solid #ccc}.wf_tabs [id^=tab]:checked~[id^=wf-tab-content]{display:block}[id^=wf-tab-content]{margin-bottom:40px}div#wf-tab-content2 table:first-child{padding:10px 0}div#wf-tab-content2 table:first-child td:nth-child(1){width:260px}div#wf-tab-content2 table:first-child td:nth-child(2){width:260px}table.feed-actions tr td:last-child{text-align:right}select.selectize{display:none}body.no-js select.selectize{display:block!important}.wp-list-table .option_name .wf_feed_option_name_link{font-weight:700;color:#30336b}.wp-list-table #option_name a{color:#32373c}.selectize-dropdown .active{background-color:#edf9ff}.selectize-dropdown .create{padding:5px 8px}.wapk-selectize-item{background:#0073aa!important;color:#f1f1f1!important;font-weight:700!important;border-color:#0073aa!important;padding-left:5px;padding-right:5px}.selectize-input.full #googleTaxonomyId-selectized{opacity:0;position:absolute;left:-10000px}.selectize-dropdown [data-selectable].option{cursor:default}.selectize-control.plugin-remove_button [data-value] .remove{border-left:1px solid #f1f1f1!important}.selectize-dropdown .optgroup-header{font-weight:700;background:#efefef;color:#5a5a5a}.selectize-dropdown [data-selectable].option{cursor:pointer}.wf_status_wrap label{width:55px;height:28px;box-sizing:border-box;float:left;border-radius:100px;position:relative;cursor:pointer;transition:.3s ease;background:linear-gradient(125deg,#e2e2e2 0,#ccc 140%)}input[class=woo_feed_status_input]:checked+label{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%)}input[class=woo_feed_status_input]:checked+label:before{left:29px}.wf_status_wrap label:before{transition:.3s ease;content:'';width:20px;height:20px;position:absolute;background:#fff;left:6px;top:4px;box-sizing:border-box;color:#000;border-radius:100px;box-shadow:0 1.5px 2px 0 #000}.view span.dashicons.dashicons-external{color:#22a6b3}.view span.dashicons.dashicons-sos{color:#22a6b3}.view span.dashicons.dashicons-download{color:#ee5253}.view span.dashicons.dashicons-media-code{color:#576574}.column-url,.widefat td.column-url,.widefat th.column-url{color:#1e8f9a;font-weight:700}.feed-progress-container{width:100%;color:#fff;text-align:center;font-weight:300}.feed-progress-bar{width:100%;background:#eee;padding:3px;border-radius:50px;box-shadow:inset 0 1px 3px rgba(0,0,0,.2)}.feed-progress-bar-fill{height:20px;display:block;background:linear-gradient(to right top,#10ac84,#13b389,#15ba8f,#18c194,#1ac89a,#13cba1,#0acfa9,#00d2b0,#00d2ba,#00d2c3,#00d2cb,#00d2d3);width:0;border-radius:50px;transition:width .8s ease}.feed-progress-status{float:left;font-weight:700;color:#00008b}.feed-progress-percentage{text-align:right;font-weight:bolder;color:#1dd1a1;font-family:'Arial Black',sans-serif;font-size:large}#wpbody-content.woofeed-body-content{overflow:visible!important}.clippy{position:relative;width:13px;margin-top:-3px;margin-left:3px;top:3px}.column-url .clippy{display:none}.column-url:hover .clippy{display:inline-block}.tooltipped{position:relative}.tooltipped:after{position:absolute;z-index:1000000;display:none;padding:5px 8px;font:normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:rgba(0,0,0,.8);border-radius:3px;-webkit-font-smoothing:subpixel-antialiased}.tooltipped:before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:rgba(0,0,0,.8);pointer-events:none;content:"";border:5px solid transparent}.tooltipped:hover:before{display:inline-block;text-decoration:none}.tooltipped:hover:after{display:inline-block;text-decoration:none}.tooltipped:active:before{display:inline-block;text-decoration:none}.tooltipped:active:after{display:inline-block;text-decoration:none}.tooltipped:focus:before{display:inline-block;text-decoration:none}.tooltipped:focus:after{display:inline-block;text-decoration:none}.tooltipped-multiline:hover:after{display:table-cell}.tooltipped-multiline:active:after{display:table-cell}.tooltipped-multiline:focus:after{display:table-cell}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate}.tooltipped-s:after{top:100%;right:50%;margin-top:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-s:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-se:after{top:100%;margin-top:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-se:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-sw:after{top:100%;right:50%;margin-top:5px;margin-right:-15px}.tooltipped-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-n:after{right:50%;bottom:100%;margin-bottom:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-n:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-ne:after{bottom:100%;margin-bottom:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-ne:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:5px;margin-right:-15px}.tooltipped-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.tooltipped-multiline.tooltipped-s:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-w:after{right:100%}.tooltipped-multiline.tooltipped-e:after{right:100%}.tooltipped-sticky:before{display:inline-block}.tooltipped-sticky:after{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.fullscreen-overlay-enabled.dark-theme .tooltipped:after{color:#000;background:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before{border-right-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before{border-left-color:rgba(255,255,255,.8)}@media screen and (min-width:0\0){.tooltipped-multiline:after{width:250px}}ul.tracker_collection_list{list-style:initial;padding:initial;margin:-10px 0 0 30px;font-size:11px!important}ul.tracker_collection_list li{margin:0}table.wf-info-table,table.wf-rate-table{vertical-align:middle;text-align:center;max-width:100%;font-weight:500}table.wf-info-table th,table.wf-rate-table th{text-align:center}table.wf-info-table th .woo-feed-top-header,table.wf-rate-table th .woo-feed-top-header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .get-woo-feed-pro,table.wf-rate-table th .woo-feed-top-header .get-woo-feed-pro{margin-left:20px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons{float:right;display:-ms-flexbox;display:flex;border-radius:7px;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a{padding:8px 20px;background:#576574;color:#fff;box-sizing:border-box;display:inline-block;transition:.3s ease}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link{background:#576574;border-top-left-radius:5px;border-bottom-left-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link{background:#ee5253}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link{background:#22a6b3;border-top-right-radius:5px;border-bottom-right-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons{font-size:18px;line-height:1.2}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a:hover,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a:hover{background:#30336b;box-shadow:0 0 33px 0 rgba(0,0,0,.12)}table.wf-info-table strong,table.wf-rate-table strong{font-weight:700}table.wf-info-table th:first-child img{margin:0 0 -5px 5px}table.wf-rate-table a{color:#0073aa}table.wf-rate-table a.review-star:after{content:"\f155\f155\f155\f155\f155"!important;font-family:dashicons;font-size:10px;font-weight:100;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#0073aa;text-decoration:underline}#adminmenu #toplevel_page_webappick-manage-feeds div.wp-menu-image::before{content:"";background:url(../images/woo-feed-icon.svg) no-repeat center center;background-size:20px 20px;opacity:.6}#adminmenu #toplevel_page_webappick-manage-feeds:hover div.wp-menu-image::before{opacity:1}#adminmenu #toplevel_page_webappick-manage-feeds.wp-has-current-submenu div.wp-menu-image::before{opacity:1}.wapk-admin,.wapk-admin *{box-sizing:border-box}.wapk-admin{position:relative;display:block;-webkit-hyphens:manual;-ms-hyphens:manual;-moz-hyphens:manual;hyphens:manual;color:#1b2730;margin:0 0 0 -10px}@media screen and (min-width:783px){.wapk-admin{margin:0 0 0 -20px}}.text-center{text-align:center}.wapk-admin h1,.wapk-admin h2,.wapk-admin h3,.wapk-admin h4,.wapk-admin h5,.wapk-admin h6,.wapk-admin p{color:#1b2730}.wapk-admin sup{vertical-align:baseline;position:relative;top:-6px}.wapk-admin sub{vertical-align:baseline;position:relative;top:4px}.wapk-admin .wapk-section{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin .wapk-section [class$=icon32]+h2{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section h1{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin>.notice{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin span.help{display:block;float:left;width:100%;font-size:.9em;color:#636363;margin-top:5px;font-weight:500}.wapk-admin span.help .dashicons{width:11px;height:12px;font-size:inherit;vertical-align:middle}.clear:after{content:"";display:table;clear:both}.wapk-feed-docs .postbox{width:355px;margin-right:20px;display:inline-block;vertical-align:top}.wapk-feed-docs .postbox .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4;cursor:pointer}.wapk-feed-docs .postbox .dashicons{color:#ccc}.wapk-feed-docs .postbox a{text-decoration:none}.wapk-feed-docs .postbox .inside{margin-bottom:0}.wapk-feed-docs .postbox ul{margin-bottom:0}.wapk-feed-docs .postbox .toggle-indicator:before{content:"\F142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.wapk-feed-docs .postbox li{width:100%;display:block;float:left}.wapk-feed-docs .postbox li span{display:inline-block;float:left;margin-right:4px}.wapk-feed-docs .postbox li a{display:inline-block;float:left;width:calc(100% - 24px)}.wapk-feed-docs .postbox.closed .toggle-indicator:before{content:"\F140"}.wapk-section #post-body.columns-2 #side-sortables{min-height:196px}#poststuff #feed_merchant_info .inside{margin:0;padding:0}#feed_merchant_info ul.data{margin-left:24px;margin-top:5px}#feed_merchant_info ul.data li{margin-bottom:5px}.merchant-info-section{padding:6px 10px 8px}.merchant-info-section.woo-feed-open-file{text-align:center}.merchant-info-section.woo-feed-open-file a{line-height:1.5;text-decoration:none}.generateFeed .wf-tab-content table:first-child{border:none;box-shadow:none}.generateFeed table th{font-weight:700}@media only screen and (max-width:850px){.wapk-feed-docs .postbox{display:block;width:auto;float:none;margin-right:auto}}.wp-submenu li span.woo-feed-docs{font-weight:700;color:#f18500}.wp-submenu li:hover span.woo-feed-docs{color:#ce7304}.wp-submenu li.current span.woo-feed-docs{color:#ce7304}.wapk-admin .wapk-feed-docs .postbox .hndle{cursor:default}.wapk-cta{position:relative;display:-ms-flexbox;display:flex;width:100%;padding:100px 15px;background:linear-gradient(45deg,#6cd5ff 33%,#c2efef 100%);-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.wapk-cta-icon .dashicons{font-size:100px;width:100px;height:auto;margin:0 10px -8px 0;color:#02658c}.wapk-cta-content{width:50%}.wapk-cta-content h2{font-size:2em;margin:.5em 0}.wapk-cta-action a.wapk-button{font-size:24px;height:auto!important;padding:10px 20px}@media (max-width:600px){.wapk-cta{display:block;text-align:center;padding:4em 0}.wapk-cta-content{width:100%;margin:2em 0}}.wapk-button{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button>.dashicons{color:#00d4d4}.wapk-button:hover{border-color:#0bb;color:#0bb}.wapk-button:hover>svg{fill:#0bb}.wapk-button:hover>.dashicons{color:#0bb}.wapk-button:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button:focus>svg{fill:#0bb}.wapk-button:focus>.dashicons{color:#0bb}.wapk-button:active{background:#0bb;border-color:#0bb}.wapk-button-secondary{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button-secondary>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button-secondary>.dashicons{color:#00d4d4}.wapk-button-secondary:hover{border-color:#0bb;color:#0bb}.wapk-button-secondary:hover>svg{fill:#0bb}.wapk-button-secondary:hover>.dashicons{color:#0bb}.wapk-button-secondary:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button-secondary:focus>svg{fill:#0bb}.wapk-button-secondary:focus>.dashicons{color:#0bb}.wapk-button-primary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;background:#00d4d4;border-color:#00d4d4;color:#fff;box-shadow:0 1px 0 #0bb;text-shadow:0 -1px 1px #0bb,1px 0 1px #0bb,0 1px 1px #0bb,-1px 0 1px #0bb}.wapk-button-primary>svg{fill:#fff}.wapk-button-primary:hover{background:#00e3e3;border-color:#00c5c5;color:#fff}.wapk-button-primary:hover>svg{fill:#fff}.wapk-button-primary:focus{background:#00e3e3;border-color:#00c5c5;color:#fff;box-shadow:0 0 0 1px #fff,0 0 0 3px #00d4d4}.wapk-button-primary:focus>svg{fill:#fff}.wapk-button-primary:active{background:#0bb;border-color:#0bb;color:#fff}.wapk-button-primary:active>svg{fill:#fff}.wapk-button-primary:disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary:disabled>svg{fill:#c7d1d1!important}.wapk-button.hover{border-color:#0bb;color:#0bb}.wapk-button.hover>svg{fill:#0bb}.wapk-button.hover>.dashicons{color:#0bb}.wapk-button.focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button.focus>svg{fill:#0bb}.wapk-button.focus>.dashicons{color:#0bb}.wapk-button.active{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus>svg{fill:#0bb}.wapk-button.active:focus>.dashicons{color:#0bb}.wapk-button.active:hover{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:hover>svg{fill:#0bb}.wapk-button.active:hover>.dashicons{color:#0bb}.wapk-button.active>svg{fill:#0bb}.wapk-button.active>.dashicons{color:#0bb}.wapk-button-primary.active{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus>svg{fill:#fff}.wapk-button-primary.active:hover{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:hover>svg{fill:#fff}.wapk-button-primary.active>svg{fill:#fff}.wapk-button-primary[disabled]{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary[disabled]>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-primary-disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.wapk-button-primary-disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-hero{box-shadow:0 2px 0 #0bb}.wapk-button-primary.wapk-button-hero:focus{box-shadow:0 2px 0 #0bb,0 1px 0 #00c5c5,0 0 2px 1px #0ee}.wapk-button-primary.wapk-button-hero:active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active:focus,.wapk-button-primary.wapk-button-hero.active:hover{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-group>.wapk-button.active{border-color:#00d4d4}.wapk-button.wapk-button-xl{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button-group.wapk-button-xl .wapk-button{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button.wapk-button-hero{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}.wapk-button-group.wapk-button-hero .wapk-button{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}@media screen and (min-width:782px){th#provider,th#status{width:80px}th#type{width:50px}th#option_name{width:100px}td.option_name.column-option_name>span:first-child{display:none}th#last_updated{width:90px}th#view{width:111px}}@media screen and (min-width:960px){th#provider,th#status{width:100px}th#type{width:80px}th#option_name{width:150px}th#last_updated{width:140px}}@media screen and (max-width:782px){table.wf-info-table{margin-top:10px}table.wf-info-table th:first-child img{margin:0 auto;display:block}.wapk-button.wapk-button-xl{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.wapk-feed-docs .wapk-feed-cta{margin:0}.campaign_configurator{background:#fff;padding:20px 0}.campaign_configurator table{margin:0 auto;width:51%;min-width:574px;border:none;box-shadow:none}.campaign_configurator th{min-width:120px}@media screen and (max-width:782px){.campaign_configurator{padding:0}.campaign_configurator table{width:auto;min-width:auto;max-width:100%}.campaign_configurator th{min-width:auto}}#wf-tab-content-config td>input:not([type=checkbox]):not([type=radio]),#wf-tab-content-config td>select,#wf-tab-content-config td>textarea{width:100%!important}.woo-feed-filters td>div:nth-child(2n):not(.clear):not(.selectize){width:120px;display:block}.woo-feed-filters td>div:not(.clear){float:left;margin-right:10px}.woo-feed-filters tr>td:first-child{width:290px;padding-left:40px}.woo-feed-filters,.woo-feed-ftp{margin:15px auto 25px}.wf_clean_cache_wrapper{display:-ms-flexbox;display:flex;margin-left:auto}@-webkit-keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.woo-feed-cache-loader{width:18px;margin-right:5px;animation:LoaderClockWise 1s linear infinite;-webkit-animation:LoaderClockWise 1s linear infinite;display:none}.woo-feed-table-heading .woo-feed-table-heading-title{float:left;margin-right:auto;display:inline-block;line-height:30px}.woo-feed-table-heading .wf_clean_cache_wrapper{float:right;font-weight:400}.wf_clean_cache_wrapper button{background:linear-gradient(125deg,#eb4d4b 0,#ff9671 130%);color:#fff;border:none;font-weight:500;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;border-radius:3px;cursor:pointer;outline:0}.wf_clean_cache_wrapper button:hover{background:#ff7979;color:#fff}input[type=submit][data-id=wf_action_submit]{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);color:#fff;border:1px;padding:0 20px}input[type=submit][data-id=wf_action_submit]:hover{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);color:#fff}.woo-import-popup-body #TB_window{width:500px!important}.woo-import-popup-body #TB_window #TB_title{border:none;background:#fff;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;height:35px!important}.woo-import-popup-body #TB_window #TB_title #TB_ajaxWindowTitle{color:#30336b;font-weight:700}.woo-import-popup-body #TB_window #TB_closeWindowButton{top:-14.5px;right:-14.5px;border:none;outline:0}.woo-import-popup-body #TB_window #TB_closeWindowButton .tb-close-icon{background:#ff5e55;color:#fff;border-radius:50%}.woo-import-popup-body #TB_window #TB_closeWindowButton:focus{outline:0;border:0}.woo-import-popup-body #TB_window #TB_ajaxContent{position:relative;width:100%!important;height:auto!important;border:none;box-sizing:border-box;overflow:hidden;background:#f7fcff;padding:30px 20px}.woo-import-popup-body #TB_window #TB_ajaxContent:before{content:'';width:115%;display:block;background:#4bcffa;position:absolute;height:130%;z-index:0;left:-36%;top:-85px;-webkit-transform:rotate(115deg);transform:rotate(115deg)}.woo-import-popup-body #TB_window #TB_ajaxContent table{border:none;position:relative;z-index:1;border-radius:3px;text-align:center;padding:20px;box-shadow:0 12px 20px -17px #000}.woo-import-popup-body #TB_window #TB_ajaxContent table input{width:60%}.woo-import-popup-body #TB_window #TB_ajaxContent table input:focus{outline:2px solid #68b8f7}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=file]{padding:3px 0;cursor:pointer}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=text]{border-radius:25px;font-size:14px;padding:1px 20px;text-align:center}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=submit]{background:#17c0eb;border-radius:25px;border:0;box-shadow:1px 4px 7px -3px #45364a;font-weight:600;transition:.3s ease}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=submit]:hover{-webkit-transform:translateY(-2px);transform:translateY(-2px)}.woo-feed-notice .woo-feed-review-notice-logo{width:90px;height:90px;float:left;margin-right:5px;background:url(../images/woo-feed-logo.svg) no-repeat}.woo-feed-status-table-wrapper .woo-feed-status-table{width:100%;max-width:900px;border-collapse:collapse;border-spacing:.5rem;box-shadow:0 0 20px rgba(0,0,0,.1)}.woo-feed-status-table-wrapper .woo-feed-status-table tr:nth-child(even){background:#f1f1f1}.woo-feed-status-table-wrapper .woo-feed-status-table tr:nth-child(odd){background:#fafafc}.woo-feed-status-table-wrapper .woo-feed-status-table tr th{background:#353b48;color:#fff}.woo-feed-status-table-wrapper .woo-feed-status-table tr td,.woo-feed-status-table-wrapper .woo-feed-status-table tr th{padding:.5rem 20px;text-align:left}input[id^=woo_feed_identifier_]{display:block;width:100%!important}#taxonomy-woo-feed-brand #newwoo-feed-brand_parent,.taxonomy-woo-feed-brand .form-field.term-parent-wrap{display:none}.wapk-admin .switch{position:relative;display:inline-block;width:60px;height:34px}.wapk-admin .switch input{opacity:0;width:0;height:0}.wapk-admin .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.wapk-admin .slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:#fff;transition:.4s}.wapk-admin input:checked+.slider{background-color:#18c194}.wapk-admin input:focus+.slider{box-shadow:0 0 1px #2196f3}.wapk-admin input:checked+.slider:before{-webkit-transform:translateX(26px);transform:translateX(26px)}.wapk-admin .slider.round{border-radius:34px}.wapk-admin .slider.round:before{border-radius:50%}
1
+ .wpf_spin{-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear}.wpf_spin.reverse_spin{animation-direction:reverse}.wpf_regenerate.disabled{color:#737373;box-shadow:none;cursor:not-allowed}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.wfbtn{background:#3498db;background-image:linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);border-radius:17px;box-shadow:inset 0 1px 3px #666;font-family:Arial,sans-serif;color:#fff;font-size:20px;padding:10px 20px 10px 20px;border:solid #2b698f 0;text-decoration:none}.wfbtn:hover{background:#3cb0fd;background-image:linear-gradient(to bottom,#3cb0fd,#3498db);text-decoration:none}.woo_feed_manage_list_table .wf_update_interval_btn{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);border:none}.woo_feed_manage_list_table .wf_update_interval_btn:hover{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%)}.woo-feed-promotion{position:relative;display:none}.woo-feed-promotion .woo-feed-campaign-close-button{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:15px;width:24px;height:24px;border-radius:12px;background:#595d6b;line-height:24px;color:#fff;cursor:pointer;transition:.3s ease}.woo-feed-promotion .woo-feed-campaign-close-button:hover{background:#fff;color:#d61e48}.wftooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px}.feed-actions .makeFeedResponse{width:70%;color:green}.woo-feed-mapping-input{width:100%}.requiredIn{color:red}.generalInput{width:200px}.generalInput:not(.selectize-control){margin:5px auto}.error{color:red}.widefat td input,.widefat td select{max-width:100%}#wf_newRow{margin-left:0}.mtable tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable th:nth-child(1){width:17px}.mtable th:nth-child(2){width:160px}.mtable th:nth-child(3){width:100px}.mtable th:nth-child(4){width:100px}.mtable th:nth-child(5){width:150px}.mtable th:nth-child(6){width:100px}.mtable th:nth-child(7){width:150px}.mtable th:nth-child(8){width:90px}.mtable th:nth-child(9){width:29px}.mtable2 tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable2 th:nth-child(1){width:30px}.mtable2 th:nth-child(2){width:150px}.mtable2 th:nth-child(3){width:230px}.mtable2 th:nth-child(4){width:220px}.mtable2 th:nth-child(7){width:50px}.mtable2 th:nth-child(8){width:50px}.mtable2 th:nth-child(9){width:29px}.wp-admin select.wf_mattributes{width:150px;left:0;height:25px}div#wf-tab-content1 select:not([name^=output_type]){width:100%}div#wf-tab-content1 input{width:100%}div#wf-tab-content1 .dashicons{vertical-align:middle}.wf_attributes{width:150px;left:0}.wf_compare{max-width:245px;left:0}.wf_ps{width:100px;left:0}.wf_sortedtable{cursor:move}.sorted_table{position:relative}.sorted_table .dragged{position:absolute;opacity:.8;z-index:9999;background:#fff;width:100%;display:table}.sorted_table tbody tr.placeholder td{border:1px dashed #2cc185;height:46px}.wfnoempty{width:120px}.wf_tabs{position:relative;margin:0 auto;width:100%;list-style:none}.wf_tabs:after{display:table;clear:both;content:""}.wf_tabs li{float:left;width:20%;display:block;border:2px solid #ccc}.wf_tabs li>input[type=radio][name=wf_tabs]{position:absolute;top:auto;left:-9999px}.wf-tab-name{display:block;padding:15px;font-size:15px;font-weight:700;line-height:1;background:#fff;cursor:pointer;position:relative;text-align:center;text-transform:uppercase;color:#2cc185}.wf-tab-name:hover{background:#2cc185;color:#fff}.wf_tabs [id^=tab]:checked+label{background:#2cc185;color:#fff}.wf_tabs .wf-tab-content{z-index:2;display:none;width:100%;font-size:.9rem;position:absolute;left:0;background:#fff;border:2px solid #ccc}.wf_tabs [id^=tab]:checked~[id^=wf-tab-content]{display:block}[id^=wf-tab-content]{margin-bottom:40px}div#wf-tab-content2 table:first-child{padding:10px 0}div#wf-tab-content2 table:first-child td:nth-child(1){width:260px}div#wf-tab-content2 table:first-child td:nth-child(2){width:260px}table.feed-actions tr td:last-child{text-align:right}select.selectize{display:none}body.no-js select.selectize{display:block!important}.wp-list-table .option_name .wf_feed_option_name_link{font-weight:700;color:#30336b}.wp-list-table #option_name a{color:#32373c}.selectize-dropdown .active{background-color:#edf9ff}.selectize-dropdown .create{padding:5px 8px}.wapk-selectize-item{background:#0073aa!important;color:#f1f1f1!important;font-weight:700!important;border-color:#0073aa!important;padding-left:5px;padding-right:5px}.selectize-input.full #googleTaxonomyId-selectized{opacity:0;position:absolute;left:-10000px}.selectize-dropdown [data-selectable].option{cursor:default}.selectize-control.plugin-remove_button [data-value] .remove{border-left:1px solid #f1f1f1!important}.selectize-dropdown .optgroup-header{font-weight:700;background:#efefef;color:#5a5a5a}.selectize-dropdown [data-selectable].option{cursor:pointer}.wf_status_wrap label{width:55px;height:28px;box-sizing:border-box;float:left;border-radius:100px;position:relative;cursor:pointer;transition:.3s ease;background:linear-gradient(125deg,#e2e2e2 0,#ccc 140%)}input[class=woo_feed_status_input]:checked+label{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%)}input[class=woo_feed_status_input]:checked+label:before{left:29px}.wf_status_wrap label:before{transition:.3s ease;content:'';width:20px;height:20px;position:absolute;background:#fff;left:6px;top:4px;box-sizing:border-box;color:#000;border-radius:100px;box-shadow:0 1.5px 2px 0 #000}.view span.dashicons.dashicons-external{color:#22a6b3}.view span.dashicons.dashicons-sos{color:#22a6b3}.view span.dashicons.dashicons-download{color:#ee5253}.view span.dashicons.dashicons-media-code{color:#576574}.column-url,.widefat td.column-url,.widefat th.column-url{color:#1e8f9a;font-weight:700}.feed-progress-container{width:100%;color:#fff;text-align:center;font-weight:300}.feed-progress-bar{width:100%;background:#eee;padding:3px;border-radius:50px;box-shadow:inset 0 1px 3px rgba(0,0,0,.2)}.feed-progress-bar-fill{height:20px;display:block;background:linear-gradient(to right top,#10ac84,#13b389,#15ba8f,#18c194,#1ac89a,#13cba1,#0acfa9,#00d2b0,#00d2ba,#00d2c3,#00d2cb,#00d2d3);width:0;border-radius:50px;transition:width .8s ease}.feed-progress-status{float:left;font-weight:700;color:#00008b}.feed-progress-percentage{text-align:right;font-weight:bolder;color:#1dd1a1;font-family:'Arial Black',sans-serif;font-size:large}#wpbody-content.woofeed-body-content{overflow:visible!important}.clippy{position:relative;width:13px;margin-top:-3px;margin-left:3px;top:3px}.column-url .clippy{display:none}.column-url:hover .clippy{display:inline-block}.tooltipped{position:relative}.tooltipped:after{position:absolute;z-index:1000000;display:none;padding:5px 8px;font:normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:rgba(0,0,0,.8);border-radius:3px;-webkit-font-smoothing:subpixel-antialiased}.tooltipped:before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:rgba(0,0,0,.8);pointer-events:none;content:"";border:5px solid transparent}.tooltipped:hover:before{display:inline-block;text-decoration:none}.tooltipped:hover:after{display:inline-block;text-decoration:none}.tooltipped:active:before{display:inline-block;text-decoration:none}.tooltipped:active:after{display:inline-block;text-decoration:none}.tooltipped:focus:before{display:inline-block;text-decoration:none}.tooltipped:focus:after{display:inline-block;text-decoration:none}.tooltipped-multiline:hover:after{display:table-cell}.tooltipped-multiline:active:after{display:table-cell}.tooltipped-multiline:focus:after{display:table-cell}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate}.tooltipped-s:after{top:100%;right:50%;margin-top:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-s:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-se:after{top:100%;margin-top:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-se:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-sw:after{top:100%;right:50%;margin-top:5px;margin-right:-15px}.tooltipped-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-n:after{right:50%;bottom:100%;margin-bottom:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-n:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-ne:after{bottom:100%;margin-bottom:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-ne:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:5px;margin-right:-15px}.tooltipped-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.tooltipped-multiline.tooltipped-s:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-w:after{right:100%}.tooltipped-multiline.tooltipped-e:after{right:100%}.tooltipped-sticky:before{display:inline-block}.tooltipped-sticky:after{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.fullscreen-overlay-enabled.dark-theme .tooltipped:after{color:#000;background:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before{border-right-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before{border-left-color:rgba(255,255,255,.8)}@media screen and (min-width:0\0){.tooltipped-multiline:after{width:250px}}ul.tracker_collection_list{list-style:initial;padding:initial;margin:-10px 0 0 30px;font-size:11px!important}ul.tracker_collection_list li{margin:0}table.wf-info-table,table.wf-rate-table{vertical-align:middle;text-align:center;max-width:100%;font-weight:500}table.wf-info-table th,table.wf-rate-table th{text-align:center}table.wf-info-table th .woo-feed-top-header,table.wf-rate-table th .woo-feed-top-header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .get-woo-feed-pro,table.wf-rate-table th .woo-feed-top-header .get-woo-feed-pro{margin-left:20px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons{float:right;display:-ms-flexbox;display:flex;border-radius:7px;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a{padding:8px 20px;background:#576574;color:#fff;box-sizing:border-box;display:inline-block;transition:.3s ease}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link{background:#576574;border-top-left-radius:5px;border-bottom-left-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link{background:#ee5253}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link{background:#22a6b3;border-top-right-radius:5px;border-bottom-right-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons{font-size:18px;line-height:1.2}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a:hover,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a:hover{background:#30336b;box-shadow:0 0 33px 0 rgba(0,0,0,.12)}table.wf-info-table strong,table.wf-rate-table strong{font-weight:700}table.wf-info-table th:first-child img{margin:0 0 -5px 5px}table.wf-rate-table a{color:#0073aa}table.wf-rate-table a.review-star:after{content:"\f155\f155\f155\f155\f155"!important;font-family:dashicons;font-size:10px;font-weight:100;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#0073aa;text-decoration:underline}#adminmenu #toplevel_page_webappick-manage-feeds div.wp-menu-image::before{content:"";background:url(../images/woo-feed-icon.svg) no-repeat center center;background-size:20px 20px;opacity:.6}#adminmenu #toplevel_page_webappick-manage-feeds:hover div.wp-menu-image::before{opacity:1}#adminmenu #toplevel_page_webappick-manage-feeds.wp-has-current-submenu div.wp-menu-image::before{opacity:1}.wapk-admin,.wapk-admin *{box-sizing:border-box}.wapk-admin{position:relative;display:block;-webkit-hyphens:manual;-ms-hyphens:manual;-moz-hyphens:manual;hyphens:manual;color:#1b2730;margin:0 0 0 -10px}@media screen and (min-width:783px){.wapk-admin{margin:0 0 0 -20px}}.text-center{text-align:center}.wapk-admin h1,.wapk-admin h2,.wapk-admin h3,.wapk-admin h4,.wapk-admin h5,.wapk-admin h6,.wapk-admin p{color:#1b2730}.wapk-admin sup{vertical-align:baseline;position:relative;top:-6px}.wapk-admin sub{vertical-align:baseline;position:relative;top:4px}.wapk-admin .wapk-section{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin .wapk-section [class$=icon32]+h2{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section h1{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin>.notice{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin span.help{display:block;float:left;width:100%;font-size:.9em;color:#636363;margin-top:5px;font-weight:500}.wapk-admin span.help .dashicons{width:11px;height:12px;font-size:inherit;vertical-align:middle}.clear:after{content:"";display:table;clear:both}.wapk-feed-docs .postbox{width:355px;margin-right:20px;display:inline-block;vertical-align:top}.wapk-feed-docs .postbox .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4;cursor:pointer}.wapk-feed-docs .postbox .dashicons{color:#ccc}.wapk-feed-docs .postbox a{text-decoration:none}.wapk-feed-docs .postbox .inside{margin-bottom:0}.wapk-feed-docs .postbox ul{margin-bottom:0}.wapk-feed-docs .postbox .toggle-indicator:before{content:"\F142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.wapk-feed-docs .postbox li{width:100%;display:block;float:left}.wapk-feed-docs .postbox li span{display:inline-block;float:left;margin-right:4px}.wapk-feed-docs .postbox li a{display:inline-block;float:left;width:calc(100% - 24px)}.wapk-feed-docs .postbox.closed .toggle-indicator:before{content:"\F140"}.wapk-section #post-body.columns-2 #side-sortables{min-height:196px}#poststuff #feed_merchant_info .inside{margin:0;padding:0}#feed_merchant_info ul.data{margin-left:24px;margin-top:5px}#feed_merchant_info ul.data li{margin-bottom:5px}.merchant-info-section{padding:6px 10px 8px}.merchant-info-section.woo-feed-open-file{text-align:center}.merchant-info-section.woo-feed-open-file a{line-height:1.5;text-decoration:none}.generateFeed .wf-tab-content table:first-child{border:none;box-shadow:none}.generateFeed table th{font-weight:700}@media only screen and (max-width:850px){.wapk-feed-docs .postbox{display:block;width:auto;float:none;margin-right:auto}}.wp-submenu li span.woo-feed-docs{font-weight:700;color:#f18500}.wp-submenu li:hover span.woo-feed-docs{color:#ce7304}.wp-submenu li.current span.woo-feed-docs{color:#ce7304}.wapk-admin .wapk-feed-docs .postbox .hndle{cursor:default}.wapk-cta{position:relative;display:-ms-flexbox;display:flex;width:100%;padding:100px 15px;background:linear-gradient(45deg,#6cd5ff 33%,#c2efef 100%);-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.wapk-cta-icon .dashicons{font-size:100px;width:100px;height:auto;margin:0 10px -8px 0;color:#02658c}.wapk-cta-content{width:50%}.wapk-cta-content h2{font-size:2em;margin:.5em 0}.wapk-cta-action a.wapk-button{font-size:24px;height:auto!important;padding:10px 20px}@media (max-width:600px){.wapk-cta{display:block;text-align:center;padding:4em 0}.wapk-cta-content{width:100%;margin:2em 0}}.wapk-button{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button>.dashicons{color:#00d4d4}.wapk-button:hover{border-color:#0bb;color:#0bb}.wapk-button:hover>svg{fill:#0bb}.wapk-button:hover>.dashicons{color:#0bb}.wapk-button:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button:focus>svg{fill:#0bb}.wapk-button:focus>.dashicons{color:#0bb}.wapk-button:active{background:#0bb;border-color:#0bb}.wapk-button-secondary{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button-secondary>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button-secondary>.dashicons{color:#00d4d4}.wapk-button-secondary:hover{border-color:#0bb;color:#0bb}.wapk-button-secondary:hover>svg{fill:#0bb}.wapk-button-secondary:hover>.dashicons{color:#0bb}.wapk-button-secondary:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button-secondary:focus>svg{fill:#0bb}.wapk-button-secondary:focus>.dashicons{color:#0bb}.wapk-button-primary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;background:#00d4d4;border-color:#00d4d4;color:#fff;box-shadow:0 1px 0 #0bb;text-shadow:0 -1px 1px #0bb,1px 0 1px #0bb,0 1px 1px #0bb,-1px 0 1px #0bb}.wapk-button-primary>svg{fill:#fff}.wapk-button-primary:hover{background:#00e3e3;border-color:#00c5c5;color:#fff}.wapk-button-primary:hover>svg{fill:#fff}.wapk-button-primary:focus{background:#00e3e3;border-color:#00c5c5;color:#fff;box-shadow:0 0 0 1px #fff,0 0 0 3px #00d4d4}.wapk-button-primary:focus>svg{fill:#fff}.wapk-button-primary:active{background:#0bb;border-color:#0bb;color:#fff}.wapk-button-primary:active>svg{fill:#fff}.wapk-button-primary:disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary:disabled>svg{fill:#c7d1d1!important}.wapk-button.hover{border-color:#0bb;color:#0bb}.wapk-button.hover>svg{fill:#0bb}.wapk-button.hover>.dashicons{color:#0bb}.wapk-button.focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button.focus>svg{fill:#0bb}.wapk-button.focus>.dashicons{color:#0bb}.wapk-button.active{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus>svg{fill:#0bb}.wapk-button.active:focus>.dashicons{color:#0bb}.wapk-button.active:hover{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:hover>svg{fill:#0bb}.wapk-button.active:hover>.dashicons{color:#0bb}.wapk-button.active>svg{fill:#0bb}.wapk-button.active>.dashicons{color:#0bb}.wapk-button-primary.active{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus>svg{fill:#fff}.wapk-button-primary.active:hover{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:hover>svg{fill:#fff}.wapk-button-primary.active>svg{fill:#fff}.wapk-button-primary[disabled]{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary[disabled]>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-primary-disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.wapk-button-primary-disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-hero{box-shadow:0 2px 0 #0bb}.wapk-button-primary.wapk-button-hero:focus{box-shadow:0 2px 0 #0bb,0 1px 0 #00c5c5,0 0 2px 1px #0ee}.wapk-button-primary.wapk-button-hero:active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active:focus,.wapk-button-primary.wapk-button-hero.active:hover{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-group>.wapk-button.active{border-color:#00d4d4}.wapk-button.wapk-button-xl{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button-group.wapk-button-xl .wapk-button{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button.wapk-button-hero{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}.wapk-button-group.wapk-button-hero .wapk-button{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}@media screen and (min-width:782px){th#provider,th#status{width:80px}th#type{width:50px}th#option_name{width:100px}td.option_name.column-option_name>span:first-child{display:none}th#last_updated{width:90px}th#view{width:111px}}@media screen and (min-width:960px){th#provider,th#status{width:100px}th#type{width:80px}th#option_name{width:150px}th#last_updated{width:140px}}@media screen and (max-width:782px){table.wf-info-table{margin-top:10px}table.wf-info-table th:first-child img{margin:0 auto;display:block}.wapk-button.wapk-button-xl{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.wapk-feed-docs .wapk-feed-cta{margin:0}.campaign_configurator{background:#fff;padding:20px 0}.campaign_configurator table{margin:0 auto;width:51%;min-width:574px;border:none;box-shadow:none}.campaign_configurator th{min-width:120px}@media screen and (max-width:782px){.campaign_configurator{padding:0}.campaign_configurator table{width:auto;min-width:auto;max-width:100%}.campaign_configurator th{min-width:auto}}#wf-tab-content-config td>input:not([type=checkbox]):not([type=radio]),#wf-tab-content-config td>select,#wf-tab-content-config td>textarea{width:100%!important}.woo-feed-filters td>div:nth-child(2n):not(.clear):not(.selectize){width:120px;display:block}.woo-feed-filters td>div:not(.clear){float:left;margin-right:10px}.woo-feed-filters tr>td:first-child{width:290px;padding-left:40px}.woo-feed-filters,.woo-feed-ftp{margin:15px auto 25px}.wf_clean_cache_wrapper{display:-ms-flexbox;display:flex;margin-left:auto}@-webkit-keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.woo-feed-cache-loader{width:18px;margin-right:5px;animation:LoaderClockWise 1s linear infinite;-webkit-animation:LoaderClockWise 1s linear infinite;display:none}.woo-feed-table-heading .woo-feed-table-heading-title{float:left;margin-right:auto;display:inline-block;line-height:30px}.woo-feed-table-heading .wf_clean_cache_wrapper{float:right;font-weight:400}.wf_clean_cache_wrapper button{background:linear-gradient(125deg,#eb4d4b 0,#ff9671 130%);color:#fff;border:none;font-weight:500;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;border-radius:3px;cursor:pointer;outline:0}.wf_clean_cache_wrapper button:hover{background:#ff7979;color:#fff}input[type=submit][data-id=wf_action_submit]{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);color:#fff;border:1px;padding:0 20px}input[type=submit][data-id=wf_action_submit]:hover{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);color:#fff}.woo-import-popup-body #TB_window{width:500px!important}.woo-import-popup-body #TB_window #TB_title{border:none;background:#fff;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;height:35px!important}.woo-import-popup-body #TB_window #TB_title #TB_ajaxWindowTitle{color:#30336b;font-weight:700}.woo-import-popup-body #TB_window #TB_closeWindowButton{top:-14.5px;right:-14.5px;border:none;outline:0}.woo-import-popup-body #TB_window #TB_closeWindowButton .tb-close-icon{background:#ff5e55;color:#fff;border-radius:50%}.woo-import-popup-body #TB_window #TB_closeWindowButton:focus{outline:0;border:0}.woo-import-popup-body #TB_window #TB_ajaxContent{position:relative;width:100%!important;height:auto!important;border:none;box-sizing:border-box;overflow:hidden;background:#f7fcff;padding:30px 20px}.woo-import-popup-body #TB_window #TB_ajaxContent:before{content:'';width:115%;display:block;background:#4bcffa;position:absolute;height:130%;z-index:0;left:-36%;top:-85px;-webkit-transform:rotate(115deg);transform:rotate(115deg)}.woo-import-popup-body #TB_window #TB_ajaxContent table{border:none;position:relative;z-index:1;border-radius:3px;text-align:center;padding:20px;box-shadow:0 12px 20px -17px #000}.woo-import-popup-body #TB_window #TB_ajaxContent table input{width:60%}.woo-import-popup-body #TB_window #TB_ajaxContent table input:focus{outline:2px solid #68b8f7}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=file]{padding:3px 0;cursor:pointer}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=text]{border-radius:25px;font-size:14px;padding:1px 20px;text-align:center}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=submit]{background:#17c0eb;border-radius:25px;border:0;box-shadow:1px 4px 7px -3px #45364a;font-weight:600;transition:.3s ease}.woo-import-popup-body #TB_window #TB_ajaxContent table input[type=submit]:hover{-webkit-transform:translateY(-2px);transform:translateY(-2px)}.woo-feed-notice .woo-feed-review-notice-logo{width:90px;height:90px;float:left;margin-right:5px;background:url(../images/woo-feed-logo.svg) no-repeat}.woo-feed-status-table-wrapper .woo-feed-status-table{width:100%;max-width:900px;border-collapse:collapse;border-spacing:.5rem;box-shadow:0 0 20px rgba(0,0,0,.1)}.woo-feed-status-table-wrapper .woo-feed-status-table tr:nth-child(even){background:#f1f1f1}.woo-feed-status-table-wrapper .woo-feed-status-table tr:nth-child(odd){background:#fafafc}.woo-feed-status-table-wrapper .woo-feed-status-table tr th{background:#353b48;color:#fff}.woo-feed-status-table-wrapper .woo-feed-status-table tr th.woo-feed-status-message-header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.woo-feed-status-table-wrapper .woo-feed-status-table tr th.woo-feed-status-message-header #woo-feed-copy-status-btn{background:linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);border:none}.woo-feed-status-table-wrapper .woo-feed-status-table tr td,.woo-feed-status-table-wrapper .woo-feed-status-table tr th{padding:.5rem 20px;text-align:left}input[id^=woo_feed_identifier_]{display:block;width:100%!important}#taxonomy-woo-feed-brand #newwoo-feed-brand_parent,.taxonomy-woo-feed-brand .form-field.term-parent-wrap{display:none}.wapk-admin .switch{position:relative;display:inline-block;width:60px;height:34px}.wapk-admin .switch input{opacity:0;width:0;height:0}.wapk-admin .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:.4s}.wapk-admin .slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:#fff;transition:.4s}.wapk-admin input:checked+.slider{background-color:#18c194}.wapk-admin input:focus+.slider{box-shadow:0 0 1px #2196f3}.wapk-admin input:checked+.slider:before{-webkit-transform:translateX(26px);transform:translateX(26px)}.wapk-admin .slider.round{border-radius:34px}.wapk-admin .slider.round:before{border-radius:50%}
admin/css/woo-feed-admin.scss CHANGED
@@ -1998,6 +1998,18 @@ input {
1998
  th {
1999
  background: #353b48;
2000
  color: #fff;
 
 
 
 
 
 
 
 
 
 
 
 
2001
  }
2002
 
2003
  th,td {
1998
  th {
1999
  background: #353b48;
2000
  color: #fff;
2001
+
2002
+ &.woo-feed-status-message-header {
2003
+ display: flex;
2004
+ justify-content: space-between;
2005
+ align-items: center;
2006
+
2007
+ #woo-feed-copy-status-btn {
2008
+ background: linear-gradient(125deg,#3cb0fd 0,#6c5ce7 140%);
2009
+ border: none;
2010
+ }
2011
+ }
2012
+
2013
  }
2014
 
2015
  th,td {
admin/images/ctx-feed-features/attributes-mapping-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="519" height="365" fill="none" viewBox="0 0 519 365"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v345c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="40" y="286" fill="#62699F" rx="5"/><path fill="#fff" d="M59.708 306.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.153-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V306h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm10.63-5.544L74.445 306h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM96.653 306l-.012-6.12-3.035 5.1h-.552l-3.037-5.064V306h-1.151v-8.4h.984l3.504 5.904 3.456-5.904h.983l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V306h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V306h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V306h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V306h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><rect width="6" height="1" x="104.24" y="280.24" fill="#62699F" rx=".5" transform="rotate(-45 104.243 280.243)"/><rect width="6" height="1" x="99.24" y="271" fill="#62699F" rx=".5" transform="rotate(90 99.243 271)"/><rect width="6" height="1" x="93.24" y="280.95" fill="#62699F" rx=".5" transform="rotate(-135 93.243 280.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M100.309 328.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><path fill="#6577AA" d="M49.048 108l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V108H41.26v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zM63 107.064a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.615 0 1.168.136 1.656.408.487.272.867.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.657.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.151v-8.688h1.103v1.008c.257-.352.58-.616.973-.792a3.012 3.012 0 0 1 1.296-.276zm-.097 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.575.444-.767.78a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.275 1.176.184.336.44.6.769.792.328.184.692.276 1.091.276zm4.904-5.424h1.152V108h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V108H84.32v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V108h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.89.06v5.496c0 1.112-.275 1.932-.827 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.311 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm16.128-7.128v8.4h-.984l-5.04-6.264V108h-1.2v-8.4h.984l5.04 6.264V99.6h1.2zm4.662 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V108h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.507 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="243.25" y="88.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M266.016 108.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm10.477-6.456V108h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.017 6.432c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm7.763-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.849-5.484c.8 0 1.432.232 1.896.696.473.464.709 1.152.709 2.064V108h-1.153v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm15.903 6.42l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V108h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.275-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V108h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V108h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V108h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><path fill="#6577AA" d="M46.612 152.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.623.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.529-.836-.529-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.825v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.425.276.745.276.351 0 .651-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068zm3.736-1.068H65.6V155h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228.75.75 0 0 1 .552.216.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.147 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V155H67.8v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V155h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H85.42v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.582 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.116-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.161-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068z"/><rect width="235.5" height="31.5" x="243.25" y="135.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M262.26 146.096h1.068v11.232h-1.068v-11.232z"/><rect width="203.5" height="31.5" x="243.25" y="182.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M428 203l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><rect width="84" height="16" x="259" y="190" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M267.536 193.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V202h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V202h-1.152v-6.36h1.104v1.068zm6.401 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V202h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.384-5.424V202h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.965 6.432c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.741-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.784-8.028h1.2v8.4h-1.2v-8.4zm3.714 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(-45 -403.519 323.43)"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(45 62.281 -517.247)"/><path fill="#fff" d="M465 205a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/><path fill="#62699F" fill-rule="evenodd" d="M458 197a7 7 0 1 0 14 0 7 7 0 0 0-14 0zm-1 0a8 8 0 1 0 16 0 8 8 0 0 0-16 0z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M467.828 199.829l-5.656-5.657.707-.707 5.657 5.657-.708.707z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M462.172 199.829l5.656-5.657.708.707-5.657 5.657-.707-.707z" clip-rule="evenodd"/><path fill="#6577AA" d="M43.708 202.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.744-3.456h1.152V202h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.516 5.52c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.742-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.769.108c-.64 0-1.135-.172-1.487-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.424.276.745.276.352 0 .651-.1.9-.3l.36.828zm13.358-1.728H86l-.924 2.1H83.84l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.153v1.392h1.823v.948h-1.823v3.444c0 .344.083.608.251.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V202h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152V202h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V202h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.831-5.424V202h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="203.5" height="31.5" x="243.25" y="229.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M428 250l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><rect width="97" height="16" x="259" y="237" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M267.536 240.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V249h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V249h-1.152v-6.36h1.104v1.068zm6.401 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V249h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.384-5.424V249h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.965 6.432c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.741-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.452-6.984h-2.88V240.6h6.948v1.044h-2.88V249h-1.188v-7.356zm5.054.996h1.152V249h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.352 7.212a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-8.532h1.152V249h-1.152v-8.904zm9.099 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(-45 -465.555 316.597)"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(45 110.98 -556.281)"/><path fill="#fff" d="M465 252a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/><path fill="#62699F" fill-rule="evenodd" d="M458 244a7 7 0 1 0 14 0 7 7 0 0 0-14 0zm-1 0a8 8 0 1 0 16 0 8 8 0 0 0-16 0z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M467.828 246.829l-5.656-5.657.707-.707 5.657 5.657-.708.707z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M462.172 246.829l5.656-5.657.708.707-5.657 5.657-.707-.707z" clip-rule="evenodd"/><path fill="#6577AA" d="M43.708 249.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.744-3.456h1.152V249h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.516 5.52c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.742-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.769.108c-.64 0-1.135-.172-1.487-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.424.276.745.276.352 0 .651-.1.9-.3l.36.828zm13.358-1.728H86l-.924 2.1H83.84l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.153v1.392h1.823v.948h-1.823v3.444c0 .344.083.608.251.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V249h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152V249h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V249h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.831-5.424V249h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="182" height="18" x="168" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M206.01 20.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.207 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V23h-1.152v-6.36h1.104v1.068zm4.84 0c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V23h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V23h-1.104v-8.904h1.152V17.6c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V23h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V16.64h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.567 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zM272.818 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.82-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(92 313)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/built-in-templates-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="485" height="379" fill="none" viewBox="0 0 485 379"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h465c5.523 0 10 4.477 10 10v359c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><path fill="#EDEDF4" d="M208 133h236v210a5 5 0 0 1-5 5H213a5 5 0 0 1-5-5V133z"/><rect width="235.5" height="31.5" x="208.25" y="110.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M425 131l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-196.464.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V130h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V130h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V130h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.548 7.656c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.359 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm8.209-6.516c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.356-5.424l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128z"/><path fill="#6577AA" d="M42.928 122.644h-2.88V121.6h6.948v1.044h-2.88V130h-1.188v-7.356zm10.299 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm12.7-.972c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V130h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V130H59.53v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V130h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.095 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V130h-1.152v-8.904zm5.667 2.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V130h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H81.15c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H87.53v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#CFD1E1" d="M208 244h236v24H208z"/><path fill="#62699F" d="M231.08 159.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V164h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.582 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm8.233-6.516c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V164h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V164h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm7.531 6.492c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.265-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V164h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V164h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V164h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm-99.302 17.916v2.928h4.212v1.032h-4.212V188h-1.2v-8.4h5.928v1.044h-4.728zm8.343.936c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V188h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.927.888c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.737-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.116-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V188h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.628 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.365-2.028l-1.32 1.224V188h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628 2.94 3.732h-1.416l-2.388-2.964zM228.536 203.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V212h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm5.03-2.772h1.152V212h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V212h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V212h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.348 6.048a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V212h-1.152v-6.36h1.104v1.068zm9.425 2.148c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.567 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm7.764-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm-47.959 20.016c.488.136.872.384 1.152.744.28.352.42.8.42 1.344 0 .728-.276 1.288-.828 1.68-.544.392-1.34.588-2.388.588h-4.008v-8.4h3.768c.96 0 1.7.192 2.22.576.528.384.792.916.792 1.596 0 .44-.104.82-.312 1.14-.2.32-.472.564-.816.732zm-4.452-3.072v2.688h2.46c.616 0 1.088-.112 1.416-.336.336-.232.504-.568.504-1.008 0-.44-.168-.772-.504-.996-.328-.232-.8-.348-1.416-.348h-2.46zm2.76 6.456c.68 0 1.192-.112 1.536-.336.344-.224.516-.576.516-1.056 0-.936-.684-1.404-2.052-1.404h-2.76v2.796h2.76zm4.954-5.388h1.152V236h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V236h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V236h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zM228.536 251.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V260h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V260h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V260h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.548 7.656c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.359 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm8.209-6.516c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.356-5.424l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zM225.26 275.6h1.2v8.4h-1.2v-8.4zm9.547-.504V284h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.204-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.883-.972c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V284h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.152V284h-1.152v-8.904zm6.076 8.976c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm-28.87 16.536c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V308h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V308h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V308h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.548 7.656c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM261.614 308l-1.812-2.58c-.224.016-.4.024-.528.024h-2.076V308h-1.2v-8.4h3.276c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .648-.16 1.2-.48 1.656-.32.456-.776.788-1.368.996l1.992 2.82h-1.308zm-2.376-3.576c.76 0 1.34-.164 1.74-.492.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.78h2.04zm11.239-2.784V308h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.589-.06c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V308h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V308h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.168 0c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V308h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V308h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.555 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V308h-1.152v-6.36h1.104v1.068zm-72.125 29.364a.807.807 0 0 1-.576-.228.814.814 0 0 1-.24-.6.76.76 0 0 1 .24-.576c.16-.16.352-.24.576-.24.224 0 .412.076.564.228a.796.796 0 0 1 .228.588c0 .24-.08.44-.24.6a.752.752 0 0 1-.552.228zm2.719 0a.807.807 0 0 1-.576-.228.814.814 0 0 1-.24-.6.76.76 0 0 1 .24-.576c.16-.16.352-.24.576-.24.224 0 .412.076.564.228a.796.796 0 0 1 .228.588c0 .24-.08.44-.24.6a.752.752 0 0 1-.552.228zm2.719 0a.81.81 0 0 1-.577-.228.817.817 0 0 1-.239-.6c0-.232.08-.424.239-.576a.79.79 0 0 1 .577-.24c.224 0 .412.076.564.228a.796.796 0 0 1 .228.588c0 .24-.08.44-.24.6a.752.752 0 0 1-.552.228z"/><path fill="#6577AA" d="M43.46 80.644v2.928h4.212v1.032H43.46V88h-1.2v-8.4h5.928v1.044H43.46zm6.132.996h1.152V88h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V88h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM74.257 79.6V88h-.984l-5.04-6.264V88h-1.2v-8.4h.984l5.04 6.264V79.6h1.2zm4.663 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V88h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V88h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V88H88.48v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V88h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.506 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="208.25" y="68.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M233.08 83.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V88h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V88h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V88h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h465c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="129" height="18" x="178" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M218.237 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.592-2.148l-1.32 1.224V23h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628L235.19 23h-1.416l-2.388-2.964zm10.401-.18c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.335-1.908v2.928h4.212v1.032h-4.212V23h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/></g></svg>
admin/images/ctx-feed-features/category-filter-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="525" height="185" fill="none" viewBox="0 0 525 185"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h503c5.523 0 10 4.477 10 10v165c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><path fill="#6577AA" d="M45.016 88.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm6.982-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V88H53.63v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.025.348h-5.16c.073.56.317 1.012.733 1.356.423.336.947.504 1.572.504.76 0 1.371-.256 1.835-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.423.176-.9.264-1.427.264-.672 0-1.269-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.407-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.645-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.115 1.152.273.496.409 1.064.409 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.829-.516-1.38-.516zm10.827-.912v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm8.237 1.344c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.998-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.427-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.623 0-1.115.188-1.475.564-.353.368-.529.896-.529 1.584V88h-1.151v-6.36h1.104v1.068zM89.7 81.64h1.152V88H89.7v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm8.524 4.44c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.568 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/><rect width="237.5" height="31.5" x="147.25" y="68.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><rect width="54" height="16" x="157" y="76" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M168.54 88l-.01-5.1-2.53 4.25h-.46l-2.53-4.22V88h-.96v-7h.82l2.92 4.92 2.88-4.92h.82l.01 7h-.96zm7.861-5.3V88h-.91v-.8c-.194.273-.45.487-.77.64-.314.147-.657.22-1.03.22-.707 0-1.264-.193-1.67-.58-.407-.393-.61-.97-.61-1.73V82.7h.96v2.94c0 .513.123.903.37 1.17.246.26.6.39 1.06.39.506 0 .906-.153 1.2-.46.293-.307.44-.74.44-1.3V82.7h.96zm3.347 5.36c-.433 0-.85-.057-1.25-.17-.4-.12-.713-.27-.94-.45l.4-.76c.234.167.517.3.85.4.334.1.67.15 1.01.15.84 0 1.26-.24 1.26-.72a.464.464 0 0 0-.17-.38 1.024 1.024 0 0 0-.43-.2 7.436 7.436 0 0 0-.72-.15 7.333 7.333 0 0 1-1.05-.23 1.622 1.622 0 0 1-.69-.44c-.193-.207-.29-.497-.29-.87 0-.48.2-.863.6-1.15.4-.293.937-.44 1.61-.44.354 0 .707.043 1.06.13.354.087.644.203.87.35l-.41.76c-.433-.28-.943-.42-1.53-.42-.406 0-.716.067-.93.2-.213.133-.32.31-.32.53 0 .173.06.31.18.41.12.1.267.173.44.22.18.047.43.1.75.16.427.073.77.153 1.03.24.267.08.494.22.68.42.187.2.28.48.28.84 0 .48-.206.863-.62 1.15-.406.28-.963.42-1.67.42zm3.49-5.36h.96V88h-.96v-5.3zm.48-1.02a.657.657 0 0 1-.47-.18.599.599 0 0 1-.18-.44c0-.173.06-.32.18-.44a.638.638 0 0 1 .47-.19c.187 0 .34.06.46.18a.55.55 0 0 1 .19.43c0 .18-.063.333-.19.46a.622.622 0 0 1-.46.18zm4.623 6.38c-.54 0-1.023-.117-1.45-.35a2.585 2.585 0 0 1-.99-.96c-.24-.413-.36-.88-.36-1.4 0-.52.12-.983.36-1.39.24-.413.57-.733.99-.96.427-.233.91-.35 1.45-.35.48 0 .907.097 1.28.29.38.193.673.473.88.84l-.73.47a1.631 1.631 0 0 0-.62-.57 1.769 1.769 0 0 0-.82-.19c-.347 0-.66.077-.94.23-.273.153-.49.373-.65.66a1.99 1.99 0 0 0-.23.97c0 .373.077.703.23.99.16.28.377.497.65.65.28.153.593.23.94.23.3 0 .573-.063.82-.19s.453-.317.62-.57l.73.46c-.207.367-.5.65-.88.85-.373.193-.8.29-1.28.29z"/><path stroke="#62699F" stroke-width=".75" d="M201.26 81.17l5.28 5.28m.43-5.18l-5.27 5.27"/><rect width="68" height="16" x="215" y="76" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M226.07 81v7h-1v-3.12h-4.02V88h-1v-7h1v3.01h4.02V81h1zm4.225 7.06c-.526 0-1-.117-1.42-.35a2.585 2.585 0 0 1-.99-.96 2.801 2.801 0 0 1-.35-1.4c0-.52.117-.983.35-1.39.24-.413.57-.733.99-.96a2.88 2.88 0 0 1 1.42-.35c.527 0 .997.117 1.41.35.42.227.747.547.98.96.24.407.36.87.36 1.39 0 .52-.12.987-.36 1.4a2.51 2.51 0 0 1-.98.96 2.82 2.82 0 0 1-1.41.35zm0-.84c.34 0 .644-.077.91-.23.274-.16.487-.38.64-.66.154-.287.23-.613.23-.98s-.076-.69-.23-.97a1.601 1.601 0 0 0-.64-.66 1.791 1.791 0 0 0-.91-.23c-.34 0-.646.077-.92.23-.266.153-.48.373-.64.66a1.99 1.99 0 0 0-.23.97c0 .367.077.693.23.98.16.28.374.5.64.66.274.153.58.23.92.23zm6.348.84c-.527 0-1-.117-1.42-.35a2.585 2.585 0 0 1-.99-.96 2.801 2.801 0 0 1-.35-1.4c0-.52.117-.983.35-1.39.24-.413.57-.733.99-.96.42-.233.893-.35 1.42-.35.527 0 .997.117 1.41.35.42.227.747.547.98.96.24.407.36.87.36 1.39 0 .52-.12.987-.36 1.4a2.51 2.51 0 0 1-.98.96 2.82 2.82 0 0 1-1.41.35zm0-.84c.34 0 .643-.077.91-.23.273-.16.487-.38.64-.66a2.05 2.05 0 0 0 .23-.98c0-.367-.077-.69-.23-.97a1.607 1.607 0 0 0-.64-.66 1.794 1.794 0 0 0-.91-.23c-.34 0-.647.077-.92.23-.267.153-.48.373-.64.66a1.99 1.99 0 0 0-.23.97c0 .367.077.693.23.98.16.28.373.5.64.66.273.153.58.23.92.23zm9.078-6.64V88h-.92v-.84a2.088 2.088 0 0 1-.81.67c-.327.153-.687.23-1.08.23-.514 0-.974-.113-1.38-.34a2.476 2.476 0 0 1-.96-.95c-.227-.413-.34-.887-.34-1.42 0-.533.113-1.003.34-1.41.233-.407.553-.723.96-.95.406-.227.866-.34 1.38-.34.38 0 .73.073 1.05.22.32.14.586.35.8.63v-2.92h.96zm-2.73 6.64c.333 0 .636-.077.91-.23a1.7 1.7 0 0 0 .64-.66 2.05 2.05 0 0 0 .23-.98c0-.367-.077-.69-.23-.97a1.613 1.613 0 0 0-.64-.66 1.83 1.83 0 0 0-.91-.23c-.34 0-.647.077-.92.23-.267.153-.48.373-.64.66a1.98 1.98 0 0 0-.23.97c0 .367.076.693.23.98.16.28.373.5.64.66.273.153.58.23.92.23zm4.546-4.52h.96V88h-.96v-5.3zm.48-1.02a.657.657 0 0 1-.47-.18.599.599 0 0 1-.18-.44c0-.173.06-.32.18-.44a.638.638 0 0 1 .47-.19c.187 0 .34.06.46.18a.55.55 0 0 1 .19.43c0 .18-.063.333-.19.46a.622.622 0 0 1-.46.18zm7.103 3.7c0 .073-.007.17-.02.29h-4.3c.06.467.263.843.61 1.13.353.28.79.42 1.31.42.633 0 1.143-.213 1.53-.64l.53.62c-.24.28-.54.493-.9.64a3.07 3.07 0 0 1-1.19.22c-.56 0-1.057-.113-1.49-.34a2.53 2.53 0 0 1-1.01-.97 2.801 2.801 0 0 1-.35-1.4c0-.513.113-.977.34-1.39a2.48 2.48 0 0 1 .95-.96c.407-.233.863-.35 1.37-.35.507 0 .957.117 1.35.35.4.227.71.547.93.96.227.413.34.887.34 1.42zm-2.62-1.92c-.46 0-.847.14-1.16.42-.307.28-.487.647-.54 1.1h3.4a1.674 1.674 0 0 0-.55-1.09c-.307-.287-.69-.43-1.15-.43zm5.473 4.6c-.433 0-.85-.057-1.25-.17-.4-.12-.713-.27-.94-.45l.4-.76c.233.167.517.3.85.4.333.1.67.15 1.01.15.84 0 1.26-.24 1.26-.72a.467.467 0 0 0-.17-.38 1.03 1.03 0 0 0-.43-.2 7.57 7.57 0 0 0-.72-.15 7.271 7.271 0 0 1-1.05-.23 1.61 1.61 0 0 1-.69-.44c-.193-.207-.29-.497-.29-.87 0-.48.2-.863.6-1.15.4-.293.937-.44 1.61-.44.353 0 .707.043 1.06.13.353.087.643.203.87.35l-.41.76c-.433-.28-.943-.42-1.53-.42-.407 0-.717.067-.93.2-.213.133-.32.31-.32.53 0 .173.06.31.18.41.12.1.267.173.44.22.18.047.43.1.75.16.427.073.77.153 1.03.24.267.08.493.22.68.42.187.2.28.48.28.84 0 .48-.207.863-.62 1.15-.407.28-.963.42-1.67.42z"/><path stroke="#62699F" stroke-width=".75" d="M273.26 81.17l5.28 5.28m.44-5.18l-5.28 5.27"/><rect width="88" height="16" x="287" y="76" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M296.51 86.25h-3.72l-.77 1.75h-1.03l3.17-7h.99l3.18 7h-1.05l-.77-1.75zm-.35-.8l-1.51-3.43-1.51 3.43h3.02zm5.335 2.61c-.54 0-1.023-.117-1.45-.35a2.585 2.585 0 0 1-.99-.96c-.24-.413-.36-.88-.36-1.4 0-.52.12-.983.36-1.39.24-.413.57-.733.99-.96.427-.233.91-.35 1.45-.35.48 0 .907.097 1.28.29.38.193.674.473.88.84l-.73.47a1.624 1.624 0 0 0-.62-.57 1.766 1.766 0 0 0-.82-.19c-.346 0-.66.077-.94.23-.273.153-.49.373-.65.66a1.99 1.99 0 0 0-.23.97c0 .373.077.703.23.99.16.28.377.497.65.65.28.153.594.23.94.23.3 0 .574-.063.82-.19.247-.127.454-.317.62-.57l.73.46c-.206.367-.5.65-.88.85-.373.193-.8.29-1.28.29zm5.635 0c-.54 0-1.023-.117-1.45-.35a2.585 2.585 0 0 1-.99-.96c-.24-.413-.36-.88-.36-1.4 0-.52.12-.983.36-1.39.24-.413.57-.733.99-.96.427-.233.91-.35 1.45-.35.48 0 .907.097 1.28.29.38.193.673.473.88.84l-.73.47a1.631 1.631 0 0 0-.62-.57 1.769 1.769 0 0 0-.82-.19c-.347 0-.66.077-.94.23-.273.153-.49.373-.65.66a1.99 1.99 0 0 0-.23.97c0 .373.077.703.23.99.16.28.377.497.65.65.28.153.593.23.94.23.3 0 .573-.063.82-.19s.453-.317.62-.57l.73.46c-.207.367-.5.65-.88.85-.373.193-.8.29-1.28.29zm8.115-2.68c0 .073-.007.17-.02.29h-4.3c.06.467.263.843.61 1.13.353.28.79.42 1.31.42.633 0 1.143-.213 1.53-.64l.53.62c-.24.28-.54.493-.9.64a3.07 3.07 0 0 1-1.19.22c-.56 0-1.057-.113-1.49-.34a2.53 2.53 0 0 1-1.01-.97 2.801 2.801 0 0 1-.35-1.4c0-.513.113-.977.34-1.39a2.48 2.48 0 0 1 .95-.96c.407-.233.863-.35 1.37-.35.507 0 .957.117 1.35.35.4.227.71.547.93.96.227.413.34.887.34 1.42zm-2.62-1.92c-.46 0-.847.14-1.16.42-.307.28-.487.647-.54 1.1h3.4a1.674 1.674 0 0 0-.55-1.09c-.307-.287-.69-.43-1.15-.43zm5.473 4.6c-.433 0-.85-.057-1.25-.17-.4-.12-.713-.27-.94-.45l.4-.76c.233.167.517.3.85.4.333.1.67.15 1.01.15.84 0 1.26-.24 1.26-.72a.467.467 0 0 0-.17-.38 1.03 1.03 0 0 0-.43-.2 7.57 7.57 0 0 0-.72-.15 7.271 7.271 0 0 1-1.05-.23 1.61 1.61 0 0 1-.69-.44c-.193-.207-.29-.497-.29-.87 0-.48.2-.863.6-1.15.4-.293.937-.44 1.61-.44.353 0 .707.043 1.06.13.353.087.643.203.87.35l-.41.76c-.433-.28-.943-.42-1.53-.42-.407 0-.717.067-.93.2-.213.133-.32.31-.32.53 0 .173.06.31.18.41.12.1.267.173.44.22.18.047.43.1.75.16.427.073.77.153 1.03.24.267.08.493.22.68.42.187.2.28.48.28.84 0 .48-.207.863-.62 1.15-.407.28-.963.42-1.67.42zm5.01 0c-.434 0-.85-.057-1.25-.17-.4-.12-.714-.27-.94-.45l.4-.76c.233.167.516.3.85.4.333.1.67.15 1.01.15.84 0 1.26-.24 1.26-.72a.467.467 0 0 0-.17-.38 1.035 1.035 0 0 0-.43-.2 7.57 7.57 0 0 0-.72-.15 7.271 7.271 0 0 1-1.05-.23 1.61 1.61 0 0 1-.69-.44c-.194-.207-.29-.497-.29-.87 0-.48.2-.863.6-1.15.4-.293.936-.44 1.61-.44.353 0 .706.043 1.06.13.353.087.643.203.87.35l-.41.76c-.434-.28-.944-.42-1.53-.42-.407 0-.717.067-.93.2-.214.133-.32.31-.32.53 0 .173.06.31.18.41.12.1.266.173.44.22.18.047.43.1.75.16.426.073.77.153 1.03.24.266.08.493.22.68.42.186.2.28.48.28.84 0 .48-.207.863-.62 1.15-.407.28-.964.42-1.67.42zm5.76 0c-.527 0-1-.117-1.42-.35a2.585 2.585 0 0 1-.99-.96 2.79 2.79 0 0 1-.35-1.4c0-.52.116-.983.35-1.39.24-.413.57-.733.99-.96.42-.233.893-.35 1.42-.35.526 0 .996.117 1.41.35.42.227.746.547.98.96.24.407.36.87.36 1.39 0 .52-.12.987-.36 1.4-.234.407-.56.727-.98.96-.414.233-.884.35-1.41.35zm0-.84c.34 0 .643-.077.91-.23a1.7 1.7 0 0 0 .64-.66 2.05 2.05 0 0 0 .23-.98c0-.367-.077-.69-.23-.97a1.613 1.613 0 0 0-.64-.66 1.794 1.794 0 0 0-.91-.23c-.34 0-.647.077-.92.23-.267.153-.48.373-.64.66a1.98 1.98 0 0 0-.23.97c0 .367.076.693.23.98.16.28.373.5.64.66.273.153.58.23.92.23zm4.997-3.63c.167-.307.413-.54.74-.7.327-.16.723-.24 1.19-.24v.93a1.867 1.867 0 0 0-.22-.01c-.52 0-.93.157-1.23.47-.293.307-.44.747-.44 1.32V88h-.96v-5.3h.92v.89zm3.113-.89h.96V88h-.96v-5.3zm.48-1.02a.659.659 0 0 1-.47-.18.599.599 0 0 1-.18-.44c0-.173.06-.32.18-.44a.64.64 0 0 1 .47-.19c.187 0 .34.06.46.18a.55.55 0 0 1 .19.43c0 .18-.063.333-.19.46a.622.622 0 0 1-.46.18zm7.103 3.7c0 .073-.006.17-.02.29h-4.3c.06.467.264.843.61 1.13.354.28.79.42 1.31.42.634 0 1.144-.213 1.53-.64l.53.62c-.24.28-.54.493-.9.64a3.07 3.07 0 0 1-1.19.22c-.56 0-1.056-.113-1.49-.34a2.53 2.53 0 0 1-1.01-.97 2.801 2.801 0 0 1-.35-1.4c0-.513.114-.977.34-1.39a2.49 2.49 0 0 1 .95-.96c.407-.233.864-.35 1.37-.35.507 0 .957.117 1.35.35.4.227.71.547.93.96.227.413.34.887.34 1.42zm-2.62-1.92c-.46 0-.846.14-1.16.42-.306.28-.486.647-.54 1.1h3.4a1.67 1.67 0 0 0-.55-1.09c-.306-.287-.69-.43-1.15-.43zm5.473 4.6c-.433 0-.85-.057-1.25-.17-.4-.12-.713-.27-.94-.45l.4-.76c.234.167.517.3.85.4.334.1.67.15 1.01.15.84 0 1.26-.24 1.26-.72a.464.464 0 0 0-.17-.38 1.024 1.024 0 0 0-.43-.2 7.436 7.436 0 0 0-.72-.15 7.333 7.333 0 0 1-1.05-.23 1.622 1.622 0 0 1-.69-.44c-.193-.207-.29-.497-.29-.87 0-.48.2-.863.6-1.15.4-.293.937-.44 1.61-.44.354 0 .707.043 1.06.13.354.087.644.203.87.35l-.41.76c-.433-.28-.943-.42-1.53-.42-.406 0-.716.067-.93.2-.213.133-.32.31-.32.53 0 .173.06.31.18.41.12.1.267.173.44.22.18.047.43.1.75.16.427.073.77.153 1.03.24.267.08.494.22.68.42.187.2.28.48.28.84 0 .48-.206.863-.62 1.15-.406.28-.963.42-1.67.42z"/><path stroke="#62699F" stroke-width=".75" d="M365.26 81.17l5.28 5.28m.44-5.18l-5.28 5.27"/><path fill="#EDEDF4" d="M395 74h88v69a5 5 0 0 1-5 5h-78a5 5 0 0 1-5-5V74z"/><path fill="#CFD1E1" d="M395 124h88v19a5 5 0 0 1-5 5h-78a5 5 0 0 1-5-5v-19z"/><path fill="#62699F" d="M418.356 114.956V116h-6.096v-8.4h5.928v1.044h-4.728v2.58h4.212v1.02h-4.212v2.712h4.896zm5.69 1.044l-1.836-2.436-1.86 2.436h-1.284l2.508-3.252-2.388-3.108h1.284l1.752 2.292 1.74-2.292h1.26l-2.4 3.108 2.532 3.252h-1.308zm5.127.072c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm4.001-8.976h1.152V116h-1.152v-8.904zm9.28 2.544V116h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm8.193-2.544V116h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.203-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM412.26 131.6h1.2v8.4h-1.2v-8.4zm6.943 1.98c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V140h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V140h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.579 6.492c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm4.001-8.976h1.152V140h-1.152v-8.904zm9.28 2.544V140h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm8.193-2.544V140h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.204-2.208c0 .088-.008.204-.024.348H451c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="87.5" height="31.5" x="395.25" y="68.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M465 89l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-53.74.6h1.2V88h-1.2v-8.4zm6.943 1.98c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V88h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V88h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.579 6.492c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm4.001-8.976h1.152V88h-1.152v-8.904zm9.28 2.544V88h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V81.64h1.152zm8.193-2.544V88h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.204-2.208c0 .088-.008.204-.024.348H450c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M2 10C2 4.477 6.477 0 12 0h503c5.523 0 10 4.477 10 10v28H2V10z"/><path fill="#C3C5DA" d="M43.746 21.05a11 11 0 0 1 10.445-7.55h66.915a11 11 0 0 1 10.445 7.55L137.149 38h-99l5.597-16.95z"/><path fill="#fff" d="M52.694 22.644v2.928h4.212v1.032h-4.212V30h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V30h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.602 1.032c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.202-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.29-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V30h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V30h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.1-1.608c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V30h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm2.868 1.668h1.152V30h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm8.854 1.224v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><path fill="#8492BB" d="M142.746 21.05a11 11 0 0 1 10.445-7.55h63.915a11 11 0 0 1 10.445 7.55L233.149 38h-96l5.597-16.95z"/><path fill="#fff" d="M143.141 21.521A11.001 11.001 0 0 1 153.577 14h63.143c4.735 0 8.938 3.03 10.436 7.521L232.649 38h-95l5.492-16.479z"/><path fill="#8492BB" d="M171.917 23.144v2.928h4.212v1.032h-4.212V30.5h-1.2v-8.4h5.928v1.044h-4.728zm6.132.996h1.152v6.36h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V30.5h-1.152v-8.904zm7.08 8.532a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.929-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408A3.033 3.033 0 0 1 189.494 29a3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V30.5h-1.152v-6.36h1.104v1.068z"/><path fill="#C3C5DA" d="M238.597 21.05a11.002 11.002 0 0 1 10.446-7.55h87.914c4.746 0 8.957 3.044 10.446 7.55L353 38H233l5.597-16.95z"/><path fill="#fff" d="M251.622 27.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm9.63-5.844V30h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.084-5.424L265.856 30h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm3.192-.06c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V30h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V30h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V30h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.579 6.492c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.737-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM305 21.096V30h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504H305zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.046-6.42v2.928h4.212v1.032h-4.212V30h-1.2v-8.4h5.928v1.044h-4.728zm6.132.996h1.152V30h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V30h-1.152v-8.904zm7.08 8.532a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.847.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V30h-1.152v-6.36h1.104v1.068z"/><path fill="#C3C5DA" d="M358.597 21.05a11.002 11.002 0 0 1 10.446-7.55h51.914c4.746 0 8.957 3.044 10.446 7.55L437 38h-84l5.597-16.95z"/><path fill="#fff" d="M372.388 23.87v2.44h3.51v.86h-3.51V30h-1v-7h4.94v.87h-3.94zm6.786 0h-2.4V23h5.79v.87h-2.4V30h-.99v-6.13zm7.209-.87c.907 0 1.62.217 2.14.65.52.433.78 1.03.78 1.79s-.26 1.357-.78 1.79c-.52.433-1.233.65-2.14.65h-1.73V30h-1v-7h2.73zm-.03 4.01c.634 0 1.117-.133 1.45-.4.334-.273.5-.663.5-1.17 0-.507-.166-.893-.5-1.16-.333-.273-.816-.41-1.45-.41h-1.7v3.14h1.7zm6.018-5.43h.87l-3.3 9.42h-.87l3.3-9.42zm3.391 8.5c-.527 0-1.037-.08-1.53-.24-.487-.167-.87-.38-1.15-.64l.37-.78c.266.24.606.437 1.02.59.42.147.85.22 1.29.22.58 0 1.013-.097 1.3-.29.286-.2.43-.463.43-.79a.75.75 0 0 0-.24-.58 1.495 1.495 0 0 0-.58-.35c-.227-.08-.55-.17-.97-.27a10.278 10.278 0 0 1-1.28-.38 2.178 2.178 0 0 1-.83-.58c-.227-.267-.34-.623-.34-1.07 0-.373.096-.71.29-1.01.2-.3.5-.54.9-.72.4-.18.896-.27 1.49-.27.413 0 .82.053 1.22.16.4.107.743.26 1.03.46l-.33.8a3.51 3.51 0 0 0-.94-.42c-.334-.1-.66-.15-.98-.15-.567 0-.994.103-1.28.31-.28.207-.42.473-.42.8 0 .24.08.437.24.59.16.147.356.263.59.35.24.08.563.167.97.26.526.127.95.253 1.27.38.32.127.593.32.82.58.233.26.35.61.35 1.05 0 .367-.1.703-.3 1.01-.2.3-.504.54-.91.72-.407.173-.907.26-1.5.26zm5.171-6.21v2.44h3.51v.86h-3.51V30h-1v-7h4.94v.87h-3.94zm6.786 0h-2.4V23h5.79v.87h-2.4V30h-.99v-6.13zm7.209-.87c.907 0 1.62.217 2.14.65.52.433.78 1.03.78 1.79s-.26 1.357-.78 1.79c-.52.433-1.233.65-2.14.65h-1.73V30h-1v-7h2.73zm-.03 4.01c.634 0 1.117-.133 1.45-.4.334-.273.5-.663.5-1.17 0-.507-.166-.893-.5-1.16-.333-.273-.816-.41-1.45-.41h-1.7v3.14h1.7z"/></g></svg>
admin/images/ctx-feed-features/category-mapping-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="513" height="312" fill="none" viewBox="0 0 513 312"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h493c5.523 0 10 4.477 10 10v292c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="40" y="233" fill="#62699F" rx="5"/><path fill="#fff" d="M59.708 253.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.153-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V253h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm10.63-5.544L74.445 253h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM96.653 253l-.012-6.12-3.035 5.1h-.552l-3.037-5.064V253h-1.151v-8.4h.984l3.504 5.904 3.456-5.904h.983l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V253h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V253h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V253h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V253h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><rect width="6" height="1" x="104" y="227.24" fill="#62699F" rx=".5" transform="rotate(-45 104 227.243)"/><rect width="6" height="1" x="99" y="218" fill="#62699F" rx=".5" transform="rotate(90 99 218)"/><rect width="6" height="1" x="93" y="227.95" fill="#62699F" rx=".5" transform="rotate(-135 93 227.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M97.309 275.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><path fill="#6577AA" d="M45.016 144.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm4.748-9h1.152V144h-1.152v-8.904zm6.075 8.976c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.47.564a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.788-6.048c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V144h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V144h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm4.772.06h1.152V144H73.87v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V144h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V144H77.22v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><rect width="229.5" height="31.5" x="243.25" y="124.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M264.408 137.58c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V144h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.161-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V144h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V144h-1.152v-6.36h1.104v1.068zm9.425 2.148c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.743-3.456h1.152V144h-1.152v-8.904z"/><path fill="#6577AA" d="M45.016 191.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm4.748-9h1.152V191h-1.152v-8.904zm6.075 8.976c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.47.564a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.788-6.048c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V191h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V191h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm4.772.06h1.152V191H73.87v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V191h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V191H77.22v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm13.824-3.444v1.032l-5.376 2.124v-.996l4.272-1.644-4.272-1.644v-.996l5.376 2.124zm12.511-3.684v8.4h-1.2v-3.744h-4.824V191h-1.2v-8.4h1.2v3.612h4.824V182.6h1.2zm5.07 8.472c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.894-7.968V191h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.455-5.424h1.152V191h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm8.524 4.44c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.567 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/><rect width="229.5" height="31.5" x="243.25" y="171.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M264.408 184.58c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V191h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.161-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V191h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V191h-1.152v-6.36h1.104v1.068zm9.425 2.148c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.743-3.456h1.152V191h-1.152v-8.904zm11.663 4.188v1.032l-5.376 2.124v-.996l4.272-1.644-4.272-1.644v-.996l5.376 2.124zm12.511-3.684v8.4h-1.2v-3.744h-4.824V191h-1.2v-8.4h1.2v3.612h4.824V182.6h1.2zm5.07 8.472c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V191h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.456-5.424h1.152V191h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm8.524 4.44c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.567 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/><path fill="#CFD1DB" fill-opacity=".5" d="M40 105h433v2H40zm0 3h433v1H40z"/><path fill="#6577AA" d="M41.26 79.6h1.2v7.356h4.548V88H41.26v-8.4zm9.599 8.472c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.665 1.008c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm6.4-6.492c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V88h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H64.72c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.151V88H69.78v-8.904zm10.498 9c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm6.982-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V88h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.695.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.828-.912v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm8.237 1.344c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V88h-1.152v-6.36h1.104v1.068zm9.622-1.068l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zM252.048 88l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V88h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm9.253-3.144c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V88h-1.152v-6.36h1.104v1.068zm6.449 5.364c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.397-6.492c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V88h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V88h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V88h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V88h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V88h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.348 6.048a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm8.54.468c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm6.981-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V88h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.828-.912v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm8.237 1.344c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V88h-1.152v-6.36h1.104v1.068zm9.622-1.068l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h493c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M45.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M61.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M77.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="176" height="18" x="168" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M204.539 23.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm6.982-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.929-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.828-.912v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm8.237 1.344c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V23h-1.152v-6.36h1.104v1.068zm9.622-1.068l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zM267.364 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.275-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V23H294.4v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(89 260)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/custom-taxonomy-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="486" height="373" fill="none" viewBox="0 0 486 373"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v353c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="124" height="32" x="40" y="294" fill="#62699F" rx="5"/><path fill="#fff" d="M62.612 311.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm9.63-5.844V314H70.72v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.153-1.14c-.271-.496-.407-1.064-.407-1.704 0-.64.136-1.204.407-1.692.28-.488.665-.868 1.153-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.383.168.704.42.96.756v-3.504h1.151zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.091-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.575.448-.767.792a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.275 1.176.192.336.448.6.768.792.329.184.697.276 1.105.276zm11.456-7.968V314h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm15.825 1.032c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.203-.024c-.633 0-1.2-.14-1.705-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.633 0 1.197.14 1.693.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.151 2.151 0 0 0-1.093-.276c-.407 0-.775.092-1.103.276-.32.184-.577.448-.769.792a2.385 2.385 0 0 0-.275 1.164c0 .44.092.832.276 1.176.191.336.447.6.767.792.329.184.697.276 1.105.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V314h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V314h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.807-2.484V314h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.456-5.424h1.152V314h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.351 7.212a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V314h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.499 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.29-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V314h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V314h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264z"/><rect width="6" height="1" x="107" y="288.24" fill="#62699F" rx=".5" transform="rotate(-45 107 288.243)"/><rect width="6" height="1" x="102" y="279" fill="#62699F" rx=".5" transform="rotate(90 102 279)"/><rect width="6" height="1" x="96" y="288.95" fill="#62699F" rx=".5" transform="rotate(-135 96 288.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M97.309 336.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><path fill="#EDEDF4" d="M315 123h131v122a5 5 0 0 1-5 5H320a5 5 0 0 1-5-5V123z"/><path fill="#CFD1E1" d="M315 173h131v24H315z"/><path fill="#62699F" d="M336.016 165.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.202-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm4.894-7.968h1.152V165h-1.152v-8.904zm6.075 8.976c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V165h-1.152v-6.36h1.104v1.068zm-22.272 24.936c.488.136.872.384 1.152.744.28.352.42.8.42 1.344 0 .728-.276 1.288-.828 1.68-.544.392-1.34.588-2.388.588h-4.008v-8.4h3.768c.96 0 1.7.192 2.22.576.528.384.792.916.792 1.596 0 .44-.104.82-.312 1.14-.2.32-.472.564-.816.732zm-4.452-3.072v2.688h2.46c.616 0 1.088-.112 1.416-.336.336-.232.504-.568.504-1.008 0-.44-.168-.772-.504-.996-.328-.232-.8-.348-1.416-.348h-2.46zm2.76 6.456c.68 0 1.192-.112 1.536-.336.344-.224.516-.576.516-1.056 0-.936-.684-1.404-2.052-1.404h-2.76v2.796h2.76zm6.058-4.32c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V189h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V189h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V189h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V189h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.807-2.484V189h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zM340.048 213l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V213h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm6.229.072c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V213h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.204-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.743-3.456h1.152V213h-1.152v-8.904zm-31.989 33a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm4.837-6.456h1.152V237h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm7.492 6.636V237h-5.328v-.744l3.756-4.668h-3.684v-.948h5.16v.756l-3.756 4.656h3.852zm7.196-2.196c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="144.5" height="31.5" x="40.25" y="117.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M62.912 132.644c.488.136.872.384 1.152.744.28.352.42.8.42 1.344 0 .728-.276 1.288-.828 1.68-.544.392-1.34.588-2.388.588H57.26v-8.4h3.768c.96 0 1.7.192 2.22.576.528.384.792.916.792 1.596 0 .44-.104.82-.312 1.14-.2.32-.472.564-.816.732zm-4.452-3.072v2.688h2.46c.616 0 1.088-.112 1.416-.336.336-.232.504-.568.504-1.008 0-.44-.168-.772-.504-.996-.328-.232-.8-.348-1.416-.348h-2.46zm2.76 6.456c.68 0 1.192-.112 1.536-.336.344-.224.516-.576.516-1.056 0-.936-.684-1.404-2.052-1.404h-2.76v2.796h2.76zm6.058-4.32c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V137h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V137H74.95v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V137h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V137h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.807-2.484V137h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="130.5" height="31.5" x="315.25" y="117.25" fill="#F5F5F9" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M416 138l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-78.088 4.644c.488.136.872.384 1.152.744.28.352.42.8.42 1.344 0 .728-.276 1.288-.828 1.68-.544.392-1.34.588-2.388.588h-4.008v-8.4h3.768c.96 0 1.7.192 2.22.576.528.384.792.916.792 1.596 0 .44-.104.82-.312 1.14-.2.32-.472.564-.816.732zm-4.452-3.072v2.688h2.46c.616 0 1.088-.112 1.416-.336.336-.232.504-.568.504-1.008 0-.44-.168-.772-.504-.996-.328-.232-.8-.348-1.416-.348h-2.46zm2.76 6.456c.68 0 1.192-.112 1.536-.336.344-.224.516-.576.516-1.056 0-.936-.684-1.404-2.052-1.404h-2.76v2.796h2.76zm6.058-4.32c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V137h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V137h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V137h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V137h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.807-2.484V137h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="109.5" height="31.5" x="195.25" y="117.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M286 138l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-68.388 6.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V137h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V137h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V137h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V137h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#CFD1DB" d="M40 96h406v2H40zm0 3h406v1H40z"/><path fill="#6577AA" d="M46.612 77.096h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96L44.38 72.02l-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.623.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.529-.836-.529-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.825v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.425.276.745.276.351 0 .651-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584v3.168h-1.152v-6.36h1.104v1.068zm3.736-1.068H65.6v6.36h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228.75.75 0 0 1 .552.216.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.147 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804v1.008h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424v6.36h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H85.42v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm106.466-1.908h-2.88v-1.044h6.948v1.044h-2.88v7.356h-1.188V71.84zm10.437.996l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zm4.447-.06c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.651-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM323.556 70.6l-3.684 8.4h-1.188l-3.696-8.4h1.296l3.024 6.9 3.048-6.9h1.2zm2.739 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V79h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.152V79h-1.152v-8.904zm9.279 2.544V79h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V72.64h1.152zm7.941 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="129" height="18" x="179" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M219.237 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.592-2.148l-1.32 1.224V23h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628L236.19 23h-1.416l-2.388-2.964zm10.401-.18c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.335-1.908v2.928h4.212v1.032h-4.212V23h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(89 321)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/custom-template-1-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="486" height="358" fill="none" viewBox="0 0 486 358"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v338c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="124" height="32" x="40" y="285" fill="#62699F" rx="5"/><path fill="#fff" d="M62.612 302.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm9.63-5.844V305H70.72v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.153-1.14c-.271-.496-.407-1.064-.407-1.704 0-.64.136-1.204.407-1.692.28-.488.665-.868 1.153-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.383.168.704.42.96.756v-3.504h1.151zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.091-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.575.448-.767.792a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.275 1.176.192.336.448.6.768.792.329.184.697.276 1.105.276zm11.456-7.968V305h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm15.825 1.032c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.203-.024c-.633 0-1.2-.14-1.705-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.633 0 1.197.14 1.693.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.151 2.151 0 0 0-1.093-.276c-.407 0-.775.092-1.103.276-.32.184-.577.448-.769.792a2.385 2.385 0 0 0-.275 1.164c0 .44.092.832.276 1.176.191.336.447.6.767.792.329.184.697.276 1.105.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V305h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V305h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.807-2.484V305h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.456-5.424h1.152V305h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.351 7.212a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V305h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.499 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.29-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V305h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V305h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264z"/><rect width="6" height="1" x="107" y="279.24" fill="#62699F" rx=".5" transform="rotate(-45 107 279.243)"/><rect width="6" height="1" x="102" y="270" fill="#62699F" rx=".5" transform="rotate(90 102 270)"/><rect width="6" height="1" x="96" y="279.95" fill="#62699F" rx=".5" transform="rotate(-135 96 279.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M97.309 327.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><rect width="144.5" height="31.5" x="40.25" y="102.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M57.26 113.6h1.2v8.4h-1.2v-8.4zm3.715 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><rect width="130.5" height="31.5" x="315.25" y="102.25" fill="#F5F5F9" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 123l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-91.464.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V122h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V122h-1.152v-6.36h1.104v1.068zm6.401 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V122h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.384-5.424V122h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.965 6.432c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.741-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.784-8.028h1.2v8.4h-1.2v-8.4zm3.714 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><rect width="109.5" height="31.5" x="195.25" y="102.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M286 123l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-68.388 6.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V122h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V122h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V122h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V122h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="144.5" height="31.5" x="40.25" y="144.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M58.928 156.644h-2.88V155.6h6.948v1.044h-2.88V164h-1.188v-7.356zm5.055.996h1.152V164h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.351 7.212a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-8.532h1.152V164h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.733 1.356.424.336.948.504 1.572.504.76 0 1.371-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.425.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.147.14 1.62.42.48.272.852.656 1.115 1.152.272.496.409 1.064.409 1.704zm-3.145-2.304c-.551 0-1.015.168-1.391.504-.368.336-.585.776-.648 1.32h4.08c-.065-.536-.285-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="130.5" height="31.5" x="315.25" y="144.25" fill="#F5F5F9" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 165l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-91.464.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V164h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V164h-1.152v-6.36h1.104v1.068zm6.401 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V164h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.384-5.424V164h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.965 6.432c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.741-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.452-6.984h-2.88V155.6h6.948v1.044h-2.88V164h-1.188v-7.356zm5.054.996h1.152V164h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.352 7.212a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-8.532h1.152V164h-1.152v-8.904zm9.099 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="109.5" height="31.5" x="195.25" y="144.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M286 165l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-68.388 6.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V164h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V164h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V164h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V164h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="144.5" height="31.5" x="40.25" y="186.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M60.536 197.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78H58.46V206h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.133-1.704c.2-.368.496-.648.889-.84.391-.192.867-.288 1.427-.288v1.116a2.249 2.249 0 0 0-.263-.012c-.625 0-1.117.188-1.477.564-.352.368-.528.896-.528 1.584V206H65.53v-6.36h1.103v1.068zm3.736-1.068h1.152V206H70.37v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.548 7.656c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="130.5" height="31.5" x="315.25" y="186.25" fill="#F5F5F9" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 207l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-91.464.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V206h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V206h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V206h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.548 7.656c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="109.5" height="31.5" x="195.25" y="186.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M286 207l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-68.388 6.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V206h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V206h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V206h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V206h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="144.5" height="31.5" x="40.25" y="228.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M57.26 239.6h1.2v8.4h-1.2v-8.4zm11.503 1.98c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V248h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V248H65.51v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V248h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm7.04 0c.88 0 1.552.216 2.016.648.471.432.707 1.076.707 1.932V248h-1.091v-.84a1.853 1.853 0 0 1-.829.684c-.352.152-.771.228-1.26.228-.712 0-1.284-.172-1.716-.516-.423-.344-.635-.796-.635-1.356s.203-1.008.611-1.344c.409-.344 1.056-.516 1.945-.516h1.823v-.228c0-.496-.143-.876-.431-1.14-.288-.264-.712-.396-1.272-.396-.377 0-.745.064-1.105.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6a4.8 4.8 0 0 1 1.453-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.695-.84v-.888H75.6c-.977 0-1.465.328-1.465.984 0 .32.124.572.373.756.247.184.591.276 1.031.276zm11.239-5.544v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm11.26-1.872c0 .088-.007.204-.023.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.143-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="130.5" height="31.5" x="315.25" y="228.25" fill="#F5F5F9" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 249l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-86.952 9l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V248h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V248h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-5.544h1.152V248h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V248h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V248h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.163-1.98h1.2v8.4h-1.2v-8.4zm11.503 1.98c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V248h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V248h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V248h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm7.04 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V248h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm11.239-5.544v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm11.261-1.872c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="109.5" height="31.5" x="195.25" y="228.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M286 249l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-68.388 6.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V248h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V248h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V248h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V248h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#CFD1DB" d="M40 88h406v2H40zm0 3h406v1H40z"/><path fill="#6577AA" d="M45.016 75.292c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm10.477-6.456v6.36H54.4v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.017 6.432c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm7.764-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.769.108c-.64 0-1.135-.172-1.487-.516-.353-.344-.529-.836-.529-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.825v.948h-1.825v3.444c0 .344.085.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.905.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.85-5.484c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064v3.66h-1.151v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.213-.468-.584 0-1.047.184-1.391.552-.344.36-.516.88-.516 1.56v3.276h-1.153v-3.528c0-.616-.144-1.08-.431-1.392-.28-.312-.684-.468-1.213-.468-.584 0-1.047.184-1.392.552-.343.36-.515.88-.515 1.56v3.276h-1.152v-6.36h1.104v.948c.231-.328.535-.576.911-.744a2.995 2.995 0 0 1 1.285-.264c.495 0 .935.1 1.32.3.383.2.68.492.888.876.24-.368.572-.656.995-.864a3.304 3.304 0 0 1 1.453-.312zm16.688 4.32h-4.463l-.925 2.1h-1.235l3.803-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.811-4.116-1.813 4.116h3.624zm7.207 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584v3.168h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152v6.36h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408 3.02 3.02 0 0 1-1.297-.276 2.499 2.499 0 0 1-.971-.804v1.008h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.831-5.424v6.36h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm52.361-1.908h-2.88v-1.044h6.948v1.044h-2.88v7.356h-1.188V67.84zm10.437.996l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zm4.447-.06c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.651-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM323.242 66.6l-3.684 8.4h-1.188l-3.696-8.4h1.296l3.024 6.9 3.048-6.9h1.2zm2.739 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V75h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.152V75h-1.152v-8.904zm9.279 2.544V75h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V68.64h1.152zm7.942 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="177" height="18" x="154" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M189.131 23.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm10.477-6.456V23h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V16.64h1.152zm4.017 6.432c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm7.764-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.849-5.484c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V23h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V23h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V23h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm9.782-.936h-2.88V14.6h6.948v1.044h-2.88V23h-1.188v-7.356zm10.299 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm12.699-.972c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V23h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V23h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V23h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.096 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V23h-1.152v-8.904zm5.667 2.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.054-2.952V23h-1.188v-7.356h-1.896V14.6h3.084z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(89 312)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/default-schema-override-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="486" height="378" fill="none" viewBox="0 0 486 378"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v358c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="30" y="141" fill="#62699F" rx="5"/><path fill="#fff" d="M49.708 161.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.153-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V161h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm10.63-5.544L64.445 161h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm11.89 5.544c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.383-.656-.576-1.392-.576-2.208 0-.816.193-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.657 0 1.257.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996a3.42 3.42 0 0 0-1.691.42c-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.287.488.683.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm8.144-6.516c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V161h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V161H87.37v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V161h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H97.65c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V161h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V161h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm11.261-1.872c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.568 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/><rect width="6" height="1" x="94.24" y="135.24" fill="#62699F" rx=".5" transform="rotate(-45 94.243 135.243)"/><rect width="6" height="1" x="89.24" y="126" fill="#62699F" rx=".5" transform="rotate(90 89.243 126)"/><rect width="6" height="1" x="83.24" y="135.95" fill="#62699F" rx=".5" transform="rotate(-135 83.243 135.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M90.309 183.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.144-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><rect width="419" height="144" x="30" y="204" fill="#fff" rx="5"/><path fill="#8187B2" d="M55.241 242a.248.248 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-11.492c0-.057.017-.102.051-.136a.213.213 0 0 1 .153-.068h4.25c.85 0 1.592.153 2.227.459.646.295 1.145.714 1.496 1.258s.527 1.173.527 1.887v4.692c0 .714-.176 1.343-.527 1.887-.351.544-.85.969-1.496 1.275-.635.295-1.377.442-2.227.442h-4.25zm2.193-2.142c0 .057.028.085.085.085h2.057c.521 0 .94-.176 1.258-.527.329-.351.499-.822.51-1.411v-3.91c0-.589-.164-1.06-.493-1.411-.317-.351-.748-.527-1.292-.527h-2.04c-.057 0-.085.028-.085.085v7.616zm15.694-3.128c.068.431.09.912.068 1.445-.011.136-.085.204-.221.204h-5.253c-.068 0-.09.028-.068.085.034.227.096.453.187.68.294.635.895.952 1.802.952.725-.011 1.297-.306 1.717-.884.045-.068.096-.102.153-.102.034 0 .073.023.119.068l1.224 1.207c.056.057.085.108.085.153 0 .023-.023.068-.068.136a3.782 3.782 0 0 1-1.445 1.088 4.93 4.93 0 0 1-1.938.374c-.975 0-1.802-.221-2.482-.663-.669-.442-1.15-1.06-1.445-1.853-.238-.567-.357-1.309-.357-2.227 0-.623.085-1.173.255-1.649.26-.805.714-1.445 1.36-1.921.657-.476 1.433-.714 2.329-.714 1.133 0 2.04.329 2.72.986.691.657 1.11 1.536 1.258 2.635zm-3.961-1.547c-.714 0-1.184.334-1.411 1.003a4.017 4.017 0 0 0-.12.544c0 .057.03.085.086.085h2.94c.069 0 .091-.028.069-.085a14.086 14.086 0 0 0-.085-.476 1.408 1.408 0 0 0-.544-.782c-.25-.193-.561-.289-.935-.289zm15.196-2.057c.884 0 1.575.266 2.074.799.499.533.748 1.281.748 2.244v5.627a.21.21 0 0 1-.068.153.184.184 0 0 1-.136.051h-1.989a.248.248 0 0 1-.153-.051.247.247 0 0 1-.05-.153v-5.1c0-.465-.12-.833-.358-1.105s-.555-.408-.952-.408c-.397 0-.72.136-.969.408-.25.272-.374.635-.374 1.088v5.117a.21.21 0 0 1-.068.153.184.184 0 0 1-.136.051H79.96a.248.248 0 0 1-.153-.051.247.247 0 0 1-.05-.153v-5.1c0-.453-.126-.816-.375-1.088a1.232 1.232 0 0 0-.969-.425c-.363 0-.669.108-.918.323-.238.215-.38.516-.425.901v5.389a.21.21 0 0 1-.068.153.184.184 0 0 1-.136.051h-1.989a.248.248 0 0 1-.153-.051.247.247 0 0 1-.05-.153v-8.33c0-.057.016-.102.05-.136a.213.213 0 0 1 .153-.068h1.99c.056 0 .101.023.135.068a.161.161 0 0 1 .068.136v.663c0 .034.011.057.034.068.023.011.045 0 .068-.034.465-.691 1.184-1.037 2.16-1.037.566 0 1.059.119 1.478.357.43.238.76.578.986 1.02.034.068.074.068.12 0 .248-.465.583-.81 1.002-1.037a3.05 3.05 0 0 1 1.445-.34zm8.314 9.01c-.952 0-1.768-.249-2.448-.748-.68-.499-1.145-1.179-1.394-2.04a6.052 6.052 0 0 1-.238-1.734c0-.669.079-1.269.238-1.802.26-.839.73-1.496 1.41-1.972.68-.476 1.497-.714 2.449-.714.929 0 1.722.238 2.38.714.657.465 1.122 1.116 1.394 1.955.18.567.272 1.162.272 1.785 0 .612-.08 1.184-.238 1.717-.25.884-.714 1.581-1.394 2.091-.67.499-1.48.748-2.431.748zm0-2.057c.374 0 .69-.113.952-.34.26-.227.447-.538.56-.935a4.9 4.9 0 0 0 .137-1.19c0-.476-.046-.878-.136-1.207-.125-.385-.318-.686-.578-.901a1.448 1.448 0 0 0-.952-.323c-.386 0-.709.108-.97.323-.249.215-.43.516-.543.901-.091.272-.136.674-.136 1.207 0 .51.04.907.119 1.19.113.397.3.708.56.935.273.227.601.34.987.34zm13.24 2.057c-.907 0-1.7-.142-2.38-.425-.68-.295-1.207-.708-1.581-1.241-.363-.544-.544-1.173-.544-1.887v-.374c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.938c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v.255c0 .453.209.839.629 1.156.419.306.986.459 1.7.459.6 0 1.048-.125 1.343-.374.294-.261.442-.578.442-.952a.923.923 0 0 0-.272-.68 2.208 2.208 0 0 0-.748-.493 18.234 18.234 0 0 0-1.479-.595 15.025 15.025 0 0 1-1.938-.799 4.008 4.008 0 0 1-1.326-1.105c-.352-.476-.527-1.06-.527-1.751 0-.68.175-1.275.527-1.785.351-.51.838-.901 1.462-1.173.623-.272 1.343-.408 2.159-.408.861 0 1.626.153 2.295.459.68.306 1.207.737 1.581 1.292.385.544.578 1.179.578 1.904v.255a.212.212 0 0 1-.068.153.185.185 0 0 1-.136.051h-1.955a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-.136c0-.476-.199-.878-.595-1.207-.386-.34-.918-.51-1.598-.51-.533 0-.952.113-1.258.34-.295.227-.442.538-.442.935 0 .283.085.521.255.714.181.193.442.368.782.527.351.147.889.351 1.615.612.804.295 1.433.555 1.887.782.464.227.878.567 1.241 1.02.374.442.561 1.02.561 1.734 0 1.065-.391 1.91-1.173 2.533-.782.612-1.842.918-3.179.918zm10.433-9.01c.907 0 1.638.278 2.193.833.555.555.833 1.309.833 2.261v5.576a.212.212 0 0 1-.068.153.183.183 0 0 1-.136.051h-1.989a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-5.083c0-.453-.13-.822-.391-1.105-.249-.283-.584-.425-1.003-.425-.419 0-.759.142-1.02.425-.249.283-.374.652-.374 1.105v5.083a.212.212 0 0 1-.068.153.183.183 0 0 1-.136.051h-1.989a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-11.492c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.989c.057 0 .102.023.136.068a.162.162 0 0 1 .068.136v3.757c0 .034.011.057.034.068.023.011.04.006.051-.017.465-.657 1.156-.986 2.074-.986zm8.55 9.01c-.952 0-1.768-.249-2.448-.748-.68-.499-1.144-1.179-1.394-2.04a6.077 6.077 0 0 1-.238-1.734c0-.669.08-1.269.238-1.802.261-.839.731-1.496 1.411-1.972s1.496-.714 2.448-.714c.93 0 1.723.238 2.38.714.658.465 1.122 1.116 1.394 1.955.182.567.272 1.162.272 1.785 0 .612-.079 1.184-.238 1.717-.249.884-.714 1.581-1.394 2.091-.668.499-1.479.748-2.431.748zm0-2.057c.374 0 .692-.113.952-.34.261-.227.448-.538.561-.935.091-.363.136-.759.136-1.19 0-.476-.045-.878-.136-1.207-.124-.385-.317-.686-.578-.901a1.446 1.446 0 0 0-.952-.323c-.385 0-.708.108-.969.323-.249.215-.43.516-.544.901-.09.272-.136.674-.136 1.207 0 .51.04.907.119 1.19.114.397.301.708.561.935.272.227.601.34.986.34zm13.339-3.349c.068.431.091.912.068 1.445-.011.136-.085.204-.221.204h-5.253c-.068 0-.091.028-.068.085.034.227.096.453.187.68.295.635.895.952 1.802.952.725-.011 1.298-.306 1.717-.884.045-.068.096-.102.153-.102.034 0 .074.023.119.068l1.224 1.207c.057.057.085.108.085.153 0 .023-.023.068-.068.136a3.784 3.784 0 0 1-1.445 1.088 4.927 4.927 0 0 1-1.938.374c-.975 0-1.802-.221-2.482-.663-.669-.442-1.15-1.06-1.445-1.853-.238-.567-.357-1.309-.357-2.227 0-.623.085-1.173.255-1.649.261-.805.714-1.445 1.36-1.921.657-.476 1.434-.714 2.329-.714 1.133 0 2.04.329 2.72.986.691.657 1.111 1.536 1.258 2.635zm-3.961-1.547c-.714 0-1.184.334-1.411 1.003a4.064 4.064 0 0 0-.119.544c0 .057.028.085.085.085h2.941c.068 0 .091-.028.068-.085a15.221 15.221 0 0 0-.085-.476 1.407 1.407 0 0 0-.544-.782c-.249-.193-.561-.289-.935-.289zm8.757 8.177a.212.212 0 0 1-.153-.068.183.183 0 0 1-.051-.136v-13.872c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.989c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v13.872a.162.162 0 0 1-.068.136.163.163 0 0 1-.136.068h-1.989zm15.424-11.407a.212.212 0 0 1-.068.153.183.183 0 0 1-.136.051h-5.576c-.057 0-.085.028-.085.085v2.635c0 .057.028.085.085.085h3.655c.057 0 .102.023.136.068a.162.162 0 0 1 .068.136v1.649a.212.212 0 0 1-.068.153.183.183 0 0 1-.136.051h-3.655c-.057 0-.085.028-.085.085v2.754c0 .057.028.085.085.085h5.576c.057 0 .102.023.136.068a.162.162 0 0 1 .068.136v1.649a.212.212 0 0 1-.068.153.183.183 0 0 1-.136.051h-7.854a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-11.492c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h7.854c.057 0 .102.023.136.068a.162.162 0 0 1 .068.136v1.649zM159.632 242c-.079 0-.136-.023-.17-.068-.023-.057-.011-.119.034-.187l2.737-4.063a.084.084 0 0 0 0-.102l-2.737-4.063a.268.268 0 0 1-.034-.119c0-.091.057-.136.17-.136h2.125c.102 0 .181.045.238.136l1.53 2.329c.045.068.085.068.119 0l1.53-2.329a.266.266 0 0 1 .238-.136h2.278c.079 0 .13.028.153.085.023.045.011.102-.034.17l-2.72 4.063a.162.162 0 0 0 0 .102l2.72 4.063a.208.208 0 0 1 .034.119c0 .091-.051.136-.153.136h-2.142a.266.266 0 0 1-.238-.136l-1.53-2.329c-.034-.068-.068-.068-.102 0l-1.53 2.329a.266.266 0 0 1-.238.136h-2.278zm12.956-8.874c.736 0 1.394.13 1.972.391.578.249 1.025.595 1.343 1.037.328.442.493.935.493 1.479v5.763a.212.212 0 0 1-.068.153.185.185 0 0 1-.136.051h-1.989a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-.561c0-.034-.012-.057-.034-.068-.023-.011-.046 0-.068.034-.476.623-1.241.935-2.295.935-.884 0-1.598-.215-2.142-.646-.544-.431-.816-1.065-.816-1.904 0-.873.306-1.547.918-2.023.612-.487 1.484-.731 2.618-.731h1.734c.056 0 .085-.028.085-.085v-.374c0-.374-.114-.663-.34-.867-.227-.215-.567-.323-1.02-.323-.352 0-.646.062-.884.187a.876.876 0 0 0-.442.527c-.034.125-.108.181-.221.17l-2.057-.272c-.136-.023-.199-.074-.187-.153.045-.476.232-.907.561-1.292.34-.385.782-.686 1.326-.901a5.093 5.093 0 0 1 1.853-.323zm-.34 7.225c.487 0 .901-.13 1.241-.391.34-.261.51-.595.51-1.003v-.612c0-.057-.029-.085-.085-.085h-1.224c-.51 0-.913.096-1.207.289a.93.93 0 0 0-.425.816c0 .306.107.55.323.731.215.17.504.255.867.255zm15.526-7.225c.884 0 1.576.266 2.074.799.499.533.748 1.281.748 2.244v5.627a.208.208 0 0 1-.068.153.183.183 0 0 1-.136.051h-1.989a.251.251 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-5.1c0-.465-.119-.833-.357-1.105s-.555-.408-.952-.408c-.396 0-.719.136-.969.408-.249.272-.374.635-.374 1.088v5.117a.208.208 0 0 1-.068.153.183.183 0 0 1-.136.051h-1.972a.251.251 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-5.1c0-.453-.124-.816-.374-1.088a1.23 1.23 0 0 0-.969-.425 1.36 1.36 0 0 0-.918.323c-.238.215-.379.516-.425.901v5.389a.208.208 0 0 1-.068.153.183.183 0 0 1-.136.051h-1.989a.251.251 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-8.33c0-.057.017-.102.051-.136a.215.215 0 0 1 .153-.068h1.989c.057 0 .102.023.136.068a.16.16 0 0 1 .068.136v.663c0 .034.012.057.034.068.023.011.046 0 .068-.034.465-.691 1.185-1.037 2.159-1.037.567 0 1.06.119 1.479.357.431.238.76.578.986 1.02.034.068.074.068.119 0 .25-.465.584-.81 1.003-1.037.431-.227.913-.34 1.445-.34zm12.308 2.482c.204.578.306 1.258.306 2.04s-.108 1.49-.323 2.125c-.261.725-.675 1.303-1.241 1.734-.556.419-1.247.629-2.074.629-.816 0-1.451-.283-1.904-.85-.023-.034-.046-.045-.068-.034-.023.011-.034.034-.034.068v3.638a.162.162 0 0 1-.068.136.163.163 0 0 1-.136.068h-1.989a.212.212 0 0 1-.153-.068.183.183 0 0 1-.051-.136v-11.492c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.989c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v.561c0 .034.011.057.034.068.022 0 .045-.011.068-.034.476-.623 1.133-.935 1.972-.935.782 0 1.456.221 2.023.663.578.431.991 1.037 1.241 1.819zm-2.601 3.808c.283-.442.425-1.043.425-1.802 0-.714-.119-1.281-.357-1.7-.261-.487-.68-.731-1.258-.731-.522 0-.913.244-1.173.731-.238.408-.357.98-.357 1.717 0 .759.124 1.349.374 1.768.26.453.646.68 1.156.68.51 0 .906-.221 1.19-.663zm4.664 2.584a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-11.492c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.989c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v11.492a.212.212 0 0 1-.068.153.185.185 0 0 1-.136.051h-1.989zm11.681-5.27c.068.431.091.912.068 1.445-.011.136-.085.204-.221.204h-5.253c-.068 0-.091.028-.068.085.034.227.096.453.187.68.295.635.895.952 1.802.952.725-.011 1.298-.306 1.717-.884.045-.068.096-.102.153-.102.034 0 .074.023.119.068l1.224 1.207c.057.057.085.108.085.153 0 .023-.023.068-.068.136a3.784 3.784 0 0 1-1.445 1.088 4.927 4.927 0 0 1-1.938.374c-.975 0-1.802-.221-2.482-.663-.669-.442-1.15-1.06-1.445-1.853-.238-.567-.357-1.309-.357-2.227 0-.623.085-1.173.255-1.649.261-.805.714-1.445 1.36-1.921.657-.476 1.434-.714 2.329-.714 1.133 0 2.04.329 2.72.986.691.657 1.111 1.536 1.258 2.635zm-3.961-1.547c-.714 0-1.184.334-1.411 1.003a4.064 4.064 0 0 0-.119.544c0 .057.028.085.085.085h2.941c.068 0 .091-.028.068-.085a15.221 15.221 0 0 0-.085-.476 1.407 1.407 0 0 0-.544-.782c-.249-.193-.561-.289-.935-.289zm9.739 6.953c-.906 0-1.7-.142-2.38-.425-.68-.295-1.207-.708-1.581-1.241-.362-.544-.544-1.173-.544-1.887v-.374c0-.057.017-.102.051-.136a.215.215 0 0 1 .153-.068h1.938c.057 0 .102.023.136.068a.16.16 0 0 1 .068.136v.255c0 .453.21.839.629 1.156.42.306.986.459 1.7.459.601 0 1.049-.125 1.343-.374.295-.261.442-.578.442-.952a.92.92 0 0 0-.272-.68c-.181-.193-.43-.357-.748-.493a18.234 18.234 0 0 0-1.479-.595 15.145 15.145 0 0 1-1.938-.799 4.028 4.028 0 0 1-1.326-1.105c-.351-.476-.527-1.06-.527-1.751 0-.68.176-1.275.527-1.785.352-.51.839-.901 1.462-1.173.624-.272 1.343-.408 2.159-.408.862 0 1.627.153 2.295.459.68.306 1.207.737 1.581 1.292.386.544.578 1.179.578 1.904v.255a.208.208 0 0 1-.068.153.183.183 0 0 1-.136.051h-1.955a.251.251 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-.136c0-.476-.198-.878-.595-1.207-.385-.34-.918-.51-1.598-.51-.532 0-.952.113-1.258.34-.294.227-.442.538-.442.935 0 .283.085.521.255.714.182.193.442.368.782.527.352.147.89.351 1.615.612.805.295 1.434.555 1.887.782.465.227.879.567 1.241 1.02.374.442.561 1.02.561 1.734 0 1.065-.391 1.91-1.173 2.533-.782.612-1.841.918-3.179.918zm7.17-9.86c-.386 0-.709-.125-.969-.374a1.346 1.346 0 0 1-.374-.969c0-.397.124-.72.374-.969.249-.249.572-.374.969-.374.396 0 .719.125.969.374.249.249.374.572.374.969 0 .385-.131.708-.391.969-.25.249-.567.374-.952.374zm-1.02 9.724a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-8.347c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.989c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v8.347a.212.212 0 0 1-.068.153.185.185 0 0 1-.136.051h-1.989zm9.076-7.021a.212.212 0 0 1-.068.153.185.185 0 0 1-.136.051h-1.632c-.057 0-.085.028-.085.085v3.604c0 .374.073.652.221.833.158.181.408.272.748.272h.561c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v1.615c0 .125-.068.198-.204.221-.476.023-.816.034-1.02.034-.941 0-1.644-.153-2.108-.459-.465-.317-.703-.907-.714-1.768v-4.556c0-.057-.029-.085-.085-.085h-.969a.247.247 0 0 1-.153-.051.247.247 0 0 1-.051-.153v-1.513c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h.969c.056 0 .085-.028.085-.085v-2.023c0-.057.017-.102.051-.136a.212.212 0 0 1 .153-.068h1.904c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v2.023c0 .057.028.085.085.085h1.632c.056 0 .102.023.136.068a.162.162 0 0 1 .068.136v1.513zm9.061 1.751c.068.431.091.912.068 1.445-.011.136-.085.204-.221.204h-5.253c-.068 0-.09.028-.068.085.034.227.097.453.187.68.295.635.896.952 1.802.952.726-.011 1.298-.306 1.717-.884.046-.068.097-.102.153-.102.034 0 .074.023.119.068l1.224 1.207c.057.057.085.108.085.153 0 .023-.022.068-.068.136a3.777 3.777 0 0 1-1.445 1.088 4.927 4.927 0 0 1-1.938.374c-.974 0-1.802-.221-2.482-.663-.668-.442-1.15-1.06-1.445-1.853-.238-.567-.357-1.309-.357-2.227 0-.623.085-1.173.255-1.649.261-.805.714-1.445 1.36-1.921.658-.476 1.434-.714 2.329-.714 1.134 0 2.04.329 2.72.986.692.657 1.111 1.536 1.258 2.635zm-3.961-1.547c-.714 0-1.184.334-1.411 1.003a4.064 4.064 0 0 0-.119.544c0 .057.029.085.085.085h2.941c.068 0 .091-.028.068-.085a11.998 11.998 0 0 0-.085-.476 1.407 1.407 0 0 0-.544-.782c-.249-.193-.561-.289-.935-.289z"/><path fill="#71B987" d="M57.77 258.331c.693 0 1.244.204 1.651.611.416.407.624.953.624 1.638v4.29c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.108c0-.477-.147-.867-.442-1.17-.286-.303-.659-.455-1.118-.455-.477 0-.862.147-1.157.442-.295.295-.442.68-.442 1.157v4.134c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v3.081c0 .017.004.03.013.039.017.009.03.004.039-.013.381-.537.966-.806 1.755-.806zm7.229.728c0 .087-.043.13-.13.13h-1.47c-.034 0-.051.017-.051.052v3.835c0 .416.09.711.273.884.19.165.485.247.884.247h.325c.087 0 .13.043.13.13v.533c0 .087-.043.13-.13.13a6.215 6.215 0 0 1-.481.013c-.624 0-1.097-.117-1.417-.351-.32-.234-.481-.667-.481-1.3v-4.121c0-.035-.017-.052-.052-.052h-.793c-.087 0-.13-.043-.13-.13v-.507c0-.087.043-.13.13-.13h.793c.035 0 .052-.017.052-.052v-1.508c0-.087.043-.13.13-.13h.637c.086 0 .13.043.13.13v1.508c0 .035.017.052.052.052h1.469c.087 0 .13.043.13.13v.507zm4.735 0c0 .087-.043.13-.13.13h-1.469c-.035 0-.052.017-.052.052v3.835c0 .416.091.711.273.884.19.165.486.247.884.247h.325c.087 0 .13.043.13.13v.533c0 .087-.043.13-.13.13a6.217 6.217 0 0 1-.48.013c-.625 0-1.097-.117-1.418-.351-.32-.234-.48-.667-.48-1.3v-4.121c0-.035-.018-.052-.053-.052h-.793c-.087 0-.13-.043-.13-.13v-.507c0-.087.043-.13.13-.13h.793c.035 0 .052-.017.052-.052v-1.508c0-.087.043-.13.13-.13h.637c.087 0 .13.043.13.13v1.508c0 .035.017.052.052.052h1.47c.086 0 .13.043.13.13v.507zm6.894 1.001c.13.416.195.966.195 1.651 0 .693-.057 1.231-.17 1.612-.156.555-.442.992-.858 1.313-.407.312-.922.468-1.546.468-.338 0-.65-.065-.936-.195a1.962 1.962 0 0 1-.716-.585c-.017-.017-.034-.022-.051-.013-.01 0-.014.009-.014.026v3.055c0 .087-.043.13-.13.13h-.662c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v.546c0 .017.004.03.013.039.017 0 .034-.009.051-.026.191-.251.425-.446.703-.585.285-.139.602-.208.949-.208.606 0 1.113.156 1.52.468.416.312.703.737.858 1.274zm-1.028 3.289c.096-.191.165-.403.209-.637.052-.243.078-.576.078-1.001 0-.407-.018-.724-.052-.949a2.193 2.193 0 0 0-.182-.624 1.408 1.408 0 0 0-.56-.741 1.59 1.59 0 0 0-.936-.273c-.346 0-.636.091-.87.273a1.61 1.61 0 0 0-.52.728 2.314 2.314 0 0 0-.17.611 7.038 7.038 0 0 0-.051.975c0 .416.017.745.051.988.035.234.096.442.183.624.103.295.272.533.507.715.242.173.528.26.857.26.347 0 .646-.087.897-.26.26-.173.447-.403.56-.689zm5.25 1.716c-.486 0-.92-.078-1.3-.234-.373-.156-.664-.364-.872-.624a1.398 1.398 0 0 1-.299-.871v-.156c0-.087.044-.13.13-.13h.624c.087 0 .13.043.13.13v.104c0 .286.148.537.442.754.304.208.68.312 1.131.312.451 0 .815-.1 1.092-.299.278-.208.416-.468.416-.78a.7.7 0 0 0-.22-.533 1.453 1.453 0 0 0-.508-.325 10.39 10.39 0 0 0-.897-.299 9.305 9.305 0 0 1-1.196-.416 2.3 2.3 0 0 1-.793-.572c-.208-.251-.312-.568-.312-.949 0-.555.217-.997.65-1.326.434-.329 1.006-.494 1.716-.494.477 0 .897.078 1.261.234.373.156.659.373.858.65.2.269.3.572.3.91v.039c0 .087-.044.13-.13.13h-.612c-.086 0-.13-.043-.13-.13v-.039c0-.295-.143-.542-.429-.741-.277-.199-.654-.299-1.13-.299-.443 0-.798.091-1.067.273a.82.82 0 0 0-.403.728c0 .295.13.52.39.676.26.156.663.312 1.21.468.502.147.91.286 1.221.416.312.13.581.321.806.572.226.243.338.563.338.962 0 .563-.22 1.014-.663 1.352-.442.338-1.027.507-1.755.507zm5.257-4.615a.72.72 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.72.72 0 0 1 .533-.208c.208 0 .382.069.52.208.139.13.208.303.208.52 0 .208-.07.381-.208.52a.704.704 0 0 1-.52.208zm0 4.381a.72.72 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.72.72 0 0 1 .533-.208c.208 0 .382.069.52.208.139.13.208.303.208.52 0 .208-.07.381-.208.52a.704.704 0 0 1-.52.208zm2.741.169c-.095 0-.13-.048-.104-.143l2.873-8.853c.026-.069.078-.104.156-.104h.65c.096 0 .13.048.104.143l-2.873 8.853c-.026.069-.078.104-.156.104h-.65zm5.206 0c-.096 0-.13-.048-.105-.143l2.874-8.853c.026-.069.078-.104.156-.104h.65c.095 0 .13.048.103.143l-2.873 8.853c-.025.069-.078.104-.155.104h-.65zm8.93-8.97c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v8.84c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-.546c0-.017-.008-.026-.026-.026-.008-.009-.021-.004-.039.013-.19.251-.429.446-.715.585a2.058 2.058 0 0 1-.936.208c-.606 0-1.118-.156-1.534-.468-.407-.312-.689-.737-.845-1.274-.121-.39-.182-.94-.182-1.651 0-.719.052-1.257.156-1.612.156-.555.442-.988.858-1.3.416-.321.932-.481 1.547-.481.338 0 .65.069.936.208.286.13.525.321.715.572.018.017.031.026.039.026.018-.009.026-.022.026-.039v-3.055zm-.234 7.267c.078-.173.135-.377.169-.611a6.99 6.99 0 0 0 .052-.975 6.99 6.99 0 0 0-.052-.975 2.168 2.168 0 0 0-.182-.637 1.415 1.415 0 0 0-.52-.702 1.334 1.334 0 0 0-.845-.273c-.346 0-.645.087-.897.26a1.475 1.475 0 0 0-.546.689 2.4 2.4 0 0 0-.234.65 5.755 5.755 0 0 0-.065.988c0 .407.018.728.052.962.035.225.096.429.182.611.104.312.286.559.546.741.269.182.585.273.949.273.347 0 .637-.091.871-.273.234-.182.408-.425.52-.728zm8.293-2.691c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.035 0-.052.017-.052.052.017.477.043.784.078.923.095.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.277-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.069.043.087.104.052.182a2.384 2.384 0 0 1-.975.988c-.433.234-.932.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.004-.659.013-.884.017-.234.052-.442.104-.624a2.42 2.42 0 0 1 .884-1.352c.451-.338.992-.507 1.625-.507.789 0 1.395.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.425 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.087.477-.104.884 0 .035.017.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351zm11.157-.793c.65 0 1.161.195 1.534.585.381.39.572.923.572 1.599v4.355c0 .087-.044.13-.13.13h-.65c-.087 0-.13-.043-.13-.13v-4.173c0-.477-.139-.854-.416-1.131-.269-.286-.624-.429-1.066-.429-.46 0-.832.139-1.118.416-.278.277-.416.65-.416 1.118v4.199c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.173c0-.477-.135-.854-.403-1.131-.269-.286-.629-.429-1.079-.429-.46 0-.828.139-1.105.416-.269.277-.403.65-.403 1.118v4.199c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v.52c0 .017.004.03.013.039.017 0 .034-.009.052-.026.19-.251.433-.438.728-.559.303-.13.637-.195 1.001-.195.45 0 .836.091 1.157.273.32.182.563.446.728.793.017.043.039.043.065 0 .19-.355.459-.62.806-.793a2.505 2.505 0 0 1 1.183-.273zm6.517 6.773c-.624 0-1.162-.16-1.612-.481a2.463 2.463 0 0 1-.936-1.326c-.122-.399-.182-.932-.182-1.599 0-.667.06-1.196.182-1.586.164-.555.472-.992.923-1.313.45-.321.996-.481 1.638-.481.615 0 1.144.16 1.586.481.45.321.758.754.923 1.3.121.373.182.906.182 1.599 0 .702-.061 1.235-.182 1.599a2.407 2.407 0 0 1-.923 1.326c-.442.321-.975.481-1.599.481zm0-.806c.416 0 .771-.113 1.066-.338a1.73 1.73 0 0 0 .598-.936c.078-.312.117-.75.117-1.313 0-.572-.035-1.01-.104-1.313a1.637 1.637 0 0 0-.611-.923c-.295-.234-.655-.351-1.079-.351-.425 0-.785.117-1.079.351a1.659 1.659 0 0 0-.598.923c-.07.303-.104.741-.104 1.313s.034 1.01.104 1.313c.095.39.29.702.585.936.303.225.671.338 1.105.338zm5.214.676a.722.722 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.722.722 0 0 1 .533-.208c.208 0 .382.069.52.208.139.13.208.303.208.52a.705.705 0 0 1-.208.52.703.703 0 0 1-.52.208zm7.629-4.368c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.034 0-.052.017-.052.052.018.477.044.784.078.923.096.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.278-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.07.043.087.104.052.182a2.373 2.373 0 0 1-.975.988c-.433.234-.931.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.005-.659.013-.884.018-.234.052-.442.104-.624a2.425 2.425 0 0 1 .884-1.352c.451-.338.993-.507 1.625-.507.789 0 1.396.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.424 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.086.477-.104.884 0 .035.018.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351zm3.764 5.876c-.052 0-.091-.017-.117-.052-.017-.035-.008-.069.026-.104l2.171-3.094a.063.063 0 0 0 0-.078l-2.171-3.094a.089.089 0 0 1-.026-.065c0-.061.039-.091.117-.091h.702c.07 0 .122.026.156.078l1.703 2.457c.009.009.022.013.039.013.018 0 .031-.004.039-.013l1.69-2.457a.176.176 0 0 1 .156-.078h.767c.052 0 .087.017.104.052.018.026.009.061-.026.104l-2.171 3.094a.13.13 0 0 0 0 .078l2.171 3.094c.018.017.026.043.026.078 0 .017-.008.035-.026.052-.017.017-.043.026-.078.026h-.715a.176.176 0 0 1-.156-.078l-1.69-2.457c-.008-.017-.021-.026-.039-.026-.017 0-.03.009-.039.026l-1.716 2.457c-.034.052-.086.078-.156.078h-.741zm9.03-6.682c.78 0 1.382.199 1.807.598.424.399.637.927.637 1.586v4.368c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-.533c0-.017-.009-.03-.026-.039-.009-.009-.022-.004-.039.013-.217.26-.499.459-.845.598-.347.13-.733.195-1.157.195-.616 0-1.131-.156-1.547-.468-.416-.312-.624-.789-.624-1.43 0-.65.234-1.161.702-1.534.476-.381 1.135-.572 1.976-.572h1.508c.034 0 .052-.017.052-.052v-.494c0-.442-.126-.789-.377-1.04-.243-.26-.624-.39-1.144-.39-.416 0-.754.082-1.014.247a.983.983 0 0 0-.481.663c-.026.087-.078.126-.156.117l-.702-.091c-.096-.017-.135-.052-.117-.104.069-.485.329-.88.78-1.183.45-.303 1.014-.455 1.69-.455zm-.364 5.993c.511 0 .953-.126 1.326-.377.372-.26.559-.607.559-1.04v-1.014c0-.035-.018-.052-.052-.052h-1.365c-.572 0-1.032.117-1.378.351-.347.234-.52.559-.52.975 0 .381.13.672.389.871.269.191.616.286 1.041.286zm11.384-5.98c.65 0 1.161.195 1.534.585.381.39.572.923.572 1.599v4.355c0 .087-.043.13-.13.13h-.65c-.087 0-.13-.043-.13-.13v-4.173c0-.477-.139-.854-.416-1.131-.269-.286-.624-.429-1.066-.429-.459 0-.832.139-1.118.416-.277.277-.416.65-.416 1.118v4.199c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.173c0-.477-.134-.854-.403-1.131-.269-.286-.628-.429-1.079-.429-.459 0-.828.139-1.105.416-.269.277-.403.65-.403 1.118v4.199c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v.52c0 .017.004.03.013.039.017 0 .035-.009.052-.026.191-.251.433-.438.728-.559.303-.13.637-.195 1.001-.195.451 0 .836.091 1.157.273.321.182.563.446.728.793.017.043.039.043.065 0 .191-.355.459-.62.806-.793a2.508 2.508 0 0 1 1.183-.273zm9.206 1.729c.13.416.195.966.195 1.651 0 .693-.056 1.231-.169 1.612-.156.555-.442.992-.858 1.313-.407.312-.923.468-1.547.468-.338 0-.65-.065-.936-.195a1.965 1.965 0 0 1-.715-.585c-.017-.017-.035-.022-.052-.013-.009 0-.013.009-.013.026v3.055c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v.546c0 .017.004.03.013.039.017 0 .035-.009.052-.026a2 2 0 0 1 .702-.585 2.14 2.14 0 0 1 .949-.208c.607 0 1.114.156 1.521.468.416.312.702.737.858 1.274zm-1.027 3.289c.095-.191.165-.403.208-.637.052-.243.078-.576.078-1.001 0-.407-.017-.724-.052-.949a2.193 2.193 0 0 0-.182-.624 1.407 1.407 0 0 0-.559-.741 1.59 1.59 0 0 0-.936-.273c-.347 0-.637.091-.871.273a1.611 1.611 0 0 0-.52.728 2.325 2.325 0 0 0-.169.611 6.99 6.99 0 0 0-.052.975c0 .416.017.745.052.988.035.234.095.442.182.624.104.295.273.533.507.715.243.173.529.26.858.26.347 0 .646-.087.897-.26a1.45 1.45 0 0 0 .559-.689zm3.221 1.651c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v8.84c0 .087-.043.13-.13.13h-.663zm7.91-4.394c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.035 0-.052.017-.052.052.017.477.043.784.078.923.095.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.277-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.069.043.087.104.052.182a2.384 2.384 0 0 1-.975.988c-.433.234-.932.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.004-.659.013-.884.017-.234.052-.442.104-.624a2.42 2.42 0 0 1 .884-1.352c.451-.338.992-.507 1.625-.507.789 0 1.395.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.425 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.087.477-.104.884 0 .035.017.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351zm5.001 5.85a.719.719 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.719.719 0 0 1 .533-.208c.208 0 .381.069.52.208a.68.68 0 0 1 .208.52.709.709 0 0 1-.728.728zm5.068.13c-.624 0-1.162-.16-1.612-.481a2.48 2.48 0 0 1-.91-1.326c-.113-.381-.169-.919-.169-1.612 0-.624.056-1.153.169-1.586.156-.537.459-.966.91-1.287.45-.329.988-.494 1.612-.494.632 0 1.178.16 1.638.481.468.321.771.719.91 1.196.043.156.069.286.078.39v.026c0 .061-.039.1-.117.117l-.65.091h-.026c-.061 0-.1-.039-.117-.117l-.039-.195c-.078-.329-.269-.607-.572-.832-.304-.234-.672-.351-1.105-.351-.434 0-.798.117-1.092.351a1.555 1.555 0 0 0-.559.91c-.078.329-.117.767-.117 1.313 0 .572.039 1.014.117 1.326.086.39.273.702.559.936.294.225.658.338 1.092.338.424 0 .788-.108 1.092-.325a1.42 1.42 0 0 0 .585-.858v-.052l.013-.052c.008-.087.06-.121.156-.104l.637.104c.086.017.125.065.117.143l-.052.26c-.13.503-.429.91-.897 1.222-.468.312-1.019.468-1.651.468zm6.741 0c-.624 0-1.161-.16-1.612-.481a2.473 2.473 0 0 1-.936-1.326c-.121-.399-.182-.932-.182-1.599 0-.667.061-1.196.182-1.586.165-.555.473-.992.923-1.313.451-.321.997-.481 1.638-.481.616 0 1.144.16 1.586.481.451.321.759.754.923 1.3.122.373.182.906.182 1.599 0 .702-.06 1.235-.182 1.599a2.397 2.397 0 0 1-.923 1.326c-.442.321-.975.481-1.599.481zm0-.806c.416 0 .772-.113 1.066-.338.295-.234.494-.546.598-.936.078-.312.117-.75.117-1.313 0-.572-.034-1.01-.104-1.313a1.632 1.632 0 0 0-.611-.923c-.294-.234-.654-.351-1.079-.351-.424 0-.784.117-1.079.351a1.664 1.664 0 0 0-.598.923c-.069.303-.104.741-.104 1.313s.035 1.01.104 1.313c.096.39.291.702.585.936.304.225.672.338 1.105.338zm11.231-5.967c.65 0 1.162.195 1.534.585.382.39.572.923.572 1.599v4.355c0 .087-.043.13-.13.13h-.65c-.086 0-.13-.043-.13-.13v-4.173c0-.477-.138-.854-.416-1.131-.268-.286-.624-.429-1.066-.429-.459 0-.832.139-1.118.416-.277.277-.416.65-.416 1.118v4.199c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-4.173c0-.477-.134-.854-.403-1.131-.268-.286-.628-.429-1.079-.429-.459 0-.827.139-1.105.416-.268.277-.403.65-.403 1.118v4.199c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-6.318c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v.52c0 .017.005.03.013.039.018 0 .035-.009.052-.026.191-.251.434-.438.728-.559.304-.13.637-.195 1.001-.195.451 0 .837.091 1.157.273.321.182.564.446.728.793.018.043.039.043.065 0 .191-.355.46-.62.806-.793a2.508 2.508 0 0 1 1.183-.273zm3.552 6.669c-.095 0-.13-.048-.104-.143l2.873-8.853c.026-.069.078-.104.156-.104h.65c.096 0 .13.048.104.143l-2.873 8.853c-.026.069-.078.104-.156.104h-.65zm10.669-4.94c.13.416.195.966.195 1.651 0 .693-.056 1.231-.169 1.612-.156.555-.442.992-.858 1.313-.407.312-.923.468-1.547.468-.338 0-.65-.065-.936-.195a1.965 1.965 0 0 1-.715-.585c-.017-.017-.035-.022-.052-.013-.009 0-.013.009-.013.026v3.055c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v.546c0 .017.004.03.013.039.017 0 .035-.009.052-.026a2 2 0 0 1 .702-.585 2.14 2.14 0 0 1 .949-.208c.607 0 1.114.156 1.521.468.416.312.702.737.858 1.274zm-1.027 3.289c.095-.191.165-.403.208-.637.052-.243.078-.576.078-1.001 0-.407-.017-.724-.052-.949a2.193 2.193 0 0 0-.182-.624 1.407 1.407 0 0 0-.559-.741 1.59 1.59 0 0 0-.936-.273c-.347 0-.637.091-.871.273a1.611 1.611 0 0 0-.52.728 2.325 2.325 0 0 0-.169.611 6.99 6.99 0 0 0-.052.975c0 .416.017.745.052.988.035.234.095.442.182.624.104.295.273.533.507.715.243.173.529.26.858.26.347 0 .646-.087.897-.26a1.45 1.45 0 0 0 .559-.689zm5.743-4.992c.286 0 .533.056.741.169.069.035.095.091.078.169l-.143.637c-.026.087-.082.113-.169.078a1.314 1.314 0 0 0-.507-.091l-.169.013a1.536 1.536 0 0 0-1.118.507c-.295.312-.442.711-.442 1.196v3.835c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v.793c0 .026.004.043.013.052.017 0 .03-.009.039-.026.182-.321.412-.568.689-.741a1.8 1.8 0 0 1 .988-.273zm4.529 6.747c-.624 0-1.162-.16-1.612-.481a2.463 2.463 0 0 1-.936-1.326c-.122-.399-.182-.932-.182-1.599 0-.667.06-1.196.182-1.586.164-.555.472-.992.923-1.313.45-.321.996-.481 1.638-.481.615 0 1.144.16 1.586.481.45.321.758.754.923 1.3.121.373.182.906.182 1.599 0 .702-.061 1.235-.182 1.599a2.407 2.407 0 0 1-.923 1.326c-.442.321-.975.481-1.599.481zm0-.806c.416 0 .771-.113 1.066-.338a1.73 1.73 0 0 0 .598-.936c.078-.312.117-.75.117-1.313 0-.572-.035-1.01-.104-1.313a1.637 1.637 0 0 0-.611-.923c-.295-.234-.655-.351-1.079-.351-.425 0-.785.117-1.079.351a1.659 1.659 0 0 0-.598.923c-.07.303-.104.741-.104 1.313s.034 1.01.104 1.313c.095.39.29.702.585.936.303.225.671.338 1.105.338zm8.657-8.268c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v8.84c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-.546c0-.017-.009-.026-.026-.026-.009-.009-.022-.004-.039.013a1.965 1.965 0 0 1-.715.585c-.278.139-.59.208-.936.208-.607 0-1.118-.156-1.534-.468-.408-.312-.689-.737-.845-1.274-.122-.39-.182-.94-.182-1.651 0-.719.052-1.257.156-1.612.156-.555.442-.988.858-1.3.416-.321.931-.481 1.547-.481.338 0 .65.069.936.208.286.13.524.321.715.572.017.017.03.026.039.026.017-.009.026-.022.026-.039v-3.055zm-.234 7.267c.078-.173.134-.377.169-.611a7.15 7.15 0 0 0 .052-.975 7.15 7.15 0 0 0-.052-.975 2.23 2.23 0 0 0-.182-.637 1.42 1.42 0 0 0-.52-.702 1.336 1.336 0 0 0-.845-.273c-.347 0-.646.087-.897.26a1.466 1.466 0 0 0-.546.689 2.4 2.4 0 0 0-.234.65 5.684 5.684 0 0 0-.065.988c0 .407.017.728.052.962.034.225.095.429.182.611.104.312.286.559.546.741.268.182.585.273.949.273.346 0 .637-.091.871-.273.234-.182.407-.425.52-.728zm7.226-4.745c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v6.318c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-.559c0-.017-.008-.03-.026-.039-.017-.009-.03-.004-.039.013-.364.537-.94.806-1.729.806-.416 0-.801-.082-1.157-.247a2.083 2.083 0 0 1-.832-.741c-.199-.321-.299-.706-.299-1.157v-4.394c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v4.121c0 .494.139.888.416 1.183.278.286.655.429 1.131.429.494 0 .884-.147 1.17-.442.295-.295.442-.685.442-1.17v-4.121zm5.475 6.552c-.624 0-1.161-.16-1.612-.481a2.486 2.486 0 0 1-.91-1.326c-.113-.381-.169-.919-.169-1.612 0-.624.056-1.153.169-1.586.156-.537.459-.966.91-1.287.451-.329.988-.494 1.612-.494.633 0 1.179.16 1.638.481.468.321.771.719.91 1.196.043.156.069.286.078.39v.026c0 .061-.039.1-.117.117l-.65.091h-.026c-.061 0-.1-.039-.117-.117l-.039-.195c-.078-.329-.269-.607-.572-.832-.303-.234-.672-.351-1.105-.351-.433 0-.797.117-1.092.351a1.56 1.56 0 0 0-.559.91c-.078.329-.117.767-.117 1.313 0 .572.039 1.014.117 1.326.087.39.273.702.559.936.295.225.659.338 1.092.338.425 0 .789-.108 1.092-.325a1.42 1.42 0 0 0 .585-.858v-.052l.013-.052c.009-.087.061-.121.156-.104l.637.104c.087.017.126.065.117.143l-.052.26c-.13.503-.429.91-.897 1.222-.468.312-1.018.468-1.651.468zm7.222-6.045c0 .087-.043.13-.13.13h-1.469c-.035 0-.052.017-.052.052v3.835c0 .416.091.711.273.884.191.165.485.247.884.247h.325c.087 0 .13.043.13.13v.533c0 .087-.043.13-.13.13a6.21 6.21 0 0 1-.481.013c-.624 0-1.096-.117-1.417-.351-.321-.234-.481-.667-.481-1.3v-4.121c0-.035-.017-.052-.052-.052h-.793c-.087 0-.13-.043-.13-.13v-.507c0-.087.043-.13.13-.13h.793c.035 0 .052-.017.052-.052v-1.508c0-.087.043-.13.13-.13h.637c.087 0 .13.043.13.13v1.508c0 .035.017.052.052.052h1.469c.087 0 .13.043.13.13v.507zm1.277 5.941c-.095 0-.13-.048-.104-.143l2.873-8.853c.026-.069.078-.104.156-.104h.65c.096 0 .13.048.104.143l-2.873 8.853c-.026.069-.078.104-.156.104h-.65zm8.931-8.97c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v8.84c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-.546c0-.017-.008-.026-.026-.026-.008-.009-.021-.004-.039.013-.19.251-.429.446-.715.585a2.058 2.058 0 0 1-.936.208c-.606 0-1.118-.156-1.534-.468-.407-.312-.689-.737-.845-1.274-.121-.39-.182-.94-.182-1.651 0-.719.052-1.257.156-1.612.156-.555.442-.988.858-1.3.416-.321.932-.481 1.547-.481.338 0 .65.069.936.208.286.13.525.321.715.572.018.017.031.026.039.026.018-.009.026-.022.026-.039v-3.055zm-.234 7.267c.078-.173.135-.377.169-.611a6.99 6.99 0 0 0 .052-.975 6.99 6.99 0 0 0-.052-.975 2.168 2.168 0 0 0-.182-.637 1.415 1.415 0 0 0-.52-.702 1.334 1.334 0 0 0-.845-.273c-.346 0-.645.087-.897.26a1.478 1.478 0 0 0-.546.689 2.4 2.4 0 0 0-.234.65 5.785 5.785 0 0 0-.065.988c0 .407.018.728.052.962.035.225.096.429.182.611.104.312.286.559.546.741.269.182.585.273.949.273.347 0 .637-.091.871-.273.234-.182.408-.425.52-.728zm8.293-2.691c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.035 0-.052.017-.052.052.017.477.043.784.078.923.095.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.277-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.069.043.087.104.052.182a2.384 2.384 0 0 1-.975.988c-.433.234-.932.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.004-.659.013-.884.017-.234.052-.442.104-.624a2.42 2.42 0 0 1 .884-1.352c.451-.338.992-.507 1.625-.507.789 0 1.395.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.425 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.087.477-.104.884 0 .035.017.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351zm11.157-.793c.65 0 1.161.195 1.534.585.381.39.572.923.572 1.599v4.355c0 .087-.044.13-.13.13h-.65c-.087 0-.13-.043-.13-.13v-4.173c0-.477-.139-.854-.416-1.131-.269-.286-.624-.429-1.066-.429-.46 0-.832.139-1.118.416-.278.277-.416.65-.416 1.118v4.199c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.173c0-.477-.135-.854-.403-1.131-.269-.286-.629-.429-1.079-.429-.46 0-.828.139-1.105.416-.269.277-.403.65-.403 1.118v4.199c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v.52c0 .017.004.03.013.039.017 0 .034-.009.052-.026.19-.251.433-.438.728-.559.303-.13.637-.195 1.001-.195.45 0 .836.091 1.157.273.32.182.563.446.728.793.017.043.039.043.065 0 .19-.355.459-.62.806-.793a2.505 2.505 0 0 1 1.183-.273zm6.517 6.773c-.624 0-1.162-.16-1.612-.481a2.463 2.463 0 0 1-.936-1.326c-.122-.399-.182-.932-.182-1.599 0-.667.06-1.196.182-1.586.164-.555.472-.992.923-1.313.45-.321.996-.481 1.638-.481.615 0 1.144.16 1.586.481.45.321.758.754.923 1.3.121.373.182.906.182 1.599 0 .702-.061 1.235-.182 1.599a2.407 2.407 0 0 1-.923 1.326c-.442.321-.975.481-1.599.481zm0-.806c.416 0 .771-.113 1.066-.338a1.73 1.73 0 0 0 .598-.936c.078-.312.117-.75.117-1.313 0-.572-.035-1.01-.104-1.313a1.637 1.637 0 0 0-.611-.923c-.295-.234-.655-.351-1.079-.351-.425 0-.785.117-1.079.351a1.659 1.659 0 0 0-.598.923c-.07.303-.104.741-.104 1.313s.034 1.01.104 1.313c.095.39.29.702.585.936.303.225.671.338 1.105.338zm4.172-2.938c-.087 0-.13-.043-.13-.13v-.546c0-.087.043-.13.13-.13h3.848c.086 0 .13.043.13.13v.546c0 .087-.044.13-.13.13h-3.848zm7.677 3.705c-.486 0-.919-.078-1.3-.234-.373-.156-.663-.364-.871-.624-.2-.26-.299-.55-.299-.871v-.156c0-.087.043-.13.13-.13h.624c.086 0 .13.043.13.13v.104c0 .286.147.537.442.754.303.208.68.312 1.131.312.45 0 .814-.1 1.092-.299.277-.208.416-.468.416-.78a.7.7 0 0 0-.221-.533 1.459 1.459 0 0 0-.507-.325c-.191-.078-.49-.178-.897-.299a9.273 9.273 0 0 1-1.196-.416 2.294 2.294 0 0 1-.793-.572c-.208-.251-.312-.568-.312-.949 0-.555.216-.997.65-1.326.433-.329 1.005-.494 1.716-.494.476 0 .897.078 1.261.234.372.156.658.373.858.65.199.269.299.572.299.91v.039c0 .087-.044.13-.13.13h-.611c-.087 0-.13-.043-.13-.13v-.039c0-.295-.143-.542-.429-.741-.278-.199-.655-.299-1.131-.299-.442 0-.798.091-1.066.273a.82.82 0 0 0-.403.728c0 .295.13.52.39.676.26.156.663.312 1.209.468.502.147.91.286 1.222.416.312.13.58.321.806.572.225.243.338.563.338.962 0 .563-.221 1.014-.663 1.352-.442.338-1.027.507-1.755.507zm6.831-6.734c.693 0 1.243.204 1.651.611.416.407.624.953.624 1.638v4.29c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.108c0-.477-.148-.867-.442-1.17-.286-.303-.659-.455-1.118-.455-.477 0-.863.147-1.157.442-.295.295-.442.68-.442 1.157v4.134c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v3.081c0 .017.004.03.013.039.017.009.03.004.039-.013.381-.537.966-.806 1.755-.806zm6.697 6.773c-.624 0-1.161-.16-1.612-.481a2.473 2.473 0 0 1-.936-1.326c-.121-.399-.182-.932-.182-1.599 0-.667.061-1.196.182-1.586.165-.555.473-.992.923-1.313.451-.321.997-.481 1.638-.481.616 0 1.144.16 1.586.481.451.321.759.754.923 1.3.122.373.182.906.182 1.599 0 .702-.06 1.235-.182 1.599a2.397 2.397 0 0 1-.923 1.326c-.442.321-.975.481-1.599.481zm0-.806c.416 0 .772-.113 1.066-.338.295-.234.494-.546.598-.936.078-.312.117-.75.117-1.313 0-.572-.034-1.01-.104-1.313a1.632 1.632 0 0 0-.611-.923c-.294-.234-.654-.351-1.079-.351-.424 0-.784.117-1.079.351a1.664 1.664 0 0 0-.598.923c-.069.303-.104.741-.104 1.313s.035 1.01.104 1.313c.096.39.291.702.585.936.304.225.672.338 1.105.338zm9.619-3.692c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.034 0-.052.017-.052.052.018.477.044.784.078.923.096.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.278-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.07.043.087.104.052.182a2.373 2.373 0 0 1-.975.988c-.433.234-.931.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.005-.659.013-.884.018-.234.052-.442.104-.624a2.425 2.425 0 0 1 .884-1.352c.451-.338.993-.507 1.625-.507.789 0 1.396.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.424 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.086.477-.104.884 0 .035.018.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351z"/><g clip-path="url(#b)"><path fill="#FFD115" d="M59.064 277.348l-1.275 2.586-2.854.416a.625.625 0 0 0-.346 1.066l2.065 2.012-.489 2.842a.625.625 0 0 0 .907.658l2.552-1.342 2.553 1.342a.625.625 0 0 0 .907-.658l-.489-2.842 2.065-2.012a.625.625 0 0 0-.346-1.066l-2.853-.416-1.276-2.586a.625.625 0 0 0-1.121 0z"/></g><g clip-path="url(#c)"><path fill="#FFD115" d="M76.064 277.348l-1.275 2.586-2.854.416a.625.625 0 0 0-.346 1.066l2.065 2.012-.489 2.842a.625.625 0 0 0 .907.658l2.552-1.342 2.553 1.342a.625.625 0 0 0 .906-.658l-.488-2.842 2.065-2.012a.625.625 0 0 0-.346-1.066l-2.853-.416-1.276-2.586a.625.625 0 0 0-1.121 0z"/></g><g clip-path="url(#d)"><path fill="#FFD115" d="M93.064 277.348l-1.275 2.586-2.854.416a.625.625 0 0 0-.346 1.066l2.065 2.012-.489 2.842a.625.625 0 0 0 .907.658l2.552-1.342 2.553 1.342a.625.625 0 0 0 .906-.658l-.488-2.842 2.065-2.012a.625.625 0 0 0-.346-1.066l-2.853-.416-1.276-2.586a.625.625 0 0 0-1.121 0z"/></g><g clip-path="url(#e)"><path fill="#FFD115" d="M110.064 277.348l-1.275 2.586-2.854.416a.625.625 0 0 0-.346 1.066l2.065 2.012-.488 2.842a.625.625 0 0 0 .906.658l2.553-1.342 2.552 1.342a.626.626 0 0 0 .907-.658l-.489-2.842 2.065-2.012a.625.625 0 0 0-.346-1.066l-2.854-.416-1.275-2.586a.625.625 0 0 0-1.121 0z"/></g><g clip-path="url(#f)"><path fill="#FFD115" d="M131.933 280.35l-2.859-.416-1.277-2.586a.622.622 0 0 0-.563-.348.617.617 0 0 0-.561.348l-1.278 2.585-2.859.416a.625.625 0 0 0-.346 1.066l2.068 2.012-.489 2.842a.626.626 0 0 0 .907.658l2.558-1.342 2.557 1.342a.626.626 0 0 0 .908-.658l-.488-2.841 2.068-2.012a.624.624 0 0 0-.346-1.066zm-2.378 2.406l-.354.344.084.486.381 2.216-1.995-1.047-.437-.229.001-6.195.996 2.017.219.442.488.071 2.231.325-1.614 1.57z"/></g><path fill="#000" d="M146.526 288c-.078 0-.13-.03-.156-.091l-1.911-4.03c-.009-.026-.026-.039-.052-.039h-2.21c-.035 0-.052.017-.052.052v3.978c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h3.367c.745 0 1.348.234 1.807.702.459.459.689 1.062.689 1.807 0 .607-.165 1.122-.494 1.547-.329.425-.776.698-1.339.819-.035.017-.043.039-.026.065l1.95 4.004a.14.14 0 0 1 .013.065c0 .061-.035.091-.104.091h-.689zm-4.329-8.294c-.035 0-.052.017-.052.052v3.289c0 .035.017.052.052.052h2.418c.503 0 .91-.156 1.222-.468.312-.312.468-.719.468-1.222s-.156-.91-.468-1.222c-.312-.321-.719-.481-1.222-.481h-2.418zm9.078 1.612c.78 0 1.382.199 1.807.598.425.399.637.927.637 1.586v4.368c0 .087-.043.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-.533c0-.017-.009-.03-.026-.039-.009-.009-.022-.004-.039.013-.217.26-.498.459-.845.598-.347.13-.732.195-1.157.195-.615 0-1.131-.156-1.547-.468-.416-.312-.624-.789-.624-1.43 0-.65.234-1.161.702-1.534.477-.381 1.135-.572 1.976-.572h1.508c.035 0 .052-.017.052-.052v-.494c0-.442-.126-.789-.377-1.04-.243-.26-.624-.39-1.144-.39-.416 0-.754.082-1.014.247a.986.986 0 0 0-.481.663c-.026.087-.078.126-.156.117l-.702-.091c-.095-.017-.134-.052-.117-.104.069-.485.329-.88.78-1.183.451-.303 1.014-.455 1.69-.455zm-.364 5.993c.511 0 .953-.126 1.326-.377.373-.26.559-.607.559-1.04v-1.014c0-.035-.017-.052-.052-.052h-1.365c-.572 0-1.031.117-1.378.351-.347.234-.52.559-.52.975 0 .381.13.672.39.871.269.191.615.286 1.04.286zm7.629-5.252c0 .087-.044.13-.13.13h-1.469c-.035 0-.052.017-.052.052v3.835c0 .416.091.711.273.884.19.165.485.247.884.247h.325c.086 0 .13.043.13.13v.533c0 .087-.044.13-.13.13a6.227 6.227 0 0 1-.481.013c-.624 0-1.097-.117-1.417-.351-.321-.234-.481-.667-.481-1.3v-4.121c0-.035-.018-.052-.052-.052h-.793c-.087 0-.13-.043-.13-.13v-.507c0-.087.043-.13.13-.13h.793c.034 0 .052-.017.052-.052v-1.508c0-.087.043-.13.13-.13h.637c.086 0 .13.043.13.13v1.508c0 .035.017.052.052.052h1.469c.086 0 .13.043.13.13v.507zm2.408-1.833a.709.709 0 0 1-.728-.728c0-.217.07-.39.208-.52a.705.705 0 0 1 .52-.208c.208 0 .382.069.52.208.139.13.208.303.208.52a.705.705 0 0 1-.208.52.703.703 0 0 1-.52.208zm-.364 7.761c-.086 0-.13-.043-.13-.13v-6.318c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v6.318c0 .087-.043.13-.13.13h-.663zm5.784-6.656c.693 0 1.243.204 1.651.611.416.407.624.953.624 1.638v4.29c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.108c0-.477-.148-.867-.442-1.17-.286-.303-.659-.455-1.118-.455-.477 0-.863.147-1.157.442-.295.295-.442.68-.442 1.157v4.134c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v.559c0 .017.004.03.013.039.017.009.03.004.039-.013.381-.537.966-.806 1.755-.806zm8.333.221c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v6.227c0 .971-.281 1.681-.845 2.132-.554.451-1.321.676-2.301.676-.199 0-.351-.004-.455-.013-.086-.009-.13-.056-.13-.143l.026-.598c0-.043.013-.078.039-.104a.11.11 0 0 1 .091-.013l.351.013c.806 0 1.391-.16 1.755-.481.364-.312.546-.81.546-1.495v-.481c0-.017-.008-.026-.026-.026-.008-.009-.021-.004-.039.013-.398.52-.966.78-1.703.78a2.605 2.605 0 0 1-1.508-.455c-.433-.303-.723-.732-.871-1.287-.104-.355-.156-.884-.156-1.586 0-.381.009-.702.026-.962.026-.26.074-.494.143-.702.156-.52.438-.936.845-1.248.408-.321.897-.481 1.469-.481.772 0 1.357.256 1.755.767.018.017.031.022.039.013.018-.009.026-.022.026-.039v-.507zm-.065 4.459c.026-.13.044-.29.052-.481.009-.191.013-.468.013-.832 0-.442-.004-.737-.013-.884a2.054 2.054 0 0 0-.065-.429 1.503 1.503 0 0 0-.52-.897c-.268-.243-.611-.364-1.027-.364-.407 0-.754.117-1.04.351a1.87 1.87 0 0 0-.585.91c-.086.277-.13.711-.13 1.3 0 .633.044 1.07.13 1.313.087.364.273.667.559.91.295.234.65.351 1.066.351.425 0 .772-.117 1.04-.351.278-.234.451-.533.52-.897zm4.124-2.561a.719.719 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.719.719 0 0 1 .533-.208c.208 0 .381.069.52.208a.68.68 0 0 1 .208.52.709.709 0 0 1-.728.728zm0 4.381a.719.719 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.719.719 0 0 1 .533-.208c.208 0 .381.069.52.208a.68.68 0 0 1 .208.52.709.709 0 0 1-.728.728zm11.05-3.172c.087 0 .13.043.13.13v.572c0 .087-.043.13-.13.13h-.559c-.034 0-.052.017-.052.052v2.327c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-2.327c0-.035-.017-.052-.052-.052h-3.887c-.086 0-.13-.043-.13-.13v-.481c0-.043.013-.095.039-.156l2.665-5.733c.026-.061.074-.091.143-.091h.689c.044 0 .074.017.091.052.026.026.031.061.013.104l-2.587 5.538a.06.06 0 0 0 0 .052c.009.009.022.013.039.013h2.925c.035 0 .052-.017.052-.052v-2.093c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v2.093c0 .035.018.052.052.052h.559zm2.714 3.315a.722.722 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.722.722 0 0 1 .533-.208c.208 0 .382.069.52.208.139.13.208.303.208.52a.705.705 0 0 1-.208.52.703.703 0 0 1-.52.208zm7.74-3.952c.078.381.117.771.117 1.17 0 .425-.039.789-.117 1.092a2.357 2.357 0 0 1-.884 1.326c-.442.321-.975.481-1.599.481-.616 0-1.14-.156-1.573-.468a2.311 2.311 0 0 1-.884-1.248 2.644 2.644 0 0 1-.117-.572v-.026c0-.069.039-.104.117-.104h.689c.086 0 .134.043.143.13 0 .052.017.139.052.26a1.6 1.6 0 0 0 .533.897c.277.217.619.325 1.027.325.416 0 .762-.117 1.04-.351.286-.234.472-.555.559-.962.052-.199.078-.459.078-.78 0-.295-.022-.576-.065-.845-.061-.399-.234-.702-.52-.91-.286-.208-.642-.312-1.066-.312-.382 0-.724.087-1.027.26-.304.173-.499.403-.585.689-.026.078-.074.117-.143.117h-.702c-.087 0-.13-.043-.13-.13v-5.031c0-.087.043-.13.13-.13h4.55c.086 0 .13.043.13.13v.546c0 .087-.044.13-.13.13h-3.705c-.035 0-.052.017-.052.052l-.013 3.146c0 .017.004.03.013.039.017.009.034.004.052-.013.216-.199.472-.351.767-.455.294-.113.606-.169.936-.169.615 0 1.135.152 1.56.455.424.295.697.715.819 1.261zm4.002.338c-.087 0-.13-.043-.13-.13v-.546c0-.087.043-.13.13-.13h3.848c.087 0 .13.043.13.13v.546c0 .087-.043.13-.13.13h-3.848zm9.422-5.421a.372.372 0 0 1 .169-.039h.702c.086 0 .13.043.13.13v8.84c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-7.917c0-.017-.009-.03-.026-.039-.009-.009-.022-.009-.039 0l-1.378.559-.052.013c-.052 0-.087-.035-.104-.104l-.065-.494v-.026c0-.043.03-.087.091-.13l1.495-.793zm7.795 4.758c.173.425.26.932.26 1.521 0 .477-.065.897-.195 1.261-.174.52-.468.923-.884 1.209-.408.277-.915.416-1.521.416-.607 0-1.127-.156-1.56-.468a2.442 2.442 0 0 1-.897-1.287c-.078-.243-.126-.572-.143-.988 0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13.017.251.047.485.091.702.095.381.277.685.546.91.277.217.619.325 1.027.325.78 0 1.287-.347 1.521-1.04.104-.286.156-.641.156-1.066 0-.52-.07-.945-.208-1.274-.278-.624-.767-.936-1.469-.936-.13 0-.291.048-.481.143a.209.209 0 0 1-.078.026c-.035 0-.065-.022-.091-.065l-.338-.455c-.044-.069-.039-.13.013-.182l2.288-2.678c.026-.043.017-.065-.026-.065h-3.666c-.087 0-.13-.043-.13-.13v-.546c0-.087.043-.13.13-.13h4.81c.086 0 .13.043.13.13v.637c0 .043-.022.095-.065.156l-2.08 2.496c-.018.017-.022.035-.013.052.008.009.026.013.052.013.927.061 1.56.498 1.898 1.313zm7.015.325c.078.381.117.771.117 1.17 0 .425-.039.789-.117 1.092a2.352 2.352 0 0 1-.884 1.326c-.442.321-.975.481-1.599.481-.615 0-1.14-.156-1.573-.468a2.316 2.316 0 0 1-.884-1.248 2.644 2.644 0 0 1-.117-.572v-.026c0-.069.039-.104.117-.104h.689c.087 0 .134.043.143.13 0 .052.017.139.052.26.087.373.264.672.533.897.277.217.62.325 1.027.325.416 0 .763-.117 1.04-.351.286-.234.472-.555.559-.962.052-.199.078-.459.078-.78 0-.295-.022-.576-.065-.845-.061-.399-.234-.702-.52-.91-.286-.208-.641-.312-1.066-.312-.381 0-.724.087-1.027.26-.303.173-.498.403-.585.689-.026.078-.074.117-.143.117h-.702c-.087 0-.13-.043-.13-.13v-5.031c0-.087.043-.13.13-.13h4.55c.087 0 .13.043.13.13v.546c0 .087-.043.13-.13.13h-3.705c-.035 0-.052.017-.052.052l-.013 3.146c0 .017.004.03.013.039.017.009.035.004.052-.013.217-.199.472-.351.767-.455.295-.113.607-.169.936-.169.615 0 1.135.152 1.56.455.425.295.698.715.819 1.261zm9.891 3.978c-.078 0-.13-.03-.156-.091l-1.911-4.03c-.008-.026-.026-.039-.052-.039h-2.21c-.034 0-.052.017-.052.052v3.978c0 .087-.043.13-.13.13h-.663c-.086 0-.13-.043-.13-.13v-8.84c0-.087.044-.13.13-.13h3.367c.746 0 1.348.234 1.807.702.46.459.689 1.062.689 1.807 0 .607-.164 1.122-.494 1.547-.329.425-.775.698-1.339.819-.034.017-.043.039-.026.065l1.95 4.004a.14.14 0 0 1 .013.065c0 .061-.034.091-.104.091h-.689zm-4.329-8.294c-.034 0-.052.017-.052.052v3.289c0 .035.018.052.052.052h2.418c.503 0 .91-.156 1.222-.468.312-.312.468-.719.468-1.222s-.156-.91-.468-1.222c-.312-.321-.719-.481-1.222-.481h-2.418zm11.809 3.9c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.035 0-.052.017-.052.052.017.477.043.784.078.923.095.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.277-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.069.043.087.104.052.182a2.384 2.384 0 0 1-.975.988c-.433.234-.932.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.004-.659.013-.884.017-.234.052-.442.104-.624a2.42 2.42 0 0 1 .884-1.352c.451-.338.992-.507 1.625-.507.789 0 1.395.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.425 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.087.477-.104.884 0 .035.017.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351zm6.013 5.876c-.078 0-.13-.035-.156-.104l-2.132-6.331-.013-.052c0-.061.039-.091.117-.091h.741c.078 0 .13.035.156.104l1.625 5.096c.008.017.021.026.039.026.017 0 .03-.009.039-.026l1.625-5.096c.026-.069.078-.104.156-.104l.741.013c.095 0 .13.048.104.143l-2.132 6.318c-.026.069-.078.104-.156.104h-.754zm5.117-7.774a.703.703 0 0 1-.52-.208.705.705 0 0 1-.208-.52c0-.217.069-.39.208-.52a.703.703 0 0 1 .52-.208c.208 0 .381.069.52.208a.68.68 0 0 1 .208.52.709.709 0 0 1-.728.728zm-.364 7.761c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v6.318c0 .087-.044.13-.13.13h-.663zm8.097-4.381c.035.243.052.546.052.91v.416c0 .087-.043.13-.13.13h-4.199c-.035 0-.052.017-.052.052.017.477.043.784.078.923.095.39.299.698.611.923.312.225.711.338 1.196.338.364 0 .685-.082.962-.247.277-.165.494-.399.65-.702.052-.078.113-.095.182-.052l.507.299c.069.043.087.104.052.182a2.384 2.384 0 0 1-.975.988c-.433.234-.932.351-1.495.351-.615-.009-1.131-.156-1.547-.442a2.372 2.372 0 0 1-.897-1.196c-.156-.416-.234-1.014-.234-1.794 0-.364.004-.659.013-.884.017-.234.052-.442.104-.624a2.42 2.42 0 0 1 .884-1.352c.451-.338.992-.507 1.625-.507.789 0 1.395.199 1.82.598.425.399.689.962.793 1.69zm-2.613-1.482c-.425 0-.78.113-1.066.338a1.522 1.522 0 0 0-.546.884c-.052.182-.087.477-.104.884 0 .035.017.052.052.052h3.367c.035 0 .052-.017.052-.052a5.75 5.75 0 0 0-.078-.832 1.595 1.595 0 0 0-.585-.923c-.286-.234-.65-.351-1.092-.351zm5.701 5.876c-.07 0-.117-.035-.143-.104l-1.846-6.331-.013-.039c0-.069.043-.104.13-.104h.676c.078 0 .125.039.143.117l1.378 5.122c.008.017.017.026.026.026.017 0 .03-.009.039-.026l1.404-5.122c.017-.078.065-.117.143-.117h.624c.078 0 .125.035.143.104l1.417 5.122c.008.017.021.026.039.026.017 0 .03-.009.039-.026l1.417-5.109c.017-.078.065-.117.143-.117l.676.013c.043 0 .073.013.091.039.026.026.034.061.026.104l-1.872 6.318c-.026.069-.074.104-.143.104h-.689c-.07 0-.117-.035-.143-.104l-1.417-4.862c-.009-.017-.022-.026-.039-.026-.009 0-.018.009-.026.026l-1.378 4.862c-.026.069-.074.104-.143.104h-.702zm9.756.065c-.486 0-.919-.078-1.3-.234-.373-.156-.663-.364-.871-.624-.2-.26-.299-.55-.299-.871v-.156c0-.087.043-.13.13-.13h.624c.086 0 .13.043.13.13v.104c0 .286.147.537.442.754.303.208.68.312 1.131.312.45 0 .814-.1 1.092-.299.277-.208.416-.468.416-.78a.7.7 0 0 0-.221-.533 1.459 1.459 0 0 0-.507-.325c-.191-.078-.49-.178-.897-.299a9.273 9.273 0 0 1-1.196-.416 2.294 2.294 0 0 1-.793-.572c-.208-.251-.312-.568-.312-.949 0-.555.216-.997.65-1.326.433-.329 1.005-.494 1.716-.494.476 0 .897.078 1.261.234.372.156.658.373.858.65.199.269.299.572.299.91v.039c0 .087-.044.13-.13.13h-.611c-.087 0-.13-.043-.13-.13v-.039c0-.295-.143-.542-.429-.741-.278-.199-.655-.299-1.131-.299-.442 0-.798.091-1.066.273a.82.82 0 0 0-.403.728c0 .295.13.52.39.676.26.156.663.312 1.209.468.502.147.91.286 1.222.416.312.13.58.321.806.572.225.243.338.563.338.962 0 .563-.221 1.014-.663 1.352-.442.338-1.027.507-1.755.507zm6.3-3.705c-.087 0-.13-.043-.13-.13v-.546c0-.087.043-.13.13-.13h3.848c.087 0 .13.043.13.13v.546c0 .087-.043.13-.13.13h-3.848zm13.634 1.352c0 .659-.217 1.2-.65 1.625-.425.425-1.023.676-1.794.754-.035 0-.052.017-.052.052l.013.936c0 .087-.044.13-.13.13h-.572c-.087 0-.13-.043-.13-.13l.013-.936c0-.035-.018-.052-.052-.052-.789-.087-1.404-.342-1.846-.767-.442-.433-.663-.984-.663-1.651v-.403c0-.087.043-.13.13-.13h.585c.086 0 .13.043.13.13v.351c0 .503.195.91.585 1.222.398.303.944.455 1.638.455.624 0 1.1-.139 1.43-.416.329-.286.494-.663.494-1.131a1.3 1.3 0 0 0-.234-.78c-.148-.217-.377-.42-.689-.611-.312-.191-.759-.412-1.339-.663a14.13 14.13 0 0 1-1.443-.676 2.716 2.716 0 0 1-.819-.754c-.208-.312-.312-.702-.312-1.17 0-.667.203-1.196.611-1.586.407-.399.97-.633 1.69-.702.034 0 .052-.017.052-.052l-.013-1.014c0-.087.043-.13.13-.13h.559c.086 0 .13.043.13.13l-.013 1.027c0 .035.017.052.052.052.762.087 1.36.347 1.794.78.433.433.65.988.65 1.664v.286c0 .087-.044.13-.13.13h-.611c-.087 0-.13-.043-.13-.13v-.234c0-.503-.187-.914-.559-1.235-.373-.321-.889-.481-1.547-.481-.581 0-1.027.126-1.339.377-.312.251-.468.615-.468 1.092 0 .312.073.572.221.78.156.199.372.377.65.533a18.6 18.6 0 0 0 1.313.585c.598.26 1.079.503 1.443.728.372.225.667.503.884.832.225.321.338.715.338 1.183zm6.481-5.213c.104.347.156.754.156 1.222v4.056c0 .711-.234 1.278-.702 1.703-.468.416-1.079.624-1.833.624-.728 0-1.321-.204-1.781-.611-.45-.416-.676-.953-.676-1.612v-.182c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v.104c0 .442.143.802.429 1.079.286.277.655.416 1.105.416.468 0 .854-.143 1.157-.429.304-.295.455-.68.455-1.157v-1.898c0-.017-.008-.026-.026-.026-.017-.009-.03-.004-.039.013-.381.511-.953.767-1.716.767-.546 0-1.005-.121-1.378-.364a2.29 2.29 0 0 1-.832-1.027c-.182-.364-.273-.858-.273-1.482 0-.529.065-.962.195-1.3.182-.503.473-.893.871-1.17.408-.277.906-.416 1.495-.416.624 0 1.149.152 1.573.455.434.295.733.706.897 1.235zm-2.431 3.263c.382 0 .702-.091.962-.273.269-.191.455-.451.559-.78.096-.251.143-.602.143-1.053 0-.373-.039-.689-.117-.949a1.535 1.535 0 0 0-.559-.793c-.268-.199-.598-.299-.988-.299-.372 0-.693.095-.962.286-.268.182-.459.451-.572.806-.095.243-.143.572-.143.988 0 .442.057.789.169 1.04.104.312.286.563.546.754.26.182.581.273.962.273zm9.211-3.263c.104.347.156.754.156 1.222v4.056c0 .711-.234 1.278-.702 1.703-.468.416-1.079.624-1.833.624-.728 0-1.322-.204-1.781-.611-.451-.416-.676-.953-.676-1.612v-.182c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v.104c0 .442.143.802.429 1.079.286.277.654.416 1.105.416.468 0 .853-.143 1.157-.429.303-.295.455-.68.455-1.157v-1.898c0-.017-.009-.026-.026-.026-.018-.009-.031-.004-.039.013-.382.511-.954.767-1.716.767-.546 0-1.006-.121-1.378-.364a2.283 2.283 0 0 1-.832-1.027c-.182-.364-.273-.858-.273-1.482 0-.529.065-.962.195-1.3.182-.503.472-.893.871-1.17.407-.277.905-.416 1.495-.416.624 0 1.148.152 1.573.455.433.295.732.706.897 1.235zm-2.431 3.263c.381 0 .702-.091.962-.273.268-.191.455-.451.559-.78.095-.251.143-.602.143-1.053 0-.373-.039-.689-.117-.949a1.54 1.54 0 0 0-.559-.793c-.269-.199-.598-.299-.988-.299-.373 0-.694.095-.962.286-.269.182-.46.451-.572.806-.096.243-.143.572-.143.988 0 .442.056.789.169 1.04.104.312.286.563.546.754.26.182.58.273.962.273zm5.232 4.212a.72.72 0 0 1-.533-.208.731.731 0 0 1-.195-.52c0-.217.065-.39.195-.52a.72.72 0 0 1 .533-.208c.208 0 .381.069.52.208.139.13.208.303.208.52a.705.705 0 0 1-.208.52.705.705 0 0 1-.52.208zm7.596-7.475c.104.347.156.754.156 1.222v4.056c0 .711-.234 1.278-.702 1.703-.468.416-1.079.624-1.833.624-.728 0-1.321-.204-1.781-.611-.45-.416-.676-.953-.676-1.612v-.182c0-.087.044-.13.13-.13h.663c.087 0 .13.043.13.13v.104c0 .442.143.802.429 1.079.286.277.655.416 1.105.416.468 0 .854-.143 1.157-.429.304-.295.455-.68.455-1.157v-1.898c0-.017-.008-.026-.026-.026-.017-.009-.03-.004-.039.013-.381.511-.953.767-1.716.767-.546 0-1.005-.121-1.378-.364a2.29 2.29 0 0 1-.832-1.027c-.182-.364-.273-.858-.273-1.482 0-.529.065-.962.195-1.3.182-.503.473-.893.871-1.17.408-.277.906-.416 1.495-.416.624 0 1.149.152 1.573.455.434.295.733.706.897 1.235zm-2.431 3.263c.382 0 .702-.091.962-.273.269-.191.455-.451.559-.78.096-.251.143-.602.143-1.053 0-.373-.039-.689-.117-.949a1.535 1.535 0 0 0-.559-.793c-.268-.199-.598-.299-.988-.299-.372 0-.693.095-.962.286-.268.182-.459.451-.572.806-.095.243-.143.572-.143.988 0 .442.057.789.169 1.04.104.312.286.563.546.754.26.182.581.273.962.273zm9.354.26c.078.381.117.771.117 1.17 0 .425-.039.789-.117 1.092a2.357 2.357 0 0 1-.884 1.326c-.442.321-.975.481-1.6.481-.615 0-1.139-.156-1.572-.468a2.311 2.311 0 0 1-.884-1.248 2.707 2.707 0 0 1-.118-.572v-.026c0-.069.04-.104.118-.104h.689c.086 0 .134.043.143.13 0 .052.017.139.052.26a1.6 1.6 0 0 0 .533.897c.277.217.619.325 1.027.325.416 0 .762-.117 1.04-.351.286-.234.472-.555.559-.962.052-.199.078-.459.078-.78 0-.295-.022-.576-.065-.845-.061-.399-.234-.702-.52-.91-.286-.208-.642-.312-1.066-.312-.382 0-.724.087-1.027.26-.304.173-.499.403-.585.689-.026.078-.074.117-.143.117h-.702c-.087 0-.131-.043-.131-.13v-5.031c0-.087.044-.13.131-.13h4.55c.086 0 .13.043.13.13v.546c0 .087-.044.13-.13.13h-3.705c-.035 0-.052.017-.052.052l-.013 3.146c0 .017.004.03.013.039.017.009.034.004.052-.013.216-.199.472-.351.767-.455.294-.113.606-.169.936-.169.615 0 1.135.152 1.56.455.424.295.697.715.819 1.261zm4.002.338c-.087 0-.13-.043-.13-.13v-.546c0-.087.043-.13.13-.13h3.848c.086 0 .13.043.13.13v.546c0 .087-.044.13-.13.13h-3.848zm8.434 3.64c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v8.84c0 .087-.044.13-.13.13h-.663zm5.782-6.669c.693 0 1.243.204 1.651.611.416.407.624.953.624 1.638v4.29c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-4.108c0-.477-.148-.867-.442-1.17-.286-.303-.659-.455-1.118-.455-.477 0-.863.147-1.157.442-.295.295-.442.68-.442 1.157v4.134c0 .087-.044.13-.13.13h-.663c-.087 0-.13-.043-.13-.13v-6.318c0-.087.043-.13.13-.13h.663c.086 0 .13.043.13.13v.559c0 .017.004.03.013.039.017.009.03.004.039-.013.381-.537.966-.806 1.755-.806zm9.038 6.734c-.485 0-.919-.078-1.3-.234-.373-.156-.663-.364-.871-.624a1.398 1.398 0 0 1-.299-.871v-.156c0-.087.043-.13.13-.13h.624c.087 0 .13.043.13.13v.104c0 .286.147.537.442.754.303.208.68.312 1.131.312.451 0 .815-.1 1.092-.299.277-.208.416-.468.416-.78a.7.7 0 0 0-.221-.533 1.459 1.459 0 0 0-.507-.325c-.191-.078-.49-.178-.897-.299a9.327 9.327 0 0 1-1.196-.416 2.303 2.303 0 0 1-.793-.572c-.208-.251-.312-.568-.312-.949 0-.555.217-.997.65-1.326.433-.329 1.005-.494 1.716-.494.477 0 .897.078 1.261.234.373.156.659.373.858.65.199.269.299.572.299.91v.039c0 .087-.043.13-.13.13h-.611c-.087 0-.13-.043-.13-.13v-.039c0-.295-.143-.542-.429-.741-.277-.199-.654-.299-1.131-.299-.442 0-.797.091-1.066.273a.82.82 0 0 0-.403.728c0 .295.13.52.39.676.26.156.663.312 1.209.468.503.147.91.286 1.222.416.312.13.581.321.806.572.225.243.338.563.338.962 0 .563-.221 1.014-.663 1.352-.442.338-1.027.507-1.755.507zm7.039-6.006c0 .087-.043.13-.13.13h-1.469c-.034 0-.052.017-.052.052v3.835c0 .416.091.711.273.884.191.165.486.247.884.247h.325c.087 0 .13.043.13.13v.533c0 .087-.043.13-.13.13a6.21 6.21 0 0 1-.481.013c-.624 0-1.096-.117-1.417-.351-.32-.234-.481-.667-.481-1.3v-4.121c0-.035-.017-.052-.052-.052h-.793c-.086 0-.13-.043-.13-.13v-.507c0-.087.044-.13.13-.13h.793c.035 0 .052-.017.052-.052v-1.508c0-.087.044-.13.13-.13h.637c.087 0 .13.043.13.13v1.508c0 .035.018.052.052.052h1.469c.087 0 .13.043.13.13v.507zm4.103 6.045c-.624 0-1.161-.16-1.612-.481a2.463 2.463 0 0 1-.936-1.326c-.121-.399-.182-.932-.182-1.599 0-.667.061-1.196.182-1.586.165-.555.472-.992.923-1.313.451-.321.997-.481 1.638-.481.615 0 1.144.16 1.586.481a2.4 2.4 0 0 1 .923 1.3c.121.373.182.906.182 1.599 0 .702-.061 1.235-.182 1.599-.165.563-.472 1.005-.923 1.326-.442.321-.975.481-1.599.481zm0-.806c.416 0 .771-.113 1.066-.338.295-.234.494-.546.598-.936.078-.312.117-.75.117-1.313 0-.572-.035-1.01-.104-1.313a1.637 1.637 0 0 0-.611-.923c-.295-.234-.654-.351-1.079-.351-.425 0-.784.117-1.079.351a1.659 1.659 0 0 0-.598.923c-.069.303-.104.741-.104 1.313s.035 1.01.104 1.313c.095.39.29.702.585.936.303.225.672.338 1.105.338zm7.058.806c-.624 0-1.161-.16-1.612-.481a2.486 2.486 0 0 1-.91-1.326c-.113-.381-.169-.919-.169-1.612 0-.624.056-1.153.169-1.586.156-.537.459-.966.91-1.287.451-.329.988-.494 1.612-.494.633 0 1.179.16 1.638.481.468.321.771.719.91 1.196.043.156.069.286.078.39v.026c0 .061-.039.1-.117.117l-.65.091h-.026c-.061 0-.1-.039-.117-.117l-.039-.195c-.078-.329-.269-.607-.572-.832-.303-.234-.672-.351-1.105-.351-.433 0-.797.117-1.092.351a1.56 1.56 0 0 0-.559.91c-.078.329-.117.767-.117 1.313 0 .572.039 1.014.117 1.326.087.39.273.702.559.936.295.225.659.338 1.092.338.425 0 .789-.108 1.092-.325a1.42 1.42 0 0 0 .585-.858v-.052l.013-.052c.009-.087.061-.121.156-.104l.637.104c.087.017.126.065.117.143l-.052.26c-.13.503-.429.91-.897 1.222-.468.312-1.018.468-1.651.468zm4.401-.104c-.087 0-.13-.043-.13-.13v-8.84c0-.087.043-.13.13-.13h.663c.087 0 .13.043.13.13v5.317c0 .017.004.03.013.039.017.009.035.004.052-.013l2.756-2.886a.213.213 0 0 1 .156-.065h.78c.052 0 .087.017.104.052.017.035.009.069-.026.104l-1.664 1.846c-.017.017-.022.039-.013.065l1.989 4.355.013.052c0 .069-.039.104-.117.104h-.702c-.069 0-.117-.035-.143-.104l-1.677-3.796c-.017-.035-.039-.039-.065-.013l-1.43 1.508a.089.089 0 0 0-.026.065v2.21c0 .087-.043.13-.13.13h-.663z"/><rect width="278" height="6" x="54" y="303" fill="#E5E5E5" rx="3"/><rect width="255" height="6" x="54" y="319" fill="#E5E5E5" rx="3"/><rect width="158.5" height="31.5" x="297.25" y="79.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M437 100l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-120.184 9.072c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264z"/><path fill="#6577AA" d="M43.128 90.6L40.32 99h-1.26l-2.292-6.708L34.476 99h-1.284l-2.808-8.4h1.236l2.268 6.828 2.364-6.828h1.104l2.316 6.864 2.316-6.864h1.14zm3.544 8.472c-.633 0-1.2-.14-1.704-.42-.505-.28-.9-.664-1.189-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.705-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.175 1.152.288.488.432 1.044.432 1.668 0 .624-.143 1.184-.431 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .767-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.767-.792 2.15 2.15 0 0 0-1.093-.276c-.407 0-.776.092-1.103.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.817 1.032c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.202-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.85-5.484c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V99H84.61v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm12.68 0c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V99H97.29v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.506 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V99h-1.152v-6.36h1.104v1.068zm6.449 5.364c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.134-2.952h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268zm12.026-2.1c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.072-2.58c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V99h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm4.101 1.608c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm11.048-5.544V99h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V92.64h1.152zm2.193-2.544h1.152V99h-1.152v-8.904zm7.08 8.532a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm7.231.468a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.609-.024c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.398-6.492c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm10.555 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm12.699-.972c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm7.04 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm12.303.912c-.848 0-1.612-.184-2.292-.552a4.212 4.212 0 0 1-1.608-1.548 4.266 4.266 0 0 1-.576-2.196c0-.808.192-1.54.576-2.196a4.124 4.124 0 0 1 1.608-1.536c.68-.376 1.444-.564 2.292-.564.84 0 1.6.188 2.28.564a4.04 4.04 0 0 1 1.596 1.536c.384.648.576 1.38.576 2.196 0 .816-.192 1.552-.576 2.208a4.151 4.151 0 0 1-1.596 1.536c-.68.368-1.44.552-2.28.552zm0-1.068c.616 0 1.168-.14 1.656-.42.496-.28.884-.664 1.164-1.152a3.238 3.238 0 0 0 .432-1.656c0-.608-.144-1.156-.432-1.644a3.014 3.014 0 0 0-1.164-1.164 3.267 3.267 0 0 0-1.656-.42 3.4 3.4 0 0 0-1.68.42 3.1 3.1 0 0 0-1.176 1.164 3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.68.872 1.176 1.152a3.4 3.4 0 0 0 1.68.42zm11.746-5.388L244.194 99h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.647 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V99h-1.152v-6.36h1.104v1.068zm4.84 0c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V99h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152V99h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm8.775-1.32V99h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.204-2.208c0 .088-.008.204-.024.348H277c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="172" height="18" x="157" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M201.501 14.6l-2.808 8.4h-1.26l-2.292-6.708L192.849 23h-1.284l-2.808-8.4h1.236l2.268 6.828 2.364-6.828h1.104l2.316 6.864 2.316-6.864h1.14zm3.544 8.472c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm9.484-6.42v2.928h4.212v1.032h-4.212V23h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.294 1.032a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.32 5.076a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(82 168)"/></clipPath><clipPath id="b"><path fill="#fff" d="M0 0h11.25v10H0z" transform="translate(54 277)"/></clipPath><clipPath id="c"><path fill="#fff" d="M0 0h11.25v10H0z" transform="translate(71 277)"/></clipPath><clipPath id="d"><path fill="#fff" d="M0 0h11.25v10H0z" transform="translate(88 277)"/></clipPath><clipPath id="e"><path fill="#fff" d="M0 0h11.25v10H0z" transform="translate(105 277)"/></clipPath><clipPath id="f"><path fill="#fff" d="M0 0h10.47v10H0z" transform="translate(122 277)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/extended-product-title-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="519" height="365" fill="none" viewBox="0 0 519 365"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v345c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="40" y="286" fill="#62699F" rx="5"/><path fill="#fff" d="M59.708 306.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.153-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V306h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm10.63-5.544L74.445 306h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM96.653 306l-.012-6.12-3.035 5.1h-.552l-3.037-5.064V306h-1.151v-8.4h.984l3.504 5.904 3.456-5.904h.983l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V306h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V306h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V306h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V306h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><rect width="6" height="1" x="104.24" y="280.24" fill="#62699F" rx=".5" transform="rotate(-45 104.243 280.243)"/><rect width="6" height="1" x="99.24" y="271" fill="#62699F" rx=".5" transform="rotate(90 99.243 271)"/><rect width="6" height="1" x="93.24" y="280.95" fill="#62699F" rx=".5" transform="rotate(-135 93.243 280.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M100.309 328.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><path fill="#6577AA" d="M49.048 108l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V108H41.26v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zM63 107.064a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.615 0 1.168.136 1.656.408.487.272.867.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.657.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.151v-8.688h1.103v1.008c.257-.352.58-.616.973-.792a3.012 3.012 0 0 1 1.296-.276zm-.097 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.575.444-.767.78a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.275 1.176.184.336.44.6.769.792.328.184.692.276 1.091.276zm4.904-5.424h1.152V108h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V108H84.32v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V108h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.89.06v5.496c0 1.112-.275 1.932-.827 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.311 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm16.128-7.128v8.4h-.984l-5.04-6.264V108h-1.2v-8.4h.984l5.04 6.264V99.6h1.2zm4.662 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V108h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.507 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="243.25" y="88.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M266.016 108.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm10.477-6.456V108h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.017 6.432c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm7.763-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.849-5.484c.8 0 1.432.232 1.896.696.473.464.709 1.152.709 2.064V108h-1.153v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V108h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm15.903 6.42l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V108h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.275-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V108h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.172 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V108h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V108h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><path fill="#6577AA" d="M46.612 152.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.623.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.529-.836-.529-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.825v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.425.276.745.276.351 0 .651-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068zm3.736-1.068H65.6V155h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228.75.75 0 0 1 .552.216.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.147 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V155H67.8v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V155h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H85.42v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.582 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.116-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.161-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068z"/><rect width="235.5" height="31.5" x="243.25" y="135.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M262.26 146.096h1.068v11.232h-1.068v-11.232z"/><rect width="203.5" height="31.5" x="243.25" y="182.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M428 203l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><rect width="84" height="16" x="259" y="190" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M267.536 193.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V202h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V202h-1.152v-6.36h1.104v1.068zm6.401 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V202h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.384-5.424V202h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.965 6.432c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.741-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.784-8.028h1.2v8.4h-1.2v-8.4zm3.714 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(-45 -403.519 323.43)"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(45 62.281 -517.247)"/><path fill="#fff" d="M465 205a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/><path fill="#62699F" fill-rule="evenodd" d="M458 197a7 7 0 1 0 14 0 7 7 0 0 0-14 0zm-1 0a8 8 0 1 0 16 0 8 8 0 0 0-16 0z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M467.828 199.829l-5.656-5.657.707-.707 5.657 5.657-.708.707z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M462.172 199.829l5.656-5.657.708.707-5.657 5.657-.707-.707z" clip-rule="evenodd"/><path fill="#6577AA" d="M43.708 202.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.744-3.456h1.152V202h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.516 5.52c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.742-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.769.108c-.64 0-1.135-.172-1.487-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.424.276.745.276.352 0 .651-.1.9-.3l.36.828zm13.358-1.728H86l-.924 2.1H83.84l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.153v1.392h1.823v.948h-1.823v3.444c0 .344.083.608.251.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V202h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152V202h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V202h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.831-5.424V202h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="203.5" height="31.5" x="243.25" y="229.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M428 250l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><rect width="97" height="16" x="259" y="237" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M267.536 240.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V249h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm6.134-1.704c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V249h-1.152v-6.36h1.104v1.068zm6.401 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.893-7.968V249h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.384-5.424V249h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.965 6.432c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.741-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.452-6.984h-2.88V240.6h6.948v1.044h-2.88V249h-1.188v-7.356zm5.054.996h1.152V249h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.352 7.212a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-8.532h1.152V249h-1.152v-8.904zm9.099 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(-45 -465.555 316.597)"/><path stroke="#62699F" stroke-width=".5" d="M0-.25h7.41" transform="scale(-.97468 -1.0247) rotate(45 110.98 -556.281)"/><path fill="#fff" d="M465 252a8 8 0 1 1 0-16 8 8 0 0 1 0 16z"/><path fill="#62699F" fill-rule="evenodd" d="M458 244a7 7 0 1 0 14 0 7 7 0 0 0-14 0zm-1 0a8 8 0 1 0 16 0 8 8 0 0 0-16 0z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M467.828 246.829l-5.656-5.657.707-.707 5.657 5.657-.708.707z" clip-rule="evenodd"/><path fill="#62699F" fill-rule="evenodd" d="M462.172 246.829l5.656-5.657.708.707-5.657 5.657-.707-.707z" clip-rule="evenodd"/><path fill="#6577AA" d="M43.708 249.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.585-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.744-3.456h1.152V249h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.516 5.52c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm7.742-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.769.108c-.64 0-1.135-.172-1.487-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.825v3.444c0 .344.084.608.252.792.177.184.424.276.745.276.352 0 .651-.1.9-.3l.36.828zm13.358-1.728H86l-.924 2.1H83.84l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.206 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.153v1.392h1.823v.948h-1.823v3.444c0 .344.083.608.251.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V249h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152V249h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V249h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.831-5.424V249h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="182" height="18" x="168" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M206.01 20.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm7.207 2.688a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm2.497-4.92c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V23h-1.152v-6.36h1.104v1.068zm4.84 0c.2-.368.496-.648.887-.84.393-.192.869-.288 1.429-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V23h-1.152v-6.36h1.104v1.068zm3.735-1.068h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.148 1.164c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V23h-1.104v-8.904h1.152V17.6c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.832-5.424V23h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56V16.64h1.152zm5.769 5.988a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.567 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zM272.818 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.82-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(92 313)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/facebook-feed-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="519" height="412" fill="none" viewBox="0 0 519 412"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v392c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="197" height="32" x="40" y="333" fill="#62699F" rx="5"/><path fill="#fff" d="M60.74 353.096c-1.12 0-1.992-.32-2.616-.96-.624-.64-.936-1.56-.936-2.76V344.6h1.2v4.728c0 1.8.788 2.7 2.364 2.7.768 0 1.356-.22 1.764-.66.408-.448.612-1.128.612-2.04V344.6h1.164v4.776c0 1.208-.312 2.132-.936 2.772-.624.632-1.496.948-2.616.948zm9.216-6.516c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.904-7.968V353H79.66v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.772-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V353h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.695.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.774 2.774 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.283-.972c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V353h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.515-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V353h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V353h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.808-2.484V353h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm14.666-3.312h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm9.029 1.104c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.14-.972c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V353h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V353h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.555 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V353h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V353h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V353h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V353h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="6" height="1" x="143.24" y="327.24" fill="#62699F" rx=".5" transform="rotate(-45 143.243 327.243)"/><rect width="6" height="1" x="138.24" y="318" fill="#62699F" rx=".5" transform="rotate(90 138.243 318)"/><rect width="6" height="1" x="132.24" y="327.95" fill="#62699F" rx=".5" transform="rotate(-135 132.243 327.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M139.309 375.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.336 14.087c.387 1.02.868.979 1.077-.091z"/></g><rect width="97.33" height="10" x="40" y="225" fill="#CFD1E1" rx="5"/><rect width="113.23" height="10" x="147.27" y="225" fill="#CFD1E1" rx="5"/><rect width="101.31" height="10" x="270.43" y="225" fill="#CFD1E1" rx="5"/><rect width="97.33" height="10" x="381.67" y="225" fill="#CFD1E1" rx="5"/><rect width="97.33" height="4" x="40" y="252" fill="#CFD1E1" rx="2"/><rect width="113.23" height="4" x="147.27" y="252" fill="#CFD1E1" rx="2"/><rect width="101.31" height="4" x="270.43" y="252" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="381.67" y="252" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="40" y="273" fill="#CFD1E1" rx="2"/><rect width="113.23" height="4" x="147.27" y="273" fill="#CFD1E1" rx="2"/><rect width="101.31" height="4" x="270.43" y="273" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="381.67" y="273" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="40" y="294" fill="#CFD1E1" rx="2"/><rect width="113.23" height="4" x="147.27" y="294" fill="#CFD1E1" rx="2"/><rect width="101.31" height="4" x="270.43" y="294" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="381.67" y="294" fill="#CFD1E1" rx="2"/><path fill="#6577AA" d="M42.46 138.644v2.928h4.212v1.032H42.46V146h-1.2v-8.4h5.928v1.044H42.46zm6.132.996h1.152V146h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V146h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm15.358-2.952v8.4h-.984l-5.04-6.264V146h-1.2v-8.4h.984l5.04 6.264V137.6h1.2zm4.663 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V146h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V146h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V146H87.48v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V146h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.506 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.779 2.779 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="243.25" y="126.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M263.46 138.644v2.928h4.212v1.032h-4.212V146h-1.2v-8.4h5.928v1.044h-4.728zm8.343.936c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V146h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.927.888c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.737-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.116-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V146h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.628 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.365-2.028l-1.32 1.224V146h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628 2.94 3.732h-1.416l-2.388-2.964zm9.513-4.392v2.928h4.212v1.032h-4.212V146h-1.2v-8.4h5.928v1.044h-4.728zM338 142.856c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V146h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="235.5" height="31.5" x="243.25" y="79.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 100l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-198.54 1.644v2.928h4.212v1.032h-4.212V99h-1.2v-8.4h5.928v1.044h-4.728zm8.343.936c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.927.888c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.737-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.116-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V99h-1.104v-8.904h1.152V93.6c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.628 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.365-2.028l-1.32 1.224V99h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628 2.94 3.732h-1.416l-2.388-2.964zm12.069 3.06c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm6.982-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.709-6.048c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.152V99h-1.152v-8.904zm6.075 8.976c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm11.268-8.832h1.044l-3.96 11.304h-1.044l3.96-11.304zm5.078 1.704h1.2V99h-1.2v-8.4zm6.942 1.98c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm6.596 6.492c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm7.764-.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.709-6.048c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm11.239-5.544v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm6.617-4.02c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V99h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312z"/><path fill="#6577AA" d="M42.928 91.644h-2.88V90.6h6.948v1.044h-2.88V99h-1.188v-7.356zm10.299 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408A3.033 3.033 0 0 1 47.31 97.5a3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm12.7-.972c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99H59.53v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.095 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V99h-1.152v-8.904zm5.667 2.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H81.15c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H87.53v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="243.25" y="173.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 194l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-194.46 9l-2.52-3.468-2.484 3.468h-1.38l3.156-4.308-2.964-4.092h1.368l2.352 3.228 2.328-3.228h1.308l-2.964 4.056 3.18 4.344h-1.38zm10.301 0l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V193h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm3.673-8.4h1.2v7.356h4.548V193h-5.748v-8.4z"/><path fill="#6577AA" d="M42.46 185.644v2.928h4.212v1.032H42.46V193h-1.2v-8.4h5.928v1.044H42.46zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V193h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.515-6.42h-2.88V184.6h6.948v1.044h-2.88V193h-1.188v-7.356zm10.436.996l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zm4.447-.06c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.652-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="129" height="18" x="195" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M235.237 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.592-2.148l-1.32 1.224V23h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628L252.19 23h-1.416l-2.388-2.964zm10.401-.18c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.335-1.908v2.928h4.212v1.032h-4.212V23h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(131 360)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/facebook-pixel-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="499" height="380" fill="none" viewBox="0 0 499 380"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v345c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="40" y="202" fill="#62699F" rx="5"/><path fill="#fff" d="M59.708 222.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.153-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V222h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm10.63-5.544L74.445 222h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm11.89 5.544c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.383-.656-.576-1.392-.576-2.208 0-.816.193-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.657 0 1.257.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996a3.42 3.42 0 0 0-1.691.42c-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.287.488.683.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm8.144-6.516c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V222h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V222H97.37v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.286 3.286 0 0 1 1.308-.252zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V222h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V222h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V222h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm11.261-1.872c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.568 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/><rect width="6" height="1" x="104.24" y="196.24" fill="#62699F" rx=".5" transform="rotate(-45 104.243 196.243)"/><rect width="6" height="1" x="99.24" y="187" fill="#62699F" rx=".5" transform="rotate(90 99.243 187)"/><rect width="6" height="1" x="93.24" y="196.95" fill="#62699F" rx=".5" transform="rotate(-135 93.243 196.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M100.309 244.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><g opacity=".7"><g filter="url(#b)"><ellipse cx="449.53" cy="252.77" fill="#DAE0E5" rx="18.82" ry="19.23"/><path stroke="#495057" d="M467.843 252.774c0 10.356-8.211 18.732-18.316 18.732-10.106 0-18.316-8.376-18.316-18.732s8.21-18.732 18.316-18.732c10.105 0 18.316 8.376 18.316 18.732z"/></g><g fill="#495057" clip-path="url(#c)"><path d="M453.1 260.202a.666.666 0 0 0 .762-.556l.661-4.056a.674.674 0 0 0-.544-.778.662.662 0 0 0-.761.555l-.661 4.057a.674.674 0 0 0 .543.778zm-7.864-.556a.666.666 0 0 0 .762.556.674.674 0 0 0 .543-.778l-.661-4.057a.662.662 0 0 0-.761-.555.674.674 0 0 0-.544.778l.661 4.056z"/><path d="M460.155 249.394h-2.328l-5.093-6.508a.652.652 0 0 0-.93-.105.685.685 0 0 0-.103.95l4.432 5.663h-13.212l4.432-5.663a.685.685 0 0 0-.103-.95.652.652 0 0 0-.93.105l-5.093 6.508h-2.328a.668.668 0 0 0-.662.676v2.704c0 .374.296.676.662.676h.824l2.509 8.976c.081.29.34.49.636.49h13.318c.295 0 .555-.2.636-.49l2.509-8.976h.824a.67.67 0 0 0 .662-.676v-2.704a.67.67 0 0 0-.662-.676zm-4.468 12.17h-12.32l-2.268-8.114h16.856l-2.268 8.114zm3.807-9.466H439.56v-1.352h19.934v1.352z"/><path d="M449.527 260.211a.669.669 0 0 0 .661-.676v-4.057a.669.669 0 0 0-.661-.676.67.67 0 0 0-.662.676v4.057a.67.67 0 0 0 .662.676z"/></g></g><g opacity=".7"><g filter="url(#d)"><ellipse cx="421.92" cy="294.4" fill="#DAE0E5" rx="18.82" ry="19.23"/><path stroke="#495057" d="M440.234 294.399c0 10.356-8.211 18.732-18.316 18.732-10.106 0-18.316-8.376-18.316-18.732 0-10.355 8.21-18.732 18.316-18.732 10.105 0 18.316 8.377 18.316 18.732z"/></g><g fill="#495057" clip-path="url(#e)"><path d="M430.738 286.466h-17.641c-1.361 0-2.469 1.133-2.469 2.524v10.818c0 1.392 1.108 2.525 2.469 2.525h17.641c1.361 0 2.469-1.133 2.469-2.525V288.99c0-1.391-1.108-2.524-2.469-2.524zm-17.641 1.443h17.641c.583 0 1.058.485 1.058 1.081v1.443h-19.757v-1.443c0-.596.475-1.081 1.058-1.081zm17.641 12.981h-17.641a1.071 1.071 0 0 1-1.058-1.082v-7.933h19.757v7.933c0 .597-.475 1.082-1.058 1.082z"/><path d="M415.567 298.727h-.706a.714.714 0 0 1-.705-.722v-.721c0-.398.316-.721.705-.721h.706c.39 0 .706.323.706.721v.721a.714.714 0 0 1-.706.722z"/></g></g><g opacity=".7"><g filter="url(#f)"><ellipse cx="375.76" cy="315.77" fill="#DAE0E5" rx="18.82" ry="19.23"/><path stroke="#495057" d="M394.078 315.768c0 10.356-8.211 18.732-18.317 18.732-10.105 0-18.316-8.376-18.316-18.732s8.211-18.732 18.316-18.732c10.106 0 18.317 8.376 18.317 18.732z"/></g><g fill="#495057" clip-path="url(#g)"><path d="M380.088 322.241l-1.201-1.388-.991.896 2.149 2.484 3.48-3.685-.951-.939-2.486 2.632z"/><path d="M380.765 316.189c-.121 0-.24.004-.359.012l-.384-6.711h-3.13v-1.305c0-2.181-1.736-3.956-3.871-3.956-2.134 0-3.87 1.775-3.87 3.956v1.305h-3.131l-.695 12.165a3.423 3.423 0 0 0 .904 2.539 3.272 3.272 0 0 0 2.427 1.07h7.899c.998 1.246 2.515 2.043 4.21 2.043 2.999 0 5.439-2.494 5.439-5.559s-2.44-5.559-5.439-5.559zm-10.292-8.004c0-1.436 1.143-2.604 2.548-2.604s2.548 1.168 2.548 2.604v1.305h-5.096v-1.305zm-1.817 15.727c-.56 0-1.08-.23-1.465-.646a2.066 2.066 0 0 1-.545-1.532l.622-10.892h1.882v1.695h1.323v-1.695h5.096v1.695h1.323v-1.695h1.882l.321 5.615c-2.185.722-3.769 2.821-3.769 5.291 0 .767.153 1.498.429 2.164h-7.099zm12.109 2.043c-2.27 0-4.116-1.887-4.116-4.207s1.846-4.207 4.116-4.207c2.269 0 4.116 1.887 4.116 4.207s-1.847 4.207-4.116 4.207z"/></g></g><g opacity=".7"><g filter="url(#h)"><ellipse cx="329.61" cy="315.77" fill="#DAE0E5" rx="18.82" ry="19.23"/><path stroke="#495057" d="M347.921 315.768c0 10.356-8.21 18.732-18.316 18.732-10.105 0-18.316-8.376-18.316-18.732s8.211-18.732 18.316-18.732c10.106 0 18.316 8.376 18.316 18.732z"/></g><g fill="#495057" clip-path="url(#i)"><path d="M328.351 314.98c-5.277 0-8.183 2.552-8.183 7.185 0 .362.287.655.641.655h15.084c.354 0 .64-.293.64-.655 0-4.633-2.906-7.185-8.182-7.185zm-6.878 6.53c.252-3.464 2.563-5.219 6.878-5.219 4.315 0 6.625 1.755 6.878 5.219h-13.756zm6.878-16.64c-2.424 0-4.252 1.906-4.252 4.433 0 2.601 1.908 4.716 4.252 4.716s4.252-2.115 4.252-4.716c0-2.527-1.828-4.433-4.252-4.433zm0 7.839c-1.638 0-2.97-1.528-2.97-3.406 0-1.809 1.249-3.123 2.97-3.123 1.693 0 2.97 1.343 2.97 3.123 0 1.878-1.332 3.406-2.97 3.406z"/></g><path fill="#DAE0E5" stroke="#495057" d="M339.768 320.255c0 2.921-2.314 5.27-5.145 5.27-2.831 0-5.145-2.349-5.145-5.27 0-2.92 2.314-5.269 5.145-5.269 2.831 0 5.145 2.349 5.145 5.269z"/><path fill="#495057" d="M333.998 320.644l-1.204-1.388-.994.896 2.155 2.484 3.49-3.685-.954-.939-2.493 2.632z"/></g><g filter="url(#j)" opacity=".7"><ellipse cx="283.45" cy="294.4" fill="#DAE0E5" rx="18.82" ry="19.23"/><path stroke="#495057" d="M301.765 294.399c0 10.356-8.211 18.732-18.316 18.732-10.106 0-18.317-8.376-18.317-18.732 0-10.355 8.211-18.732 18.317-18.732 10.105 0 18.316 8.377 18.316 18.732z"/></g><g fill="#7D8287" clip-path="url(#k)"><path d="M293.465 291.039l-1.135-4.644a1.26 1.26 0 0 0-1.217-.97h-15.328c-.576 0-1.077.4-1.218.97l-1.135 4.644a.62.62 0 0 0-.019.155c0 1.767 1.336 3.206 2.979 3.206.955 0 1.807-.486 2.352-1.24.546.754 1.398 1.24 2.352 1.24.955 0 1.807-.486 2.352-1.24.546.754 1.396 1.24 2.352 1.24s1.807-.486 2.352-1.24c.546.754 1.396 1.24 2.352 1.24 1.644 0 2.98-1.439 2.98-3.206a.671.671 0 0 0-.019-.155zm-2.961 4.643a4.045 4.045 0 0 1-2.352-.754c-1.372.975-3.331.975-4.704 0-1.372.975-3.331.975-4.704 0a4.045 4.045 0 0 1-2.352.754 4.001 4.001 0 0 1-1.725-.399v6.809c0 .708.562 1.282 1.255 1.282h5.017v-5.128h5.018v5.128h5.018c.692 0 1.254-.574 1.254-1.282v-6.809a4.001 4.001 0 0 1-1.725.399z"/></g><g opacity=".7"><g filter="url(#l)"><ellipse cx="255.82" cy="252.77" fill="#DAE0E5" rx="18.82" ry="19.23"/><path stroke="#495057" d="M274.132 252.774c0 10.356-8.21 18.732-18.316 18.732-10.105 0-18.316-8.376-18.316-18.732s8.211-18.732 18.316-18.732c10.106 0 18.316 8.376 18.316 18.732z"/></g><g clip-path="url(#m)"><path fill="#495057" d="M250.834 256.906h12.964a.67.67 0 0 0 .641-.488l2.639-9.055a.698.698 0 0 0-.105-.604.664.664 0 0 0-.536-.275h-17.025l-.9-3.09a.67.67 0 0 0-.641-.488h-2.676a.677.677 0 0 0-.669.683c0 .378.3.684.669.684h2.177l.896 3.075.009.03 2.38 8.168c-1.359.093-2.436 1.252-2.436 2.663 0 1.473 1.172 2.671 2.613 2.671h.664c.29 1.017 1.21 1.762 2.297 1.762 1.088 0 2.008-.745 2.298-1.762h3.549c.29 1.017 1.21 1.762 2.298 1.762 1.087 0 2.007-.745 2.297-1.762h.862a.677.677 0 0 0 .669-.684c0-.377-.3-.683-.669-.683h-.862c-.29-1.018-1.21-1.763-2.297-1.763-1.088 0-2.008.745-2.298 1.763h-3.549c-.29-1.018-1.21-1.763-2.298-1.763-1.087 0-2.007.745-2.297 1.763h-.664c-.703 0-1.275-.585-1.275-1.304 0-.718.572-1.303 1.275-1.303zm9.813-9.055h4.893l-.921 3.16h-3.972v-3.16zm0 4.528h3.573l-.92 3.16h-2.653v-3.16zm-4.95-4.528h3.612v3.16h-3.612v-3.16zm0 4.528h3.612v3.16h-3.612v-3.16zm-1.338 3.16h-2.308l-.921-3.16h3.229v3.16zm-4.548-7.688h4.548v3.16h-3.627l-.921-3.16zm12.129 11.266c.582 0 1.055.484 1.055 1.079s-.473 1.079-1.055 1.079a1.07 1.07 0 0 1-1.056-1.079 1.07 1.07 0 0 1 1.056-1.079zm-8.145 0a1.07 1.07 0 0 1 1.056 1.079 1.07 1.07 0 0 1-1.056 1.079 1.068 1.068 0 0 1-1.055-1.079c0-.595.473-1.079 1.055-1.079z"/></g></g><path fill="#4367B1" d="M381.178 213.168l-24.779-14.306a8.074 8.074 0 0 0-7.263 0l-24.779 14.306a8.091 8.091 0 0 0-3.625 6.293v28.612a8.078 8.078 0 0 0 3.625 6.282l2.76 1.593 25.657 15.438 25.668-15.415 2.725-1.57a8.09 8.09 0 0 0 3.625-6.281v-28.671a8.084 8.084 0 0 0-3.614-6.281zm-43.149 36.025a3.277 3.277 0 0 1-2.31-.97l-12.251-12.262a3.304 3.304 0 0 1 0-4.619l12.251-12.32a3.314 3.314 0 0 1 2.41-1.33 3.297 3.297 0 0 1 2.581.958 3.3 3.3 0 0 1 .958 2.581 3.309 3.309 0 0 1-1.33 2.41l-9.953 9.953 9.918 9.918a3.3 3.3 0 0 1-.433 5.109 3.296 3.296 0 0 1-1.841.572zm9.491 2.899a3.327 3.327 0 0 1-2.991 1.905 3.308 3.308 0 0 1-2.791-1.533 3.293 3.293 0 0 1-.199-3.178l16.835-35.795a3.308 3.308 0 0 1 3.142-1.897 3.3 3.3 0 0 1 2.839 4.703l-16.835 35.795zm34.57-16.166l-12.285 12.286a3.314 3.314 0 0 1-2.41 1.33 3.297 3.297 0 0 1-2.581-.958 3.313 3.313 0 0 1-.958-2.581 3.314 3.314 0 0 1 1.33-2.41l9.953-9.953-9.976-9.999a3.301 3.301 0 0 1 0-4.619 3.385 3.385 0 0 1 4.619 0l12.262 12.251a3.303 3.303 0 0 1 .046 4.665v-.012z"/><rect width="20.51" height="20.51" x="368.58" y="250.85" fill="#99D6A3" rx="5"/><path fill="#fff" d="M384.981 264.889c0 .645-.117 1.231-.351 1.758-.235.521-.56.97-.977 1.348-.41.371-.901.657-1.474.859a5.637 5.637 0 0 1-1.885.303c-1.491 0-2.63-.469-3.418-1.407-.788-.937-1.182-2.369-1.182-4.296 0-.704.043-1.371.127-2.002a8.32 8.32 0 0 1 .42-1.758 5.681 5.681 0 0 1 .801-1.465 4.485 4.485 0 0 1 1.26-1.104c.501-.306 1.093-.54 1.777-.703.684-.169 1.478-.254 2.383-.254h1.455v2.022h-1.699c-.703 0-1.293.072-1.768.215-.475.143-.863.348-1.162.615-.3.267-.524.592-.674.977-.15.384-.247.817-.293 1.298l-.019.235a5.84 5.84 0 0 1 2.519-.557c.69 0 1.296.091 1.817.274.52.175.953.433 1.298.771.352.339.612.749.782 1.231.175.481.263 1.028.263 1.64zm-2.48.108c0-.3-.039-.573-.117-.821a1.585 1.585 0 0 0-.371-.644 1.565 1.565 0 0 0-.635-.42 2.42 2.42 0 0 0-.918-.156 3.39 3.39 0 0 0-.625.058 4.638 4.638 0 0 0-.596.137 6.77 6.77 0 0 0-.547.195 4.47 4.47 0 0 0-.459.225c0 .657.046 1.214.137 1.67.091.449.228.817.41 1.103.189.287.42.495.694.625.279.124.602.186.966.186.313 0 .596-.052.85-.156a1.8 1.8 0 0 0 .644-.44c.183-.195.323-.423.42-.684.098-.266.147-.559.147-.878z"/><path fill="#6577AA" d="M43.46 147.644v2.928h4.212v1.032H43.46V155h-1.2v-8.4h5.928v1.044H43.46zm8.343.936c.88 0 1.552.216 2.016.648.471.432.707 1.076.707 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.711 0-1.283-.172-1.715-.516-.425-.344-.636-.796-.636-1.356s.204-1.008.611-1.344c.408-.344 1.056-.516 1.944-.516h1.825v-.228c0-.496-.145-.876-.432-1.14-.288-.264-.712-.396-1.273-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.453-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.551-.48.695-.84v-.888h-1.776c-.975 0-1.463.328-1.463.984 0 .32.123.572.372.756.248.184.592.276 1.032.276zm7.927.888c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.737-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.116-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V155h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.628 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.365-2.028l-1.32 1.224V155h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628 2.94 3.732h-1.416l-2.388-2.964zm11.589-5.436c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V155h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm5.03-2.772h1.152V155h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.831 7.584l-1.836-2.436-1.86 2.436h-1.284l2.508-3.252-2.388-3.108h1.284l1.752 2.292 1.74-2.292h1.26l-2.4 3.108 2.532 3.252h-1.308zm8.102-3.144c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.744-3.456h1.152V155h-1.152v-8.904zm10.498 9c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.203-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V155h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V155h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.348 6.048a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.139-.972c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V155h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V155h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.348 6.048a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.784-8.028h1.2v8.4h-1.2v-8.4zm3.714 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268zm6.391-7.932a.71.71 0 0 1 .552.24.78.78 0 0 1 .228.576c0 .12-.012.24-.036.36a3.935 3.935 0 0 1-.156.492l-.576 1.68h-.756l.444-1.788a.801.801 0 0 1-.372-.276.842.842 0 0 1-.132-.468c0-.24.076-.436.228-.588a.78.78 0 0 1 .576-.228zm4.055 9.048c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm9.739-8.1c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V155h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm4.532 8.1c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.998-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068zm14.504-3.108l-3.684 8.4h-1.188l-3.696-8.4h1.296l3.024 6.9 3.048-6.9h1.2zm2.739 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V155h-1.152v-6.36h1.104v1.068zm3.736-1.068h1.152V155h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.091 1.164c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V155h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V155h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.499 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V155h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V155h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264z"/><rect width="158.5" height="31.5" x="320.25" y="135.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M340.536 146.6c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V155h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm5.03-2.772h1.152V155h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.831 7.584l-1.836-2.436-1.86 2.436h-1.284l2.508-3.252-2.388-3.108h1.284l1.752 2.292 1.74-2.292h1.26l-2.4 3.108 2.532 3.252h-1.308zm8.102-3.144c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.744-3.456h1.152V155h-1.152v-8.904zm6.742.504h1.2v8.4h-1.2v-8.4zm3.715 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><rect width="158.5" height="31.5" x="320.25" y="88.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 109l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-116.644 7.956V108h-6.096v-8.4h5.928v1.044h-4.728v2.58h4.212v1.02h-4.212v2.712h4.896zm5.171-5.376c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V108h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V108h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V108h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V108h-1.152v-8.904zm9.099 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V108h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><path fill="#6577AA" d="M41.26 99.6h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396H42.46v6.312h2.268zm6.278-5.316h1.152V108h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm4.6 7.656c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm6.503-6.492c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V108h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V108H75.72v-8.904zm9.1 5.76c0 .088-.008.204-.025.348h-5.16c.073.56.317 1.012.733 1.356.424.336.948.504 1.572.504.76 0 1.371-.256 1.835-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.423.176-.9.264-1.427.264-.672 0-1.269-.136-1.788-.408a3.033 3.033 0 0 1-1.213-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.137-1.172.409-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.607 0 1.147.14 1.62.42.48.272.852.656 1.115 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.553 0-1.017.168-1.393.504-.368.336-.584.776-.648 1.32h4.08c-.063-.536-.283-.972-.66-1.308-.367-.344-.828-.516-1.38-.516zm7.275-4.656h1.044l-3.96 11.304h-1.044l3.96-11.304zm7.95 9.06V108h-6.095v-8.4h5.928v1.044h-4.728v2.58h4.212v1.02h-4.212v2.712h4.896zm5.172-5.376c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V108h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V108h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.492-5.604c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V108h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.903-7.968h1.152V108h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V108h-1.2v-8.4h5.928v1.044h-4.728zm8.343.936c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V108h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.927.888c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.738-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.115-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V108h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.628 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.365-2.028l-1.32 1.224V108h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628 2.94 3.732h-1.416l-2.388-2.964zm11.59-5.436c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V108h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm5.029-2.772h1.152V108h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.832 7.584l-1.836-2.436-1.86 2.436h-1.284l2.508-3.252-2.388-3.108h1.284l1.752 2.292 1.74-2.292h1.26l-2.4 3.108 2.532 3.252h-1.308zm8.102-3.144c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm4.743-3.456h1.152V108h-1.152v-8.904z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="167" height="18" x="160" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M204.362 14.6l-2.808 8.4h-1.26l-2.292-6.708L195.71 23h-1.284l-2.808-8.4h1.236l2.268 6.828 2.364-6.828h1.104l2.316 6.864 2.316-6.864h1.14zm3.544 8.472c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.444-7.092c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V23h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm7.557 4.884c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.502 1.008c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm9.936-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.32 5.076a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.816 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/></g><defs><filter id="b" width="97.63" height="98.46" x="400.71" y="218.54" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="d" width="97.63" height="98.46" x="373.1" y="260.17" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="f" width="97.63" height="98.46" x="326.94" y="281.54" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="h" width="97.63" height="98.46" x="280.79" y="281.54" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="j" width="97.63" height="98.46" x="234.63" y="260.17" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="l" width="97.63" height="98.46" x="207" y="218.54" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(92 229)"/></clipPath><clipPath id="c"><path fill="#fff" d="M0 0h22.58v23.08H0z" transform="translate(438.237 241.235)"/></clipPath><clipPath id="e"><path fill="#fff" d="M0 0h22.58v23.08H0z" transform="translate(410.628 282.86)"/></clipPath><clipPath id="g"><path fill="#fff" d="M0 0h22.58v23.08H0z" transform="translate(364.472 304.229)"/></clipPath><clipPath id="i"><path fill="#fff" d="M0 0h17.56v17.95H0z" transform="translate(319.57 304.87)"/></clipPath><clipPath id="k"><path fill="#fff" d="M0 0h20.07v20.51H0z" transform="translate(273.413 284.143)"/></clipPath><clipPath id="m"><path fill="#fff" d="M0 0h22.58v23.08H0z" transform="translate(244.526 241.235)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/feed-making-batches-thumbnail.svg ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="486" height="230" viewBox="0 0 486 230" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <g opacity="0.8">
3
+ <path d="M0 10C0 4.47715 4.47715 0 10 0H476C481.523 0 486 4.47715 486 10V220C486 225.523 481.523 230 476 230H9.99999C4.47715 230 0 225.523 0 220V10Z" fill="#F5F6F9"/>
4
+ <path d="M0 10C0 4.47715 4.47715 0 10 0H476C481.523 0 486 4.47715 486 10V38H0V10Z" fill="#E8E9F1"/>
5
+ <path d="M45.1368 19.5693C45.1368 22.6194 42.7317 25.0693 39.7924 25.0693C36.8532 25.0693 34.4481 22.6194 34.4481 19.5693C34.4481 16.5193 36.8532 14.0693 39.7924 14.0693C42.7317 14.0693 45.1368 16.5193 45.1368 19.5693Z" stroke="#EB5757"/>
6
+ <path d="M60.8928 19.5693C60.8928 22.6194 58.4877 25.0693 55.5484 25.0693C52.6091 25.0693 50.2041 22.6194 50.2041 19.5693C50.2041 16.5193 52.6091 14.0693 55.5484 14.0693C58.4877 14.0693 60.8928 16.5193 60.8928 19.5693Z" stroke="#F2994A"/>
7
+ <path d="M76.6486 19.5693C76.6486 22.6194 74.2436 25.0693 71.3043 25.0693C68.365 25.0693 65.96 22.6194 65.96 19.5693C65.96 16.5193 68.365 14.0693 71.3043 14.0693C74.2436 14.0693 76.6486 16.5193 76.6486 19.5693Z" stroke="#219653"/>
8
+ <path d="M98.746 21.5506C100.234 17.044 104.445 14 109.191 14H138.106C142.852 14 147.063 17.0439 148.551 21.5506L154.149 38.5H93.1486L98.746 21.5506Z" fill="#C3C5DA"/>
9
+ <path d="M147.746 21.5506C149.234 17.044 153.445 14 158.191 14H267.106C271.852 14 276.063 17.0439 277.551 21.5506L283.148 38.5H142.148L147.746 21.5506Z" fill="#8492BB"/>
10
+ <path d="M148.141 22.0215C149.639 17.5297 153.842 14.5 158.577 14.5H266.72C271.455 14.5 275.658 17.5297 277.156 22.0215L282.648 38.5H142.648L148.141 22.0215Z" fill="white"/>
11
+ <path d="M196.24 29.08C195.713 29.08 195.203 29 194.71 28.84C194.223 28.6733 193.84 28.46 193.56 28.2L193.93 27.42C194.196 27.66 194.536 27.8567 194.95 28.01C195.37 28.1567 195.8 28.23 196.24 28.23C196.82 28.23 197.253 28.1333 197.54 27.94C197.826 27.74 197.97 27.4767 197.97 27.15C197.97 26.91 197.89 26.7167 197.73 26.57C197.576 26.4167 197.383 26.3 197.15 26.22C196.923 26.14 196.6 26.05 196.18 25.95C195.653 25.8233 195.226 25.6967 194.9 25.57C194.58 25.4433 194.303 25.25 194.07 24.99C193.843 24.7233 193.73 24.3667 193.73 23.92C193.73 23.5467 193.826 23.21 194.02 22.91C194.22 22.61 194.52 22.37 194.92 22.19C195.32 22.01 195.816 21.92 196.41 21.92C196.823 21.92 197.23 21.9733 197.63 22.08C198.03 22.1867 198.373 22.34 198.66 22.54L198.33 23.34C198.036 23.1533 197.723 23.0133 197.39 22.92C197.056 22.82 196.73 22.77 196.41 22.77C195.843 22.77 195.416 22.8733 195.13 23.08C194.85 23.2867 194.71 23.5533 194.71 23.88C194.71 24.12 194.79 24.3167 194.95 24.47C195.11 24.6167 195.306 24.7333 195.54 24.82C195.78 24.9 196.103 24.9867 196.51 25.08C197.036 25.2067 197.46 25.3333 197.78 25.46C198.1 25.5867 198.373 25.78 198.6 26.04C198.833 26.3 198.95 26.65 198.95 27.09C198.95 27.4567 198.85 27.7933 198.65 28.1C198.45 28.4 198.146 28.64 197.74 28.82C197.333 28.9933 196.833 29.08 196.24 29.08ZM205.06 26.38C205.06 26.4533 205.054 26.55 205.04 26.67H200.74C200.8 27.1367 201.004 27.5133 201.35 27.8C201.704 28.08 202.14 28.22 202.66 28.22C203.294 28.22 203.804 28.0067 204.19 27.58L204.72 28.2C204.48 28.48 204.18 28.6933 203.82 28.84C203.467 28.9867 203.07 29.06 202.63 29.06C202.07 29.06 201.574 28.9467 201.14 28.72C200.707 28.4867 200.37 28.1633 200.13 27.75C199.897 27.3367 199.78 26.87 199.78 26.35C199.78 25.8367 199.894 25.3733 200.12 24.96C200.354 24.5467 200.67 24.2267 201.07 24C201.477 23.7667 201.934 23.65 202.44 23.65C202.947 23.65 203.397 23.7667 203.79 24C204.19 24.2267 204.5 24.5467 204.72 24.96C204.947 25.3733 205.06 25.8467 205.06 26.38ZM202.44 24.46C201.98 24.46 201.594 24.6 201.28 24.88C200.974 25.16 200.794 25.5267 200.74 25.98H204.14C204.087 25.5333 203.904 25.17 203.59 24.89C203.284 24.6033 202.9 24.46 202.44 24.46ZM209.374 28.69C209.234 28.81 209.06 28.9033 208.854 28.97C208.647 29.03 208.434 29.06 208.214 29.06C207.68 29.06 207.267 28.9167 206.974 28.63C206.68 28.3433 206.534 27.9333 206.534 27.4V24.49H205.634V23.7H206.534V22.54H207.494V23.7H209.014V24.49H207.494V27.36C207.494 27.6467 207.564 27.8667 207.704 28.02C207.85 28.1733 208.057 28.25 208.324 28.25C208.617 28.25 208.867 28.1667 209.074 28L209.374 28.69ZM213.387 28.69C213.247 28.81 213.074 28.9033 212.867 28.97C212.661 29.03 212.447 29.06 212.227 29.06C211.694 29.06 211.281 28.9167 210.987 28.63C210.694 28.3433 210.547 27.9333 210.547 27.4V24.49H209.647V23.7H210.547V22.54H211.507V23.7H213.027V24.49H211.507V27.36C211.507 27.6467 211.577 27.8667 211.717 28.02C211.864 28.1733 212.071 28.25 212.337 28.25C212.631 28.25 212.881 28.1667 213.087 28L213.387 28.69ZM214.548 23.7H215.508V29H214.548V23.7ZM215.028 22.68C214.841 22.68 214.684 22.62 214.558 22.5C214.438 22.38 214.378 22.2333 214.378 22.06C214.378 21.8867 214.438 21.74 214.558 21.62C214.684 21.4933 214.841 21.43 215.028 21.43C215.214 21.43 215.368 21.49 215.488 21.61C215.614 21.7233 215.678 21.8667 215.678 22.04C215.678 22.22 215.614 22.3733 215.488 22.5C215.368 22.62 215.214 22.68 215.028 22.68ZM220.171 23.65C220.844 23.65 221.377 23.8467 221.771 24.24C222.171 24.6267 222.371 25.1967 222.371 25.95V29H221.411V26.06C221.411 25.5467 221.287 25.16 221.041 24.9C220.794 24.64 220.441 24.51 219.981 24.51C219.461 24.51 219.051 24.6633 218.751 24.97C218.451 25.27 218.301 25.7033 218.301 26.27V29H217.341V23.7H218.261V24.5C218.454 24.2267 218.714 24.0167 219.041 23.87C219.374 23.7233 219.751 23.65 220.171 23.65ZM229.247 23.7V28.28C229.247 29.2067 229.017 29.89 228.557 30.33C228.097 30.7767 227.41 31 226.497 31C225.997 31 225.52 30.93 225.067 30.79C224.613 30.6567 224.247 30.4633 223.967 30.21L224.427 29.47C224.673 29.6833 224.977 29.85 225.337 29.97C225.703 30.0967 226.08 30.16 226.467 30.16C227.087 30.16 227.543 30.0133 227.837 29.72C228.137 29.4267 228.287 28.98 228.287 28.38V27.96C228.06 28.2333 227.78 28.44 227.447 28.58C227.12 28.7133 226.763 28.78 226.377 28.78C225.87 28.78 225.41 28.6733 224.997 28.46C224.59 28.24 224.27 27.9367 224.037 27.55C223.803 27.1567 223.687 26.71 223.687 26.21C223.687 25.71 223.803 25.2667 224.037 24.88C224.27 24.4867 224.59 24.1833 224.997 23.97C225.41 23.7567 225.87 23.65 226.377 23.65C226.777 23.65 227.147 23.7233 227.487 23.87C227.833 24.0167 228.117 24.2333 228.337 24.52V23.7H229.247ZM226.487 27.94C226.833 27.94 227.143 27.8667 227.417 27.72C227.697 27.5733 227.913 27.37 228.067 27.11C228.227 26.8433 228.307 26.5433 228.307 26.21C228.307 25.6967 228.137 25.2833 227.797 24.97C227.457 24.65 227.02 24.49 226.487 24.49C225.947 24.49 225.507 24.65 225.167 24.97C224.827 25.2833 224.657 25.6967 224.657 26.21C224.657 26.5433 224.733 26.8433 224.887 27.11C225.047 27.37 225.263 27.5733 225.537 27.72C225.817 27.8667 226.133 27.94 226.487 27.94Z" fill="#8492BB"/>
12
+ <circle cx="294.148" cy="26" r="7.75" fill="white" stroke="#8492BB" stroke-width="0.5"/>
13
+ <line x1="290.148" y1="25.75" x2="298.148" y2="25.75" stroke="#8492BB" stroke-width="0.5"/>
14
+ <line x1="294.398" y1="22" x2="294.398" y2="30" stroke="#8492BB" stroke-width="0.5"/>
15
+ <path d="M44.536 86.6C45.624 86.6 46.48 86.86 47.104 87.38C47.728 87.9 48.04 88.616 48.04 89.528C48.04 90.44 47.728 91.156 47.104 91.676C46.48 92.196 45.624 92.456 44.536 92.456H42.46V95H41.26V86.6H44.536ZM44.5 91.412C45.26 91.412 45.84 91.252 46.24 90.932C46.64 90.604 46.84 90.136 46.84 89.528C46.84 88.92 46.64 88.456 46.24 88.136C45.84 87.808 45.26 87.644 44.5 87.644H42.46V91.412H44.5ZM50.6335 89.708C50.8335 89.34 51.1295 89.06 51.5215 88.868C51.9135 88.676 52.3895 88.58 52.9495 88.58V89.696C52.8855 89.688 52.7975 89.684 52.6855 89.684C52.0615 89.684 51.5695 89.872 51.2095 90.248C50.8575 90.616 50.6815 91.144 50.6815 91.832V95H49.5295V88.64H50.6335V89.708ZM57.0348 95.072C56.4028 95.072 55.8348 94.932 55.3308 94.652C54.8268 94.372 54.4308 93.988 54.1428 93.5C53.8628 93.004 53.7228 92.444 53.7228 91.82C53.7228 91.196 53.8628 90.64 54.1428 90.152C54.4308 89.656 54.8268 89.272 55.3308 89C55.8348 88.72 56.4028 88.58 57.0348 88.58C57.6668 88.58 58.2308 88.72 58.7268 89C59.2308 89.272 59.6228 89.656 59.9028 90.152C60.1908 90.64 60.3348 91.196 60.3348 91.82C60.3348 92.444 60.1908 93.004 59.9028 93.5C59.6228 93.988 59.2308 94.372 58.7268 94.652C58.2308 94.932 57.6668 95.072 57.0348 95.072ZM57.0348 94.064C57.4428 94.064 57.8068 93.972 58.1268 93.788C58.4548 93.596 58.7108 93.332 58.8948 92.996C59.0788 92.652 59.1708 92.26 59.1708 91.82C59.1708 91.38 59.0788 90.992 58.8948 90.656C58.7108 90.312 58.4548 90.048 58.1268 89.864C57.8068 89.68 57.4428 89.588 57.0348 89.588C56.6268 89.588 56.2588 89.68 55.9308 89.864C55.6108 90.048 55.3548 90.312 55.1628 90.656C54.9788 90.992 54.8868 91.38 54.8868 91.82C54.8868 92.26 54.9788 92.652 55.1628 92.996C55.3548 93.332 55.6108 93.596 55.9308 93.788C56.2588 93.972 56.6268 94.064 57.0348 94.064ZM67.9279 86.096V95H66.8239V93.992C66.5679 94.344 66.2439 94.612 65.8519 94.796C65.4599 94.98 65.0279 95.072 64.5559 95.072C63.9399 95.072 63.3879 94.936 62.8999 94.664C62.4119 94.392 62.0279 94.012 61.7479 93.524C61.4759 93.028 61.3399 92.46 61.3399 91.82C61.3399 91.18 61.4759 90.616 61.7479 90.128C62.0279 89.64 62.4119 89.26 62.8999 88.988C63.3879 88.716 63.9399 88.58 64.5559 88.58C65.0119 88.58 65.4319 88.668 65.8159 88.844C66.1999 89.012 66.5199 89.264 66.7759 89.6V86.096H67.9279ZM64.6519 94.064C65.0519 94.064 65.4159 93.972 65.7439 93.788C66.0719 93.596 66.3279 93.332 66.5119 92.996C66.6959 92.652 66.7879 92.26 66.7879 91.82C66.7879 91.38 66.6959 90.992 66.5119 90.656C66.3279 90.312 66.0719 90.048 65.7439 89.864C65.4159 89.68 65.0519 89.588 64.6519 89.588C64.2439 89.588 63.8759 89.68 63.5479 89.864C63.2279 90.048 62.9719 90.312 62.7799 90.656C62.5959 90.992 62.5039 91.38 62.5039 91.82C62.5039 92.26 62.5959 92.652 62.7799 92.996C62.9719 93.332 63.2279 93.596 63.5479 93.788C63.8759 93.972 64.2439 94.064 64.6519 94.064ZM76.0356 88.64V95H74.9436V94.04C74.7116 94.368 74.4036 94.624 74.0196 94.808C73.6436 94.984 73.2316 95.072 72.7836 95.072C71.9356 95.072 71.2676 94.84 70.7796 94.376C70.2916 93.904 70.0476 93.212 70.0476 92.3V88.64H71.1996V92.168C71.1996 92.784 71.3476 93.252 71.6436 93.572C71.9396 93.884 72.3636 94.04 72.9156 94.04C73.5236 94.04 74.0036 93.856 74.3556 93.488C74.7076 93.12 74.8836 92.6 74.8836 91.928V88.64H76.0356ZM81.0007 95.072C80.3527 95.072 79.7727 94.932 79.2607 94.652C78.7567 94.372 78.3607 93.988 78.0727 93.5C77.7847 93.004 77.6407 92.444 77.6407 91.82C77.6407 91.196 77.7847 90.64 78.0727 90.152C78.3607 89.656 78.7567 89.272 79.2607 89C79.7727 88.72 80.3527 88.58 81.0007 88.58C81.5767 88.58 82.0887 88.696 82.5367 88.928C82.9927 89.16 83.3447 89.496 83.5927 89.936L82.7167 90.5C82.5167 90.196 82.2687 89.968 81.9727 89.816C81.6767 89.664 81.3487 89.588 80.9887 89.588C80.5727 89.588 80.1967 89.68 79.8607 89.864C79.5327 90.048 79.2727 90.312 79.0807 90.656C78.8967 90.992 78.8047 91.38 78.8047 91.82C78.8047 92.268 78.8967 92.664 79.0807 93.008C79.2727 93.344 79.5327 93.604 79.8607 93.788C80.1967 93.972 80.5727 94.064 80.9887 94.064C81.3487 94.064 81.6767 93.988 81.9727 93.836C82.2687 93.684 82.5167 93.456 82.7167 93.152L83.5927 93.704C83.3447 94.144 82.9927 94.484 82.5367 94.724C82.0887 94.956 81.5767 95.072 81.0007 95.072ZM88.7422 94.628C88.5742 94.772 88.3662 94.884 88.1182 94.964C87.8702 95.036 87.6142 95.072 87.3502 95.072C86.7102 95.072 86.2142 94.9 85.8622 94.556C85.5102 94.212 85.3342 93.72 85.3342 93.08V89.588H84.2542V88.64H85.3342V87.248H86.4862V88.64H88.3102V89.588H86.4862V93.032C86.4862 93.376 86.5702 93.64 86.7382 93.824C86.9142 94.008 87.1622 94.1 87.4822 94.1C87.8342 94.1 88.1342 94 88.3822 93.8L88.7422 94.628ZM96.8016 86.6C97.8896 86.6 98.7456 86.86 99.3696 87.38C99.9936 87.9 100.306 88.616 100.306 89.528C100.306 90.44 99.9936 91.156 99.3696 91.676C98.7456 92.196 97.8896 92.456 96.8016 92.456H94.7256V95H93.5256V86.6H96.8016ZM96.7656 91.412C97.5256 91.412 98.1056 91.252 98.5056 90.932C98.9056 90.604 99.1056 90.136 99.1056 89.528C99.1056 88.92 98.9056 88.456 98.5056 88.136C98.1056 87.808 97.5256 87.644 96.7656 87.644H94.7256V91.412H96.7656ZM107.625 91.856C107.625 91.944 107.617 92.06 107.601 92.204H102.441C102.513 92.764 102.757 93.216 103.173 93.56C103.597 93.896 104.121 94.064 104.745 94.064C105.505 94.064 106.117 93.808 106.581 93.296L107.217 94.04C106.929 94.376 106.569 94.632 106.137 94.808C105.713 94.984 105.237 95.072 104.709 95.072C104.037 95.072 103.441 94.936 102.921 94.664C102.401 94.384 101.997 93.996 101.709 93.5C101.429 93.004 101.289 92.444 101.289 91.82C101.289 91.204 101.425 90.648 101.697 90.152C101.977 89.656 102.357 89.272 102.837 89C103.325 88.72 103.873 88.58 104.481 88.58C105.089 88.58 105.629 88.72 106.101 89C106.581 89.272 106.953 89.656 107.217 90.152C107.489 90.648 107.625 91.216 107.625 91.856ZM104.481 89.552C103.929 89.552 103.465 89.72 103.089 90.056C102.721 90.392 102.505 90.832 102.441 91.376H106.521C106.457 90.84 106.237 90.404 105.861 90.068C105.493 89.724 105.033 89.552 104.481 89.552ZM110.329 89.708C110.529 89.34 110.825 89.06 111.217 88.868C111.609 88.676 112.085 88.58 112.645 88.58V89.696C112.581 89.688 112.493 89.684 112.381 89.684C111.757 89.684 111.265 89.872 110.905 90.248C110.553 90.616 110.377 91.144 110.377 91.832V95H109.225V88.64H110.329V89.708ZM123.189 90.644C123.677 90.78 124.061 91.028 124.341 91.388C124.621 91.74 124.761 92.188 124.761 92.732C124.761 93.46 124.485 94.02 123.933 94.412C123.389 94.804 122.593 95 121.545 95H117.537V86.6H121.305C122.265 86.6 123.005 86.792 123.525 87.176C124.053 87.56 124.317 88.092 124.317 88.772C124.317 89.212 124.213 89.592 124.005 89.912C123.805 90.232 123.533 90.476 123.189 90.644ZM118.737 87.572V90.26H121.197C121.813 90.26 122.285 90.148 122.613 89.924C122.949 89.692 123.117 89.356 123.117 88.916C123.117 88.476 122.949 88.144 122.613 87.92C122.285 87.688 121.813 87.572 121.197 87.572H118.737ZM121.497 94.028C122.177 94.028 122.689 93.916 123.033 93.692C123.377 93.468 123.549 93.116 123.549 92.636C123.549 91.7 122.865 91.232 121.497 91.232H118.737V94.028H121.497ZM128.767 88.58C129.647 88.58 130.319 88.796 130.783 89.228C131.255 89.66 131.491 90.304 131.491 91.16V95H130.399V94.16C130.207 94.456 129.931 94.684 129.571 94.844C129.219 94.996 128.799 95.072 128.311 95.072C127.599 95.072 127.027 94.9 126.595 94.556C126.171 94.212 125.959 93.76 125.959 93.2C125.959 92.64 126.163 92.192 126.571 91.856C126.979 91.512 127.627 91.34 128.515 91.34H130.339V91.112C130.339 90.616 130.195 90.236 129.907 89.972C129.619 89.708 129.195 89.576 128.635 89.576C128.259 89.576 127.891 89.64 127.531 89.768C127.171 89.888 126.867 90.052 126.619 90.26L126.139 89.396C126.467 89.132 126.859 88.932 127.315 88.796C127.771 88.652 128.255 88.58 128.767 88.58ZM128.503 94.184C128.943 94.184 129.323 94.088 129.643 93.896C129.963 93.696 130.195 93.416 130.339 93.056V92.168H128.563C127.587 92.168 127.099 92.496 127.099 93.152C127.099 93.472 127.223 93.724 127.471 93.908C127.719 94.092 128.063 94.184 128.503 94.184ZM137.199 94.628C137.031 94.772 136.823 94.884 136.575 94.964C136.327 95.036 136.071 95.072 135.807 95.072C135.167 95.072 134.671 94.9 134.319 94.556C133.967 94.212 133.791 93.72 133.791 93.08V89.588H132.711V88.64H133.791V87.248H134.943V88.64H136.767V89.588H134.943V93.032C134.943 93.376 135.027 93.64 135.195 93.824C135.371 94.008 135.619 94.1 135.939 94.1C136.291 94.1 136.591 94 136.839 93.8L137.199 94.628ZM141.153 95.072C140.505 95.072 139.925 94.932 139.413 94.652C138.909 94.372 138.513 93.988 138.225 93.5C137.937 93.004 137.793 92.444 137.793 91.82C137.793 91.196 137.937 90.64 138.225 90.152C138.513 89.656 138.909 89.272 139.413 89C139.925 88.72 140.505 88.58 141.153 88.58C141.729 88.58 142.241 88.696 142.689 88.928C143.145 89.16 143.497 89.496 143.745 89.936L142.869 90.5C142.669 90.196 142.421 89.968 142.125 89.816C141.829 89.664 141.501 89.588 141.141 89.588C140.725 89.588 140.349 89.68 140.013 89.864C139.685 90.048 139.425 90.312 139.233 90.656C139.049 90.992 138.957 91.38 138.957 91.82C138.957 92.268 139.049 92.664 139.233 93.008C139.425 93.344 139.685 93.604 140.013 93.788C140.349 93.972 140.725 94.064 141.141 94.064C141.501 94.064 141.829 93.988 142.125 93.836C142.421 93.684 142.669 93.456 142.869 93.152L143.745 93.704C143.497 94.144 143.145 94.484 142.689 94.724C142.241 94.956 141.729 95.072 141.153 95.072ZM148.551 88.58C149.359 88.58 149.999 88.816 150.471 89.288C150.951 89.752 151.191 90.436 151.191 91.34V95H150.039V91.472C150.039 90.856 149.891 90.392 149.595 90.08C149.299 89.768 148.875 89.612 148.323 89.612C147.699 89.612 147.207 89.796 146.847 90.164C146.487 90.524 146.307 91.044 146.307 91.724V95H145.155V86.096H146.307V89.54C146.547 89.236 146.859 89 147.243 88.832C147.635 88.664 148.071 88.58 148.551 88.58Z" fill="#6577AA"/>
16
+ <rect x="211.25" y="75.25" width="234.5" height="31.5" rx="4.75" fill="#F0F0F6" stroke="#62699F" stroke-width="0.5"/>
17
+ <path d="M428 96L425 92L431 92L428 96Z" fill="#62699F"/>
18
+ <path d="M428 86L431 90H425L428 86Z" fill="#62699F"/>
19
+ <path d="M233.48 93.956V95H227.444V94.184L230.864 90.884C231.28 90.484 231.56 90.14 231.704 89.852C231.848 89.556 231.92 89.26 231.92 88.964C231.92 88.524 231.764 88.184 231.452 87.944C231.148 87.696 230.708 87.572 230.132 87.572C229.204 87.572 228.488 87.876 227.984 88.484L227.168 87.776C227.496 87.376 227.924 87.064 228.452 86.84C228.988 86.616 229.584 86.504 230.24 86.504C231.12 86.504 231.82 86.716 232.34 87.14C232.86 87.556 233.12 88.124 233.12 88.844C233.12 89.292 233.024 89.716 232.832 90.116C232.64 90.516 232.276 90.972 231.74 91.484L229.172 93.956H233.48ZM237.863 95.096C237.199 95.096 236.607 94.928 236.087 94.592C235.575 94.248 235.171 93.752 234.875 93.104C234.579 92.456 234.431 91.688 234.431 90.8C234.431 89.912 234.579 89.144 234.875 88.496C235.171 87.848 235.575 87.356 236.087 87.02C236.607 86.676 237.199 86.504 237.863 86.504C238.519 86.504 239.103 86.676 239.615 87.02C240.135 87.356 240.543 87.848 240.839 88.496C241.135 89.144 241.283 89.912 241.283 90.8C241.283 91.688 241.135 92.456 240.839 93.104C240.543 93.752 240.135 94.248 239.615 94.592C239.103 94.928 238.519 95.096 237.863 95.096ZM237.863 94.028C238.535 94.028 239.071 93.752 239.471 93.2C239.879 92.648 240.083 91.848 240.083 90.8C240.083 89.752 239.879 88.952 239.471 88.4C239.071 87.848 238.535 87.572 237.863 87.572C237.183 87.572 236.639 87.848 236.231 88.4C235.831 88.952 235.631 89.752 235.631 90.8C235.631 91.848 235.831 92.648 236.231 93.2C236.639 93.752 237.183 94.028 237.863 94.028ZM245.867 95.096C245.203 95.096 244.611 94.928 244.091 94.592C243.579 94.248 243.175 93.752 242.879 93.104C242.583 92.456 242.435 91.688 242.435 90.8C242.435 89.912 242.583 89.144 242.879 88.496C243.175 87.848 243.579 87.356 244.091 87.02C244.611 86.676 245.203 86.504 245.867 86.504C246.523 86.504 247.107 86.676 247.619 87.02C248.139 87.356 248.547 87.848 248.843 88.496C249.139 89.144 249.287 89.912 249.287 90.8C249.287 91.688 249.139 92.456 248.843 93.104C248.547 93.752 248.139 94.248 247.619 94.592C247.107 94.928 246.523 95.096 245.867 95.096ZM245.867 94.028C246.539 94.028 247.075 93.752 247.475 93.2C247.883 92.648 248.087 91.848 248.087 90.8C248.087 89.752 247.883 88.952 247.475 88.4C247.075 87.848 246.539 87.572 245.867 87.572C245.187 87.572 244.643 87.848 244.235 88.4C243.835 88.952 243.635 89.752 243.635 90.8C243.635 91.848 243.835 92.648 244.235 93.2C244.643 93.752 245.187 94.028 245.867 94.028Z" fill="#62699F"/>
20
+ <path d="M441.173 141H112.815C110.149 141 107.988 143.239 107.988 146V156C107.988 158.761 110.149 161 112.815 161H441.173C443.839 161 446 158.761 446 156V146C446 143.239 443.839 141 441.173 141Z" fill="#CFD1E1"/>
21
+ <path d="M343.937 141H102.438C99.7884 141 97.6401 143.239 97.6401 146V156C97.6401 158.761 99.7884 161 102.438 161H343.937C346.587 161 348.735 158.761 348.735 156V146C348.735 143.239 346.587 141 343.937 141Z" fill="#8187B2"/>
22
+ <path d="M114.053 149.036C114.053 149.348 113.995 149.659 113.877 149.967C113.76 150.272 113.579 150.545 113.333 150.788C113.086 151.03 112.772 151.227 112.389 151.379C112.006 151.528 111.549 151.602 111.018 151.602H110.069V154.35H109.026V146.692H111.182C111.561 146.692 111.924 146.735 112.272 146.821C112.62 146.903 112.924 147.038 113.186 147.225C113.452 147.413 113.663 147.655 113.819 147.952C113.975 148.249 114.053 148.61 114.053 149.036ZM112.969 149.083C112.969 148.59 112.807 148.213 112.483 147.952C112.163 147.69 111.713 147.559 111.135 147.559H110.069V150.711H111.042C111.659 150.711 112.133 150.577 112.465 150.307C112.801 150.038 112.969 149.629 112.969 149.083ZM115.875 148.467H116.807L116.836 149.551C117.184 149.133 117.526 148.831 117.862 148.643C118.202 148.456 118.543 148.362 118.887 148.362C119.497 148.362 119.958 148.559 120.27 148.954C120.586 149.348 120.733 149.934 120.709 150.711H119.678C119.69 150.196 119.614 149.823 119.45 149.592C119.29 149.358 119.053 149.241 118.741 149.241C118.604 149.241 118.465 149.266 118.325 149.317C118.188 149.364 118.045 149.442 117.897 149.551C117.752 149.657 117.598 149.793 117.434 149.961C117.27 150.129 117.094 150.333 116.907 150.571V154.35H115.875V148.467ZM127.354 151.362C127.354 151.819 127.29 152.239 127.161 152.622C127.032 153 126.846 153.327 126.604 153.6C126.362 153.87 126.067 154.081 125.719 154.233C125.372 154.381 124.977 154.456 124.536 154.456C124.114 154.456 123.735 154.391 123.399 154.262C123.067 154.129 122.784 153.936 122.549 153.682C122.319 153.428 122.141 153.114 122.016 152.739C121.895 152.364 121.834 151.932 121.834 151.444C121.834 150.987 121.899 150.571 122.028 150.196C122.157 149.817 122.342 149.493 122.584 149.223C122.827 148.95 123.122 148.739 123.469 148.59C123.817 148.438 124.211 148.362 124.653 148.362C125.075 148.362 125.452 148.428 125.784 148.561C126.12 148.69 126.403 148.881 126.633 149.135C126.868 149.385 127.045 149.698 127.167 150.073C127.292 150.448 127.354 150.877 127.354 151.362ZM126.311 151.409C126.311 151.045 126.27 150.729 126.188 150.459C126.11 150.186 125.997 149.959 125.848 149.78C125.7 149.596 125.518 149.459 125.303 149.37C125.092 149.276 124.856 149.229 124.594 149.229C124.29 149.229 124.028 149.29 123.809 149.411C123.594 149.528 123.417 149.686 123.276 149.885C123.139 150.084 123.038 150.317 122.971 150.583C122.909 150.844 122.877 151.12 122.877 151.409C122.877 151.772 122.917 152.09 122.995 152.364C123.077 152.637 123.192 152.866 123.34 153.049C123.489 153.229 123.668 153.366 123.879 153.459C124.09 153.549 124.329 153.594 124.594 153.594C124.899 153.594 125.159 153.536 125.374 153.418C125.592 153.297 125.77 153.137 125.907 152.938C126.047 152.739 126.149 152.508 126.211 152.247C126.278 151.981 126.311 151.702 126.311 151.409ZM133.401 154.133C133.135 154.235 132.862 154.309 132.581 154.356C132.303 154.407 132.016 154.432 131.719 154.432C130.79 154.432 130.073 154.18 129.569 153.676C129.069 153.172 128.819 152.436 128.819 151.467C128.819 151.002 128.891 150.581 129.036 150.202C129.18 149.823 129.383 149.499 129.645 149.229C129.907 148.959 130.219 148.752 130.583 148.608C130.946 148.459 131.346 148.385 131.784 148.385C132.088 148.385 132.374 148.407 132.639 148.45C132.905 148.493 133.159 148.563 133.401 148.661V149.633C133.147 149.5 132.887 149.405 132.622 149.346C132.36 149.284 132.088 149.252 131.807 149.252C131.545 149.252 131.297 149.303 131.063 149.405C130.833 149.502 130.629 149.645 130.454 149.833C130.278 150.02 130.139 150.249 130.038 150.518C129.936 150.788 129.885 151.092 129.885 151.432C129.885 152.143 130.057 152.676 130.401 153.032C130.749 153.383 131.229 153.559 131.842 153.559C132.12 153.559 132.387 153.528 132.645 153.465C132.907 153.403 133.159 153.309 133.401 153.184V154.133ZM140.397 151.098C140.397 151.243 140.395 151.364 140.391 151.461C140.387 151.559 140.381 151.651 140.374 151.737H136.243C136.243 152.338 136.411 152.801 136.747 153.125C137.083 153.446 137.567 153.606 138.2 153.606C138.372 153.606 138.543 153.6 138.715 153.588C138.887 153.573 139.053 153.553 139.213 153.53C139.374 153.506 139.526 153.481 139.67 153.454C139.819 153.422 139.956 153.389 140.081 153.354V154.192C139.803 154.27 139.489 154.333 139.137 154.379C138.79 154.43 138.428 154.456 138.053 154.456C137.549 154.456 137.116 154.387 136.752 154.25C136.389 154.114 136.09 153.917 135.856 153.659C135.625 153.397 135.454 153.079 135.34 152.704C135.231 152.325 135.176 151.897 135.176 151.42C135.176 151.006 135.235 150.616 135.352 150.249C135.473 149.877 135.647 149.553 135.874 149.276C136.104 148.995 136.385 148.772 136.717 148.608C137.049 148.444 137.426 148.362 137.848 148.362C138.258 148.362 138.622 148.426 138.938 148.555C139.254 148.684 139.52 148.868 139.735 149.106C139.954 149.34 140.118 149.627 140.227 149.967C140.34 150.303 140.397 150.68 140.397 151.098ZM139.336 150.952C139.348 150.69 139.323 150.452 139.26 150.237C139.198 150.018 139.1 149.831 138.967 149.674C138.838 149.518 138.676 149.397 138.481 149.311C138.286 149.221 138.059 149.176 137.801 149.176C137.579 149.176 137.375 149.219 137.192 149.305C137.008 149.391 136.85 149.512 136.717 149.668C136.584 149.825 136.477 150.012 136.395 150.231C136.313 150.45 136.262 150.69 136.243 150.952H139.336ZM146.684 152.745C146.684 152.952 146.649 153.137 146.579 153.301C146.508 153.465 146.413 153.612 146.292 153.741C146.17 153.866 146.03 153.973 145.87 154.063C145.709 154.153 145.538 154.227 145.354 154.286C145.174 154.344 144.989 154.387 144.797 154.415C144.606 154.442 144.418 154.456 144.235 154.456C143.836 154.456 143.469 154.438 143.133 154.403C142.801 154.368 142.475 154.311 142.155 154.233V153.295C142.499 153.393 142.84 153.467 143.18 153.518C143.52 153.569 143.858 153.594 144.194 153.594C144.682 153.594 145.043 153.528 145.278 153.395C145.512 153.262 145.629 153.073 145.629 152.827C145.629 152.721 145.61 152.627 145.571 152.545C145.536 152.459 145.469 152.379 145.372 152.305C145.274 152.227 145.122 152.147 144.915 152.065C144.711 151.983 144.432 151.889 144.077 151.784C143.811 151.706 143.565 151.618 143.338 151.52C143.116 151.418 142.922 151.299 142.758 151.163C142.594 151.026 142.465 150.866 142.372 150.682C142.278 150.499 142.231 150.282 142.231 150.032C142.231 149.868 142.268 149.688 142.342 149.493C142.42 149.297 142.551 149.116 142.735 148.948C142.918 148.78 143.167 148.641 143.479 148.532C143.792 148.418 144.182 148.362 144.651 148.362C144.881 148.362 145.137 148.375 145.418 148.403C145.7 148.426 145.993 148.469 146.297 148.532V149.44C145.977 149.362 145.672 149.305 145.383 149.27C145.098 149.231 144.85 149.211 144.639 149.211C144.385 149.211 144.17 149.231 143.995 149.27C143.823 149.309 143.682 149.364 143.573 149.434C143.467 149.5 143.391 149.581 143.344 149.674C143.297 149.764 143.274 149.862 143.274 149.967C143.274 150.073 143.293 150.168 143.333 150.254C143.375 150.34 143.452 150.424 143.561 150.506C143.674 150.584 143.831 150.665 144.03 150.747C144.229 150.825 144.489 150.911 144.809 151.004C145.157 151.106 145.45 151.213 145.688 151.327C145.926 151.436 146.12 151.559 146.268 151.696C146.417 151.833 146.522 151.987 146.584 152.159C146.651 152.331 146.684 152.526 146.684 152.745ZM153.282 152.745C153.282 152.952 153.247 153.137 153.176 153.301C153.106 153.465 153.01 153.612 152.889 153.741C152.768 153.866 152.627 153.973 152.467 154.063C152.307 154.153 152.135 154.227 151.952 154.286C151.772 154.344 151.586 154.387 151.395 154.415C151.204 154.442 151.016 154.456 150.833 154.456C150.434 154.456 150.067 154.438 149.731 154.403C149.399 154.368 149.073 154.311 148.752 154.233V153.295C149.096 153.393 149.438 153.467 149.778 153.518C150.118 153.569 150.456 153.594 150.792 153.594C151.28 153.594 151.641 153.528 151.875 153.395C152.11 153.262 152.227 153.073 152.227 152.827C152.227 152.721 152.208 152.627 152.168 152.545C152.133 152.459 152.067 152.379 151.969 152.305C151.872 152.227 151.719 152.147 151.512 152.065C151.309 151.983 151.03 151.889 150.674 151.784C150.409 151.706 150.163 151.618 149.936 151.52C149.713 151.418 149.52 151.299 149.356 151.163C149.192 151.026 149.063 150.866 148.969 150.682C148.875 150.499 148.829 150.282 148.829 150.032C148.829 149.868 148.866 149.688 148.94 149.493C149.018 149.297 149.149 149.116 149.333 148.948C149.516 148.78 149.764 148.641 150.077 148.532C150.389 148.418 150.78 148.362 151.249 148.362C151.479 148.362 151.735 148.375 152.016 148.403C152.297 148.426 152.59 148.469 152.895 148.532V149.44C152.575 149.362 152.27 149.305 151.981 149.27C151.696 149.231 151.448 149.211 151.237 149.211C150.983 149.211 150.768 149.231 150.592 149.27C150.42 149.309 150.28 149.364 150.17 149.434C150.065 149.5 149.989 149.581 149.942 149.674C149.895 149.764 149.872 149.862 149.872 149.967C149.872 150.073 149.891 150.168 149.93 150.254C149.973 150.34 150.049 150.424 150.159 150.506C150.272 150.584 150.428 150.665 150.627 150.747C150.827 150.825 151.086 150.911 151.407 151.004C151.754 151.106 152.047 151.213 152.286 151.327C152.524 151.436 152.717 151.559 152.866 151.696C153.014 151.833 153.12 151.987 153.182 152.159C153.249 152.331 153.282 152.526 153.282 152.745ZM157.225 149.311H155.485V148.467H158.256V153.5H160.008V154.35H155.292V153.5H157.225V149.311ZM157.583 146C157.696 146 157.801 146.022 157.899 146.065C157.997 146.104 158.081 146.161 158.151 146.235C158.225 146.309 158.282 146.395 158.321 146.493C158.364 146.586 158.385 146.69 158.385 146.803C158.385 146.913 158.364 147.016 158.321 147.114C158.282 147.211 158.225 147.297 158.151 147.372C158.081 147.446 157.997 147.504 157.899 147.547C157.801 147.586 157.696 147.606 157.583 147.606C157.469 147.606 157.364 147.586 157.266 147.547C157.168 147.504 157.083 147.446 157.008 147.372C156.938 147.297 156.881 147.211 156.838 147.114C156.799 147.016 156.78 146.913 156.78 146.803C156.78 146.69 156.799 146.586 156.838 146.493C156.881 146.395 156.938 146.309 157.008 146.235C157.083 146.161 157.168 146.104 157.266 146.065C157.364 146.022 157.469 146 157.583 146ZM161.819 148.467H162.727L162.768 149.417C162.94 149.213 163.106 149.045 163.266 148.913C163.426 148.776 163.583 148.667 163.735 148.584C163.891 148.502 164.049 148.446 164.209 148.415C164.37 148.379 164.536 148.362 164.708 148.362C165.313 148.362 165.77 148.542 166.079 148.901C166.391 149.256 166.547 149.793 166.547 150.512V154.35H165.528V150.594C165.528 150.133 165.442 149.793 165.27 149.575C165.098 149.352 164.842 149.241 164.502 149.241C164.377 149.241 164.254 149.26 164.133 149.299C164.016 149.334 163.893 149.399 163.764 149.493C163.635 149.583 163.495 149.706 163.342 149.862C163.194 150.018 163.026 150.213 162.838 150.448V154.35H161.819V148.467ZM172.653 149.299C172.762 149.436 172.846 149.596 172.905 149.78C172.967 149.959 172.999 150.155 172.999 150.366C172.999 150.67 172.942 150.95 172.829 151.204C172.719 151.454 172.563 151.668 172.36 151.848C172.157 152.028 171.913 152.168 171.627 152.27C171.346 152.368 171.036 152.417 170.696 152.417C170.45 152.417 170.219 152.391 170.004 152.34C169.79 152.286 169.62 152.219 169.495 152.141C169.42 152.25 169.358 152.354 169.307 152.452C169.256 152.549 169.231 152.659 169.231 152.78C169.231 152.928 169.301 153.051 169.442 153.149C169.586 153.247 169.776 153.299 170.01 153.307L171.557 153.366C171.85 153.374 172.12 153.411 172.366 153.477C172.616 153.543 172.829 153.639 173.004 153.764C173.184 153.889 173.323 154.043 173.42 154.227C173.522 154.411 173.573 154.624 173.573 154.866C173.573 155.127 173.516 155.375 173.403 155.61C173.29 155.844 173.114 156.049 172.875 156.225C172.641 156.405 172.342 156.547 171.979 156.653C171.616 156.758 171.184 156.811 170.684 156.811C170.208 156.811 169.801 156.772 169.465 156.694C169.133 156.62 168.86 156.514 168.645 156.377C168.43 156.245 168.274 156.084 168.176 155.897C168.079 155.713 168.03 155.51 168.03 155.288C168.03 155.002 168.096 154.752 168.229 154.538C168.362 154.323 168.567 154.116 168.844 153.917C168.743 153.87 168.655 153.811 168.581 153.741C168.506 153.67 168.446 153.594 168.399 153.512C168.352 153.426 168.317 153.336 168.293 153.243C168.27 153.149 168.258 153.057 168.258 152.967C168.258 152.713 168.317 152.481 168.434 152.27C168.555 152.059 168.698 151.86 168.862 151.672C168.788 151.583 168.721 151.495 168.663 151.409C168.608 151.323 168.559 151.231 168.516 151.133C168.477 151.032 168.446 150.924 168.422 150.811C168.403 150.694 168.393 150.561 168.393 150.413C168.393 150.108 168.448 149.831 168.557 149.581C168.67 149.327 168.827 149.11 169.026 148.93C169.229 148.75 169.471 148.612 169.752 148.514C170.038 148.413 170.352 148.362 170.696 148.362C170.84 148.362 170.979 148.372 171.112 148.391C171.245 148.411 171.362 148.436 171.463 148.467H173.596V149.299H172.653ZM169.114 155.2C169.114 155.477 169.258 155.678 169.547 155.803C169.836 155.932 170.239 155.997 170.754 155.997C171.079 155.997 171.35 155.967 171.569 155.909C171.792 155.85 171.969 155.772 172.102 155.674C172.239 155.581 172.336 155.471 172.395 155.346C172.454 155.225 172.483 155.1 172.483 154.971C172.483 154.733 172.385 154.557 172.19 154.444C171.995 154.331 171.696 154.264 171.293 154.245L169.758 154.192C169.629 154.278 169.522 154.362 169.436 154.444C169.354 154.526 169.29 154.608 169.243 154.69C169.196 154.776 169.163 154.86 169.143 154.942C169.124 155.028 169.114 155.114 169.114 155.2ZM169.424 150.389C169.424 150.577 169.456 150.749 169.518 150.905C169.581 151.061 169.668 151.194 169.782 151.303C169.895 151.413 170.028 151.499 170.18 151.561C170.336 151.62 170.508 151.649 170.696 151.649C170.899 151.649 171.079 151.616 171.235 151.549C171.395 151.479 171.528 151.385 171.633 151.268C171.743 151.151 171.825 151.016 171.879 150.864C171.938 150.711 171.967 150.553 171.967 150.389C171.967 150.202 171.936 150.03 171.874 149.874C171.811 149.717 171.723 149.584 171.61 149.475C171.497 149.366 171.362 149.282 171.206 149.223C171.053 149.161 170.883 149.129 170.696 149.129C170.493 149.129 170.311 149.165 170.151 149.235C169.995 149.305 169.862 149.399 169.752 149.516C169.647 149.629 169.565 149.762 169.506 149.915C169.452 150.067 169.424 150.225 169.424 150.389ZM186.516 154.35H181.706V153.401H183.674V147.811L181.84 148.807L181.465 147.94L183.903 146.657H184.805V153.401H186.516V154.35ZM193.354 150.524C193.354 151.11 193.295 151.645 193.178 152.129C193.061 152.61 192.883 153.024 192.645 153.372C192.407 153.715 192.11 153.983 191.754 154.174C191.403 154.362 190.989 154.456 190.512 154.456C190.102 154.456 189.729 154.379 189.393 154.227C189.057 154.071 188.77 153.833 188.532 153.512C188.293 153.192 188.11 152.784 187.981 152.288C187.852 151.792 187.788 151.204 187.788 150.524C187.788 149.938 187.846 149.403 187.963 148.918C188.084 148.434 188.262 148.02 188.497 147.676C188.735 147.329 189.032 147.061 189.387 146.874C189.743 146.682 190.157 146.586 190.629 146.586C191.04 146.586 191.413 146.665 191.749 146.821C192.084 146.973 192.372 147.211 192.61 147.536C192.848 147.856 193.032 148.264 193.161 148.76C193.29 149.256 193.354 149.844 193.354 150.524ZM192.323 150.559C192.323 150.426 192.317 150.295 192.305 150.167C192.297 150.034 192.288 149.905 192.276 149.78L189.036 152.188C189.094 152.391 189.168 152.579 189.258 152.75C189.348 152.922 189.456 153.071 189.581 153.196C189.709 153.317 189.854 153.413 190.014 153.483C190.178 153.549 190.364 153.583 190.571 153.583C190.836 153.583 191.077 153.518 191.292 153.389C191.51 153.26 191.696 153.069 191.848 152.815C192 152.561 192.118 152.247 192.2 151.872C192.282 151.493 192.323 151.055 192.323 150.559ZM188.819 150.489C188.819 150.61 188.819 150.731 188.819 150.852C188.823 150.973 188.831 151.09 188.842 151.204L192.083 148.807C192.024 148.608 191.95 148.426 191.86 148.262C191.77 148.098 191.663 147.958 191.538 147.84C191.413 147.719 191.27 147.625 191.11 147.559C190.95 147.493 190.77 147.459 190.571 147.459C190.305 147.459 190.063 147.524 189.844 147.653C189.629 147.782 189.446 147.975 189.293 148.233C189.141 148.487 189.024 148.803 188.942 149.182C188.86 149.557 188.819 149.993 188.819 150.489ZM199.952 150.524C199.952 151.11 199.893 151.645 199.776 152.129C199.659 152.61 199.481 153.024 199.243 153.372C199.004 153.715 198.708 153.983 198.352 154.174C198 154.362 197.586 154.456 197.11 154.456C196.7 154.456 196.327 154.379 195.991 154.227C195.655 154.071 195.368 153.833 195.129 153.512C194.891 153.192 194.708 152.784 194.579 152.288C194.45 151.792 194.385 151.204 194.385 150.524C194.385 149.938 194.444 149.403 194.561 148.918C194.682 148.434 194.86 148.02 195.094 147.676C195.333 147.329 195.629 147.061 195.985 146.874C196.34 146.682 196.754 146.586 197.227 146.586C197.637 146.586 198.01 146.665 198.346 146.821C198.682 146.973 198.969 147.211 199.208 147.536C199.446 147.856 199.629 148.264 199.758 148.76C199.887 149.256 199.952 149.844 199.952 150.524ZM198.92 150.559C198.92 150.426 198.915 150.295 198.903 150.167C198.895 150.034 198.885 149.905 198.874 149.78L195.633 152.188C195.692 152.391 195.766 152.579 195.856 152.75C195.946 152.922 196.053 153.071 196.178 153.196C196.307 153.317 196.452 153.413 196.612 153.483C196.776 153.549 196.961 153.583 197.168 153.583C197.434 153.583 197.674 153.518 197.889 153.389C198.108 153.26 198.293 153.069 198.446 152.815C198.598 152.561 198.715 152.247 198.797 151.872C198.879 151.493 198.92 151.055 198.92 150.559ZM195.417 150.489C195.417 150.61 195.417 150.731 195.417 150.852C195.42 150.973 195.428 151.09 195.44 151.204L198.68 148.807C198.622 148.608 198.547 148.426 198.458 148.262C198.368 148.098 198.26 147.958 198.135 147.84C198.01 147.719 197.868 147.625 197.708 147.559C197.547 147.493 197.368 147.459 197.168 147.459C196.903 147.459 196.661 147.524 196.442 147.653C196.227 147.782 196.043 147.975 195.891 148.233C195.739 148.487 195.622 148.803 195.54 149.182C195.458 149.557 195.417 149.993 195.417 150.489ZM206.696 154.35H205.295L202.553 151.198V154.35H201.534V146.071H202.553V151.157L205.196 148.467H206.543L203.784 151.18L206.696 154.35ZM219.616 149.036C219.616 149.348 219.557 149.659 219.44 149.967C219.323 150.272 219.141 150.545 218.895 150.788C218.649 151.03 218.334 151.227 217.952 151.379C217.569 151.528 217.112 151.602 216.581 151.602H215.631V154.35H214.588V146.692H216.745C217.124 146.692 217.487 146.735 217.834 146.821C218.182 146.903 218.487 147.038 218.749 147.225C219.014 147.413 219.225 147.655 219.381 147.952C219.538 148.249 219.616 148.61 219.616 149.036ZM218.532 149.083C218.532 148.59 218.37 148.213 218.045 147.952C217.725 147.69 217.276 147.559 216.698 147.559H215.631V150.711H216.604C217.221 150.711 217.696 150.577 218.028 150.307C218.364 150.038 218.532 149.629 218.532 149.083ZM221.438 148.467H222.37L222.399 149.551C222.747 149.133 223.088 148.831 223.424 148.643C223.764 148.456 224.106 148.362 224.45 148.362C225.059 148.362 225.52 148.559 225.833 148.954C226.149 149.348 226.295 149.934 226.272 150.711H225.241C225.252 150.196 225.176 149.823 225.012 149.592C224.852 149.358 224.616 149.241 224.303 149.241C224.167 149.241 224.028 149.266 223.887 149.317C223.75 149.364 223.608 149.442 223.459 149.551C223.315 149.657 223.161 149.793 222.997 149.961C222.833 150.129 222.657 150.333 222.469 150.571V154.35H221.438V148.467ZM232.917 151.362C232.917 151.819 232.852 152.239 232.723 152.622C232.594 153 232.409 153.327 232.167 153.6C231.924 153.87 231.629 154.081 231.282 154.233C230.934 154.381 230.54 154.456 230.098 154.456C229.676 154.456 229.297 154.391 228.961 154.262C228.629 154.129 228.346 153.936 228.112 153.682C227.881 153.428 227.704 153.114 227.579 152.739C227.458 152.364 227.397 151.932 227.397 151.444C227.397 150.987 227.461 150.571 227.59 150.196C227.719 149.817 227.905 149.493 228.147 149.223C228.389 148.95 228.684 148.739 229.032 148.59C229.379 148.438 229.774 148.362 230.215 148.362C230.637 148.362 231.014 148.428 231.346 148.561C231.682 148.69 231.965 148.881 232.196 149.135C232.43 149.385 232.608 149.698 232.729 150.073C232.854 150.448 232.917 150.877 232.917 151.362ZM231.874 151.409C231.874 151.045 231.833 150.729 231.75 150.459C231.672 150.186 231.559 149.959 231.411 149.78C231.262 149.596 231.081 149.459 230.866 149.37C230.655 149.276 230.418 149.229 230.157 149.229C229.852 149.229 229.59 149.29 229.372 149.411C229.157 149.528 228.979 149.686 228.838 149.885C228.702 150.084 228.6 150.317 228.534 150.583C228.471 150.844 228.44 151.12 228.44 151.409C228.44 151.772 228.479 152.09 228.557 152.364C228.639 152.637 228.754 152.866 228.903 153.049C229.051 153.229 229.231 153.366 229.442 153.459C229.653 153.549 229.891 153.594 230.157 153.594C230.461 153.594 230.721 153.536 230.936 153.418C231.155 153.297 231.333 153.137 231.469 152.938C231.61 152.739 231.711 152.508 231.774 152.247C231.84 151.981 231.874 151.702 231.874 151.409ZM234.094 151.532C234.094 151.032 234.163 150.588 234.299 150.202C234.436 149.811 234.629 149.483 234.879 149.217C235.133 148.948 235.436 148.745 235.788 148.608C236.143 148.467 236.538 148.397 236.971 148.397C237.159 148.397 237.342 148.409 237.522 148.432C237.706 148.456 237.885 148.493 238.061 148.543V146.071H239.086V154.35H238.172L238.137 153.237C237.852 153.651 237.543 153.958 237.211 154.157C236.879 154.356 236.52 154.456 236.133 154.456C235.797 154.456 235.5 154.385 235.243 154.245C234.989 154.104 234.776 153.907 234.604 153.653C234.436 153.395 234.309 153.086 234.223 152.727C234.137 152.368 234.094 151.969 234.094 151.532ZM235.137 151.467C235.137 152.178 235.241 152.709 235.448 153.061C235.659 153.409 235.956 153.583 236.338 153.583C236.596 153.583 236.868 153.467 237.153 153.237C237.442 153.006 237.745 152.665 238.061 152.211V149.481C237.893 149.403 237.708 149.344 237.504 149.305C237.301 149.262 237.1 149.241 236.901 149.241C236.346 149.241 235.913 149.42 235.6 149.78C235.292 150.139 235.137 150.702 235.137 151.467ZM245.719 154.35H244.805L244.77 153.401C244.594 153.604 244.426 153.774 244.266 153.911C244.11 154.043 243.954 154.151 243.797 154.233C243.641 154.315 243.483 154.372 243.323 154.403C243.167 154.438 243 154.456 242.825 154.456C242.219 154.456 241.762 154.278 241.454 153.922C241.145 153.567 240.991 153.03 240.991 152.311V148.467H242.01V152.229C242.01 153.131 242.35 153.583 243.03 153.583C243.155 153.583 243.276 153.565 243.393 153.53C243.514 153.491 243.639 153.426 243.768 153.336C243.901 153.243 244.042 153.118 244.19 152.961C244.342 152.805 244.512 152.608 244.7 152.37V148.467H245.719V154.35ZM252.159 154.133C251.893 154.235 251.62 154.309 251.338 154.356C251.061 154.407 250.774 154.432 250.477 154.432C249.547 154.432 248.831 154.18 248.327 153.676C247.827 153.172 247.577 152.436 247.577 151.467C247.577 151.002 247.649 150.581 247.793 150.202C247.938 149.823 248.141 149.499 248.403 149.229C248.665 148.959 248.977 148.752 249.34 148.608C249.704 148.459 250.104 148.385 250.542 148.385C250.846 148.385 251.131 148.407 251.397 148.45C251.663 148.493 251.917 148.563 252.159 148.661V149.633C251.905 149.5 251.645 149.405 251.379 149.346C251.118 149.284 250.846 149.252 250.565 149.252C250.303 149.252 250.055 149.303 249.821 149.405C249.59 149.502 249.387 149.645 249.211 149.833C249.036 150.02 248.897 150.249 248.795 150.518C248.694 150.788 248.643 151.092 248.643 151.432C248.643 152.143 248.815 152.676 249.159 153.032C249.506 153.383 249.987 153.559 250.6 153.559C250.877 153.559 251.145 153.528 251.403 153.465C251.665 153.403 251.917 153.309 252.159 153.184V154.133ZM258.926 154.268C258.696 154.327 258.458 154.368 258.211 154.391C257.965 154.418 257.715 154.432 257.461 154.432C256.723 154.432 256.172 154.266 255.809 153.934C255.446 153.598 255.264 153.084 255.264 152.393V149.323H253.618V148.467H255.264V146.85L256.284 146.586V148.467H258.926V149.323H256.284V152.311C256.284 152.733 256.395 153.049 256.618 153.26C256.844 153.467 257.176 153.571 257.614 153.571C257.801 153.571 258.006 153.557 258.229 153.53C258.452 153.499 258.684 153.452 258.926 153.389V154.268ZM265.442 152.745C265.442 152.952 265.407 153.137 265.336 153.301C265.266 153.465 265.17 153.612 265.049 153.741C264.928 153.866 264.788 153.973 264.627 154.063C264.467 154.153 264.295 154.227 264.112 154.286C263.932 154.344 263.747 154.387 263.555 154.415C263.364 154.442 263.176 154.456 262.993 154.456C262.594 154.456 262.227 154.438 261.891 154.403C261.559 154.368 261.233 154.311 260.913 154.233V153.295C261.256 153.393 261.598 153.467 261.938 153.518C262.278 153.569 262.616 153.594 262.952 153.594C263.44 153.594 263.801 153.528 264.036 153.395C264.27 153.262 264.387 153.073 264.387 152.827C264.387 152.721 264.368 152.627 264.329 152.545C264.293 152.459 264.227 152.379 264.129 152.305C264.032 152.227 263.879 152.147 263.672 152.065C263.469 151.983 263.19 151.889 262.834 151.784C262.569 151.706 262.323 151.618 262.096 151.52C261.874 151.418 261.68 151.299 261.516 151.163C261.352 151.026 261.223 150.866 261.129 150.682C261.036 150.499 260.989 150.282 260.989 150.032C260.989 149.868 261.026 149.688 261.1 149.493C261.178 149.297 261.309 149.116 261.493 148.948C261.676 148.78 261.924 148.641 262.237 148.532C262.549 148.418 262.94 148.362 263.409 148.362C263.639 148.362 263.895 148.375 264.176 148.403C264.458 148.426 264.75 148.469 265.055 148.532V149.44C264.735 149.362 264.43 149.305 264.141 149.27C263.856 149.231 263.608 149.211 263.397 149.211C263.143 149.211 262.928 149.231 262.752 149.27C262.581 149.309 262.44 149.364 262.331 149.434C262.225 149.5 262.149 149.581 262.102 149.674C262.055 149.764 262.032 149.862 262.032 149.967C262.032 150.073 262.051 150.168 262.09 150.254C262.133 150.34 262.209 150.424 262.319 150.506C262.432 150.584 262.588 150.665 262.788 150.747C262.987 150.825 263.247 150.911 263.567 151.004C263.915 151.106 264.208 151.213 264.446 151.327C264.684 151.436 264.877 151.559 265.026 151.696C265.174 151.833 265.28 151.987 265.342 152.159C265.409 152.331 265.442 152.526 265.442 152.745ZM276.293 152.504C276.426 152.504 276.551 152.53 276.668 152.581C276.79 152.631 276.893 152.702 276.979 152.792C277.069 152.881 277.139 152.987 277.19 153.108C277.241 153.225 277.266 153.352 277.266 153.489C277.266 153.622 277.241 153.747 277.19 153.864C277.139 153.981 277.069 154.084 276.979 154.174C276.893 154.26 276.79 154.329 276.668 154.379C276.551 154.43 276.426 154.456 276.293 154.456C276.157 154.456 276.03 154.43 275.913 154.379C275.795 154.329 275.692 154.26 275.602 154.174C275.516 154.084 275.448 153.981 275.397 153.864C275.346 153.747 275.321 153.622 275.321 153.489C275.321 153.352 275.346 153.225 275.397 153.108C275.448 152.987 275.516 152.881 275.602 152.792C275.692 152.702 275.795 152.631 275.913 152.581C276.03 152.53 276.157 152.504 276.293 152.504ZM282.891 152.504C283.024 152.504 283.149 152.53 283.266 152.581C283.387 152.631 283.491 152.702 283.577 152.792C283.667 152.881 283.737 152.987 283.788 153.108C283.838 153.225 283.864 153.352 283.864 153.489C283.864 153.622 283.838 153.747 283.788 153.864C283.737 153.981 283.667 154.084 283.577 154.174C283.491 154.26 283.387 154.329 283.266 154.379C283.149 154.43 283.024 154.456 282.891 154.456C282.754 154.456 282.627 154.43 282.51 154.379C282.393 154.329 282.29 154.26 282.2 154.174C282.114 154.084 282.045 153.981 281.995 153.864C281.944 153.747 281.918 153.622 281.918 153.489C281.918 153.352 281.944 153.225 281.995 153.108C282.045 152.987 282.114 152.881 282.2 152.792C282.29 152.702 282.393 152.631 282.51 152.581C282.627 152.53 282.754 152.504 282.891 152.504ZM289.489 152.504C289.622 152.504 289.747 152.53 289.864 152.581C289.985 152.631 290.088 152.702 290.174 152.792C290.264 152.881 290.334 152.987 290.385 153.108C290.436 153.225 290.461 153.352 290.461 153.489C290.461 153.622 290.436 153.747 290.385 153.864C290.334 153.981 290.264 154.084 290.174 154.174C290.088 154.26 289.985 154.329 289.864 154.379C289.747 154.43 289.622 154.456 289.489 154.456C289.352 154.456 289.225 154.43 289.108 154.379C288.991 154.329 288.887 154.26 288.797 154.174C288.711 154.084 288.643 153.981 288.592 153.864C288.542 153.747 288.516 153.622 288.516 153.489C288.516 153.352 288.542 153.225 288.592 153.108C288.643 152.987 288.711 152.881 288.797 152.792C288.887 152.702 288.991 152.631 289.108 152.581C289.225 152.53 289.352 152.504 289.489 152.504Z" fill="white"/>
23
+ <path d="M80.51 127H45.51C44.3139 127 43.1667 127.475 42.3209 128.321C41.4752 129.167 41 130.314 41 131.51V166.51C41.0052 167.696 41.4772 168.832 42.3138 169.672C43.1504 170.512 44.2843 170.989 45.47 171H80.47C81.0623 171 81.6487 170.883 82.1959 170.657C82.7431 170.43 83.2403 170.098 83.659 169.679C84.0778 169.26 84.41 168.763 84.6367 168.216C84.8633 167.669 84.98 167.082 84.98 166.49V131.49C84.9748 130.304 84.5028 129.168 83.6662 128.328C82.8296 127.488 81.6957 127.011 80.51 127V127Z" fill="#8187B2"/>
24
+ <rect x="48.88" y="134.44" width="28.32" height="29.28" fill="url(#pattern0)"/>
25
+ </g>
26
+ <defs>
27
+ <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
28
+ <use xlink:href="#image0" transform="scale(0.00847458 0.00819672)"/>
29
+ </pattern>
30
+ <image id="image0" width="118" height="122" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHYAAAB6CAYAAABqZadqAAAACXBIWXMAAC4jAAAuIwF4pT92AAAIX0lEQVR4Xu2dz3XbOBDGv+jtUQfvgeeVO5ArMF1B7AoiVxC7AjkV2KnASgVWKhBTgbkVLO84LPc93r0HDB1aljQEMKBAGL/39rL5nD/8CGAwgwE/vby8IGaUai4BnAOYA8i3frkGUAL4BWCVZdMKkfApVmOVahYAlgBmh5VvKAB8y7JpweiCJzpjlWrmAB6hR6gtD9AG15wwVKIylkbpI6frSQngYqzmTjjBWBA2FdAjfqNUc8IJQyQKY5Vqcsia2jIHsOFEITJ6Y2lE+TC1Za5Uc8eJQmP0xgK4gVnka8NSqWbGiUJi1MbSaP3K6YRYcoKQGLWxABYAhgpuFmMKpMZu7GdOIMwlJwiFsRubcwJhzjlBKIzWWMowDc2ME4TCaI3FcGtrlxknCIUxG3sMZpwgFP7gBBLQtNkdYdVIS2SjyRt7MZa2BQvoqDXfo6kBrAH8zLLpepcmQEpOEAqi1R0y9AY6aWCyBlYArk3roEo1cn/5fqyybHrNiUJAbI2l6XYDnaExMRXQa9dGqeaeE24x9Aj6xQlCQcTYjqmuW5AbpRqThP4PTiDMWJYMd2M7ppqO0n0sDMwd8kGvx1R0dzYWumQmZWrLgg6hHYQi6xUjk+I7JwgJJ2OpTuk6/e7jsWfS/Rb+tyEPpoHdsbE2doCSWRthH4SmR5+RagngGyfqi1LNjVLNs1LNC/33r1LNo3S919pY6EpHnxHlwhdOAAC0D/Zhbg29DXOeEZRqTpRqngHc4+0sdwK9539W+tyWCC7GDlEym9F5JpYsm64ga24FfUpRakvF7RpOoJef/ICmNy7G5pxAiJwTtJC5F9CmuLAGcCZlqlLNDfrHIn13BAexMpbWV9/TcMtfnKALBTln0Oui6RRaQo/SK4npt0OvJYWYSZQkrYxF/7dPghkn2CbLpnWWTe8AnEJPz2vsH8Ul9Mn/syybnnmKfk2f14wTcHgpAoQCjboVOnvdTqWpFB6VkjjPhrbGDvlARP8sqXXTkApmo7DiBBxWU/HAD+dvTjACCk7QoZZYDqyMJYYyd6g/xycmgZxI6tLF2IITCFFwgtChnPYtp4Ou995xoj64GCvyZjGsAg5wjGD22DV0P65YgsXpBAWV1xaczgGxJEFIbJ8Bk1hTt3E1dgbgGQLh+Q4esmzaZ/pK7MBlKjZZO0wpIVhR+Yg4GQu8rh2SJtQApFN6Hw5nYwGAIjmJhb+EXlcrTpg4jIixABv19eEBOgFfccIEj1PwtA8qGH8Fn/yuoRP035KhsngxtoWi5hy786SFjzA/ofFqbOJ4iK2xibBIxkZKMjZSkrGRkoyNlGRspBideaJjp3OM96qBD8PBfSwlGC6x/8qBEvqEw48Y66ZjZqexNDKX6NEU1aGA7nOpGF1iAN4ZS9X9J5gdl2ypAdxSQSBxRN4YK9idfp3MPS6vxno45nKVjeean9Gw1Y23N4jtGruBQWdbD2oAp+kkhDs06JbYfXCwhC57vhlEE+C1fpq//xknTqCbfBMO0Ah9xv7ToHMAT2rrQpZPLy8voE5rrihuy59p1NphEfO8XjA2oWHuy1TA77nj2DG9kWfRrsET+L81+5wTJN6j9HVINgNuCWhjTd4IG2acILET2wGRA9pY29+gLzZvXcLhuSnV5Km6EykT+O8/TRGxHRUnOEA5AfAfp3LE94sTK7ZX6JZZNq0n8N9YnIy1Yw272e47AEzo0HZ1UOrG0HcKRwEldUw7Gcu2+NIGT74efpEK8PaQSStG1lJC904B+G3sA+yGPYdke+WHhFKEVzg8q66w9XXqbnXnErrALkXqSBdmRzaqhr75vNrWbhfaF5C5pLHIsukFEkfjTYIik7kadpVMPT7vMk8ODcw19Hkn1xcjIQB3/HQBvoG5go6qH1LdNRx69cd2DorP8bsaVELvm6p9P5c4Hr2MTYyPVN2JlGRspCRjIyUZGynJ2EhJxkZKMjZSkrGRkoyNFKM7KEyh+uFn6EPjOf3vGjod+Qu6ElTt+tmEG15SilQ8WKJfF8AK6fZTcUSNpWLBI8z7gWroLvg1Jxw7O26EreHhbJiYsWTqBg6tCYj4igPqgltifx9yBT1zrfb8uhGSxj7BfKRuU0P2Y7xBoFRzj/438Kwh8JVpkaiYgiRXU4EIu+ANTQX0c3Q+VChiLGTNyOlFGT00/ZqY2pIr1dxxokM4G0vt9DNOZ8gXTjASXF74rxS3WOFsLGSm4G18/J6DQi+8SyB5AofnIGGsl8ZpJfCd8iOTc4IeWD9bCWN9YT0NBYLE33/GCfYRsrEJB5KxYWO9l5Uw1rbz+iDZ+D+2VHCCHlg/WwljfWSJCk4QOvRiWo84Ys0J9uFsLCXuK05niK9GbCjVzJVqckrG+8alP9ippCmSKxZsvwT0Va2nnKgvtMlfQCc9trdQNfTs8N3X1K/s7qms4XhzrIixgPU/YBcXUg+ZXrh79Nt6FPDwQWKLqlcNgUKI81Tc4QLua8q1oKmPMLtkMgfwj3RihF6UC+jrIDjW0CPVyVRAcMQCr0XkJ/R/O7uI1WIpgb7kdHuooL867fqSvkP9/irKOd6+cOLHhESNBV6nnhv0f7AldMN0wQn7QBWVDadjeL33d6yIG9uiDn+zp4Je035KH4dRclfgn0qOoKHxZuwxoJfpH07Xk1HfeiMZPIVAzgkMyDlByMRm7IwTGGATAAZDbMYmiGRspCRj9yO+jx2S2IyV3DoVnCBkojKWUnEVp+uJtwrTEERlLOFSKmsppRMnQxOdsZRvLhgZx6jTiUCExhJXsD/ZcS1RXTk2URrbKZUVjLRLDV2PXXHCMRBVrngXir/BtYaOpm99lOqORfTGtqj3DceAbjgudshHz/9Pzwg8eDZlRwAAAABJRU5ErkJggg=="/>
31
+ </defs>
32
+ </svg>
admin/images/ctx-feed-features/feed-type-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="486" height="431" fill="none" viewBox="0 0 486 431"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v411c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="197" height="32" x="40" y="358" fill="#62699F" rx="5"/><path fill="#fff" d="M60.74 378.096c-1.12 0-1.992-.32-2.616-.96-.624-.64-.936-1.56-.936-2.76V369.6h1.2v4.728c0 1.8.788 2.7 2.364 2.7.768 0 1.356-.22 1.764-.66.408-.448.612-1.128.612-2.04V369.6h1.164v4.776c0 1.208-.312 2.132-.936 2.772-.624.632-1.496.948-2.616.948zm9.216-6.516c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.904-7.968V378H79.66v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.772-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V378h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.695.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.774 2.774 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.283-.972c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V378h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.515-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V378h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V378h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.808-2.484V378h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm14.666-3.312h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm9.029 1.104c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.14-.972c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V378h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V378h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.555 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V378h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V378h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V378h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V378h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="6" height="1" x="143.24" y="352.24" fill="#62699F" rx=".5" transform="rotate(-45 143.243 352.243)"/><rect width="6" height="1" x="138.24" y="343" fill="#62699F" rx=".5" transform="rotate(90 138.243 343)"/><rect width="6" height="1" x="132.24" y="352.95" fill="#62699F" rx=".5" transform="rotate(-135 132.243 352.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M139.309 400.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.336 14.087c.387 1.02.868.979 1.077-.091z"/></g><rect width="235.5" height="31.5" x="210.25" y="79.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 100l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-193.92 4.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V99h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.582 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm8.233-6.516c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm7.531 6.492c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.265-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V99h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><path fill="#6577AA" d="M42.928 91.644h-2.88V90.6h6.948v1.044h-2.88V99h-1.188v-7.356zm10.299 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408A3.033 3.033 0 0 1 47.31 97.5a3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm12.7-.972c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99H59.53v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.095 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V99h-1.152v-8.904zm5.667 2.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H81.15c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H87.53v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM42.46 138.644v2.928h4.212v1.032H42.46V146h-1.2v-8.4h5.928v1.044H42.46zm6.132.996h1.152V146h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V146h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm15.358-2.952v8.4h-.984l-5.04-6.264V146h-1.2v-8.4h.984l5.04 6.264V137.6h1.2zm4.663 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V146h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V146h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V146H87.48v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V146h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.506 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.779 2.779 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="210.25" y="126.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M233.08 141.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V146h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V146h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V146h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><path fill="#EDEDF4" d="M210 181h236v142a5 5 0 0 1-5 5H215a5 5 0 0 1-5-5V181z"/><path fill="#CFD1E1" d="M210 231h236v24H210z"/><path fill="#62699F" d="M231.016 222.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.329 0a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm12.301-8.496l-3.684 8.4h-1.188l-3.696-8.4h1.296l3.024 6.9 3.048-6.9h1.2zM232.54 246l-2.52-3.468-2.484 3.468h-1.38l3.156-4.308-2.964-4.092h1.368l2.352 3.228 2.328-3.228h1.308l-2.964 4.056 3.18 4.344h-1.38zm10.301 0l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V246h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm3.673-8.4h1.2v7.356h4.548V246h-5.748v-8.4zm-17.586 25.044h-2.88V261.6h6.948v1.044h-2.88V270h-1.188v-7.356zm7.718 7.452a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.235.552l-.395.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm12.301-8.496l-3.684 8.4h-1.188l-3.696-8.4h1.296l3.024 6.9 3.048-6.9h1.2zM232.54 294l-2.52-3.468-2.484 3.468h-1.38l3.156-4.308-2.964-4.092h1.368l2.352 3.228 2.328-3.228h1.308l-2.964 4.056 3.18 4.344h-1.38zm2.513-8.4h1.2v7.356h4.548V294h-5.748v-8.4zm9.491 8.496a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm-15.616 16.548h-2.88V309.6h6.948v1.044h-2.88V318h-1.188v-7.356zM239.22 318l-2.52-3.468-2.484 3.468h-1.38l3.156-4.308-2.964-4.092h1.368l2.352 3.228 2.328-3.228h1.308l-2.964 4.056L240.6 318h-1.38zm4.099-7.356h-2.88V309.6h6.948v1.044h-2.88V318h-1.188v-7.356z"/><rect width="235.5" height="31.5" x="210.25" y="173.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 194l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-194.46 9l-2.52-3.468-2.484 3.468h-1.38l3.156-4.308-2.964-4.092h1.368l2.352 3.228 2.328-3.228h1.308l-2.964 4.056 3.18 4.344h-1.38zm10.301 0l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V193h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm3.673-8.4h1.2v7.356h4.548V193h-5.748v-8.4z"/><path fill="#6577AA" d="M42.46 185.644v2.928h4.212v1.032H42.46V193h-1.2v-8.4h5.928v1.044H42.46zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V193h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.515-6.42h-2.88V184.6h6.948v1.044h-2.88V193h-1.188v-7.356zm10.436.996l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zm4.447-.06c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.652-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="129" height="18" x="179" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M219.237 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.592-2.148l-1.32 1.224V23h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628L236.19 23h-1.416l-2.388-2.964zm10.401-.18c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.335-1.908v2.928h4.212v1.032h-4.212V23h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(131 385)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/google-ads-remarketing-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="488" height="315" fill="none" viewBox="0 0 488 315"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h468c5.523 0 10 4.477 10 10v291c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="40" y="125" fill="#62699F" rx="5"/><path fill="#fff" d="M59.708 145.096a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm7.153-6.516c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V145h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm10.63-5.544L74.445 145h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm11.89 5.544c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.383-.656-.576-1.392-.576-2.208 0-.816.193-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.657 0 1.257.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996a3.42 3.42 0 0 0-1.691.42c-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.287.488.683.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm8.144-6.516c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V145h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V145H97.37v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.286 3.286 0 0 1 1.308-.252zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V145h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V145h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V145h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm11.261-1.872c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm6.568 5.52c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/><rect width="6" height="1" x="104.24" y="119.24" fill="#62699F" rx=".5" transform="rotate(-45 104.243 119.243)"/><rect width="6" height="1" x="99.24" y="110" fill="#62699F" rx=".5" transform="rotate(90 99.243 110)"/><rect width="6" height="1" x="93.24" y="119.95" fill="#62699F" rx=".5" transform="rotate(-135 93.243 119.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M100.309 167.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><path fill="#6577AA" d="M48.08 69.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.633 0-1.2-.14-1.704-.42-.505-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.287-.496.683-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.895.656 1.175 1.152.288.488.432 1.044.432 1.668 0 .624-.143 1.184-.431 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.093-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.105.276-.32.184-.575.448-.767.792a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.276 1.176.192.336.447.6.767.792.328.184.697.276 1.105.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zM72.68 67.64v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V74h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM94.323 71.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm9.63-5.844V74h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.28 1.008c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm11.334.024c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.203-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V74h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V74h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.283.06L141.862 74h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.647 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V74h-1.152v-6.36h1.104v1.068zm5.607 5.364c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm4.187-6.432h1.152V74h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.5 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V74h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V74h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.163-1.98h1.2V74h-1.2v-8.4zm3.714 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><rect width="158.5" height="31.5" x="289.25" y="54.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M310.016 74.096c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.202-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.29-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V74h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V74h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.282.06L333.006 74h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm6.648 3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.847.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V74h-1.152v-6.36h1.104v1.068zm5.607 5.364c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm4.188-6.432h1.152V74h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.499 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.29-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V74h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V74h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm8.162-1.98h1.2V74h-1.2v-8.4zm3.715 0h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396h-2.268v6.312h2.268z"/><g filter="url(#b)"><circle cx="338" cy="250" r="20" fill="#DAE0E5"/><circle cx="338" cy="250" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#7D8287" d="M348.052 246.614l-1.135-4.643A1.26 1.26 0 0 0 345.7 241h-15.328c-.576 0-1.077.4-1.218.971l-1.135 4.643a.623.623 0 0 0-.019.156c0 1.766 1.336 3.205 2.979 3.205.955 0 1.807-.486 2.352-1.24.546.754 1.398 1.24 2.352 1.24.955 0 1.807-.486 2.352-1.24.546.754 1.396 1.24 2.352 1.24s1.807-.486 2.352-1.24c.546.754 1.397 1.24 2.352 1.24 1.644 0 2.98-1.439 2.98-3.205a.673.673 0 0 0-.019-.156zm-2.961 4.643a4.045 4.045 0 0 1-2.352-.754c-1.372.976-3.331.976-4.704 0-1.372.976-3.331.976-4.704 0a4.045 4.045 0 0 1-2.352.754 4.005 4.005 0 0 1-1.725-.399v6.809c0 .708.562 1.283 1.255 1.283h5.017v-5.129h5.018v5.129h5.018c.692 0 1.254-.575 1.254-1.283v-6.809a4.001 4.001 0 0 1-1.725.399z"/><g filter="url(#c)"><circle cx="248" cy="145" r="20" fill="#DAE0E5"/><circle cx="248" cy="145" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#979B9F" d="M259.203 140.852l-9.567-4.673c-.825-.412-2.227-.412-3.052 0l-9.787 4.673c-.687.33-.797.798-.797 1.045 0 .248.11.687.797 1.045l.798.385v4.398a1.349 1.349 0 0 0-.853 1.237c0 .55.358 1.045.825 1.238l-1.237 3.931h3.464l-1.237-3.931c.495-.193.824-.688.824-1.238a1.32 1.32 0 0 0-.852-1.237v-3.931l1.457.715v5.718c0 .082.028.165.083.247.137.165 2.694 3.657 7.917 3.657 5.224 0 7.78-3.519 7.89-3.657a.443.443 0 0 0 .083-.247v-5.691l3.244-1.594c.687-.33.797-.797.797-1.045-.027-.247-.11-.715-.797-1.045zm-4.124 9.238c-.44.549-2.804 3.189-7.093 3.189-4.288 0-6.653-2.64-7.093-3.189v-5.196l5.691 2.721c.413.193.962.303 1.512.303.578 0 1.127-.11 1.54-.33l5.443-2.667v5.169zm3.739-7.918l-3.299 1.622c-.138 0-.248.055-.303.165l-5.965 2.887c-.577.302-1.705.302-2.309 0l-7.341-3.519 8.44-.99a.427.427 0 0 0 .385-.467.426.426 0 0 0-.467-.385l-9.787 1.154-.99-.467c-.247-.11-.302-.247-.302-.247 0-.028.055-.138.302-.248l9.787-4.701c.302-.137.715-.22 1.127-.22.44 0 .88.083 1.155.22l9.567 4.674c.247.11.302.22.302.275 0 0-.082.137-.302.247z"/><g filter="url(#d)"><circle cx="262" cy="194" r="20" fill="#DAE0E5"/><circle cx="262" cy="194" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#979B9F" d="M273.879 190.442a1.989 1.989 0 0 0-1.037-1.131 7.21 7.21 0 0 0-5.549-.242l-1.903.692-5.432-2.688a.709.709 0 0 0-.553-.031l-3.243 1.181a.703.703 0 0 0-.17 1.231l3.442 2.475-4.783 1.741-1.775-1.439a.705.705 0 0 0-.684-.115l-1.729.63a.7.7 0 0 0-.421.901l1.102 3.027a3.901 3.901 0 0 0 2.029 2.215c.95.443 2.016.489 3.001.131l4.214-1.534-.908 3.568a.702.702 0 0 0 .922.835l3.243-1.181a.704.704 0 0 0 .403-.378l2.178-4.969 6.455-2.349a2.007 2.007 0 0 0 1.198-2.57zm-15.986-1.353l1.711-.622 3.959 1.959-2.529.921-3.141-2.258zm14.307 2.601l-6.738 2.453a.7.7 0 0 0-.403.378l-2.178 4.968-1.71.623.908-3.568a.702.702 0 0 0-.921-.835l-5.465 1.989c-.632.23-1.316.2-1.925-.084a2.5 2.5 0 0 1-1.302-1.421l-.862-2.366.695-.253 1.775 1.439a.705.705 0 0 0 .684.115l13.016-4.738a5.817 5.817 0 0 1 4.474.195.599.599 0 0 1-.048 1.105z"/><g filter="url(#e)"><circle cx="415" cy="194" r="20" fill="#DAE0E5"/><circle cx="415" cy="194" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#979B9F" d="M426.879 190.442a1.989 1.989 0 0 0-1.037-1.131 7.21 7.21 0 0 0-5.549-.242l-1.903.692-5.432-2.688a.709.709 0 0 0-.553-.031l-3.243 1.181a.703.703 0 0 0-.17 1.231l3.442 2.475-4.783 1.741-1.775-1.439a.705.705 0 0 0-.684-.115l-1.729.63a.7.7 0 0 0-.421.901l1.102 3.027a3.901 3.901 0 0 0 2.029 2.215c.95.443 2.016.489 3.001.131l4.214-1.534-.908 3.568a.702.702 0 0 0 .922.835l3.243-1.181a.704.704 0 0 0 .403-.378l2.178-4.969 6.455-2.349a2.007 2.007 0 0 0 1.198-2.57zm-15.986-1.353l1.711-.622 3.959 1.959-2.529.921-3.141-2.258zm14.307 2.601l-6.738 2.453a.7.7 0 0 0-.403.378l-2.178 4.968-1.71.623.908-3.568a.702.702 0 0 0-.921-.835l-5.465 1.989c-.632.23-1.316.2-1.925-.084a2.5 2.5 0 0 1-1.302-1.421l-.862-2.366.695-.253 1.775 1.439a.705.705 0 0 0 .684.115l13.016-4.738a5.817 5.817 0 0 1 4.474.195.599.599 0 0 1-.048 1.105z"/><g filter="url(#f)"><circle cx="384" cy="233" r="20" fill="#DAE0E5"/><circle cx="384" cy="233" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#7D8287" d="M393.527 243h-19c-1.4 0-2.5-1.1-2.5-2.5v-12c0-1.4 1.1-2.5 2.5-2.5h19c1.4 0 2.5 1.1 2.5 2.5v12c0 1.4-1.1 2.5-2.5 2.5zm-19-16c-.8 0-1.5.7-1.5 1.5v12c0 .8.7 1.5 1.5 1.5h19c.8 0 1.5-.7 1.5-1.5v-12c0-.8-.7-1.5-1.5-1.5h-19z"/><path fill="#7D8287" d="M387.527 227c-.3 0-.5-.2-.5-.5v-2c0-.3-.2-.5-.5-.5h-5c-.3 0-.5.2-.5.5v2c0 .3-.2.5-.5.5s-.5-.2-.5-.5v-2c0-.8.7-1.5 1.5-1.5h5c.8 0 1.5.7 1.5 1.5v2c0 .3-.2.5-.5.5zm-3.5 8h-.2l-11.5-4c-.2-.1-.4-.4-.3-.7.1-.2.4-.4.7-.3l11.3 4 11.3-4c.3-.1.5 0 .6.3.1.3 0 .5-.3.6l-11.5 4c0 .1 0 .1-.1.1z"/><g filter="url(#g)"><circle cx="428" cy="145" r="20" fill="#DAE0E5"/><circle cx="428" cy="145" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#7D8287" d="M439.78 144.342l-9.327-9.328a3.474 3.474 0 0 0-4.906 0l-9.327 9.328a.75.75 0 0 0 1.06 1.061l.595-.595v9.534c0 1.191.965 2.157 2.156 2.157h3.75c.259 0 .469-.21.469-.469v-6.938a2.343 2.343 0 0 1 2.344-2.343h2.812a2.343 2.343 0 0 1 2.344 2.343v6.938c0 .259.21.469.469.469h3.75a2.157 2.157 0 0 0 2.156-2.157v-9.534l.595.595a.748.748 0 0 0 1.06 0 .75.75 0 0 0 0-1.061z"/><g filter="url(#h)"><circle cx="292" cy="233" r="20" fill="#DAE0E5"/><circle cx="292" cy="233" r="19.5" stroke="#495057" stroke-opacity=".6"/></g><path fill="#7D8287" d="M298.706 245H286v-17.647a6.36 6.36 0 0 1 6.353-6.353 6.36 6.36 0 0 1 6.353 6.353v1.412h-4.941v-1.412a1.413 1.413 0 0 0-2.824 0v1.937c0 .863.754 1.592 1.647 1.592h6.118V245zm-11.294-1.412h9.882v-11.294h-4.706a3.065 3.065 0 0 1-2.143-.872 2.95 2.95 0 0 1-.916-2.132v-1.937a2.827 2.827 0 0 1 2.824-2.824 2.827 2.827 0 0 1 2.823 2.824h2.118a4.946 4.946 0 0 0-4.941-4.941 4.946 4.946 0 0 0-4.941 4.941v16.235z"/><path fill="#7D8287" d="M291.652 240.236l-2.367-2.142.948-1.047 1.398 1.266 2.819-2.667.971 1.026-3.769 3.564z"/><g clip-path="url(#i)"><path fill="#FBBC04" d="M344.542 128.572c-5.834-3.368-13.282-1.373-16.651 4.462l-20.908 36.213c-5.395 9.345 3.251 20.672 13.711 17.868a12.105 12.105 0 0 0 7.401-5.679l20.908-36.213c3.361-5.821 1.359-13.29-4.461-16.651z"/><path fill="#A0ED83" d="M329.313 172.187c-1.743-6.507-8.42-10.363-14.929-8.619-10.463 2.803-12.28 16.936-2.939 22.329 9.319 5.381 20.687-3.19 17.868-13.71z"/><path fill="#4285F4" d="M370.171 169.247l-20.908-36.213a12.112 12.112 0 0 0-7.402-5.68c-10.463-2.804-19.103 8.527-13.71 17.869l20.908 36.213c3.367 5.833 10.814 7.831 16.65 4.462 5.821-3.361 7.822-10.83 4.462-16.651z"/><path fill="#34A853" d="M329.313 172.187c-1.743-6.507-8.42-10.363-14.929-8.619-10.463 2.803-12.28 16.936-2.939 22.329 9.319 5.381 20.687-3.19 17.868-13.71z"/></g><path fill="#8187B2" d="M310.88 201.473l-1.51-2.15c-.186.013-.333.02-.44.02h-1.73v2.13h-1v-7h2.73c.907 0 1.62.216 2.14.65.52.433.78 1.03.78 1.79 0 .54-.133 1-.4 1.38-.266.38-.646.656-1.14.83l1.66 2.35h-1.09zm-1.98-2.98c.634 0 1.117-.137 1.45-.41.334-.274.5-.664.5-1.17 0-.507-.166-.894-.5-1.16-.333-.274-.816-.41-1.45-.41h-1.7v3.15h1.7zm9.216.36c0 .073-.007.17-.02.29h-4.3c.06.466.263.843.61 1.13.353.28.79.42 1.31.42.633 0 1.143-.214 1.53-.64l.53.62c-.24.28-.54.493-.9.64-.353.146-.75.22-1.19.22-.56 0-1.057-.114-1.49-.34a2.537 2.537 0 0 1-1.01-.97 2.803 2.803 0 0 1-.35-1.4c0-.514.113-.977.34-1.39a2.47 2.47 0 0 1 .95-.96c.407-.234.863-.35 1.37-.35.507 0 .957.116 1.35.35.4.226.71.546.93.96.227.413.34.886.34 1.42zm-2.62-1.92c-.46 0-.847.14-1.16.42-.307.28-.487.646-.54 1.1h3.4a1.674 1.674 0 0 0-.55-1.09c-.307-.287-.69-.43-1.15-.43zm10.583-.81c.667 0 1.193.193 1.58.58.393.386.59.96.59 1.72v3.05h-.96v-2.94c0-.514-.12-.9-.36-1.16-.233-.26-.57-.39-1.01-.39-.487 0-.873.153-1.16.46-.287.3-.43.733-.43 1.3v2.73h-.96v-2.94c0-.514-.12-.9-.36-1.16-.233-.26-.57-.39-1.01-.39-.487 0-.873.153-1.16.46-.287.3-.43.733-.43 1.3v2.73h-.96v-5.3h.92v.79c.193-.274.447-.48.76-.62a2.49 2.49 0 0 1 1.07-.22c.413 0 .78.083 1.1.25.32.166.567.41.74.73.2-.307.477-.547.83-.72.36-.174.763-.26 1.21-.26zm5.866 0c.734 0 1.294.18 1.68.54.394.36.59.896.59 1.61v3.2h-.91v-.7c-.16.246-.39.436-.69.57-.293.126-.643.19-1.05.19-.593 0-1.07-.144-1.43-.43a1.387 1.387 0 0 1-.53-1.13c0-.467.17-.84.51-1.12.34-.287.88-.43 1.62-.43h1.52v-.19c0-.414-.12-.73-.36-.95-.24-.22-.593-.33-1.06-.33-.313 0-.62.053-.92.16-.3.1-.553.236-.76.41l-.4-.72c.274-.22.6-.387.98-.5.38-.12.784-.18 1.21-.18zm-.22 4.67c.367 0 .684-.08.95-.24.267-.167.46-.4.58-.7v-.74h-1.48c-.813 0-1.22.273-1.22.82 0 .266.104.476.31.63.207.153.494.23.86.23zm5.187-3.73c.167-.307.413-.54.74-.7.327-.16.723-.24 1.19-.24v.93a1.803 1.803 0 0 0-.22-.01c-.52 0-.93.156-1.23.47-.293.306-.44.746-.44 1.32v2.64h-.96v-5.3h.92v.89zm5.173 1.94l-1.1 1.02v1.45h-.96v-7.42h.96v4.76l2.89-2.64h1.16l-2.23 2.19 2.45 3.11h-1.18l-1.99-2.47zm8.668-.15c0 .073-.007.17-.02.29h-4.3c.06.466.263.843.61 1.13.353.28.79.42 1.31.42.633 0 1.143-.214 1.53-.64l.53.62c-.24.28-.54.493-.9.64-.354.146-.75.22-1.19.22-.56 0-1.057-.114-1.49-.34a2.53 2.53 0 0 1-1.01-.97 2.793 2.793 0 0 1-.35-1.4c0-.514.113-.977.34-1.39a2.47 2.47 0 0 1 .95-.96c.406-.234.863-.35 1.37-.35.506 0 .956.116 1.35.35.4.226.71.546.93.96.226.413.34.886.34 1.42zm-2.62-1.92c-.46 0-.847.14-1.16.42-.307.28-.487.646-.54 1.1h3.4a1.678 1.678 0 0 0-.55-1.09c-.307-.287-.69-.43-1.15-.43zm6.933 4.23c-.14.12-.314.213-.52.28-.207.06-.42.09-.64.09-.534 0-.947-.144-1.24-.43-.294-.287-.44-.697-.44-1.23v-2.91h-.9v-.79h.9v-1.16h.96v1.16h1.52v.79h-1.52v2.87c0 .286.07.506.21.66.146.153.353.23.62.23.293 0 .543-.084.75-.25l.3.69zm1.16-4.99h.96v5.3h-.96v-5.3zm.48-1.02a.659.659 0 0 1-.47-.18.599.599 0 0 1-.18-.44c0-.174.06-.32.18-.44a.639.639 0 0 1 .47-.19c.187 0 .34.06.46.18a.55.55 0 0 1 .19.43c0 .18-.063.333-.19.46a.622.622 0 0 1-.46.18zm5.143.97c.674 0 1.207.196 1.6.59.4.386.6.956.6 1.71v3.05h-.96v-2.94c0-.514-.123-.9-.37-1.16-.246-.26-.6-.39-1.06-.39-.52 0-.93.153-1.23.46-.3.3-.45.733-.45 1.3v2.73h-.96v-5.3h.92v.8a1.87 1.87 0 0 1 .78-.63c.334-.147.71-.22 1.13-.22zm9.076.05v4.58c0 .926-.23 1.61-.69 2.05-.46.446-1.146.67-2.06.67-.5 0-.976-.07-1.43-.21-.453-.134-.82-.327-1.1-.58l.46-.74c.247.213.55.38.91.5.367.126.744.19 1.13.19.62 0 1.077-.147 1.37-.44.3-.294.45-.74.45-1.34v-.42c-.226.273-.506.48-.84.62-.326.133-.683.2-1.07.2-.506 0-.966-.107-1.38-.32a2.487 2.487 0 0 1-.96-.91 2.58 2.58 0 0 1-.35-1.34c0-.5.117-.944.35-1.33.234-.394.554-.697.96-.91a2.96 2.96 0 0 1 1.38-.32c.4 0 .77.073 1.11.22.347.146.63.363.85.65v-.82h.91zm-2.76 4.24c.347 0 .657-.074.93-.22.28-.147.497-.35.65-.61.16-.267.24-.567.24-.9 0-.514-.17-.927-.51-1.24-.34-.32-.776-.48-1.31-.48-.54 0-.98.16-1.32.48-.34.313-.51.726-.51 1.24 0 .333.077.633.23.9.16.26.377.463.65.61.28.146.597.22.95.22z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h468c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.619 19.57c0 3.045-2.427 5.5-5.403 5.5-2.976 0-5.403-2.455-5.403-5.5 0-3.046 2.427-5.5 5.403-5.5 2.976 0 5.403 2.454 5.403 5.5z"/><path stroke="#F2994A" d="M67.533 19.57c0 3.045-2.427 5.5-5.403 5.5-2.977 0-5.403-2.455-5.403-5.5 0-3.046 2.427-5.5 5.403-5.5 2.976 0 5.403 2.454 5.403 5.5z"/><path stroke="#219653" d="M83.447 19.57c0 3.045-2.427 5.5-5.403 5.5-2.977 0-5.403-2.455-5.403-5.5 0-3.046 2.426-5.5 5.403-5.5 2.976 0 5.403 2.454 5.403 5.5z"/><rect width="167.69" height="18" x="159.72" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M204.43 14.6l-2.808 8.4h-1.26l-2.292-6.708L195.778 23h-1.284l-2.808-8.4h1.236l2.268 6.828 2.364-6.828h1.104l2.316 6.864 2.316-6.864h1.14zm3.544 8.472c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.444-7.092c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V23h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm7.556 4.884c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.502 1.008c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm9.936-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.319 5.076a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm4.817 0a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/></g><defs><filter id="b" width="100" height="100" x="288" y="215" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="c" width="100" height="100" x="198" y="110" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="d" width="100" height="100" x="212" y="159" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="e" width="100" height="100" x="365" y="159" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="f" width="100" height="100" x="334" y="198" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="g" width="100" height="100" x="378" y="110" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><filter id="h" width="100" height="100" x="242" y="198" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="15"/><feGaussianBlur stdDeviation="15"/><feColorMatrix values="0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0 0.788235 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/><feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/></filter><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(92 152)"/></clipPath><clipPath id="i"><path fill="#fff" d="M0 0h66.47v66.47H0z" transform="translate(305.328 124)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/google-feed-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="519" height="412" fill="none" viewBox="0 0 519 412"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v392c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="197" height="32" x="40" y="333" fill="#62699F" rx="5"/><path fill="#fff" d="M60.74 353.096c-1.12 0-1.992-.32-2.616-.96-.624-.64-.936-1.56-.936-2.76V344.6h1.2v4.728c0 1.8.788 2.7 2.364 2.7.768 0 1.356-.22 1.764-.66.408-.448.612-1.128.612-2.04V344.6h1.164v4.776c0 1.208-.312 2.132-.936 2.772-.624.632-1.496.948-2.616.948zm9.216-6.516c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.904-7.968V353H79.66v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.772-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V353h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.695.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.774 2.774 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.283-.972c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V353h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.515-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V353h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V353h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.808-2.484V353h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm14.666-3.312h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm9.029 1.104c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.14-.972c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V353h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V353h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.555 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V353h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V353h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V353h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V353h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="6" height="1" x="143.24" y="327.24" fill="#62699F" rx=".5" transform="rotate(-45 143.243 327.243)"/><rect width="6" height="1" x="138.24" y="318" fill="#62699F" rx=".5" transform="rotate(90 138.243 318)"/><rect width="6" height="1" x="132.24" y="327.95" fill="#62699F" rx=".5" transform="rotate(-135 132.243 327.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M139.309 375.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.336 14.087c.387 1.02.868.979 1.077-.091z"/></g><rect width="97.33" height="10" x="40" y="225" fill="#CFD1E1" rx="5"/><rect width="113.23" height="10" x="147.27" y="225" fill="#CFD1E1" rx="5"/><rect width="101.31" height="10" x="270.43" y="225" fill="#CFD1E1" rx="5"/><rect width="97.33" height="10" x="381.67" y="225" fill="#CFD1E1" rx="5"/><rect width="97.33" height="4" x="40" y="252" fill="#CFD1E1" rx="2"/><rect width="113.23" height="4" x="147.27" y="252" fill="#CFD1E1" rx="2"/><rect width="101.31" height="4" x="270.43" y="252" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="381.67" y="252" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="40" y="273" fill="#CFD1E1" rx="2"/><rect width="113.23" height="4" x="147.27" y="273" fill="#CFD1E1" rx="2"/><rect width="101.31" height="4" x="270.43" y="273" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="381.67" y="273" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="40" y="294" fill="#CFD1E1" rx="2"/><rect width="113.23" height="4" x="147.27" y="294" fill="#CFD1E1" rx="2"/><rect width="101.31" height="4" x="270.43" y="294" fill="#CFD1E1" rx="2"/><rect width="97.33" height="4" x="381.67" y="294" fill="#CFD1E1" rx="2"/><path fill="#6577AA" d="M42.46 138.644v2.928h4.212v1.032H42.46V146h-1.2v-8.4h5.928v1.044H42.46zm6.132.996h1.152V146h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V146h-1.152v-8.904zm9.1 5.76c0 .088-.009.204-.025.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.145-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm15.358-2.952v8.4h-.984l-5.04-6.264V146h-1.2v-8.4h.984l5.04 6.264V137.6h1.2zm4.663 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V146h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V146h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V146H87.48v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V146h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.506 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.779 2.779 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="243.25" y="126.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M268.08 141.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V146h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.334-1.908v2.928h4.212v1.032h-4.212V146h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V146h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/><rect width="235.5" height="31.5" x="243.25" y="79.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 100l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-193.92 4.752h1.152v3.276c-.416.344-.9.608-1.452.792a5.428 5.428 0 0 1-1.728.276c-.848 0-1.612-.184-2.292-.552a4.24 4.24 0 0 1-1.608-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.552.576-2.208a4.124 4.124 0 0 1 1.608-1.536c.688-.368 1.46-.552 2.316-.552.672 0 1.28.112 1.824.336.552.216 1.02.536 1.404.96l-.744.744c-.672-.648-1.484-.972-2.436-.972-.64 0-1.216.14-1.728.42-.504.272-.9.656-1.188 1.152a3.196 3.196 0 0 0-.432 1.656c0 .608.144 1.16.432 1.656.288.488.684.872 1.188 1.152.512.28 1.084.42 1.716.42.752 0 1.408-.18 1.968-.54v-2.736zm6.006 4.32c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.617 1.008c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm5.513-7.632h1.152V99h-1.152v-8.904zm9.1 5.76c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.582 5.544a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm8.233-6.516c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm7.531 6.492c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.265-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.276-5.484c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-5.424h1.152V99h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm6.171 1.164c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.891.06v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><path fill="#6577AA" d="M42.928 91.644h-2.88V90.6h6.948v1.044h-2.88V99h-1.188v-7.356zm10.299 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408A3.033 3.033 0 0 1 47.31 97.5a3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm12.7-.972c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99H59.53v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.095 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V99h-1.152v-8.904zm5.667 2.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H81.15c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H87.53v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><rect width="235.5" height="31.5" x="243.25" y="173.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 194l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-194.46 9l-2.52-3.468-2.484 3.468h-1.38l3.156-4.308-2.964-4.092h1.368l2.352 3.228 2.328-3.228h1.308l-2.964 4.056 3.18 4.344h-1.38zm10.301 0l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V193h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm3.673-8.4h1.2v7.356h4.548V193h-5.748v-8.4z"/><path fill="#6577AA" d="M42.46 185.644v2.928h4.212v1.032H42.46V193h-1.2v-8.4h5.928v1.044H42.46zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.743-3.456V193h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.515-6.42h-2.88V184.6h6.948v1.044h-2.88V193h-1.188v-7.356zm10.436.996l-3.084 6.996c-.272.648-.592 1.104-.96 1.368-.36.264-.796.396-1.308.396-.312 0-.616-.052-.912-.156a1.807 1.807 0 0 1-.72-.432l.492-.864c.328.312.708.468 1.14.468.28 0 .512-.076.696-.228.192-.144.364-.396.516-.756l.204-.444-2.808-6.348h1.2l2.22 5.088 2.196-5.088h1.128zm4.447-.06c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.652-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="129" height="18" x="195" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M235.237 23l-.012-6.12-3.036 5.1h-.552l-3.036-5.064V23h-1.152v-8.4h.984l3.504 5.904 3.456-5.904h.984l.012 8.4h-1.152zm5.821-6.42c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V23h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm7.592-2.148l-1.32 1.224V23h-1.152v-8.904h1.152v5.712l3.468-3.168h1.392l-2.676 2.628L252.19 23h-1.416l-2.388-2.964zm10.401-.18c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm9.335-1.908v2.928h4.212v1.032h-4.212V23h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.491 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V23h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(131 360)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/number-format-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="512" height="266" fill="none" viewBox="0 0 512 266"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h492c5.523 0 10 4.477 10 10v246c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="235.5" height="31.5" x="236.25" y="204.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M453 225l-3-4h6l-3 4zm0-10l3 4h-6l3-4zm-194.52 7.956V224h-6.036v-.816l3.42-3.3c.416-.4.696-.744.84-1.032.144-.296.216-.592.216-.888 0-.44-.156-.78-.468-1.02-.304-.248-.744-.372-1.32-.372-.928 0-1.644.304-2.148.912l-.816-.708c.328-.4.756-.712 1.284-.936a4.594 4.594 0 0 1 1.788-.336c.88 0 1.58.212 2.1.636.52.416.78.984.78 1.704 0 .448-.096.872-.288 1.272-.192.4-.556.856-1.092 1.368l-2.568 2.472h4.308z"/><path fill="#6577AA" d="M47.484 215.6v8.4H46.5l-5.04-6.264V224h-1.2v-8.4h.984l5.04 6.264V215.6h1.2zm8.274 2.04V224h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm10.15-.06c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064V224H67.36v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V224h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V224h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.095 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V224h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.652-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.847.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V224h-1.152v-6.36h1.104v1.068zm9.765 5.364c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm7.221-7.092c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V224h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm11.125-.876V224h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.204-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.516 5.52c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm4.083-6.432h1.152V224h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm10.732 1.164c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V224h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V224h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V224h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm7.039 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V224h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.152V224h-1.152v-8.904z"/><path fill="#CFD1DB" fill-opacity=".5" d="M40 91h432v2H40zm0 3h432v1H40z"/><path fill="#6577AA" d="M48.484 69.796v8.4H47.5l-5.04-6.264v6.264h-1.2v-8.4h.984l5.04 6.264v-6.264h1.2zm8.274 2.04v6.36h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm10.15-.06c.8 0 1.431.232 1.895.696.472.464.708 1.152.708 2.064v3.66H68.36v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56v3.276h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56v3.276h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm8.095 0c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804v1.008h-1.104v-8.904h1.152v3.504c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484A2.15 2.15 0 0 0 76 76.984a2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164A1.93 1.93 0 0 0 76 73.06a2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm10.652-2.208c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.847.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584v3.168h-1.152v-6.36h1.104v1.068zm8.409-2.064v2.928h4.212V74.8h-4.212v3.396h-1.2v-8.4h5.928v1.044h-4.728zm8.774 7.428c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584v3.168h-1.152v-6.36h1.104v1.068zm11.692-1.128c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064v3.66h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56v3.276h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56v3.276h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm7.04 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932v3.84h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828z"/><rect width="235.5" height="31.5" x="236.25" y="110.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M253.38 128.428a.71.71 0 0 1 .552.24.78.78 0 0 1 .228.576c0 .12-.016.236-.048.348a4.964 4.964 0 0 1-.156.516l-.564 1.668h-.756l.444-1.788a.801.801 0 0 1-.372-.276.842.842 0 0 1-.132-.468c0-.24.076-.436.228-.588a.78.78 0 0 1 .576-.228z"/><path fill="#6577AA" d="M42.928 122.644h-2.88V121.6h6.948v1.044h-2.88V130h-1.188v-7.356zm8.603.936c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V130h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V130h-1.152v-8.904h1.152v3.444c.24-.304.552-.54.936-.708a3.288 3.288 0 0 1 1.308-.252zm7.531 6.492c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.821-5.424V130h-1.092v-.96c-.232.328-.54.584-.924.768a2.879 2.879 0 0 1-1.236.264c-.848 0-1.516-.232-2.004-.696-.488-.472-.732-1.164-.732-2.076v-3.66h1.152v3.528c0 .616.148 1.084.444 1.404.296.312.72.468 1.272.468.608 0 1.088-.184 1.44-.552.352-.368.528-.888.528-1.56v-3.288h1.152zm4.017 6.432c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504zm6.504-6.492c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V130h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888H80.2c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V130h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V130H85.26v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm10.807-2.484V130H98.36v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.294 1.032a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.444-.936c.32.288.728.524 1.224.708.504.176 1.02.264 1.548.264.696 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.288-.696 1.784 1.784 0 0 0-.696-.42c-.272-.096-.66-.204-1.164-.324a12.396 12.396 0 0 1-1.536-.456 2.616 2.616 0 0 1-.996-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.076-.324 1.788-.324.496 0 .984.064 1.464.192s.892.312 1.236.552l-.396.96a4.199 4.199 0 0 0-1.128-.504 4.08 4.08 0 0 0-1.176-.18c-.68 0-1.192.124-1.536.372-.336.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.708.42.288.096.676.2 1.164.312.632.152 1.14.304 1.524.456.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.604.648-1.092.864-.488.208-1.088.312-1.8.312zm10.586-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.115-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.161-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V130h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V130h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V130h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V130h-1.152v-6.36h1.104v1.068z"/><rect width="235.5" height="31.5" x="236.25" y="157.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M253.368 177.072a.807.807 0 0 1-.576-.228.814.814 0 0 1-.24-.6.76.76 0 0 1 .24-.576c.16-.16.352-.24.576-.24.224 0 .412.076.564.228a.796.796 0 0 1 .228.588c0 .24-.08.44-.24.6a.752.752 0 0 1-.552.228z"/><path fill="#6577AA" d="M41.26 168.6h3.54c.888 0 1.676.176 2.364.528.688.352 1.22.848 1.596 1.488.384.632.576 1.36.576 2.184 0 .824-.192 1.556-.576 2.196a3.852 3.852 0 0 1-1.596 1.476c-.688.352-1.476.528-2.364.528h-3.54v-8.4zm3.468 7.356c.68 0 1.276-.132 1.788-.396.52-.264.92-.632 1.2-1.104.28-.48.42-1.032.42-1.656 0-.624-.14-1.172-.42-1.644-.28-.48-.68-.852-1.2-1.116-.512-.264-1.108-.396-1.788-.396H42.46v6.312h2.268zm12.026-2.1c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm7.516 5.52c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm4.083-6.432h1.152V177H65.21v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm10.732 1.164c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V177h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V177h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V177H68.56v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm7.04 0c.88 0 1.551.216 2.015.648.472.432.708 1.076.708 1.932V177h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.265 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm5.12-8.088h1.152V177h-1.152v-8.904zm9.19 9a5.914 5.914 0 0 1-1.836-.288c-.584-.2-1.044-.456-1.38-.768l.445-.936c.32.288.727.524 1.224.708.503.176 1.02.264 1.547.264.697 0 1.216-.116 1.56-.348.344-.24.516-.556.516-.948a.9.9 0 0 0-.287-.696 1.784 1.784 0 0 0-.697-.42c-.272-.096-.66-.204-1.163-.324a12.396 12.396 0 0 1-1.537-.456 2.616 2.616 0 0 1-.995-.696c-.272-.32-.408-.748-.408-1.284 0-.448.116-.852.348-1.212.24-.36.6-.648 1.08-.864.48-.216 1.075-.324 1.787-.324.496 0 .984.064 1.465.192.48.128.892.312 1.236.552l-.396.96a4.209 4.209 0 0 0-1.129-.504 4.08 4.08 0 0 0-1.175-.18c-.68 0-1.192.124-1.537.372-.335.248-.504.568-.504.96 0 .288.096.524.288.708.192.176.428.316.709.42.287.096.675.2 1.163.312a11.8 11.8 0 0 1 1.525.456c.384.152.712.384.984.696.28.312.42.732.42 1.26 0 .44-.12.844-.36 1.212-.24.36-.605.648-1.093.864-.487.208-1.088.312-1.8.312zm10.586-3.24c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm8.115-.972c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm7.161-5.484c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V177h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm6.224-4.476c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V177h-1.152v-6.36h1.104v1.068zm6.04-1.128c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V177h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.696.444a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H138.4v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm3.906.444c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm5.997-4.356c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V177h-1.152v-6.36h1.104v1.068z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h492c5.523 0 10 4.477 10 10v28H0V10z"/><path fill="#C3C5DA" d="M41.746 21.05a11 11 0 0 1 10.445-7.55h66.915a11 11 0 0 1 10.445 7.55L135.149 38h-99l5.597-16.95z"/><path fill="#fff" d="M50.694 22.644v2.928h4.212v1.032h-4.212V30h-1.2v-8.4h5.928v1.044h-4.728zm11.798 4.212c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.492 2.304c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm10.744-3.456V30h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.602 1.032c-.84 0-1.6-.184-2.28-.552a4.175 4.175 0 0 1-1.584-1.536c-.384-.656-.576-1.392-.576-2.208 0-.816.192-1.548.576-2.196a4.04 4.04 0 0 1 1.596-1.536c.68-.376 1.44-.564 2.28-.564.656 0 1.256.112 1.8.336.544.216 1.008.54 1.392.972l-.78.756c-.632-.664-1.42-.996-2.364-.996-.624 0-1.188.14-1.692.42-.504.28-.9.668-1.188 1.164a3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.684.872 1.188 1.152.504.28 1.068.42 1.692.42.936 0 1.724-.336 2.364-1.008l.78.756c-.384.432-.852.76-1.404.984a4.684 4.684 0 0 1-1.8.336zm7.202-.024c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.29-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V30h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V30h-1.152v-6.36h1.104v.96a2.25 2.25 0 0 1 .936-.756c.4-.176.852-.264 1.356-.264zm7.1-1.608c-.688 0-1.032.372-1.032 1.116v.552h1.848v.948h-1.824V30h-1.152v-5.412h-1.08v-.948h1.08v-.564c0-.632.184-1.132.552-1.5.368-.368.884-.552 1.548-.552.256 0 .496.032.72.096.224.064.416.156.576.276l-.348.876c-.264-.2-.56-.3-.888-.3zm2.868 1.668h1.152V30h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm8.854 1.224v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264z"/><path fill="#8492BB" d="M140.746 21.05a11 11 0 0 1 10.445-7.55h63.915a11 11 0 0 1 10.445 7.55L231.149 38h-96l5.597-16.95z"/><path fill="#fff" d="M141.141 21.521A11.001 11.001 0 0 1 151.577 14h63.143c4.735 0 8.938 3.03 10.436 7.521L230.649 38h-95l5.492-16.479z"/><path fill="#8492BB" d="M169.917 23.144v2.928h4.212v1.032h-4.212V30.5h-1.2v-8.4h5.928v1.044h-4.728zm6.132.996h1.152v6.36h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V30.5h-1.152v-8.904zm7.08 8.532a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.929-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408A3.033 3.033 0 0 1 187.494 29a3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.848.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V30.5h-1.152v-6.36h1.104v1.068z"/><path fill="#C3C5DA" d="M236.597 21.05a11.002 11.002 0 0 1 10.446-7.55h87.914c4.746 0 8.957 3.044 10.446 7.55L351 38H231l5.597-16.95z"/><path fill="#fff" d="M249.622 27.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm9.63-5.844V30h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm11.084-5.424L263.856 30h-1.176l-2.784-6.36h1.2l2.184 5.1 2.232-5.1h1.128zm3.192-.06c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V30h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm8.516-5.604c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V30h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V30h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.579 6.492c-.648 0-1.228-.14-1.74-.42-.504-.28-.9-.664-1.188-1.152a3.284 3.284 0 0 1-.432-1.68c0-.624.144-1.18.432-1.668.288-.496.684-.88 1.188-1.152.512-.28 1.092-.42 1.74-.42.576 0 1.088.116 1.536.348a2.47 2.47 0 0 1 1.056 1.008l-.876.564a1.957 1.957 0 0 0-.744-.684 2.122 2.122 0 0 0-.984-.228 2.31 2.31 0 0 0-1.128.276 2.008 2.008 0 0 0-.78.792 2.385 2.385 0 0 0-.276 1.164c0 .448.092.844.276 1.188.192.336.452.596.78.78a2.31 2.31 0 0 0 1.128.276c.36 0 .688-.076.984-.228.296-.152.544-.38.744-.684l.876.552c-.248.44-.6.78-1.056 1.02-.448.232-.96.348-1.536.348zm9.737-3.216c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zM303 21.096V30h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504H303zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.046-6.42v2.928h4.212v1.032h-4.212V30h-1.2v-8.4h5.928v1.044h-4.728zm6.132.996h1.152V30h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm2.776-1.32h1.152V30h-1.152v-8.904zm7.08 8.532a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm6.93-2.772c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516zm5.847.156c.2-.368.496-.648.888-.84.392-.192.868-.288 1.428-.288v1.116a2.249 2.249 0 0 0-.264-.012c-.624 0-1.116.188-1.476.564-.352.368-.528.896-.528 1.584V30h-1.152v-6.36h1.104v1.068z"/><path fill="#C3C5DA" d="M356.597 21.05a11.002 11.002 0 0 1 10.446-7.55h51.914c4.746 0 8.957 3.044 10.446 7.55L435 38h-84l5.597-16.95z"/><path fill="#fff" d="M370.388 23.87v2.44h3.51v.86h-3.51V30h-1v-7h4.94v.87h-3.94zm6.786 0h-2.4V23h5.79v.87h-2.4V30h-.99v-6.13zm7.209-.87c.907 0 1.62.217 2.14.65.52.433.78 1.03.78 1.79s-.26 1.357-.78 1.79c-.52.433-1.233.65-2.14.65h-1.73V30h-1v-7h2.73zm-.03 4.01c.634 0 1.117-.133 1.45-.4.334-.273.5-.663.5-1.17 0-.507-.166-.893-.5-1.16-.333-.273-.816-.41-1.45-.41h-1.7v3.14h1.7zm6.018-5.43h.87l-3.3 9.42h-.87l3.3-9.42zm3.391 8.5c-.527 0-1.037-.08-1.53-.24-.487-.167-.87-.38-1.15-.64l.37-.78c.266.24.606.437 1.02.59.42.147.85.22 1.29.22.58 0 1.013-.097 1.3-.29.286-.2.43-.463.43-.79a.75.75 0 0 0-.24-.58 1.495 1.495 0 0 0-.58-.35c-.227-.08-.55-.17-.97-.27a10.278 10.278 0 0 1-1.28-.38 2.178 2.178 0 0 1-.83-.58c-.227-.267-.34-.623-.34-1.07 0-.373.096-.71.29-1.01.2-.3.5-.54.9-.72.4-.18.896-.27 1.49-.27.413 0 .82.053 1.22.16.4.107.743.26 1.03.46l-.33.8a3.51 3.51 0 0 0-.94-.42c-.334-.1-.66-.15-.98-.15-.567 0-.994.103-1.28.31-.28.207-.42.473-.42.8 0 .24.08.437.24.59.16.147.356.263.59.35.24.08.563.167.97.26.526.127.95.253 1.27.38.32.127.593.32.82.58.233.26.35.61.35 1.05 0 .367-.1.703-.3 1.01-.2.3-.504.54-.91.72-.407.173-.907.26-1.5.26zm5.171-6.21v2.44h3.51v.86h-3.51V30h-1v-7h4.94v.87h-3.94zm6.786 0h-2.4V23h5.79v.87h-2.4V30h-.99v-6.13zm7.209-.87c.907 0 1.62.217 2.14.65.52.433.78 1.03.78 1.79s-.26 1.357-.78 1.79c-.52.433-1.233.65-2.14.65h-1.73V30h-1v-7h2.73zm-.03 4.01c.634 0 1.117-.133 1.45-.4.334-.273.5-.663.5-1.17 0-.507-.166-.893-.5-1.16-.333-.273-.816-.41-1.45-.41h-1.7v3.14h1.7z"/></g></svg>
admin/images/ctx-feed-features/options-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="486" height="224" fill="none" viewBox="0 0 486 224"><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v204c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="119" height="32" x="40" y="141" fill="#62699F" rx="5"/><path fill="#fff" d="M70.612 158.9h-4.464l-.924 2.1h-1.236l3.804-8.4h1.188l3.816 8.4h-1.26l-.924-2.1zm-.42-.96l-1.812-4.116-1.812 4.116h3.624zm9.63-5.844V161H78.72v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.153-1.14c-.271-.496-.407-1.064-.407-1.704 0-.64.136-1.204.407-1.692.28-.488.665-.868 1.153-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.383.168.704.42.96.756v-3.504h1.151zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.091-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.575.448-.767.792a2.385 2.385 0 0 0-.276 1.164c0 .44.091.832.275 1.176.192.336.448.6.768.792.329.184.697.276 1.105.276zm11.456-7.968V161h-1.104v-1.008c-.256.352-.58.62-.972.804a3.012 3.012 0 0 1-1.296.276 3.343 3.343 0 0 1-1.656-.408 2.976 2.976 0 0 1-1.152-1.14c-.272-.496-.408-1.064-.408-1.704 0-.64.136-1.204.408-1.692.28-.488.664-.868 1.152-1.14a3.343 3.343 0 0 1 1.656-.408c.456 0 .876.088 1.26.264.384.168.704.42.96.756v-3.504h1.152zm-3.276 7.968c.4 0 .764-.092 1.092-.276a2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.193 2.193 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm12.639 1.032c-.849 0-1.612-.184-2.292-.552a4.212 4.212 0 0 1-1.608-1.548 4.266 4.266 0 0 1-.577-2.196c0-.808.192-1.54.576-2.196a4.124 4.124 0 0 1 1.609-1.536c.68-.376 1.444-.564 2.292-.564.84 0 1.6.188 2.28.564a4.04 4.04 0 0 1 1.596 1.536c.384.648.576 1.38.576 2.196 0 .816-.192 1.552-.576 2.208a4.149 4.149 0 0 1-1.597 1.536c-.68.368-1.44.552-2.28.552zm0-1.068c.616 0 1.168-.14 1.656-.42.495-.28.883-.664 1.164-1.152a3.238 3.238 0 0 0 .432-1.656c0-.608-.144-1.156-.432-1.644a3.019 3.019 0 0 0-1.165-1.164 3.267 3.267 0 0 0-1.655-.42 3.4 3.4 0 0 0-1.68.42 3.1 3.1 0 0 0-1.177 1.164 3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.68.872 1.177 1.152a3.4 3.4 0 0 0 1.68.42zm9.49-5.448c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152v-8.688h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.479.564a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V161h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.5 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V161h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V161H127.6v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264z"/><rect width="6" height="1" x="104" y="135.24" fill="#62699F" rx=".5" transform="rotate(-45 104 135.243)"/><rect width="6" height="1" x="99" y="126" fill="#62699F" rx=".5" transform="rotate(90 99 126)"/><rect width="6" height="1" x="93" y="135.95" fill="#62699F" rx=".5" transform="rotate(-135 93 135.95)"/><g clip-path="url(#a)"><path fill="#4B2E21" d="M97.309 183.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.337 14.087c.386 1.02.867.979 1.076-.091z"/></g><rect width="203.5" height="31.5" x="242.25" y="79.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M427 100l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><rect width="75" height="16" x="258" y="87" fill="#D7D9E6" rx="2"/><path fill="#62699F" d="M268.464 92.58c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.472 0-.904-.092-1.296-.276a2.495 2.495 0 0 1-.972-.804V99h-1.104v-8.904h1.152V93.6c.256-.336.576-.588.96-.756a2.988 2.988 0 0 1 1.26-.264zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.092-1.092.276a1.93 1.93 0 0 0-.768.792 2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm4.904-7.968h1.152V99h-1.152v-8.904zm6.075 8.976c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm10.977-5.424v5.496c0 1.112-.276 1.932-.828 2.46-.552.536-1.376.804-2.472.804-.6 0-1.172-.084-1.716-.252-.544-.16-.984-.392-1.32-.696l.552-.888c.296.256.66.456 1.092.6.44.152.892.228 1.356.228.744 0 1.292-.176 1.644-.528.36-.352.54-.888.54-1.608v-.504a2.594 2.594 0 0 1-1.008.744c-.392.16-.82.24-1.284.24-.608 0-1.16-.128-1.656-.384a2.968 2.968 0 0 1-1.152-1.092 3.091 3.091 0 0 1-.42-1.608c0-.6.14-1.132.42-1.596.28-.472.664-.836 1.152-1.092a3.557 3.557 0 0 1 1.656-.384c.48 0 .924.088 1.332.264.416.176.756.436 1.02.78v-.984h1.092zm-3.312 5.088c.416 0 .788-.088 1.116-.264.336-.176.596-.42.78-.732.192-.32.288-.68.288-1.08 0-.616-.204-1.112-.612-1.488-.408-.384-.932-.576-1.572-.576-.648 0-1.176.192-1.584.576-.408.376-.612.872-.612 1.488 0 .4.092.76.276 1.08.192.312.452.556.78.732a2.42 2.42 0 0 0 1.14.264zm8.91-5.148c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm7.088 0c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.853 1.853 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.075-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.507 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#6577AA" d="M45.052 99.096c-.848 0-1.612-.184-2.292-.552a4.212 4.212 0 0 1-1.608-1.548 4.266 4.266 0 0 1-.576-2.196c0-.808.192-1.54.576-2.196a4.124 4.124 0 0 1 1.608-1.536c.68-.376 1.444-.564 2.292-.564.84 0 1.6.188 2.28.564a4.04 4.04 0 0 1 1.596 1.536c.384.648.576 1.38.576 2.196 0 .816-.192 1.552-.576 2.208a4.151 4.151 0 0 1-1.596 1.536c-.68.368-1.44.552-2.28.552zm0-1.068c.616 0 1.168-.14 1.656-.42.496-.28.884-.664 1.164-1.152a3.238 3.238 0 0 0 .432-1.656c0-.608-.144-1.156-.432-1.644a3.014 3.014 0 0 0-1.164-1.164 3.267 3.267 0 0 0-1.656-.42 3.4 3.4 0 0 0-1.68.42 3.1 3.1 0 0 0-1.176 1.164 3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.68.872 1.176 1.152a3.4 3.4 0 0 0 1.68.42zm9.49-5.448c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288H51.17V92.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.48.564a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948H60.67v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.393-5.988h1.152V99h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.5 7.656c-.633 0-1.2-.14-1.705-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.091-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.288-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V99h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V99h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zM94.07 90.6V99h-.984l-5.04-6.264V99h-1.2v-8.4h.984l5.04 6.264V90.6h1.2zm4.662 1.98c.88 0 1.552.216 2.016.648.472.432.708 1.076.708 1.932V99h-1.092v-.84a1.852 1.852 0 0 1-.828.684c-.352.152-.772.228-1.26.228-.712 0-1.284-.172-1.716-.516-.424-.344-.636-.796-.636-1.356s.204-1.008.612-1.344c.408-.344 1.056-.516 1.944-.516h1.824v-.228c0-.496-.144-.876-.432-1.14-.288-.264-.712-.396-1.272-.396-.376 0-.744.064-1.104.192a2.76 2.76 0 0 0-.912.492l-.48-.864c.328-.264.72-.464 1.176-.6.456-.144.94-.216 1.452-.216zm-.264 5.604c.44 0 .82-.096 1.14-.288.32-.2.552-.48.696-.84v-.888h-1.776c-.976 0-1.464.328-1.464.984 0 .32.124.572.372.756.248.184.592.276 1.032.276zm13.076-5.604c.8 0 1.432.232 1.896.696.472.464.708 1.152.708 2.064V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-3.528c0-.616-.144-1.08-.432-1.392-.28-.312-.684-.468-1.212-.468-.584 0-1.048.184-1.392.552-.344.36-.516.88-.516 1.56V99h-1.152v-6.36h1.104v.948c.232-.328.536-.576.912-.744a2.995 2.995 0 0 1 1.284-.264c.496 0 .936.1 1.32.3.384.2.68.492.888.876.24-.368.572-.656.996-.864a3.304 3.304 0 0 1 1.452-.312zm10.507 3.276c0 .088-.008.204-.024.348h-5.16c.072.56.316 1.012.732 1.356.424.336.948.504 1.572.504.76 0 1.372-.256 1.836-.768l.636.744a2.777 2.777 0 0 1-1.08.768c-.424.176-.9.264-1.428.264-.672 0-1.268-.136-1.788-.408a3.033 3.033 0 0 1-1.212-1.164 3.357 3.357 0 0 1-.42-1.68c0-.616.136-1.172.408-1.668.28-.496.66-.88 1.14-1.152a3.244 3.244 0 0 1 1.644-.42c.608 0 1.148.14 1.62.42.48.272.852.656 1.116 1.152.272.496.408 1.064.408 1.704zm-3.144-2.304c-.552 0-1.016.168-1.392.504-.368.336-.584.776-.648 1.32h4.08c-.064-.536-.284-.972-.66-1.308-.368-.344-.828-.516-1.38-.516z"/><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h466c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="136" height="18" x="175" y="10" fill="#fff" rx="9"/><path fill="#8492BB" d="M219.331 14.6l-2.808 8.4h-1.26l-2.292-6.708L210.679 23h-1.284l-2.808-8.4h1.236l2.268 6.828 2.364-6.828h1.104l2.316 6.864 2.316-6.864h1.14zm4.744 0c1.088 0 1.944.26 2.568.78.624.52.936 1.236.936 2.148 0 .912-.312 1.628-.936 2.148-.624.52-1.48.78-2.568.78h-2.076V23h-1.2v-8.4h3.276zm-.036 4.812c.76 0 1.34-.16 1.74-.48.4-.328.6-.796.6-1.404 0-.608-.2-1.072-.6-1.392-.4-.328-.98-.492-1.74-.492h-2.04v3.768h2.04zm12.435 3.684c-.848 0-1.612-.184-2.292-.552a4.212 4.212 0 0 1-1.608-1.548 4.266 4.266 0 0 1-.576-2.196c0-.808.192-1.54.576-2.196a4.124 4.124 0 0 1 1.608-1.536c.68-.376 1.444-.564 2.292-.564.84 0 1.6.188 2.28.564a4.04 4.04 0 0 1 1.596 1.536c.384.648.576 1.38.576 2.196 0 .816-.192 1.552-.576 2.208a4.151 4.151 0 0 1-1.596 1.536c-.68.368-1.44.552-2.28.552zm0-1.068c.616 0 1.168-.14 1.656-.42.496-.28.884-.664 1.164-1.152a3.238 3.238 0 0 0 .432-1.656c0-.608-.144-1.156-.432-1.644a3.014 3.014 0 0 0-1.164-1.164 3.267 3.267 0 0 0-1.656-.42 3.4 3.4 0 0 0-1.68.42 3.1 3.1 0 0 0-1.176 1.164 3.244 3.244 0 0 0-.42 1.644c0 .608.14 1.16.42 1.656.288.488.68.872 1.176 1.152a3.4 3.4 0 0 0 1.68.42zm9.49-5.448c.616 0 1.168.136 1.656.408.488.272.868.652 1.14 1.14.28.488.42 1.052.42 1.692 0 .64-.14 1.208-.42 1.704a2.894 2.894 0 0 1-1.14 1.14 3.343 3.343 0 0 1-1.656.408c-.456 0-.876-.088-1.26-.264a2.621 2.621 0 0 1-.96-.768v3.288h-1.152V16.64h1.104v1.008c.256-.352.58-.616.972-.792a3.012 3.012 0 0 1 1.296-.276zm-.096 5.484a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.192-.344.288-.736.288-1.176 0-.44-.096-.828-.288-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.4 0-.764.096-1.092.288-.32.184-.576.444-.768.78a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.184.336.44.6.768.792.328.184.692.276 1.092.276zm8.48.564a1.79 1.79 0 0 1-.624.336 2.74 2.74 0 0 1-.768.108c-.64 0-1.136-.172-1.488-.516-.352-.344-.528-.836-.528-1.476v-3.492h-1.08v-.948h1.08v-1.392h1.152v1.392h1.824v.948h-1.824v3.444c0 .344.084.608.252.792.176.184.424.276.744.276.352 0 .652-.1.9-.3l.36.828zm1.392-5.988h1.152V23h-1.152v-6.36zm.576-1.224a.789.789 0 0 1-.564-.216.718.718 0 0 1-.216-.528c0-.208.072-.384.216-.528a.766.766 0 0 1 .564-.228c.224 0 .408.072.552.216a.662.662 0 0 1 .228.516c0 .216-.076.4-.228.552a.748.748 0 0 1-.552.216zm5.5 7.656c-.632 0-1.2-.14-1.704-.42-.504-.28-.9-.664-1.188-1.152a3.357 3.357 0 0 1-.42-1.68c0-.624.14-1.18.42-1.668.288-.496.684-.88 1.188-1.152a3.449 3.449 0 0 1 1.704-.42c.632 0 1.196.14 1.692.42.504.272.896.656 1.176 1.152.288.488.432 1.044.432 1.668 0 .624-.144 1.184-.432 1.68-.28.488-.672.872-1.176 1.152-.496.28-1.06.42-1.692.42zm0-1.008a2.15 2.15 0 0 0 1.092-.276 2.03 2.03 0 0 0 .768-.792c.184-.344.276-.736.276-1.176 0-.44-.092-.828-.276-1.164a1.93 1.93 0 0 0-.768-.792 2.15 2.15 0 0 0-1.092-.276c-.408 0-.776.092-1.104.276-.32.184-.576.448-.768.792a2.385 2.385 0 0 0-.276 1.164c0 .44.092.832.276 1.176.192.336.448.6.768.792.328.184.696.276 1.104.276zm8.289-5.484c.808 0 1.448.236 1.92.708.48.464.72 1.148.72 2.052V23h-1.152v-3.528c0-.616-.148-1.08-.444-1.392-.296-.312-.72-.468-1.272-.468-.624 0-1.116.184-1.476.552-.36.36-.54.88-.54 1.56V23h-1.152v-6.36h1.104v.96c.232-.328.544-.58.936-.756.4-.176.852-.264 1.356-.264zm6.596 6.492c-.52 0-1.02-.068-1.5-.204-.48-.144-.856-.324-1.128-.54l.48-.912c.28.2.62.36 1.02.48s.804.18 1.212.18c1.008 0 1.512-.288 1.512-.864a.56.56 0 0 0-.204-.456 1.235 1.235 0 0 0-.516-.24 9.055 9.055 0 0 0-.864-.18 8.75 8.75 0 0 1-1.26-.276 1.937 1.937 0 0 1-.828-.528c-.232-.248-.348-.596-.348-1.044 0-.576.24-1.036.72-1.38.48-.352 1.124-.528 1.932-.528.424 0 .848.052 1.272.156.424.104.772.244 1.044.42l-.492.912c-.52-.336-1.132-.504-1.836-.504-.488 0-.86.08-1.116.24-.256.16-.384.372-.384.636 0 .208.072.372.216.492.144.12.32.208.528.264.216.056.516.12.9.192.512.088.924.184 1.236.288.32.096.592.264.816.504.224.24.336.576.336 1.008 0 .576-.248 1.036-.744 1.38-.488.336-1.156.504-2.004.504z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(89 168)"/></clipPath></defs></svg>
admin/images/ctx-feed-features/pinterest-feed-thumbnail.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="519" height="412" fill="none" viewBox="0 0 519 412"><path fill="#E5E5E5" d="M0 0h519v412H0z"/><path fill="#fff" d="M-919-3047h3659v5696H-919z"/><g opacity=".8"><path fill="#F5F6F9" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v392c0 5.523-4.477 10-10 10H10c-5.523 0-10-4.477-10-10V10z"/><rect width="197" height="32" x="40" y="333" fill="#62699F" rx="5"/><text fill="#fff" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="56" y="353.3">Update and Generate Feed</tspan></text><g fill="#62699F"><rect width="6" height="1" x="143.24" y="327.24" rx=".5" transform="rotate(-45 143.243 327.243)"/><rect width="6" height="1" x="138.24" y="318" rx=".5" transform="rotate(90 138.243 318)"/><rect width="6" height="1" x="132.24" y="327.95" rx=".5" transform="rotate(-135 132.243 327.95)"/></g><g clip-path="url(#a)"><path fill="#4B2E21" d="M139.309 375.17l.885-4.55c.208-1.07 1.244-2.105 2.315-2.311l3.875-.749c1.07-.207 1.143-.762.164-1.24l-12.577-6.127c-.98-.478-1.461-.038-1.075.981l5.336 14.087c.387 1.02.868.979 1.077-.091z"/></g><g fill="#CFD1E1"><rect width="97.33" height="10" x="40" y="225" rx="5"/><rect width="113.23" height="10" x="147.27" y="225" rx="5"/><rect width="101.31" height="10" x="270.43" y="225" rx="5"/><rect width="97.33" height="10" x="381.67" y="225" rx="5"/><rect width="97.33" height="4" x="40" y="252" rx="2"/><rect width="113.23" height="4" x="147.27" y="252" rx="2"/><rect width="101.31" height="4" x="270.43" y="252" rx="2"/><rect width="97.33" height="4" x="381.67" y="252" rx="2"/><rect width="97.33" height="4" x="40" y="273" rx="2"/><rect width="113.23" height="4" x="147.27" y="273" rx="2"/><rect width="101.31" height="4" x="270.43" y="273" rx="2"/><rect width="97.33" height="4" x="381.67" y="273" rx="2"/><rect width="97.33" height="4" x="40" y="294" rx="2"/><rect width="113.23" height="4" x="147.27" y="294" rx="2"/><rect width="101.31" height="4" x="270.43" y="294" rx="2"/><rect width="97.33" height="4" x="381.67" y="294" rx="2"/></g><text fill="#6577AA" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="40" y="146.3">File Name</tspan></text><rect width="235.5" height="31.5" x="243.25" y="126.25" fill="#F0F0F6" stroke="#62699F" stroke-width=".5" rx="4.75"/><text fill="#62699F" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="261" y="146.3">Pinterest Feed</tspan></text><rect width="235.5" height="31.5" x="243.25" y="79.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 100l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><text fill="#62699F" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="259" y="99.3">Pinterest Catelog</tspan></text><text fill="#6577AA" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="40" y="99.3">Template</tspan></text><rect width="235.5" height="31.5" x="243.25" y="173.25" fill="#F3F3F8" stroke="#8187B2" stroke-width=".5" rx="4.75"/><path fill="#62699F" d="M460 194l-3-4h6l-3 4zm0-10l3 4h-6l3-4z"/><text fill="#62699F" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="259" y="193.3">XML</tspan></text><text fill="#6577AA" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="40" y="193.3">Feed Type</tspan></text><path fill="#E8E9F1" d="M0 10C0 4.477 4.477 0 10 0h499c5.523 0 10 4.477 10 10v28H0V10z"/><path stroke="#EB5757" d="M51.405 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.378-2.453-5.378-5.5 0-3.048 2.417-5.5 5.378-5.5 2.961 0 5.38 2.452 5.38 5.5z"/><path stroke="#F2994A" d="M67.254 19.57c0 3.047-2.418 5.5-5.379 5.5-2.96 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.38-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><path stroke="#219653" d="M83.102 19.57c0 3.047-2.417 5.5-5.378 5.5-2.961 0-5.379-2.453-5.379-5.5 0-3.048 2.418-5.5 5.379-5.5 2.96 0 5.378 2.452 5.378 5.5z"/><rect width="129" height="18" x="195" y="10" fill="#fff" rx="9"/><text fill="#8492BB" font-family="Montserrat" font-size="12" font-weight="500" letter-spacing="0em" white-space="pre"><tspan x="226.19" y="23.3">Make Feed</tspan></text></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z" transform="translate(131 360)"/></clipPath></defs></svg>
admin/images/feature-advanced-filter-thumbnail.svg ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="545" height="319" viewBox="0 0 545 319" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Frame 7">
3
+ <g id="advance filter" opacity="0.8">
4
+ <rect id="Rectangle 511" x="25" y="20" width="520" height="299" rx="10" fill="#F6FAFD"/>
5
+ <g id="bg" filter="url(#filter0_d)">
6
+ <path d="M5 32C5 26.4772 9.47715 22 15 22H515C520.523 22 525 26.4772 525 32V289C525 294.523 520.523 299 515 299H15C9.47716 299 5 294.523 5 289V32Z" fill="white"/>
7
+ </g>
8
+ <g id="fields">
9
+ <g id="form">
10
+ <g id="Group 2149">
11
+ <g id="input text">
12
+ <rect id="bg_2" x="325.25" y="68.25" width="73.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
13
+ <path id="Winter" d="M354.128 79.6L351.32 88H350.06L347.768 81.292L345.476 88H344.192L341.384 79.6H342.62L344.888 86.428L347.252 79.6H348.356L350.672 86.464L352.988 79.6H354.128ZM355.44 81.64H356.592V88H355.44V81.64ZM356.016 80.416C355.792 80.416 355.604 80.344 355.452 80.2C355.308 80.056 355.236 79.88 355.236 79.672C355.236 79.464 355.308 79.288 355.452 79.144C355.604 78.992 355.792 78.916 356.016 78.916C356.24 78.916 356.424 78.988 356.568 79.132C356.72 79.268 356.796 79.44 356.796 79.648C356.796 79.864 356.72 80.048 356.568 80.2C356.424 80.344 356.24 80.416 356.016 80.416ZM362.187 81.58C362.995 81.58 363.635 81.816 364.107 82.288C364.587 82.752 364.827 83.436 364.827 84.34V88H363.675V84.472C363.675 83.856 363.527 83.392 363.231 83.08C362.935 82.768 362.511 82.612 361.959 82.612C361.335 82.612 360.843 82.796 360.483 83.164C360.123 83.524 359.943 84.044 359.943 84.724V88H358.791V81.64H359.895V82.6C360.127 82.272 360.439 82.02 360.831 81.844C361.231 81.668 361.683 81.58 362.187 81.58ZM370.535 87.628C370.367 87.772 370.159 87.884 369.911 87.964C369.663 88.036 369.407 88.072 369.143 88.072C368.503 88.072 368.007 87.9 367.655 87.556C367.303 87.212 367.127 86.72 367.127 86.08V82.588H366.047V81.64H367.127V80.248H368.279V81.64H370.103V82.588H368.279V86.032C368.279 86.376 368.363 86.64 368.531 86.824C368.707 87.008 368.955 87.1 369.275 87.1C369.627 87.1 369.927 87 370.175 86.8L370.535 87.628ZM377.465 84.856C377.465 84.944 377.457 85.06 377.441 85.204H372.281C372.353 85.764 372.597 86.216 373.013 86.56C373.437 86.896 373.961 87.064 374.585 87.064C375.345 87.064 375.957 86.808 376.421 86.296L377.057 87.04C376.769 87.376 376.409 87.632 375.977 87.808C375.553 87.984 375.077 88.072 374.549 88.072C373.877 88.072 373.281 87.936 372.761 87.664C372.241 87.384 371.837 86.996 371.549 86.5C371.269 86.004 371.129 85.444 371.129 84.82C371.129 84.204 371.265 83.648 371.537 83.152C371.817 82.656 372.197 82.272 372.677 82C373.165 81.72 373.713 81.58 374.321 81.58C374.929 81.58 375.469 81.72 375.941 82C376.421 82.272 376.793 82.656 377.057 83.152C377.329 83.648 377.465 84.216 377.465 84.856ZM374.321 82.552C373.769 82.552 373.305 82.72 372.929 83.056C372.561 83.392 372.345 83.832 372.281 84.376H376.361C376.297 83.84 376.077 83.404 375.701 83.068C375.333 82.724 374.873 82.552 374.321 82.552ZM380.169 82.708C380.369 82.34 380.665 82.06 381.057 81.868C381.449 81.676 381.925 81.58 382.485 81.58V82.696C382.421 82.688 382.333 82.684 382.221 82.684C381.597 82.684 381.105 82.872 380.745 83.248C380.393 83.616 380.217 84.144 380.217 84.832V88H379.065V81.64H380.169V82.708Z" fill="#465361"/>
14
+ </g>
15
+ <g id="input text_2">
16
+ <rect id="bg_3" x="195.25" y="68.25" width="119.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
17
+ <g id="select control">
18
+ <path id="Polygon 1" d="M296 89L293 85L299 85L296 89Z" fill="#465361"/>
19
+ <path id="Polygon 2" d="M296 79L299 83H293L296 79Z" fill="#465361"/>
20
+ </g>
21
+ <path id="Contains" d="M215.016 88.096C214.176 88.096 213.416 87.912 212.736 87.544C212.064 87.168 211.536 86.656 211.152 86.008C210.768 85.352 210.576 84.616 210.576 83.8C210.576 82.984 210.768 82.252 211.152 81.604C211.536 80.948 212.068 80.436 212.748 80.068C213.428 79.692 214.188 79.504 215.028 79.504C215.684 79.504 216.284 79.616 216.828 79.84C217.372 80.056 217.836 80.38 218.22 80.812L217.44 81.568C216.808 80.904 216.02 80.572 215.076 80.572C214.452 80.572 213.888 80.712 213.384 80.992C212.88 81.272 212.484 81.66 212.196 82.156C211.916 82.644 211.776 83.192 211.776 83.8C211.776 84.408 211.916 84.96 212.196 85.456C212.484 85.944 212.88 86.328 213.384 86.608C213.888 86.888 214.452 87.028 215.076 87.028C216.012 87.028 216.8 86.692 217.44 86.02L218.22 86.776C217.836 87.208 217.368 87.536 216.816 87.76C216.272 87.984 215.672 88.096 215.016 88.096ZM222.218 88.072C221.586 88.072 221.018 87.932 220.514 87.652C220.01 87.372 219.614 86.988 219.326 86.5C219.046 86.004 218.906 85.444 218.906 84.82C218.906 84.196 219.046 83.64 219.326 83.152C219.614 82.656 220.01 82.272 220.514 82C221.018 81.72 221.586 81.58 222.218 81.58C222.85 81.58 223.414 81.72 223.91 82C224.414 82.272 224.806 82.656 225.086 83.152C225.374 83.64 225.518 84.196 225.518 84.82C225.518 85.444 225.374 86.004 225.086 86.5C224.806 86.988 224.414 87.372 223.91 87.652C223.414 87.932 222.85 88.072 222.218 88.072ZM222.218 87.064C222.626 87.064 222.99 86.972 223.31 86.788C223.638 86.596 223.894 86.332 224.078 85.996C224.262 85.652 224.354 85.26 224.354 84.82C224.354 84.38 224.262 83.992 224.078 83.656C223.894 83.312 223.638 83.048 223.31 82.864C222.99 82.68 222.626 82.588 222.218 82.588C221.81 82.588 221.442 82.68 221.114 82.864C220.794 83.048 220.538 83.312 220.346 83.656C220.162 83.992 220.07 84.38 220.07 84.82C220.07 85.26 220.162 85.652 220.346 85.996C220.538 86.332 220.794 86.596 221.114 86.788C221.442 86.972 221.81 87.064 222.218 87.064ZM230.508 81.58C231.316 81.58 231.956 81.816 232.428 82.288C232.908 82.752 233.148 83.436 233.148 84.34V88H231.996V84.472C231.996 83.856 231.848 83.392 231.552 83.08C231.256 82.768 230.832 82.612 230.28 82.612C229.656 82.612 229.164 82.796 228.804 83.164C228.444 83.524 228.264 84.044 228.264 84.724V88H227.112V81.64H228.216V82.6C228.448 82.272 228.76 82.02 229.152 81.844C229.552 81.668 230.004 81.58 230.508 81.58ZM238.856 87.628C238.688 87.772 238.48 87.884 238.232 87.964C237.984 88.036 237.728 88.072 237.464 88.072C236.824 88.072 236.328 87.9 235.976 87.556C235.624 87.212 235.448 86.72 235.448 86.08V82.588H234.368V81.64H235.448V80.248H236.6V81.64H238.424V82.588H236.6V86.032C236.6 86.376 236.684 86.64 236.852 86.824C237.028 87.008 237.276 87.1 237.596 87.1C237.948 87.1 238.248 87 238.496 86.8L238.856 87.628ZM242.564 81.58C243.444 81.58 244.116 81.796 244.58 82.228C245.052 82.66 245.288 83.304 245.288 84.16V88H244.196V87.16C244.004 87.456 243.728 87.684 243.368 87.844C243.016 87.996 242.596 88.072 242.108 88.072C241.396 88.072 240.824 87.9 240.392 87.556C239.968 87.212 239.756 86.76 239.756 86.2C239.756 85.64 239.96 85.192 240.368 84.856C240.776 84.512 241.424 84.34 242.312 84.34H244.136V84.112C244.136 83.616 243.992 83.236 243.704 82.972C243.416 82.708 242.992 82.576 242.432 82.576C242.056 82.576 241.688 82.64 241.328 82.768C240.968 82.888 240.664 83.052 240.416 83.26L239.936 82.396C240.264 82.132 240.656 81.932 241.112 81.796C241.568 81.652 242.052 81.58 242.564 81.58ZM242.3 87.184C242.74 87.184 243.12 87.088 243.44 86.896C243.76 86.696 243.992 86.416 244.136 86.056V85.168H242.36C241.384 85.168 240.896 85.496 240.896 86.152C240.896 86.472 241.02 86.724 241.268 86.908C241.516 87.092 241.86 87.184 242.3 87.184ZM247.42 81.64H248.572V88H247.42V81.64ZM247.996 80.416C247.772 80.416 247.584 80.344 247.432 80.2C247.288 80.056 247.216 79.88 247.216 79.672C247.216 79.464 247.288 79.288 247.432 79.144C247.584 78.992 247.772 78.916 247.996 78.916C248.22 78.916 248.404 78.988 248.548 79.132C248.7 79.268 248.776 79.44 248.776 79.648C248.776 79.864 248.7 80.048 248.548 80.2C248.404 80.344 248.22 80.416 247.996 80.416ZM254.168 81.58C254.976 81.58 255.616 81.816 256.088 82.288C256.568 82.752 256.808 83.436 256.808 84.34V88H255.656V84.472C255.656 83.856 255.508 83.392 255.212 83.08C254.916 82.768 254.492 82.612 253.94 82.612C253.316 82.612 252.824 82.796 252.464 83.164C252.104 83.524 251.924 84.044 251.924 84.724V88H250.772V81.64H251.876V82.6C252.108 82.272 252.42 82.02 252.812 81.844C253.212 81.668 253.664 81.58 254.168 81.58ZM260.764 88.072C260.244 88.072 259.744 88.004 259.264 87.868C258.784 87.724 258.408 87.544 258.136 87.328L258.616 86.416C258.896 86.616 259.236 86.776 259.636 86.896C260.036 87.016 260.44 87.076 260.848 87.076C261.856 87.076 262.36 86.788 262.36 86.212C262.36 86.02 262.292 85.868 262.156 85.756C262.02 85.644 261.848 85.564 261.64 85.516C261.44 85.46 261.152 85.4 260.776 85.336C260.264 85.256 259.844 85.164 259.516 85.06C259.196 84.956 258.92 84.78 258.688 84.532C258.456 84.284 258.34 83.936 258.34 83.488C258.34 82.912 258.58 82.452 259.06 82.108C259.54 81.756 260.184 81.58 260.992 81.58C261.416 81.58 261.84 81.632 262.264 81.736C262.688 81.84 263.036 81.98 263.308 82.156L262.816 83.068C262.296 82.732 261.684 82.564 260.98 82.564C260.492 82.564 260.12 82.644 259.864 82.804C259.608 82.964 259.48 83.176 259.48 83.44C259.48 83.648 259.552 83.812 259.696 83.932C259.84 84.052 260.016 84.14 260.224 84.196C260.44 84.252 260.74 84.316 261.124 84.388C261.636 84.476 262.048 84.572 262.36 84.676C262.68 84.772 262.952 84.94 263.176 85.18C263.4 85.42 263.512 85.756 263.512 86.188C263.512 86.764 263.264 87.224 262.768 87.568C262.28 87.904 261.612 88.072 260.764 88.072Z" fill="#465361"/>
22
+ </g>
23
+ <g id="input text_3">
24
+ <rect id="bg_4" x="409.25" y="68.25" width="59.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
25
+ <g id="select control_2">
26
+ <path id="Polygon 1_2" d="M455 89L452 85L458 85L455 89Z" fill="#465361"/>
27
+ <path id="Polygon 2_2" d="M455 79L458 83H452L455 79Z" fill="#465361"/>
28
+ </g>
29
+ <path id="OR" d="M424.052 88.096C423.204 88.096 422.44 87.912 421.76 87.544C421.08 87.168 420.544 86.652 420.152 85.996C419.768 85.34 419.576 84.608 419.576 83.8C419.576 82.992 419.768 82.26 420.152 81.604C420.544 80.948 421.08 80.436 421.76 80.068C422.44 79.692 423.204 79.504 424.052 79.504C424.892 79.504 425.652 79.692 426.332 80.068C427.012 80.436 427.544 80.948 427.928 81.604C428.312 82.252 428.504 82.984 428.504 83.8C428.504 84.616 428.312 85.352 427.928 86.008C427.544 86.656 427.012 87.168 426.332 87.544C425.652 87.912 424.892 88.096 424.052 88.096ZM424.052 87.028C424.668 87.028 425.22 86.888 425.708 86.608C426.204 86.328 426.592 85.944 426.872 85.456C427.16 84.96 427.304 84.408 427.304 83.8C427.304 83.192 427.16 82.644 426.872 82.156C426.592 81.66 426.204 81.272 425.708 80.992C425.22 80.712 424.668 80.572 424.052 80.572C423.436 80.572 422.876 80.712 422.372 80.992C421.876 81.272 421.484 81.66 421.196 82.156C420.916 82.644 420.776 83.192 420.776 83.8C420.776 84.408 420.916 84.96 421.196 85.456C421.484 85.944 421.876 86.328 422.372 86.608C422.876 86.888 423.436 87.028 424.052 87.028ZM435.954 88L434.142 85.42C433.918 85.436 433.742 85.444 433.614 85.444H431.538V88H430.338V79.6H433.614C434.702 79.6 435.558 79.86 436.182 80.38C436.806 80.9 437.118 81.616 437.118 82.528C437.118 83.176 436.958 83.728 436.638 84.184C436.318 84.64 435.862 84.972 435.27 85.18L437.262 88H435.954ZM433.578 84.424C434.338 84.424 434.918 84.26 435.318 83.932C435.718 83.604 435.918 83.136 435.918 82.528C435.918 81.92 435.718 81.456 435.318 81.136C434.918 80.808 434.338 80.644 433.578 80.644H431.538V84.424H433.578Z" fill="#465361"/>
30
+ </g>
31
+ <g id="input text_4">
32
+ <rect id="bg_5" x="35.25" y="68.2502" width="149.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
33
+ <g id="select control_3">
34
+ <path id="Polygon 1_3" d="M166 89.0002L163 85.0002L169 85.0002L166 89.0002Z" fill="#465361"/>
35
+ <path id="Polygon 2_3" d="M166 79.0002L169 83.0002H163L166 79.0002Z" fill="#465361"/>
36
+ </g>
37
+ <path id="Product Category" d="M55.536 79.6002C56.624 79.6002 57.48 79.8602 58.104 80.3802C58.728 80.9002 59.04 81.6162 59.04 82.5282C59.04 83.4402 58.728 84.1562 58.104 84.6762C57.48 85.1962 56.624 85.4562 55.536 85.4562H53.46V88.0002H52.26V79.6002H55.536ZM55.5 84.4122C56.26 84.4122 56.84 84.2522 57.24 83.9322C57.64 83.6042 57.84 83.1362 57.84 82.5282C57.84 81.9202 57.64 81.4562 57.24 81.1362C56.84 80.8082 56.26 80.6442 55.5 80.6442H53.46V84.4122H55.5ZM61.6335 82.7082C61.8335 82.3402 62.1295 82.0602 62.5215 81.8682C62.9135 81.6762 63.3895 81.5802 63.9495 81.5802V82.6962C63.8855 82.6882 63.7975 82.6842 63.6855 82.6842C63.0615 82.6842 62.5695 82.8722 62.2095 83.2482C61.8575 83.6162 61.6815 84.1442 61.6815 84.8322V88.0002H60.5295V81.6402H61.6335V82.7082ZM68.0348 88.0722C67.4028 88.0722 66.8348 87.9322 66.3308 87.6522C65.8268 87.3722 65.4308 86.9882 65.1428 86.5002C64.8628 86.0042 64.7228 85.4442 64.7228 84.8202C64.7228 84.1962 64.8628 83.6402 65.1428 83.1522C65.4308 82.6562 65.8268 82.2722 66.3308 82.0002C66.8348 81.7202 67.4028 81.5802 68.0348 81.5802C68.6668 81.5802 69.2308 81.7202 69.7268 82.0002C70.2308 82.2722 70.6228 82.6562 70.9028 83.1522C71.1908 83.6402 71.3348 84.1962 71.3348 84.8202C71.3348 85.4442 71.1908 86.0042 70.9028 86.5002C70.6228 86.9882 70.2308 87.3722 69.7268 87.6522C69.2308 87.9322 68.6668 88.0722 68.0348 88.0722ZM68.0348 87.0642C68.4428 87.0642 68.8068 86.9722 69.1268 86.7882C69.4548 86.5962 69.7108 86.3322 69.8948 85.9962C70.0788 85.6522 70.1708 85.2602 70.1708 84.8202C70.1708 84.3802 70.0788 83.9922 69.8948 83.6562C69.7108 83.3122 69.4548 83.0482 69.1268 82.8642C68.8068 82.6802 68.4428 82.5882 68.0348 82.5882C67.6268 82.5882 67.2588 82.6802 66.9308 82.8642C66.6108 83.0482 66.3548 83.3122 66.1628 83.6562C65.9788 83.9922 65.8868 84.3802 65.8868 84.8202C65.8868 85.2602 65.9788 85.6522 66.1628 85.9962C66.3548 86.3322 66.6108 86.5962 66.9308 86.7882C67.2588 86.9722 67.6268 87.0642 68.0348 87.0642ZM78.9279 79.0962V88.0002H77.8239V86.9922C77.5679 87.3442 77.2439 87.6122 76.8519 87.7962C76.4599 87.9802 76.0279 88.0722 75.5559 88.0722C74.9399 88.0722 74.3879 87.9362 73.8999 87.6642C73.4119 87.3922 73.0279 87.0122 72.7479 86.5242C72.4759 86.0282 72.3399 85.4602 72.3399 84.8202C72.3399 84.1802 72.4759 83.6162 72.7479 83.1282C73.0279 82.6402 73.4119 82.2602 73.8999 81.9882C74.3879 81.7162 74.9399 81.5802 75.5559 81.5802C76.0119 81.5802 76.4319 81.6682 76.8159 81.8442C77.1999 82.0122 77.5199 82.2642 77.7759 82.6002V79.0962H78.9279ZM75.6519 87.0642C76.0519 87.0642 76.4159 86.9722 76.7439 86.7882C77.0719 86.5962 77.3279 86.3322 77.5119 85.9962C77.6959 85.6522 77.7879 85.2602 77.7879 84.8202C77.7879 84.3802 77.6959 83.9922 77.5119 83.6562C77.3279 83.3122 77.0719 83.0482 76.7439 82.8642C76.4159 82.6802 76.0519 82.5882 75.6519 82.5882C75.2439 82.5882 74.8759 82.6802 74.5479 82.8642C74.2279 83.0482 73.9719 83.3122 73.7799 83.6562C73.5959 83.9922 73.5039 84.3802 73.5039 84.8202C73.5039 85.2602 73.5959 85.6522 73.7799 85.9962C73.9719 86.3322 74.2279 86.5962 74.5479 86.7882C74.8759 86.9722 75.2439 87.0642 75.6519 87.0642ZM87.0356 81.6402V88.0002H85.9436V87.0402C85.7116 87.3682 85.4036 87.6242 85.0196 87.8082C84.6436 87.9842 84.2316 88.0722 83.7836 88.0722C82.9356 88.0722 82.2676 87.8402 81.7796 87.3762C81.2916 86.9042 81.0476 86.2122 81.0476 85.3002V81.6402H82.1996V85.1682C82.1996 85.7842 82.3476 86.2522 82.6436 86.5722C82.9396 86.8842 83.3636 87.0402 83.9156 87.0402C84.5236 87.0402 85.0036 86.8562 85.3556 86.4882C85.7076 86.1202 85.8836 85.6002 85.8836 84.9282V81.6402H87.0356ZM92.0007 88.0722C91.3527 88.0722 90.7727 87.9322 90.2607 87.6522C89.7567 87.3722 89.3607 86.9882 89.0727 86.5002C88.7847 86.0042 88.6407 85.4442 88.6407 84.8202C88.6407 84.1962 88.7847 83.6402 89.0727 83.1522C89.3607 82.6562 89.7567 82.2722 90.2607 82.0002C90.7727 81.7202 91.3527 81.5802 92.0007 81.5802C92.5767 81.5802 93.0887 81.6962 93.5367 81.9282C93.9927 82.1602 94.3447 82.4962 94.5927 82.9362L93.7167 83.5002C93.5167 83.1962 93.2687 82.9682 92.9727 82.8162C92.6767 82.6642 92.3487 82.5882 91.9887 82.5882C91.5727 82.5882 91.1967 82.6802 90.8607 82.8642C90.5327 83.0482 90.2727 83.3122 90.0807 83.6562C89.8967 83.9922 89.8047 84.3802 89.8047 84.8202C89.8047 85.2682 89.8967 85.6642 90.0807 86.0082C90.2727 86.3442 90.5327 86.6042 90.8607 86.7882C91.1967 86.9722 91.5727 87.0642 91.9887 87.0642C92.3487 87.0642 92.6767 86.9882 92.9727 86.8362C93.2687 86.6842 93.5167 86.4562 93.7167 86.1522L94.5927 86.7042C94.3447 87.1442 93.9927 87.4842 93.5367 87.7242C93.0887 87.9562 92.5767 88.0722 92.0007 88.0722ZM99.7422 87.6282C99.5742 87.7722 99.3662 87.8842 99.1182 87.9642C98.8702 88.0362 98.6142 88.0722 98.3502 88.0722C97.7102 88.0722 97.2142 87.9002 96.8622 87.5562C96.5102 87.2122 96.3342 86.7202 96.3342 86.0802V82.5882H95.2542V81.6402H96.3342V80.2482H97.4862V81.6402H99.3102V82.5882H97.4862V86.0322C97.4862 86.3762 97.5702 86.6402 97.7382 86.8242C97.9142 87.0082 98.1622 87.1002 98.4822 87.1002C98.8342 87.1002 99.1342 87.0002 99.3822 86.8002L99.7422 87.6282ZM108.282 88.0962C107.442 88.0962 106.682 87.9122 106.002 87.5442C105.33 87.1682 104.802 86.6562 104.418 86.0082C104.034 85.3522 103.842 84.6162 103.842 83.8002C103.842 82.9842 104.034 82.2522 104.418 81.6042C104.802 80.9482 105.334 80.4362 106.014 80.0682C106.694 79.6922 107.454 79.5042 108.294 79.5042C108.95 79.5042 109.55 79.6162 110.094 79.8402C110.638 80.0562 111.102 80.3802 111.486 80.8122L110.706 81.5682C110.074 80.9042 109.286 80.5722 108.342 80.5722C107.718 80.5722 107.154 80.7122 106.65 80.9922C106.146 81.2722 105.75 81.6602 105.462 82.1562C105.182 82.6442 105.042 83.1922 105.042 83.8002C105.042 84.4082 105.182 84.9602 105.462 85.4562C105.75 85.9442 106.146 86.3282 106.65 86.6082C107.154 86.8882 107.718 87.0282 108.342 87.0282C109.278 87.0282 110.066 86.6922 110.706 86.0202L111.486 86.7762C111.102 87.2082 110.634 87.5362 110.082 87.7602C109.538 87.9842 108.938 88.0962 108.282 88.0962ZM115.263 81.5802C116.143 81.5802 116.815 81.7962 117.279 82.2282C117.751 82.6602 117.987 83.3042 117.987 84.1602V88.0002H116.895V87.1602C116.703 87.4562 116.427 87.6842 116.067 87.8442C115.715 87.9962 115.295 88.0722 114.807 88.0722C114.095 88.0722 113.523 87.9002 113.091 87.5562C112.667 87.2122 112.455 86.7602 112.455 86.2002C112.455 85.6402 112.659 85.1922 113.067 84.8562C113.475 84.5122 114.123 84.3402 115.011 84.3402H116.835V84.1122C116.835 83.6162 116.691 83.2362 116.403 82.9722C116.115 82.7082 115.691 82.5762 115.131 82.5762C114.755 82.5762 114.387 82.6402 114.027 82.7682C113.667 82.8882 113.363 83.0522 113.115 83.2602L112.635 82.3962C112.963 82.1322 113.355 81.9322 113.811 81.7962C114.267 81.6522 114.751 81.5802 115.263 81.5802ZM114.999 87.1842C115.439 87.1842 115.819 87.0882 116.139 86.8962C116.459 86.6962 116.691 86.4162 116.835 86.0562V85.1682H115.059C114.083 85.1682 113.595 85.4962 113.595 86.1522C113.595 86.4722 113.719 86.7242 113.967 86.9082C114.215 87.0922 114.559 87.1842 114.999 87.1842ZM123.695 87.6282C123.527 87.7722 123.319 87.8842 123.071 87.9642C122.823 88.0362 122.567 88.0722 122.303 88.0722C121.663 88.0722 121.167 87.9002 120.815 87.5562C120.463 87.2122 120.287 86.7202 120.287 86.0802V82.5882H119.207V81.6402H120.287V80.2482H121.439V81.6402H123.263V82.5882H121.439V86.0322C121.439 86.3762 121.523 86.6402 121.691 86.8242C121.867 87.0082 122.115 87.1002 122.435 87.1002C122.787 87.1002 123.087 87.0002 123.335 86.8002L123.695 87.6282ZM130.625 84.8562C130.625 84.9442 130.617 85.0602 130.601 85.2042H125.441C125.513 85.7642 125.757 86.2162 126.173 86.5602C126.597 86.8962 127.121 87.0642 127.745 87.0642C128.505 87.0642 129.117 86.8082 129.581 86.2962L130.217 87.0402C129.929 87.3762 129.569 87.6322 129.137 87.8082C128.713 87.9842 128.237 88.0722 127.709 88.0722C127.037 88.0722 126.441 87.9362 125.921 87.6642C125.401 87.3842 124.997 86.9962 124.709 86.5002C124.429 86.0042 124.289 85.4442 124.289 84.8202C124.289 84.2042 124.425 83.6482 124.697 83.1522C124.977 82.6562 125.357 82.2722 125.837 82.0002C126.325 81.7202 126.873 81.5802 127.481 81.5802C128.089 81.5802 128.629 81.7202 129.101 82.0002C129.581 82.2722 129.953 82.6562 130.217 83.1522C130.489 83.6482 130.625 84.2162 130.625 84.8562ZM127.481 82.5522C126.929 82.5522 126.465 82.7202 126.089 83.0562C125.721 83.3922 125.505 83.8322 125.441 84.3762H129.521C129.457 83.8402 129.237 83.4042 128.861 83.0682C128.493 82.7242 128.033 82.5522 127.481 82.5522ZM138.309 81.6402V87.1362C138.309 88.2482 138.033 89.0682 137.481 89.5962C136.929 90.1322 136.105 90.4002 135.009 90.4002C134.409 90.4002 133.837 90.3162 133.293 90.1482C132.749 89.9882 132.309 89.7562 131.973 89.4522L132.525 88.5642C132.821 88.8202 133.185 89.0202 133.617 89.1642C134.057 89.3162 134.509 89.3922 134.973 89.3922C135.717 89.3922 136.265 89.2162 136.617 88.8642C136.977 88.5122 137.157 87.9762 137.157 87.2562V86.7522C136.885 87.0802 136.549 87.3282 136.149 87.4962C135.757 87.6562 135.329 87.7362 134.865 87.7362C134.257 87.7362 133.705 87.6082 133.209 87.3522C132.721 87.0882 132.337 86.7242 132.057 86.2602C131.777 85.7882 131.637 85.2522 131.637 84.6522C131.637 84.0522 131.777 83.5202 132.057 83.0562C132.337 82.5842 132.721 82.2202 133.209 81.9642C133.705 81.7082 134.257 81.5802 134.865 81.5802C135.345 81.5802 135.789 81.6682 136.197 81.8442C136.613 82.0202 136.953 82.2802 137.217 82.6242V81.6402H138.309ZM134.997 86.7282C135.413 86.7282 135.785 86.6402 136.113 86.4642C136.449 86.2882 136.709 86.0442 136.893 85.7322C137.085 85.4122 137.181 85.0522 137.181 84.6522C137.181 84.0362 136.977 83.5402 136.569 83.1642C136.161 82.7802 135.637 82.5882 134.997 82.5882C134.349 82.5882 133.821 82.7802 133.413 83.1642C133.005 83.5402 132.801 84.0362 132.801 84.6522C132.801 85.0522 132.893 85.4122 133.077 85.7322C133.269 86.0442 133.529 86.2882 133.857 86.4642C134.193 86.6402 134.573 86.7282 134.997 86.7282ZM143.234 88.0722C142.602 88.0722 142.034 87.9322 141.53 87.6522C141.026 87.3722 140.63 86.9882 140.342 86.5002C140.062 86.0042 139.922 85.4442 139.922 84.8202C139.922 84.1962 140.062 83.6402 140.342 83.1522C140.63 82.6562 141.026 82.2722 141.53 82.0002C142.034 81.7202 142.602 81.5802 143.234 81.5802C143.866 81.5802 144.43 81.7202 144.926 82.0002C145.43 82.2722 145.822 82.6562 146.102 83.1522C146.39 83.6402 146.534 84.1962 146.534 84.8202C146.534 85.4442 146.39 86.0042 146.102 86.5002C145.822 86.9882 145.43 87.3722 144.926 87.6522C144.43 87.9322 143.866 88.0722 143.234 88.0722ZM143.234 87.0642C143.642 87.0642 144.006 86.9722 144.326 86.7882C144.654 86.5962 144.91 86.3322 145.094 85.9962C145.278 85.6522 145.37 85.2602 145.37 84.8202C145.37 84.3802 145.278 83.9922 145.094 83.6562C144.91 83.3122 144.654 83.0482 144.326 82.8642C144.006 82.6802 143.642 82.5882 143.234 82.5882C142.826 82.5882 142.458 82.6802 142.13 82.8642C141.81 83.0482 141.554 83.3122 141.362 83.6562C141.178 83.9922 141.086 84.3802 141.086 84.8202C141.086 85.2602 141.178 85.6522 141.362 85.9962C141.554 86.3322 141.81 86.5962 142.13 86.7882C142.458 86.9722 142.826 87.0642 143.234 87.0642ZM149.231 82.7082C149.431 82.3402 149.727 82.0602 150.119 81.8682C150.511 81.6762 150.987 81.5802 151.547 81.5802V82.6962C151.483 82.6882 151.395 82.6842 151.283 82.6842C150.659 82.6842 150.167 82.8722 149.807 83.2482C149.455 83.6162 149.279 84.1442 149.279 84.8322V88.0002H148.127V81.6402H149.231V82.7082ZM158.853 81.6402L155.769 88.6362C155.497 89.2842 155.177 89.7402 154.809 90.0042C154.449 90.2682 154.013 90.4002 153.501 90.4002C153.189 90.4002 152.885 90.3482 152.589 90.2442C152.301 90.1482 152.061 90.0042 151.869 89.8122L152.361 88.9482C152.689 89.2602 153.069 89.4162 153.501 89.4162C153.781 89.4162 154.013 89.3402 154.197 89.1882C154.389 89.0442 154.561 88.7922 154.713 88.4322L154.917 87.9882L152.109 81.6402H153.309L155.529 86.7282L157.725 81.6402H158.853Z" fill="#465361"/>
38
+ </g>
39
+ </g>
40
+ <g id="Group 2154">
41
+ <circle id="Ellipse 83" cx="485.312" cy="83.3137" r="7.75" transform="rotate(45 485.312 83.3137)" fill="white" stroke="#465361" stroke-width="0.5"/>
42
+ <line id="Line 107" x1="482.661" y1="80.3085" x2="488.318" y2="85.9654" stroke="#465361" stroke-width="0.5"/>
43
+ <line id="Line 108" x1="488.317" y1="80.6621" x2="482.661" y2="86.3189" stroke="#465361" stroke-width="0.5"/>
44
+ </g>
45
+ </g>
46
+ <g id="form_2">
47
+ <g id="Group 2149_2">
48
+ <g id="input text_5">
49
+ <rect id="bg_6" x="326.25" y="115.25" width="73.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
50
+ <path id="Cold" d="M347.016 135.096C346.176 135.096 345.416 134.912 344.736 134.544C344.064 134.168 343.536 133.656 343.152 133.008C342.768 132.352 342.576 131.616 342.576 130.8C342.576 129.984 342.768 129.252 343.152 128.604C343.536 127.948 344.068 127.436 344.748 127.068C345.428 126.692 346.188 126.504 347.028 126.504C347.684 126.504 348.284 126.616 348.828 126.84C349.372 127.056 349.836 127.38 350.22 127.812L349.44 128.568C348.808 127.904 348.02 127.572 347.076 127.572C346.452 127.572 345.888 127.712 345.384 127.992C344.88 128.272 344.484 128.66 344.196 129.156C343.916 129.644 343.776 130.192 343.776 130.8C343.776 131.408 343.916 131.96 344.196 132.456C344.484 132.944 344.88 133.328 345.384 133.608C345.888 133.888 346.452 134.028 347.076 134.028C348.012 134.028 348.8 133.692 349.44 133.02L350.22 133.776C349.836 134.208 349.368 134.536 348.816 134.76C348.272 134.984 347.672 135.096 347.016 135.096ZM354.218 135.072C353.586 135.072 353.018 134.932 352.514 134.652C352.01 134.372 351.614 133.988 351.326 133.5C351.046 133.004 350.906 132.444 350.906 131.82C350.906 131.196 351.046 130.64 351.326 130.152C351.614 129.656 352.01 129.272 352.514 129C353.018 128.72 353.586 128.58 354.218 128.58C354.85 128.58 355.414 128.72 355.91 129C356.414 129.272 356.806 129.656 357.086 130.152C357.374 130.64 357.518 131.196 357.518 131.82C357.518 132.444 357.374 133.004 357.086 133.5C356.806 133.988 356.414 134.372 355.91 134.652C355.414 134.932 354.85 135.072 354.218 135.072ZM354.218 134.064C354.626 134.064 354.99 133.972 355.31 133.788C355.638 133.596 355.894 133.332 356.078 132.996C356.262 132.652 356.354 132.26 356.354 131.82C356.354 131.38 356.262 130.992 356.078 130.656C355.894 130.312 355.638 130.048 355.31 129.864C354.99 129.68 354.626 129.588 354.218 129.588C353.81 129.588 353.442 129.68 353.114 129.864C352.794 130.048 352.538 130.312 352.346 130.656C352.162 130.992 352.07 131.38 352.07 131.82C352.07 132.26 352.162 132.652 352.346 132.996C352.538 133.332 352.794 133.596 353.114 133.788C353.442 133.972 353.81 134.064 354.218 134.064ZM359.112 126.096H360.264V135H359.112V126.096ZM368.463 126.096V135H367.359V133.992C367.103 134.344 366.779 134.612 366.387 134.796C365.995 134.98 365.563 135.072 365.091 135.072C364.475 135.072 363.923 134.936 363.435 134.664C362.947 134.392 362.563 134.012 362.283 133.524C362.011 133.028 361.875 132.46 361.875 131.82C361.875 131.18 362.011 130.616 362.283 130.128C362.563 129.64 362.947 129.26 363.435 128.988C363.923 128.716 364.475 128.58 365.091 128.58C365.547 128.58 365.967 128.668 366.351 128.844C366.735 129.012 367.055 129.264 367.311 129.6V126.096H368.463ZM365.187 134.064C365.587 134.064 365.951 133.972 366.279 133.788C366.607 133.596 366.863 133.332 367.047 132.996C367.231 132.652 367.323 132.26 367.323 131.82C367.323 131.38 367.231 130.992 367.047 130.656C366.863 130.312 366.607 130.048 366.279 129.864C365.951 129.68 365.587 129.588 365.187 129.588C364.779 129.588 364.411 129.68 364.083 129.864C363.763 130.048 363.507 130.312 363.315 130.656C363.131 130.992 363.039 131.38 363.039 131.82C363.039 132.26 363.131 132.652 363.315 132.996C363.507 133.332 363.763 133.596 364.083 133.788C364.411 133.972 364.779 134.064 365.187 134.064Z" fill="#465361"/>
51
+ </g>
52
+ <g id="input text_6">
53
+ <rect id="bg_7" x="196.25" y="115.25" width="119.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
54
+ <g id="select control_4">
55
+ <path id="Polygon 1_4" d="M297 136L294 132L300 132L297 136Z" fill="#465361"/>
56
+ <path id="Polygon 2_4" d="M297 126L300 130H294L297 126Z" fill="#465361"/>
57
+ </g>
58
+ <path id="Contains_2" d="M216.016 135.096C215.176 135.096 214.416 134.912 213.736 134.544C213.064 134.168 212.536 133.656 212.152 133.008C211.768 132.352 211.576 131.616 211.576 130.8C211.576 129.984 211.768 129.252 212.152 128.604C212.536 127.948 213.068 127.436 213.748 127.068C214.428 126.692 215.188 126.504 216.028 126.504C216.684 126.504 217.284 126.616 217.828 126.84C218.372 127.056 218.836 127.38 219.22 127.812L218.44 128.568C217.808 127.904 217.02 127.572 216.076 127.572C215.452 127.572 214.888 127.712 214.384 127.992C213.88 128.272 213.484 128.66 213.196 129.156C212.916 129.644 212.776 130.192 212.776 130.8C212.776 131.408 212.916 131.96 213.196 132.456C213.484 132.944 213.88 133.328 214.384 133.608C214.888 133.888 215.452 134.028 216.076 134.028C217.012 134.028 217.8 133.692 218.44 133.02L219.22 133.776C218.836 134.208 218.368 134.536 217.816 134.76C217.272 134.984 216.672 135.096 216.016 135.096ZM223.218 135.072C222.586 135.072 222.018 134.932 221.514 134.652C221.01 134.372 220.614 133.988 220.326 133.5C220.046 133.004 219.906 132.444 219.906 131.82C219.906 131.196 220.046 130.64 220.326 130.152C220.614 129.656 221.01 129.272 221.514 129C222.018 128.72 222.586 128.58 223.218 128.58C223.85 128.58 224.414 128.72 224.91 129C225.414 129.272 225.806 129.656 226.086 130.152C226.374 130.64 226.518 131.196 226.518 131.82C226.518 132.444 226.374 133.004 226.086 133.5C225.806 133.988 225.414 134.372 224.91 134.652C224.414 134.932 223.85 135.072 223.218 135.072ZM223.218 134.064C223.626 134.064 223.99 133.972 224.31 133.788C224.638 133.596 224.894 133.332 225.078 132.996C225.262 132.652 225.354 132.26 225.354 131.82C225.354 131.38 225.262 130.992 225.078 130.656C224.894 130.312 224.638 130.048 224.31 129.864C223.99 129.68 223.626 129.588 223.218 129.588C222.81 129.588 222.442 129.68 222.114 129.864C221.794 130.048 221.538 130.312 221.346 130.656C221.162 130.992 221.07 131.38 221.07 131.82C221.07 132.26 221.162 132.652 221.346 132.996C221.538 133.332 221.794 133.596 222.114 133.788C222.442 133.972 222.81 134.064 223.218 134.064ZM231.508 128.58C232.316 128.58 232.956 128.816 233.428 129.288C233.908 129.752 234.148 130.436 234.148 131.34V135H232.996V131.472C232.996 130.856 232.848 130.392 232.552 130.08C232.256 129.768 231.832 129.612 231.28 129.612C230.656 129.612 230.164 129.796 229.804 130.164C229.444 130.524 229.264 131.044 229.264 131.724V135H228.112V128.64H229.216V129.6C229.448 129.272 229.76 129.02 230.152 128.844C230.552 128.668 231.004 128.58 231.508 128.58ZM239.856 134.628C239.688 134.772 239.48 134.884 239.232 134.964C238.984 135.036 238.728 135.072 238.464 135.072C237.824 135.072 237.328 134.9 236.976 134.556C236.624 134.212 236.448 133.72 236.448 133.08V129.588H235.368V128.64H236.448V127.248H237.6V128.64H239.424V129.588H237.6V133.032C237.6 133.376 237.684 133.64 237.852 133.824C238.028 134.008 238.276 134.1 238.596 134.1C238.948 134.1 239.248 134 239.496 133.8L239.856 134.628ZM243.564 128.58C244.444 128.58 245.116 128.796 245.58 129.228C246.052 129.66 246.288 130.304 246.288 131.16V135H245.196V134.16C245.004 134.456 244.728 134.684 244.368 134.844C244.016 134.996 243.596 135.072 243.108 135.072C242.396 135.072 241.824 134.9 241.392 134.556C240.968 134.212 240.756 133.76 240.756 133.2C240.756 132.64 240.96 132.192 241.368 131.856C241.776 131.512 242.424 131.34 243.312 131.34H245.136V131.112C245.136 130.616 244.992 130.236 244.704 129.972C244.416 129.708 243.992 129.576 243.432 129.576C243.056 129.576 242.688 129.64 242.328 129.768C241.968 129.888 241.664 130.052 241.416 130.26L240.936 129.396C241.264 129.132 241.656 128.932 242.112 128.796C242.568 128.652 243.052 128.58 243.564 128.58ZM243.3 134.184C243.74 134.184 244.12 134.088 244.44 133.896C244.76 133.696 244.992 133.416 245.136 133.056V132.168H243.36C242.384 132.168 241.896 132.496 241.896 133.152C241.896 133.472 242.02 133.724 242.268 133.908C242.516 134.092 242.86 134.184 243.3 134.184ZM248.42 128.64H249.572V135H248.42V128.64ZM248.996 127.416C248.772 127.416 248.584 127.344 248.432 127.2C248.288 127.056 248.216 126.88 248.216 126.672C248.216 126.464 248.288 126.288 248.432 126.144C248.584 125.992 248.772 125.916 248.996 125.916C249.22 125.916 249.404 125.988 249.548 126.132C249.7 126.268 249.776 126.44 249.776 126.648C249.776 126.864 249.7 127.048 249.548 127.2C249.404 127.344 249.22 127.416 248.996 127.416ZM255.168 128.58C255.976 128.58 256.616 128.816 257.088 129.288C257.568 129.752 257.808 130.436 257.808 131.34V135H256.656V131.472C256.656 130.856 256.508 130.392 256.212 130.08C255.916 129.768 255.492 129.612 254.94 129.612C254.316 129.612 253.824 129.796 253.464 130.164C253.104 130.524 252.924 131.044 252.924 131.724V135H251.772V128.64H252.876V129.6C253.108 129.272 253.42 129.02 253.812 128.844C254.212 128.668 254.664 128.58 255.168 128.58ZM261.764 135.072C261.244 135.072 260.744 135.004 260.264 134.868C259.784 134.724 259.408 134.544 259.136 134.328L259.616 133.416C259.896 133.616 260.236 133.776 260.636 133.896C261.036 134.016 261.44 134.076 261.848 134.076C262.856 134.076 263.36 133.788 263.36 133.212C263.36 133.02 263.292 132.868 263.156 132.756C263.02 132.644 262.848 132.564 262.64 132.516C262.44 132.46 262.152 132.4 261.776 132.336C261.264 132.256 260.844 132.164 260.516 132.06C260.196 131.956 259.92 131.78 259.688 131.532C259.456 131.284 259.34 130.936 259.34 130.488C259.34 129.912 259.58 129.452 260.06 129.108C260.54 128.756 261.184 128.58 261.992 128.58C262.416 128.58 262.84 128.632 263.264 128.736C263.688 128.84 264.036 128.98 264.308 129.156L263.816 130.068C263.296 129.732 262.684 129.564 261.98 129.564C261.492 129.564 261.12 129.644 260.864 129.804C260.608 129.964 260.48 130.176 260.48 130.44C260.48 130.648 260.552 130.812 260.696 130.932C260.84 131.052 261.016 131.14 261.224 131.196C261.44 131.252 261.74 131.316 262.124 131.388C262.636 131.476 263.048 131.572 263.36 131.676C263.68 131.772 263.952 131.94 264.176 132.18C264.4 132.42 264.512 132.756 264.512 133.188C264.512 133.764 264.264 134.224 263.768 134.568C263.28 134.904 262.612 135.072 261.764 135.072Z" fill="#465361"/>
59
+ </g>
60
+ <g id="input text_7">
61
+ <rect id="bg_8" x="36.25" y="115.25" width="149.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
62
+ <g id="select control_5">
63
+ <path id="Polygon 1_5" d="M167 136L164 132L170 132L167 136Z" fill="#465361"/>
64
+ <path id="Polygon 2_5" d="M167 126L170 130H164L167 126Z" fill="#465361"/>
65
+ </g>
66
+ <path id="Product Category_2" d="M56.536 126.6C57.624 126.6 58.48 126.86 59.104 127.38C59.728 127.9 60.04 128.616 60.04 129.528C60.04 130.44 59.728 131.156 59.104 131.676C58.48 132.196 57.624 132.456 56.536 132.456H54.46V135H53.26V126.6H56.536ZM56.5 131.412C57.26 131.412 57.84 131.252 58.24 130.932C58.64 130.604 58.84 130.136 58.84 129.528C58.84 128.92 58.64 128.456 58.24 128.136C57.84 127.808 57.26 127.644 56.5 127.644H54.46V131.412H56.5ZM62.6335 129.708C62.8335 129.34 63.1295 129.06 63.5215 128.868C63.9135 128.676 64.3895 128.58 64.9495 128.58V129.696C64.8855 129.688 64.7975 129.684 64.6855 129.684C64.0615 129.684 63.5695 129.872 63.2095 130.248C62.8575 130.616 62.6815 131.144 62.6815 131.832V135H61.5295V128.64H62.6335V129.708ZM69.0348 135.072C68.4028 135.072 67.8348 134.932 67.3308 134.652C66.8268 134.372 66.4308 133.988 66.1428 133.5C65.8628 133.004 65.7228 132.444 65.7228 131.82C65.7228 131.196 65.8628 130.64 66.1428 130.152C66.4308 129.656 66.8268 129.272 67.3308 129C67.8348 128.72 68.4028 128.58 69.0348 128.58C69.6668 128.58 70.2308 128.72 70.7268 129C71.2308 129.272 71.6228 129.656 71.9028 130.152C72.1908 130.64 72.3348 131.196 72.3348 131.82C72.3348 132.444 72.1908 133.004 71.9028 133.5C71.6228 133.988 71.2308 134.372 70.7268 134.652C70.2308 134.932 69.6668 135.072 69.0348 135.072ZM69.0348 134.064C69.4428 134.064 69.8068 133.972 70.1268 133.788C70.4548 133.596 70.7108 133.332 70.8948 132.996C71.0788 132.652 71.1708 132.26 71.1708 131.82C71.1708 131.38 71.0788 130.992 70.8948 130.656C70.7108 130.312 70.4548 130.048 70.1268 129.864C69.8068 129.68 69.4428 129.588 69.0348 129.588C68.6268 129.588 68.2588 129.68 67.9308 129.864C67.6108 130.048 67.3548 130.312 67.1628 130.656C66.9788 130.992 66.8868 131.38 66.8868 131.82C66.8868 132.26 66.9788 132.652 67.1628 132.996C67.3548 133.332 67.6108 133.596 67.9308 133.788C68.2588 133.972 68.6268 134.064 69.0348 134.064ZM79.9279 126.096V135H78.8239V133.992C78.5679 134.344 78.2439 134.612 77.8519 134.796C77.4599 134.98 77.0279 135.072 76.5559 135.072C75.9399 135.072 75.3879 134.936 74.8999 134.664C74.4119 134.392 74.0279 134.012 73.7479 133.524C73.4759 133.028 73.3399 132.46 73.3399 131.82C73.3399 131.18 73.4759 130.616 73.7479 130.128C74.0279 129.64 74.4119 129.26 74.8999 128.988C75.3879 128.716 75.9399 128.58 76.5559 128.58C77.0119 128.58 77.4319 128.668 77.8159 128.844C78.1999 129.012 78.5199 129.264 78.7759 129.6V126.096H79.9279ZM76.6519 134.064C77.0519 134.064 77.4159 133.972 77.7439 133.788C78.0719 133.596 78.3279 133.332 78.5119 132.996C78.6959 132.652 78.7879 132.26 78.7879 131.82C78.7879 131.38 78.6959 130.992 78.5119 130.656C78.3279 130.312 78.0719 130.048 77.7439 129.864C77.4159 129.68 77.0519 129.588 76.6519 129.588C76.2439 129.588 75.8759 129.68 75.5479 129.864C75.2279 130.048 74.9719 130.312 74.7799 130.656C74.5959 130.992 74.5039 131.38 74.5039 131.82C74.5039 132.26 74.5959 132.652 74.7799 132.996C74.9719 133.332 75.2279 133.596 75.5479 133.788C75.8759 133.972 76.2439 134.064 76.6519 134.064ZM88.0356 128.64V135H86.9436V134.04C86.7116 134.368 86.4036 134.624 86.0196 134.808C85.6436 134.984 85.2316 135.072 84.7836 135.072C83.9356 135.072 83.2676 134.84 82.7796 134.376C82.2916 133.904 82.0476 133.212 82.0476 132.3V128.64H83.1996V132.168C83.1996 132.784 83.3476 133.252 83.6436 133.572C83.9396 133.884 84.3636 134.04 84.9156 134.04C85.5236 134.04 86.0036 133.856 86.3556 133.488C86.7076 133.12 86.8836 132.6 86.8836 131.928V128.64H88.0356ZM93.0007 135.072C92.3527 135.072 91.7727 134.932 91.2607 134.652C90.7567 134.372 90.3607 133.988 90.0727 133.5C89.7847 133.004 89.6407 132.444 89.6407 131.82C89.6407 131.196 89.7847 130.64 90.0727 130.152C90.3607 129.656 90.7567 129.272 91.2607 129C91.7727 128.72 92.3527 128.58 93.0007 128.58C93.5767 128.58 94.0887 128.696 94.5367 128.928C94.9927 129.16 95.3447 129.496 95.5927 129.936L94.7167 130.5C94.5167 130.196 94.2687 129.968 93.9727 129.816C93.6767 129.664 93.3487 129.588 92.9887 129.588C92.5727 129.588 92.1967 129.68 91.8607 129.864C91.5327 130.048 91.2727 130.312 91.0807 130.656C90.8967 130.992 90.8047 131.38 90.8047 131.82C90.8047 132.268 90.8967 132.664 91.0807 133.008C91.2727 133.344 91.5327 133.604 91.8607 133.788C92.1967 133.972 92.5727 134.064 92.9887 134.064C93.3487 134.064 93.6767 133.988 93.9727 133.836C94.2687 133.684 94.5167 133.456 94.7167 133.152L95.5927 133.704C95.3447 134.144 94.9927 134.484 94.5367 134.724C94.0887 134.956 93.5767 135.072 93.0007 135.072ZM100.742 134.628C100.574 134.772 100.366 134.884 100.118 134.964C99.8702 135.036 99.6142 135.072 99.3502 135.072C98.7102 135.072 98.2142 134.9 97.8622 134.556C97.5102 134.212 97.3342 133.72 97.3342 133.08V129.588H96.2542V128.64H97.3342V127.248H98.4862V128.64H100.31V129.588H98.4862V133.032C98.4862 133.376 98.5702 133.64 98.7382 133.824C98.9142 134.008 99.1622 134.1 99.4822 134.1C99.8342 134.1 100.134 134 100.382 133.8L100.742 134.628ZM109.282 135.096C108.442 135.096 107.682 134.912 107.002 134.544C106.33 134.168 105.802 133.656 105.418 133.008C105.034 132.352 104.842 131.616 104.842 130.8C104.842 129.984 105.034 129.252 105.418 128.604C105.802 127.948 106.334 127.436 107.014 127.068C107.694 126.692 108.454 126.504 109.294 126.504C109.95 126.504 110.55 126.616 111.094 126.84C111.638 127.056 112.102 127.38 112.486 127.812L111.706 128.568C111.074 127.904 110.286 127.572 109.342 127.572C108.718 127.572 108.154 127.712 107.65 127.992C107.146 128.272 106.75 128.66 106.462 129.156C106.182 129.644 106.042 130.192 106.042 130.8C106.042 131.408 106.182 131.96 106.462 132.456C106.75 132.944 107.146 133.328 107.65 133.608C108.154 133.888 108.718 134.028 109.342 134.028C110.278 134.028 111.066 133.692 111.706 133.02L112.486 133.776C112.102 134.208 111.634 134.536 111.082 134.76C110.538 134.984 109.938 135.096 109.282 135.096ZM116.263 128.58C117.143 128.58 117.815 128.796 118.279 129.228C118.751 129.66 118.987 130.304 118.987 131.16V135H117.895V134.16C117.703 134.456 117.427 134.684 117.067 134.844C116.715 134.996 116.295 135.072 115.807 135.072C115.095 135.072 114.523 134.9 114.091 134.556C113.667 134.212 113.455 133.76 113.455 133.2C113.455 132.64 113.659 132.192 114.067 131.856C114.475 131.512 115.123 131.34 116.011 131.34H117.835V131.112C117.835 130.616 117.691 130.236 117.403 129.972C117.115 129.708 116.691 129.576 116.131 129.576C115.755 129.576 115.387 129.64 115.027 129.768C114.667 129.888 114.363 130.052 114.115 130.26L113.635 129.396C113.963 129.132 114.355 128.932 114.811 128.796C115.267 128.652 115.751 128.58 116.263 128.58ZM115.999 134.184C116.439 134.184 116.819 134.088 117.139 133.896C117.459 133.696 117.691 133.416 117.835 133.056V132.168H116.059C115.083 132.168 114.595 132.496 114.595 133.152C114.595 133.472 114.719 133.724 114.967 133.908C115.215 134.092 115.559 134.184 115.999 134.184ZM124.695 134.628C124.527 134.772 124.319 134.884 124.071 134.964C123.823 135.036 123.567 135.072 123.303 135.072C122.663 135.072 122.167 134.9 121.815 134.556C121.463 134.212 121.287 133.72 121.287 133.08V129.588H120.207V128.64H121.287V127.248H122.439V128.64H124.263V129.588H122.439V133.032C122.439 133.376 122.523 133.64 122.691 133.824C122.867 134.008 123.115 134.1 123.435 134.1C123.787 134.1 124.087 134 124.335 133.8L124.695 134.628ZM131.625 131.856C131.625 131.944 131.617 132.06 131.601 132.204H126.441C126.513 132.764 126.757 133.216 127.173 133.56C127.597 133.896 128.121 134.064 128.745 134.064C129.505 134.064 130.117 133.808 130.581 133.296L131.217 134.04C130.929 134.376 130.569 134.632 130.137 134.808C129.713 134.984 129.237 135.072 128.709 135.072C128.037 135.072 127.441 134.936 126.921 134.664C126.401 134.384 125.997 133.996 125.709 133.5C125.429 133.004 125.289 132.444 125.289 131.82C125.289 131.204 125.425 130.648 125.697 130.152C125.977 129.656 126.357 129.272 126.837 129C127.325 128.72 127.873 128.58 128.481 128.58C129.089 128.58 129.629 128.72 130.101 129C130.581 129.272 130.953 129.656 131.217 130.152C131.489 130.648 131.625 131.216 131.625 131.856ZM128.481 129.552C127.929 129.552 127.465 129.72 127.089 130.056C126.721 130.392 126.505 130.832 126.441 131.376H130.521C130.457 130.84 130.237 130.404 129.861 130.068C129.493 129.724 129.033 129.552 128.481 129.552ZM139.309 128.64V134.136C139.309 135.248 139.033 136.068 138.481 136.596C137.929 137.132 137.105 137.4 136.009 137.4C135.409 137.4 134.837 137.316 134.293 137.148C133.749 136.988 133.309 136.756 132.973 136.452L133.525 135.564C133.821 135.82 134.185 136.02 134.617 136.164C135.057 136.316 135.509 136.392 135.973 136.392C136.717 136.392 137.265 136.216 137.617 135.864C137.977 135.512 138.157 134.976 138.157 134.256V133.752C137.885 134.08 137.549 134.328 137.149 134.496C136.757 134.656 136.329 134.736 135.865 134.736C135.257 134.736 134.705 134.608 134.209 134.352C133.721 134.088 133.337 133.724 133.057 133.26C132.777 132.788 132.637 132.252 132.637 131.652C132.637 131.052 132.777 130.52 133.057 130.056C133.337 129.584 133.721 129.22 134.209 128.964C134.705 128.708 135.257 128.58 135.865 128.58C136.345 128.58 136.789 128.668 137.197 128.844C137.613 129.02 137.953 129.28 138.217 129.624V128.64H139.309ZM135.997 133.728C136.413 133.728 136.785 133.64 137.113 133.464C137.449 133.288 137.709 133.044 137.893 132.732C138.085 132.412 138.181 132.052 138.181 131.652C138.181 131.036 137.977 130.54 137.569 130.164C137.161 129.78 136.637 129.588 135.997 129.588C135.349 129.588 134.821 129.78 134.413 130.164C134.005 130.54 133.801 131.036 133.801 131.652C133.801 132.052 133.893 132.412 134.077 132.732C134.269 133.044 134.529 133.288 134.857 133.464C135.193 133.64 135.573 133.728 135.997 133.728ZM144.234 135.072C143.602 135.072 143.034 134.932 142.53 134.652C142.026 134.372 141.63 133.988 141.342 133.5C141.062 133.004 140.922 132.444 140.922 131.82C140.922 131.196 141.062 130.64 141.342 130.152C141.63 129.656 142.026 129.272 142.53 129C143.034 128.72 143.602 128.58 144.234 128.58C144.866 128.58 145.43 128.72 145.926 129C146.43 129.272 146.822 129.656 147.102 130.152C147.39 130.64 147.534 131.196 147.534 131.82C147.534 132.444 147.39 133.004 147.102 133.5C146.822 133.988 146.43 134.372 145.926 134.652C145.43 134.932 144.866 135.072 144.234 135.072ZM144.234 134.064C144.642 134.064 145.006 133.972 145.326 133.788C145.654 133.596 145.91 133.332 146.094 132.996C146.278 132.652 146.37 132.26 146.37 131.82C146.37 131.38 146.278 130.992 146.094 130.656C145.91 130.312 145.654 130.048 145.326 129.864C145.006 129.68 144.642 129.588 144.234 129.588C143.826 129.588 143.458 129.68 143.13 129.864C142.81 130.048 142.554 130.312 142.362 130.656C142.178 130.992 142.086 131.38 142.086 131.82C142.086 132.26 142.178 132.652 142.362 132.996C142.554 133.332 142.81 133.596 143.13 133.788C143.458 133.972 143.826 134.064 144.234 134.064ZM150.231 129.708C150.431 129.34 150.727 129.06 151.119 128.868C151.511 128.676 151.987 128.58 152.547 128.58V129.696C152.483 129.688 152.395 129.684 152.283 129.684C151.659 129.684 151.167 129.872 150.807 130.248C150.455 130.616 150.279 131.144 150.279 131.832V135H149.127V128.64H150.231V129.708ZM159.853 128.64L156.769 135.636C156.497 136.284 156.177 136.74 155.809 137.004C155.449 137.268 155.013 137.4 154.501 137.4C154.189 137.4 153.885 137.348 153.589 137.244C153.301 137.148 153.061 137.004 152.869 136.812L153.361 135.948C153.689 136.26 154.069 136.416 154.501 136.416C154.781 136.416 155.013 136.34 155.197 136.188C155.389 136.044 155.561 135.792 155.713 135.432L155.917 134.988L153.109 128.64H154.309L156.529 133.728L158.725 128.64H159.853Z" fill="#465361"/>
67
+ </g>
68
+ <g id="input text_8">
69
+ <rect id="bg_9" x="410.25" y="115.25" width="59.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
70
+ <g id="select control_6">
71
+ <path id="Polygon 1_6" d="M455 136L452 132L458 132L455 136Z" fill="#465361"/>
72
+ <path id="Polygon 2_6" d="M455 126L458 130H452L455 126Z" fill="#465361"/>
73
+ </g>
74
+ <path id="OR_2" d="M424.052 135.096C423.204 135.096 422.44 134.912 421.76 134.544C421.08 134.168 420.544 133.652 420.152 132.996C419.768 132.34 419.576 131.608 419.576 130.8C419.576 129.992 419.768 129.26 420.152 128.604C420.544 127.948 421.08 127.436 421.76 127.068C422.44 126.692 423.204 126.504 424.052 126.504C424.892 126.504 425.652 126.692 426.332 127.068C427.012 127.436 427.544 127.948 427.928 128.604C428.312 129.252 428.504 129.984 428.504 130.8C428.504 131.616 428.312 132.352 427.928 133.008C427.544 133.656 427.012 134.168 426.332 134.544C425.652 134.912 424.892 135.096 424.052 135.096ZM424.052 134.028C424.668 134.028 425.22 133.888 425.708 133.608C426.204 133.328 426.592 132.944 426.872 132.456C427.16 131.96 427.304 131.408 427.304 130.8C427.304 130.192 427.16 129.644 426.872 129.156C426.592 128.66 426.204 128.272 425.708 127.992C425.22 127.712 424.668 127.572 424.052 127.572C423.436 127.572 422.876 127.712 422.372 127.992C421.876 128.272 421.484 128.66 421.196 129.156C420.916 129.644 420.776 130.192 420.776 130.8C420.776 131.408 420.916 131.96 421.196 132.456C421.484 132.944 421.876 133.328 422.372 133.608C422.876 133.888 423.436 134.028 424.052 134.028ZM435.954 135L434.142 132.42C433.918 132.436 433.742 132.444 433.614 132.444H431.538V135H430.338V126.6H433.614C434.702 126.6 435.558 126.86 436.182 127.38C436.806 127.9 437.118 128.616 437.118 129.528C437.118 130.176 436.958 130.728 436.638 131.184C436.318 131.64 435.862 131.972 435.27 132.18L437.262 135H435.954ZM433.578 131.424C434.338 131.424 434.918 131.26 435.318 130.932C435.718 130.604 435.918 130.136 435.918 129.528C435.918 128.92 435.718 128.456 435.318 128.136C434.918 127.808 434.338 127.644 433.578 127.644H431.538V131.424H433.578Z" fill="#465361"/>
75
+ </g>
76
+ </g>
77
+ <g id="Group 2154_2">
78
+ <circle id="Ellipse 83_2" cx="486.312" cy="132.314" r="7.75" transform="rotate(45 486.312 132.314)" fill="white" stroke="#465361" stroke-width="0.5"/>
79
+ <line id="Line 107_2" x1="483.661" y1="129.309" x2="489.318" y2="134.965" stroke="#465361" stroke-width="0.5"/>
80
+ <line id="Line 108_2" x1="489.317" y1="129.662" x2="483.661" y2="135.319" stroke="#465361" stroke-width="0.5"/>
81
+ </g>
82
+ </g>
83
+ <g id="form_3">
84
+ <g id="Group 2149_3">
85
+ <g id="input text_9">
86
+ <rect id="bg_10" x="325.25" y="162.25" width="73.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
87
+ <path id="100" d="M344.18 173.6V182H342.992V174.644H341.096V173.6H344.18ZM349.449 182.096C348.785 182.096 348.193 181.928 347.673 181.592C347.161 181.248 346.757 180.752 346.461 180.104C346.165 179.456 346.017 178.688 346.017 177.8C346.017 176.912 346.165 176.144 346.461 175.496C346.757 174.848 347.161 174.356 347.673 174.02C348.193 173.676 348.785 173.504 349.449 173.504C350.105 173.504 350.689 173.676 351.201 174.02C351.721 174.356 352.129 174.848 352.425 175.496C352.721 176.144 352.869 176.912 352.869 177.8C352.869 178.688 352.721 179.456 352.425 180.104C352.129 180.752 351.721 181.248 351.201 181.592C350.689 181.928 350.105 182.096 349.449 182.096ZM349.449 181.028C350.121 181.028 350.657 180.752 351.057 180.2C351.465 179.648 351.669 178.848 351.669 177.8C351.669 176.752 351.465 175.952 351.057 175.4C350.657 174.848 350.121 174.572 349.449 174.572C348.769 174.572 348.225 174.848 347.817 175.4C347.417 175.952 347.217 176.752 347.217 177.8C347.217 178.848 347.417 179.648 347.817 180.2C348.225 180.752 348.769 181.028 349.449 181.028ZM357.453 182.096C356.789 182.096 356.197 181.928 355.677 181.592C355.165 181.248 354.761 180.752 354.465 180.104C354.169 179.456 354.021 178.688 354.021 177.8C354.021 176.912 354.169 176.144 354.465 175.496C354.761 174.848 355.165 174.356 355.677 174.02C356.197 173.676 356.789 173.504 357.453 173.504C358.109 173.504 358.693 173.676 359.205 174.02C359.725 174.356 360.133 174.848 360.429 175.496C360.725 176.144 360.873 176.912 360.873 177.8C360.873 178.688 360.725 179.456 360.429 180.104C360.133 180.752 359.725 181.248 359.205 181.592C358.693 181.928 358.109 182.096 357.453 182.096ZM357.453 181.028C358.125 181.028 358.661 180.752 359.061 180.2C359.469 179.648 359.673 178.848 359.673 177.8C359.673 176.752 359.469 175.952 359.061 175.4C358.661 174.848 358.125 174.572 357.453 174.572C356.773 174.572 356.229 174.848 355.821 175.4C355.421 175.952 355.221 176.752 355.221 177.8C355.221 178.848 355.421 179.648 355.821 180.2C356.229 180.752 356.773 181.028 357.453 181.028Z" fill="#465361"/>
88
+ </g>
89
+ <g id="input text_10">
90
+ <rect id="bg_11" x="195.25" y="162.25" width="119.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
91
+ <g id="select control_7">
92
+ <path id="Polygon 1_7" d="M296 183L293 179L299 179L296 183Z" fill="#465361"/>
93
+ <path id="Polygon 2_7" d="M296 173L299 177H293L296 173Z" fill="#465361"/>
94
+ </g>
95
+ <path id="Greater than" d="M218.08 177.752H219.232V181.028C218.816 181.372 218.332 181.636 217.78 181.82C217.228 182.004 216.652 182.096 216.052 182.096C215.204 182.096 214.44 181.912 213.76 181.544C213.08 181.168 212.544 180.656 212.152 180.008C211.768 179.352 211.576 178.616 211.576 177.8C211.576 176.984 211.768 176.248 212.152 175.592C212.544 174.936 213.08 174.424 213.76 174.056C214.448 173.688 215.22 173.504 216.076 173.504C216.748 173.504 217.356 173.616 217.9 173.84C218.452 174.056 218.92 174.376 219.304 174.8L218.56 175.544C217.888 174.896 217.076 174.572 216.124 174.572C215.484 174.572 214.908 174.712 214.396 174.992C213.892 175.264 213.496 175.648 213.208 176.144C212.92 176.632 212.776 177.184 212.776 177.8C212.776 178.408 212.92 178.96 213.208 179.456C213.496 179.944 213.892 180.328 214.396 180.608C214.908 180.888 215.48 181.028 216.112 181.028C216.864 181.028 217.52 180.848 218.08 180.488V177.752ZM222.466 176.708C222.666 176.34 222.962 176.06 223.354 175.868C223.746 175.676 224.222 175.58 224.782 175.58V176.696C224.718 176.688 224.63 176.684 224.518 176.684C223.894 176.684 223.402 176.872 223.042 177.248C222.69 177.616 222.514 178.144 222.514 178.832V182H221.362V175.64H222.466V176.708ZM231.891 178.856C231.891 178.944 231.883 179.06 231.867 179.204H226.707C226.779 179.764 227.023 180.216 227.439 180.56C227.863 180.896 228.387 181.064 229.011 181.064C229.771 181.064 230.383 180.808 230.847 180.296L231.483 181.04C231.195 181.376 230.835 181.632 230.403 181.808C229.979 181.984 229.503 182.072 228.975 182.072C228.303 182.072 227.707 181.936 227.187 181.664C226.667 181.384 226.263 180.996 225.975 180.5C225.695 180.004 225.555 179.444 225.555 178.82C225.555 178.204 225.691 177.648 225.963 177.152C226.243 176.656 226.623 176.272 227.103 176C227.591 175.72 228.139 175.58 228.747 175.58C229.355 175.58 229.895 175.72 230.367 176C230.847 176.272 231.219 176.656 231.483 177.152C231.755 177.648 231.891 178.216 231.891 178.856ZM228.747 176.552C228.195 176.552 227.731 176.72 227.355 177.056C226.987 177.392 226.771 177.832 226.707 178.376H230.787C230.723 177.84 230.503 177.404 230.127 177.068C229.759 176.724 229.299 176.552 228.747 176.552ZM235.631 175.58C236.511 175.58 237.183 175.796 237.647 176.228C238.119 176.66 238.355 177.304 238.355 178.16V182H237.263V181.16C237.071 181.456 236.795 181.684 236.435 181.844C236.083 181.996 235.663 182.072 235.175 182.072C234.463 182.072 233.891 181.9 233.459 181.556C233.035 181.212 232.823 180.76 232.823 180.2C232.823 179.64 233.027 179.192 233.435 178.856C233.843 178.512 234.491 178.34 235.379 178.34H237.203V178.112C237.203 177.616 237.059 177.236 236.771 176.972C236.483 176.708 236.059 176.576 235.499 176.576C235.123 176.576 234.755 176.64 234.395 176.768C234.035 176.888 233.731 177.052 233.483 177.26L233.003 176.396C233.331 176.132 233.723 175.932 234.179 175.796C234.635 175.652 235.119 175.58 235.631 175.58ZM235.367 181.184C235.807 181.184 236.187 181.088 236.507 180.896C236.827 180.696 237.059 180.416 237.203 180.056V179.168H235.427C234.451 179.168 233.963 179.496 233.963 180.152C233.963 180.472 234.087 180.724 234.335 180.908C234.583 181.092 234.927 181.184 235.367 181.184ZM244.063 181.628C243.895 181.772 243.687 181.884 243.439 181.964C243.191 182.036 242.935 182.072 242.671 182.072C242.031 182.072 241.535 181.9 241.183 181.556C240.831 181.212 240.655 180.72 240.655 180.08V176.588H239.575V175.64H240.655V174.248H241.807V175.64H243.631V176.588H241.807V180.032C241.807 180.376 241.891 180.64 242.059 180.824C242.235 181.008 242.483 181.1 242.803 181.1C243.155 181.1 243.455 181 243.703 180.8L244.063 181.628ZM250.992 178.856C250.992 178.944 250.984 179.06 250.968 179.204H245.808C245.88 179.764 246.124 180.216 246.54 180.56C246.964 180.896 247.488 181.064 248.112 181.064C248.872 181.064 249.484 180.808 249.948 180.296L250.584 181.04C250.296 181.376 249.936 181.632 249.504 181.808C249.08 181.984 248.604 182.072 248.076 182.072C247.404 182.072 246.808 181.936 246.288 181.664C245.768 181.384 245.364 180.996 245.076 180.5C244.796 180.004 244.656 179.444 244.656 178.82C244.656 178.204 244.792 177.648 245.064 177.152C245.344 176.656 245.724 176.272 246.204 176C246.692 175.72 247.24 175.58 247.848 175.58C248.456 175.58 248.996 175.72 249.468 176C249.948 176.272 250.32 176.656 250.584 177.152C250.856 177.648 250.992 178.216 250.992 178.856ZM247.848 176.552C247.296 176.552 246.832 176.72 246.456 177.056C246.088 177.392 245.872 177.832 245.808 178.376H249.888C249.824 177.84 249.604 177.404 249.228 177.068C248.86 176.724 248.4 176.552 247.848 176.552ZM253.696 176.708C253.896 176.34 254.192 176.06 254.584 175.868C254.976 175.676 255.452 175.58 256.012 175.58V176.696C255.948 176.688 255.86 176.684 255.748 176.684C255.124 176.684 254.632 176.872 254.272 177.248C253.92 177.616 253.744 178.144 253.744 178.832V182H252.592V175.64H253.696V176.708ZM264.313 181.628C264.145 181.772 263.937 181.884 263.689 181.964C263.441 182.036 263.185 182.072 262.921 182.072C262.281 182.072 261.785 181.9 261.433 181.556C261.081 181.212 260.905 180.72 260.905 180.08V176.588H259.825V175.64H260.905V174.248H262.057V175.64H263.881V176.588H262.057V180.032C262.057 180.376 262.141 180.64 262.309 180.824C262.485 181.008 262.733 181.1 263.053 181.1C263.405 181.1 263.705 181 263.953 180.8L264.313 181.628ZM269.101 175.58C269.909 175.58 270.549 175.816 271.021 176.288C271.501 176.752 271.741 177.436 271.741 178.34V182H270.589V178.472C270.589 177.856 270.441 177.392 270.145 177.08C269.849 176.768 269.425 176.612 268.873 176.612C268.249 176.612 267.757 176.796 267.397 177.164C267.037 177.524 266.857 178.044 266.857 178.724V182H265.705V173.096H266.857V176.54C267.097 176.236 267.409 176 267.793 175.832C268.185 175.664 268.621 175.58 269.101 175.58ZM276.189 175.58C277.069 175.58 277.741 175.796 278.205 176.228C278.677 176.66 278.913 177.304 278.913 178.16V182H277.821V181.16C277.629 181.456 277.353 181.684 276.993 181.844C276.641 181.996 276.221 182.072 275.733 182.072C275.021 182.072 274.449 181.9 274.017 181.556C273.593 181.212 273.381 180.76 273.381 180.2C273.381 179.64 273.585 179.192 273.993 178.856C274.401 178.512 275.049 178.34 275.937 178.34H277.761V178.112C277.761 177.616 277.617 177.236 277.329 176.972C277.041 176.708 276.617 176.576 276.057 176.576C275.681 176.576 275.313 176.64 274.953 176.768C274.593 176.888 274.289 177.052 274.041 177.26L273.561 176.396C273.889 176.132 274.281 175.932 274.737 175.796C275.193 175.652 275.677 175.58 276.189 175.58ZM275.925 181.184C276.365 181.184 276.745 181.088 277.065 180.896C277.385 180.696 277.617 180.416 277.761 180.056V179.168H275.985C275.009 179.168 274.521 179.496 274.521 180.152C274.521 180.472 274.645 180.724 274.893 180.908C275.141 181.092 275.485 181.184 275.925 181.184ZM284.441 175.58C285.249 175.58 285.889 175.816 286.361 176.288C286.841 176.752 287.081 177.436 287.081 178.34V182H285.929V178.472C285.929 177.856 285.781 177.392 285.485 177.08C285.189 176.768 284.765 176.612 284.213 176.612C283.589 176.612 283.097 176.796 282.737 177.164C282.377 177.524 282.197 178.044 282.197 178.724V182H281.045V175.64H282.149V176.6C282.381 176.272 282.693 176.02 283.085 175.844C283.485 175.668 283.937 175.58 284.441 175.58Z" fill="#465361"/>
96
+ </g>
97
+ <g id="input text_11">
98
+ <rect id="bg_12" x="35.25" y="162.25" width="149.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
99
+ <g id="select control_8">
100
+ <path id="Polygon 1_8" d="M166 183L163 179L169 179L166 183Z" fill="#465361"/>
101
+ <path id="Polygon 2_8" d="M166 173L169 177H163L166 173Z" fill="#465361"/>
102
+ </g>
103
+ <path id="Regular Price" d="M57.876 182L56.064 179.42C55.84 179.436 55.664 179.444 55.536 179.444H53.46V182H52.26V173.6H55.536C56.624 173.6 57.48 173.86 58.104 174.38C58.728 174.9 59.04 175.616 59.04 176.528C59.04 177.176 58.88 177.728 58.56 178.184C58.24 178.64 57.784 178.972 57.192 179.18L59.184 182H57.876ZM55.5 178.424C56.26 178.424 56.84 178.26 57.24 177.932C57.64 177.604 57.84 177.136 57.84 176.528C57.84 175.92 57.64 175.456 57.24 175.136C56.84 174.808 56.26 174.644 55.5 174.644H53.46V178.424H55.5ZM66.5588 178.856C66.5588 178.944 66.5508 179.06 66.5348 179.204H61.3748C61.4468 179.764 61.6908 180.216 62.1068 180.56C62.5308 180.896 63.0548 181.064 63.6788 181.064C64.4388 181.064 65.0508 180.808 65.5148 180.296L66.1508 181.04C65.8628 181.376 65.5028 181.632 65.0708 181.808C64.6468 181.984 64.1708 182.072 63.6428 182.072C62.9708 182.072 62.3748 181.936 61.8548 181.664C61.3348 181.384 60.9308 180.996 60.6428 180.5C60.3628 180.004 60.2228 179.444 60.2228 178.82C60.2228 178.204 60.3588 177.648 60.6308 177.152C60.9108 176.656 61.2908 176.272 61.7708 176C62.2588 175.72 62.8068 175.58 63.4148 175.58C64.0228 175.58 64.5628 175.72 65.0348 176C65.5148 176.272 65.8868 176.656 66.1508 177.152C66.4228 177.648 66.5588 178.216 66.5588 178.856ZM63.4148 176.552C62.8628 176.552 62.3988 176.72 62.0228 177.056C61.6548 177.392 61.4388 177.832 61.3748 178.376H65.4548C65.3908 177.84 65.1708 177.404 64.7948 177.068C64.4268 176.724 63.9668 176.552 63.4148 176.552ZM74.2424 175.64V181.136C74.2424 182.248 73.9664 183.068 73.4144 183.596C72.8624 184.132 72.0384 184.4 70.9424 184.4C70.3424 184.4 69.7704 184.316 69.2264 184.148C68.6824 183.988 68.2424 183.756 67.9064 183.452L68.4584 182.564C68.7544 182.82 69.1184 183.02 69.5504 183.164C69.9904 183.316 70.4424 183.392 70.9064 183.392C71.6504 183.392 72.1984 183.216 72.5504 182.864C72.9104 182.512 73.0904 181.976 73.0904 181.256V180.752C72.8184 181.08 72.4824 181.328 72.0824 181.496C71.6904 181.656 71.2624 181.736 70.7984 181.736C70.1904 181.736 69.6384 181.608 69.1424 181.352C68.6544 181.088 68.2704 180.724 67.9904 180.26C67.7104 179.788 67.5704 179.252 67.5704 178.652C67.5704 178.052 67.7104 177.52 67.9904 177.056C68.2704 176.584 68.6544 176.22 69.1424 175.964C69.6384 175.708 70.1904 175.58 70.7984 175.58C71.2784 175.58 71.7224 175.668 72.1304 175.844C72.5464 176.02 72.8864 176.28 73.1504 176.624V175.64H74.2424ZM70.9304 180.728C71.3464 180.728 71.7184 180.64 72.0464 180.464C72.3824 180.288 72.6424 180.044 72.8264 179.732C73.0184 179.412 73.1144 179.052 73.1144 178.652C73.1144 178.036 72.9104 177.54 72.5024 177.164C72.0944 176.78 71.5704 176.588 70.9304 176.588C70.2824 176.588 69.7544 176.78 69.3464 177.164C68.9384 177.54 68.7344 178.036 68.7344 178.652C68.7344 179.052 68.8264 179.412 69.0104 179.732C69.2024 180.044 69.4624 180.288 69.7904 180.464C70.1264 180.64 70.5064 180.728 70.9304 180.728ZM82.3716 175.64V182H81.2796V181.04C81.0476 181.368 80.7396 181.624 80.3556 181.808C79.9796 181.984 79.5676 182.072 79.1196 182.072C78.2716 182.072 77.6036 181.84 77.1156 181.376C76.6276 180.904 76.3836 180.212 76.3836 179.3V175.64H77.5356V179.168C77.5356 179.784 77.6836 180.252 77.9796 180.572C78.2756 180.884 78.6996 181.04 79.2516 181.04C79.8596 181.04 80.3396 180.856 80.6916 180.488C81.0436 180.12 81.2196 179.6 81.2196 178.928V175.64H82.3716ZM84.5647 173.096H85.7167V182H84.5647V173.096ZM90.2322 175.58C91.1122 175.58 91.7842 175.796 92.2482 176.228C92.7202 176.66 92.9562 177.304 92.9562 178.16V182H91.8642V181.16C91.6722 181.456 91.3962 181.684 91.0362 181.844C90.6842 181.996 90.2642 182.072 89.7762 182.072C89.0642 182.072 88.4922 181.9 88.0602 181.556C87.6362 181.212 87.4242 180.76 87.4242 180.2C87.4242 179.64 87.6282 179.192 88.0362 178.856C88.4442 178.512 89.0922 178.34 89.9802 178.34H91.8042V178.112C91.8042 177.616 91.6602 177.236 91.3722 176.972C91.0842 176.708 90.6602 176.576 90.1002 176.576C89.7242 176.576 89.3562 176.64 88.9962 176.768C88.6362 176.888 88.3322 177.052 88.0842 177.26L87.6042 176.396C87.9322 176.132 88.3242 175.932 88.7802 175.796C89.2362 175.652 89.7202 175.58 90.2322 175.58ZM89.9682 181.184C90.4082 181.184 90.7882 181.088 91.1082 180.896C91.4282 180.696 91.6602 180.416 91.8042 180.056V179.168H90.0282C89.0522 179.168 88.5642 179.496 88.5642 180.152C88.5642 180.472 88.6882 180.724 88.9362 180.908C89.1842 181.092 89.5282 181.184 89.9682 181.184ZM96.1921 176.708C96.3921 176.34 96.6881 176.06 97.0801 175.868C97.4721 175.676 97.9481 175.58 98.5081 175.58V176.696C98.4441 176.688 98.3561 176.684 98.2441 176.684C97.6201 176.684 97.1281 176.872 96.7681 177.248C96.4161 177.616 96.2401 178.144 96.2401 178.832V182H95.0881V175.64H96.1921V176.708ZM106.677 173.6C107.765 173.6 108.621 173.86 109.245 174.38C109.869 174.9 110.181 175.616 110.181 176.528C110.181 177.44 109.869 178.156 109.245 178.676C108.621 179.196 107.765 179.456 106.677 179.456H104.601V182H103.401V173.6H106.677ZM106.641 178.412C107.401 178.412 107.981 178.252 108.381 177.932C108.781 177.604 108.981 177.136 108.981 176.528C108.981 175.92 108.781 175.456 108.381 175.136C107.981 174.808 107.401 174.644 106.641 174.644H104.601V178.412H106.641ZM112.774 176.708C112.974 176.34 113.27 176.06 113.662 175.868C114.054 175.676 114.53 175.58 115.09 175.58V176.696C115.026 176.688 114.938 176.684 114.826 176.684C114.202 176.684 113.71 176.872 113.35 177.248C112.998 177.616 112.822 178.144 112.822 178.832V182H111.67V175.64H112.774V176.708ZM116.51 175.64H117.662V182H116.51V175.64ZM117.086 174.416C116.862 174.416 116.674 174.344 116.522 174.2C116.378 174.056 116.306 173.88 116.306 173.672C116.306 173.464 116.378 173.288 116.522 173.144C116.674 172.992 116.862 172.916 117.086 172.916C117.31 172.916 117.494 172.988 117.638 173.132C117.79 173.268 117.866 173.44 117.866 173.648C117.866 173.864 117.79 174.048 117.638 174.2C117.494 174.344 117.31 174.416 117.086 174.416ZM122.634 182.072C121.986 182.072 121.406 181.932 120.894 181.652C120.39 181.372 119.994 180.988 119.706 180.5C119.418 180.004 119.274 179.444 119.274 178.82C119.274 178.196 119.418 177.64 119.706 177.152C119.994 176.656 120.39 176.272 120.894 176C121.406 175.72 121.986 175.58 122.634 175.58C123.21 175.58 123.722 175.696 124.17 175.928C124.626 176.16 124.978 176.496 125.226 176.936L124.35 177.5C124.15 177.196 123.902 176.968 123.606 176.816C123.31 176.664 122.982 176.588 122.622 176.588C122.206 176.588 121.83 176.68 121.494 176.864C121.166 177.048 120.906 177.312 120.714 177.656C120.53 177.992 120.438 178.38 120.438 178.82C120.438 179.268 120.53 179.664 120.714 180.008C120.906 180.344 121.166 180.604 121.494 180.788C121.83 180.972 122.206 181.064 122.622 181.064C122.982 181.064 123.31 180.988 123.606 180.836C123.902 180.684 124.15 180.456 124.35 180.152L125.226 180.704C124.978 181.144 124.626 181.484 124.17 181.724C123.722 181.956 123.21 182.072 122.634 182.072ZM132.371 178.856C132.371 178.944 132.363 179.06 132.347 179.204H127.187C127.259 179.764 127.503 180.216 127.919 180.56C128.343 180.896 128.867 181.064 129.491 181.064C130.251 181.064 130.863 180.808 131.327 180.296L131.963 181.04C131.675 181.376 131.315 181.632 130.883 181.808C130.459 181.984 129.983 182.072 129.455 182.072C128.783 182.072 128.187 181.936 127.667 181.664C127.147 181.384 126.743 180.996 126.455 180.5C126.175 180.004 126.035 179.444 126.035 178.82C126.035 178.204 126.171 177.648 126.443 177.152C126.723 176.656 127.103 176.272 127.583 176C128.071 175.72 128.619 175.58 129.227 175.58C129.835 175.58 130.375 175.72 130.847 176C131.327 176.272 131.699 176.656 131.963 177.152C132.235 177.648 132.371 178.216 132.371 178.856ZM129.227 176.552C128.675 176.552 128.211 176.72 127.835 177.056C127.467 177.392 127.251 177.832 127.187 178.376H131.267C131.203 177.84 130.983 177.404 130.607 177.068C130.239 176.724 129.779 176.552 129.227 176.552Z" fill="#465361"/>
104
+ </g>
105
+ <g id="input text_12">
106
+ <rect id="bg_13" x="409.25" y="162.25" width="60.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
107
+ <g id="select control_9">
108
+ <path id="Polygon 1_9" d="M455 183L452 179L458 179L455 183Z" fill="#465361"/>
109
+ <path id="Polygon 2_9" d="M455 173L458 177H452L455 173Z" fill="#465361"/>
110
+ </g>
111
+ <path id="AND" d="M425.612 179.9H421.148L420.224 182H418.988L422.792 173.6H423.98L427.796 182H426.536L425.612 179.9ZM425.192 178.94L423.38 174.824L421.568 178.94H425.192ZM436.273 173.6V182H435.289L430.249 175.736V182H429.049V173.6H430.033L435.073 179.864V173.6H436.273ZM438.787 173.6H442.327C443.215 173.6 444.003 173.776 444.691 174.128C445.379 174.48 445.911 174.976 446.287 175.616C446.671 176.248 446.863 176.976 446.863 177.8C446.863 178.624 446.671 179.356 446.287 179.996C445.911 180.628 445.379 181.12 444.691 181.472C444.003 181.824 443.215 182 442.327 182H438.787V173.6ZM442.255 180.956C442.935 180.956 443.531 180.824 444.043 180.56C444.563 180.296 444.963 179.928 445.243 179.456C445.523 178.976 445.663 178.424 445.663 177.8C445.663 177.176 445.523 176.628 445.243 176.156C444.963 175.676 444.563 175.304 444.043 175.04C443.531 174.776 442.935 174.644 442.255 174.644H439.987V180.956H442.255Z" fill="#465361"/>
112
+ </g>
113
+ <g id="Group 2155">
114
+ <circle id="Ellipse 83_3" cx="486.312" cy="177.314" r="7.75" transform="rotate(45 486.312 177.314)" fill="white" stroke="#465361" stroke-width="0.5"/>
115
+ <line id="Line 107_3" x1="483.661" y1="174.309" x2="489.318" y2="179.966" stroke="#465361" stroke-width="0.5"/>
116
+ <line id="Line 108_3" x1="489.317" y1="174.662" x2="483.661" y2="180.319" stroke="#465361" stroke-width="0.5"/>
117
+ </g>
118
+ </g>
119
+ </g>
120
+ <g id="button">
121
+ <g id="Group 2159">
122
+ <g id="Group 2158">
123
+ <rect id="Rectangle 479" x="35" y="224" width="152" height="32" rx="5" fill="url(#paint0_linear)"/>
124
+ <path id="Add New Condition" d="M57.612 241.9H53.148L52.224 244H50.988L54.792 235.6H55.98L59.796 244H58.536L57.612 241.9ZM57.192 240.94L55.38 236.824L53.568 240.94H57.192ZM66.8225 235.096V244H65.7185V242.992C65.4625 243.344 65.1385 243.612 64.7465 243.796C64.3545 243.98 63.9225 244.072 63.4505 244.072C62.8345 244.072 62.2825 243.936 61.7945 243.664C61.3065 243.392 60.9225 243.012 60.6425 242.524C60.3705 242.028 60.2345 241.46 60.2345 240.82C60.2345 240.18 60.3705 239.616 60.6425 239.128C60.9225 238.64 61.3065 238.26 61.7945 237.988C62.2825 237.716 62.8345 237.58 63.4505 237.58C63.9065 237.58 64.3265 237.668 64.7105 237.844C65.0945 238.012 65.4145 238.264 65.6705 238.6V235.096H66.8225ZM63.5465 243.064C63.9465 243.064 64.3105 242.972 64.6385 242.788C64.9665 242.596 65.2225 242.332 65.4065 241.996C65.5905 241.652 65.6825 241.26 65.6825 240.82C65.6825 240.38 65.5905 239.992 65.4065 239.656C65.2225 239.312 64.9665 239.048 64.6385 238.864C64.3105 238.68 63.9465 238.588 63.5465 238.588C63.1385 238.588 62.7705 238.68 62.4425 238.864C62.1225 239.048 61.8665 239.312 61.6745 239.656C61.4905 239.992 61.3985 240.38 61.3985 240.82C61.3985 241.26 61.4905 241.652 61.6745 241.996C61.8665 242.332 62.1225 242.596 62.4425 242.788C62.7705 242.972 63.1385 243.064 63.5465 243.064ZM75.0022 235.096V244H73.8982V242.992C73.6422 243.344 73.3182 243.612 72.9262 243.796C72.5342 243.98 72.1022 244.072 71.6302 244.072C71.0142 244.072 70.4622 243.936 69.9742 243.664C69.4862 243.392 69.1022 243.012 68.8222 242.524C68.5502 242.028 68.4142 241.46 68.4142 240.82C68.4142 240.18 68.5502 239.616 68.8222 239.128C69.1022 238.64 69.4862 238.26 69.9742 237.988C70.4622 237.716 71.0142 237.58 71.6302 237.58C72.0862 237.58 72.5062 237.668 72.8902 237.844C73.2742 238.012 73.5942 238.264 73.8502 238.6V235.096H75.0022ZM71.7262 243.064C72.1262 243.064 72.4902 242.972 72.8182 242.788C73.1462 242.596 73.4022 242.332 73.5862 241.996C73.7702 241.652 73.8622 241.26 73.8622 240.82C73.8622 240.38 73.7702 239.992 73.5862 239.656C73.4022 239.312 73.1462 239.048 72.8182 238.864C72.4902 238.68 72.1262 238.588 71.7262 238.588C71.3182 238.588 70.9502 238.68 70.6222 238.864C70.3022 239.048 70.0462 239.312 69.8542 239.656C69.6702 239.992 69.5782 240.38 69.5782 240.82C69.5782 241.26 69.6702 241.652 69.8542 241.996C70.0462 242.332 70.3022 242.596 70.6222 242.788C70.9502 242.972 71.3182 243.064 71.7262 243.064ZM87.7965 235.6V244H86.8125L81.7725 237.736V244H80.5725V235.6H81.5565L86.5965 241.864V235.6H87.7965ZM95.8908 240.856C95.8908 240.944 95.8828 241.06 95.8668 241.204H90.7068C90.7788 241.764 91.0228 242.216 91.4388 242.56C91.8628 242.896 92.3868 243.064 93.0108 243.064C93.7708 243.064 94.3828 242.808 94.8468 242.296L95.4828 243.04C95.1948 243.376 94.8348 243.632 94.4028 243.808C93.9788 243.984 93.5028 244.072 92.9748 244.072C92.3028 244.072 91.7068 243.936 91.1868 243.664C90.6668 243.384 90.2628 242.996 89.9748 242.5C89.6948 242.004 89.5548 241.444 89.5548 240.82C89.5548 240.204 89.6908 239.648 89.9628 239.152C90.2428 238.656 90.6228 238.272 91.1028 238C91.5908 237.72 92.1388 237.58 92.7468 237.58C93.3548 237.58 93.8948 237.72 94.3668 238C94.8468 238.272 95.2188 238.656 95.4828 239.152C95.7548 239.648 95.8908 240.216 95.8908 240.856ZM92.7468 238.552C92.1948 238.552 91.7308 238.72 91.3548 239.056C90.9868 239.392 90.7708 239.832 90.7068 240.376H94.7868C94.7228 239.84 94.5028 239.404 94.1268 239.068C93.7588 238.724 93.2988 238.552 92.7468 238.552ZM106.997 237.64L104.621 244H103.517L101.681 239.176L99.8213 244H98.7173L96.3533 237.64H97.4453L99.2933 242.704L101.213 237.64H102.185L104.069 242.728L105.965 237.64H106.997ZM115.313 244.096C114.473 244.096 113.713 243.912 113.033 243.544C112.361 243.168 111.833 242.656 111.449 242.008C111.065 241.352 110.873 240.616 110.873 239.8C110.873 238.984 111.065 238.252 111.449 237.604C111.833 236.948 112.365 236.436 113.045 236.068C113.725 235.692 114.485 235.504 115.325 235.504C115.981 235.504 116.581 235.616 117.125 235.84C117.669 236.056 118.133 236.38 118.517 236.812L117.737 237.568C117.105 236.904 116.317 236.572 115.373 236.572C114.749 236.572 114.185 236.712 113.681 236.992C113.177 237.272 112.781 237.66 112.493 238.156C112.213 238.644 112.073 239.192 112.073 239.8C112.073 240.408 112.213 240.96 112.493 241.456C112.781 241.944 113.177 242.328 113.681 242.608C114.185 242.888 114.749 243.028 115.373 243.028C116.309 243.028 117.097 242.692 117.737 242.02L118.517 242.776C118.133 243.208 117.665 243.536 117.113 243.76C116.569 243.984 115.969 244.096 115.313 244.096ZM122.515 244.072C121.883 244.072 121.315 243.932 120.811 243.652C120.307 243.372 119.911 242.988 119.623 242.5C119.343 242.004 119.203 241.444 119.203 240.82C119.203 240.196 119.343 239.64 119.623 239.152C119.911 238.656 120.307 238.272 120.811 238C121.315 237.72 121.883 237.58 122.515 237.58C123.147 237.58 123.711 237.72 124.207 238C124.711 238.272 125.103 238.656 125.383 239.152C125.671 239.64 125.815 240.196 125.815 240.82C125.815 241.444 125.671 242.004 125.383 242.5C125.103 242.988 124.711 243.372 124.207 243.652C123.711 243.932 123.147 244.072 122.515 244.072ZM122.515 243.064C122.923 243.064 123.287 242.972 123.607 242.788C123.935 242.596 124.191 242.332 124.375 241.996C124.559 241.652 124.651 241.26 124.651 240.82C124.651 240.38 124.559 239.992 124.375 239.656C124.191 239.312 123.935 239.048 123.607 238.864C123.287 238.68 122.923 238.588 122.515 238.588C122.107 238.588 121.739 238.68 121.411 238.864C121.091 239.048 120.835 239.312 120.643 239.656C120.459 239.992 120.367 240.38 120.367 240.82C120.367 241.26 120.459 241.652 120.643 241.996C120.835 242.332 121.091 242.596 121.411 242.788C121.739 242.972 122.107 243.064 122.515 243.064ZM130.804 237.58C131.612 237.58 132.252 237.816 132.724 238.288C133.204 238.752 133.444 239.436 133.444 240.34V244H132.292V240.472C132.292 239.856 132.144 239.392 131.848 239.08C131.552 238.768 131.128 238.612 130.576 238.612C129.952 238.612 129.46 238.796 129.1 239.164C128.74 239.524 128.56 240.044 128.56 240.724V244H127.408V237.64H128.512V238.6C128.744 238.272 129.056 238.02 129.448 237.844C129.848 237.668 130.3 237.58 130.804 237.58ZM141.612 235.096V244H140.508V242.992C140.252 243.344 139.928 243.612 139.536 243.796C139.144 243.98 138.712 244.072 138.24 244.072C137.624 244.072 137.072 243.936 136.584 243.664C136.096 243.392 135.712 243.012 135.432 242.524C135.16 242.028 135.024 241.46 135.024 240.82C135.024 240.18 135.16 239.616 135.432 239.128C135.712 238.64 136.096 238.26 136.584 237.988C137.072 237.716 137.624 237.58 138.24 237.58C138.696 237.58 139.116 237.668 139.5 237.844C139.884 238.012 140.204 238.264 140.46 238.6V235.096H141.612ZM138.336 243.064C138.736 243.064 139.1 242.972 139.428 242.788C139.756 242.596 140.012 242.332 140.196 241.996C140.38 241.652 140.472 241.26 140.472 240.82C140.472 240.38 140.38 239.992 140.196 239.656C140.012 239.312 139.756 239.048 139.428 238.864C139.1 238.68 138.736 238.588 138.336 238.588C137.928 238.588 137.56 238.68 137.232 238.864C136.912 239.048 136.656 239.312 136.464 239.656C136.28 239.992 136.188 240.38 136.188 240.82C136.188 241.26 136.28 241.652 136.464 241.996C136.656 242.332 136.912 242.596 137.232 242.788C137.56 242.972 137.928 243.064 138.336 243.064ZM143.791 237.64H144.943V244H143.791V237.64ZM144.367 236.416C144.143 236.416 143.955 236.344 143.803 236.2C143.659 236.056 143.587 235.88 143.587 235.672C143.587 235.464 143.659 235.288 143.803 235.144C143.955 234.992 144.143 234.916 144.367 234.916C144.591 234.916 144.775 234.988 144.919 235.132C145.071 235.268 145.147 235.44 145.147 235.648C145.147 235.864 145.071 236.048 144.919 236.2C144.775 236.344 144.591 236.416 144.367 236.416ZM150.719 243.628C150.551 243.772 150.343 243.884 150.095 243.964C149.847 244.036 149.591 244.072 149.327 244.072C148.687 244.072 148.191 243.9 147.839 243.556C147.487 243.212 147.311 242.72 147.311 242.08V238.588H146.231V237.64H147.311V236.248H148.463V237.64H150.287V238.588H148.463V242.032C148.463 242.376 148.547 242.64 148.715 242.824C148.891 243.008 149.139 243.1 149.459 243.1C149.811 243.1 150.111 243 150.359 242.8L150.719 243.628ZM152.112 237.64H153.264V244H152.112V237.64ZM152.688 236.416C152.464 236.416 152.276 236.344 152.124 236.2C151.98 236.056 151.908 235.88 151.908 235.672C151.908 235.464 151.98 235.288 152.124 235.144C152.276 234.992 152.464 234.916 152.688 234.916C152.912 234.916 153.096 234.988 153.24 235.132C153.392 235.268 153.468 235.44 153.468 235.648C153.468 235.864 153.392 236.048 153.24 236.2C153.096 236.344 152.912 236.416 152.688 236.416ZM158.187 244.072C157.555 244.072 156.987 243.932 156.483 243.652C155.979 243.372 155.583 242.988 155.295 242.5C155.015 242.004 154.875 241.444 154.875 240.82C154.875 240.196 155.015 239.64 155.295 239.152C155.583 238.656 155.979 238.272 156.483 238C156.987 237.72 157.555 237.58 158.187 237.58C158.819 237.58 159.383 237.72 159.879 238C160.383 238.272 160.775 238.656 161.055 239.152C161.343 239.64 161.487 240.196 161.487 240.82C161.487 241.444 161.343 242.004 161.055 242.5C160.775 242.988 160.383 243.372 159.879 243.652C159.383 243.932 158.819 244.072 158.187 244.072ZM158.187 243.064C158.595 243.064 158.959 242.972 159.279 242.788C159.607 242.596 159.863 242.332 160.047 241.996C160.231 241.652 160.323 241.26 160.323 240.82C160.323 240.38 160.231 239.992 160.047 239.656C159.863 239.312 159.607 239.048 159.279 238.864C158.959 238.68 158.595 238.588 158.187 238.588C157.779 238.588 157.411 238.68 157.083 238.864C156.763 239.048 156.507 239.312 156.315 239.656C156.131 239.992 156.039 240.38 156.039 240.82C156.039 241.26 156.131 241.652 156.315 241.996C156.507 242.332 156.763 242.596 157.083 242.788C157.411 242.972 157.779 243.064 158.187 243.064ZM166.476 237.58C167.284 237.58 167.924 237.816 168.396 238.288C168.876 238.752 169.116 239.436 169.116 240.34V244H167.964V240.472C167.964 239.856 167.816 239.392 167.52 239.08C167.224 238.768 166.8 238.612 166.248 238.612C165.624 238.612 165.132 238.796 164.772 239.164C164.412 239.524 164.232 240.044 164.232 240.724V244H163.08V237.64H164.184V238.6C164.416 238.272 164.728 238.02 165.12 237.844C165.52 237.668 165.972 237.58 166.476 237.58Z" fill="white"/>
125
+ </g>
126
+ <rect id="Rectangle 480" x="116" y="218" width="6" height="2" rx="1" transform="rotate(-45 116 218)" fill="url(#paint1_linear)"/>
127
+ <rect id="Rectangle 481" x="112" y="209" width="6" height="2" rx="1" transform="rotate(90 112 209)" fill="url(#paint2_linear)"/>
128
+ <rect id="Rectangle 482" x="105" y="219" width="6" height="2" rx="1" transform="rotate(-135 105 219)" fill="url(#paint3_linear)"/>
129
+ </g>
130
+ <path id="Vector" d="M126.229 259.014L126.229 259.014L121.87 259.856C121.15 259.995 120.472 260.403 119.945 260.929C119.419 261.455 119.009 262.133 118.869 262.852L117.873 267.971C117.873 267.971 117.873 267.971 117.873 267.971C117.843 268.125 117.81 268.245 117.777 268.337C117.73 268.252 117.677 268.139 117.621 267.992L117.158 268.167L117.621 267.992L111.618 252.144C111.618 252.144 111.618 252.144 111.618 252.144C111.523 251.895 111.497 251.718 111.5 251.606C111.502 251.55 111.511 251.521 111.517 251.508C111.53 251.504 111.56 251.498 111.616 251.501C111.727 251.507 111.901 251.55 112.141 251.667L112.141 251.667L126.289 258.56C126.289 258.56 126.289 258.56 126.289 258.56C126.52 258.673 126.66 258.775 126.735 258.85C126.643 258.903 126.482 258.965 126.229 259.014ZM111.521 251.5C111.521 251.5 111.521 251.501 111.52 251.503C111.52 251.501 111.521 251.5 111.521 251.5ZM111.511 251.51C111.509 251.512 111.509 251.512 111.509 251.512C111.508 251.512 111.509 251.511 111.511 251.51ZM126.79 258.919C126.79 258.919 126.789 258.918 126.789 258.916C126.79 258.918 126.79 258.919 126.79 258.919ZM126.804 258.8C126.805 258.799 126.806 258.798 126.806 258.798C126.806 258.798 126.805 258.799 126.804 258.8Z" fill="#6B7581" stroke="white"/>
131
+ </g>
132
+ </g>
133
+ <g id="top">
134
+ <path id="bg_14" d="M5 10C5 4.47715 9.47715 0 15 0H515C520.523 0 525 4.47715 525 10V38H5V10Z" fill="#F6F8FB"/>
135
+ <g id="tabs">
136
+ <g id="Group 2153">
137
+ <g id="Group 2153_2">
138
+ <path id="Rectangle 478" d="M46.5974 20.5506C48.0857 16.044 52.2965 13 57.0426 13H123.957C128.703 13 132.914 16.0439 134.403 20.5506L140 37.5H41L46.5974 20.5506Z" fill="#E5EAEF"/>
139
+ <path id="Feed Config" d="M55.5459 22.144V25.072H59.7579V26.104H55.5459V29.5H54.3459V21.1H60.2739V22.144H55.5459ZM67.3439 26.356C67.3439 26.444 67.3359 26.56 67.3199 26.704H62.1599C62.2319 27.264 62.4759 27.716 62.8919 28.06C63.3159 28.396 63.8399 28.564 64.4639 28.564C65.2239 28.564 65.8359 28.308 66.2999 27.796L66.9359 28.54C66.6479 28.876 66.2879 29.132 65.8559 29.308C65.4319 29.484 64.9559 29.572 64.4279 29.572C63.7559 29.572 63.1599 29.436 62.6399 29.164C62.1199 28.884 61.7159 28.496 61.4279 28C61.1479 27.504 61.0079 26.944 61.0079 26.32C61.0079 25.704 61.1439 25.148 61.4159 24.652C61.6959 24.156 62.0759 23.772 62.5559 23.5C63.0439 23.22 63.5919 23.08 64.1999 23.08C64.8079 23.08 65.3479 23.22 65.8199 23.5C66.2999 23.772 66.6719 24.156 66.9359 24.652C67.2079 25.148 67.3439 25.716 67.3439 26.356ZM64.1999 24.052C63.6479 24.052 63.1839 24.22 62.8079 24.556C62.4399 24.892 62.2239 25.332 62.1599 25.876H66.2399C66.1759 25.34 65.9559 24.904 65.5799 24.568C65.2119 24.224 64.7519 24.052 64.1999 24.052ZM74.6916 26.356C74.6916 26.444 74.6836 26.56 74.6676 26.704H69.5076C69.5796 27.264 69.8236 27.716 70.2396 28.06C70.6636 28.396 71.1876 28.564 71.8116 28.564C72.5716 28.564 73.1836 28.308 73.6476 27.796L74.2836 28.54C73.9956 28.876 73.6356 29.132 73.2036 29.308C72.7796 29.484 72.3036 29.572 71.7756 29.572C71.1036 29.572 70.5076 29.436 69.9876 29.164C69.4676 28.884 69.0636 28.496 68.7756 28C68.4956 27.504 68.3556 26.944 68.3556 26.32C68.3556 25.704 68.4916 25.148 68.7636 24.652C69.0436 24.156 69.4236 23.772 69.9036 23.5C70.3916 23.22 70.9396 23.08 71.5476 23.08C72.1556 23.08 72.6956 23.22 73.1676 23.5C73.6476 23.772 74.0196 24.156 74.2836 24.652C74.5556 25.148 74.6916 25.716 74.6916 26.356ZM71.5476 24.052C70.9956 24.052 70.5316 24.22 70.1556 24.556C69.7876 24.892 69.5716 25.332 69.5076 25.876H73.5876C73.5236 25.34 73.3036 24.904 72.9276 24.568C72.5596 24.224 72.0996 24.052 71.5476 24.052ZM82.2912 20.596V29.5H81.1872V28.492C80.9312 28.844 80.6072 29.112 80.2152 29.296C79.8232 29.48 79.3912 29.572 78.9192 29.572C78.3032 29.572 77.7512 29.436 77.2632 29.164C76.7752 28.892 76.3912 28.512 76.1112 28.024C75.8392 27.528 75.7032 26.96 75.7032 26.32C75.7032 25.68 75.8392 25.116 76.1112 24.628C76.3912 24.14 76.7752 23.76 77.2632 23.488C77.7512 23.216 78.3032 23.08 78.9192 23.08C79.3752 23.08 79.7952 23.168 80.1792 23.344C80.5632 23.512 80.8832 23.764 81.1392 24.1V20.596H82.2912ZM79.0152 28.564C79.4152 28.564 79.7792 28.472 80.1072 28.288C80.4352 28.096 80.6912 27.832 80.8752 27.496C81.0592 27.152 81.1512 26.76 81.1512 26.32C81.1512 25.88 81.0592 25.492 80.8752 25.156C80.6912 24.812 80.4352 24.548 80.1072 24.364C79.7792 24.18 79.4152 24.088 79.0152 24.088C78.6072 24.088 78.2392 24.18 77.9112 24.364C77.5912 24.548 77.3352 24.812 77.1432 25.156C76.9592 25.492 76.8672 25.88 76.8672 26.32C76.8672 26.76 76.9592 27.152 77.1432 27.496C77.3352 27.832 77.5912 28.096 77.9112 28.288C78.2392 28.472 78.6072 28.564 79.0152 28.564ZM91.6176 29.596C90.7776 29.596 90.0176 29.412 89.3376 29.044C88.6656 28.668 88.1376 28.156 87.7536 27.508C87.3696 26.852 87.1776 26.116 87.1776 25.3C87.1776 24.484 87.3696 23.752 87.7536 23.104C88.1376 22.448 88.6696 21.936 89.3496 21.568C90.0296 21.192 90.7896 21.004 91.6296 21.004C92.2856 21.004 92.8856 21.116 93.4296 21.34C93.9736 21.556 94.4376 21.88 94.8216 22.312L94.0416 23.068C93.4096 22.404 92.6216 22.072 91.6776 22.072C91.0536 22.072 90.4896 22.212 89.9856 22.492C89.4816 22.772 89.0856 23.16 88.7976 23.656C88.5176 24.144 88.3776 24.692 88.3776 25.3C88.3776 25.908 88.5176 26.46 88.7976 26.956C89.0856 27.444 89.4816 27.828 89.9856 28.108C90.4896 28.388 91.0536 28.528 91.6776 28.528C92.6136 28.528 93.4016 28.192 94.0416 27.52L94.8216 28.276C94.4376 28.708 93.9696 29.036 93.4176 29.26C92.8736 29.484 92.2736 29.596 91.6176 29.596ZM98.8199 29.572C98.1879 29.572 97.6199 29.432 97.1159 29.152C96.6119 28.872 96.2159 28.488 95.9279 28C95.6479 27.504 95.5079 26.944 95.5079 26.32C95.5079 25.696 95.6479 25.14 95.9279 24.652C96.2159 24.156 96.6119 23.772 97.1159 23.5C97.6199 23.22 98.1879 23.08 98.8199 23.08C99.4519 23.08 100.016 23.22 100.512 23.5C101.016 23.772 101.408 24.156 101.688 24.652C101.976 25.14 102.12 25.696 102.12 26.32C102.12 26.944 101.976 27.504 101.688 28C101.408 28.488 101.016 28.872 100.512 29.152C100.016 29.432 99.4519 29.572 98.8199 29.572ZM98.8199 28.564C99.2279 28.564 99.5919 28.472 99.9119 28.288C100.24 28.096 100.496 27.832 100.68 27.496C100.864 27.152 100.956 26.76 100.956 26.32C100.956 25.88 100.864 25.492 100.68 25.156C100.496 24.812 100.24 24.548 99.9119 24.364C99.5919 24.18 99.2279 24.088 98.8199 24.088C98.4119 24.088 98.0439 24.18 97.7159 24.364C97.3959 24.548 97.1399 24.812 96.9479 25.156C96.7639 25.492 96.6719 25.88 96.6719 26.32C96.6719 26.76 96.7639 27.152 96.9479 27.496C97.1399 27.832 97.3959 28.096 97.7159 28.288C98.0439 28.472 98.4119 28.564 98.8199 28.564ZM107.109 23.08C107.917 23.08 108.557 23.316 109.029 23.788C109.509 24.252 109.749 24.936 109.749 25.84V29.5H108.597V25.972C108.597 25.356 108.449 24.892 108.153 24.58C107.857 24.268 107.433 24.112 106.881 24.112C106.257 24.112 105.765 24.296 105.405 24.664C105.045 25.024 104.865 25.544 104.865 26.224V29.5H103.713V23.14H104.817V24.1C105.049 23.772 105.361 23.52 105.753 23.344C106.153 23.168 106.605 23.08 107.109 23.08ZM114.209 21.472C113.521 21.472 113.177 21.844 113.177 22.588V23.14H115.025V24.088H113.201V29.5H112.049V24.088H110.969V23.14H112.049V22.576C112.049 21.944 112.233 21.444 112.601 21.076C112.969 20.708 113.485 20.524 114.149 20.524C114.405 20.524 114.645 20.556 114.869 20.62C115.093 20.684 115.285 20.776 115.445 20.896L115.097 21.772C114.833 21.572 114.537 21.472 114.209 21.472ZM117.077 23.14H118.229V29.5H117.077V23.14ZM117.653 21.916C117.429 21.916 117.241 21.844 117.089 21.7C116.945 21.556 116.873 21.38 116.873 21.172C116.873 20.964 116.945 20.788 117.089 20.644C117.241 20.492 117.429 20.416 117.653 20.416C117.877 20.416 118.061 20.488 118.205 20.632C118.357 20.768 118.433 20.94 118.433 21.148C118.433 21.364 118.357 21.548 118.205 21.7C118.061 21.844 117.877 21.916 117.653 21.916ZM126.508 23.14V28.636C126.508 29.748 126.232 30.568 125.68 31.096C125.128 31.632 124.304 31.9 123.208 31.9C122.608 31.9 122.036 31.816 121.492 31.648C120.948 31.488 120.508 31.256 120.172 30.952L120.724 30.064C121.02 30.32 121.384 30.52 121.816 30.664C122.256 30.816 122.708 30.892 123.172 30.892C123.916 30.892 124.464 30.716 124.816 30.364C125.176 30.012 125.356 29.476 125.356 28.756V28.252C125.084 28.58 124.748 28.828 124.348 28.996C123.956 29.156 123.528 29.236 123.064 29.236C122.456 29.236 121.904 29.108 121.408 28.852C120.92 28.588 120.536 28.224 120.256 27.76C119.976 27.288 119.836 26.752 119.836 26.152C119.836 25.552 119.976 25.02 120.256 24.556C120.536 24.084 120.92 23.72 121.408 23.464C121.904 23.208 122.456 23.08 123.064 23.08C123.544 23.08 123.988 23.168 124.396 23.344C124.812 23.52 125.152 23.78 125.416 24.124V23.14H126.508ZM123.196 28.228C123.612 28.228 123.984 28.14 124.312 27.964C124.648 27.788 124.908 27.544 125.092 27.232C125.284 26.912 125.38 26.552 125.38 26.152C125.38 25.536 125.176 25.04 124.768 24.664C124.36 24.28 123.836 24.088 123.196 24.088C122.548 24.088 122.02 24.28 121.612 24.664C121.204 25.04 121 25.536 121 26.152C121 26.552 121.092 26.912 121.276 27.232C121.468 27.544 121.728 27.788 122.056 27.964C122.392 28.14 122.772 28.228 123.196 28.228Z" fill="#465361"/>
140
+ </g>
141
+ </g>
142
+ <g id="Group 2151">
143
+ <g id="Group 2153_3">
144
+ <path id="Rectangle 478_2" d="M239.597 20.5506C241.086 16.044 245.297 13 250.043 13H337.957C342.703 13 346.914 16.0439 348.403 20.5506L354 37.5H234L239.597 20.5506Z" fill="#E5EAEF"/>
145
+ <path id="Rectangle 476" d="M240.821 21.9406C242.343 17.4903 246.526 14.5 251.229 14.5H336.771C341.474 14.5 345.657 17.4903 347.179 21.9406L352.5 37.5H235.5L240.821 21.9406Z" fill="white"/>
146
+ </g>
147
+ <path id="Advanced Filter" d="M252.77 27.9H248.306L247.382 30H246.146L249.95 21.6H251.138L254.954 30H253.694L252.77 27.9ZM252.35 26.94L250.538 22.824L248.726 26.94H252.35ZM261.981 21.096V30H260.877V28.992C260.621 29.344 260.297 29.612 259.905 29.796C259.513 29.98 259.081 30.072 258.609 30.072C257.993 30.072 257.441 29.936 256.953 29.664C256.465 29.392 256.081 29.012 255.801 28.524C255.529 28.028 255.393 27.46 255.393 26.82C255.393 26.18 255.529 25.616 255.801 25.128C256.081 24.64 256.465 24.26 256.953 23.988C257.441 23.716 257.993 23.58 258.609 23.58C259.065 23.58 259.485 23.668 259.869 23.844C260.253 24.012 260.573 24.264 260.829 24.6V21.096H261.981ZM258.705 29.064C259.105 29.064 259.469 28.972 259.797 28.788C260.125 28.596 260.381 28.332 260.565 27.996C260.749 27.652 260.841 27.26 260.841 26.82C260.841 26.38 260.749 25.992 260.565 25.656C260.381 25.312 260.125 25.048 259.797 24.864C259.469 24.68 259.105 24.588 258.705 24.588C258.297 24.588 257.929 24.68 257.601 24.864C257.281 25.048 257.025 25.312 256.833 25.656C256.649 25.992 256.557 26.38 256.557 26.82C256.557 27.26 256.649 27.652 256.833 27.996C257.025 28.332 257.281 28.596 257.601 28.788C257.929 28.972 258.297 29.064 258.705 29.064ZM269.788 23.64L267.004 30H265.828L263.044 23.64H264.244L266.428 28.74L268.66 23.64H269.788ZM272.98 23.58C273.86 23.58 274.532 23.796 274.996 24.228C275.468 24.66 275.704 25.304 275.704 26.16V30H274.612V29.16C274.42 29.456 274.144 29.684 273.784 29.844C273.432 29.996 273.012 30.072 272.524 30.072C271.812 30.072 271.24 29.9 270.808 29.556C270.384 29.212 270.172 28.76 270.172 28.2C270.172 27.64 270.376 27.192 270.784 26.856C271.192 26.512 271.84 26.34 272.728 26.34H274.552V26.112C274.552 25.616 274.408 25.236 274.12 24.972C273.832 24.708 273.408 24.576 272.848 24.576C272.472 24.576 272.104 24.64 271.744 24.768C271.384 24.888 271.08 25.052 270.832 25.26L270.352 24.396C270.68 24.132 271.072 23.932 271.528 23.796C271.984 23.652 272.468 23.58 272.98 23.58ZM272.716 29.184C273.156 29.184 273.536 29.088 273.856 28.896C274.176 28.696 274.408 28.416 274.552 28.056V27.168H272.776C271.8 27.168 271.312 27.496 271.312 28.152C271.312 28.472 271.436 28.724 271.684 28.908C271.932 29.092 272.276 29.184 272.716 29.184ZM281.232 23.58C282.04 23.58 282.68 23.816 283.152 24.288C283.632 24.752 283.872 25.436 283.872 26.34V30H282.72V26.472C282.72 25.856 282.572 25.392 282.276 25.08C281.98 24.768 281.556 24.612 281.004 24.612C280.38 24.612 279.888 24.796 279.528 25.164C279.168 25.524 278.988 26.044 278.988 26.724V30H277.836V23.64H278.94V24.6C279.172 24.272 279.484 24.02 279.876 23.844C280.276 23.668 280.728 23.58 281.232 23.58ZM288.811 30.072C288.163 30.072 287.583 29.932 287.071 29.652C286.567 29.372 286.171 28.988 285.883 28.5C285.595 28.004 285.451 27.444 285.451 26.82C285.451 26.196 285.595 25.64 285.883 25.152C286.171 24.656 286.567 24.272 287.071 24C287.583 23.72 288.163 23.58 288.811 23.58C289.387 23.58 289.899 23.696 290.347 23.928C290.803 24.16 291.155 24.496 291.403 24.936L290.527 25.5C290.327 25.196 290.079 24.968 289.783 24.816C289.487 24.664 289.159 24.588 288.799 24.588C288.383 24.588 288.007 24.68 287.671 24.864C287.343 25.048 287.083 25.312 286.891 25.656C286.707 25.992 286.615 26.38 286.615 26.82C286.615 27.268 286.707 27.664 286.891 28.008C287.083 28.344 287.343 28.604 287.671 28.788C288.007 28.972 288.383 29.064 288.799 29.064C289.159 29.064 289.487 28.988 289.783 28.836C290.079 28.684 290.327 28.456 290.527 28.152L291.403 28.704C291.155 29.144 290.803 29.484 290.347 29.724C289.899 29.956 289.387 30.072 288.811 30.072ZM298.549 26.856C298.549 26.944 298.541 27.06 298.525 27.204H293.365C293.437 27.764 293.681 28.216 294.097 28.56C294.521 28.896 295.045 29.064 295.669 29.064C296.429 29.064 297.041 28.808 297.505 28.296L298.141 29.04C297.853 29.376 297.493 29.632 297.061 29.808C296.637 29.984 296.161 30.072 295.633 30.072C294.961 30.072 294.365 29.936 293.845 29.664C293.325 29.384 292.921 28.996 292.633 28.5C292.353 28.004 292.213 27.444 292.213 26.82C292.213 26.204 292.349 25.648 292.621 25.152C292.901 24.656 293.281 24.272 293.761 24C294.249 23.72 294.797 23.58 295.405 23.58C296.013 23.58 296.553 23.72 297.025 24C297.505 24.272 297.877 24.656 298.141 25.152C298.413 25.648 298.549 26.216 298.549 26.856ZM295.405 24.552C294.853 24.552 294.389 24.72 294.013 25.056C293.645 25.392 293.429 25.832 293.365 26.376H297.445C297.381 25.84 297.161 25.404 296.785 25.068C296.417 24.724 295.957 24.552 295.405 24.552ZM306.149 21.096V30H305.045V28.992C304.789 29.344 304.465 29.612 304.073 29.796C303.681 29.98 303.249 30.072 302.777 30.072C302.161 30.072 301.609 29.936 301.121 29.664C300.633 29.392 300.249 29.012 299.969 28.524C299.697 28.028 299.561 27.46 299.561 26.82C299.561 26.18 299.697 25.616 299.969 25.128C300.249 24.64 300.633 24.26 301.121 23.988C301.609 23.716 302.161 23.58 302.777 23.58C303.233 23.58 303.653 23.668 304.037 23.844C304.421 24.012 304.741 24.264 304.997 24.6V21.096H306.149ZM302.873 29.064C303.273 29.064 303.637 28.972 303.965 28.788C304.293 28.596 304.549 28.332 304.733 27.996C304.917 27.652 305.009 27.26 305.009 26.82C305.009 26.38 304.917 25.992 304.733 25.656C304.549 25.312 304.293 25.048 303.965 24.864C303.637 24.68 303.273 24.588 302.873 24.588C302.465 24.588 302.097 24.68 301.769 24.864C301.449 25.048 301.193 25.312 301.001 25.656C300.817 25.992 300.725 26.38 300.725 26.82C300.725 27.26 300.817 27.652 301.001 27.996C301.193 28.332 301.449 28.596 301.769 28.788C302.097 28.972 302.465 29.064 302.873 29.064ZM312.919 22.644V25.572H317.131V26.604H312.919V30H311.719V21.6H317.647V22.644H312.919ZM319.051 23.64H320.203V30H319.051V23.64ZM319.627 22.416C319.403 22.416 319.215 22.344 319.063 22.2C318.919 22.056 318.847 21.88 318.847 21.672C318.847 21.464 318.919 21.288 319.063 21.144C319.215 20.992 319.403 20.916 319.627 20.916C319.851 20.916 320.035 20.988 320.179 21.132C320.331 21.268 320.407 21.44 320.407 21.648C320.407 21.864 320.331 22.048 320.179 22.2C320.035 22.344 319.851 22.416 319.627 22.416ZM322.403 21.096H323.555V30H322.403V21.096ZM329.482 29.628C329.314 29.772 329.106 29.884 328.858 29.964C328.61 30.036 328.354 30.072 328.09 30.072C327.45 30.072 326.954 29.9 326.602 29.556C326.25 29.212 326.074 28.72 326.074 28.08V24.588H324.994V23.64H326.074V22.248H327.226V23.64H329.05V24.588H327.226V28.032C327.226 28.376 327.31 28.64 327.478 28.824C327.654 29.008 327.902 29.1 328.222 29.1C328.574 29.1 328.874 29 329.122 28.8L329.482 29.628ZM336.412 26.856C336.412 26.944 336.404 27.06 336.388 27.204H331.228C331.3 27.764 331.544 28.216 331.96 28.56C332.384 28.896 332.908 29.064 333.532 29.064C334.292 29.064 334.904 28.808 335.368 28.296L336.004 29.04C335.716 29.376 335.356 29.632 334.924 29.808C334.5 29.984 334.024 30.072 333.496 30.072C332.824 30.072 332.228 29.936 331.708 29.664C331.188 29.384 330.784 28.996 330.496 28.5C330.216 28.004 330.076 27.444 330.076 26.82C330.076 26.204 330.212 25.648 330.484 25.152C330.764 24.656 331.144 24.272 331.624 24C332.112 23.72 332.66 23.58 333.268 23.58C333.876 23.58 334.416 23.72 334.888 24C335.368 24.272 335.74 24.656 336.004 25.152C336.276 25.648 336.412 26.216 336.412 26.856ZM333.268 24.552C332.716 24.552 332.252 24.72 331.876 25.056C331.508 25.392 331.292 25.832 331.228 26.376H335.308C335.244 25.84 335.024 25.404 334.648 25.068C334.28 24.724 333.82 24.552 333.268 24.552ZM339.116 24.708C339.316 24.34 339.612 24.06 340.004 23.868C340.396 23.676 340.872 23.58 341.432 23.58V24.696C341.368 24.688 341.28 24.684 341.168 24.684C340.544 24.684 340.052 24.872 339.692 25.248C339.34 25.616 339.164 26.144 339.164 26.832V30H338.012V23.64H339.116V24.708Z" fill="#465361"/>
148
+ </g>
149
+ <g id="Group 2154_3">
150
+ <g id="Group 2153_4">
151
+ <path id="Rectangle 478_3" d="M145.449 20.5506C146.937 16.044 151.148 13 155.894 13H217.809C222.555 13 226.766 16.0439 228.254 20.5506L233.852 37.5H139.852L145.449 20.5506Z" fill="#E5EAEF"/>
152
+ <path id="Filter" d="M173.472 22.144V25.072H177.684V26.104H173.472V29.5H172.272V21.1H178.2V22.144H173.472ZM179.604 23.14H180.756V29.5H179.604V23.14ZM180.18 21.916C179.956 21.916 179.768 21.844 179.616 21.7C179.472 21.556 179.4 21.38 179.4 21.172C179.4 20.964 179.472 20.788 179.616 20.644C179.768 20.492 179.956 20.416 180.18 20.416C180.404 20.416 180.588 20.488 180.732 20.632C180.884 20.768 180.96 20.94 180.96 21.148C180.96 21.364 180.884 21.548 180.732 21.7C180.588 21.844 180.404 21.916 180.18 21.916ZM182.955 20.596H184.107V29.5H182.955V20.596ZM190.035 29.128C189.867 29.272 189.659 29.384 189.411 29.464C189.163 29.536 188.907 29.572 188.643 29.572C188.003 29.572 187.507 29.4 187.155 29.056C186.803 28.712 186.627 28.22 186.627 27.58V24.088H185.547V23.14H186.627V21.748H187.779V23.14H189.603V24.088H187.779V27.532C187.779 27.876 187.863 28.14 188.031 28.324C188.207 28.508 188.455 28.6 188.775 28.6C189.127 28.6 189.427 28.5 189.675 28.3L190.035 29.128ZM196.965 26.356C196.965 26.444 196.957 26.56 196.941 26.704H191.781C191.853 27.264 192.097 27.716 192.513 28.06C192.937 28.396 193.461 28.564 194.085 28.564C194.845 28.564 195.457 28.308 195.921 27.796L196.557 28.54C196.269 28.876 195.909 29.132 195.477 29.308C195.053 29.484 194.577 29.572 194.049 29.572C193.377 29.572 192.781 29.436 192.261 29.164C191.741 28.884 191.337 28.496 191.049 28C190.769 27.504 190.629 26.944 190.629 26.32C190.629 25.704 190.765 25.148 191.037 24.652C191.317 24.156 191.697 23.772 192.177 23.5C192.665 23.22 193.213 23.08 193.821 23.08C194.429 23.08 194.969 23.22 195.441 23.5C195.921 23.772 196.293 24.156 196.557 24.652C196.829 25.148 196.965 25.716 196.965 26.356ZM193.821 24.052C193.269 24.052 192.805 24.22 192.429 24.556C192.061 24.892 191.845 25.332 191.781 25.876H195.861C195.797 25.34 195.577 24.904 195.201 24.568C194.833 24.224 194.373 24.052 193.821 24.052ZM199.669 24.208C199.869 23.84 200.165 23.56 200.557 23.368C200.949 23.176 201.425 23.08 201.985 23.08V24.196C201.921 24.188 201.833 24.184 201.721 24.184C201.097 24.184 200.605 24.372 200.245 24.748C199.893 25.116 199.717 25.644 199.717 26.332V29.5H198.565V23.14H199.669V24.208Z" fill="#465361"/>
153
+ </g>
154
+ </g>
155
+ <g id="Group 2155_2">
156
+ <g id="Group 2153_5">
157
+ <path id="Rectangle 478_4" d="M359.449 20.5506C360.937 16.044 365.148 13 369.894 13H421.809C426.555 13 430.766 16.0439 432.254 20.5506L437.852 37.5H353.852L359.449 20.5506Z" fill="#E5EAEF"/>
158
+ <path id="FTP/SFTP" d="M373.239 23.37V25.81H376.749V26.67H373.239V29.5H372.239V22.5H377.179V23.37H373.239ZM380.026 23.37H377.626V22.5H383.416V23.37H381.016V29.5H380.026V23.37ZM387.235 22.5C388.142 22.5 388.855 22.7167 389.375 23.15C389.895 23.5833 390.155 24.18 390.155 24.94C390.155 25.7 389.895 26.2967 389.375 26.73C388.855 27.1633 388.142 27.38 387.235 27.38H385.505V29.5H384.505V22.5H387.235ZM387.205 26.51C387.838 26.51 388.322 26.3767 388.655 26.11C388.988 25.8367 389.155 25.4467 389.155 24.94C389.155 24.4333 388.988 24.0467 388.655 23.78C388.322 23.5067 387.838 23.37 387.205 23.37H385.505V26.51H387.205ZM393.223 21.08H394.093L390.793 30.5H389.923L393.223 21.08ZM396.613 29.58C396.087 29.58 395.577 29.5 395.083 29.34C394.597 29.1733 394.213 28.96 393.933 28.7L394.303 27.92C394.57 28.16 394.91 28.3567 395.323 28.51C395.743 28.6567 396.173 28.73 396.613 28.73C397.193 28.73 397.627 28.6333 397.913 28.44C398.2 28.24 398.343 27.9767 398.343 27.65C398.343 27.41 398.263 27.2167 398.103 27.07C397.95 26.9167 397.757 26.8 397.523 26.72C397.297 26.64 396.973 26.55 396.553 26.45C396.027 26.3233 395.6 26.1967 395.273 26.07C394.953 25.9433 394.677 25.75 394.443 25.49C394.217 25.2233 394.103 24.8667 394.103 24.42C394.103 24.0467 394.2 23.71 394.393 23.41C394.593 23.11 394.893 22.87 395.293 22.69C395.693 22.51 396.19 22.42 396.783 22.42C397.197 22.42 397.603 22.4733 398.003 22.58C398.403 22.6867 398.747 22.84 399.033 23.04L398.703 23.84C398.41 23.6533 398.097 23.5133 397.763 23.42C397.43 23.32 397.103 23.27 396.783 23.27C396.217 23.27 395.79 23.3733 395.503 23.58C395.223 23.7867 395.083 24.0533 395.083 24.38C395.083 24.62 395.163 24.8167 395.323 24.97C395.483 25.1167 395.68 25.2333 395.913 25.32C396.153 25.4 396.477 25.4867 396.883 25.58C397.41 25.7067 397.833 25.8333 398.153 25.96C398.473 26.0867 398.747 26.28 398.973 26.54C399.207 26.8 399.323 27.15 399.323 27.59C399.323 27.9567 399.223 28.2933 399.023 28.6C398.823 28.9 398.52 29.14 398.113 29.32C397.707 29.4933 397.207 29.58 396.613 29.58ZM401.784 23.37V25.81H405.294V26.67H401.784V29.5H400.784V22.5H405.724V23.37H401.784ZM408.571 23.37H406.171V22.5H411.961V23.37H409.561V29.5H408.571V23.37ZM415.78 22.5C416.687 22.5 417.4 22.7167 417.92 23.15C418.44 23.5833 418.7 24.18 418.7 24.94C418.7 25.7 418.44 26.2967 417.92 26.73C417.4 27.1633 416.687 27.38 415.78 27.38H414.05V29.5H413.05V22.5H415.78ZM415.75 26.51C416.383 26.51 416.867 26.3767 417.2 26.11C417.533 25.8367 417.7 25.4467 417.7 24.94C417.7 24.4333 417.533 24.0467 417.2 23.78C416.867 23.5067 416.383 23.37 415.75 23.37H414.05V26.51H415.75Z" fill="#465361"/>
159
+ </g>
160
+ </g>
161
+ </g>
162
+ </g>
163
+ </g>
164
+ </g>
165
+ <defs>
166
+ <filter id="filter0_d" x="0" y="17" width="530" height="287" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
167
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
168
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
169
+ <feOffset/>
170
+ <feGaussianBlur stdDeviation="2.5"/>
171
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.447059 0 0 0 0 0.815686 0 0 0 0.1 0"/>
172
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
173
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
174
+ </filter>
175
+ <linearGradient id="paint0_linear" x1="41.6569" y1="256" x2="68.7208" y2="202.38" gradientUnits="userSpaceOnUse">
176
+ <stop stop-color="#3D41DA"/>
177
+ <stop offset="1" stop-color="#0088F7"/>
178
+ </linearGradient>
179
+ <linearGradient id="paint1_linear" x1="116.263" y1="220" x2="118.314" y2="217.434" gradientUnits="userSpaceOnUse">
180
+ <stop stop-color="#3D41DA"/>
181
+ <stop offset="1" stop-color="#0088F7"/>
182
+ </linearGradient>
183
+ <linearGradient id="paint2_linear" x1="112.263" y1="211" x2="114.314" y2="208.434" gradientUnits="userSpaceOnUse">
184
+ <stop stop-color="#3D41DA"/>
185
+ <stop offset="1" stop-color="#0088F7"/>
186
+ </linearGradient>
187
+ <linearGradient id="paint3_linear" x1="105.263" y1="221" x2="107.314" y2="218.434" gradientUnits="userSpaceOnUse">
188
+ <stop stop-color="#3D41DA"/>
189
+ <stop offset="1" stop-color="#0088F7"/>
190
+ </linearGradient>
191
+ </defs>
192
+ </svg>
admin/images/feature-auto-update-interval-thumbnail.svg ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="580" height="431" viewBox="0 0 580 431" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g opacity="0.8">
3
+ <rect x="50" y="35" width="520" height="371" rx="10" fill="#F6FAFD"/>
4
+ <g filter="url(#filter0_d)">
5
+ <path d="M30 25C30 19.4772 34.4772 15 40 15H540C545.523 15 550 19.4772 550 25V376C550 381.523 545.523 386 540 386H40C34.4772 386 30 381.523 30 376V25Z" fill="white"/>
6
+ </g>
7
+ <path d="M182.5 153.5H312.5V351C312.5 353.485 310.485 355.5 308 355.5H187C184.515 355.5 182.5 353.485 182.5 351V153.5Z" fill="white" stroke="#E5EAEF"/>
8
+ <rect x="182" y="201" width="131" height="22" fill="#E5EAEF"/>
9
+ <path d="M201.18 185.6V194H199.992V186.644H198.096V185.6H201.18ZM218.792 185.6L215.984 194H214.724L212.432 187.292L210.14 194H208.856L206.048 185.6H207.284L209.552 192.428L211.916 185.6H213.02L215.336 192.464L217.652 185.6H218.792ZM225.36 190.856C225.36 190.944 225.352 191.06 225.336 191.204H220.176C220.248 191.764 220.492 192.216 220.908 192.56C221.332 192.896 221.856 193.064 222.48 193.064C223.24 193.064 223.852 192.808 224.316 192.296L224.952 193.04C224.664 193.376 224.304 193.632 223.872 193.808C223.448 193.984 222.972 194.072 222.444 194.072C221.772 194.072 221.176 193.936 220.656 193.664C220.136 193.384 219.732 192.996 219.444 192.5C219.164 192.004 219.024 191.444 219.024 190.82C219.024 190.204 219.16 189.648 219.432 189.152C219.712 188.656 220.092 188.272 220.572 188C221.06 187.72 221.608 187.58 222.216 187.58C222.824 187.58 223.364 187.72 223.836 188C224.316 188.272 224.688 188.656 224.952 189.152C225.224 189.648 225.36 190.216 225.36 190.856ZM222.216 188.552C221.664 188.552 221.2 188.72 220.824 189.056C220.456 189.392 220.24 189.832 220.176 190.376H224.256C224.192 189.84 223.972 189.404 223.596 189.068C223.228 188.724 222.768 188.552 222.216 188.552ZM232.707 190.856C232.707 190.944 232.699 191.06 232.683 191.204H227.523C227.595 191.764 227.839 192.216 228.255 192.56C228.679 192.896 229.203 193.064 229.827 193.064C230.587 193.064 231.199 192.808 231.663 192.296L232.299 193.04C232.011 193.376 231.651 193.632 231.219 193.808C230.795 193.984 230.319 194.072 229.791 194.072C229.119 194.072 228.523 193.936 228.003 193.664C227.483 193.384 227.079 192.996 226.791 192.5C226.511 192.004 226.371 191.444 226.371 190.82C226.371 190.204 226.507 189.648 226.779 189.152C227.059 188.656 227.439 188.272 227.919 188C228.407 187.72 228.955 187.58 229.563 187.58C230.171 187.58 230.711 187.72 231.183 188C231.663 188.272 232.035 188.656 232.299 189.152C232.571 189.648 232.707 190.216 232.707 190.856ZM229.563 188.552C229.011 188.552 228.547 188.72 228.171 189.056C227.803 189.392 227.587 189.832 227.523 190.376H231.603C231.539 189.84 231.319 189.404 230.943 189.068C230.575 188.724 230.115 188.552 229.563 188.552ZM236.779 191.036L235.459 192.26V194H234.307V185.096H235.459V190.808L238.927 187.64H240.319L237.643 190.268L240.583 194H239.167L236.779 191.036ZM204.48 214.956V216H198.444V215.184L201.864 211.884C202.28 211.484 202.56 211.14 202.704 210.852C202.848 210.556 202.92 210.26 202.92 209.964C202.92 209.524 202.764 209.184 202.452 208.944C202.148 208.696 201.708 208.572 201.132 208.572C200.204 208.572 199.488 208.876 198.984 209.484L198.168 208.776C198.496 208.376 198.924 208.064 199.452 207.84C199.988 207.616 200.584 207.504 201.24 207.504C202.12 207.504 202.82 207.716 203.34 208.14C203.86 208.556 204.12 209.124 204.12 209.844C204.12 210.292 204.024 210.716 203.832 211.116C203.64 211.516 203.276 211.972 202.74 212.484L200.172 214.956H204.48ZM212.552 213.936H210.956V216H209.792V213.936H205.124V213.096L209.42 207.6H210.716L206.6 212.904H209.828V211.08H210.956V212.904H212.552V213.936ZM224.402 207.6V216H223.202V212.256H218.378V216H217.178V207.6H218.378V211.212H223.202V207.6H224.402ZM229.472 216.072C228.84 216.072 228.272 215.932 227.768 215.652C227.264 215.372 226.868 214.988 226.58 214.5C226.3 214.004 226.16 213.444 226.16 212.82C226.16 212.196 226.3 211.64 226.58 211.152C226.868 210.656 227.264 210.272 227.768 210C228.272 209.72 228.84 209.58 229.472 209.58C230.104 209.58 230.668 209.72 231.164 210C231.668 210.272 232.06 210.656 232.34 211.152C232.628 211.64 232.772 212.196 232.772 212.82C232.772 213.444 232.628 214.004 232.34 214.5C232.06 214.988 231.668 215.372 231.164 215.652C230.668 215.932 230.104 216.072 229.472 216.072ZM229.472 215.064C229.88 215.064 230.244 214.972 230.564 214.788C230.892 214.596 231.148 214.332 231.332 213.996C231.516 213.652 231.608 213.26 231.608 212.82C231.608 212.38 231.516 211.992 231.332 211.656C231.148 211.312 230.892 211.048 230.564 210.864C230.244 210.68 229.88 210.588 229.472 210.588C229.064 210.588 228.696 210.68 228.368 210.864C228.048 211.048 227.792 211.312 227.6 211.656C227.416 211.992 227.324 212.38 227.324 212.82C227.324 213.26 227.416 213.652 227.6 213.996C227.792 214.332 228.048 214.596 228.368 214.788C228.696 214.972 229.064 215.064 229.472 215.064ZM240.293 209.64V216H239.201V215.04C238.969 215.368 238.661 215.624 238.277 215.808C237.901 215.984 237.489 216.072 237.041 216.072C236.193 216.072 235.525 215.84 235.037 215.376C234.549 214.904 234.305 214.212 234.305 213.3V209.64H235.457V213.168C235.457 213.784 235.605 214.252 235.901 214.572C236.197 214.884 236.621 215.04 237.173 215.04C237.781 215.04 238.261 214.856 238.613 214.488C238.965 214.12 239.141 213.6 239.141 212.928V209.64H240.293ZM243.591 210.708C243.791 210.34 244.087 210.06 244.479 209.868C244.871 209.676 245.347 209.58 245.907 209.58V210.696C245.843 210.688 245.755 210.684 245.643 210.684C245.019 210.684 244.527 210.872 244.167 211.248C243.815 211.616 243.639 212.144 243.639 212.832V216H242.487V209.64H243.591V210.708ZM249.197 216.072C248.677 216.072 248.177 216.004 247.697 215.868C247.217 215.724 246.841 215.544 246.569 215.328L247.049 214.416C247.329 214.616 247.669 214.776 248.069 214.896C248.469 215.016 248.873 215.076 249.281 215.076C250.289 215.076 250.793 214.788 250.793 214.212C250.793 214.02 250.725 213.868 250.589 213.756C250.453 213.644 250.281 213.564 250.073 213.516C249.873 213.46 249.585 213.4 249.209 213.336C248.697 213.256 248.277 213.164 247.949 213.06C247.629 212.956 247.353 212.78 247.121 212.532C246.889 212.284 246.773 211.936 246.773 211.488C246.773 210.912 247.013 210.452 247.493 210.108C247.973 209.756 248.617 209.58 249.425 209.58C249.849 209.58 250.273 209.632 250.697 209.736C251.121 209.84 251.469 209.98 251.741 210.156L251.249 211.068C250.729 210.732 250.117 210.564 249.413 210.564C248.925 210.564 248.553 210.644 248.297 210.804C248.041 210.964 247.913 211.176 247.913 211.44C247.913 211.648 247.985 211.812 248.129 211.932C248.273 212.052 248.449 212.14 248.657 212.196C248.873 212.252 249.173 212.316 249.557 212.388C250.069 212.476 250.481 212.572 250.793 212.676C251.113 212.772 251.385 212.94 251.609 213.18C251.833 213.42 251.945 213.756 251.945 214.188C251.945 214.764 251.697 215.224 251.201 215.568C250.713 215.904 250.045 216.072 249.197 216.072ZM201.18 229.6V238H199.992V230.644H198.096V229.6H201.18ZM208.921 236.956V238H202.885V237.184L206.305 233.884C206.721 233.484 207.001 233.14 207.145 232.852C207.289 232.556 207.361 232.26 207.361 231.964C207.361 231.524 207.205 231.184 206.893 230.944C206.589 230.696 206.149 230.572 205.573 230.572C204.645 230.572 203.929 230.876 203.425 231.484L202.609 230.776C202.937 230.376 203.365 230.064 203.893 229.84C204.429 229.616 205.025 229.504 205.681 229.504C206.561 229.504 207.261 229.716 207.781 230.14C208.301 230.556 208.561 231.124 208.561 231.844C208.561 232.292 208.465 232.716 208.273 233.116C208.081 233.516 207.717 233.972 207.181 234.484L204.613 236.956H208.921ZM221.039 229.6V238H219.839V234.256H215.015V238H213.815V229.6H215.015V233.212H219.839V229.6H221.039ZM226.109 238.072C225.477 238.072 224.909 237.932 224.405 237.652C223.901 237.372 223.505 236.988 223.217 236.5C222.937 236.004 222.797 235.444 222.797 234.82C222.797 234.196 222.937 233.64 223.217 233.152C223.505 232.656 223.901 232.272 224.405 232C224.909 231.72 225.477 231.58 226.109 231.58C226.741 231.58 227.305 231.72 227.801 232C228.305 232.272 228.697 232.656 228.977 233.152C229.265 233.64 229.409 234.196 229.409 234.82C229.409 235.444 229.265 236.004 228.977 236.5C228.697 236.988 228.305 237.372 227.801 237.652C227.305 237.932 226.741 238.072 226.109 238.072ZM226.109 237.064C226.517 237.064 226.881 236.972 227.201 236.788C227.529 236.596 227.785 236.332 227.969 235.996C228.153 235.652 228.245 235.26 228.245 234.82C228.245 234.38 228.153 233.992 227.969 233.656C227.785 233.312 227.529 233.048 227.201 232.864C226.881 232.68 226.517 232.588 226.109 232.588C225.701 232.588 225.333 232.68 225.005 232.864C224.685 233.048 224.429 233.312 224.237 233.656C224.053 233.992 223.961 234.38 223.961 234.82C223.961 235.26 224.053 235.652 224.237 235.996C224.429 236.332 224.685 236.596 225.005 236.788C225.333 236.972 225.701 237.064 226.109 237.064ZM236.93 231.64V238H235.838V237.04C235.606 237.368 235.298 237.624 234.914 237.808C234.538 237.984 234.126 238.072 233.678 238.072C232.83 238.072 232.162 237.84 231.674 237.376C231.186 236.904 230.942 236.212 230.942 235.3V231.64H232.094V235.168C232.094 235.784 232.242 236.252 232.538 236.572C232.834 236.884 233.258 237.04 233.81 237.04C234.418 237.04 234.898 236.856 235.25 236.488C235.602 236.12 235.778 235.6 235.778 234.928V231.64H236.93ZM240.227 232.708C240.427 232.34 240.723 232.06 241.115 231.868C241.507 231.676 241.983 231.58 242.543 231.58V232.696C242.479 232.688 242.391 232.684 242.279 232.684C241.655 232.684 241.163 232.872 240.803 233.248C240.451 233.616 240.275 234.144 240.275 234.832V238H239.123V231.64H240.227V232.708ZM245.834 238.072C245.314 238.072 244.814 238.004 244.334 237.868C243.854 237.724 243.478 237.544 243.206 237.328L243.686 236.416C243.966 236.616 244.306 236.776 244.706 236.896C245.106 237.016 245.51 237.076 245.918 237.076C246.926 237.076 247.43 236.788 247.43 236.212C247.43 236.02 247.362 235.868 247.226 235.756C247.09 235.644 246.918 235.564 246.71 235.516C246.51 235.46 246.222 235.4 245.846 235.336C245.334 235.256 244.914 235.164 244.586 235.06C244.266 234.956 243.99 234.78 243.758 234.532C243.526 234.284 243.41 233.936 243.41 233.488C243.41 232.912 243.65 232.452 244.13 232.108C244.61 231.756 245.254 231.58 246.062 231.58C246.486 231.58 246.91 231.632 247.334 231.736C247.758 231.84 248.106 231.98 248.378 232.156L247.886 233.068C247.366 232.732 246.754 232.564 246.05 232.564C245.562 232.564 245.19 232.644 244.934 232.804C244.678 232.964 244.55 233.176 244.55 233.44C244.55 233.648 244.622 233.812 244.766 233.932C244.91 234.052 245.086 234.14 245.294 234.196C245.51 234.252 245.81 234.316 246.194 234.388C246.706 234.476 247.118 234.572 247.43 234.676C247.75 234.772 248.022 234.94 248.246 235.18C248.47 235.42 248.582 235.756 248.582 236.188C248.582 236.764 248.334 237.224 247.838 237.568C247.35 237.904 246.682 238.072 245.834 238.072ZM202.2 254.9C202.752 254.9 203.244 255.004 203.676 255.212C204.116 255.42 204.46 255.72 204.708 256.112C204.956 256.496 205.08 256.94 205.08 257.444C205.08 257.972 204.948 258.436 204.684 258.836C204.428 259.236 204.072 259.548 203.616 259.772C203.168 259.988 202.664 260.096 202.104 260.096C200.976 260.096 200.104 259.732 199.488 259.004C198.88 258.276 198.576 257.244 198.576 255.908C198.576 254.972 198.74 254.176 199.068 253.52C199.404 252.856 199.868 252.356 200.46 252.02C201.06 251.676 201.756 251.504 202.548 251.504C202.956 251.504 203.34 251.548 203.7 251.636C204.06 251.716 204.372 251.836 204.636 251.996L204.18 252.932C203.78 252.668 203.244 252.536 202.572 252.536C201.7 252.536 201.016 252.808 200.52 253.352C200.024 253.888 199.776 254.672 199.776 255.704C199.776 255.832 199.78 255.932 199.788 256.004C200.028 255.644 200.356 255.372 200.772 255.188C201.196 254.996 201.672 254.9 202.2 254.9ZM202.056 259.124C202.608 259.124 203.056 258.976 203.4 258.68C203.744 258.384 203.916 257.988 203.916 257.492C203.916 256.996 203.74 256.604 203.388 256.316C203.044 256.02 202.58 255.872 201.996 255.872C201.62 255.872 201.284 255.944 200.988 256.088C200.7 256.232 200.472 256.428 200.304 256.676C200.144 256.924 200.064 257.2 200.064 257.504C200.064 257.8 200.14 258.072 200.292 258.32C200.452 258.56 200.68 258.756 200.976 258.908C201.28 259.052 201.64 259.124 202.056 259.124ZM217.113 251.6V260H215.913V256.256H211.089V260H209.889V251.6H211.089V255.212H215.913V251.6H217.113ZM222.183 260.072C221.551 260.072 220.983 259.932 220.479 259.652C219.975 259.372 219.579 258.988 219.291 258.5C219.011 258.004 218.871 257.444 218.871 256.82C218.871 256.196 219.011 255.64 219.291 255.152C219.579 254.656 219.975 254.272 220.479 254C220.983 253.72 221.551 253.58 222.183 253.58C222.815 253.58 223.379 253.72 223.875 254C224.379 254.272 224.771 254.656 225.051 255.152C225.339 255.64 225.483 256.196 225.483 256.82C225.483 257.444 225.339 258.004 225.051 258.5C224.771 258.988 224.379 259.372 223.875 259.652C223.379 259.932 222.815 260.072 222.183 260.072ZM222.183 259.064C222.591 259.064 222.955 258.972 223.275 258.788C223.603 258.596 223.859 258.332 224.043 257.996C224.227 257.652 224.319 257.26 224.319 256.82C224.319 256.38 224.227 255.992 224.043 255.656C223.859 255.312 223.603 255.048 223.275 254.864C222.955 254.68 222.591 254.588 222.183 254.588C221.775 254.588 221.407 254.68 221.079 254.864C220.759 255.048 220.503 255.312 220.311 255.656C220.127 255.992 220.035 256.38 220.035 256.82C220.035 257.26 220.127 257.652 220.311 257.996C220.503 258.332 220.759 258.596 221.079 258.788C221.407 258.972 221.775 259.064 222.183 259.064ZM233.004 253.64V260H231.912V259.04C231.68 259.368 231.372 259.624 230.988 259.808C230.612 259.984 230.2 260.072 229.752 260.072C228.904 260.072 228.236 259.84 227.748 259.376C227.26 258.904 227.016 258.212 227.016 257.3V253.64H228.168V257.168C228.168 257.784 228.316 258.252 228.612 258.572C228.908 258.884 229.332 259.04 229.884 259.04C230.492 259.04 230.972 258.856 231.324 258.488C231.676 258.12 231.852 257.6 231.852 256.928V253.64H233.004ZM236.301 254.708C236.501 254.34 236.797 254.06 237.189 253.868C237.581 253.676 238.057 253.58 238.617 253.58V254.696C238.553 254.688 238.465 254.684 238.353 254.684C237.729 254.684 237.237 254.872 236.877 255.248C236.525 255.616 236.349 256.144 236.349 256.832V260H235.197V253.64H236.301V254.708ZM241.908 260.072C241.388 260.072 240.888 260.004 240.408 259.868C239.928 259.724 239.552 259.544 239.28 259.328L239.76 258.416C240.04 258.616 240.38 258.776 240.78 258.896C241.18 259.016 241.584 259.076 241.992 259.076C243 259.076 243.504 258.788 243.504 258.212C243.504 258.02 243.436 257.868 243.3 257.756C243.164 257.644 242.992 257.564 242.784 257.516C242.584 257.46 242.296 257.4 241.92 257.336C241.408 257.256 240.988 257.164 240.66 257.06C240.34 256.956 240.064 256.78 239.832 256.532C239.6 256.284 239.484 255.936 239.484 255.488C239.484 254.912 239.724 254.452 240.204 254.108C240.684 253.756 241.328 253.58 242.136 253.58C242.56 253.58 242.984 253.632 243.408 253.736C243.832 253.84 244.18 253.98 244.452 254.156L243.96 255.068C243.44 254.732 242.828 254.564 242.124 254.564C241.636 254.564 241.264 254.644 241.008 254.804C240.752 254.964 240.624 255.176 240.624 255.44C240.624 255.648 240.696 255.812 240.84 255.932C240.984 256.052 241.16 256.14 241.368 256.196C241.584 256.252 241.884 256.316 242.268 256.388C242.78 256.476 243.192 256.572 243.504 256.676C243.824 256.772 244.096 256.94 244.32 257.18C244.544 257.42 244.656 257.756 244.656 258.188C244.656 258.764 244.408 259.224 243.912 259.568C243.424 259.904 242.756 260.072 241.908 260.072ZM201.18 273.6V282H199.992V274.644H198.096V273.6H201.18ZM214.148 273.6V282H212.948V278.256H208.124V282H206.924V273.6H208.124V277.212H212.948V273.6H214.148ZM219.218 282.072C218.586 282.072 218.018 281.932 217.514 281.652C217.01 281.372 216.614 280.988 216.326 280.5C216.046 280.004 215.906 279.444 215.906 278.82C215.906 278.196 216.046 277.64 216.326 277.152C216.614 276.656 217.01 276.272 217.514 276C218.018 275.72 218.586 275.58 219.218 275.58C219.85 275.58 220.414 275.72 220.91 276C221.414 276.272 221.806 276.656 222.086 277.152C222.374 277.64 222.518 278.196 222.518 278.82C222.518 279.444 222.374 280.004 222.086 280.5C221.806 280.988 221.414 281.372 220.91 281.652C220.414 281.932 219.85 282.072 219.218 282.072ZM219.218 281.064C219.626 281.064 219.99 280.972 220.31 280.788C220.638 280.596 220.894 280.332 221.078 279.996C221.262 279.652 221.354 279.26 221.354 278.82C221.354 278.38 221.262 277.992 221.078 277.656C220.894 277.312 220.638 277.048 220.31 276.864C219.99 276.68 219.626 276.588 219.218 276.588C218.81 276.588 218.442 276.68 218.114 276.864C217.794 277.048 217.538 277.312 217.346 277.656C217.162 277.992 217.07 278.38 217.07 278.82C217.07 279.26 217.162 279.652 217.346 279.996C217.538 280.332 217.794 280.596 218.114 280.788C218.442 280.972 218.81 281.064 219.218 281.064ZM230.04 275.64V282H228.948V281.04C228.716 281.368 228.408 281.624 228.024 281.808C227.648 281.984 227.236 282.072 226.788 282.072C225.94 282.072 225.272 281.84 224.784 281.376C224.296 280.904 224.052 280.212 224.052 279.3V275.64H225.204V279.168C225.204 279.784 225.352 280.252 225.648 280.572C225.944 280.884 226.368 281.04 226.92 281.04C227.528 281.04 228.008 280.856 228.36 280.488C228.712 280.12 228.888 279.6 228.888 278.928V275.64H230.04ZM233.337 276.708C233.537 276.34 233.833 276.06 234.225 275.868C234.617 275.676 235.093 275.58 235.653 275.58V276.696C235.589 276.688 235.501 276.684 235.389 276.684C234.765 276.684 234.273 276.872 233.913 277.248C233.561 277.616 233.385 278.144 233.385 278.832V282H232.233V275.64H233.337V276.708ZM201.792 299.128C202.616 299.208 203.244 299.464 203.676 299.896C204.108 300.32 204.324 300.864 204.324 301.528C204.324 302.008 204.204 302.444 203.964 302.836C203.724 303.22 203.364 303.528 202.884 303.76C202.412 303.984 201.832 304.096 201.144 304.096C200.544 304.096 199.968 304.008 199.416 303.832C198.864 303.648 198.412 303.396 198.06 303.076L198.612 302.128C198.9 302.4 199.268 302.62 199.716 302.788C200.164 302.948 200.64 303.028 201.144 303.028C201.768 303.028 202.252 302.896 202.596 302.632C202.948 302.368 203.124 302.004 203.124 301.54C203.124 301.076 202.952 300.716 202.608 300.46C202.264 300.204 201.744 300.076 201.048 300.076H200.376V299.236L202.488 296.644H198.444V295.6H203.988V296.416L201.792 299.128ZM208.875 304.096C208.211 304.096 207.619 303.928 207.099 303.592C206.587 303.248 206.183 302.752 205.887 302.104C205.591 301.456 205.443 300.688 205.443 299.8C205.443 298.912 205.591 298.144 205.887 297.496C206.183 296.848 206.587 296.356 207.099 296.02C207.619 295.676 208.211 295.504 208.875 295.504C209.531 295.504 210.115 295.676 210.627 296.02C211.147 296.356 211.555 296.848 211.851 297.496C212.147 298.144 212.295 298.912 212.295 299.8C212.295 300.688 212.147 301.456 211.851 302.104C211.555 302.752 211.147 303.248 210.627 303.592C210.115 303.928 209.531 304.096 208.875 304.096ZM208.875 303.028C209.547 303.028 210.083 302.752 210.483 302.2C210.891 301.648 211.095 300.848 211.095 299.8C211.095 298.752 210.891 297.952 210.483 297.4C210.083 296.848 209.547 296.572 208.875 296.572C208.195 296.572 207.651 296.848 207.243 297.4C206.843 297.952 206.643 298.752 206.643 299.8C206.643 300.848 206.843 301.648 207.243 302.2C207.651 302.752 208.195 303.028 208.875 303.028ZM225.142 304L225.13 297.88L222.094 302.98H221.542L218.506 297.916V304H217.354V295.6H218.338L221.842 301.504L225.298 295.6H226.282L226.294 304H225.142ZM228.647 297.64H229.799V304H228.647V297.64ZM229.223 296.416C228.999 296.416 228.811 296.344 228.659 296.2C228.515 296.056 228.443 295.88 228.443 295.672C228.443 295.464 228.515 295.288 228.659 295.144C228.811 294.992 228.999 294.916 229.223 294.916C229.447 294.916 229.631 294.988 229.775 295.132C229.927 295.268 230.003 295.44 230.003 295.648C230.003 295.864 229.927 296.048 229.775 296.2C229.631 296.344 229.447 296.416 229.223 296.416ZM235.394 297.58C236.202 297.58 236.842 297.816 237.314 298.288C237.794 298.752 238.034 299.436 238.034 300.34V304H236.882V300.472C236.882 299.856 236.734 299.392 236.438 299.08C236.142 298.768 235.718 298.612 235.166 298.612C234.542 298.612 234.05 298.796 233.69 299.164C233.33 299.524 233.15 300.044 233.15 300.724V304H231.998V297.64H233.102V298.6C233.334 298.272 233.646 298.02 234.038 297.844C234.438 297.668 234.89 297.58 235.394 297.58ZM246.094 297.64V304H245.002V303.04C244.77 303.368 244.462 303.624 244.078 303.808C243.702 303.984 243.29 304.072 242.842 304.072C241.994 304.072 241.326 303.84 240.838 303.376C240.35 302.904 240.106 302.212 240.106 301.3V297.64H241.258V301.168C241.258 301.784 241.406 302.252 241.702 302.572C241.998 302.884 242.422 303.04 242.974 303.04C243.582 303.04 244.062 302.856 244.414 302.488C244.766 302.12 244.942 301.6 244.942 300.928V297.64H246.094ZM251.863 303.628C251.695 303.772 251.487 303.884 251.239 303.964C250.991 304.036 250.735 304.072 250.471 304.072C249.831 304.072 249.335 303.9 248.983 303.556C248.631 303.212 248.455 302.72 248.455 302.08V298.588H247.375V297.64H248.455V296.248H249.607V297.64H251.431V298.588H249.607V302.032C249.607 302.376 249.691 302.64 249.859 302.824C250.035 303.008 250.283 303.1 250.603 303.1C250.955 303.1 251.255 303 251.503 302.8L251.863 303.628ZM258.793 300.856C258.793 300.944 258.785 301.06 258.769 301.204H253.609C253.681 301.764 253.925 302.216 254.341 302.56C254.765 302.896 255.289 303.064 255.913 303.064C256.673 303.064 257.285 302.808 257.749 302.296L258.385 303.04C258.097 303.376 257.737 303.632 257.305 303.808C256.881 303.984 256.405 304.072 255.877 304.072C255.205 304.072 254.609 303.936 254.089 303.664C253.569 303.384 253.165 302.996 252.877 302.5C252.597 302.004 252.457 301.444 252.457 300.82C252.457 300.204 252.593 299.648 252.865 299.152C253.145 298.656 253.525 298.272 254.005 298C254.493 297.72 255.041 297.58 255.649 297.58C256.257 297.58 256.797 297.72 257.269 298C257.749 298.272 258.121 298.656 258.385 299.152C258.657 299.648 258.793 300.216 258.793 300.856ZM255.649 298.552C255.097 298.552 254.633 298.72 254.257 299.056C253.889 299.392 253.673 299.832 253.609 300.376H257.689C257.625 299.84 257.405 299.404 257.029 299.068C256.661 298.724 256.201 298.552 255.649 298.552ZM262.217 304.072C261.697 304.072 261.197 304.004 260.717 303.868C260.237 303.724 259.861 303.544 259.589 303.328L260.069 302.416C260.349 302.616 260.689 302.776 261.089 302.896C261.489 303.016 261.893 303.076 262.301 303.076C263.309 303.076 263.813 302.788 263.813 302.212C263.813 302.02 263.745 301.868 263.609 301.756C263.473 301.644 263.301 301.564 263.093 301.516C262.893 301.46 262.605 301.4 262.229 301.336C261.717 301.256 261.297 301.164 260.969 301.06C260.649 300.956 260.373 300.78 260.141 300.532C259.909 300.284 259.793 299.936 259.793 299.488C259.793 298.912 260.033 298.452 260.513 298.108C260.993 297.756 261.637 297.58 262.445 297.58C262.869 297.58 263.293 297.632 263.717 297.736C264.141 297.84 264.489 297.98 264.761 298.156L264.269 299.068C263.749 298.732 263.137 298.564 262.433 298.564C261.945 298.564 261.573 298.644 261.317 298.804C261.061 298.964 260.933 299.176 260.933 299.44C260.933 299.648 261.005 299.812 261.149 299.932C261.293 300.052 261.469 300.14 261.677 300.196C261.893 300.252 262.193 300.316 262.577 300.388C263.089 300.476 263.501 300.572 263.813 300.676C264.133 300.772 264.405 300.94 264.629 301.18C264.853 301.42 264.965 301.756 264.965 302.188C264.965 302.764 264.717 303.224 264.221 303.568C263.733 303.904 263.065 304.072 262.217 304.072ZM201.18 317.6V326H199.992V318.644H198.096V317.6H201.18ZM205.417 320.948C206.617 320.948 207.497 321.176 208.057 321.632C208.625 322.08 208.909 322.696 208.909 323.48C208.909 323.976 208.789 324.424 208.549 324.824C208.317 325.216 207.961 325.528 207.481 325.76C207.009 325.984 206.425 326.096 205.729 326.096C205.137 326.096 204.565 326.008 204.013 325.832C203.461 325.648 203.005 325.396 202.645 325.076L203.197 324.128C203.485 324.4 203.853 324.62 204.301 324.788C204.749 324.948 205.221 325.028 205.717 325.028C206.349 325.028 206.837 324.896 207.181 324.632C207.533 324.36 207.709 323.992 207.709 323.528C207.709 323.024 207.517 322.644 207.133 322.388C206.749 322.124 206.093 321.992 205.165 321.992H203.257L203.701 317.6H208.441V318.644H204.709L204.481 320.948H205.417ZM221.603 326L221.591 319.88L218.555 324.98H218.003L214.967 319.916V326H213.815V317.6H214.799L218.303 323.504L221.759 317.6H222.743L222.755 326H221.603ZM225.108 319.64H226.26V326H225.108V319.64ZM225.684 318.416C225.46 318.416 225.272 318.344 225.12 318.2C224.976 318.056 224.904 317.88 224.904 317.672C224.904 317.464 224.976 317.288 225.12 317.144C225.272 316.992 225.46 316.916 225.684 316.916C225.908 316.916 226.092 316.988 226.236 317.132C226.388 317.268 226.464 317.44 226.464 317.648C226.464 317.864 226.388 318.048 226.236 318.2C226.092 318.344 225.908 318.416 225.684 318.416ZM231.855 319.58C232.663 319.58 233.303 319.816 233.775 320.288C234.255 320.752 234.495 321.436 234.495 322.34V326H233.343V322.472C233.343 321.856 233.195 321.392 232.899 321.08C232.603 320.768 232.179 320.612 231.627 320.612C231.003 320.612 230.511 320.796 230.151 321.164C229.791 321.524 229.611 322.044 229.611 322.724V326H228.459V319.64H229.563V320.6C229.795 320.272 230.107 320.02 230.499 319.844C230.899 319.668 231.351 319.58 231.855 319.58ZM242.555 319.64V326H241.463V325.04C241.231 325.368 240.923 325.624 240.539 325.808C240.163 325.984 239.751 326.072 239.303 326.072C238.455 326.072 237.787 325.84 237.299 325.376C236.811 324.904 236.567 324.212 236.567 323.3V319.64H237.719V323.168C237.719 323.784 237.867 324.252 238.163 324.572C238.459 324.884 238.883 325.04 239.435 325.04C240.043 325.04 240.523 324.856 240.875 324.488C241.227 324.12 241.403 323.6 241.403 322.928V319.64H242.555ZM248.324 325.628C248.156 325.772 247.948 325.884 247.7 325.964C247.452 326.036 247.196 326.072 246.932 326.072C246.292 326.072 245.796 325.9 245.444 325.556C245.092 325.212 244.916 324.72 244.916 324.08V320.588H243.836V319.64H244.916V318.248H246.068V319.64H247.892V320.588H246.068V324.032C246.068 324.376 246.152 324.64 246.32 324.824C246.496 325.008 246.744 325.1 247.064 325.1C247.416 325.1 247.716 325 247.964 324.8L248.324 325.628ZM255.254 322.856C255.254 322.944 255.246 323.06 255.23 323.204H250.07C250.142 323.764 250.386 324.216 250.802 324.56C251.226 324.896 251.75 325.064 252.374 325.064C253.134 325.064 253.746 324.808 254.21 324.296L254.846 325.04C254.558 325.376 254.198 325.632 253.766 325.808C253.342 325.984 252.866 326.072 252.338 326.072C251.666 326.072 251.07 325.936 250.55 325.664C250.03 325.384 249.626 324.996 249.338 324.5C249.058 324.004 248.918 323.444 248.918 322.82C248.918 322.204 249.054 321.648 249.326 321.152C249.606 320.656 249.986 320.272 250.466 320C250.954 319.72 251.502 319.58 252.11 319.58C252.718 319.58 253.258 319.72 253.73 320C254.21 320.272 254.582 320.656 254.846 321.152C255.118 321.648 255.254 322.216 255.254 322.856ZM252.11 320.552C251.558 320.552 251.094 320.72 250.718 321.056C250.35 321.392 250.134 321.832 250.07 322.376H254.15C254.086 321.84 253.866 321.404 253.49 321.068C253.122 320.724 252.662 320.552 252.11 320.552ZM258.678 326.072C258.158 326.072 257.658 326.004 257.178 325.868C256.698 325.724 256.322 325.544 256.05 325.328L256.53 324.416C256.81 324.616 257.15 324.776 257.55 324.896C257.95 325.016 258.354 325.076 258.762 325.076C259.77 325.076 260.274 324.788 260.274 324.212C260.274 324.02 260.206 323.868 260.07 323.756C259.934 323.644 259.762 323.564 259.554 323.516C259.354 323.46 259.066 323.4 258.69 323.336C258.178 323.256 257.758 323.164 257.43 323.06C257.11 322.956 256.834 322.78 256.602 322.532C256.37 322.284 256.254 321.936 256.254 321.488C256.254 320.912 256.494 320.452 256.974 320.108C257.454 319.756 258.098 319.58 258.906 319.58C259.33 319.58 259.754 319.632 260.178 319.736C260.602 319.84 260.95 319.98 261.222 320.156L260.73 321.068C260.21 320.732 259.598 320.564 258.894 320.564C258.406 320.564 258.034 320.644 257.778 320.804C257.522 320.964 257.394 321.176 257.394 321.44C257.394 321.648 257.466 321.812 257.61 321.932C257.754 322.052 257.93 322.14 258.138 322.196C258.354 322.252 258.654 322.316 259.038 322.388C259.55 322.476 259.962 322.572 260.274 322.676C260.594 322.772 260.866 322.94 261.09 323.18C261.314 323.42 261.426 323.756 261.426 324.188C261.426 324.764 261.178 325.224 260.682 325.568C260.194 325.904 259.526 326.072 258.678 326.072ZM200.976 342.948C202.176 342.948 203.056 343.176 203.616 343.632C204.184 344.08 204.468 344.696 204.468 345.48C204.468 345.976 204.348 346.424 204.108 346.824C203.876 347.216 203.52 347.528 203.04 347.76C202.568 347.984 201.984 348.096 201.288 348.096C200.696 348.096 200.124 348.008 199.572 347.832C199.02 347.648 198.564 347.396 198.204 347.076L198.756 346.128C199.044 346.4 199.412 346.62 199.86 346.788C200.308 346.948 200.78 347.028 201.276 347.028C201.908 347.028 202.396 346.896 202.74 346.632C203.092 346.36 203.268 345.992 203.268 345.528C203.268 345.024 203.076 344.644 202.692 344.388C202.308 344.124 201.652 343.992 200.724 343.992H198.816L199.26 339.6H204V340.644H200.268L200.04 342.948H200.976ZM217.161 348L217.149 341.88L214.113 346.98H213.561L210.525 341.916V348H209.373V339.6H210.357L213.861 345.504L217.317 339.6H218.301L218.313 348H217.161ZM220.666 341.64H221.818V348H220.666V341.64ZM221.242 340.416C221.018 340.416 220.83 340.344 220.678 340.2C220.534 340.056 220.462 339.88 220.462 339.672C220.462 339.464 220.534 339.288 220.678 339.144C220.83 338.992 221.018 338.916 221.242 338.916C221.466 338.916 221.65 338.988 221.794 339.132C221.946 339.268 222.022 339.44 222.022 339.648C222.022 339.864 221.946 340.048 221.794 340.2C221.65 340.344 221.466 340.416 221.242 340.416ZM227.414 341.58C228.222 341.58 228.862 341.816 229.334 342.288C229.814 342.752 230.054 343.436 230.054 344.34V348H228.902V344.472C228.902 343.856 228.754 343.392 228.458 343.08C228.162 342.768 227.738 342.612 227.186 342.612C226.562 342.612 226.07 342.796 225.71 343.164C225.35 343.524 225.17 344.044 225.17 344.724V348H224.018V341.64H225.122V342.6C225.354 342.272 225.666 342.02 226.058 341.844C226.458 341.668 226.91 341.58 227.414 341.58ZM238.114 341.64V348H237.022V347.04C236.79 347.368 236.482 347.624 236.098 347.808C235.722 347.984 235.31 348.072 234.862 348.072C234.014 348.072 233.346 347.84 232.858 347.376C232.37 346.904 232.126 346.212 232.126 345.3V341.64H233.278V345.168C233.278 345.784 233.426 346.252 233.722 346.572C234.018 346.884 234.442 347.04 234.994 347.04C235.602 347.04 236.082 346.856 236.434 346.488C236.786 346.12 236.962 345.6 236.962 344.928V341.64H238.114ZM243.883 347.628C243.715 347.772 243.507 347.884 243.259 347.964C243.011 348.036 242.755 348.072 242.491 348.072C241.851 348.072 241.355 347.9 241.003 347.556C240.651 347.212 240.475 346.72 240.475 346.08V342.588H239.395V341.64H240.475V340.248H241.627V341.64H243.451V342.588H241.627V346.032C241.627 346.376 241.711 346.64 241.879 346.824C242.055 347.008 242.303 347.1 242.623 347.1C242.975 347.1 243.275 347 243.523 346.8L243.883 347.628ZM250.813 344.856C250.813 344.944 250.805 345.06 250.789 345.204H245.629C245.701 345.764 245.945 346.216 246.361 346.56C246.785 346.896 247.309 347.064 247.933 347.064C248.693 347.064 249.305 346.808 249.769 346.296L250.405 347.04C250.117 347.376 249.757 347.632 249.325 347.808C248.901 347.984 248.425 348.072 247.897 348.072C247.225 348.072 246.629 347.936 246.109 347.664C245.589 347.384 245.185 346.996 244.897 346.5C244.617 346.004 244.477 345.444 244.477 344.82C244.477 344.204 244.613 343.648 244.885 343.152C245.165 342.656 245.545 342.272 246.025 342C246.513 341.72 247.061 341.58 247.669 341.58C248.277 341.58 248.817 341.72 249.289 342C249.769 342.272 250.141 342.656 250.405 343.152C250.677 343.648 250.813 344.216 250.813 344.856ZM247.669 342.552C247.117 342.552 246.653 342.72 246.277 343.056C245.909 343.392 245.693 343.832 245.629 344.376H249.709C249.645 343.84 249.425 343.404 249.049 343.068C248.681 342.724 248.221 342.552 247.669 342.552ZM254.236 348.072C253.716 348.072 253.216 348.004 252.736 347.868C252.256 347.724 251.88 347.544 251.608 347.328L252.088 346.416C252.368 346.616 252.708 346.776 253.108 346.896C253.508 347.016 253.912 347.076 254.32 347.076C255.328 347.076 255.832 346.788 255.832 346.212C255.832 346.02 255.764 345.868 255.628 345.756C255.492 345.644 255.32 345.564 255.112 345.516C254.912 345.46 254.624 345.4 254.248 345.336C253.736 345.256 253.316 345.164 252.988 345.06C252.668 344.956 252.392 344.78 252.16 344.532C251.928 344.284 251.812 343.936 251.812 343.488C251.812 342.912 252.052 342.452 252.532 342.108C253.012 341.756 253.656 341.58 254.464 341.58C254.888 341.58 255.312 341.632 255.736 341.736C256.16 341.84 256.508 341.98 256.78 342.156L256.288 343.068C255.768 342.732 255.156 342.564 254.452 342.564C253.964 342.564 253.592 342.644 253.336 342.804C253.08 342.964 252.952 343.176 252.952 343.44C252.952 343.648 253.024 343.812 253.168 343.932C253.312 344.052 253.488 344.14 253.696 344.196C253.912 344.252 254.212 344.316 254.596 344.388C255.108 344.476 255.52 344.572 255.832 344.676C256.152 344.772 256.424 344.94 256.648 345.18C256.872 345.42 256.984 345.756 256.984 346.188C256.984 346.764 256.736 347.224 256.24 347.568C255.752 347.904 255.084 348.072 254.236 348.072Z" fill="#465361"/>
10
+ <rect x="349" y="147" width="127" height="32" rx="5" fill="url(#paint0_linear)"/>
11
+ <path d="M370.008 167.096C368.888 167.096 368.016 166.776 367.392 166.136C366.768 165.496 366.456 164.576 366.456 163.376V158.6H367.656V163.328C367.656 165.128 368.444 166.028 370.02 166.028C370.788 166.028 371.376 165.808 371.784 165.368C372.192 164.92 372.396 164.24 372.396 163.328V158.6H373.56V163.376C373.56 164.584 373.248 165.508 372.624 166.148C372 166.78 371.128 167.096 370.008 167.096ZM379.224 160.58C379.84 160.58 380.392 160.716 380.88 160.988C381.368 161.26 381.748 161.64 382.02 162.128C382.3 162.616 382.44 163.18 382.44 163.82C382.44 164.46 382.3 165.028 382.02 165.524C381.748 166.012 381.368 166.392 380.88 166.664C380.392 166.936 379.84 167.072 379.224 167.072C378.768 167.072 378.348 166.984 377.964 166.808C377.588 166.632 377.268 166.376 377.004 166.04V169.328H375.852V160.64H376.956V161.648C377.212 161.296 377.536 161.032 377.928 160.856C378.32 160.672 378.752 160.58 379.224 160.58ZM379.128 166.064C379.536 166.064 379.9 165.972 380.22 165.788C380.548 165.596 380.804 165.332 380.988 164.996C381.18 164.652 381.276 164.26 381.276 163.82C381.276 163.38 381.18 162.992 380.988 162.656C380.804 162.312 380.548 162.048 380.22 161.864C379.9 161.68 379.536 161.588 379.128 161.588C378.728 161.588 378.364 161.684 378.036 161.876C377.716 162.06 377.46 162.32 377.268 162.656C377.084 162.992 376.992 163.38 376.992 163.82C376.992 164.26 377.084 164.652 377.268 164.996C377.452 165.332 377.708 165.596 378.036 165.788C378.364 165.972 378.728 166.064 379.128 166.064ZM390.031 158.096V167H388.927V165.992C388.671 166.344 388.347 166.612 387.955 166.796C387.563 166.98 387.131 167.072 386.659 167.072C386.043 167.072 385.491 166.936 385.003 166.664C384.515 166.392 384.131 166.012 383.851 165.524C383.579 165.028 383.443 164.46 383.443 163.82C383.443 163.18 383.579 162.616 383.851 162.128C384.131 161.64 384.515 161.26 385.003 160.988C385.491 160.716 386.043 160.58 386.659 160.58C387.115 160.58 387.535 160.668 387.919 160.844C388.303 161.012 388.623 161.264 388.879 161.6V158.096H390.031ZM386.755 166.064C387.155 166.064 387.519 165.972 387.847 165.788C388.175 165.596 388.431 165.332 388.615 164.996C388.799 164.652 388.891 164.26 388.891 163.82C388.891 163.38 388.799 162.992 388.615 162.656C388.431 162.312 388.175 162.048 387.847 161.864C387.519 161.68 387.155 161.588 386.755 161.588C386.347 161.588 385.979 161.68 385.651 161.864C385.331 162.048 385.075 162.312 384.883 162.656C384.699 162.992 384.607 163.38 384.607 163.82C384.607 164.26 384.699 164.652 384.883 164.996C385.075 165.332 385.331 165.596 385.651 165.788C385.979 165.972 386.347 166.064 386.755 166.064ZM394.527 160.58C395.407 160.58 396.079 160.796 396.543 161.228C397.015 161.66 397.251 162.304 397.251 163.16V167H396.159V166.16C395.967 166.456 395.691 166.684 395.331 166.844C394.979 166.996 394.559 167.072 394.071 167.072C393.359 167.072 392.787 166.9 392.355 166.556C391.931 166.212 391.719 165.76 391.719 165.2C391.719 164.64 391.923 164.192 392.331 163.856C392.739 163.512 393.387 163.34 394.275 163.34H396.099V163.112C396.099 162.616 395.955 162.236 395.667 161.972C395.379 161.708 394.955 161.576 394.395 161.576C394.019 161.576 393.651 161.64 393.291 161.768C392.931 161.888 392.627 162.052 392.379 162.26L391.899 161.396C392.227 161.132 392.619 160.932 393.075 160.796C393.531 160.652 394.015 160.58 394.527 160.58ZM394.263 166.184C394.703 166.184 395.083 166.088 395.403 165.896C395.723 165.696 395.955 165.416 396.099 165.056V164.168H394.323C393.347 164.168 392.859 164.496 392.859 165.152C392.859 165.472 392.983 165.724 393.231 165.908C393.479 166.092 393.823 166.184 394.263 166.184ZM402.959 166.628C402.791 166.772 402.583 166.884 402.335 166.964C402.087 167.036 401.831 167.072 401.567 167.072C400.927 167.072 400.431 166.9 400.079 166.556C399.727 166.212 399.551 165.72 399.551 165.08V161.588H398.471V160.64H399.551V159.248H400.703V160.64H402.527V161.588H400.703V165.032C400.703 165.376 400.787 165.64 400.955 165.824C401.131 166.008 401.379 166.1 401.699 166.1C402.051 166.1 402.351 166 402.599 165.8L402.959 166.628ZM409.889 163.856C409.889 163.944 409.881 164.06 409.865 164.204H404.705C404.777 164.764 405.021 165.216 405.437 165.56C405.861 165.896 406.385 166.064 407.009 166.064C407.769 166.064 408.381 165.808 408.845 165.296L409.481 166.04C409.193 166.376 408.833 166.632 408.401 166.808C407.977 166.984 407.501 167.072 406.973 167.072C406.301 167.072 405.705 166.936 405.185 166.664C404.665 166.384 404.261 165.996 403.973 165.5C403.693 165.004 403.553 164.444 403.553 163.82C403.553 163.204 403.689 162.648 403.961 162.152C404.241 161.656 404.621 161.272 405.101 161C405.589 160.72 406.137 160.58 406.745 160.58C407.353 160.58 407.893 160.72 408.365 161C408.845 161.272 409.217 161.656 409.481 162.152C409.753 162.648 409.889 163.216 409.889 163.856ZM406.745 161.552C406.193 161.552 405.729 161.72 405.353 162.056C404.985 162.392 404.769 162.832 404.705 163.376H408.785C408.721 162.84 408.501 162.404 408.125 162.068C407.757 161.724 407.297 161.552 406.745 161.552ZM414.879 158.6H416.079V167H414.879V158.6ZM421.822 160.58C422.63 160.58 423.27 160.816 423.742 161.288C424.222 161.752 424.462 162.436 424.462 163.34V167H423.31V163.472C423.31 162.856 423.162 162.392 422.866 162.08C422.57 161.768 422.146 161.612 421.594 161.612C420.97 161.612 420.478 161.796 420.118 162.164C419.758 162.524 419.578 163.044 419.578 163.724V167H418.426V160.64H419.53V161.6C419.762 161.272 420.074 161.02 420.466 160.844C420.866 160.668 421.318 160.58 421.822 160.58ZM430.17 166.628C430.002 166.772 429.794 166.884 429.546 166.964C429.298 167.036 429.042 167.072 428.778 167.072C428.138 167.072 427.642 166.9 427.29 166.556C426.938 166.212 426.762 165.72 426.762 165.08V161.588H425.682V160.64H426.762V159.248H427.914V160.64H429.738V161.588H427.914V165.032C427.914 165.376 427.998 165.64 428.166 165.824C428.342 166.008 428.59 166.1 428.91 166.1C429.262 166.1 429.562 166 429.81 165.8L430.17 166.628ZM437.1 163.856C437.1 163.944 437.092 164.06 437.076 164.204H431.916C431.988 164.764 432.232 165.216 432.648 165.56C433.072 165.896 433.596 166.064 434.22 166.064C434.98 166.064 435.592 165.808 436.056 165.296L436.692 166.04C436.404 166.376 436.044 166.632 435.612 166.808C435.188 166.984 434.712 167.072 434.184 167.072C433.512 167.072 432.916 166.936 432.396 166.664C431.876 166.384 431.472 165.996 431.184 165.5C430.904 165.004 430.764 164.444 430.764 163.82C430.764 163.204 430.9 162.648 431.172 162.152C431.452 161.656 431.832 161.272 432.312 161C432.8 160.72 433.348 160.58 433.956 160.58C434.564 160.58 435.104 160.72 435.576 161C436.056 161.272 436.428 161.656 436.692 162.152C436.964 162.648 437.1 163.216 437.1 163.856ZM433.956 161.552C433.404 161.552 432.94 161.72 432.564 162.056C432.196 162.392 431.98 162.832 431.916 163.376H435.996C435.932 162.84 435.712 162.404 435.336 162.068C434.968 161.724 434.508 161.552 433.956 161.552ZM439.803 161.708C440.003 161.34 440.299 161.06 440.691 160.868C441.083 160.676 441.559 160.58 442.119 160.58V161.696C442.055 161.688 441.967 161.684 441.855 161.684C441.231 161.684 440.739 161.872 440.379 162.248C440.027 162.616 439.851 163.144 439.851 163.832V167H438.699V160.64H439.803V161.708ZM449.425 160.64L446.641 167H445.465L442.681 160.64H443.881L446.065 165.74L448.297 160.64H449.425ZM452.617 160.58C453.497 160.58 454.169 160.796 454.633 161.228C455.105 161.66 455.341 162.304 455.341 163.16V167H454.249V166.16C454.057 166.456 453.781 166.684 453.421 166.844C453.069 166.996 452.649 167.072 452.161 167.072C451.449 167.072 450.877 166.9 450.445 166.556C450.021 166.212 449.809 165.76 449.809 165.2C449.809 164.64 450.013 164.192 450.421 163.856C450.829 163.512 451.477 163.34 452.365 163.34H454.189V163.112C454.189 162.616 454.045 162.236 453.757 161.972C453.469 161.708 453.045 161.576 452.485 161.576C452.109 161.576 451.741 161.64 451.381 161.768C451.021 161.888 450.717 162.052 450.469 162.26L449.989 161.396C450.317 161.132 450.709 160.932 451.165 160.796C451.621 160.652 452.105 160.58 452.617 160.58ZM452.353 166.184C452.793 166.184 453.173 166.088 453.493 165.896C453.813 165.696 454.045 165.416 454.189 165.056V164.168H452.413C451.437 164.168 450.949 164.496 450.949 165.152C450.949 165.472 451.073 165.724 451.321 165.908C451.569 166.092 451.913 166.184 452.353 166.184ZM457.473 158.096H458.625V167H457.473V158.096Z" fill="white"/>
12
+ <rect x="415" y="141" width="6" height="2" rx="1" transform="rotate(-45 415 141)" fill="url(#paint1_linear)"/>
13
+ <rect x="411" y="132" width="6" height="2" rx="1" transform="rotate(90 411 132)" fill="url(#paint2_linear)"/>
14
+ <rect x="404" y="142" width="6" height="2" rx="1" transform="rotate(-135 404 142)" fill="url(#paint3_linear)"/>
15
+ <path d="M425.229 182.014L425.229 182.014C425.482 181.965 425.643 181.903 425.735 181.85C425.66 181.775 425.52 181.673 425.289 181.56L411.141 174.667L411.141 174.667C410.901 174.55 410.727 174.507 410.616 174.501C410.56 174.498 410.53 174.504 410.517 174.508C410.511 174.521 410.502 174.55 410.5 174.606C410.497 174.718 410.523 174.895 410.618 175.144C410.618 175.144 410.618 175.144 410.618 175.144L416.621 190.992L416.153 191.169L416.621 190.992C416.677 191.139 416.73 191.252 416.777 191.337C416.81 191.245 416.843 191.125 416.873 190.971L425.229 182.014ZM425.229 182.014L420.87 182.856C420.15 182.995 419.472 183.403 418.945 183.929C418.419 184.455 418.009 185.133 417.869 185.852C417.869 185.852 417.869 185.852 417.869 185.852L416.873 190.971L425.229 182.014ZM410.521 174.5C410.521 174.5 410.521 174.501 410.52 174.503C410.52 174.501 410.521 174.5 410.521 174.5ZM410.511 174.51C410.509 174.512 410.509 174.512 410.509 174.512C410.508 174.512 410.509 174.511 410.511 174.51ZM425.79 181.919C425.79 181.919 425.789 181.918 425.789 181.916C425.79 181.918 425.79 181.919 425.79 181.919ZM425.804 181.8C425.805 181.799 425.806 181.798 425.806 181.798C425.806 181.798 425.805 181.799 425.804 181.8Z" fill="#6B7581" stroke="white"/>
16
+ <path d="M106.26 158.6H107.46V167H106.26V158.6ZM113.203 160.58C114.011 160.58 114.651 160.816 115.123 161.288C115.603 161.752 115.843 162.436 115.843 163.34V167H114.691V163.472C114.691 162.856 114.543 162.392 114.247 162.08C113.951 161.768 113.527 161.612 112.975 161.612C112.351 161.612 111.859 161.796 111.499 162.164C111.139 162.524 110.959 163.044 110.959 163.724V167H109.807V160.64H110.911V161.6C111.143 161.272 111.455 161.02 111.847 160.844C112.247 160.668 112.699 160.58 113.203 160.58ZM121.551 166.628C121.383 166.772 121.175 166.884 120.927 166.964C120.679 167.036 120.423 167.072 120.159 167.072C119.519 167.072 119.023 166.9 118.671 166.556C118.319 166.212 118.143 165.72 118.143 165.08V161.588H117.063V160.64H118.143V159.248H119.295V160.64H121.119V161.588H119.295V165.032C119.295 165.376 119.379 165.64 119.547 165.824C119.723 166.008 119.971 166.1 120.291 166.1C120.643 166.1 120.943 166 121.191 165.8L121.551 166.628ZM128.481 163.856C128.481 163.944 128.473 164.06 128.457 164.204H123.297C123.369 164.764 123.613 165.216 124.029 165.56C124.453 165.896 124.977 166.064 125.601 166.064C126.361 166.064 126.973 165.808 127.437 165.296L128.073 166.04C127.785 166.376 127.425 166.632 126.993 166.808C126.569 166.984 126.093 167.072 125.565 167.072C124.893 167.072 124.297 166.936 123.777 166.664C123.257 166.384 122.853 165.996 122.565 165.5C122.285 165.004 122.145 164.444 122.145 163.82C122.145 163.204 122.281 162.648 122.553 162.152C122.833 161.656 123.213 161.272 123.693 161C124.181 160.72 124.729 160.58 125.337 160.58C125.945 160.58 126.485 160.72 126.957 161C127.437 161.272 127.809 161.656 128.073 162.152C128.345 162.648 128.481 163.216 128.481 163.856ZM125.337 161.552C124.785 161.552 124.321 161.72 123.945 162.056C123.577 162.392 123.361 162.832 123.297 163.376H127.377C127.313 162.84 127.093 162.404 126.717 162.068C126.349 161.724 125.889 161.552 125.337 161.552ZM131.184 161.708C131.384 161.34 131.68 161.06 132.072 160.868C132.464 160.676 132.94 160.58 133.5 160.58V161.696C133.436 161.688 133.348 161.684 133.236 161.684C132.612 161.684 132.12 161.872 131.76 162.248C131.408 162.616 131.232 163.144 131.232 163.832V167H130.08V160.64H131.184V161.708ZM140.806 160.64L138.022 167H136.846L134.062 160.64H135.262L137.446 165.74L139.678 160.64H140.806ZM143.998 160.58C144.878 160.58 145.55 160.796 146.014 161.228C146.486 161.66 146.722 162.304 146.722 163.16V167H145.63V166.16C145.438 166.456 145.162 166.684 144.802 166.844C144.45 166.996 144.03 167.072 143.542 167.072C142.83 167.072 142.258 166.9 141.826 166.556C141.402 166.212 141.19 165.76 141.19 165.2C141.19 164.64 141.394 164.192 141.802 163.856C142.21 163.512 142.858 163.34 143.746 163.34H145.57V163.112C145.57 162.616 145.426 162.236 145.138 161.972C144.85 161.708 144.426 161.576 143.866 161.576C143.49 161.576 143.122 161.64 142.762 161.768C142.402 161.888 142.098 162.052 141.85 162.26L141.37 161.396C141.698 161.132 142.09 160.932 142.546 160.796C143.002 160.652 143.486 160.58 143.998 160.58ZM143.734 166.184C144.174 166.184 144.554 166.088 144.874 165.896C145.194 165.696 145.426 165.416 145.57 165.056V164.168H143.794C142.818 164.168 142.33 164.496 142.33 165.152C142.33 165.472 142.454 165.724 142.702 165.908C142.95 166.092 143.294 166.184 143.734 166.184ZM148.854 158.096H150.006V167H148.854V158.096Z" fill="#465361"/>
17
+ <rect x="182.25" y="147.25" width="130.5" height="31.5" rx="4.75" fill="#F9FAFD" stroke="#E5EAEF" stroke-width="0.5"/>
18
+ <path d="M294 168L291 164L297 164L294 168Z" fill="#465361"/>
19
+ <path d="M294 158L297 162H291L294 158Z" fill="#465361"/>
20
+ <path d="M204.48 165.956V167H198.444V166.184L201.864 162.884C202.28 162.484 202.56 162.14 202.704 161.852C202.848 161.556 202.92 161.26 202.92 160.964C202.92 160.524 202.764 160.184 202.452 159.944C202.148 159.696 201.708 159.572 201.132 159.572C200.204 159.572 199.488 159.876 198.984 160.484L198.168 159.776C198.496 159.376 198.924 159.064 199.452 158.84C199.988 158.616 200.584 158.504 201.24 158.504C202.12 158.504 202.82 158.716 203.34 159.14C203.86 159.556 204.12 160.124 204.12 160.844C204.12 161.292 204.024 161.716 203.832 162.116C203.64 162.516 203.276 162.972 202.74 163.484L200.172 165.956H204.48ZM212.552 164.936H210.956V167H209.792V164.936H205.124V164.096L209.42 158.6H210.716L206.6 163.904H209.828V162.08H210.956V163.904H212.552V164.936ZM224.402 158.6V167H223.202V163.256H218.378V167H217.178V158.6H218.378V162.212H223.202V158.6H224.402ZM229.472 167.072C228.84 167.072 228.272 166.932 227.768 166.652C227.264 166.372 226.868 165.988 226.58 165.5C226.3 165.004 226.16 164.444 226.16 163.82C226.16 163.196 226.3 162.64 226.58 162.152C226.868 161.656 227.264 161.272 227.768 161C228.272 160.72 228.84 160.58 229.472 160.58C230.104 160.58 230.668 160.72 231.164 161C231.668 161.272 232.06 161.656 232.34 162.152C232.628 162.64 232.772 163.196 232.772 163.82C232.772 164.444 232.628 165.004 232.34 165.5C232.06 165.988 231.668 166.372 231.164 166.652C230.668 166.932 230.104 167.072 229.472 167.072ZM229.472 166.064C229.88 166.064 230.244 165.972 230.564 165.788C230.892 165.596 231.148 165.332 231.332 164.996C231.516 164.652 231.608 164.26 231.608 163.82C231.608 163.38 231.516 162.992 231.332 162.656C231.148 162.312 230.892 162.048 230.564 161.864C230.244 161.68 229.88 161.588 229.472 161.588C229.064 161.588 228.696 161.68 228.368 161.864C228.048 162.048 227.792 162.312 227.6 162.656C227.416 162.992 227.324 163.38 227.324 163.82C227.324 164.26 227.416 164.652 227.6 164.996C227.792 165.332 228.048 165.596 228.368 165.788C228.696 165.972 229.064 166.064 229.472 166.064ZM240.293 160.64V167H239.201V166.04C238.969 166.368 238.661 166.624 238.277 166.808C237.901 166.984 237.489 167.072 237.041 167.072C236.193 167.072 235.525 166.84 235.037 166.376C234.549 165.904 234.305 165.212 234.305 164.3V160.64H235.457V164.168C235.457 164.784 235.605 165.252 235.901 165.572C236.197 165.884 236.621 166.04 237.173 166.04C237.781 166.04 238.261 165.856 238.613 165.488C238.965 165.12 239.141 164.6 239.141 163.928V160.64H240.293ZM243.591 161.708C243.791 161.34 244.087 161.06 244.479 160.868C244.871 160.676 245.347 160.58 245.907 160.58V161.696C245.843 161.688 245.755 161.684 245.643 161.684C245.019 161.684 244.527 161.872 244.167 162.248C243.815 162.616 243.639 163.144 243.639 163.832V167H242.487V160.64H243.591V161.708ZM249.197 167.072C248.677 167.072 248.177 167.004 247.697 166.868C247.217 166.724 246.841 166.544 246.569 166.328L247.049 165.416C247.329 165.616 247.669 165.776 248.069 165.896C248.469 166.016 248.873 166.076 249.281 166.076C250.289 166.076 250.793 165.788 250.793 165.212C250.793 165.02 250.725 164.868 250.589 164.756C250.453 164.644 250.281 164.564 250.073 164.516C249.873 164.46 249.585 164.4 249.209 164.336C248.697 164.256 248.277 164.164 247.949 164.06C247.629 163.956 247.353 163.78 247.121 163.532C246.889 163.284 246.773 162.936 246.773 162.488C246.773 161.912 247.013 161.452 247.493 161.108C247.973 160.756 248.617 160.58 249.425 160.58C249.849 160.58 250.273 160.632 250.697 160.736C251.121 160.84 251.469 160.98 251.741 161.156L251.249 162.068C250.729 161.732 250.117 161.564 249.413 161.564C248.925 161.564 248.553 161.644 248.297 161.804C248.041 161.964 247.913 162.176 247.913 162.44C247.913 162.648 247.985 162.812 248.129 162.932C248.273 163.052 248.449 163.14 248.657 163.196C248.873 163.252 249.173 163.316 249.557 163.388C250.069 163.476 250.481 163.572 250.793 163.676C251.113 163.772 251.385 163.94 251.609 164.18C251.833 164.42 251.945 164.756 251.945 165.188C251.945 165.764 251.697 166.224 251.201 166.568C250.713 166.904 250.045 167.072 249.197 167.072Z" fill="#465361"/>
21
+ <rect x="105" y="111.516" width="371" height="1.484" fill="#E5EAEF"/>
22
+ <rect x="105" y="113.742" width="371" height="0.742" fill="#E5EAEF"/>
23
+ <path d="M111.612 92.0963H107.148L106.224 94.1963H104.988L108.792 85.7963H109.98L113.796 94.1963H112.536L111.612 92.0963ZM111.192 91.1363L109.38 87.0203L107.568 91.1363H111.192ZM120.692 87.8363V94.1963H119.6V93.2363C119.368 93.5643 119.06 93.8203 118.676 94.0043C118.3 94.1803 117.888 94.2683 117.44 94.2683C116.592 94.2683 115.924 94.0363 115.436 93.5723C114.948 93.1003 114.704 92.4083 114.704 91.4963V87.8363H115.856V91.3643C115.856 91.9803 116.004 92.4483 116.3 92.7683C116.596 93.0803 117.02 93.2363 117.572 93.2363C118.18 93.2363 118.66 93.0523 119.012 92.6843C119.364 92.3163 119.54 91.7963 119.54 91.1243V87.8363H120.692ZM126.461 93.8243C126.293 93.9683 126.085 94.0803 125.837 94.1603C125.589 94.2323 125.333 94.2683 125.069 94.2683C124.429 94.2683 123.933 94.0963 123.581 93.7523C123.229 93.4083 123.053 92.9163 123.053 92.2763V88.7843H121.973V87.8363H123.053V86.4443H124.205V87.8363H126.029V88.7843H124.205V92.2283C124.205 92.5723 124.289 92.8363 124.457 93.0203C124.633 93.2043 124.881 93.2963 125.201 93.2963C125.553 93.2963 125.853 93.1963 126.101 92.9963L126.461 93.8243ZM130.367 94.2683C129.735 94.2683 129.167 94.1283 128.663 93.8483C128.159 93.5683 127.763 93.1843 127.475 92.6963C127.195 92.2003 127.055 91.6403 127.055 91.0163C127.055 90.3923 127.195 89.8363 127.475 89.3483C127.763 88.8523 128.159 88.4683 128.663 88.1963C129.167 87.9163 129.735 87.7763 130.367 87.7763C130.999 87.7763 131.563 87.9163 132.059 88.1963C132.563 88.4683 132.955 88.8523 133.235 89.3483C133.523 89.8363 133.667 90.3923 133.667 91.0163C133.667 91.6403 133.523 92.2003 133.235 92.6963C132.955 93.1843 132.563 93.5683 132.059 93.8483C131.563 94.1283 130.999 94.2683 130.367 94.2683ZM130.367 93.2603C130.775 93.2603 131.139 93.1683 131.459 92.9843C131.787 92.7923 132.043 92.5283 132.227 92.1923C132.411 91.8483 132.503 91.4563 132.503 91.0163C132.503 90.5763 132.411 90.1883 132.227 89.8523C132.043 89.5083 131.787 89.2443 131.459 89.0603C131.139 88.8763 130.775 88.7843 130.367 88.7843C129.959 88.7843 129.591 88.8763 129.263 89.0603C128.943 89.2443 128.687 89.5083 128.495 89.8523C128.311 90.1883 128.219 90.5763 128.219 91.0163C128.219 91.4563 128.311 91.8483 128.495 92.1923C128.687 92.5283 128.943 92.7923 129.263 92.9843C129.591 93.1683 129.959 93.2603 130.367 93.2603ZM139.851 86.8403V89.7683H144.063V90.8003H139.851V94.1963H138.651V85.7963H144.579V86.8403H139.851ZM151.649 91.0523C151.649 91.1403 151.641 91.2563 151.625 91.4003H146.465C146.537 91.9603 146.781 92.4123 147.197 92.7563C147.621 93.0923 148.145 93.2603 148.769 93.2603C149.529 93.2603 150.141 93.0043 150.605 92.4923L151.241 93.2363C150.953 93.5723 150.593 93.8283 150.161 94.0043C149.737 94.1803 149.261 94.2683 148.733 94.2683C148.061 94.2683 147.465 94.1323 146.945 93.8603C146.425 93.5803 146.021 93.1923 145.733 92.6963C145.453 92.2003 145.313 91.6403 145.313 91.0163C145.313 90.4003 145.449 89.8443 145.721 89.3483C146.001 88.8523 146.381 88.4683 146.861 88.1963C147.349 87.9163 147.897 87.7763 148.505 87.7763C149.113 87.7763 149.653 87.9163 150.125 88.1963C150.605 88.4683 150.977 88.8523 151.241 89.3483C151.513 89.8443 151.649 90.4123 151.649 91.0523ZM148.505 88.7483C147.953 88.7483 147.489 88.9163 147.113 89.2523C146.745 89.5883 146.529 90.0283 146.465 90.5723H150.545C150.481 90.0363 150.261 89.6003 149.885 89.2643C149.517 88.9203 149.057 88.7483 148.505 88.7483ZM158.996 91.0523C158.996 91.1403 158.988 91.2563 158.972 91.4003H153.812C153.884 91.9603 154.128 92.4123 154.544 92.7563C154.968 93.0923 155.492 93.2603 156.116 93.2603C156.876 93.2603 157.488 93.0043 157.952 92.4923L158.588 93.2363C158.3 93.5723 157.94 93.8283 157.508 94.0043C157.084 94.1803 156.608 94.2683 156.08 94.2683C155.408 94.2683 154.812 94.1323 154.292 93.8603C153.772 93.5803 153.368 93.1923 153.08 92.6963C152.8 92.2003 152.66 91.6403 152.66 91.0163C152.66 90.4003 152.796 89.8443 153.068 89.3483C153.348 88.8523 153.728 88.4683 154.208 88.1963C154.696 87.9163 155.244 87.7763 155.852 87.7763C156.46 87.7763 157 87.9163 157.472 88.1963C157.952 88.4683 158.324 88.8523 158.588 89.3483C158.86 89.8443 158.996 90.4123 158.996 91.0523ZM155.852 88.7483C155.3 88.7483 154.836 88.9163 154.46 89.2523C154.092 89.5883 153.876 90.0283 153.812 90.5723H157.892C157.828 90.0363 157.608 89.6003 157.232 89.2643C156.864 88.9203 156.404 88.7483 155.852 88.7483ZM166.596 85.2923V94.1963H165.492V93.1883C165.236 93.5403 164.912 93.8083 164.52 93.9923C164.128 94.1763 163.696 94.2683 163.224 94.2683C162.608 94.2683 162.056 94.1323 161.568 93.8603C161.08 93.5883 160.696 93.2083 160.416 92.7203C160.144 92.2243 160.008 91.6563 160.008 91.0163C160.008 90.3763 160.144 89.8123 160.416 89.3243C160.696 88.8363 161.08 88.4563 161.568 88.1843C162.056 87.9123 162.608 87.7763 163.224 87.7763C163.68 87.7763 164.1 87.8643 164.484 88.0403C164.868 88.2083 165.188 88.4603 165.444 88.7963V85.2923H166.596ZM163.32 93.2603C163.72 93.2603 164.084 93.1683 164.412 92.9843C164.74 92.7923 164.996 92.5283 165.18 92.1923C165.364 91.8483 165.456 91.4563 165.456 91.0163C165.456 90.5763 165.364 90.1883 165.18 89.8523C164.996 89.5083 164.74 89.2443 164.412 89.0603C164.084 88.8763 163.72 88.7843 163.32 88.7843C162.912 88.7843 162.544 88.8763 162.216 89.0603C161.896 89.2443 161.64 89.5083 161.448 89.8523C161.264 90.1883 161.172 90.5763 161.172 91.0163C161.172 91.4563 161.264 91.8483 161.448 92.1923C161.64 92.5283 161.896 92.7923 162.216 92.9843C162.544 93.1683 162.912 93.2603 163.32 93.2603ZM175.646 94.2923C174.526 94.2923 173.654 93.9723 173.03 93.3323C172.406 92.6923 172.094 91.7723 172.094 90.5723V85.7963H173.294V90.5243C173.294 92.3243 174.082 93.2243 175.658 93.2243C176.426 93.2243 177.014 93.0043 177.422 92.5643C177.83 92.1163 178.034 91.4363 178.034 90.5243V85.7963H179.198V90.5723C179.198 91.7803 178.886 92.7043 178.262 93.3443C177.638 93.9763 176.766 94.2923 175.646 94.2923ZM184.862 87.7763C185.478 87.7763 186.03 87.9123 186.518 88.1843C187.006 88.4563 187.386 88.8363 187.658 89.3243C187.938 89.8123 188.078 90.3763 188.078 91.0163C188.078 91.6563 187.938 92.2243 187.658 92.7203C187.386 93.2083 187.006 93.5883 186.518 93.8603C186.03 94.1323 185.478 94.2683 184.862 94.2683C184.406 94.2683 183.986 94.1803 183.602 94.0043C183.226 93.8283 182.906 93.5723 182.642 93.2363V96.5243H181.49V87.8363H182.594V88.8443C182.85 88.4923 183.174 88.2283 183.566 88.0523C183.958 87.8683 184.39 87.7763 184.862 87.7763ZM184.766 93.2603C185.174 93.2603 185.538 93.1683 185.858 92.9843C186.186 92.7923 186.442 92.5283 186.626 92.1923C186.818 91.8483 186.914 91.4563 186.914 91.0163C186.914 90.5763 186.818 90.1883 186.626 89.8523C186.442 89.5083 186.186 89.2443 185.858 89.0603C185.538 88.8763 185.174 88.7843 184.766 88.7843C184.366 88.7843 184.002 88.8803 183.674 89.0723C183.354 89.2563 183.098 89.5163 182.906 89.8523C182.722 90.1883 182.63 90.5763 182.63 91.0163C182.63 91.4563 182.722 91.8483 182.906 92.1923C183.09 92.5283 183.346 92.7923 183.674 92.9843C184.002 93.1683 184.366 93.2603 184.766 93.2603ZM195.67 85.2923V94.1963H194.566V93.1883C194.31 93.5403 193.986 93.8083 193.594 93.9923C193.202 94.1763 192.77 94.2683 192.298 94.2683C191.682 94.2683 191.13 94.1323 190.642 93.8603C190.154 93.5883 189.77 93.2083 189.49 92.7203C189.218 92.2243 189.082 91.6563 189.082 91.0163C189.082 90.3763 189.218 89.8123 189.49 89.3243C189.77 88.8363 190.154 88.4563 190.642 88.1843C191.13 87.9123 191.682 87.7763 192.298 87.7763C192.754 87.7763 193.174 87.8643 193.558 88.0403C193.942 88.2083 194.262 88.4603 194.518 88.7963V85.2923H195.67ZM192.394 93.2603C192.794 93.2603 193.158 93.1683 193.486 92.9843C193.814 92.7923 194.07 92.5283 194.254 92.1923C194.438 91.8483 194.53 91.4563 194.53 91.0163C194.53 90.5763 194.438 90.1883 194.254 89.8523C194.07 89.5083 193.814 89.2443 193.486 89.0603C193.158 88.8763 192.794 88.7843 192.394 88.7843C191.986 88.7843 191.618 88.8763 191.29 89.0603C190.97 89.2443 190.714 89.5083 190.522 89.8523C190.338 90.1883 190.246 90.5763 190.246 91.0163C190.246 91.4563 190.338 91.8483 190.522 92.1923C190.714 92.5283 190.97 92.7923 191.29 92.9843C191.618 93.1683 191.986 93.2603 192.394 93.2603ZM200.166 87.7763C201.046 87.7763 201.718 87.9923 202.182 88.4243C202.654 88.8563 202.89 89.5003 202.89 90.3563V94.1963H201.798V93.3563C201.606 93.6523 201.33 93.8803 200.97 94.0403C200.618 94.1923 200.198 94.2683 199.71 94.2683C198.998 94.2683 198.426 94.0963 197.994 93.7523C197.57 93.4083 197.358 92.9563 197.358 92.3963C197.358 91.8363 197.562 91.3883 197.97 91.0523C198.378 90.7083 199.026 90.5363 199.914 90.5363H201.738V90.3083C201.738 89.8123 201.594 89.4323 201.306 89.1683C201.018 88.9043 200.594 88.7723 200.034 88.7723C199.658 88.7723 199.29 88.8363 198.93 88.9643C198.57 89.0843 198.266 89.2483 198.018 89.4563L197.538 88.5923C197.866 88.3283 198.258 88.1283 198.714 87.9923C199.17 87.8483 199.654 87.7763 200.166 87.7763ZM199.902 93.3803C200.342 93.3803 200.722 93.2843 201.042 93.0923C201.362 92.8923 201.594 92.6123 201.738 92.2523V91.3643H199.962C198.986 91.3643 198.498 91.6923 198.498 92.3483C198.498 92.6683 198.622 92.9203 198.87 93.1043C199.118 93.2883 199.462 93.3803 199.902 93.3803ZM208.598 93.8243C208.43 93.9683 208.222 94.0803 207.974 94.1603C207.726 94.2323 207.47 94.2683 207.206 94.2683C206.566 94.2683 206.07 94.0963 205.718 93.7523C205.366 93.4083 205.19 92.9163 205.19 92.2763V88.7843H204.11V87.8363H205.19V86.4443H206.342V87.8363H208.166V88.7843H206.342V92.2283C206.342 92.5723 206.426 92.8363 206.594 93.0203C206.77 93.2043 207.018 93.2963 207.338 93.2963C207.69 93.2963 207.99 93.1963 208.238 92.9963L208.598 93.8243ZM215.528 91.0523C215.528 91.1403 215.52 91.2563 215.504 91.4003H210.344C210.416 91.9603 210.66 92.4123 211.076 92.7563C211.5 93.0923 212.024 93.2603 212.648 93.2603C213.408 93.2603 214.02 93.0043 214.484 92.4923L215.12 93.2363C214.832 93.5723 214.472 93.8283 214.04 94.0043C213.616 94.1803 213.14 94.2683 212.612 94.2683C211.94 94.2683 211.344 94.1323 210.824 93.8603C210.304 93.5803 209.9 93.1923 209.612 92.6963C209.332 92.2003 209.192 91.6403 209.192 91.0163C209.192 90.4003 209.328 89.8443 209.6 89.3483C209.88 88.8523 210.26 88.4683 210.74 88.1963C211.228 87.9163 211.776 87.7763 212.384 87.7763C212.992 87.7763 213.532 87.9163 214.004 88.1963C214.484 88.4683 214.856 88.8523 215.12 89.3483C215.392 89.8443 215.528 90.4123 215.528 91.0523ZM212.384 88.7483C211.832 88.7483 211.368 88.9163 210.992 89.2523C210.624 89.5883 210.408 90.0283 210.344 90.5723H214.424C214.36 90.0363 214.14 89.6003 213.764 89.2643C213.396 88.9203 212.936 88.7483 212.384 88.7483ZM220.518 85.7963H221.718V94.1963H220.518V85.7963ZM227.461 87.7763C228.269 87.7763 228.909 88.0123 229.381 88.4843C229.861 88.9483 230.101 89.6323 230.101 90.5363V94.1963H228.949V90.6683C228.949 90.0523 228.801 89.5883 228.505 89.2763C228.209 88.9643 227.785 88.8083 227.233 88.8083C226.609 88.8083 226.117 88.9923 225.757 89.3603C225.397 89.7203 225.217 90.2403 225.217 90.9203V94.1963H224.065V87.8363H225.169V88.7963C225.401 88.4683 225.713 88.2163 226.105 88.0403C226.505 87.8643 226.957 87.7763 227.461 87.7763ZM235.809 93.8243C235.641 93.9683 235.433 94.0803 235.185 94.1603C234.937 94.2323 234.681 94.2683 234.417 94.2683C233.777 94.2683 233.281 94.0963 232.929 93.7523C232.577 93.4083 232.401 92.9163 232.401 92.2763V88.7843H231.321V87.8363H232.401V86.4443H233.553V87.8363H235.377V88.7843H233.553V92.2283C233.553 92.5723 233.637 92.8363 233.805 93.0203C233.981 93.2043 234.229 93.2963 234.549 93.2963C234.901 93.2963 235.201 93.1963 235.449 92.9963L235.809 93.8243ZM242.738 91.0523C242.738 91.1403 242.73 91.2563 242.714 91.4003H237.554C237.626 91.9603 237.87 92.4123 238.286 92.7563C238.71 93.0923 239.234 93.2603 239.858 93.2603C240.618 93.2603 241.23 93.0043 241.694 92.4923L242.33 93.2363C242.042 93.5723 241.682 93.8283 241.25 94.0043C240.826 94.1803 240.35 94.2683 239.822 94.2683C239.15 94.2683 238.554 94.1323 238.034 93.8603C237.514 93.5803 237.11 93.1923 236.822 92.6963C236.542 92.2003 236.402 91.6403 236.402 91.0163C236.402 90.4003 236.538 89.8443 236.81 89.3483C237.09 88.8523 237.47 88.4683 237.95 88.1963C238.438 87.9163 238.986 87.7763 239.594 87.7763C240.202 87.7763 240.742 87.9163 241.214 88.1963C241.694 88.4683 242.066 88.8523 242.33 89.3483C242.602 89.8443 242.738 90.4123 242.738 91.0523ZM239.594 88.7483C239.042 88.7483 238.578 88.9163 238.202 89.2523C237.834 89.5883 237.618 90.0283 237.554 90.5723H241.634C241.57 90.0363 241.35 89.6003 240.974 89.2643C240.606 88.9203 240.146 88.7483 239.594 88.7483ZM245.442 88.9043C245.642 88.5363 245.938 88.2563 246.33 88.0643C246.722 87.8723 247.198 87.7763 247.758 87.7763V88.8923C247.694 88.8843 247.606 88.8803 247.494 88.8803C246.87 88.8803 246.378 89.0683 246.018 89.4443C245.666 89.8123 245.49 90.3403 245.49 91.0283V94.1963H244.338V87.8363H245.442V88.9043ZM255.064 87.8363L252.28 94.1963H251.104L248.32 87.8363H249.52L251.704 92.9363L253.936 87.8363H255.064ZM258.256 87.7763C259.136 87.7763 259.808 87.9923 260.272 88.4243C260.744 88.8563 260.98 89.5003 260.98 90.3563V94.1963H259.888V93.3563C259.696 93.6523 259.42 93.8803 259.06 94.0403C258.708 94.1923 258.288 94.2683 257.8 94.2683C257.088 94.2683 256.516 94.0963 256.084 93.7523C255.66 93.4083 255.448 92.9563 255.448 92.3963C255.448 91.8363 255.652 91.3883 256.06 91.0523C256.468 90.7083 257.116 90.5363 258.004 90.5363H259.828V90.3083C259.828 89.8123 259.684 89.4323 259.396 89.1683C259.108 88.9043 258.684 88.7723 258.124 88.7723C257.748 88.7723 257.38 88.8363 257.02 88.9643C256.66 89.0843 256.356 89.2483 256.108 89.4563L255.628 88.5923C255.956 88.3283 256.348 88.1283 256.804 87.9923C257.26 87.8483 257.744 87.7763 258.256 87.7763ZM257.992 93.3803C258.432 93.3803 258.812 93.2843 259.132 93.0923C259.452 92.8923 259.684 92.6123 259.828 92.2523V91.3643H258.052C257.076 91.3643 256.588 91.6923 256.588 92.3483C256.588 92.6683 256.712 92.9203 256.96 93.1043C257.208 93.2883 257.552 93.3803 257.992 93.3803ZM263.112 85.2923H264.264V94.1963H263.112V85.2923Z" fill="#465361"/>
24
+ <path d="M30 26C30 20.4772 34.4772 16 40 16H540C545.523 16 550 20.4772 550 26V54H30V26Z" fill="#F6F8FB"/>
25
+ <path d="M81.1559 35.5693C81.1559 38.4833 78.8453 40.8193 76.0271 40.8193C73.209 40.8193 70.8984 38.4833 70.8984 35.5693C70.8984 32.6553 73.209 30.3193 76.0271 30.3193C78.8453 30.3193 81.1559 32.6553 81.1559 35.5693Z" stroke="#EB5757" stroke-width="1.5"/>
26
+ <path d="M97.0055 35.5693C97.0055 38.4833 94.6949 40.8193 91.8768 40.8193C89.0586 40.8193 86.748 38.4833 86.748 35.5693C86.748 32.6553 89.0586 30.3193 91.8768 30.3193C94.6949 30.3193 97.0055 32.6553 97.0055 35.5693Z" stroke="#F2994A" stroke-width="1.5"/>
27
+ <path d="M112.853 35.5693C112.853 38.4833 110.543 40.8193 107.724 40.8193C104.906 40.8193 102.596 38.4833 102.596 35.5693C102.596 32.6553 104.906 30.3193 107.724 30.3193C110.543 30.3193 112.853 32.6553 112.853 35.5693Z" stroke="#219653" stroke-width="1.5"/>
28
+ <rect x="255.5" y="24.5" width="128" height="21" rx="9.5" fill="white" stroke="#E5EAEF"/>
29
+ <path d="M286.47 39L286.458 32.88L283.422 37.98H282.87L279.834 32.916V39H278.682V30.6H279.666L283.17 36.504L286.626 30.6H287.61L287.622 39H286.47ZM292.291 32.58C293.171 32.58 293.843 32.796 294.307 33.228C294.779 33.66 295.015 34.304 295.015 35.16V39H293.923V38.16C293.731 38.456 293.455 38.684 293.095 38.844C292.743 38.996 292.323 39.072 291.835 39.072C291.123 39.072 290.551 38.9 290.119 38.556C289.695 38.212 289.483 37.76 289.483 37.2C289.483 36.64 289.687 36.192 290.095 35.856C290.503 35.512 291.151 35.34 292.039 35.34H293.863V35.112C293.863 34.616 293.719 34.236 293.431 33.972C293.143 33.708 292.719 33.576 292.159 33.576C291.783 33.576 291.415 33.64 291.055 33.768C290.695 33.888 290.391 34.052 290.143 34.26L289.663 33.396C289.991 33.132 290.383 32.932 290.839 32.796C291.295 32.652 291.779 32.58 292.291 32.58ZM292.027 38.184C292.467 38.184 292.847 38.088 293.167 37.896C293.487 37.696 293.719 37.416 293.863 37.056V36.168H292.087C291.111 36.168 290.623 36.496 290.623 37.152C290.623 37.472 290.747 37.724 290.995 37.908C291.243 38.092 291.587 38.184 292.027 38.184ZM300.543 32.58C301.351 32.58 301.991 32.816 302.463 33.288C302.943 33.752 303.183 34.436 303.183 35.34V39H302.031V35.472C302.031 34.856 301.883 34.392 301.587 34.08C301.291 33.768 300.867 33.612 300.315 33.612C299.691 33.612 299.199 33.796 298.839 34.164C298.479 34.524 298.299 35.044 298.299 35.724V39H297.147V32.64H298.251V33.6C298.483 33.272 298.795 33.02 299.187 32.844C299.587 32.668 300.039 32.58 300.543 32.58ZM307.631 32.58C308.511 32.58 309.183 32.796 309.647 33.228C310.119 33.66 310.355 34.304 310.355 35.16V39H309.263V38.16C309.071 38.456 308.795 38.684 308.435 38.844C308.083 38.996 307.663 39.072 307.175 39.072C306.463 39.072 305.891 38.9 305.459 38.556C305.035 38.212 304.823 37.76 304.823 37.2C304.823 36.64 305.027 36.192 305.435 35.856C305.843 35.512 306.491 35.34 307.379 35.34H309.203V35.112C309.203 34.616 309.059 34.236 308.771 33.972C308.483 33.708 308.059 33.576 307.499 33.576C307.123 33.576 306.755 33.64 306.395 33.768C306.035 33.888 305.731 34.052 305.483 34.26L305.003 33.396C305.331 33.132 305.723 32.932 306.179 32.796C306.635 32.652 307.119 32.58 307.631 32.58ZM307.367 38.184C307.807 38.184 308.187 38.088 308.507 37.896C308.827 37.696 309.059 37.416 309.203 37.056V36.168H307.427C306.451 36.168 305.963 36.496 305.963 37.152C305.963 37.472 306.087 37.724 306.335 37.908C306.583 38.092 306.927 38.184 307.367 38.184ZM318.606 32.64V38.136C318.606 39.248 318.33 40.068 317.778 40.596C317.226 41.132 316.402 41.4 315.306 41.4C314.706 41.4 314.134 41.316 313.59 41.148C313.046 40.988 312.606 40.756 312.27 40.452L312.822 39.564C313.118 39.82 313.482 40.02 313.914 40.164C314.354 40.316 314.806 40.392 315.27 40.392C316.014 40.392 316.562 40.216 316.914 39.864C317.274 39.512 317.454 38.976 317.454 38.256V37.752C317.182 38.08 316.846 38.328 316.446 38.496C316.054 38.656 315.626 38.736 315.162 38.736C314.554 38.736 314.002 38.608 313.506 38.352C313.018 38.088 312.634 37.724 312.354 37.26C312.074 36.788 311.934 36.252 311.934 35.652C311.934 35.052 312.074 34.52 312.354 34.056C312.634 33.584 313.018 33.22 313.506 32.964C314.002 32.708 314.554 32.58 315.162 32.58C315.642 32.58 316.086 32.668 316.494 32.844C316.91 33.02 317.25 33.28 317.514 33.624V32.64H318.606ZM315.294 37.728C315.71 37.728 316.082 37.64 316.41 37.464C316.746 37.288 317.006 37.044 317.19 36.732C317.382 36.412 317.478 36.052 317.478 35.652C317.478 35.036 317.274 34.54 316.866 34.164C316.458 33.78 315.934 33.588 315.294 33.588C314.646 33.588 314.118 33.78 313.71 34.164C313.302 34.54 313.098 35.036 313.098 35.652C313.098 36.052 313.19 36.412 313.374 36.732C313.566 37.044 313.826 37.288 314.154 37.464C314.49 37.64 314.87 37.728 315.294 37.728ZM326.555 35.856C326.555 35.944 326.547 36.06 326.531 36.204H321.371C321.443 36.764 321.687 37.216 322.103 37.56C322.527 37.896 323.051 38.064 323.675 38.064C324.435 38.064 325.047 37.808 325.511 37.296L326.147 38.04C325.859 38.376 325.499 38.632 325.067 38.808C324.643 38.984 324.167 39.072 323.639 39.072C322.967 39.072 322.371 38.936 321.851 38.664C321.331 38.384 320.927 37.996 320.639 37.5C320.359 37.004 320.219 36.444 320.219 35.82C320.219 35.204 320.355 34.648 320.627 34.152C320.907 33.656 321.287 33.272 321.767 33C322.255 32.72 322.803 32.58 323.411 32.58C324.019 32.58 324.559 32.72 325.031 33C325.511 33.272 325.883 33.656 326.147 34.152C326.419 34.648 326.555 35.216 326.555 35.856ZM323.411 33.552C322.859 33.552 322.395 33.72 322.019 34.056C321.651 34.392 321.435 34.832 321.371 35.376H325.451C325.387 34.84 325.167 34.404 324.791 34.068C324.423 33.724 323.963 33.552 323.411 33.552ZM332.745 31.644V34.572H336.957V35.604H332.745V39H331.545V30.6H337.473V31.644H332.745ZM344.543 35.856C344.543 35.944 344.535 36.06 344.519 36.204H339.359C339.431 36.764 339.675 37.216 340.091 37.56C340.515 37.896 341.039 38.064 341.663 38.064C342.423 38.064 343.035 37.808 343.499 37.296L344.135 38.04C343.847 38.376 343.487 38.632 343.055 38.808C342.631 38.984 342.155 39.072 341.627 39.072C340.955 39.072 340.359 38.936 339.839 38.664C339.319 38.384 338.915 37.996 338.627 37.5C338.347 37.004 338.207 36.444 338.207 35.82C338.207 35.204 338.343 34.648 338.615 34.152C338.895 33.656 339.275 33.272 339.755 33C340.243 32.72 340.791 32.58 341.399 32.58C342.007 32.58 342.547 32.72 343.019 33C343.499 33.272 343.871 33.656 344.135 34.152C344.407 34.648 344.543 35.216 344.543 35.856ZM341.399 33.552C340.847 33.552 340.383 33.72 340.007 34.056C339.639 34.392 339.423 34.832 339.359 35.376H343.439C343.375 34.84 343.155 34.404 342.779 34.068C342.411 33.724 341.951 33.552 341.399 33.552ZM351.891 35.856C351.891 35.944 351.883 36.06 351.867 36.204H346.707C346.779 36.764 347.023 37.216 347.439 37.56C347.863 37.896 348.387 38.064 349.011 38.064C349.771 38.064 350.383 37.808 350.847 37.296L351.483 38.04C351.195 38.376 350.835 38.632 350.403 38.808C349.979 38.984 349.503 39.