handoff-app 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Changelog.md CHANGED
@@ -3,9 +3,37 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to
6
+ and this project adheres to
7
7
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
 
9
+ ## [0.1.3] - 2023-03-09
10
+
11
+ ### Changes
12
+ - Improving changelog for previous changes
13
+ ### Bugfixes
14
+ - Fixes a bug where the installer was deploying with outdated css for custom
15
+ previews
16
+
17
+ ## [0.1.2] - 2023-03-09
18
+
19
+ ### Bugfixes
20
+
21
+ - Fixing installer package json version b2d58c5
22
+
23
+ ## [0.1.1] - 2023-03-09
24
+
25
+ ### Bugfixes
26
+
27
+ - Fixes script naming for installed sites
28
+
9
29
  ## [0.1.0] - 2023-03-09
30
+
10
31
  ### Changes
11
- Initial public release of the Handoff App. This is a beta release.
32
+
33
+ - Creates the initial public version of Handoff
34
+ - High level initial feature list
35
+ - Builds pipeline from Figma to generate tokens from well structured file
36
+ - Exports design foundations (colors, typography, icons, logos)
37
+ - Component design tokens (buttons, alerts, modal, tooltips, inputs, radios, checkboxes, radio, switches)
38
+ - Transformers for sass variables, css variables, previews and custom fonts
39
+ - Static web application that can be published to any web host
@@ -1,11 +1,93 @@
1
- // Load custom component map to overwrite
2
- // Order in which files are loaded doesn't matter (because of !default)
3
- @import '../sass/project/alerts';
1
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap');
2
+
3
+
4
+
5
+ // Initialize Bootstrap
6
+ // ------------------------------------------------------------------
7
+
8
+ @import 'node_modules/bootstrap/scss/functions';
9
+
10
+
11
+ // Project Variables
12
+ // ------------------------------------------------------------------
13
+
14
+ $prefix: '';
15
+ $enable-shadows: true;
16
+
4
17
  @import '../sass/project/buttons';
18
+ @import '../sass/project/checkbox';
19
+ @import '../sass/project/radio';
20
+ @import '../sass/project/switch';
5
21
  @import '../sass/project/input';
22
+ @import '../sass/project/select';
23
+ @import '../sass/project/alerts';
24
+ @import '../sass/project/modal';
25
+ @import '../sass/project/pagination';
6
26
  @import '../sass/project/tooltips';
7
27
 
8
- // Load Bootstrap variables
9
- // All bootstrap variables are marked with !default and will be ignored if declared previously
10
- @import 'bootstrap/scss/bootstrap';
11
- @import '../sass/project/buttons';
28
+
29
+ // Bootstrap Variables
30
+ // ------------------------------------------------------------------
31
+
32
+ @import 'node_modules/bootstrap/scss/variables';
33
+ @import 'node_modules/bootstrap/scss/maps';
34
+
35
+
36
+ // Bootstrap Base
37
+ // ------------------------------------------------------------------
38
+
39
+ @import 'node_modules/bootstrap/scss/mixins';
40
+ @import 'node_modules/bootstrap/scss/root';
41
+ @import 'node_modules/bootstrap/scss/utilities';
42
+ @import 'node_modules/bootstrap/scss/reboot';
43
+
44
+
45
+ // Bootstrap Components
46
+ // ------------------------------------------------------------------
47
+
48
+ @import 'node_modules/bootstrap/scss/type';
49
+ @import 'node_modules/bootstrap/scss/images';
50
+ @import 'node_modules/bootstrap/scss/containers';
51
+ @import 'node_modules/bootstrap/scss/grid';
52
+ @import 'node_modules/bootstrap/scss/tables';
53
+ @import 'node_modules/bootstrap/scss/forms';
54
+ @import 'node_modules/bootstrap/scss/buttons';
55
+ @import 'node_modules/bootstrap/scss/transitions';
56
+ @import 'node_modules/bootstrap/scss/dropdown';
57
+ @import 'node_modules/bootstrap/scss/button-group';
58
+ @import 'node_modules/bootstrap/scss/nav';
59
+ @import 'node_modules/bootstrap/scss/navbar';
60
+ @import 'node_modules/bootstrap/scss/card';
61
+ @import 'node_modules/bootstrap/scss/accordion';
62
+ @import 'node_modules/bootstrap/scss/breadcrumb';
63
+ @import 'node_modules/bootstrap/scss/pagination';
64
+ @import 'node_modules/bootstrap/scss/badge';
65
+ @import 'node_modules/bootstrap/scss/alert';
66
+ @import 'node_modules/bootstrap/scss/progress';
67
+ @import 'node_modules/bootstrap/scss/list-group';
68
+ @import 'node_modules/bootstrap/scss/close';
69
+ @import 'node_modules/bootstrap/scss/toasts';
70
+ @import 'node_modules/bootstrap/scss/modal';
71
+ @import 'node_modules/bootstrap/scss/tooltip';
72
+ @import 'node_modules/bootstrap/scss/popover';
73
+ @import 'node_modules/bootstrap/scss/carousel';
74
+ @import 'node_modules/bootstrap/scss/spinners';
75
+ @import 'node_modules/bootstrap/scss/offcanvas';
76
+ @import 'node_modules/bootstrap/scss/placeholders';
77
+ @import 'node_modules/bootstrap/scss/helpers';
78
+ @import 'node_modules/bootstrap/scss/utilities/api';
79
+
80
+
81
+ // Project Components
82
+ // ------------------------------------------------------------------
83
+
84
+ @import '../sass/project/components/buttons';
85
+ @import '../sass/project/components/checkbox';
86
+ @import '../sass/project/components/radio';
87
+ @import '../sass/project/components/switch';
88
+ @import '../sass/project/components/input';
89
+ @import '../sass/project/components/select';
90
+ @import '../sass/project/components/alerts';
91
+ @import '../sass/project/components/modal';
92
+ @import '../sass/project/components/pagination';
93
+ @import '../sass/project/components/tooltips';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handoff-app",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Automated documentation toolchain for building client side documentation from figma",
5
5
  "author ": {
6
6
  "name": "Convertiv",
@@ -200,64 +200,64 @@ for further details on how to create this embeddable sprite variant.
200
200
  -->
201
201
 
202
202
  <svg width="0" height="0" style="position:absolute">
203
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aafeather aafeather-activity" id="icon-activity" xmlns="http://www.w3.org/2000/svg"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></symbol>
203
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="acfeather acfeather-activity" id="icon-activity" xmlns="http://www.w3.org/2000/svg"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></symbol>
204
204
  <symbol viewBox="0 0 11 11" id="icon-add" xmlns="http://www.w3.org/2000/svg"><g data-name="Layer 2"><g data-name="Isolation Mode"><path d="M5.5 11A5.5 5.5 0 1 1 11 5.5 5.51 5.51 0 0 1 5.5 11Zm0-10A4.5 4.5 0 1 0 10 5.5 4.5 4.5 0 0 0 5.5 1Z"/><path d="M5.5 8.5A.5.5 0 0 1 5 8V3a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5Z"/><path d="M8 6H3a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1Z"/></g></g></symbol>
205
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="abfeather abfeather-airplay" id="icon-airplay" xmlns="http://www.w3.org/2000/svg"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"/><path d="m12 15 5 6H7l5-6z"/></symbol>
206
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aefeather aefeather-alert-circle" id="icon-alert-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v4M12 16h.01"/></symbol>
205
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aefeather aefeather-airplay" id="icon-airplay" xmlns="http://www.w3.org/2000/svg"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"/><path d="m12 15 5 6H7l5-6z"/></symbol>
206
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aafeather aafeather-alert-circle" id="icon-alert-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v4M12 16h.01"/></symbol>
207
207
  <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="adfeather adfeather-alert-octagon" id="icon-alert-octagon" xmlns="http://www.w3.org/2000/svg"><path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2zM12 8v4M12 16h.01"/></symbol>
208
208
  <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="affeather affeather-alert-triangle" id="icon-alert-triangle" xmlns="http://www.w3.org/2000/svg"><path d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01"/></symbol>
209
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ahfeather ahfeather-align-center" id="icon-align-center" xmlns="http://www.w3.org/2000/svg"><path d="M18 10H6M21 6H3M21 14H3M18 18H6"/></symbol>
210
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="agfeather agfeather-align-justify" id="icon-align-justify" xmlns="http://www.w3.org/2000/svg"><path d="M21 10H3M21 6H3M21 14H3M21 18H3"/></symbol>
209
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="agfeather agfeather-align-center" id="icon-align-center" xmlns="http://www.w3.org/2000/svg"><path d="M18 10H6M21 6H3M21 14H3M18 18H6"/></symbol>
210
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="amfeather amfeather-align-justify" id="icon-align-justify" xmlns="http://www.w3.org/2000/svg"><path d="M21 10H3M21 6H3M21 14H3M21 18H3"/></symbol>
211
211
  <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aifeather aifeather-align-left" id="icon-align-left" xmlns="http://www.w3.org/2000/svg"><path d="M17 10H3M21 6H3M21 14H3M17 18H3"/></symbol>
212
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ajfeather ajfeather-arrow-down-circle" id="icon-arrow-down-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m8 12 4 4 4-4M12 8v8"/></symbol>
212
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ahfeather ahfeather-arrow-down-circle" id="icon-arrow-down-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m8 12 4 4 4-4M12 8v8"/></symbol>
213
213
  <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="akfeather akfeather-arrow-left-circle" id="icon-arrow-left-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 8-4 4 4 4M16 12H8"/></symbol>
214
214
  <symbol viewBox="0 0 24 24" fill="none" id="icon-arrow-right" xmlns="http://www.w3.org/2000/svg"><path d="m12 16 4-4-4-4M1 12h14" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol>
215
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="alfeather alfeather-arrow-right-circle" id="icon-arrow-right-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 16 4-4-4-4M8 12h8"/></symbol>
216
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aofeather aofeather-arrow-up-circle" id="icon-arrow-up-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m16 12-4-4-4 4M12 16V8"/></symbol>
217
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bafeather bafeather-bell" id="icon-bell" xmlns="http://www.w3.org/2000/svg"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 0 1-3.46 0"/></symbol>
218
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="amfeather amfeather-bell-off" id="icon-bell-off" xmlns="http://www.w3.org/2000/svg"><path d="M13.73 21a2 2 0 0 1-3.46 0M18.63 13A17.89 17.89 0 0 1 18 8M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14M18 8a6 6 0 0 0-9.33-5M1 1l22 22"/></symbol>
219
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="apfeather apfeather-camera" id="icon-camera" xmlns="http://www.w3.org/2000/svg"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></symbol>
220
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aqfeather aqfeather-cast" id="icon-cast" xmlns="http://www.w3.org/2000/svg"><path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6M2 20h.01"/></symbol>
221
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="arfeather arfeather-check" id="icon-check" xmlns="http://www.w3.org/2000/svg"><path d="M20 6 9 17l-5-5"/></symbol>
215
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ajfeather ajfeather-arrow-right-circle" id="icon-arrow-right-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 16 4-4-4-4M8 12h8"/></symbol>
216
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="avfeather avfeather-arrow-up-circle" id="icon-arrow-up-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m16 12-4-4-4 4M12 16V8"/></symbol>
217
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="apfeather apfeather-bell" id="icon-bell" xmlns="http://www.w3.org/2000/svg"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 0 1-3.46 0"/></symbol>
218
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="anfeather anfeather-bell-off" id="icon-bell-off" xmlns="http://www.w3.org/2000/svg"><path d="M13.73 21a2 2 0 0 1-3.46 0M18.63 13A17.89 17.89 0 0 1 18 8M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14M18 8a6 6 0 0 0-9.33-5M1 1l22 22"/></symbol>
219
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aofeather aofeather-camera" id="icon-camera" xmlns="http://www.w3.org/2000/svg"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></symbol>
220
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="asfeather asfeather-cast" id="icon-cast" xmlns="http://www.w3.org/2000/svg"><path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6M2 20h.01"/></symbol>
221
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aqfeather aqfeather-check" id="icon-check" xmlns="http://www.w3.org/2000/svg"><path d="M20 6 9 17l-5-5"/></symbol>
222
222
  <symbol viewBox="0 0 24 24" id="icon-clock" xmlns="http://www.w3.org/2000/svg"><path d="M12 23.5C5.659 23.5.5 18.341.5 12S5.659.5 12 .5 23.5 5.659 23.5 12 18.341 23.5 12 23.5zm0-22C6.21 1.5 1.5 6.21 1.5 12S6.21 22.5 12 22.5 22.5 17.79 22.5 12 17.79 1.5 12 1.5zm6 11h-6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 1 0v7.5H18a.5.5 0 0 1 0 1z" fill="currentColor" fill-rule="evenodd"/></symbol>
223
223
  <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="atfeather atfeather-code" id="icon-code" xmlns="http://www.w3.org/2000/svg"><path d="m16 18 6-6-6-6M8 6l-6 6 6 6"/></symbol>
224
- <symbol viewBox="0 0 215 165" id="icon-component" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bka"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bkc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bkb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bkd" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bka)" xlink:href="#bkb"/><use fill="#FFF" xlink:href="#bkb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bkc)" xlink:href="#bkd"/><use fill="#FFF" xlink:href="#bkd"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol>
225
- <symbol viewBox="0 0 215 170" id="icon-component-accordion" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.9%" width="109.4%" height="117.6%" filterUnits="objectBoundingBox" id="aua"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="auc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="aub" x="0" y="0" width="203" height="108" rx="3"/><rect id="aud" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#aua)" xlink:href="#aub"/><use fill="#FFF" xlink:href="#aub"/><path fill="#E8E8E8" d="M18 38h168v1H18z"/><rect fill="#E8E8E8" x="18" y="84" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="69" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="54" width="171" height="6" rx="2"/></g><g transform="translate(6 125)"><use fill="#000" filter="url(#auc)" xlink:href="#aud"/><use fill="#FFF" xlink:href="#aud"/><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="18" y="17" width="106" height="6" rx="2"/></g><g transform="translate(6 5)"><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol>
224
+ <symbol viewBox="0 0 215 165" id="icon-component" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bda"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bdc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bdb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bdd" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bda)" xlink:href="#bdb"/><use fill="#FFF" xlink:href="#bdb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bdc)" xlink:href="#bdd"/><use fill="#FFF" xlink:href="#bdd"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol>
225
+ <symbol viewBox="0 0 215 170" id="icon-component-accordion" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.9%" width="109.4%" height="117.6%" filterUnits="objectBoundingBox" id="ara"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="arc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="arb" x="0" y="0" width="203" height="108" rx="3"/><rect id="ard" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#ara)" xlink:href="#arb"/><use fill="#FFF" xlink:href="#arb"/><path fill="#E8E8E8" d="M18 38h168v1H18z"/><rect fill="#E8E8E8" x="18" y="84" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="69" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="54" width="171" height="6" rx="2"/></g><g transform="translate(6 125)"><use fill="#000" filter="url(#arc)" xlink:href="#ard"/><use fill="#FFF" xlink:href="#ard"/><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="18" y="17" width="106" height="6" rx="2"/></g><g transform="translate(6 5)"><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol>
226
226
  <symbol viewBox="0 0 215 170" id="icon-component-alert" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="aya"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="ayb" x="0" y="0" width="203" height="158" rx="6"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#aya)" xlink:href="#ayb"/><use fill="#FFF" xlink:href="#ayb"/></g><path d="M24 60h47a4 4 0 0 1 4 4v74a4 4 0 0 1-4 4H24a4 4 0 0 1-4-4V64a4 4 0 0 1 4-4ZM91 60h100a4 4 0 0 1 4 4v29a4 4 0 0 1-4 4H91a4 4 0 0 1-4-4V64a4 4 0 0 1 4-4ZM91 105h100a4 4 0 0 1 4 4v29a4 4 0 0 1-4 4H91a4 4 0 0 1-4-4v-29a4 4 0 0 1 4-4Z" fill="#E8E8E8"/><g transform="translate(20 19)"><path d="M4 0h167a4 4 0 0 1 4 4v19a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#4574C7"/><path fill="#FFF" fill-rule="nonzero" d="m164.162 11.162-2.652 2.652 2.652 2.651-1.06 1.061-2.652-2.652-2.652 2.652-1.06-1.06 2.651-2.652-2.652-2.652 1.061-1.06 2.652 2.651 2.651-2.652z"/><rect fill="#FFF" x="12" y="12" width="100" height="3" rx="1.5"/></g></g></symbol>
227
- <symbol viewBox="0 0 215 170" id="icon-component-button" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="awa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="awc"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="awe"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="awb" x="0" y="0" width="203" height="158" rx="6"/><rect id="awd" x="0" y="0" width="69" height="18" rx="2"/><rect id="awf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#awa)" xlink:href="#awb"/><use fill="#FFF" xlink:href="#awb"/><g transform="translate(107 113)"><use fill="#000" filter="url(#awc)" xlink:href="#awd"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#awe)" xlink:href="#awf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol>
227
+ <symbol viewBox="0 0 215 170" id="icon-component-button" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="baa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bac"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bae"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="bab" x="0" y="0" width="203" height="158" rx="6"/><rect id="bad" x="0" y="0" width="69" height="18" rx="2"/><rect id="baf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#baa)" xlink:href="#bab"/><use fill="#FFF" xlink:href="#bab"/><g transform="translate(107 113)"><use fill="#000" filter="url(#bac)" xlink:href="#bad"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#bae)" xlink:href="#baf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol>
228
228
  <symbol viewBox="0 0 175 139" id="icon-component-checkbox" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(0 119)"><rect x="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="1" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="12" width="135" height="6" rx="2"/></g><g transform="translate(1 40)"><g stroke="#4574C7" stroke-width="2"><rect width="18" height="18" rx="6.5"/><path stroke-linecap="round" stroke-linejoin="round" d="m13 7-4.813 5L6 9.727"/></g><rect fill="#4574C7" x="39" y="1" width="59" height="6" rx="2"/><rect fill="#4574C7" x="39" y="12" width="104" height="6" rx="2"/></g><g transform="translate(0 79)"><rect x="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="1" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="12" width="135" height="6" rx="2"/></g><g><rect x="1" y="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="2" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="13" width="135" height="6" rx="2"/></g></g></symbol>
229
229
  <symbol viewBox="0 0 205 120" id="icon-component-input" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(1 70)"><rect width="203" height="35" rx="3" fill="#000" fill-rule="nonzero" transform="translate(0 14)"/><rect width="203" height="35" rx="3" fill="#FFF" stroke="#E2E2E2" transform="translate(0 14)"/><rect fill="#D8D8D8" fill-rule="nonzero" x="1" width="76" height="6" rx="2"/></g><g transform="translate(1)"><rect width="203" height="35" rx="3" fill="#000" fill-rule="nonzero" transform="translate(0 14)"/><rect width="203" height="35" rx="3" fill="#FFF" stroke="#AFAFAF" transform="translate(0 14)"/><rect fill="#4574C7" fill-rule="nonzero" x="1" width="76" height="6" rx="2"/></g></g></symbol>
230
- <symbol viewBox="0 0 215 170" id="icon-component-modal" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="bba"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bbc"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bbe"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="bbb" x="0" y="0" width="203" height="158" rx="6"/><rect id="bbd" x="0" y="0" width="69" height="18" rx="2"/><rect id="bbf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#bba)" xlink:href="#bbb"/><use fill="#FFF" xlink:href="#bbb"/><g transform="translate(107 113)"><use fill="#000" filter="url(#bbc)" xlink:href="#bbd"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#bbe)" xlink:href="#bbf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol>
231
- <symbol viewBox="0 0 228 44" id="icon-component-pagination" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bca"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bcc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bce"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bcg"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bci"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bcb" x="0" y="0" width="32" height="32" rx="3"/><rect id="bcd" x="0" y="0" width="32" height="32" rx="3"/><rect id="bcf" x="0" y="0" width="32" height="32" rx="3"/><rect id="bch" x="0" y="0" width="32" height="32" rx="3"/><rect id="bcj" x="184" y="0" width="32" height="32" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(151 5)"><use fill="#000" filter="url(#bca)" xlink:href="#bcb"/><use fill="#FFF" xlink:href="#bcb"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(124 32)" fill="#D8D8D8"><rect width="4" height="4" rx="1"/><rect x="7" width="4" height="4" rx="1"/><rect x="14" width="4" height="4" rx="1"/></g><g transform="translate(84 5)"><use fill="#000" filter="url(#bcc)" xlink:href="#bcd"/><use fill="#FFF" xlink:href="#bcd"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(45 5)"><use fill="#000" filter="url(#bce)" xlink:href="#bcf"/><use fill="#FFF" xlink:href="#bcf"/></g><path d="M60.715 16.107c-.25.469-.588.932-1.015 1.389-.499.533-1.143 1.045-1.932 1.536.048.256.155.497.32.724.165.227.352.393.56.5a6.84 6.84 0 0 0 1.156-.656 5.853 5.853 0 0 0 1.06-.944l-.001.001-.007.131-.031.496-.029.488c-.019.323-.028.583-.028.78v2.6c0 .219.003.432.008.64.005.208.008.424.008.648l-.001-.152h-.065l-.252-.005-.154-.003a22.223 22.223 0 0 0-.504-.008h-1.376a3.55 3.55 0 0 0-.104.864c0 .277.035.565.104.864h6.36a3.972 3.972 0 0 0 0-1.728h-.984c-.112 0-.285.003-.52.008-.235.005-.41.008-.528.008h.033l.001-.178.006-.318c.005-.208.008-.421.008-.64v-7.28a5.617 5.617 0 0 0-1.976 0l-.117.235Z" fill="#4574C7" fill-rule="nonzero"/><g transform="translate(6 5)"><use fill="#000" filter="url(#bcg)" xlink:href="#bch"/><use fill="#FFF" xlink:href="#bch"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bci)" xlink:href="#bcj"/><use fill="#FFF" xlink:href="#bcj"/></g><path d="M204.242 25c-.363-.005-.69-.199-.828-.493a.724.724 0 0 1 .192-.86l3-2.61-2.982-2.641c-.258-.196-.368-.502-.286-.792.082-.29.343-.515.676-.583a.988.988 0 0 1 .901.261l3.637 3.182a.75.75 0 0 1 .269.565.75.75 0 0 1-.269.565l-3.637 3.182a.986.986 0 0 1-.673.223ZM23.579 17c.363.005.69.199.828.493a.724.724 0 0 1-.192.86l-3 2.61 2.982 2.641c.258.196.368.502.286.792-.082.29-.344.515-.676.583a.988.988 0 0 1-.901-.261l-3.637-3.182A.75.75 0 0 1 19 20.97a.75.75 0 0 1 .269-.565l3.637-3.182a.986.986 0 0 1 .673-.223Z" fill="#000" fill-rule="nonzero"/></g></symbol>
230
+ <symbol viewBox="0 0 215 170" id="icon-component-modal" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="axa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="axc"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="axe"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="axb" x="0" y="0" width="203" height="158" rx="6"/><rect id="axd" x="0" y="0" width="69" height="18" rx="2"/><rect id="axf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#axa)" xlink:href="#axb"/><use fill="#FFF" xlink:href="#axb"/><g transform="translate(107 113)"><use fill="#000" filter="url(#axc)" xlink:href="#axd"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#axe)" xlink:href="#axf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol>
231
+ <symbol viewBox="0 0 228 44" id="icon-component-pagination" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cua"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cuc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cue"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cug"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cui"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="cub" x="0" y="0" width="32" height="32" rx="3"/><rect id="cud" x="0" y="0" width="32" height="32" rx="3"/><rect id="cuf" x="0" y="0" width="32" height="32" rx="3"/><rect id="cuh" x="0" y="0" width="32" height="32" rx="3"/><rect id="cuj" x="184" y="0" width="32" height="32" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(151 5)"><use fill="#000" filter="url(#cua)" xlink:href="#cub"/><use fill="#FFF" xlink:href="#cub"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(124 32)" fill="#D8D8D8"><rect width="4" height="4" rx="1"/><rect x="7" width="4" height="4" rx="1"/><rect x="14" width="4" height="4" rx="1"/></g><g transform="translate(84 5)"><use fill="#000" filter="url(#cuc)" xlink:href="#cud"/><use fill="#FFF" xlink:href="#cud"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(45 5)"><use fill="#000" filter="url(#cue)" xlink:href="#cuf"/><use fill="#FFF" xlink:href="#cuf"/></g><path d="M60.715 16.107c-.25.469-.588.932-1.015 1.389-.499.533-1.143 1.045-1.932 1.536.048.256.155.497.32.724.165.227.352.393.56.5a6.84 6.84 0 0 0 1.156-.656 5.853 5.853 0 0 0 1.06-.944l-.001.001-.007.131-.031.496-.029.488c-.019.323-.028.583-.028.78v2.6c0 .219.003.432.008.64.005.208.008.424.008.648l-.001-.152h-.065l-.252-.005-.154-.003a22.223 22.223 0 0 0-.504-.008h-1.376a3.55 3.55 0 0 0-.104.864c0 .277.035.565.104.864h6.36a3.972 3.972 0 0 0 0-1.728h-.984c-.112 0-.285.003-.52.008-.235.005-.41.008-.528.008h.033l.001-.178.006-.318c.005-.208.008-.421.008-.64v-7.28a5.617 5.617 0 0 0-1.976 0l-.117.235Z" fill="#4574C7" fill-rule="nonzero"/><g transform="translate(6 5)"><use fill="#000" filter="url(#cug)" xlink:href="#cuh"/><use fill="#FFF" xlink:href="#cuh"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#cui)" xlink:href="#cuj"/><use fill="#FFF" xlink:href="#cuj"/></g><path d="M204.242 25c-.363-.005-.69-.199-.828-.493a.724.724 0 0 1 .192-.86l3-2.61-2.982-2.641c-.258-.196-.368-.502-.286-.792.082-.29.343-.515.676-.583a.988.988 0 0 1 .901.261l3.637 3.182a.75.75 0 0 1 .269.565.75.75 0 0 1-.269.565l-3.637 3.182a.986.986 0 0 1-.673.223ZM23.579 17c.363.005.69.199.828.493a.724.724 0 0 1-.192.86l-3 2.61 2.982 2.641c.258.196.368.502.286.792-.082.29-.344.515-.676.583a.988.988 0 0 1-.901-.261l-3.637-3.182A.75.75 0 0 1 19 20.97a.75.75 0 0 1 .269-.565l3.637-3.182a.986.986 0 0 1 .673-.223Z" fill="#000" fill-rule="nonzero"/></g></symbol>
232
232
  <symbol viewBox="0 0 175 139" fill="none" id="icon-component-radio" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="128" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 120H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM173 131H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/><circle cx="10" cy="49" r="9" stroke="#4574C7" stroke-width="2"/><circle cx="10" cy="49" r="4" fill="#4574C7"/><path d="M97 41H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h55a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM142 52H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h100a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#4574C7"/><circle cx="10" cy="88" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 80H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM173 91H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/><circle cx="10" cy="10" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 2H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM173 13H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/></symbol>
233
- <symbol viewBox="0 0 215 165" id="icon-component-select" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bea"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bec"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="beb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bed" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bea)" xlink:href="#beb"/><use fill="#FFF" xlink:href="#beb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bec)" xlink:href="#bed"/><use fill="#FFF" xlink:href="#bed"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol>
233
+ <symbol viewBox="0 0 215 165" id="icon-component-select" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bba"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bbc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bbb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bbd" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bba)" xlink:href="#bbb"/><use fill="#FFF" xlink:href="#bbb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bbc)" xlink:href="#bbd"/><use fill="#FFF" xlink:href="#bbd"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol>
234
234
  <symbol viewBox="0 0 205 120" fill="none" id="icon-component-switch" xmlns="http://www.w3.org/2000/svg"><rect x="68" y="66" width="69" height="35" rx="17.5" stroke="#4574C7" stroke-width="2"/><circle cx="119.5" cy="83.5" r="11.5" fill="#4574C7"/><rect x="68" y="17" width="69" height="35" rx="17.5" stroke="#D8D8D8" stroke-width="2"/><circle cx="85.5" cy="34.5" r="11.5" fill="#D8D8D8"/></symbol>
235
- <symbol viewBox="0 0 215 170" id="icon-component-table" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="bda"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bdb" x="0" y="0" width="203" height="158" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bda)" xlink:href="#bdb"/><use fill="#FFF" xlink:href="#bdb"/></g><g transform="translate(15 27)" fill="#E8E8E8"><path d="M12 22h161v1H12z"/><path d="M52 0h1v109h-1z"/><rect x="129" y="101" width="40" height="6" rx="2"/><rect x="129" y="80" width="35" height="6" rx="2"/><rect x="129" y="59" width="39" height="6" rx="2"/><rect x="129" y="38" width="36" height="6" rx="2"/><rect x="70" y="101" width="45" height="6" rx="2"/><rect x="70" y="80" width="39.375" height="6" rx="2"/><rect x="70" y="59" width="43.875" height="6" rx="2"/><rect x="70" y="38" width="40.5" height="6" rx="2"/><rect x="12" y="101" width="25" height="6" rx="2"/><rect x="12" y="80" width="25" height="6" rx="2"/><rect x="12" y="59" width="25" height="6" rx="2"/><rect x="12" y="38" width="25" height="6" rx="2"/></g><g transform="translate(9 11)" fill="#4574C7"><rect x="135" y="17" width="40" height="6" rx="2"/><rect x="75" y="17" width="40" height="6" rx="2"/><rect x="18" y="17" width="24" height="6" rx="2"/></g></g></symbol>
236
- <symbol viewBox="0 0 215 171" id="icon-component-tabs" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.3%" width="109.4%" height="111.9%" filterUnits="objectBoundingBox" id="bha"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><path d="M3 0h89.017a3 3 0 0 1 3 3v36.383a3 3 0 0 0 3 3H200a3 3 0 0 1 3 3V156a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3Z" id="bhb"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bha)" xlink:href="#bhb"/><use fill="#FFF" xlink:href="#bhb"/><rect fill="#E8E8E8" x="101" width="102" height="36" rx="3"/><rect fill="#E8E8E8" x="18" y="110" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="95" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="80" width="171" height="6" rx="2"/></g><g transform="translate(6 5)"><rect fill="#4574C7" x="18" y="20" width="58" height="6" rx="2"/><rect fill="#FFF" x="114" y="17" width="72" height="6" rx="2"/></g></g></symbol>
237
- <symbol viewBox="0 0 217 143" id="icon-component-tooltip" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bfa"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bfc"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bfb" x="0" y="14" width="203" height="35" rx="3"/><rect id="bfd" x="0" y="14" width="203" height="35" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(7 86)"><use fill="#000" filter="url(#bfa)" xlink:href="#bfb"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bfb"/><g transform="translate(174 24)" stroke="#E8E8E8" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(7 16)"><use fill="#000" filter="url(#bfc)" xlink:href="#bfd"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bfd"/><g transform="translate(174 24)" stroke="#4574C7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(111)"><path d="M4 0h91a4 4 0 0 1 4 4v23a4 4 0 0 1-4 4H82.51a1 1 0 0 0-.705.291L78.08 35l-3.728-3.709a1 1 0 0 0-.705-.291H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#1C1C1C"/><rect fill="#FFF" x="19" y="14" width="63" height="3" rx="1.5"/></g></g></symbol>
238
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bgfeather bgfeather-copy" id="icon-copy" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></symbol>
235
+ <symbol viewBox="0 0 215 170" id="icon-component-table" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="bca"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bcb" x="0" y="0" width="203" height="158" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bca)" xlink:href="#bcb"/><use fill="#FFF" xlink:href="#bcb"/></g><g transform="translate(15 27)" fill="#E8E8E8"><path d="M12 22h161v1H12z"/><path d="M52 0h1v109h-1z"/><rect x="129" y="101" width="40" height="6" rx="2"/><rect x="129" y="80" width="35" height="6" rx="2"/><rect x="129" y="59" width="39" height="6" rx="2"/><rect x="129" y="38" width="36" height="6" rx="2"/><rect x="70" y="101" width="45" height="6" rx="2"/><rect x="70" y="80" width="39.375" height="6" rx="2"/><rect x="70" y="59" width="43.875" height="6" rx="2"/><rect x="70" y="38" width="40.5" height="6" rx="2"/><rect x="12" y="101" width="25" height="6" rx="2"/><rect x="12" y="80" width="25" height="6" rx="2"/><rect x="12" y="59" width="25" height="6" rx="2"/><rect x="12" y="38" width="25" height="6" rx="2"/></g><g transform="translate(9 11)" fill="#4574C7"><rect x="135" y="17" width="40" height="6" rx="2"/><rect x="75" y="17" width="40" height="6" rx="2"/><rect x="18" y="17" width="24" height="6" rx="2"/></g></g></symbol>
236
+ <symbol viewBox="0 0 215 171" id="icon-component-tabs" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.3%" width="109.4%" height="111.9%" filterUnits="objectBoundingBox" id="bga"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><path d="M3 0h89.017a3 3 0 0 1 3 3v36.383a3 3 0 0 0 3 3H200a3 3 0 0 1 3 3V156a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3Z" id="bgb"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bga)" xlink:href="#bgb"/><use fill="#FFF" xlink:href="#bgb"/><rect fill="#E8E8E8" x="101" width="102" height="36" rx="3"/><rect fill="#E8E8E8" x="18" y="110" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="95" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="80" width="171" height="6" rx="2"/></g><g transform="translate(6 5)"><rect fill="#4574C7" x="18" y="20" width="58" height="6" rx="2"/><rect fill="#FFF" x="114" y="17" width="72" height="6" rx="2"/></g></g></symbol>
237
+ <symbol viewBox="0 0 217 143" id="icon-component-tooltip" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bia"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bic"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bib" x="0" y="14" width="203" height="35" rx="3"/><rect id="bid" x="0" y="14" width="203" height="35" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(7 86)"><use fill="#000" filter="url(#bia)" xlink:href="#bib"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bib"/><g transform="translate(174 24)" stroke="#E8E8E8" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(7 16)"><use fill="#000" filter="url(#bic)" xlink:href="#bid"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bid"/><g transform="translate(174 24)" stroke="#4574C7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(111)"><path d="M4 0h91a4 4 0 0 1 4 4v23a4 4 0 0 1-4 4H82.51a1 1 0 0 0-.705.291L78.08 35l-3.728-3.709a1 1 0 0 0-.705-.291H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#1C1C1C"/><rect fill="#FFF" x="19" y="14" width="63" height="3" rx="1.5"/></g></g></symbol>
238
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bkfeather bkfeather-copy" id="icon-copy" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></symbol>
239
239
  <symbol viewBox="0 0 24 16" id="icon-delivery" xmlns="http://www.w3.org/2000/svg"><path d="M16.603 0c.704 0 1.51.302 2.113.805l4.226 3.522c.805.704 1.208 1.51 1.007 2.515 0 1.208-.302 2.315-.805 3.422l-1.007 1.912c-.301.503-.805.805-1.308.805-.2 1.71-1.61 3.018-3.42 3.018-1.712 0-3.22-1.308-3.422-3.018H9.86c-.201 1.71-1.71 3.018-3.421 3.018-1.71 0-3.22-1.308-3.421-3.018h-.1A2.92 2.92 0 0 1 0 10.062c0-.301.1-.704.302-1.106C.1 8.855 0 8.754 0 8.553c0-.302.201-.503.503-.503h.201l1.007-2.013H.503c-.302 0-.503-.2-.503-.503 0-.302.201-.503.503-.503h1.71L3.22 3.02H.503C.201 3.019 0 2.817 0 2.516c0-.302.201-.504.503-.504h3.22l.201-.402A2.9 2.9 0 0 1 6.541 0zM6.541 10.062a2.491 2.491 0 0 0-2.516 2.516 2.491 2.491 0 0 0 2.516 2.516 2.491 2.491 0 0 0 2.515-2.516 2.491 2.491 0 0 0-2.515-2.516zm11.068 0a2.491 2.491 0 0 0-2.515 2.516 2.491 2.491 0 0 0 2.515 2.516 2.491 2.491 0 0 0 2.516-2.516 2.491 2.491 0 0 0-2.516-2.516zm-.805-9.056H6.742c-.705 0-1.409.403-1.71 1.006h2.716c.302 0 .503.202.503.504 0 .301-.201.503-.503.503h-3.22L3.522 5.03h2.214c.301 0 .503.201.503.503s-.202.503-.503.503H3.019L2.012 8.05h1.711c.302 0 .503.201.503.503s-.201.503-.503.503H1.51l-.1.201c-.1.302-.202.604-.202.906a1.91 1.91 0 0 0 1.912 1.912h.101c.201-1.71 1.71-3.019 3.421-3.019 1.71 0 3.22 1.308 3.421 3.019h4.126c.201-1.71 1.61-3.019 3.421-3.019 1.711 0 3.12 1.308 3.422 3.019.2-.1.301-.201.402-.302l1.006-1.912c.503-.805.705-2.012.906-3.019 0-.704-.302-1.408-.805-1.81l-4.226-3.523a2.711 2.711 0 0 0-1.51-.503zm-.402 1.006c.201 0 .402 0 .503.101l5.031 4.025c.201.201.302.403.201.604a.553.553 0 0 1-.503.302h-6.037c-.201 0-.302-.1-.403-.202-.1-.1-.1-.301-.1-.402L16.1 2.415c0-.201.1-.302.302-.403zm.503 1.41-.704 2.615h4.025l-3.321-2.616z" fill="currentColor" fill-rule="evenodd"/></symbol>
240
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="blfeather blfeather-download" id="icon-download" xmlns="http://www.w3.org/2000/svg"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"/></symbol>
241
- <symbol viewBox="0 0 472 601" fill="none" id="icon-file-jpg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bma)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#1DA890"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#2ACD70"/><path d="m91.99 175.93 9.25-6.85c2.22 4.07 5.37 6.01 8.42 6.01 4.9 0 7.49-2.5 7.49-10.55v-39.13h13.6v40.24c0 11.66-6.01 21.19-19.34 21.19-9.16 0-15.27-3.61-19.43-10.92l.01.01ZM144.72 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01ZM197 155.95c0-19.98 13.32-31.64 29.42-31.64 8.7 0 14.99 3.79 18.97 7.86l-7.12 8.7c-3.05-2.68-6.2-4.81-11.38-4.81-9.34 0-15.91 7.31-15.91 19.43 0 12.12 5.64 19.61 16.93 19.61 2.5 0 5-.65 6.48-1.85v-10.36h-9.99v-11.1h22.02v27.76c-4.16 4.07-11.47 7.31-19.89 7.31-16.56 0-29.51-10.64-29.51-30.9l-.02-.01Z" fill="#F5F5F5"/><path d="M381.27 519.18H130.95V301.31h250.32v217.87Zm-238.73-11.59h227.14V312.9H142.54v194.69Z" fill="#C9C9C9"/><path d="m136.75 513.38 75.32-75.32 24.34 24.33 62.58-62.58 76.49 113.57H136.75ZM215.179 373.08c1.883-8.758-3.691-17.384-12.449-19.266-8.758-1.883-17.384 3.691-19.267 12.449-1.882 8.758 3.692 17.384 12.45 19.266 8.758 1.883 17.384-3.691 19.266-12.449Z" fill="#C9C9C9"/></g><defs><clipPath id="bma"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol>
242
- <symbol viewBox="0 0 472 601" fill="none" id="icon-file-svg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bna)"><path d="m0 226.55 46.36 41.15 3.09-41.15H0Z" fill="#F46D38"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#FEA352"/><path d="M119.535 142.515c-.233-2.349-1.233-4.174-2.999-5.475-1.767-1.3-4.165-1.951-7.193-1.951-2.058 0-3.795.292-5.212.874-1.417.563-2.505 1.349-3.262 2.359-.737 1.009-1.106 2.155-1.106 3.436-.039 1.068.184 1.999.67 2.795.504.796 1.193 1.485 2.067 2.068.874.563 1.883 1.058 3.028 1.485 1.146.407 2.369.757 3.669 1.048l5.358 1.281c2.602.583 4.99 1.359 7.164 2.33 2.174.971 4.057 2.164 5.649 3.582a14.885 14.885 0 0 1 3.698 5.008c.893 1.922 1.349 4.125 1.369 6.61-.02 3.65-.952 6.814-2.796 9.493-1.825 2.66-4.465 4.727-7.92 6.203-3.436 1.455-7.581 2.183-12.434 2.183-4.815 0-9.008-.737-12.58-2.213-3.552-1.475-6.328-3.659-8.328-6.551-1.98-2.912-3.019-6.513-3.116-10.804h12.201c.136 2 .709 3.669 1.718 5.009 1.029 1.32 2.398 2.32 4.106 2.999 1.728.66 3.679.99 5.853.99 2.136 0 3.99-.31 5.562-.932 1.592-.621 2.825-1.485 3.698-2.591.874-1.107 1.311-2.378 1.311-3.815 0-1.339-.398-2.465-1.194-3.378-.777-.912-1.922-1.689-3.436-2.329-1.495-.641-3.33-1.223-5.504-1.747l-6.494-1.631c-5.027-1.223-8.997-3.135-11.91-5.737-2.911-2.601-4.358-6.105-4.338-10.512-.02-3.611.941-6.765 2.883-9.464 1.96-2.698 4.649-4.804 8.066-6.318 3.416-1.515 7.299-2.272 11.647-2.272 4.427 0 8.29.757 11.59 2.272 3.319 1.514 5.901 3.62 7.746 6.318 1.844 2.699 2.795 5.824 2.853 9.377h-12.084Zm32.155-17.151 14.414 45.309h.553l14.443-45.309h13.978L174.519 185h-16.248l-20.588-59.636h14.007Zm86.746 19.277c-.407-1.418-.98-2.67-1.718-3.757a10.595 10.595 0 0 0-2.708-2.795c-1.048-.777-2.252-1.369-3.611-1.777-1.339-.407-2.824-.611-4.455-.611-3.048 0-5.727.757-8.037 2.271-2.291 1.515-4.077 3.718-5.358 6.61-1.281 2.873-1.922 6.387-1.922 10.542 0 4.154.631 7.687 1.893 10.599s3.048 5.135 5.358 6.668c2.31 1.515 5.038 2.272 8.183 2.272 2.853 0 5.29-.505 7.308-1.515 2.039-1.028 3.592-2.475 4.66-4.338 1.087-1.864 1.63-4.067 1.63-6.61l2.563.378h-15.375v-9.493h24.955v7.513c0 5.241-1.107 9.745-3.32 13.511-2.213 3.747-5.26 6.64-9.143 8.678-3.883 2.019-8.328 3.028-13.337 3.028-5.591 0-10.502-1.232-14.734-3.698-4.232-2.485-7.532-6.008-9.901-10.57-2.349-4.582-3.523-10.017-3.523-16.307 0-4.834.699-9.143 2.097-12.929 1.417-3.805 3.397-7.027 5.94-9.668a25.66 25.66 0 0 1 8.881-6.027c3.378-1.379 7.037-2.068 10.978-2.068 3.378 0 6.523.495 9.435 1.485 2.912.971 5.494 2.349 7.746 4.135a22.388 22.388 0 0 1 5.561 6.377c1.437 2.446 2.359 5.145 2.767 8.096h-12.813Z" fill="#F5F5F5"/><path d="M239.89 353.09v-29.77h29.07v29.77h-29.07Zm19.15-11.2v-7.36h-9.23v7.36h9.23Z" fill="#C9C9C9"/><path d="M242.37 326.13v24.17h24.11v-24.17h-24.11Zm19.15 18.56h-14.19v-12.96h14.19v12.96ZM139.07 486.07V456.3h28.18v29.77h-28.18Zm18.26-11.2v-7.36h-8.34v7.36h8.34Z" fill="#C9C9C9"/><path d="M141.55 459.11v24.17h23.22v-24.17h-23.22Zm18.26 18.56h-13.3v-12.96h13.3v12.96ZM344.28 486.07V456.3h28.88v29.77h-28.88Zm18.95-11.2v-7.36h-9.03v7.36h9.03Z" fill="#C9C9C9"/><path d="M346.76 459.11v24.17h23.92v-24.17h-23.92Zm18.95 18.56h-13.99v-12.96h13.99v12.96Z" fill="#C9C9C9"/><path d="m351.21 486.07.25-3.05c.15-1.82.27-3.67.37-5.51l.14-2.63h12.31l-.08 2.88c-.05 1.93-.18 3.87-.33 5.77l-.2 2.55h-12.45l-.01-.01Zm-204.52 0-.2-2.55c-.15-1.9-.28-3.84-.33-5.77l-.08-2.88h12.31l.14 2.63c.1 1.85.22 3.69.37 5.51l.25 3.05H146.7l-.01.01Zm205.18-18.56-.11-2.68a97.02 97.02 0 0 0-.36-5.43c-5.14-59.08-46.52-103.62-96.25-103.62s-91.08 44.54-96.22 103.6c-.17 1.81-.29 3.63-.36 5.45l-.11 2.67h-12.43l.12-2.93c.08-1.92.2-3.84.36-5.73 4.91-60.07 45.09-108.92 95.54-116.15 2.72-.38 5.62-.65 8.61-.8 1.49-.08 3-.11 4.5-.11s3.01.03 4.52.12c2.34.11 4.73.31 7.06.6 51.28 6.47 92.11 55.41 97.1 116.35.15 1.89.28 3.81.36 5.73l.12 2.93h-12.45Z" fill="#C9C9C9"/><path d="M156.06 477.67h-7.42c.05 1.88.17 3.75.32 5.6h7.47c-.15-1.85-.27-3.72-.37-5.6Zm205.31-18.56c-4.89-59.76-44.75-107.5-94.89-113.83a92.63 92.63 0 0 0-6.92-.59c-1.46-.08-2.93-.11-4.39-.11-1.46 0-2.93.03-4.39.11-2.83.14-5.63.39-8.41.78-49.42 7.08-88.54 54.46-93.38 113.63-.15 1.85-.27 3.72-.35 5.6h7.47c.08-1.88.2-3.75.37-5.6 5.18-59.56 47.48-106.13 98.69-106.13s93.53 46.57 98.71 106.13c.17 1.85.3 3.72.37 5.6h7.47c-.08-1.88-.2-3.75-.35-5.6v.01Zm-7.07 18.56c-.1 1.88-.22 3.75-.37 5.6h7.47c.15-1.85.27-3.72.32-5.6h-7.42ZM342.45 333.74h-83.41v8.4h83.41v-8.4Z" fill="#C9C9C9"/><path d="M339.96 336.54h-78.44v2.8h78.44v-2.8Z" fill="#C9C9C9"/><path d="M343 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M343 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22ZM249.81 333.74h-81.89v8.4h81.89v-8.4Z" fill="#C9C9C9"/><path d="M247.33 336.54H170.4v2.8h76.93v-2.8Z" fill="#C9C9C9"/><path d="M167.36 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M167.36 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22Z" fill="#C9C9C9"/></g><defs><clipPath id="bna"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol>
243
- <symbol viewBox="0 0 472 601" fill="none" id="icon-file-zip" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#boa)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#E27829"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#F7BD38"/><path d="m106 177.5 26.65-40.61H108.5v-11.47h40.89v8.23l-26.65 40.62h26.92v11.47h-43.67v-8.23l.01-.01ZM159.85 125.42h13.6v60.32h-13.6v-60.32ZM187.7 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01Z" fill="#F5F5F5"/><path d="M256.11 276.97h-49.83v28.46h49.83v-28.46ZM305.94 305.43h-49.83v28.46h49.83v-28.46ZM256.11 333.88h-49.83v28.46h49.83v-28.46ZM305.94 362.34h-49.83v28.46h49.83v-28.46ZM256.11 390.8h-49.83v28.46h49.83V390.8ZM305.94 419.25h-49.83v28.46h49.83v-28.46ZM276.66 459.79h-41.11l-8.23 61.36c-1.1 8.22 6.65 15.41 16.62 15.41h24.32c9.97 0 17.73-7.19 16.62-15.41l-8.23-61.36h.01Zm-36.93 51.54c1.3-5.2 6.44-8.9 12.37-8.9h8.01c5.93 0 11.07 3.7 12.37 8.9 2.15 8.61-5.77 16.69-16.38 16.69-10.6 0-18.53-8.08-16.38-16.69h.01Z" fill="#C9C9C9"/></g><defs><clipPath id="boa"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol>
240
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bnfeather bnfeather-download" id="icon-download" xmlns="http://www.w3.org/2000/svg"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"/></symbol>
241
+ <symbol viewBox="0 0 472 601" fill="none" id="icon-file-jpg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bja)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#1DA890"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#2ACD70"/><path d="m91.99 175.93 9.25-6.85c2.22 4.07 5.37 6.01 8.42 6.01 4.9 0 7.49-2.5 7.49-10.55v-39.13h13.6v40.24c0 11.66-6.01 21.19-19.34 21.19-9.16 0-15.27-3.61-19.43-10.92l.01.01ZM144.72 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01ZM197 155.95c0-19.98 13.32-31.64 29.42-31.64 8.7 0 14.99 3.79 18.97 7.86l-7.12 8.7c-3.05-2.68-6.2-4.81-11.38-4.81-9.34 0-15.91 7.31-15.91 19.43 0 12.12 5.64 19.61 16.93 19.61 2.5 0 5-.65 6.48-1.85v-10.36h-9.99v-11.1h22.02v27.76c-4.16 4.07-11.47 7.31-19.89 7.31-16.56 0-29.51-10.64-29.51-30.9l-.02-.01Z" fill="#F5F5F5"/><path d="M381.27 519.18H130.95V301.31h250.32v217.87Zm-238.73-11.59h227.14V312.9H142.54v194.69Z" fill="#C9C9C9"/><path d="m136.75 513.38 75.32-75.32 24.34 24.33 62.58-62.58 76.49 113.57H136.75ZM215.179 373.08c1.883-8.758-3.691-17.384-12.449-19.266-8.758-1.883-17.384 3.691-19.267 12.449-1.882 8.758 3.692 17.384 12.45 19.266 8.758 1.883 17.384-3.691 19.266-12.449Z" fill="#C9C9C9"/></g><defs><clipPath id="bja"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol>
242
+ <symbol viewBox="0 0 472 601" fill="none" id="icon-file-svg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bqa)"><path d="m0 226.55 46.36 41.15 3.09-41.15H0Z" fill="#F46D38"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#FEA352"/><path d="M119.535 142.515c-.233-2.349-1.233-4.174-2.999-5.475-1.767-1.3-4.165-1.951-7.193-1.951-2.058 0-3.795.292-5.212.874-1.417.563-2.505 1.349-3.262 2.359-.737 1.009-1.106 2.155-1.106 3.436-.039 1.068.184 1.999.67 2.795.504.796 1.193 1.485 2.067 2.068.874.563 1.883 1.058 3.028 1.485 1.146.407 2.369.757 3.669 1.048l5.358 1.281c2.602.583 4.99 1.359 7.164 2.33 2.174.971 4.057 2.164 5.649 3.582a14.885 14.885 0 0 1 3.698 5.008c.893 1.922 1.349 4.125 1.369 6.61-.02 3.65-.952 6.814-2.796 9.493-1.825 2.66-4.465 4.727-7.92 6.203-3.436 1.455-7.581 2.183-12.434 2.183-4.815 0-9.008-.737-12.58-2.213-3.552-1.475-6.328-3.659-8.328-6.551-1.98-2.912-3.019-6.513-3.116-10.804h12.201c.136 2 .709 3.669 1.718 5.009 1.029 1.32 2.398 2.32 4.106 2.999 1.728.66 3.679.99 5.853.99 2.136 0 3.99-.31 5.562-.932 1.592-.621 2.825-1.485 3.698-2.591.874-1.107 1.311-2.378 1.311-3.815 0-1.339-.398-2.465-1.194-3.378-.777-.912-1.922-1.689-3.436-2.329-1.495-.641-3.33-1.223-5.504-1.747l-6.494-1.631c-5.027-1.223-8.997-3.135-11.91-5.737-2.911-2.601-4.358-6.105-4.338-10.512-.02-3.611.941-6.765 2.883-9.464 1.96-2.698 4.649-4.804 8.066-6.318 3.416-1.515 7.299-2.272 11.647-2.272 4.427 0 8.29.757 11.59 2.272 3.319 1.514 5.901 3.62 7.746 6.318 1.844 2.699 2.795 5.824 2.853 9.377h-12.084Zm32.155-17.151 14.414 45.309h.553l14.443-45.309h13.978L174.519 185h-16.248l-20.588-59.636h14.007Zm86.746 19.277c-.407-1.418-.98-2.67-1.718-3.757a10.595 10.595 0 0 0-2.708-2.795c-1.048-.777-2.252-1.369-3.611-1.777-1.339-.407-2.824-.611-4.455-.611-3.048 0-5.727.757-8.037 2.271-2.291 1.515-4.077 3.718-5.358 6.61-1.281 2.873-1.922 6.387-1.922 10.542 0 4.154.631 7.687 1.893 10.599s3.048 5.135 5.358 6.668c2.31 1.515 5.038 2.272 8.183 2.272 2.853 0 5.29-.505 7.308-1.515 2.039-1.028 3.592-2.475 4.66-4.338 1.087-1.864 1.63-4.067 1.63-6.61l2.563.378h-15.375v-9.493h24.955v7.513c0 5.241-1.107 9.745-3.32 13.511-2.213 3.747-5.26 6.64-9.143 8.678-3.883 2.019-8.328 3.028-13.337 3.028-5.591 0-10.502-1.232-14.734-3.698-4.232-2.485-7.532-6.008-9.901-10.57-2.349-4.582-3.523-10.017-3.523-16.307 0-4.834.699-9.143 2.097-12.929 1.417-3.805 3.397-7.027 5.94-9.668a25.66 25.66 0 0 1 8.881-6.027c3.378-1.379 7.037-2.068 10.978-2.068 3.378 0 6.523.495 9.435 1.485 2.912.971 5.494 2.349 7.746 4.135a22.388 22.388 0 0 1 5.561 6.377c1.437 2.446 2.359 5.145 2.767 8.096h-12.813Z" fill="#F5F5F5"/><path d="M239.89 353.09v-29.77h29.07v29.77h-29.07Zm19.15-11.2v-7.36h-9.23v7.36h9.23Z" fill="#C9C9C9"/><path d="M242.37 326.13v24.17h24.11v-24.17h-24.11Zm19.15 18.56h-14.19v-12.96h14.19v12.96ZM139.07 486.07V456.3h28.18v29.77h-28.18Zm18.26-11.2v-7.36h-8.34v7.36h8.34Z" fill="#C9C9C9"/><path d="M141.55 459.11v24.17h23.22v-24.17h-23.22Zm18.26 18.56h-13.3v-12.96h13.3v12.96ZM344.28 486.07V456.3h28.88v29.77h-28.88Zm18.95-11.2v-7.36h-9.03v7.36h9.03Z" fill="#C9C9C9"/><path d="M346.76 459.11v24.17h23.92v-24.17h-23.92Zm18.95 18.56h-13.99v-12.96h13.99v12.96Z" fill="#C9C9C9"/><path d="m351.21 486.07.25-3.05c.15-1.82.27-3.67.37-5.51l.14-2.63h12.31l-.08 2.88c-.05 1.93-.18 3.87-.33 5.77l-.2 2.55h-12.45l-.01-.01Zm-204.52 0-.2-2.55c-.15-1.9-.28-3.84-.33-5.77l-.08-2.88h12.31l.14 2.63c.1 1.85.22 3.69.37 5.51l.25 3.05H146.7l-.01.01Zm205.18-18.56-.11-2.68a97.02 97.02 0 0 0-.36-5.43c-5.14-59.08-46.52-103.62-96.25-103.62s-91.08 44.54-96.22 103.6c-.17 1.81-.29 3.63-.36 5.45l-.11 2.67h-12.43l.12-2.93c.08-1.92.2-3.84.36-5.73 4.91-60.07 45.09-108.92 95.54-116.15 2.72-.38 5.62-.65 8.61-.8 1.49-.08 3-.11 4.5-.11s3.01.03 4.52.12c2.34.11 4.73.31 7.06.6 51.28 6.47 92.11 55.41 97.1 116.35.15 1.89.28 3.81.36 5.73l.12 2.93h-12.45Z" fill="#C9C9C9"/><path d="M156.06 477.67h-7.42c.05 1.88.17 3.75.32 5.6h7.47c-.15-1.85-.27-3.72-.37-5.6Zm205.31-18.56c-4.89-59.76-44.75-107.5-94.89-113.83a92.63 92.63 0 0 0-6.92-.59c-1.46-.08-2.93-.11-4.39-.11-1.46 0-2.93.03-4.39.11-2.83.14-5.63.39-8.41.78-49.42 7.08-88.54 54.46-93.38 113.63-.15 1.85-.27 3.72-.35 5.6h7.47c.08-1.88.2-3.75.37-5.6 5.18-59.56 47.48-106.13 98.69-106.13s93.53 46.57 98.71 106.13c.17 1.85.3 3.72.37 5.6h7.47c-.08-1.88-.2-3.75-.35-5.6v.01Zm-7.07 18.56c-.1 1.88-.22 3.75-.37 5.6h7.47c.15-1.85.27-3.72.32-5.6h-7.42ZM342.45 333.74h-83.41v8.4h83.41v-8.4Z" fill="#C9C9C9"/><path d="M339.96 336.54h-78.44v2.8h78.44v-2.8Z" fill="#C9C9C9"/><path d="M343 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M343 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22ZM249.81 333.74h-81.89v8.4h81.89v-8.4Z" fill="#C9C9C9"/><path d="M247.33 336.54H170.4v2.8h76.93v-2.8Z" fill="#C9C9C9"/><path d="M167.36 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M167.36 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22Z" fill="#C9C9C9"/></g><defs><clipPath id="bqa"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol>
243
+ <symbol viewBox="0 0 472 601" fill="none" id="icon-file-zip" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bla)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#E27829"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#F7BD38"/><path d="m106 177.5 26.65-40.61H108.5v-11.47h40.89v8.23l-26.65 40.62h26.92v11.47h-43.67v-8.23l.01-.01ZM159.85 125.42h13.6v60.32h-13.6v-60.32ZM187.7 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01Z" fill="#F5F5F5"/><path d="M256.11 276.97h-49.83v28.46h49.83v-28.46ZM305.94 305.43h-49.83v28.46h49.83v-28.46ZM256.11 333.88h-49.83v28.46h49.83v-28.46ZM305.94 362.34h-49.83v28.46h49.83v-28.46ZM256.11 390.8h-49.83v28.46h49.83V390.8ZM305.94 419.25h-49.83v28.46h49.83v-28.46ZM276.66 459.79h-41.11l-8.23 61.36c-1.1 8.22 6.65 15.41 16.62 15.41h24.32c9.97 0 17.73-7.19 16.62-15.41l-8.23-61.36h.01Zm-36.93 51.54c1.3-5.2 6.44-8.9 12.37-8.9h8.01c5.93 0 11.07 3.7 12.37 8.9 2.15 8.61-5.77 16.69-16.38 16.69-10.6 0-18.53-8.08-16.38-16.69h.01Z" fill="#C9C9C9"/></g><defs><clipPath id="bla"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol>
244
244
  <symbol viewBox="0 0 206 112" id="icon-hero-brand-assets" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m171.647 20.613-.342 1.97A39.758 39.758 0 0 0 164.5 22v-2c2.414 0 4.803.206 7.147.613Zm15.204 5.914-1.078 1.685a39.383 39.383 0 0 0-6.045-3.17l.771-1.845a41.383 41.383 0 0 1 6.352 3.33Zm11.752 11.318-1.643 1.141a39.705 39.705 0 0 0-4.364-5.25l1.423-1.406a41.705 41.705 0 0 1 4.584 5.515Zm6.508 15.07-1.958.411a39.19 39.19 0 0 0-1.98-6.532l1.855-.745a41.19 41.19 0 0 1 2.083 6.866Zm.19 16.211-1.967-.365c.414-2.227.637-4.498.663-6.796l2 .023a41.692 41.692 0 0 1-.696 7.138Zm-6.096 15.137-1.671-1.098a39.404 39.404 0 0 0 3.242-6.009l1.836.794a41.404 41.404 0 0 1-3.407 6.313ZM187.75 95.88l-1.122-1.655a39.694 39.694 0 0 0 5.302-4.303l1.39 1.44a41.694 41.694 0 0 1-5.57 4.518Zm-15.11 6.322-.39-1.962a39.193 39.193 0 0 0 6.553-1.909l.724 1.864a41.193 41.193 0 0 1-6.887 2.007Zm-16.092.798v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16.113-2.099.63-1.898a39.239 39.239 0 0 0 6.643 1.575l-.291 1.98a41.239 41.239 0 0 1-6.982-1.657ZM14.24 92.792l1.315-1.507a39.633 39.633 0 0 0 5.513 4.027l-1.036 1.71a41.633 41.633 0 0 1-5.792-4.23ZM4.28 79.876l1.793-.886a39.495 39.495 0 0 0 3.545 5.834l-1.613 1.183a41.495 41.495 0 0 1-3.725-6.13ZM.084 64.164l1.996-.126a39.45 39.45 0 0 0 1.018 6.75l-1.944.469a41.45 41.45 0 0 1-1.07-7.093Zm2.171-16.192 1.89.652a39.223 39.223 0 0 0-1.653 6.624l-1.975-.314c.377-2.376.96-4.703 1.738-6.962Zm8.278-14.1 1.492 1.331a39.649 39.649 0 0 0-4.092 5.465l-1.698-1.056a41.649 41.649 0 0 1 4.298-5.74Zm13.032-9.807.865 1.803a39.474 39.474 0 0 0-5.875 3.476l-1.164-1.627a41.474 41.474 0 0 1 6.174-3.652Zm15.76-4.009.104 1.997a39.497 39.497 0 0 0-6.763.938l-.445-1.95a41.497 41.497 0 0 1 7.104-.985ZM55.405 20v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm13.095 0v2h-4.095v-2h4.095Z" fill="#000" fill-rule="nonzero"/><path fill="#FFF" d="M45.957 9.75h37.304v25.278H45.957z"/><path fill="#FFF" d="M49.783 1.972h38.261V27.25H49.783z"/><path d="M76.087 8.778h5.26c1.058 0 1.914.87 1.914 1.944v23.334c0 1.074-.856 1.944-1.913 1.944H46.913C45.856 36 45 35.13 45 34.056V10.722c0-1.074.856-1.944 1.913-1.944h22.478" stroke="#111" stroke-width="2" stroke-linecap="round"/><path d="M50.74 4.889V2.944C50.74 1.87 51.594 1 52.651 1h34.435C88.144 1 89 1.87 89 2.944v23.334c0 1.074-.856 1.944-1.913 1.944h-3.826" stroke="#111" stroke-width="2" stroke-linecap="round"/><path stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M81.348 36 69.39 20.444l-9.565 11.9M47.391 36 57.71 22.389l2.766 3.107"/><path d="M49.304 17.528c0-1.343 1.07-2.43 2.392-2.43 1.32 0 2.391 1.087 2.391 2.43 0 1.342-1.07 2.43-2.391 2.43s-2.392-1.088-2.392-2.43Z" stroke="#111" stroke-width="2"/><path fill="#FFF" d="M29.281 66H56v44H22V73.255z"/><path d="M21 73v36a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V67a2 2 0 0 0-2-2H29l-8 8Z" stroke="#000" stroke-width="2" stroke-linejoin="round"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M26 76h6v-6"/><path d="M34 86.68v12.64c0 .517.605.844 1.099.595l12.508-6.297a.682.682 0 0 0 0-1.236l-12.508-6.297c-.494-.25-1.099.079-1.099.595Z" stroke="#000" stroke-width="2"/><path fill="#FFF" d="M152.441 1.76h20.781v33.48h-26.444V7.28z"/><path d="M158.77 25.27c.587 0 1.11-.11 1.57-.33.46-.22.863-.485 1.21-.795l.216-.198.05.1a2.2 2.2 0 0 0 .397.507l.167.146c.293.233.67.383 1.13.45.173-.113.342-.29.505-.53.163-.24.268-.463.315-.67a1.375 1.375 0 0 1-.445-.68 3.379 3.379 0 0 1-.115-.93v-4.09c0-.787-.145-1.428-.435-1.925a2.64 2.64 0 0 0-1.19-1.095c-.503-.233-1.072-.35-1.705-.35-.453 0-.935.04-1.445.12-.51.08-1.01.19-1.5.33s-.932.29-1.325.45c.02.307.087.618.2.935.113.317.26.568.44.755a26.265 26.265 0 0 1 1.58-.505 5.512 5.512 0 0 1 1.51-.225c.507 0 .892.13 1.155.39s.395.677.395 1.25v.66l-.216-.024-.344-.026c-.467-.027-.877-.04-1.23-.04-.713 0-1.363.118-1.95.355a3.03 3.03 0 0 0-1.395 1.1c-.343.497-.515 1.128-.515 1.895 0 .48.108.947.325 1.4.217.453.543.828.98 1.125.437.297.992.445 1.665.445Zm.58-1.81c-.4 0-.707-.127-.92-.38-.213-.253-.32-.567-.32-.94 0-.493.148-.887.445-1.18.297-.293.725-.44 1.285-.44a22.396 22.396 0 0 1 1.441.052l.169.018v1.849l-.106.11c-.112.108-.23.208-.352.298l-.187.128c-.51.323-.995.485-1.455.485Z" fill="#202020" fill-rule="nonzero"/><path d="M146 7.087v27.391c0 .841.696 1.522 1.556 1.522h24.888c.86 0 1.556-.681 1.556-1.522V2.522C174 1.68 173.304 1 172.444 1h-20.222L146 7.087Z" stroke="#000" stroke-width="2" stroke-linejoin="round"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M149.889 9.37h4.667V4.804"/><path fill="#FFF" d="M129.425 66H153v39h-30l-1-34z"/><path fill="#FFF" d="M136.185 70H159v40h-29.032L129 75.128z"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M126.5 74.5h5v-5M137 78h8M129 94h16M129 86h16"/><g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M152 97v6.5a1.5 1.5 0 0 1-1.5 1.5h-27a1.5 1.5 0 0 1-1.5-1.5v-32a1 1 0 0 1 .4-.8l7.333-5.5a1 1 0 0 1 .6-.2H150.5a1.5 1.5 0 0 1 1.5 1.5V91"/><path d="M156 71h2.5a1.5 1.5 0 0 1 1.5 1.5v37a1.5 1.5 0 0 1-1.5 1.5h-27a1.5 1.5 0 0 1-1.5-1.5V105"/></g></g></symbol>
245
- <symbol viewBox="0 0 222 107" fill="none" id="icon-hero-colors" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bqa)"><path fill-rule="evenodd" clip-rule="evenodd" d="M68.333 53.672A3199.338 3199.338 0 0 0 98.143 105h-23.31c-3.592 0-6.5-2.925-6.5-6.5V53.672Zm12.35 3.722c14.205 8.459 55.753 33.185 56.858 33.822l-22.369 12.913a6.563 6.563 0 0 1-3.254.871 6.508 6.508 0 0 1-5.629-3.25L80.683 57.394Zm8.234-55.523A6.491 6.491 0 0 0 85.667 1c-2.271 0-4.446 1.2-5.63 3.25L64.872 30.519a6.503 6.503 0 0 0 2.379 8.879c12.723 7.345 63.18 37.7 75.903 45.049a6.498 6.498 0 0 0 8.874-2.383l15.167-26.269c.576-.997.806-2.115.806-3.246 0-2.253-1.114-4.441-3.181-5.633L88.917 1.871ZM90 18.961c4.784 0 8.667 3.883 8.667 8.667A8.67 8.67 0 0 1 90 36.295a8.67 8.67 0 0 1-8.667-8.667c0-4.784 3.883-8.666 8.667-8.666" fill="#000"/></g><defs><clipPath id="bqa"><path fill="#fff" transform="translate(64 1)" d="M0 0h104v104H0z"/></clipPath></defs></symbol>
246
- <symbol viewBox="0 0 218 123" id="icon-hero-components" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-8.6%" y="-34%" width="117.3%" height="176%" filterUnits="objectBoundingBox" id="bsa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-9.7%" width="111.5%" height="121.6%" filterUnits="objectBoundingBox" id="bsc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-27.4%" width="111.5%" height="161.3%" filterUnits="objectBoundingBox" id="bse"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bsb" x="0" y="0" width="110" height="25" rx="3"/><rect id="bsd" x="0" y="0" width="165" height="88" rx="3"/><rect id="bsf" x="0" y="0" width="165" height="31" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 32)"><use fill="#000" filter="url(#bsa)" xlink:href="#bsb"/><use fill="#FFF" xlink:href="#bsb"/><rect fill="#D8D8D8" x="29" y="11" width="68" height="3" rx="1.5"/><circle fill="#D8D8D8" cx="14" cy="13" r="5"/></g><g transform="translate(47 5)"><use fill="#000" filter="url(#bsc)" xlink:href="#bsd"/><use fill="#FFF" xlink:href="#bsd"/><path fill="#E8E8E8" d="M14 31h137v1H14z"/><rect fill="#E8E8E8" x="14" y="68" width="111" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="56" width="140" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="44" width="140" height="5" rx="2"/></g><g transform="translate(12 85)"><use fill="#000" filter="url(#bse)" xlink:href="#bsf"/><use fill="#FFF" xlink:href="#bsf"/><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="14" y="13" width="87" height="5" rx="2"/></g><g transform="translate(47 5)"><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#242424" x="14" y="13" width="87" height="5" rx="2"/></g></g></symbol>
245
+ <symbol viewBox="0 0 222 107" fill="none" id="icon-hero-colors" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#boa)"><path fill-rule="evenodd" clip-rule="evenodd" d="M68.333 53.672A3199.338 3199.338 0 0 0 98.143 105h-23.31c-3.592 0-6.5-2.925-6.5-6.5V53.672Zm12.35 3.722c14.205 8.459 55.753 33.185 56.858 33.822l-22.369 12.913a6.563 6.563 0 0 1-3.254.871 6.508 6.508 0 0 1-5.629-3.25L80.683 57.394Zm8.234-55.523A6.491 6.491 0 0 0 85.667 1c-2.271 0-4.446 1.2-5.63 3.25L64.872 30.519a6.503 6.503 0 0 0 2.379 8.879c12.723 7.345 63.18 37.7 75.903 45.049a6.498 6.498 0 0 0 8.874-2.383l15.167-26.269c.576-.997.806-2.115.806-3.246 0-2.253-1.114-4.441-3.181-5.633L88.917 1.871ZM90 18.961c4.784 0 8.667 3.883 8.667 8.667A8.67 8.67 0 0 1 90 36.295a8.67 8.67 0 0 1-8.667-8.667c0-4.784 3.883-8.666 8.667-8.666" fill="#000"/></g><defs><clipPath id="boa"><path fill="#fff" transform="translate(64 1)" d="M0 0h104v104H0z"/></clipPath></defs></symbol>
246
+ <symbol viewBox="0 0 218 123" id="icon-hero-components" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-8.6%" y="-34%" width="117.3%" height="176%" filterUnits="objectBoundingBox" id="bpa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-9.7%" width="111.5%" height="121.6%" filterUnits="objectBoundingBox" id="bpc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-27.4%" width="111.5%" height="161.3%" filterUnits="objectBoundingBox" id="bpe"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bpb" x="0" y="0" width="110" height="25" rx="3"/><rect id="bpd" x="0" y="0" width="165" height="88" rx="3"/><rect id="bpf" x="0" y="0" width="165" height="31" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 32)"><use fill="#000" filter="url(#bpa)" xlink:href="#bpb"/><use fill="#FFF" xlink:href="#bpb"/><rect fill="#D8D8D8" x="29" y="11" width="68" height="3" rx="1.5"/><circle fill="#D8D8D8" cx="14" cy="13" r="5"/></g><g transform="translate(47 5)"><use fill="#000" filter="url(#bpc)" xlink:href="#bpd"/><use fill="#FFF" xlink:href="#bpd"/><path fill="#E8E8E8" d="M14 31h137v1H14z"/><rect fill="#E8E8E8" x="14" y="68" width="111" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="56" width="140" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="44" width="140" height="5" rx="2"/></g><g transform="translate(12 85)"><use fill="#000" filter="url(#bpe)" xlink:href="#bpf"/><use fill="#FFF" xlink:href="#bpf"/><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="14" y="13" width="87" height="5" rx="2"/></g><g transform="translate(47 5)"><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#242424" x="14" y="13" width="87" height="5" rx="2"/></g></g></symbol>
247
247
  <symbol viewBox="0 0 222 107" id="icon-hero-design" xmlns="http://www.w3.org/2000/svg"><g fill-rule="nonzero" fill="none"><path d="M.977 105v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 57v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 27v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Z" fill="#000" opacity=".247"/><path d="M85.012 105.284c2.214 0 4.58-.24 7.097-.718 2.516-.478 4.58-1.17 6.19-2.076L65.609 1.018C63.796.666 61.594.414 59.002.263 56.41.112 54.182.036 52.32.036c-1.913 0-4.152.063-6.72.19-2.566.125-4.781.339-6.643.641L5.51 102.263l.83 1.209c1.36.453 3.109.817 5.248 1.094 2.139.277 4.115.415 5.927.415 1.761 0 3.473-.05 5.134-.15 1.66-.101 3.196-.328 4.605-.68l6.645-22.329h.06l.395.009.412.01 2.983.075c1.006.025 1.862.038 2.567.038h21.366c.654 0 1.485-.013 2.492-.038l3.02-.075c.251-.007.493-.012.726-.017l.191-.003 3.16 11.005c1.362 4.768 3.03 8.02 5.004 9.754l.205.174c2.064 1.686 4.908 2.53 8.532 2.53ZM39.28 63.743l4.13-13.877c.503-1.744 1.046-3.635 1.627-5.67l.444-1.554.458-1.609a316.897 316.897 0 0 0 2.643-9.89c.83-3.323 1.497-6.343 2-9.06h.907a780.628 780.628 0 0 0 4.114 15.703c1.535 5.638 2.907 10.57 4.115 14.798l3.199 11.147h-.003l-.402-.01-2.87-.076a96.381 96.381 0 0 0-2.491-.038H45.601c-.705 0-1.536.013-2.492.038l-2.869.076c-.24.006-.469.012-.689.016l-.27.006Zm121.504 42.446c4.48 0 8.406-.742 11.778-2.227 3.372-1.485 6.33-3.36 8.871-5.624.462-.412.915-.825 1.358-1.238l.116-.109.231.328c1.21 1.675 2.707 3.165 4.488 4.47l.451.323c2.743 1.913 6.254 2.945 10.533 3.096 1.46-1.107 2.881-2.819 4.265-5.134 1.384-2.315 2.303-4.454 2.756-6.418-1.51-1.107-2.592-2.516-3.246-4.228-.655-1.71-.982-3.724-.982-6.04V52.66c0-6.292-1.283-11.312-3.85-15.062s-5.877-6.456-9.929-8.116c-4.052-1.662-8.317-2.492-12.797-2.492-3.272 0-6.92.277-10.947.83a115.468 115.468 0 0 0-12.118 2.341c-4.052 1.007-7.739 2.19-11.06 3.548.25 2.769.842 5.613 1.773 8.532.931 2.92 2.202 5.285 3.813 7.097a331.02 331.02 0 0 1 11.665-3.36c3.85-1.032 7.437-1.547 10.759-1.547 3.473 0 6.052.843 7.738 2.529 1.686 1.686 2.53 4.215 2.53 7.587l-.001 3.126-.29-.022a73.723 73.723 0 0 0-1.556-.088l-.796-.033c-3.473-.126-6.367-.189-8.682-.189-5.235 0-10.117.919-14.647 2.756-4.53 1.837-8.18 4.68-10.948 8.531-2.768 3.85-4.152 8.77-4.152 14.76 0 3.624.817 7.186 2.453 10.684 1.636 3.498 4.153 6.392 7.55 8.682 3.398 2.29 7.689 3.435 12.873 3.435Zm6.418-16.685c-2.316 0-4.128-.717-5.436-2.152-1.31-1.434-1.963-3.259-1.963-5.474 0-2.97.805-5.385 2.416-7.248 1.61-1.862 4.177-2.793 7.7-2.793a245.178 245.178 0 0 1 8.504.176l.556.027v12.416l-.179.157c-.527.452-1.07.877-1.627 1.275l-.42.294c-3.247 2.215-6.43 3.322-9.551 3.322Z" fill="#202020"/><path fill="#000" d="M221 57v49h-1V57z"/><path fill="#000" d="M221 57v1h-4v-1zM221 105v1h-4v-1z"/><path d="M173.186 17v-2.492l2.14-3.933h-1.142l-1.52 2.931-1.521-2.93H170l2.131 3.967V17h1.055Zm11.496-3.652v-.786h-4.232v.786h4.232Zm0 1.754v-.783h-4.232v.783h4.232Zm8.56 1.898v-6.425h-.86l-1.89 1.486.518.654c.56-.454.889-.723.987-.808.098-.085.18-.163.248-.233-.023.29-.035.682-.035 1.178V17h1.033Zm4.277.088c.738 0 1.286-.271 1.645-.813.36-.542.539-1.371.539-2.487 0-1.084-.185-1.908-.554-2.47-.37-.563-.913-.844-1.63-.844-.736 0-1.283.269-1.642.807-.359.537-.538 1.373-.538 2.507 0 1.08.184 1.901.554 2.46.369.56.91.84 1.626.84Zm0-.861c-.396 0-.684-.188-.864-.563-.18-.375-.27-1-.27-1.876 0-.876.09-1.503.27-1.881.18-.378.468-.567.864-.567.395 0 .684.192.867.578.184.385.275 1.008.275 1.87 0 .864-.091 1.486-.275 1.867-.183.381-.472.572-.867.572Zm5.137.86c.738 0 1.287-.27 1.646-.812.358-.542.538-1.371.538-2.487 0-1.084-.185-1.908-.554-2.47-.369-.563-.912-.844-1.63-.844-.736 0-1.283.269-1.642.807-.358.537-.538 1.373-.538 2.507 0 1.08.185 1.901.554 2.46.369.56.91.84 1.626.84Zm0-.86c-.396 0-.684-.188-.864-.563-.18-.375-.27-1-.27-1.876 0-.876.09-1.503.27-1.881.18-.378.468-.567.864-.567.395 0 .685.192.868.578.183.385.274 1.008.274 1.87 0 .864-.091 1.486-.274 1.867-.183.381-.473.572-.868.572Zm4.342-1.71c.471 0 .828-.17 1.07-.507.241-.339.362-.845.362-1.519 0-.644-.124-1.14-.371-1.487-.248-.348-.601-.521-1.061-.521-.935 0-1.402.67-1.402 2.008 0 .65.122 1.15.367 1.5.244.351.59.526 1.035.526Zm.747 2.483 3.564-6.425h-.853L206.892 17h.853Zm-.747-3.204c-.194 0-.333-.107-.418-.32-.085-.214-.127-.54-.127-.976 0-.437.042-.762.127-.976.085-.213.224-.32.418-.32.386 0 .58.432.58 1.296 0 .864-.194 1.296-.58 1.296Zm4.188 3.292c.465 0 .82-.169 1.063-.505.243-.337.365-.843.365-1.517 0-.647-.125-1.144-.376-1.49-.25-.345-.601-.518-1.052-.518-.938 0-1.407.67-1.407 2.008 0 .654.123 1.154.37 1.501.246.347.591.52 1.037.52Zm0-.716c-.194 0-.334-.109-.42-.326-.087-.216-.13-.543-.13-.98 0-.436.043-.76.13-.97.086-.212.226-.317.42-.317.383 0 .575.429.575 1.287 0 .87-.192 1.306-.575 1.306ZM102.143 85l1.621-2.628L105.373 85h1.208l-2.162-3.313 2.008-3.112h-1.134l-1.485 2.43-1.485-2.43h-1.17l1.996 3.094L101.018 85h1.125Zm13.812-3.652v-.786h-4.232v.786h4.232Zm0 1.754v-.783h-4.232v.783h4.232Zm7.312 1.986c.806 0 1.427-.168 1.863-.503.437-.336.655-.813.655-1.43 0-.426-.129-.766-.387-1.022-.257-.257-.644-.417-1.16-.482v-.035c.43-.094.765-.276 1.002-.547.238-.27.356-.61.356-1.017 0-.49-.181-.873-.545-1.152-.363-.278-.868-.417-1.516-.417-.78 0-1.463.217-2.052.65l.505.721c.308-.2.575-.333.8-.402.226-.069.46-.103.703-.103.349 0 .613.074.791.224.179.15.268.362.268.637 0 .709-.512 1.063-1.538 1.063h-.567v.84h.558c.583 0 1.011.08 1.284.241.272.162.408.414.408.756 0 .387-.123.673-.369.857-.246.185-.618.277-1.116.277a4.115 4.115 0 0 1-1.745-.422v.919c.49.231 1.09.347 1.802.347Zm6.144-.088v-2.492l2.14-3.933h-1.143l-1.52 2.931-1.52-2.93h-1.143l2.131 3.967V85h1.055Z" fill="#2C2C2C"/></g></symbol>
248
- <symbol id="icon-hero-effects" viewBox="0 0 23.17 23.16" xmlns="http://www.w3.org/2000/svg"><defs><style>.bwcls-1,.bwcls-2{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round}.bwcls-2{stroke-dasharray:0 0 1.02 2.05}</style></defs><g id="bwLayer_1-2"><path class="bwcls-1" d="M6.28 16.88v.5"/><path class="bwcls-2" d="M6.28 19.43v2.22c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V7.29c0-.56-.45-1.01-1.01-1.01H18.4"/><path class="bwcls-1" d="M17.38 6.28h-.5M15.87.5H1.51C.95.5.5.95.5 1.5v14.37c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V1.5c0-.55-.45-1-1.01-1Z"/></g></symbol>
248
+ <symbol id="icon-hero-effects" viewBox="0 0 23.17 23.16" xmlns="http://www.w3.org/2000/svg"><defs><style>.bvcls-1,.bvcls-2{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round}.bvcls-2{stroke-dasharray:0 0 1.02 2.05}</style></defs><g id="bvLayer_1-2"><path class="bvcls-1" d="M6.28 16.88v.5"/><path class="bvcls-2" d="M6.28 19.43v2.22c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V7.29c0-.56-.45-1.01-1.01-1.01H18.4"/><path class="bvcls-1" d="M17.38 6.28h-.5M15.87.5H1.51C.95.5.5.95.5 1.5v14.37c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V1.5c0-.55-.45-1-1.01-1Z"/></g></symbol>
249
249
  <symbol viewBox="0 0 34 24" fill="none" id="icon-image" xmlns="http://www.w3.org/2000/svg"><path d="M29 3H15a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM31 15l-5-5-11 11M7 6 4 3 1 6M1 18l3 3 3-3M4 16V8" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol>
250
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bvfeather bvfeather-link-2" id="icon-link" xmlns="http://www.w3.org/2000/svg"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3M8 12h8"/></symbol>
250
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="btfeather btfeather-link-2" id="icon-link" xmlns="http://www.w3.org/2000/svg"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3M8 12h8"/></symbol>
251
251
  <symbol viewBox="0 0 220 47" fill="none" id="icon-logo" xmlns="http://www.w3.org/2000/svg"><path d="M18.197 13.41c-4.099 0-7.204 1.527-8.881 3.881V1.578H0v44.531h9.316V28.742c0-4.517 2.36-6.552 5.776-6.552 2.981 0 5.403 1.845 5.403 5.789v18.13h9.316V26.58c0-8.588-5.341-13.168-11.614-13.168ZM58.753 14.301v2.99c-2.05-2.417-5.093-3.88-9.254-3.88-8.136 0-14.843 7.315-14.843 16.794 0 9.48 6.707 16.795 14.843 16.795 4.161 0 7.205-1.463 9.254-3.88v2.99h9.316V14.3h-9.316Zm-7.39 23.666c-4.286 0-7.391-2.99-7.391-7.762 0-4.77 3.105-7.76 7.39-7.76 4.286 0 7.391 2.99 7.391 7.76 0 4.772-3.105 7.762-7.39 7.762ZM93.101 13.41c-4.099 0-7.204 1.527-8.881 3.881v-2.99h-9.316V46.11h9.316V28.742c0-4.517 2.36-6.552 5.776-6.552 2.98 0 5.403 1.845 5.403 5.789v18.13h9.316V26.58c0-8.588-5.341-13.168-11.614-13.168ZM133.657 1.578V17.29c-2.05-2.417-5.093-3.88-9.254-3.88-8.136 0-14.843 7.315-14.843 16.794 0 9.48 6.707 16.795 14.843 16.795 4.161 0 7.204-1.463 9.254-3.88v2.99h9.316V1.577h-9.316Zm-7.391 36.389c-4.285 0-7.39-2.99-7.39-7.762 0-4.77 3.105-7.76 7.39-7.76 4.286 0 7.391 2.99 7.391 7.76 0 4.772-3.105 7.762-7.391 7.762ZM164.713 47c9.13 0 16.458-7.316 16.458-16.795 0-9.479-7.328-16.794-16.458-16.794-9.13 0-16.458 7.315-16.458 16.794 0 9.48 7.328 16.795 16.458 16.795Zm0-9.288c-4.037 0-7.142-2.99-7.142-7.507 0-4.516 3.105-7.506 7.142-7.506 4.037 0 7.142 2.99 7.142 7.506 0 4.517-3.105 7.507-7.142 7.507ZM220 9.212V.052c-10.31-.637-15.092 4.707-15.092 13.613v.636h-8.074c0-3.69 2.298-4.771 5.776-4.453V.688C192.301.05 187.518 5.394 187.518 14.3h-4.161v9.16h4.161V46.11h9.316V23.462h8.074v22.647h9.316V23.462H220v-9.16h-5.776v-.637c0-3.69 2.298-4.771 5.776-4.453Z" fill="#3A3535"/></symbol>
252
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bxfeather bxfeather-moon" id="icon-moon" xmlns="http://www.w3.org/2000/svg"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></symbol>
252
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bwfeather bwfeather-moon" id="icon-moon" xmlns="http://www.w3.org/2000/svg"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></symbol>
253
253
  <symbol viewBox="0 0 648 367" fill="none" id="icon-motiv-logo-dark-example" xmlns="http://www.w3.org/2000/svg"><rect width="648" height="367" rx="6" fill="#2C2B2B"/><path d="M326.36 163.8h-5.76l-6.84 11.196-6.84-11.196h-5.76V189h5.76v-14.652l6.516 10.692h.648l6.516-10.692V189h5.76v-25.2Zm12.611 25.704c5.292 0 9.54-4.14 9.54-9.504s-4.248-9.504-9.54-9.504c-5.292 0-9.54 4.14-9.54 9.504s4.248 9.504 9.54 9.504Zm0-5.256c-2.34 0-4.14-1.692-4.14-4.248s1.8-4.248 4.14-4.248 4.14 1.692 4.14 4.248-1.8 4.248-4.14 4.248Zm22.611-8.064V171h-3.708v-5.04l-5.4 1.62V171h-2.88v5.184h2.88v6.372c0 5.04 2.052 7.164 9.108 6.444v-4.896c-2.376.144-3.708 0-3.708-1.548v-6.372h3.708Zm5.578-6.768c1.764 0 3.24-1.476 3.24-3.24 0-1.764-1.476-3.24-3.24-3.24-1.764 0-3.24 1.476-3.24 3.24 0 1.764 1.476 3.24 3.24 3.24ZM364.46 189h5.4v-18h-5.4v18Zm20.655-18-3.744 11.412L377.627 171h-5.976l6.66 18h6.12l6.66-18h-5.976Z" fill="#fff"/><path d="M305.12 198.4h-5.04V211h5.04c3.474 0 6.12-2.736 6.12-6.3 0-3.564-2.646-6.3-6.12-6.3Zm0 9.828h-2.16v-7.056h2.16c1.98 0 3.348 1.368 3.348 3.528s-1.368 3.528-3.348 3.528Zm10.529 0v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm10.985 3.024c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm5.942-12.852V211h2.88v-12.6h-2.88Zm17.429 5.58h-6.318v2.52h3.366c-.45 1.206-1.548 1.944-3.222 1.944-2.448 0-3.96-1.566-3.96-3.708 0-2.214 1.584-3.78 3.708-3.78 1.422 0 2.556.648 3.078 1.476l2.448-1.404c-1.062-1.692-3.096-2.88-5.508-2.88-3.708 0-6.606 2.916-6.606 6.57 0 3.618 2.844 6.534 6.804 6.534 3.528 0 6.21-2.34 6.21-6.192v-1.08Zm8.553-5.58v6.84l-4.86-6.84h-2.16V211h2.88v-6.84l4.86 6.84h2.16v-12.6h-2.88Zm13.769 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm15.744-12.852h-3.276l-2.394 4.86-2.394-4.86h-3.276l4.23 7.758V211h2.88v-4.842l4.23-7.758Zm4.677 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm14.033-12.852h-9.36v2.772h3.24V211h2.88v-9.828h3.24V198.4Zm4.05 9.828v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm19.175-9.828h-2.88l-3.42 5.598-3.42-5.598h-2.88V211h2.88v-7.326l3.258 5.346h.324l3.258-5.346V211h2.88v-12.6Z" fill="#BFBFBF"/><path d="M212 177c0-11.598 9.402-21 21-21h14c11.598 0 21 9.402 21 21v35h-35c-11.598 0-21-9.402-21-21v-14Z" fill="#0073E6"/><path d="M250.8 174H246l-5.7 9.33-5.7-9.33h-4.8v21h4.8v-12.21l5.43 8.91h.54l5.43-8.91V195h4.8v-21Z" fill="#fff"/><path fill="#F19CFF" d="M210 2h2v365h-2zM190 2h2v365h-2zM430 2h2v365h-2zM450 2h2v365h-2z"/></symbol>
254
254
  <symbol viewBox="0 0 648 367" fill="none" id="icon-motiv-logo-example" xmlns="http://www.w3.org/2000/svg"><rect width="648" height="367" rx="6" fill="#F9F9F9"/><path d="M326.36 163.8h-5.76l-6.84 11.196-6.84-11.196h-5.76V189h5.76v-14.652l6.516 10.692h.648l6.516-10.692V189h5.76v-25.2Zm12.611 25.704c5.292 0 9.54-4.14 9.54-9.504s-4.248-9.504-9.54-9.504c-5.292 0-9.54 4.14-9.54 9.504s4.248 9.504 9.54 9.504Zm0-5.256c-2.34 0-4.14-1.692-4.14-4.248s1.8-4.248 4.14-4.248 4.14 1.692 4.14 4.248-1.8 4.248-4.14 4.248Zm22.611-8.064V171h-3.708v-5.04l-5.4 1.62V171h-2.88v5.184h2.88v6.372c0 5.04 2.052 7.164 9.108 6.444v-4.896c-2.376.144-3.708 0-3.708-1.548v-6.372h3.708Zm5.578-6.768c1.764 0 3.24-1.476 3.24-3.24 0-1.764-1.476-3.24-3.24-3.24-1.764 0-3.24 1.476-3.24 3.24 0 1.764 1.476 3.24 3.24 3.24ZM364.46 189h5.4v-18h-5.4v18Zm20.655-18-3.744 11.412L377.627 171h-5.976l6.66 18h6.12l6.66-18h-5.976Z" fill="#333"/><path d="M305.12 198.4h-5.04V211h5.04c3.474 0 6.12-2.736 6.12-6.3 0-3.564-2.646-6.3-6.12-6.3Zm0 9.828h-2.16v-7.056h2.16c1.98 0 3.348 1.368 3.348 3.528s-1.368 3.528-3.348 3.528Zm10.529 0v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm10.985 3.024c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm5.942-12.852V211h2.88v-12.6h-2.88Zm17.429 5.58h-6.318v2.52h3.366c-.45 1.206-1.548 1.944-3.222 1.944-2.448 0-3.96-1.566-3.96-3.708 0-2.214 1.584-3.78 3.708-3.78 1.422 0 2.556.648 3.078 1.476l2.448-1.404c-1.062-1.692-3.096-2.88-5.508-2.88-3.708 0-6.606 2.916-6.606 6.57 0 3.618 2.844 6.534 6.804 6.534 3.528 0 6.21-2.34 6.21-6.192v-1.08Zm8.553-5.58v6.84l-4.86-6.84h-2.16V211h2.88v-6.84l4.86 6.84h2.16v-12.6h-2.88Zm13.769 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm15.744-12.852h-3.276l-2.394 4.86-2.394-4.86h-3.276l4.23 7.758V211h2.88v-4.842l4.23-7.758Zm4.677 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm14.033-12.852h-9.36v2.772h3.24V211h2.88v-9.828h3.24V198.4Zm4.05 9.828v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm19.175-9.828h-2.88l-3.42 5.598-3.42-5.598h-2.88V211h2.88v-7.326l3.258 5.346h.324l3.258-5.346V211h2.88v-12.6Z" fill="#BFBFBF"/><path d="M212 177c0-11.598 9.402-21 21-21h14c11.598 0 21 9.402 21 21v35h-35c-11.598 0-21-9.402-21-21v-14Z" fill="#0073E6"/><path d="M250.8 174H246l-5.7 9.33-5.7-9.33h-4.8v21h4.8v-12.21l5.43 8.91h.54l5.43-8.91V195h4.8v-21Z" fill="#fff"/><path fill="#F19CFF" d="M210 2h2v365h-2zM190 2h2v365h-2zM430 2h2v365h-2zM450 2h2v365h-2z"/></symbol>
255
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cbfeather cbfeather-plus-circle" id="icon-plus-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v8M8 12h8"/></symbol>
255
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="byfeather byfeather-plus-circle" id="icon-plus-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v8M8 12h8"/></symbol>
256
256
  <symbol viewBox="0 0 491 437" id="icon-react" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="nonzero"><path d="M490.6 218.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V0c-27.5 0-63.5 19.6-99.9 53.6C208.7 19.8 172.7.4 145.2.4v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1C40.5 155.4 0 186.1 0 218.5c0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3Zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9Zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9Zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1ZM245.5 352c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32Zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4ZM245 85c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32Zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9ZM80.5 269.1c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2ZM134.3 412c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7Zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1Zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6Z"/><circle cx="245.2" cy="218.5" r="45.7"/></g></symbol>
257
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cdfeather cdfeather-search" id="icon-search" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></symbol>
257
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ccfeather ccfeather-search" id="icon-search" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></symbol>
258
258
  <symbol viewBox="0 0 302 167" id="icon-search-laptop" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M6.42 141h289a4 4 0 0 1 3.693 5.538l-5.641 13.539a8 8 0 0 1-7.385 4.923H15.754a8 8 0 0 1-7.385-4.923l-5.64-13.539A4 4 0 0 1 6.42 141ZM27.42 129.408V17.168c0-8.284 6.716-15 15-15h218.991c8.285 0 15 6.716 15 15v112.24" stroke="#DEDEDE" stroke-width="4"/><g fill="#4574C7" fill-rule="nonzero"><path d="M148.667 44.167c-14.084 0-25.5 11.416-25.5 25.5 0 14.083 11.416 25.5 25.5 25.5 14.083 0 25.5-11.417 25.5-25.5 0-14.084-11.417-25.5-25.5-25.5Zm0 5.666c10.953 0 19.833 8.88 19.833 19.834 0 10.953-8.88 19.833-19.833 19.833-10.954 0-19.834-8.88-19.834-19.833 0-10.954 8.88-19.834 19.834-19.834Z"/><path d="M162.672 83.672a2.834 2.834 0 0 1 3.74-.236l.266.236 12.325 12.325a2.833 2.833 0 0 1-3.74 4.242l-.266-.236-12.325-12.325a2.833 2.833 0 0 1 0-4.006Z"/></g></g></symbol>
259
- <symbol id="icon-send" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><style>.cecls-1{fill-rule:evenodd}</style></defs><path id="ceIcon-Color" class="cecls-1" d="M9.92 23.93h-.07l.07.06a.47.47 0 0 1-.1-.1s0 0 0-.05l-2.3-6.92-7.11-2.55a.64.64 0 0 1-.41-.51.62.62 0 0 1 .3-.58L23.1.08h.05-.07H23.67h-.05l.08.09v.06a.14.14 0 0 1 0 .07v.41L20.39 21.1a.6.6 0 0 1-.83.45l-5.47-2.34-3.41 4.55v.05-.06l-.07.08a.62.62 0 0 1-.37.16.5.5 0 0 1-.27-.07ZM18.7 6.15 8.49 16.36l1.56 4.7.76-3.78v-.07.07a.5.5 0 0 1 0-.13.21.21 0 0 1 0-.06Zm-6.86 12.09-.53 2.68 1.69-2.2ZM22.35 3.1l-10 14 7 3Zm-2.61.31L2.05 13.65l5.59 1.86Z"/></symbol>
260
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cffeather cffeather-share-2" id="icon-share" xmlns="http://www.w3.org/2000/svg"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><path d="m8.59 13.51 6.83 3.98M15.41 6.51l-6.82 3.98"/></symbol>
259
+ <symbol id="icon-send" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><style>.cfcls-1{fill-rule:evenodd}</style></defs><path id="cfIcon-Color" class="cfcls-1" d="M9.92 23.93h-.07l.07.06a.47.47 0 0 1-.1-.1s0 0 0-.05l-2.3-6.92-7.11-2.55a.64.64 0 0 1-.41-.51.62.62 0 0 1 .3-.58L23.1.08h.05-.07H23.67h-.05l.08.09v.06a.14.14 0 0 1 0 .07v.41L20.39 21.1a.6.6 0 0 1-.83.45l-5.47-2.34-3.41 4.55v.05-.06l-.07.08a.62.62 0 0 1-.37.16.5.5 0 0 1-.27-.07ZM18.7 6.15 8.49 16.36l1.56 4.7.76-3.78v-.07.07a.5.5 0 0 1 0-.13.21.21 0 0 1 0-.06Zm-6.86 12.09-.53 2.68 1.69-2.2ZM22.35 3.1l-10 14 7 3Zm-2.61.31L2.05 13.65l5.59 1.86Z"/></symbol>
260
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cdfeather cdfeather-share-2" id="icon-share" xmlns="http://www.w3.org/2000/svg"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><path d="m8.59 13.51 6.83 3.98M15.41 6.51l-6.82 3.98"/></symbol>
261
261
  <symbol viewBox="0 0 37 18" id="icon-small-accordion" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4C1.79 0 0 1.896 0 4.235v9.53C0 16.104 1.79 18 4 18h29c2.21 0 4-1.896 4-4.235v-9.53C37 1.896 35.21 0 33 0ZM4 2.118h29c1.105 0 2 .948 2 2.117v9.53c0 1.17-.895 2.117-2 2.117H4c-1.105 0-2-.948-2-2.117v-9.53c0-1.17.895-2.117 2-2.117ZM25 8h6a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2Zm2 4V6a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0Z" fill="#000" fill-rule="nonzero"/></symbol>
262
262
  <symbol viewBox="0 0 37 17" id="icon-small-button" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4a4 4 0 0 0-4 4v9a4 4 0 0 0 4 4h29a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4ZM4 2h29a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 5.5h15v2H11v-2Z" fill="#000" fill-rule="nonzero"/></symbol>
263
263
  <symbol viewBox="0 0 38 19" id="icon-small-pagination" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect stroke="#000" stroke-width="2" x="1" y="1" width="36" height="17" rx="4"/><path d="M27.815 13c-.319-.005-.604-.174-.725-.432a.633.633 0 0 1 .168-.752l2.625-2.283-2.61-2.311a.645.645 0 0 1-.25-.694c.072-.253.3-.45.592-.51a.865.865 0 0 1 .788.229l3.183 2.784c.15.131.235.309.235.495a.656.656 0 0 1-.235.494l-3.183 2.784a.863.863 0 0 1-.588.195Z" fill="#000" fill-rule="nonzero"/><path fill="#000" d="M18 2h2v15h-2z"/><path d="M10.006 6c.319.005.604.174.725.432a.633.633 0 0 1-.168.752L7.938 9.467l2.61 2.311c.225.172.321.44.25.694-.073.253-.301.45-.592.51a.865.865 0 0 1-.788-.229L6.235 9.97A.656.656 0 0 1 6 9.474c0-.185.085-.363.235-.494l3.183-2.784A.863.863 0 0 1 10.006 6Z" fill="#000" fill-rule="nonzero"/></g></symbol>
@@ -265,15 +265,15 @@ for further details on how to create this embeddable sprite variant.
265
265
  <symbol viewBox="0 0 37 18" id="icon-small-select" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4C1.79 0 0 1.896 0 4.235v9.53C0 16.104 1.79 18 4 18h29c2.21 0 4-1.896 4-4.235v-9.53C37 1.896 35.21 0 33 0ZM4 2.118h29c1.105 0 2 .948 2 2.117v9.53c0 1.17-.895 2.117-2 2.117H4c-1.105 0-2-.948-2-2.117v-9.53c0-1.17.895-2.117 2-2.117ZM7 8.5h12v2H7v-2Zm17.496-.88c.003-.318.173-.603.43-.724a.633.633 0 0 1 .753.168l2.283 2.625 2.311-2.61a.645.645 0 0 1 .693-.25c.254.073.451.301.51.592a.865.865 0 0 1-.228.788l-2.785 3.183a.656.656 0 0 1-.494.235.656.656 0 0 1-.494-.235L24.69 8.209a.863.863 0 0 1-.194-.588Z" fill="#000" fill-rule="nonzero"/></symbol>
266
266
  <symbol viewBox="0 0 37 22" id="icon-small-table" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="evenodd"><rect x="16" y="18" width="18" height="3" rx="1.5"/><rect x="16" y="10" width="18" height="3" rx="1.5"/><rect x="16" y="2" width="18" height="3" rx="1.5"/><rect x="1" y="18" width="10" height="3" rx="1.5"/><rect x="1" y="10" width="10" height="3" rx="1.5"/><rect x="1" y="2" width="9" height="3" rx="1.5"/></g></symbol>
267
267
  <symbol viewBox="0 0 38 19" id="icon-small-toggle" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 1h19a8.5 8.5 0 0 1 0 17h-19a8.5 8.5 0 0 1 0-17Zm1 12a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z" stroke="#000" stroke-width="2" fill="none" fill-rule="evenodd"/></symbol>
268
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cnfeather cnfeather-sun" id="icon-sun" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></symbol>
268
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cmfeather cmfeather-sun" id="icon-sun" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></symbol>
269
269
  <symbol viewBox="0 0 11 11" fill="none" id="icon-token-alignment" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M1 8h6v1H1zM1 5h9v1H1zM1 2h9v1H1z"/></symbol>
270
270
  <symbol viewBox="0 0 9 10" fill="none" id="icon-token-border-radius" xmlns="http://www.w3.org/2000/svg"><path d="M1 10V6a5 5 0 0 1 5-5h3" stroke="#000"/></symbol>
271
271
  <symbol viewBox="0 0 11 11" fill="none" id="icon-token-border-width" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 1h9v.947H1.947V10H1V1Z" fill="#000"/><path fill="#000" d="M3 9h1v1H3zM5 8.999h1v1H5zM7 8.998h1v1H7zM9 8.996h1v1H9zM9 7h1v1H9zM9 5h1v1H9zM9 3h1v1H9z"/></symbol>
272
272
  <symbol viewBox="0 0 13 12" fill="none" id="icon-token-spacing-horizontal" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M12 0h1v12h-1zM9 3h1v6H9zM3 3h1v6H3z"/><path fill="#000" d="M3 4V3h7v1zM3 9V8h7v1zM0 0h1v12H0z"/></symbol>
273
273
  <symbol viewBox="0 0 13 12" fill="none" id="icon-token-spacing-vertical" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M9 3h1v6H9zM3 3h1v6H3z"/><path fill="#000" d="M3 4V3h7v1zM3 9V8h7v1zM0 1V0h13v1zM0 12v-1h13v1z"/></symbol>
274
274
  <symbol viewBox="0 0 11 11" fill="none" id="icon-token-type-small" xmlns="http://www.w3.org/2000/svg"><path d="M1 2.719V1h9.167v1.719M3.865 10.167h3.437M5.583 1v9.167" stroke="#181818" stroke-linecap="round" stroke-linejoin="round"/></symbol>
275
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cqfeather cqfeather-x" id="icon-x" xmlns="http://www.w3.org/2000/svg"><path d="M18 6 6 18M6 6l12 12"/></symbol>
276
- <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cvfeather cvfeather-zap" id="icon-zap" xmlns="http://www.w3.org/2000/svg"><path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z"/></symbol>
275
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="crfeather crfeather-x" id="icon-x" xmlns="http://www.w3.org/2000/svg"><path d="M18 6 6 18M6 6l12 12"/></symbol>
276
+ <symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="csfeather csfeather-zap" id="icon-zap" xmlns="http://www.w3.org/2000/svg"><path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z"/></symbol>
277
277
  </svg>
278
278
 
279
279
  <!--
@@ -1511,7 +1511,7 @@ SVG sprite. They may be styled via CSS.
1511
1511
 
1512
1512
  </section>
1513
1513
  <footer>
1514
- <p>Generated at Thu, 09 Mar 2023 16:58:01 GMT by <a href="https://github.com/svg-sprite/svg-sprite" target="_blank" rel="noopener noreferrer">svg-sprite</a>.</p>
1514
+ <p>Generated at Thu, 09 Mar 2023 17:17:21 GMT by <a href="https://github.com/svg-sprite/svg-sprite" target="_blank" rel="noopener noreferrer">svg-sprite</a>.</p>
1515
1515
  </footer>
1516
1516
  </body>
1517
1517
  </html>
@@ -1 +1 @@
1
- <?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aafeather aafeather-activity" id="icon-activity" xmlns="http://www.w3.org/2000/svg"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></symbol><symbol viewBox="0 0 11 11" id="icon-add" xmlns="http://www.w3.org/2000/svg"><g data-name="Layer 2"><g data-name="Isolation Mode"><path d="M5.5 11A5.5 5.5 0 1 1 11 5.5 5.51 5.51 0 0 1 5.5 11Zm0-10A4.5 4.5 0 1 0 10 5.5 4.5 4.5 0 0 0 5.5 1Z"/><path d="M5.5 8.5A.5.5 0 0 1 5 8V3a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5Z"/><path d="M8 6H3a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1Z"/></g></g></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="abfeather abfeather-airplay" id="icon-airplay" xmlns="http://www.w3.org/2000/svg"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"/><path d="m12 15 5 6H7l5-6z"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aefeather aefeather-alert-circle" id="icon-alert-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v4M12 16h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="adfeather adfeather-alert-octagon" id="icon-alert-octagon" xmlns="http://www.w3.org/2000/svg"><path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2zM12 8v4M12 16h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="affeather affeather-alert-triangle" id="icon-alert-triangle" xmlns="http://www.w3.org/2000/svg"><path d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ahfeather ahfeather-align-center" id="icon-align-center" xmlns="http://www.w3.org/2000/svg"><path d="M18 10H6M21 6H3M21 14H3M18 18H6"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="agfeather agfeather-align-justify" id="icon-align-justify" xmlns="http://www.w3.org/2000/svg"><path d="M21 10H3M21 6H3M21 14H3M21 18H3"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aifeather aifeather-align-left" id="icon-align-left" xmlns="http://www.w3.org/2000/svg"><path d="M17 10H3M21 6H3M21 14H3M17 18H3"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ajfeather ajfeather-arrow-down-circle" id="icon-arrow-down-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m8 12 4 4 4-4M12 8v8"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="akfeather akfeather-arrow-left-circle" id="icon-arrow-left-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 8-4 4 4 4M16 12H8"/></symbol><symbol viewBox="0 0 24 24" fill="none" id="icon-arrow-right" xmlns="http://www.w3.org/2000/svg"><path d="m12 16 4-4-4-4M1 12h14" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="alfeather alfeather-arrow-right-circle" id="icon-arrow-right-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 16 4-4-4-4M8 12h8"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aofeather aofeather-arrow-up-circle" id="icon-arrow-up-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m16 12-4-4-4 4M12 16V8"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bafeather bafeather-bell" id="icon-bell" xmlns="http://www.w3.org/2000/svg"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 0 1-3.46 0"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="amfeather amfeather-bell-off" id="icon-bell-off" xmlns="http://www.w3.org/2000/svg"><path d="M13.73 21a2 2 0 0 1-3.46 0M18.63 13A17.89 17.89 0 0 1 18 8M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14M18 8a6 6 0 0 0-9.33-5M1 1l22 22"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="apfeather apfeather-camera" id="icon-camera" xmlns="http://www.w3.org/2000/svg"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aqfeather aqfeather-cast" id="icon-cast" xmlns="http://www.w3.org/2000/svg"><path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6M2 20h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="arfeather arfeather-check" id="icon-check" xmlns="http://www.w3.org/2000/svg"><path d="M20 6 9 17l-5-5"/></symbol><symbol viewBox="0 0 24 24" id="icon-clock" xmlns="http://www.w3.org/2000/svg"><path d="M12 23.5C5.659 23.5.5 18.341.5 12S5.659.5 12 .5 23.5 5.659 23.5 12 18.341 23.5 12 23.5zm0-22C6.21 1.5 1.5 6.21 1.5 12S6.21 22.5 12 22.5 22.5 17.79 22.5 12 17.79 1.5 12 1.5zm6 11h-6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 1 0v7.5H18a.5.5 0 0 1 0 1z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="atfeather atfeather-code" id="icon-code" xmlns="http://www.w3.org/2000/svg"><path d="m16 18 6-6-6-6M8 6l-6 6 6 6"/></symbol><symbol viewBox="0 0 215 165" id="icon-component" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bka"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bkc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bkb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bkd" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bka)" xlink:href="#bkb"/><use fill="#FFF" xlink:href="#bkb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bkc)" xlink:href="#bkd"/><use fill="#FFF" xlink:href="#bkd"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-accordion" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.9%" width="109.4%" height="117.6%" filterUnits="objectBoundingBox" id="aua"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="auc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="aub" x="0" y="0" width="203" height="108" rx="3"/><rect id="aud" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#aua)" xlink:href="#aub"/><use fill="#FFF" xlink:href="#aub"/><path fill="#E8E8E8" d="M18 38h168v1H18z"/><rect fill="#E8E8E8" x="18" y="84" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="69" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="54" width="171" height="6" rx="2"/></g><g transform="translate(6 125)"><use fill="#000" filter="url(#auc)" xlink:href="#aud"/><use fill="#FFF" xlink:href="#aud"/><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="18" y="17" width="106" height="6" rx="2"/></g><g transform="translate(6 5)"><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-alert" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="aya"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="ayb" x="0" y="0" width="203" height="158" rx="6"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#aya)" xlink:href="#ayb"/><use fill="#FFF" xlink:href="#ayb"/></g><path d="M24 60h47a4 4 0 0 1 4 4v74a4 4 0 0 1-4 4H24a4 4 0 0 1-4-4V64a4 4 0 0 1 4-4ZM91 60h100a4 4 0 0 1 4 4v29a4 4 0 0 1-4 4H91a4 4 0 0 1-4-4V64a4 4 0 0 1 4-4ZM91 105h100a4 4 0 0 1 4 4v29a4 4 0 0 1-4 4H91a4 4 0 0 1-4-4v-29a4 4 0 0 1 4-4Z" fill="#E8E8E8"/><g transform="translate(20 19)"><path d="M4 0h167a4 4 0 0 1 4 4v19a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#4574C7"/><path fill="#FFF" fill-rule="nonzero" d="m164.162 11.162-2.652 2.652 2.652 2.651-1.06 1.061-2.652-2.652-2.652 2.652-1.06-1.06 2.651-2.652-2.652-2.652 1.061-1.06 2.652 2.651 2.651-2.652z"/><rect fill="#FFF" x="12" y="12" width="100" height="3" rx="1.5"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-button" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="awa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="awc"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="awe"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="awb" x="0" y="0" width="203" height="158" rx="6"/><rect id="awd" x="0" y="0" width="69" height="18" rx="2"/><rect id="awf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#awa)" xlink:href="#awb"/><use fill="#FFF" xlink:href="#awb"/><g transform="translate(107 113)"><use fill="#000" filter="url(#awc)" xlink:href="#awd"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#awe)" xlink:href="#awf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 175 139" id="icon-component-checkbox" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(0 119)"><rect x="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="1" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="12" width="135" height="6" rx="2"/></g><g transform="translate(1 40)"><g stroke="#4574C7" stroke-width="2"><rect width="18" height="18" rx="6.5"/><path stroke-linecap="round" stroke-linejoin="round" d="m13 7-4.813 5L6 9.727"/></g><rect fill="#4574C7" x="39" y="1" width="59" height="6" rx="2"/><rect fill="#4574C7" x="39" y="12" width="104" height="6" rx="2"/></g><g transform="translate(0 79)"><rect x="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="1" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="12" width="135" height="6" rx="2"/></g><g><rect x="1" y="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="2" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="13" width="135" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 205 120" id="icon-component-input" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(1 70)"><rect width="203" height="35" rx="3" fill="#000" fill-rule="nonzero" transform="translate(0 14)"/><rect width="203" height="35" rx="3" fill="#FFF" stroke="#E2E2E2" transform="translate(0 14)"/><rect fill="#D8D8D8" fill-rule="nonzero" x="1" width="76" height="6" rx="2"/></g><g transform="translate(1)"><rect width="203" height="35" rx="3" fill="#000" fill-rule="nonzero" transform="translate(0 14)"/><rect width="203" height="35" rx="3" fill="#FFF" stroke="#AFAFAF" transform="translate(0 14)"/><rect fill="#4574C7" fill-rule="nonzero" x="1" width="76" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-modal" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="bba"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bbc"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bbe"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="bbb" x="0" y="0" width="203" height="158" rx="6"/><rect id="bbd" x="0" y="0" width="69" height="18" rx="2"/><rect id="bbf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#bba)" xlink:href="#bbb"/><use fill="#FFF" xlink:href="#bbb"/><g transform="translate(107 113)"><use fill="#000" filter="url(#bbc)" xlink:href="#bbd"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#bbe)" xlink:href="#bbf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 228 44" id="icon-component-pagination" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bca"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bcc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bce"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bcg"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="bci"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bcb" x="0" y="0" width="32" height="32" rx="3"/><rect id="bcd" x="0" y="0" width="32" height="32" rx="3"/><rect id="bcf" x="0" y="0" width="32" height="32" rx="3"/><rect id="bch" x="0" y="0" width="32" height="32" rx="3"/><rect id="bcj" x="184" y="0" width="32" height="32" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(151 5)"><use fill="#000" filter="url(#bca)" xlink:href="#bcb"/><use fill="#FFF" xlink:href="#bcb"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(124 32)" fill="#D8D8D8"><rect width="4" height="4" rx="1"/><rect x="7" width="4" height="4" rx="1"/><rect x="14" width="4" height="4" rx="1"/></g><g transform="translate(84 5)"><use fill="#000" filter="url(#bcc)" xlink:href="#bcd"/><use fill="#FFF" xlink:href="#bcd"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(45 5)"><use fill="#000" filter="url(#bce)" xlink:href="#bcf"/><use fill="#FFF" xlink:href="#bcf"/></g><path d="M60.715 16.107c-.25.469-.588.932-1.015 1.389-.499.533-1.143 1.045-1.932 1.536.048.256.155.497.32.724.165.227.352.393.56.5a6.84 6.84 0 0 0 1.156-.656 5.853 5.853 0 0 0 1.06-.944l-.001.001-.007.131-.031.496-.029.488c-.019.323-.028.583-.028.78v2.6c0 .219.003.432.008.64.005.208.008.424.008.648l-.001-.152h-.065l-.252-.005-.154-.003a22.223 22.223 0 0 0-.504-.008h-1.376a3.55 3.55 0 0 0-.104.864c0 .277.035.565.104.864h6.36a3.972 3.972 0 0 0 0-1.728h-.984c-.112 0-.285.003-.52.008-.235.005-.41.008-.528.008h.033l.001-.178.006-.318c.005-.208.008-.421.008-.64v-7.28a5.617 5.617 0 0 0-1.976 0l-.117.235Z" fill="#4574C7" fill-rule="nonzero"/><g transform="translate(6 5)"><use fill="#000" filter="url(#bcg)" xlink:href="#bch"/><use fill="#FFF" xlink:href="#bch"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bci)" xlink:href="#bcj"/><use fill="#FFF" xlink:href="#bcj"/></g><path d="M204.242 25c-.363-.005-.69-.199-.828-.493a.724.724 0 0 1 .192-.86l3-2.61-2.982-2.641c-.258-.196-.368-.502-.286-.792.082-.29.343-.515.676-.583a.988.988 0 0 1 .901.261l3.637 3.182a.75.75 0 0 1 .269.565.75.75 0 0 1-.269.565l-3.637 3.182a.986.986 0 0 1-.673.223ZM23.579 17c.363.005.69.199.828.493a.724.724 0 0 1-.192.86l-3 2.61 2.982 2.641c.258.196.368.502.286.792-.082.29-.344.515-.676.583a.988.988 0 0 1-.901-.261l-3.637-3.182A.75.75 0 0 1 19 20.97a.75.75 0 0 1 .269-.565l3.637-3.182a.986.986 0 0 1 .673-.223Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 175 139" fill="none" id="icon-component-radio" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="128" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 120H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM173 131H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/><circle cx="10" cy="49" r="9" stroke="#4574C7" stroke-width="2"/><circle cx="10" cy="49" r="4" fill="#4574C7"/><path d="M97 41H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h55a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM142 52H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h100a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#4574C7"/><circle cx="10" cy="88" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 80H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM173 91H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/><circle cx="10" cy="10" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 2H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM173 13H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/></symbol><symbol viewBox="0 0 215 165" id="icon-component-select" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bea"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bec"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="beb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bed" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bea)" xlink:href="#beb"/><use fill="#FFF" xlink:href="#beb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bec)" xlink:href="#bed"/><use fill="#FFF" xlink:href="#bed"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 205 120" fill="none" id="icon-component-switch" xmlns="http://www.w3.org/2000/svg"><rect x="68" y="66" width="69" height="35" rx="17.5" stroke="#4574C7" stroke-width="2"/><circle cx="119.5" cy="83.5" r="11.5" fill="#4574C7"/><rect x="68" y="17" width="69" height="35" rx="17.5" stroke="#D8D8D8" stroke-width="2"/><circle cx="85.5" cy="34.5" r="11.5" fill="#D8D8D8"/></symbol><symbol viewBox="0 0 215 170" id="icon-component-table" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="bda"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bdb" x="0" y="0" width="203" height="158" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bda)" xlink:href="#bdb"/><use fill="#FFF" xlink:href="#bdb"/></g><g transform="translate(15 27)" fill="#E8E8E8"><path d="M12 22h161v1H12z"/><path d="M52 0h1v109h-1z"/><rect x="129" y="101" width="40" height="6" rx="2"/><rect x="129" y="80" width="35" height="6" rx="2"/><rect x="129" y="59" width="39" height="6" rx="2"/><rect x="129" y="38" width="36" height="6" rx="2"/><rect x="70" y="101" width="45" height="6" rx="2"/><rect x="70" y="80" width="39.375" height="6" rx="2"/><rect x="70" y="59" width="43.875" height="6" rx="2"/><rect x="70" y="38" width="40.5" height="6" rx="2"/><rect x="12" y="101" width="25" height="6" rx="2"/><rect x="12" y="80" width="25" height="6" rx="2"/><rect x="12" y="59" width="25" height="6" rx="2"/><rect x="12" y="38" width="25" height="6" rx="2"/></g><g transform="translate(9 11)" fill="#4574C7"><rect x="135" y="17" width="40" height="6" rx="2"/><rect x="75" y="17" width="40" height="6" rx="2"/><rect x="18" y="17" width="24" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 171" id="icon-component-tabs" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.3%" width="109.4%" height="111.9%" filterUnits="objectBoundingBox" id="bha"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><path d="M3 0h89.017a3 3 0 0 1 3 3v36.383a3 3 0 0 0 3 3H200a3 3 0 0 1 3 3V156a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3Z" id="bhb"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bha)" xlink:href="#bhb"/><use fill="#FFF" xlink:href="#bhb"/><rect fill="#E8E8E8" x="101" width="102" height="36" rx="3"/><rect fill="#E8E8E8" x="18" y="110" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="95" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="80" width="171" height="6" rx="2"/></g><g transform="translate(6 5)"><rect fill="#4574C7" x="18" y="20" width="58" height="6" rx="2"/><rect fill="#FFF" x="114" y="17" width="72" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 217 143" id="icon-component-tooltip" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bfa"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bfc"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bfb" x="0" y="14" width="203" height="35" rx="3"/><rect id="bfd" x="0" y="14" width="203" height="35" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(7 86)"><use fill="#000" filter="url(#bfa)" xlink:href="#bfb"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bfb"/><g transform="translate(174 24)" stroke="#E8E8E8" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(7 16)"><use fill="#000" filter="url(#bfc)" xlink:href="#bfd"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bfd"/><g transform="translate(174 24)" stroke="#4574C7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(111)"><path d="M4 0h91a4 4 0 0 1 4 4v23a4 4 0 0 1-4 4H82.51a1 1 0 0 0-.705.291L78.08 35l-3.728-3.709a1 1 0 0 0-.705-.291H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#1C1C1C"/><rect fill="#FFF" x="19" y="14" width="63" height="3" rx="1.5"/></g></g></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bgfeather bgfeather-copy" id="icon-copy" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></symbol><symbol viewBox="0 0 24 16" id="icon-delivery" xmlns="http://www.w3.org/2000/svg"><path d="M16.603 0c.704 0 1.51.302 2.113.805l4.226 3.522c.805.704 1.208 1.51 1.007 2.515 0 1.208-.302 2.315-.805 3.422l-1.007 1.912c-.301.503-.805.805-1.308.805-.2 1.71-1.61 3.018-3.42 3.018-1.712 0-3.22-1.308-3.422-3.018H9.86c-.201 1.71-1.71 3.018-3.421 3.018-1.71 0-3.22-1.308-3.421-3.018h-.1A2.92 2.92 0 0 1 0 10.062c0-.301.1-.704.302-1.106C.1 8.855 0 8.754 0 8.553c0-.302.201-.503.503-.503h.201l1.007-2.013H.503c-.302 0-.503-.2-.503-.503 0-.302.201-.503.503-.503h1.71L3.22 3.02H.503C.201 3.019 0 2.817 0 2.516c0-.302.201-.504.503-.504h3.22l.201-.402A2.9 2.9 0 0 1 6.541 0zM6.541 10.062a2.491 2.491 0 0 0-2.516 2.516 2.491 2.491 0 0 0 2.516 2.516 2.491 2.491 0 0 0 2.515-2.516 2.491 2.491 0 0 0-2.515-2.516zm11.068 0a2.491 2.491 0 0 0-2.515 2.516 2.491 2.491 0 0 0 2.515 2.516 2.491 2.491 0 0 0 2.516-2.516 2.491 2.491 0 0 0-2.516-2.516zm-.805-9.056H6.742c-.705 0-1.409.403-1.71 1.006h2.716c.302 0 .503.202.503.504 0 .301-.201.503-.503.503h-3.22L3.522 5.03h2.214c.301 0 .503.201.503.503s-.202.503-.503.503H3.019L2.012 8.05h1.711c.302 0 .503.201.503.503s-.201.503-.503.503H1.51l-.1.201c-.1.302-.202.604-.202.906a1.91 1.91 0 0 0 1.912 1.912h.101c.201-1.71 1.71-3.019 3.421-3.019 1.71 0 3.22 1.308 3.421 3.019h4.126c.201-1.71 1.61-3.019 3.421-3.019 1.711 0 3.12 1.308 3.422 3.019.2-.1.301-.201.402-.302l1.006-1.912c.503-.805.705-2.012.906-3.019 0-.704-.302-1.408-.805-1.81l-4.226-3.523a2.711 2.711 0 0 0-1.51-.503zm-.402 1.006c.201 0 .402 0 .503.101l5.031 4.025c.201.201.302.403.201.604a.553.553 0 0 1-.503.302h-6.037c-.201 0-.302-.1-.403-.202-.1-.1-.1-.301-.1-.402L16.1 2.415c0-.201.1-.302.302-.403zm.503 1.41-.704 2.615h4.025l-3.321-2.616z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="blfeather blfeather-download" id="icon-download" xmlns="http://www.w3.org/2000/svg"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"/></symbol><symbol viewBox="0 0 472 601" fill="none" id="icon-file-jpg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bma)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#1DA890"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#2ACD70"/><path d="m91.99 175.93 9.25-6.85c2.22 4.07 5.37 6.01 8.42 6.01 4.9 0 7.49-2.5 7.49-10.55v-39.13h13.6v40.24c0 11.66-6.01 21.19-19.34 21.19-9.16 0-15.27-3.61-19.43-10.92l.01.01ZM144.72 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01ZM197 155.95c0-19.98 13.32-31.64 29.42-31.64 8.7 0 14.99 3.79 18.97 7.86l-7.12 8.7c-3.05-2.68-6.2-4.81-11.38-4.81-9.34 0-15.91 7.31-15.91 19.43 0 12.12 5.64 19.61 16.93 19.61 2.5 0 5-.65 6.48-1.85v-10.36h-9.99v-11.1h22.02v27.76c-4.16 4.07-11.47 7.31-19.89 7.31-16.56 0-29.51-10.64-29.51-30.9l-.02-.01Z" fill="#F5F5F5"/><path d="M381.27 519.18H130.95V301.31h250.32v217.87Zm-238.73-11.59h227.14V312.9H142.54v194.69Z" fill="#C9C9C9"/><path d="m136.75 513.38 75.32-75.32 24.34 24.33 62.58-62.58 76.49 113.57H136.75ZM215.179 373.08c1.883-8.758-3.691-17.384-12.449-19.266-8.758-1.883-17.384 3.691-19.267 12.449-1.882 8.758 3.692 17.384 12.45 19.266 8.758 1.883 17.384-3.691 19.266-12.449Z" fill="#C9C9C9"/></g><defs><clipPath id="bma"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 472 601" fill="none" id="icon-file-svg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bna)"><path d="m0 226.55 46.36 41.15 3.09-41.15H0Z" fill="#F46D38"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#FEA352"/><path d="M119.535 142.515c-.233-2.349-1.233-4.174-2.999-5.475-1.767-1.3-4.165-1.951-7.193-1.951-2.058 0-3.795.292-5.212.874-1.417.563-2.505 1.349-3.262 2.359-.737 1.009-1.106 2.155-1.106 3.436-.039 1.068.184 1.999.67 2.795.504.796 1.193 1.485 2.067 2.068.874.563 1.883 1.058 3.028 1.485 1.146.407 2.369.757 3.669 1.048l5.358 1.281c2.602.583 4.99 1.359 7.164 2.33 2.174.971 4.057 2.164 5.649 3.582a14.885 14.885 0 0 1 3.698 5.008c.893 1.922 1.349 4.125 1.369 6.61-.02 3.65-.952 6.814-2.796 9.493-1.825 2.66-4.465 4.727-7.92 6.203-3.436 1.455-7.581 2.183-12.434 2.183-4.815 0-9.008-.737-12.58-2.213-3.552-1.475-6.328-3.659-8.328-6.551-1.98-2.912-3.019-6.513-3.116-10.804h12.201c.136 2 .709 3.669 1.718 5.009 1.029 1.32 2.398 2.32 4.106 2.999 1.728.66 3.679.99 5.853.99 2.136 0 3.99-.31 5.562-.932 1.592-.621 2.825-1.485 3.698-2.591.874-1.107 1.311-2.378 1.311-3.815 0-1.339-.398-2.465-1.194-3.378-.777-.912-1.922-1.689-3.436-2.329-1.495-.641-3.33-1.223-5.504-1.747l-6.494-1.631c-5.027-1.223-8.997-3.135-11.91-5.737-2.911-2.601-4.358-6.105-4.338-10.512-.02-3.611.941-6.765 2.883-9.464 1.96-2.698 4.649-4.804 8.066-6.318 3.416-1.515 7.299-2.272 11.647-2.272 4.427 0 8.29.757 11.59 2.272 3.319 1.514 5.901 3.62 7.746 6.318 1.844 2.699 2.795 5.824 2.853 9.377h-12.084Zm32.155-17.151 14.414 45.309h.553l14.443-45.309h13.978L174.519 185h-16.248l-20.588-59.636h14.007Zm86.746 19.277c-.407-1.418-.98-2.67-1.718-3.757a10.595 10.595 0 0 0-2.708-2.795c-1.048-.777-2.252-1.369-3.611-1.777-1.339-.407-2.824-.611-4.455-.611-3.048 0-5.727.757-8.037 2.271-2.291 1.515-4.077 3.718-5.358 6.61-1.281 2.873-1.922 6.387-1.922 10.542 0 4.154.631 7.687 1.893 10.599s3.048 5.135 5.358 6.668c2.31 1.515 5.038 2.272 8.183 2.272 2.853 0 5.29-.505 7.308-1.515 2.039-1.028 3.592-2.475 4.66-4.338 1.087-1.864 1.63-4.067 1.63-6.61l2.563.378h-15.375v-9.493h24.955v7.513c0 5.241-1.107 9.745-3.32 13.511-2.213 3.747-5.26 6.64-9.143 8.678-3.883 2.019-8.328 3.028-13.337 3.028-5.591 0-10.502-1.232-14.734-3.698-4.232-2.485-7.532-6.008-9.901-10.57-2.349-4.582-3.523-10.017-3.523-16.307 0-4.834.699-9.143 2.097-12.929 1.417-3.805 3.397-7.027 5.94-9.668a25.66 25.66 0 0 1 8.881-6.027c3.378-1.379 7.037-2.068 10.978-2.068 3.378 0 6.523.495 9.435 1.485 2.912.971 5.494 2.349 7.746 4.135a22.388 22.388 0 0 1 5.561 6.377c1.437 2.446 2.359 5.145 2.767 8.096h-12.813Z" fill="#F5F5F5"/><path d="M239.89 353.09v-29.77h29.07v29.77h-29.07Zm19.15-11.2v-7.36h-9.23v7.36h9.23Z" fill="#C9C9C9"/><path d="M242.37 326.13v24.17h24.11v-24.17h-24.11Zm19.15 18.56h-14.19v-12.96h14.19v12.96ZM139.07 486.07V456.3h28.18v29.77h-28.18Zm18.26-11.2v-7.36h-8.34v7.36h8.34Z" fill="#C9C9C9"/><path d="M141.55 459.11v24.17h23.22v-24.17h-23.22Zm18.26 18.56h-13.3v-12.96h13.3v12.96ZM344.28 486.07V456.3h28.88v29.77h-28.88Zm18.95-11.2v-7.36h-9.03v7.36h9.03Z" fill="#C9C9C9"/><path d="M346.76 459.11v24.17h23.92v-24.17h-23.92Zm18.95 18.56h-13.99v-12.96h13.99v12.96Z" fill="#C9C9C9"/><path d="m351.21 486.07.25-3.05c.15-1.82.27-3.67.37-5.51l.14-2.63h12.31l-.08 2.88c-.05 1.93-.18 3.87-.33 5.77l-.2 2.55h-12.45l-.01-.01Zm-204.52 0-.2-2.55c-.15-1.9-.28-3.84-.33-5.77l-.08-2.88h12.31l.14 2.63c.1 1.85.22 3.69.37 5.51l.25 3.05H146.7l-.01.01Zm205.18-18.56-.11-2.68a97.02 97.02 0 0 0-.36-5.43c-5.14-59.08-46.52-103.62-96.25-103.62s-91.08 44.54-96.22 103.6c-.17 1.81-.29 3.63-.36 5.45l-.11 2.67h-12.43l.12-2.93c.08-1.92.2-3.84.36-5.73 4.91-60.07 45.09-108.92 95.54-116.15 2.72-.38 5.62-.65 8.61-.8 1.49-.08 3-.11 4.5-.11s3.01.03 4.52.12c2.34.11 4.73.31 7.06.6 51.28 6.47 92.11 55.41 97.1 116.35.15 1.89.28 3.81.36 5.73l.12 2.93h-12.45Z" fill="#C9C9C9"/><path d="M156.06 477.67h-7.42c.05 1.88.17 3.75.32 5.6h7.47c-.15-1.85-.27-3.72-.37-5.6Zm205.31-18.56c-4.89-59.76-44.75-107.5-94.89-113.83a92.63 92.63 0 0 0-6.92-.59c-1.46-.08-2.93-.11-4.39-.11-1.46 0-2.93.03-4.39.11-2.83.14-5.63.39-8.41.78-49.42 7.08-88.54 54.46-93.38 113.63-.15 1.85-.27 3.72-.35 5.6h7.47c.08-1.88.2-3.75.37-5.6 5.18-59.56 47.48-106.13 98.69-106.13s93.53 46.57 98.71 106.13c.17 1.85.3 3.72.37 5.6h7.47c-.08-1.88-.2-3.75-.35-5.6v.01Zm-7.07 18.56c-.1 1.88-.22 3.75-.37 5.6h7.47c.15-1.85.27-3.72.32-5.6h-7.42ZM342.45 333.74h-83.41v8.4h83.41v-8.4Z" fill="#C9C9C9"/><path d="M339.96 336.54h-78.44v2.8h78.44v-2.8Z" fill="#C9C9C9"/><path d="M343 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M343 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22ZM249.81 333.74h-81.89v8.4h81.89v-8.4Z" fill="#C9C9C9"/><path d="M247.33 336.54H170.4v2.8h76.93v-2.8Z" fill="#C9C9C9"/><path d="M167.36 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M167.36 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22Z" fill="#C9C9C9"/></g><defs><clipPath id="bna"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 472 601" fill="none" id="icon-file-zip" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#boa)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#E27829"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#F7BD38"/><path d="m106 177.5 26.65-40.61H108.5v-11.47h40.89v8.23l-26.65 40.62h26.92v11.47h-43.67v-8.23l.01-.01ZM159.85 125.42h13.6v60.32h-13.6v-60.32ZM187.7 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01Z" fill="#F5F5F5"/><path d="M256.11 276.97h-49.83v28.46h49.83v-28.46ZM305.94 305.43h-49.83v28.46h49.83v-28.46ZM256.11 333.88h-49.83v28.46h49.83v-28.46ZM305.94 362.34h-49.83v28.46h49.83v-28.46ZM256.11 390.8h-49.83v28.46h49.83V390.8ZM305.94 419.25h-49.83v28.46h49.83v-28.46ZM276.66 459.79h-41.11l-8.23 61.36c-1.1 8.22 6.65 15.41 16.62 15.41h24.32c9.97 0 17.73-7.19 16.62-15.41l-8.23-61.36h.01Zm-36.93 51.54c1.3-5.2 6.44-8.9 12.37-8.9h8.01c5.93 0 11.07 3.7 12.37 8.9 2.15 8.61-5.77 16.69-16.38 16.69-10.6 0-18.53-8.08-16.38-16.69h.01Z" fill="#C9C9C9"/></g><defs><clipPath id="boa"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 206 112" id="icon-hero-brand-assets" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m171.647 20.613-.342 1.97A39.758 39.758 0 0 0 164.5 22v-2c2.414 0 4.803.206 7.147.613Zm15.204 5.914-1.078 1.685a39.383 39.383 0 0 0-6.045-3.17l.771-1.845a41.383 41.383 0 0 1 6.352 3.33Zm11.752 11.318-1.643 1.141a39.705 39.705 0 0 0-4.364-5.25l1.423-1.406a41.705 41.705 0 0 1 4.584 5.515Zm6.508 15.07-1.958.411a39.19 39.19 0 0 0-1.98-6.532l1.855-.745a41.19 41.19 0 0 1 2.083 6.866Zm.19 16.211-1.967-.365c.414-2.227.637-4.498.663-6.796l2 .023a41.692 41.692 0 0 1-.696 7.138Zm-6.096 15.137-1.671-1.098a39.404 39.404 0 0 0 3.242-6.009l1.836.794a41.404 41.404 0 0 1-3.407 6.313ZM187.75 95.88l-1.122-1.655a39.694 39.694 0 0 0 5.302-4.303l1.39 1.44a41.694 41.694 0 0 1-5.57 4.518Zm-15.11 6.322-.39-1.962a39.193 39.193 0 0 0 6.553-1.909l.724 1.864a41.193 41.193 0 0 1-6.887 2.007Zm-16.092.798v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16.113-2.099.63-1.898a39.239 39.239 0 0 0 6.643 1.575l-.291 1.98a41.239 41.239 0 0 1-6.982-1.657ZM14.24 92.792l1.315-1.507a39.633 39.633 0 0 0 5.513 4.027l-1.036 1.71a41.633 41.633 0 0 1-5.792-4.23ZM4.28 79.876l1.793-.886a39.495 39.495 0 0 0 3.545 5.834l-1.613 1.183a41.495 41.495 0 0 1-3.725-6.13ZM.084 64.164l1.996-.126a39.45 39.45 0 0 0 1.018 6.75l-1.944.469a41.45 41.45 0 0 1-1.07-7.093Zm2.171-16.192 1.89.652a39.223 39.223 0 0 0-1.653 6.624l-1.975-.314c.377-2.376.96-4.703 1.738-6.962Zm8.278-14.1 1.492 1.331a39.649 39.649 0 0 0-4.092 5.465l-1.698-1.056a41.649 41.649 0 0 1 4.298-5.74Zm13.032-9.807.865 1.803a39.474 39.474 0 0 0-5.875 3.476l-1.164-1.627a41.474 41.474 0 0 1 6.174-3.652Zm15.76-4.009.104 1.997a39.497 39.497 0 0 0-6.763.938l-.445-1.95a41.497 41.497 0 0 1 7.104-.985ZM55.405 20v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm13.095 0v2h-4.095v-2h4.095Z" fill="#000" fill-rule="nonzero"/><path fill="#FFF" d="M45.957 9.75h37.304v25.278H45.957z"/><path fill="#FFF" d="M49.783 1.972h38.261V27.25H49.783z"/><path d="M76.087 8.778h5.26c1.058 0 1.914.87 1.914 1.944v23.334c0 1.074-.856 1.944-1.913 1.944H46.913C45.856 36 45 35.13 45 34.056V10.722c0-1.074.856-1.944 1.913-1.944h22.478" stroke="#111" stroke-width="2" stroke-linecap="round"/><path d="M50.74 4.889V2.944C50.74 1.87 51.594 1 52.651 1h34.435C88.144 1 89 1.87 89 2.944v23.334c0 1.074-.856 1.944-1.913 1.944h-3.826" stroke="#111" stroke-width="2" stroke-linecap="round"/><path stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M81.348 36 69.39 20.444l-9.565 11.9M47.391 36 57.71 22.389l2.766 3.107"/><path d="M49.304 17.528c0-1.343 1.07-2.43 2.392-2.43 1.32 0 2.391 1.087 2.391 2.43 0 1.342-1.07 2.43-2.391 2.43s-2.392-1.088-2.392-2.43Z" stroke="#111" stroke-width="2"/><path fill="#FFF" d="M29.281 66H56v44H22V73.255z"/><path d="M21 73v36a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V67a2 2 0 0 0-2-2H29l-8 8Z" stroke="#000" stroke-width="2" stroke-linejoin="round"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M26 76h6v-6"/><path d="M34 86.68v12.64c0 .517.605.844 1.099.595l12.508-6.297a.682.682 0 0 0 0-1.236l-12.508-6.297c-.494-.25-1.099.079-1.099.595Z" stroke="#000" stroke-width="2"/><path fill="#FFF" d="M152.441 1.76h20.781v33.48h-26.444V7.28z"/><path d="M158.77 25.27c.587 0 1.11-.11 1.57-.33.46-.22.863-.485 1.21-.795l.216-.198.05.1a2.2 2.2 0 0 0 .397.507l.167.146c.293.233.67.383 1.13.45.173-.113.342-.29.505-.53.163-.24.268-.463.315-.67a1.375 1.375 0 0 1-.445-.68 3.379 3.379 0 0 1-.115-.93v-4.09c0-.787-.145-1.428-.435-1.925a2.64 2.64 0 0 0-1.19-1.095c-.503-.233-1.072-.35-1.705-.35-.453 0-.935.04-1.445.12-.51.08-1.01.19-1.5.33s-.932.29-1.325.45c.02.307.087.618.2.935.113.317.26.568.44.755a26.265 26.265 0 0 1 1.58-.505 5.512 5.512 0 0 1 1.51-.225c.507 0 .892.13 1.155.39s.395.677.395 1.25v.66l-.216-.024-.344-.026c-.467-.027-.877-.04-1.23-.04-.713 0-1.363.118-1.95.355a3.03 3.03 0 0 0-1.395 1.1c-.343.497-.515 1.128-.515 1.895 0 .48.108.947.325 1.4.217.453.543.828.98 1.125.437.297.992.445 1.665.445Zm.58-1.81c-.4 0-.707-.127-.92-.38-.213-.253-.32-.567-.32-.94 0-.493.148-.887.445-1.18.297-.293.725-.44 1.285-.44a22.396 22.396 0 0 1 1.441.052l.169.018v1.849l-.106.11c-.112.108-.23.208-.352.298l-.187.128c-.51.323-.995.485-1.455.485Z" fill="#202020" fill-rule="nonzero"/><path d="M146 7.087v27.391c0 .841.696 1.522 1.556 1.522h24.888c.86 0 1.556-.681 1.556-1.522V2.522C174 1.68 173.304 1 172.444 1h-20.222L146 7.087Z" stroke="#000" stroke-width="2" stroke-linejoin="round"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M149.889 9.37h4.667V4.804"/><path fill="#FFF" d="M129.425 66H153v39h-30l-1-34z"/><path fill="#FFF" d="M136.185 70H159v40h-29.032L129 75.128z"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M126.5 74.5h5v-5M137 78h8M129 94h16M129 86h16"/><g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M152 97v6.5a1.5 1.5 0 0 1-1.5 1.5h-27a1.5 1.5 0 0 1-1.5-1.5v-32a1 1 0 0 1 .4-.8l7.333-5.5a1 1 0 0 1 .6-.2H150.5a1.5 1.5 0 0 1 1.5 1.5V91"/><path d="M156 71h2.5a1.5 1.5 0 0 1 1.5 1.5v37a1.5 1.5 0 0 1-1.5 1.5h-27a1.5 1.5 0 0 1-1.5-1.5V105"/></g></g></symbol><symbol viewBox="0 0 222 107" fill="none" id="icon-hero-colors" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bqa)"><path fill-rule="evenodd" clip-rule="evenodd" d="M68.333 53.672A3199.338 3199.338 0 0 0 98.143 105h-23.31c-3.592 0-6.5-2.925-6.5-6.5V53.672Zm12.35 3.722c14.205 8.459 55.753 33.185 56.858 33.822l-22.369 12.913a6.563 6.563 0 0 1-3.254.871 6.508 6.508 0 0 1-5.629-3.25L80.683 57.394Zm8.234-55.523A6.491 6.491 0 0 0 85.667 1c-2.271 0-4.446 1.2-5.63 3.25L64.872 30.519a6.503 6.503 0 0 0 2.379 8.879c12.723 7.345 63.18 37.7 75.903 45.049a6.498 6.498 0 0 0 8.874-2.383l15.167-26.269c.576-.997.806-2.115.806-3.246 0-2.253-1.114-4.441-3.181-5.633L88.917 1.871ZM90 18.961c4.784 0 8.667 3.883 8.667 8.667A8.67 8.67 0 0 1 90 36.295a8.67 8.67 0 0 1-8.667-8.667c0-4.784 3.883-8.666 8.667-8.666" fill="#000"/></g><defs><clipPath id="bqa"><path fill="#fff" transform="translate(64 1)" d="M0 0h104v104H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 218 123" id="icon-hero-components" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-8.6%" y="-34%" width="117.3%" height="176%" filterUnits="objectBoundingBox" id="bsa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-9.7%" width="111.5%" height="121.6%" filterUnits="objectBoundingBox" id="bsc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-27.4%" width="111.5%" height="161.3%" filterUnits="objectBoundingBox" id="bse"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bsb" x="0" y="0" width="110" height="25" rx="3"/><rect id="bsd" x="0" y="0" width="165" height="88" rx="3"/><rect id="bsf" x="0" y="0" width="165" height="31" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 32)"><use fill="#000" filter="url(#bsa)" xlink:href="#bsb"/><use fill="#FFF" xlink:href="#bsb"/><rect fill="#D8D8D8" x="29" y="11" width="68" height="3" rx="1.5"/><circle fill="#D8D8D8" cx="14" cy="13" r="5"/></g><g transform="translate(47 5)"><use fill="#000" filter="url(#bsc)" xlink:href="#bsd"/><use fill="#FFF" xlink:href="#bsd"/><path fill="#E8E8E8" d="M14 31h137v1H14z"/><rect fill="#E8E8E8" x="14" y="68" width="111" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="56" width="140" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="44" width="140" height="5" rx="2"/></g><g transform="translate(12 85)"><use fill="#000" filter="url(#bse)" xlink:href="#bsf"/><use fill="#FFF" xlink:href="#bsf"/><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="14" y="13" width="87" height="5" rx="2"/></g><g transform="translate(47 5)"><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#242424" x="14" y="13" width="87" height="5" rx="2"/></g></g></symbol><symbol viewBox="0 0 222 107" id="icon-hero-design" xmlns="http://www.w3.org/2000/svg"><g fill-rule="nonzero" fill="none"><path d="M.977 105v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 57v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 27v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Z" fill="#000" opacity=".247"/><path d="M85.012 105.284c2.214 0 4.58-.24 7.097-.718 2.516-.478 4.58-1.17 6.19-2.076L65.609 1.018C63.796.666 61.594.414 59.002.263 56.41.112 54.182.036 52.32.036c-1.913 0-4.152.063-6.72.19-2.566.125-4.781.339-6.643.641L5.51 102.263l.83 1.209c1.36.453 3.109.817 5.248 1.094 2.139.277 4.115.415 5.927.415 1.761 0 3.473-.05 5.134-.15 1.66-.101 3.196-.328 4.605-.68l6.645-22.329h.06l.395.009.412.01 2.983.075c1.006.025 1.862.038 2.567.038h21.366c.654 0 1.485-.013 2.492-.038l3.02-.075c.251-.007.493-.012.726-.017l.191-.003 3.16 11.005c1.362 4.768 3.03 8.02 5.004 9.754l.205.174c2.064 1.686 4.908 2.53 8.532 2.53ZM39.28 63.743l4.13-13.877c.503-1.744 1.046-3.635 1.627-5.67l.444-1.554.458-1.609a316.897 316.897 0 0 0 2.643-9.89c.83-3.323 1.497-6.343 2-9.06h.907a780.628 780.628 0 0 0 4.114 15.703c1.535 5.638 2.907 10.57 4.115 14.798l3.199 11.147h-.003l-.402-.01-2.87-.076a96.381 96.381 0 0 0-2.491-.038H45.601c-.705 0-1.536.013-2.492.038l-2.869.076c-.24.006-.469.012-.689.016l-.27.006Zm121.504 42.446c4.48 0 8.406-.742 11.778-2.227 3.372-1.485 6.33-3.36 8.871-5.624.462-.412.915-.825 1.358-1.238l.116-.109.231.328c1.21 1.675 2.707 3.165 4.488 4.47l.451.323c2.743 1.913 6.254 2.945 10.533 3.096 1.46-1.107 2.881-2.819 4.265-5.134 1.384-2.315 2.303-4.454 2.756-6.418-1.51-1.107-2.592-2.516-3.246-4.228-.655-1.71-.982-3.724-.982-6.04V52.66c0-6.292-1.283-11.312-3.85-15.062s-5.877-6.456-9.929-8.116c-4.052-1.662-8.317-2.492-12.797-2.492-3.272 0-6.92.277-10.947.83a115.468 115.468 0 0 0-12.118 2.341c-4.052 1.007-7.739 2.19-11.06 3.548.25 2.769.842 5.613 1.773 8.532.931 2.92 2.202 5.285 3.813 7.097a331.02 331.02 0 0 1 11.665-3.36c3.85-1.032 7.437-1.547 10.759-1.547 3.473 0 6.052.843 7.738 2.529 1.686 1.686 2.53 4.215 2.53 7.587l-.001 3.126-.29-.022a73.723 73.723 0 0 0-1.556-.088l-.796-.033c-3.473-.126-6.367-.189-8.682-.189-5.235 0-10.117.919-14.647 2.756-4.53 1.837-8.18 4.68-10.948 8.531-2.768 3.85-4.152 8.77-4.152 14.76 0 3.624.817 7.186 2.453 10.684 1.636 3.498 4.153 6.392 7.55 8.682 3.398 2.29 7.689 3.435 12.873 3.435Zm6.418-16.685c-2.316 0-4.128-.717-5.436-2.152-1.31-1.434-1.963-3.259-1.963-5.474 0-2.97.805-5.385 2.416-7.248 1.61-1.862 4.177-2.793 7.7-2.793a245.178 245.178 0 0 1 8.504.176l.556.027v12.416l-.179.157c-.527.452-1.07.877-1.627 1.275l-.42.294c-3.247 2.215-6.43 3.322-9.551 3.322Z" fill="#202020"/><path fill="#000" d="M221 57v49h-1V57z"/><path fill="#000" d="M221 57v1h-4v-1zM221 105v1h-4v-1z"/><path d="M173.186 17v-2.492l2.14-3.933h-1.142l-1.52 2.931-1.521-2.93H170l2.131 3.967V17h1.055Zm11.496-3.652v-.786h-4.232v.786h4.232Zm0 1.754v-.783h-4.232v.783h4.232Zm8.56 1.898v-6.425h-.86l-1.89 1.486.518.654c.56-.454.889-.723.987-.808.098-.085.18-.163.248-.233-.023.29-.035.682-.035 1.178V17h1.033Zm4.277.088c.738 0 1.286-.271 1.645-.813.36-.542.539-1.371.539-2.487 0-1.084-.185-1.908-.554-2.47-.37-.563-.913-.844-1.63-.844-.736 0-1.283.269-1.642.807-.359.537-.538 1.373-.538 2.507 0 1.08.184 1.901.554 2.46.369.56.91.84 1.626.84Zm0-.861c-.396 0-.684-.188-.864-.563-.18-.375-.27-1-.27-1.876 0-.876.09-1.503.27-1.881.18-.378.468-.567.864-.567.395 0 .684.192.867.578.184.385.275 1.008.275 1.87 0 .864-.091 1.486-.275 1.867-.183.381-.472.572-.867.572Zm5.137.86c.738 0 1.287-.27 1.646-.812.358-.542.538-1.371.538-2.487 0-1.084-.185-1.908-.554-2.47-.369-.563-.912-.844-1.63-.844-.736 0-1.283.269-1.642.807-.358.537-.538 1.373-.538 2.507 0 1.08.185 1.901.554 2.46.369.56.91.84 1.626.84Zm0-.86c-.396 0-.684-.188-.864-.563-.18-.375-.27-1-.27-1.876 0-.876.09-1.503.27-1.881.18-.378.468-.567.864-.567.395 0 .685.192.868.578.183.385.274 1.008.274 1.87 0 .864-.091 1.486-.274 1.867-.183.381-.473.572-.868.572Zm4.342-1.71c.471 0 .828-.17 1.07-.507.241-.339.362-.845.362-1.519 0-.644-.124-1.14-.371-1.487-.248-.348-.601-.521-1.061-.521-.935 0-1.402.67-1.402 2.008 0 .65.122 1.15.367 1.5.244.351.59.526 1.035.526Zm.747 2.483 3.564-6.425h-.853L206.892 17h.853Zm-.747-3.204c-.194 0-.333-.107-.418-.32-.085-.214-.127-.54-.127-.976 0-.437.042-.762.127-.976.085-.213.224-.32.418-.32.386 0 .58.432.58 1.296 0 .864-.194 1.296-.58 1.296Zm4.188 3.292c.465 0 .82-.169 1.063-.505.243-.337.365-.843.365-1.517 0-.647-.125-1.144-.376-1.49-.25-.345-.601-.518-1.052-.518-.938 0-1.407.67-1.407 2.008 0 .654.123 1.154.37 1.501.246.347.591.52 1.037.52Zm0-.716c-.194 0-.334-.109-.42-.326-.087-.216-.13-.543-.13-.98 0-.436.043-.76.13-.97.086-.212.226-.317.42-.317.383 0 .575.429.575 1.287 0 .87-.192 1.306-.575 1.306ZM102.143 85l1.621-2.628L105.373 85h1.208l-2.162-3.313 2.008-3.112h-1.134l-1.485 2.43-1.485-2.43h-1.17l1.996 3.094L101.018 85h1.125Zm13.812-3.652v-.786h-4.232v.786h4.232Zm0 1.754v-.783h-4.232v.783h4.232Zm7.312 1.986c.806 0 1.427-.168 1.863-.503.437-.336.655-.813.655-1.43 0-.426-.129-.766-.387-1.022-.257-.257-.644-.417-1.16-.482v-.035c.43-.094.765-.276 1.002-.547.238-.27.356-.61.356-1.017 0-.49-.181-.873-.545-1.152-.363-.278-.868-.417-1.516-.417-.78 0-1.463.217-2.052.65l.505.721c.308-.2.575-.333.8-.402.226-.069.46-.103.703-.103.349 0 .613.074.791.224.179.15.268.362.268.637 0 .709-.512 1.063-1.538 1.063h-.567v.84h.558c.583 0 1.011.08 1.284.241.272.162.408.414.408.756 0 .387-.123.673-.369.857-.246.185-.618.277-1.116.277a4.115 4.115 0 0 1-1.745-.422v.919c.49.231 1.09.347 1.802.347Zm6.144-.088v-2.492l2.14-3.933h-1.143l-1.52 2.931-1.52-2.93h-1.143l2.131 3.967V85h1.055Z" fill="#2C2C2C"/></g></symbol><symbol id="icon-hero-effects" viewBox="0 0 23.17 23.16" xmlns="http://www.w3.org/2000/svg"><defs><style>.bwcls-1,.bwcls-2{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round}.bwcls-2{stroke-dasharray:0 0 1.02 2.05}</style></defs><g id="bwLayer_1-2"><path class="bwcls-1" d="M6.28 16.88v.5"/><path class="bwcls-2" d="M6.28 19.43v2.22c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V7.29c0-.56-.45-1.01-1.01-1.01H18.4"/><path class="bwcls-1" d="M17.38 6.28h-.5M15.87.5H1.51C.95.5.5.95.5 1.5v14.37c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V1.5c0-.55-.45-1-1.01-1Z"/></g></symbol><symbol viewBox="0 0 34 24" fill="none" id="icon-image" xmlns="http://www.w3.org/2000/svg"><path d="M29 3H15a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM31 15l-5-5-11 11M7 6 4 3 1 6M1 18l3 3 3-3M4 16V8" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bvfeather bvfeather-link-2" id="icon-link" xmlns="http://www.w3.org/2000/svg"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3M8 12h8"/></symbol><symbol viewBox="0 0 220 47" fill="none" id="icon-logo" xmlns="http://www.w3.org/2000/svg"><path d="M18.197 13.41c-4.099 0-7.204 1.527-8.881 3.881V1.578H0v44.531h9.316V28.742c0-4.517 2.36-6.552 5.776-6.552 2.981 0 5.403 1.845 5.403 5.789v18.13h9.316V26.58c0-8.588-5.341-13.168-11.614-13.168ZM58.753 14.301v2.99c-2.05-2.417-5.093-3.88-9.254-3.88-8.136 0-14.843 7.315-14.843 16.794 0 9.48 6.707 16.795 14.843 16.795 4.161 0 7.205-1.463 9.254-3.88v2.99h9.316V14.3h-9.316Zm-7.39 23.666c-4.286 0-7.391-2.99-7.391-7.762 0-4.77 3.105-7.76 7.39-7.76 4.286 0 7.391 2.99 7.391 7.76 0 4.772-3.105 7.762-7.39 7.762ZM93.101 13.41c-4.099 0-7.204 1.527-8.881 3.881v-2.99h-9.316V46.11h9.316V28.742c0-4.517 2.36-6.552 5.776-6.552 2.98 0 5.403 1.845 5.403 5.789v18.13h9.316V26.58c0-8.588-5.341-13.168-11.614-13.168ZM133.657 1.578V17.29c-2.05-2.417-5.093-3.88-9.254-3.88-8.136 0-14.843 7.315-14.843 16.794 0 9.48 6.707 16.795 14.843 16.795 4.161 0 7.204-1.463 9.254-3.88v2.99h9.316V1.577h-9.316Zm-7.391 36.389c-4.285 0-7.39-2.99-7.39-7.762 0-4.77 3.105-7.76 7.39-7.76 4.286 0 7.391 2.99 7.391 7.76 0 4.772-3.105 7.762-7.391 7.762ZM164.713 47c9.13 0 16.458-7.316 16.458-16.795 0-9.479-7.328-16.794-16.458-16.794-9.13 0-16.458 7.315-16.458 16.794 0 9.48 7.328 16.795 16.458 16.795Zm0-9.288c-4.037 0-7.142-2.99-7.142-7.507 0-4.516 3.105-7.506 7.142-7.506 4.037 0 7.142 2.99 7.142 7.506 0 4.517-3.105 7.507-7.142 7.507ZM220 9.212V.052c-10.31-.637-15.092 4.707-15.092 13.613v.636h-8.074c0-3.69 2.298-4.771 5.776-4.453V.688C192.301.05 187.518 5.394 187.518 14.3h-4.161v9.16h4.161V46.11h9.316V23.462h8.074v22.647h9.316V23.462H220v-9.16h-5.776v-.637c0-3.69 2.298-4.771 5.776-4.453Z" fill="#3A3535"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bxfeather bxfeather-moon" id="icon-moon" xmlns="http://www.w3.org/2000/svg"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></symbol><symbol viewBox="0 0 648 367" fill="none" id="icon-motiv-logo-dark-example" xmlns="http://www.w3.org/2000/svg"><rect width="648" height="367" rx="6" fill="#2C2B2B"/><path d="M326.36 163.8h-5.76l-6.84 11.196-6.84-11.196h-5.76V189h5.76v-14.652l6.516 10.692h.648l6.516-10.692V189h5.76v-25.2Zm12.611 25.704c5.292 0 9.54-4.14 9.54-9.504s-4.248-9.504-9.54-9.504c-5.292 0-9.54 4.14-9.54 9.504s4.248 9.504 9.54 9.504Zm0-5.256c-2.34 0-4.14-1.692-4.14-4.248s1.8-4.248 4.14-4.248 4.14 1.692 4.14 4.248-1.8 4.248-4.14 4.248Zm22.611-8.064V171h-3.708v-5.04l-5.4 1.62V171h-2.88v5.184h2.88v6.372c0 5.04 2.052 7.164 9.108 6.444v-4.896c-2.376.144-3.708 0-3.708-1.548v-6.372h3.708Zm5.578-6.768c1.764 0 3.24-1.476 3.24-3.24 0-1.764-1.476-3.24-3.24-3.24-1.764 0-3.24 1.476-3.24 3.24 0 1.764 1.476 3.24 3.24 3.24ZM364.46 189h5.4v-18h-5.4v18Zm20.655-18-3.744 11.412L377.627 171h-5.976l6.66 18h6.12l6.66-18h-5.976Z" fill="#fff"/><path d="M305.12 198.4h-5.04V211h5.04c3.474 0 6.12-2.736 6.12-6.3 0-3.564-2.646-6.3-6.12-6.3Zm0 9.828h-2.16v-7.056h2.16c1.98 0 3.348 1.368 3.348 3.528s-1.368 3.528-3.348 3.528Zm10.529 0v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm10.985 3.024c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm5.942-12.852V211h2.88v-12.6h-2.88Zm17.429 5.58h-6.318v2.52h3.366c-.45 1.206-1.548 1.944-3.222 1.944-2.448 0-3.96-1.566-3.96-3.708 0-2.214 1.584-3.78 3.708-3.78 1.422 0 2.556.648 3.078 1.476l2.448-1.404c-1.062-1.692-3.096-2.88-5.508-2.88-3.708 0-6.606 2.916-6.606 6.57 0 3.618 2.844 6.534 6.804 6.534 3.528 0 6.21-2.34 6.21-6.192v-1.08Zm8.553-5.58v6.84l-4.86-6.84h-2.16V211h2.88v-6.84l4.86 6.84h2.16v-12.6h-2.88Zm13.769 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm15.744-12.852h-3.276l-2.394 4.86-2.394-4.86h-3.276l4.23 7.758V211h2.88v-4.842l4.23-7.758Zm4.677 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm14.033-12.852h-9.36v2.772h3.24V211h2.88v-9.828h3.24V198.4Zm4.05 9.828v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm19.175-9.828h-2.88l-3.42 5.598-3.42-5.598h-2.88V211h2.88v-7.326l3.258 5.346h.324l3.258-5.346V211h2.88v-12.6Z" fill="#BFBFBF"/><path d="M212 177c0-11.598 9.402-21 21-21h14c11.598 0 21 9.402 21 21v35h-35c-11.598 0-21-9.402-21-21v-14Z" fill="#0073E6"/><path d="M250.8 174H246l-5.7 9.33-5.7-9.33h-4.8v21h4.8v-12.21l5.43 8.91h.54l5.43-8.91V195h4.8v-21Z" fill="#fff"/><path fill="#F19CFF" d="M210 2h2v365h-2zM190 2h2v365h-2zM430 2h2v365h-2zM450 2h2v365h-2z"/></symbol><symbol viewBox="0 0 648 367" fill="none" id="icon-motiv-logo-example" xmlns="http://www.w3.org/2000/svg"><rect width="648" height="367" rx="6" fill="#F9F9F9"/><path d="M326.36 163.8h-5.76l-6.84 11.196-6.84-11.196h-5.76V189h5.76v-14.652l6.516 10.692h.648l6.516-10.692V189h5.76v-25.2Zm12.611 25.704c5.292 0 9.54-4.14 9.54-9.504s-4.248-9.504-9.54-9.504c-5.292 0-9.54 4.14-9.54 9.504s4.248 9.504 9.54 9.504Zm0-5.256c-2.34 0-4.14-1.692-4.14-4.248s1.8-4.248 4.14-4.248 4.14 1.692 4.14 4.248-1.8 4.248-4.14 4.248Zm22.611-8.064V171h-3.708v-5.04l-5.4 1.62V171h-2.88v5.184h2.88v6.372c0 5.04 2.052 7.164 9.108 6.444v-4.896c-2.376.144-3.708 0-3.708-1.548v-6.372h3.708Zm5.578-6.768c1.764 0 3.24-1.476 3.24-3.24 0-1.764-1.476-3.24-3.24-3.24-1.764 0-3.24 1.476-3.24 3.24 0 1.764 1.476 3.24 3.24 3.24ZM364.46 189h5.4v-18h-5.4v18Zm20.655-18-3.744 11.412L377.627 171h-5.976l6.66 18h6.12l6.66-18h-5.976Z" fill="#333"/><path d="M305.12 198.4h-5.04V211h5.04c3.474 0 6.12-2.736 6.12-6.3 0-3.564-2.646-6.3-6.12-6.3Zm0 9.828h-2.16v-7.056h2.16c1.98 0 3.348 1.368 3.348 3.528s-1.368 3.528-3.348 3.528Zm10.529 0v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm10.985 3.024c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm5.942-12.852V211h2.88v-12.6h-2.88Zm17.429 5.58h-6.318v2.52h3.366c-.45 1.206-1.548 1.944-3.222 1.944-2.448 0-3.96-1.566-3.96-3.708 0-2.214 1.584-3.78 3.708-3.78 1.422 0 2.556.648 3.078 1.476l2.448-1.404c-1.062-1.692-3.096-2.88-5.508-2.88-3.708 0-6.606 2.916-6.606 6.57 0 3.618 2.844 6.534 6.804 6.534 3.528 0 6.21-2.34 6.21-6.192v-1.08Zm8.553-5.58v6.84l-4.86-6.84h-2.16V211h2.88v-6.84l4.86 6.84h2.16v-12.6h-2.88Zm13.769 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm15.744-12.852h-3.276l-2.394 4.86-2.394-4.86h-3.276l4.23 7.758V211h2.88v-4.842l4.23-7.758Zm4.677 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm14.033-12.852h-9.36v2.772h3.24V211h2.88v-9.828h3.24V198.4Zm4.05 9.828v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm19.175-9.828h-2.88l-3.42 5.598-3.42-5.598h-2.88V211h2.88v-7.326l3.258 5.346h.324l3.258-5.346V211h2.88v-12.6Z" fill="#BFBFBF"/><path d="M212 177c0-11.598 9.402-21 21-21h14c11.598 0 21 9.402 21 21v35h-35c-11.598 0-21-9.402-21-21v-14Z" fill="#0073E6"/><path d="M250.8 174H246l-5.7 9.33-5.7-9.33h-4.8v21h4.8v-12.21l5.43 8.91h.54l5.43-8.91V195h4.8v-21Z" fill="#fff"/><path fill="#F19CFF" d="M210 2h2v365h-2zM190 2h2v365h-2zM430 2h2v365h-2zM450 2h2v365h-2z"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cbfeather cbfeather-plus-circle" id="icon-plus-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v8M8 12h8"/></symbol><symbol viewBox="0 0 491 437" id="icon-react" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="nonzero"><path d="M490.6 218.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V0c-27.5 0-63.5 19.6-99.9 53.6C208.7 19.8 172.7.4 145.2.4v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1C40.5 155.4 0 186.1 0 218.5c0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3Zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9Zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9Zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1ZM245.5 352c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32Zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4ZM245 85c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32Zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9ZM80.5 269.1c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2ZM134.3 412c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7Zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1Zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6Z"/><circle cx="245.2" cy="218.5" r="45.7"/></g></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cdfeather cdfeather-search" id="icon-search" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></symbol><symbol viewBox="0 0 302 167" id="icon-search-laptop" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M6.42 141h289a4 4 0 0 1 3.693 5.538l-5.641 13.539a8 8 0 0 1-7.385 4.923H15.754a8 8 0 0 1-7.385-4.923l-5.64-13.539A4 4 0 0 1 6.42 141ZM27.42 129.408V17.168c0-8.284 6.716-15 15-15h218.991c8.285 0 15 6.716 15 15v112.24" stroke="#DEDEDE" stroke-width="4"/><g fill="#4574C7" fill-rule="nonzero"><path d="M148.667 44.167c-14.084 0-25.5 11.416-25.5 25.5 0 14.083 11.416 25.5 25.5 25.5 14.083 0 25.5-11.417 25.5-25.5 0-14.084-11.417-25.5-25.5-25.5Zm0 5.666c10.953 0 19.833 8.88 19.833 19.834 0 10.953-8.88 19.833-19.833 19.833-10.954 0-19.834-8.88-19.834-19.833 0-10.954 8.88-19.834 19.834-19.834Z"/><path d="M162.672 83.672a2.834 2.834 0 0 1 3.74-.236l.266.236 12.325 12.325a2.833 2.833 0 0 1-3.74 4.242l-.266-.236-12.325-12.325a2.833 2.833 0 0 1 0-4.006Z"/></g></g></symbol><symbol id="icon-send" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><style>.cecls-1{fill-rule:evenodd}</style></defs><path id="ceIcon-Color" class="cecls-1" d="M9.92 23.93h-.07l.07.06a.47.47 0 0 1-.1-.1s0 0 0-.05l-2.3-6.92-7.11-2.55a.64.64 0 0 1-.41-.51.62.62 0 0 1 .3-.58L23.1.08h.05-.07H23.67h-.05l.08.09v.06a.14.14 0 0 1 0 .07v.41L20.39 21.1a.6.6 0 0 1-.83.45l-5.47-2.34-3.41 4.55v.05-.06l-.07.08a.62.62 0 0 1-.37.16.5.5 0 0 1-.27-.07ZM18.7 6.15 8.49 16.36l1.56 4.7.76-3.78v-.07.07a.5.5 0 0 1 0-.13.21.21 0 0 1 0-.06Zm-6.86 12.09-.53 2.68 1.69-2.2ZM22.35 3.1l-10 14 7 3Zm-2.61.31L2.05 13.65l5.59 1.86Z"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cffeather cffeather-share-2" id="icon-share" xmlns="http://www.w3.org/2000/svg"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><path d="m8.59 13.51 6.83 3.98M15.41 6.51l-6.82 3.98"/></symbol><symbol viewBox="0 0 37 18" id="icon-small-accordion" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4C1.79 0 0 1.896 0 4.235v9.53C0 16.104 1.79 18 4 18h29c2.21 0 4-1.896 4-4.235v-9.53C37 1.896 35.21 0 33 0ZM4 2.118h29c1.105 0 2 .948 2 2.117v9.53c0 1.17-.895 2.117-2 2.117H4c-1.105 0-2-.948-2-2.117v-9.53c0-1.17.895-2.117 2-2.117ZM25 8h6a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2Zm2 4V6a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0Z" fill="#000" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 37 17" id="icon-small-button" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4a4 4 0 0 0-4 4v9a4 4 0 0 0 4 4h29a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4ZM4 2h29a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 5.5h15v2H11v-2Z" fill="#000" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 38 19" id="icon-small-pagination" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect stroke="#000" stroke-width="2" x="1" y="1" width="36" height="17" rx="4"/><path d="M27.815 13c-.319-.005-.604-.174-.725-.432a.633.633 0 0 1 .168-.752l2.625-2.283-2.61-2.311a.645.645 0 0 1-.25-.694c.072-.253.3-.45.592-.51a.865.865 0 0 1 .788.229l3.183 2.784c.15.131.235.309.235.495a.656.656 0 0 1-.235.494l-3.183 2.784a.863.863 0 0 1-.588.195Z" fill="#000" fill-rule="nonzero"/><path fill="#000" d="M18 2h2v15h-2z"/><path d="M10.006 6c.319.005.604.174.725.432a.633.633 0 0 1-.168.752L7.938 9.467l2.61 2.311c.225.172.321.44.25.694-.073.253-.301.45-.592.51a.865.865 0 0 1-.788-.229L6.235 9.97A.656.656 0 0 1 6 9.474c0-.185.085-.363.235-.494l3.183-2.784A.863.863 0 0 1 10.006 6Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 36 23" id="icon-small-radio" xmlns="http://www.w3.org/2000/svg"><g transform="translate(1 1)" fill="none" fill-rule="evenodd"><rect fill="#000" x="16" y="3" width="19" height="3" rx="1.5"/><circle stroke="#000" stroke-width="2" cx="4" cy="4" r="4"/><circle stroke="#000" fill="#000" cx="4" cy="4" r="1"/><rect fill="#000" x="16" y="15" width="19" height="3" rx="1.5"/><circle stroke="#000" stroke-width="2" cx="4" cy="17" r="4"/></g></symbol><symbol viewBox="0 0 37 18" id="icon-small-select" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4C1.79 0 0 1.896 0 4.235v9.53C0 16.104 1.79 18 4 18h29c2.21 0 4-1.896 4-4.235v-9.53C37 1.896 35.21 0 33 0ZM4 2.118h29c1.105 0 2 .948 2 2.117v9.53c0 1.17-.895 2.117-2 2.117H4c-1.105 0-2-.948-2-2.117v-9.53c0-1.17.895-2.117 2-2.117ZM7 8.5h12v2H7v-2Zm17.496-.88c.003-.318.173-.603.43-.724a.633.633 0 0 1 .753.168l2.283 2.625 2.311-2.61a.645.645 0 0 1 .693-.25c.254.073.451.301.51.592a.865.865 0 0 1-.228.788l-2.785 3.183a.656.656 0 0 1-.494.235.656.656 0 0 1-.494-.235L24.69 8.209a.863.863 0 0 1-.194-.588Z" fill="#000" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 37 22" id="icon-small-table" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="evenodd"><rect x="16" y="18" width="18" height="3" rx="1.5"/><rect x="16" y="10" width="18" height="3" rx="1.5"/><rect x="16" y="2" width="18" height="3" rx="1.5"/><rect x="1" y="18" width="10" height="3" rx="1.5"/><rect x="1" y="10" width="10" height="3" rx="1.5"/><rect x="1" y="2" width="9" height="3" rx="1.5"/></g></symbol><symbol viewBox="0 0 38 19" id="icon-small-toggle" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 1h19a8.5 8.5 0 0 1 0 17h-19a8.5 8.5 0 0 1 0-17Zm1 12a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z" stroke="#000" stroke-width="2" fill="none" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cnfeather cnfeather-sun" id="icon-sun" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></symbol><symbol viewBox="0 0 11 11" fill="none" id="icon-token-alignment" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M1 8h6v1H1zM1 5h9v1H1zM1 2h9v1H1z"/></symbol><symbol viewBox="0 0 9 10" fill="none" id="icon-token-border-radius" xmlns="http://www.w3.org/2000/svg"><path d="M1 10V6a5 5 0 0 1 5-5h3" stroke="#000"/></symbol><symbol viewBox="0 0 11 11" fill="none" id="icon-token-border-width" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 1h9v.947H1.947V10H1V1Z" fill="#000"/><path fill="#000" d="M3 9h1v1H3zM5 8.999h1v1H5zM7 8.998h1v1H7zM9 8.996h1v1H9zM9 7h1v1H9zM9 5h1v1H9zM9 3h1v1H9z"/></symbol><symbol viewBox="0 0 13 12" fill="none" id="icon-token-spacing-horizontal" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M12 0h1v12h-1zM9 3h1v6H9zM3 3h1v6H3z"/><path fill="#000" d="M3 4V3h7v1zM3 9V8h7v1zM0 0h1v12H0z"/></symbol><symbol viewBox="0 0 13 12" fill="none" id="icon-token-spacing-vertical" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M9 3h1v6H9zM3 3h1v6H3z"/><path fill="#000" d="M3 4V3h7v1zM3 9V8h7v1zM0 1V0h13v1zM0 12v-1h13v1z"/></symbol><symbol viewBox="0 0 11 11" fill="none" id="icon-token-type-small" xmlns="http://www.w3.org/2000/svg"><path d="M1 2.719V1h9.167v1.719M3.865 10.167h3.437M5.583 1v9.167" stroke="#181818" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cqfeather cqfeather-x" id="icon-x" xmlns="http://www.w3.org/2000/svg"><path d="M18 6 6 18M6 6l12 12"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cvfeather cvfeather-zap" id="icon-zap" xmlns="http://www.w3.org/2000/svg"><path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z"/></symbol></svg>
1
+ <?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="acfeather acfeather-activity" id="icon-activity" xmlns="http://www.w3.org/2000/svg"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></symbol><symbol viewBox="0 0 11 11" id="icon-add" xmlns="http://www.w3.org/2000/svg"><g data-name="Layer 2"><g data-name="Isolation Mode"><path d="M5.5 11A5.5 5.5 0 1 1 11 5.5 5.51 5.51 0 0 1 5.5 11Zm0-10A4.5 4.5 0 1 0 10 5.5 4.5 4.5 0 0 0 5.5 1Z"/><path d="M5.5 8.5A.5.5 0 0 1 5 8V3a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5Z"/><path d="M8 6H3a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1Z"/></g></g></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aefeather aefeather-airplay" id="icon-airplay" xmlns="http://www.w3.org/2000/svg"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"/><path d="m12 15 5 6H7l5-6z"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aafeather aafeather-alert-circle" id="icon-alert-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v4M12 16h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="adfeather adfeather-alert-octagon" id="icon-alert-octagon" xmlns="http://www.w3.org/2000/svg"><path d="M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2zM12 8v4M12 16h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="affeather affeather-alert-triangle" id="icon-alert-triangle" xmlns="http://www.w3.org/2000/svg"><path d="M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="agfeather agfeather-align-center" id="icon-align-center" xmlns="http://www.w3.org/2000/svg"><path d="M18 10H6M21 6H3M21 14H3M18 18H6"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="amfeather amfeather-align-justify" id="icon-align-justify" xmlns="http://www.w3.org/2000/svg"><path d="M21 10H3M21 6H3M21 14H3M21 18H3"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aifeather aifeather-align-left" id="icon-align-left" xmlns="http://www.w3.org/2000/svg"><path d="M17 10H3M21 6H3M21 14H3M17 18H3"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ahfeather ahfeather-arrow-down-circle" id="icon-arrow-down-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m8 12 4 4 4-4M12 8v8"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="akfeather akfeather-arrow-left-circle" id="icon-arrow-left-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 8-4 4 4 4M16 12H8"/></symbol><symbol viewBox="0 0 24 24" fill="none" id="icon-arrow-right" xmlns="http://www.w3.org/2000/svg"><path d="m12 16 4-4-4-4M1 12h14" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ajfeather ajfeather-arrow-right-circle" id="icon-arrow-right-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m12 16 4-4-4-4M8 12h8"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="avfeather avfeather-arrow-up-circle" id="icon-arrow-up-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="m16 12-4-4-4 4M12 16V8"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="apfeather apfeather-bell" id="icon-bell" xmlns="http://www.w3.org/2000/svg"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 0 1-3.46 0"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="anfeather anfeather-bell-off" id="icon-bell-off" xmlns="http://www.w3.org/2000/svg"><path d="M13.73 21a2 2 0 0 1-3.46 0M18.63 13A17.89 17.89 0 0 1 18 8M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14M18 8a6 6 0 0 0-9.33-5M1 1l22 22"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aofeather aofeather-camera" id="icon-camera" xmlns="http://www.w3.org/2000/svg"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="asfeather asfeather-cast" id="icon-cast" xmlns="http://www.w3.org/2000/svg"><path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6M2 20h.01"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="aqfeather aqfeather-check" id="icon-check" xmlns="http://www.w3.org/2000/svg"><path d="M20 6 9 17l-5-5"/></symbol><symbol viewBox="0 0 24 24" id="icon-clock" xmlns="http://www.w3.org/2000/svg"><path d="M12 23.5C5.659 23.5.5 18.341.5 12S5.659.5 12 .5 23.5 5.659 23.5 12 18.341 23.5 12 23.5zm0-22C6.21 1.5 1.5 6.21 1.5 12S6.21 22.5 12 22.5 22.5 17.79 22.5 12 17.79 1.5 12 1.5zm6 11h-6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 1 0v7.5H18a.5.5 0 0 1 0 1z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="atfeather atfeather-code" id="icon-code" xmlns="http://www.w3.org/2000/svg"><path d="m16 18 6-6-6-6M8 6l-6 6 6 6"/></symbol><symbol viewBox="0 0 215 165" id="icon-component" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bda"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bdc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bdb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bdd" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bda)" xlink:href="#bdb"/><use fill="#FFF" xlink:href="#bdb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bdc)" xlink:href="#bdd"/><use fill="#FFF" xlink:href="#bdd"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-accordion" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.9%" width="109.4%" height="117.6%" filterUnits="objectBoundingBox" id="ara"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="arc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="arb" x="0" y="0" width="203" height="108" rx="3"/><rect id="ard" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#ara)" xlink:href="#arb"/><use fill="#FFF" xlink:href="#arb"/><path fill="#E8E8E8" d="M18 38h168v1H18z"/><rect fill="#E8E8E8" x="18" y="84" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="69" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="54" width="171" height="6" rx="2"/></g><g transform="translate(6 125)"><use fill="#000" filter="url(#arc)" xlink:href="#ard"/><use fill="#FFF" xlink:href="#ard"/><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="18" y="17" width="106" height="6" rx="2"/></g><g transform="translate(6 5)"><path d="M184 13a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm3.5 7.583h-2.917V23.5h-1.166v-2.917H180.5v-1.166h2.917V16.5h1.166v2.917h2.917v1.166Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-alert" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="aya"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="ayb" x="0" y="0" width="203" height="158" rx="6"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#aya)" xlink:href="#ayb"/><use fill="#FFF" xlink:href="#ayb"/></g><path d="M24 60h47a4 4 0 0 1 4 4v74a4 4 0 0 1-4 4H24a4 4 0 0 1-4-4V64a4 4 0 0 1 4-4ZM91 60h100a4 4 0 0 1 4 4v29a4 4 0 0 1-4 4H91a4 4 0 0 1-4-4V64a4 4 0 0 1 4-4ZM91 105h100a4 4 0 0 1 4 4v29a4 4 0 0 1-4 4H91a4 4 0 0 1-4-4v-29a4 4 0 0 1 4-4Z" fill="#E8E8E8"/><g transform="translate(20 19)"><path d="M4 0h167a4 4 0 0 1 4 4v19a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#4574C7"/><path fill="#FFF" fill-rule="nonzero" d="m164.162 11.162-2.652 2.652 2.652 2.651-1.06 1.061-2.652-2.652-2.652 2.652-1.06-1.06 2.651-2.652-2.652-2.652 1.061-1.06 2.652 2.651 2.651-2.652z"/><rect fill="#FFF" x="12" y="12" width="100" height="3" rx="1.5"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-button" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="baa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bac"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="bae"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="bab" x="0" y="0" width="203" height="158" rx="6"/><rect id="bad" x="0" y="0" width="69" height="18" rx="2"/><rect id="baf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#baa)" xlink:href="#bab"/><use fill="#FFF" xlink:href="#bab"/><g transform="translate(107 113)"><use fill="#000" filter="url(#bac)" xlink:href="#bad"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#bae)" xlink:href="#baf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 175 139" id="icon-component-checkbox" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(0 119)"><rect x="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="1" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="12" width="135" height="6" rx="2"/></g><g transform="translate(1 40)"><g stroke="#4574C7" stroke-width="2"><rect width="18" height="18" rx="6.5"/><path stroke-linecap="round" stroke-linejoin="round" d="m13 7-4.813 5L6 9.727"/></g><rect fill="#4574C7" x="39" y="1" width="59" height="6" rx="2"/><rect fill="#4574C7" x="39" y="12" width="104" height="6" rx="2"/></g><g transform="translate(0 79)"><rect x="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="1" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="12" width="135" height="6" rx="2"/></g><g><rect x="1" y="1" width="18" height="18" rx="6.5" stroke="#D8D8D8" stroke-width="2"/><rect fill="#D8D8D8" x="40" y="2" width="50" height="6" rx="2"/><rect fill="#D8D8D8" x="40" y="13" width="135" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 205 120" id="icon-component-input" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g transform="translate(1 70)"><rect width="203" height="35" rx="3" fill="#000" fill-rule="nonzero" transform="translate(0 14)"/><rect width="203" height="35" rx="3" fill="#FFF" stroke="#E2E2E2" transform="translate(0 14)"/><rect fill="#D8D8D8" fill-rule="nonzero" x="1" width="76" height="6" rx="2"/></g><g transform="translate(1)"><rect width="203" height="35" rx="3" fill="#000" fill-rule="nonzero" transform="translate(0 14)"/><rect width="203" height="35" rx="3" fill="#FFF" stroke="#AFAFAF" transform="translate(0 14)"/><rect fill="#4574C7" fill-rule="nonzero" x="1" width="76" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 170" id="icon-component-modal" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="axa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="axc"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><filter x="-11.6%" y="-33.3%" width="123.2%" height="188.9%" filterUnits="objectBoundingBox" id="axe"><feMorphology radius="1" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="2" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" in="shadowBlurOuter1"/></filter><rect id="axb" x="0" y="0" width="203" height="158" rx="6"/><rect id="axd" x="0" y="0" width="69" height="18" rx="2"/><rect id="axf" x="0" y="0" width="69" height="18" rx="2"/></defs><g transform="translate(6 5)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#axa)" xlink:href="#axb"/><use fill="#FFF" xlink:href="#axb"/><g transform="translate(107 113)"><use fill="#000" filter="url(#axc)" xlink:href="#axd"/><rect stroke-opacity=".5" stroke="#FFF" fill="#E8E8E8" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><g transform="translate(27 113)"><use fill="#000" filter="url(#axe)" xlink:href="#axf"/><rect stroke-opacity=".495" stroke="#FFF" fill="#4574C7" x="-.5" y="-.5" width="70" height="19" rx="2"/><rect fill="#FFF" x="14" y="7" width="41" height="4" rx="2"/></g><path fill="#E8E8E8" d="M27 92h148v1H27z"/><rect fill="#E8E8E8" x="51.526" y="67" width="100" height="6" rx="2"/><rect fill="#E8E8E8" x="39" y="53" width="126" height="6" rx="2"/><rect fill="#4574C7" x="72" y="39" width="59" height="6" rx="2"/><path d="M175.05 18.05a7 7 0 1 0 9.9 9.9 7 7 0 0 0-9.9-9.9Zm7.837 2.888L180.825 23l2.062 2.062-.825.825L180 23.825l-2.062 2.062-.825-.825L179.175 23l-2.062-2.062.825-.825L180 22.175l2.062-2.062.825.825Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 228 44" id="icon-component-pagination" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cua"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cuc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cue"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cug"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-29.7%" y="-26.6%" width="159.4%" height="159.4%" filterUnits="objectBoundingBox" id="cui"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="cub" x="0" y="0" width="32" height="32" rx="3"/><rect id="cud" x="0" y="0" width="32" height="32" rx="3"/><rect id="cuf" x="0" y="0" width="32" height="32" rx="3"/><rect id="cuh" x="0" y="0" width="32" height="32" rx="3"/><rect id="cuj" x="184" y="0" width="32" height="32" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(151 5)"><use fill="#000" filter="url(#cua)" xlink:href="#cub"/><use fill="#FFF" xlink:href="#cub"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(124 32)" fill="#D8D8D8"><rect width="4" height="4" rx="1"/><rect x="7" width="4" height="4" rx="1"/><rect x="14" width="4" height="4" rx="1"/></g><g transform="translate(84 5)"><use fill="#000" filter="url(#cuc)" xlink:href="#cud"/><use fill="#FFF" xlink:href="#cud"/><rect fill="#E8E8E8" x="9" y="13" width="14" height="6" rx="2"/></g><g transform="translate(45 5)"><use fill="#000" filter="url(#cue)" xlink:href="#cuf"/><use fill="#FFF" xlink:href="#cuf"/></g><path d="M60.715 16.107c-.25.469-.588.932-1.015 1.389-.499.533-1.143 1.045-1.932 1.536.048.256.155.497.32.724.165.227.352.393.56.5a6.84 6.84 0 0 0 1.156-.656 5.853 5.853 0 0 0 1.06-.944l-.001.001-.007.131-.031.496-.029.488c-.019.323-.028.583-.028.78v2.6c0 .219.003.432.008.64.005.208.008.424.008.648l-.001-.152h-.065l-.252-.005-.154-.003a22.223 22.223 0 0 0-.504-.008h-1.376a3.55 3.55 0 0 0-.104.864c0 .277.035.565.104.864h6.36a3.972 3.972 0 0 0 0-1.728h-.984c-.112 0-.285.003-.52.008-.235.005-.41.008-.528.008h.033l.001-.178.006-.318c.005-.208.008-.421.008-.64v-7.28a5.617 5.617 0 0 0-1.976 0l-.117.235Z" fill="#4574C7" fill-rule="nonzero"/><g transform="translate(6 5)"><use fill="#000" filter="url(#cug)" xlink:href="#cuh"/><use fill="#FFF" xlink:href="#cuh"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#cui)" xlink:href="#cuj"/><use fill="#FFF" xlink:href="#cuj"/></g><path d="M204.242 25c-.363-.005-.69-.199-.828-.493a.724.724 0 0 1 .192-.86l3-2.61-2.982-2.641c-.258-.196-.368-.502-.286-.792.082-.29.343-.515.676-.583a.988.988 0 0 1 .901.261l3.637 3.182a.75.75 0 0 1 .269.565.75.75 0 0 1-.269.565l-3.637 3.182a.986.986 0 0 1-.673.223ZM23.579 17c.363.005.69.199.828.493a.724.724 0 0 1-.192.86l-3 2.61 2.982 2.641c.258.196.368.502.286.792-.082.29-.344.515-.676.583a.988.988 0 0 1-.901-.261l-3.637-3.182A.75.75 0 0 1 19 20.97a.75.75 0 0 1 .269-.565l3.637-3.182a.986.986 0 0 1 .673-.223Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 175 139" fill="none" id="icon-component-radio" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="128" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 120H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM173 131H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/><circle cx="10" cy="49" r="9" stroke="#4574C7" stroke-width="2"/><circle cx="10" cy="49" r="4" fill="#4574C7"/><path d="M97 41H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h55a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM142 52H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h100a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#4574C7"/><circle cx="10" cy="88" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 80H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2ZM173 91H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/><circle cx="10" cy="10" r="9" stroke="#D8D8D8" stroke-width="2"/><path d="M88 2H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h46a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM173 13H42a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h131a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z" fill="#D8D8D8"/></symbol><symbol viewBox="0 0 215 165" id="icon-component-select" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-7.5%" width="109.4%" height="116.8%" filterUnits="objectBoundingBox" id="bba"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.7%" y="-22.4%" width="109.4%" height="150%" filterUnits="objectBoundingBox" id="bbc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bbb" x="0" y="0" width="203" height="113" rx="3"/><rect id="bbd" x="0" y="0" width="203" height="38" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 45)"><use fill="#000" filter="url(#bba)" xlink:href="#bbb"/><use fill="#FFF" xlink:href="#bbb"/><rect fill="#F0F0F0" x="6" y="39" width="191" height="35" rx="3"/><rect fill="#E8E8E8" x="18" y="90" width="107" height="6" rx="2"/><rect fill="#D8D8D8" x="18" y="54" width="131" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="17" width="121" height="6" rx="2"/></g><g transform="translate(6 5)"><use fill="#000" filter="url(#bbc)" xlink:href="#bbd"/><use fill="#FFF" xlink:href="#bbd"/><path d="M184 27a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-4.422-3.497-3.493.826-.825L184 20.93l2.678-2.668.826.824L184 22.578Z" fill="#000" fill-rule="nonzero"/><rect fill="#4574C7" x="18" y="17" width="106" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 205 120" fill="none" id="icon-component-switch" xmlns="http://www.w3.org/2000/svg"><rect x="68" y="66" width="69" height="35" rx="17.5" stroke="#4574C7" stroke-width="2"/><circle cx="119.5" cy="83.5" r="11.5" fill="#4574C7"/><rect x="68" y="17" width="69" height="35" rx="17.5" stroke="#D8D8D8" stroke-width="2"/><circle cx="85.5" cy="34.5" r="11.5" fill="#D8D8D8"/></symbol><symbol viewBox="0 0 215 170" id="icon-component-table" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.4%" width="109.4%" height="112%" filterUnits="objectBoundingBox" id="bca"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bcb" x="0" y="0" width="203" height="158" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bca)" xlink:href="#bcb"/><use fill="#FFF" xlink:href="#bcb"/></g><g transform="translate(15 27)" fill="#E8E8E8"><path d="M12 22h161v1H12z"/><path d="M52 0h1v109h-1z"/><rect x="129" y="101" width="40" height="6" rx="2"/><rect x="129" y="80" width="35" height="6" rx="2"/><rect x="129" y="59" width="39" height="6" rx="2"/><rect x="129" y="38" width="36" height="6" rx="2"/><rect x="70" y="101" width="45" height="6" rx="2"/><rect x="70" y="80" width="39.375" height="6" rx="2"/><rect x="70" y="59" width="43.875" height="6" rx="2"/><rect x="70" y="38" width="40.5" height="6" rx="2"/><rect x="12" y="101" width="25" height="6" rx="2"/><rect x="12" y="80" width="25" height="6" rx="2"/><rect x="12" y="59" width="25" height="6" rx="2"/><rect x="12" y="38" width="25" height="6" rx="2"/></g><g transform="translate(9 11)" fill="#4574C7"><rect x="135" y="17" width="40" height="6" rx="2"/><rect x="75" y="17" width="40" height="6" rx="2"/><rect x="18" y="17" width="24" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 215 171" id="icon-component-tabs" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.7%" y="-5.3%" width="109.4%" height="111.9%" filterUnits="objectBoundingBox" id="bga"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><path d="M3 0h89.017a3 3 0 0 1 3 3v36.383a3 3 0 0 0 3 3H200a3 3 0 0 1 3 3V156a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3Z" id="bgb"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 5)"><use fill="#000" filter="url(#bga)" xlink:href="#bgb"/><use fill="#FFF" xlink:href="#bgb"/><rect fill="#E8E8E8" x="101" width="102" height="36" rx="3"/><rect fill="#E8E8E8" x="18" y="110" width="137" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="95" width="171" height="6" rx="2"/><rect fill="#E8E8E8" x="18" y="80" width="171" height="6" rx="2"/></g><g transform="translate(6 5)"><rect fill="#4574C7" x="18" y="20" width="58" height="6" rx="2"/><rect fill="#FFF" x="114" y="17" width="72" height="6" rx="2"/></g></g></symbol><symbol viewBox="0 0 217 143" id="icon-component-tooltip" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bia"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-4.9%" y="-25.7%" width="109.9%" height="157.1%" filterUnits="objectBoundingBox" id="bic"><feMorphology radius=".5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"/><feOffset dy="1" in="shadowSpreadOuter1" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bib" x="0" y="14" width="203" height="35" rx="3"/><rect id="bid" x="0" y="14" width="203" height="35" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(7 86)"><use fill="#000" filter="url(#bia)" xlink:href="#bib"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bib"/><g transform="translate(174 24)" stroke="#E8E8E8" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(7 16)"><use fill="#000" filter="url(#bic)" xlink:href="#bid"/><use stroke="#E2E2E2" fill="#FFF" xlink:href="#bid"/><g transform="translate(174 24)" stroke="#4574C7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><circle cx="8" cy="8" r="8"/><path d="M7.969 11.313V8.5M7.964 5.219h.009"/></g><rect fill="#D8D8D8" x="1" width="76" height="6" rx="2"/></g><g transform="translate(111)"><path d="M4 0h91a4 4 0 0 1 4 4v23a4 4 0 0 1-4 4H82.51a1 1 0 0 0-.705.291L78.08 35l-3.728-3.709a1 1 0 0 0-.705-.291H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4Z" fill="#1C1C1C"/><rect fill="#FFF" x="19" y="14" width="63" height="3" rx="1.5"/></g></g></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bkfeather bkfeather-copy" id="icon-copy" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></symbol><symbol viewBox="0 0 24 16" id="icon-delivery" xmlns="http://www.w3.org/2000/svg"><path d="M16.603 0c.704 0 1.51.302 2.113.805l4.226 3.522c.805.704 1.208 1.51 1.007 2.515 0 1.208-.302 2.315-.805 3.422l-1.007 1.912c-.301.503-.805.805-1.308.805-.2 1.71-1.61 3.018-3.42 3.018-1.712 0-3.22-1.308-3.422-3.018H9.86c-.201 1.71-1.71 3.018-3.421 3.018-1.71 0-3.22-1.308-3.421-3.018h-.1A2.92 2.92 0 0 1 0 10.062c0-.301.1-.704.302-1.106C.1 8.855 0 8.754 0 8.553c0-.302.201-.503.503-.503h.201l1.007-2.013H.503c-.302 0-.503-.2-.503-.503 0-.302.201-.503.503-.503h1.71L3.22 3.02H.503C.201 3.019 0 2.817 0 2.516c0-.302.201-.504.503-.504h3.22l.201-.402A2.9 2.9 0 0 1 6.541 0zM6.541 10.062a2.491 2.491 0 0 0-2.516 2.516 2.491 2.491 0 0 0 2.516 2.516 2.491 2.491 0 0 0 2.515-2.516 2.491 2.491 0 0 0-2.515-2.516zm11.068 0a2.491 2.491 0 0 0-2.515 2.516 2.491 2.491 0 0 0 2.515 2.516 2.491 2.491 0 0 0 2.516-2.516 2.491 2.491 0 0 0-2.516-2.516zm-.805-9.056H6.742c-.705 0-1.409.403-1.71 1.006h2.716c.302 0 .503.202.503.504 0 .301-.201.503-.503.503h-3.22L3.522 5.03h2.214c.301 0 .503.201.503.503s-.202.503-.503.503H3.019L2.012 8.05h1.711c.302 0 .503.201.503.503s-.201.503-.503.503H1.51l-.1.201c-.1.302-.202.604-.202.906a1.91 1.91 0 0 0 1.912 1.912h.101c.201-1.71 1.71-3.019 3.421-3.019 1.71 0 3.22 1.308 3.421 3.019h4.126c.201-1.71 1.61-3.019 3.421-3.019 1.711 0 3.12 1.308 3.422 3.019.2-.1.301-.201.402-.302l1.006-1.912c.503-.805.705-2.012.906-3.019 0-.704-.302-1.408-.805-1.81l-4.226-3.523a2.711 2.711 0 0 0-1.51-.503zm-.402 1.006c.201 0 .402 0 .503.101l5.031 4.025c.201.201.302.403.201.604a.553.553 0 0 1-.503.302h-6.037c-.201 0-.302-.1-.403-.202-.1-.1-.1-.301-.1-.402L16.1 2.415c0-.201.1-.302.302-.403zm.503 1.41-.704 2.615h4.025l-3.321-2.616z" fill="currentColor" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bnfeather bnfeather-download" id="icon-download" xmlns="http://www.w3.org/2000/svg"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"/></symbol><symbol viewBox="0 0 472 601" fill="none" id="icon-file-jpg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bja)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#1DA890"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#2ACD70"/><path d="m91.99 175.93 9.25-6.85c2.22 4.07 5.37 6.01 8.42 6.01 4.9 0 7.49-2.5 7.49-10.55v-39.13h13.6v40.24c0 11.66-6.01 21.19-19.34 21.19-9.16 0-15.27-3.61-19.43-10.92l.01.01ZM144.72 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01ZM197 155.95c0-19.98 13.32-31.64 29.42-31.64 8.7 0 14.99 3.79 18.97 7.86l-7.12 8.7c-3.05-2.68-6.2-4.81-11.38-4.81-9.34 0-15.91 7.31-15.91 19.43 0 12.12 5.64 19.61 16.93 19.61 2.5 0 5-.65 6.48-1.85v-10.36h-9.99v-11.1h22.02v27.76c-4.16 4.07-11.47 7.31-19.89 7.31-16.56 0-29.51-10.64-29.51-30.9l-.02-.01Z" fill="#F5F5F5"/><path d="M381.27 519.18H130.95V301.31h250.32v217.87Zm-238.73-11.59h227.14V312.9H142.54v194.69Z" fill="#C9C9C9"/><path d="m136.75 513.38 75.32-75.32 24.34 24.33 62.58-62.58 76.49 113.57H136.75ZM215.179 373.08c1.883-8.758-3.691-17.384-12.449-19.266-8.758-1.883-17.384 3.691-19.267 12.449-1.882 8.758 3.692 17.384 12.45 19.266 8.758 1.883 17.384-3.691 19.266-12.449Z" fill="#C9C9C9"/></g><defs><clipPath id="bja"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 472 601" fill="none" id="icon-file-svg" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bqa)"><path d="m0 226.55 46.36 41.15 3.09-41.15H0Z" fill="#F46D38"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#FEA352"/><path d="M119.535 142.515c-.233-2.349-1.233-4.174-2.999-5.475-1.767-1.3-4.165-1.951-7.193-1.951-2.058 0-3.795.292-5.212.874-1.417.563-2.505 1.349-3.262 2.359-.737 1.009-1.106 2.155-1.106 3.436-.039 1.068.184 1.999.67 2.795.504.796 1.193 1.485 2.067 2.068.874.563 1.883 1.058 3.028 1.485 1.146.407 2.369.757 3.669 1.048l5.358 1.281c2.602.583 4.99 1.359 7.164 2.33 2.174.971 4.057 2.164 5.649 3.582a14.885 14.885 0 0 1 3.698 5.008c.893 1.922 1.349 4.125 1.369 6.61-.02 3.65-.952 6.814-2.796 9.493-1.825 2.66-4.465 4.727-7.92 6.203-3.436 1.455-7.581 2.183-12.434 2.183-4.815 0-9.008-.737-12.58-2.213-3.552-1.475-6.328-3.659-8.328-6.551-1.98-2.912-3.019-6.513-3.116-10.804h12.201c.136 2 .709 3.669 1.718 5.009 1.029 1.32 2.398 2.32 4.106 2.999 1.728.66 3.679.99 5.853.99 2.136 0 3.99-.31 5.562-.932 1.592-.621 2.825-1.485 3.698-2.591.874-1.107 1.311-2.378 1.311-3.815 0-1.339-.398-2.465-1.194-3.378-.777-.912-1.922-1.689-3.436-2.329-1.495-.641-3.33-1.223-5.504-1.747l-6.494-1.631c-5.027-1.223-8.997-3.135-11.91-5.737-2.911-2.601-4.358-6.105-4.338-10.512-.02-3.611.941-6.765 2.883-9.464 1.96-2.698 4.649-4.804 8.066-6.318 3.416-1.515 7.299-2.272 11.647-2.272 4.427 0 8.29.757 11.59 2.272 3.319 1.514 5.901 3.62 7.746 6.318 1.844 2.699 2.795 5.824 2.853 9.377h-12.084Zm32.155-17.151 14.414 45.309h.553l14.443-45.309h13.978L174.519 185h-16.248l-20.588-59.636h14.007Zm86.746 19.277c-.407-1.418-.98-2.67-1.718-3.757a10.595 10.595 0 0 0-2.708-2.795c-1.048-.777-2.252-1.369-3.611-1.777-1.339-.407-2.824-.611-4.455-.611-3.048 0-5.727.757-8.037 2.271-2.291 1.515-4.077 3.718-5.358 6.61-1.281 2.873-1.922 6.387-1.922 10.542 0 4.154.631 7.687 1.893 10.599s3.048 5.135 5.358 6.668c2.31 1.515 5.038 2.272 8.183 2.272 2.853 0 5.29-.505 7.308-1.515 2.039-1.028 3.592-2.475 4.66-4.338 1.087-1.864 1.63-4.067 1.63-6.61l2.563.378h-15.375v-9.493h24.955v7.513c0 5.241-1.107 9.745-3.32 13.511-2.213 3.747-5.26 6.64-9.143 8.678-3.883 2.019-8.328 3.028-13.337 3.028-5.591 0-10.502-1.232-14.734-3.698-4.232-2.485-7.532-6.008-9.901-10.57-2.349-4.582-3.523-10.017-3.523-16.307 0-4.834.699-9.143 2.097-12.929 1.417-3.805 3.397-7.027 5.94-9.668a25.66 25.66 0 0 1 8.881-6.027c3.378-1.379 7.037-2.068 10.978-2.068 3.378 0 6.523.495 9.435 1.485 2.912.971 5.494 2.349 7.746 4.135a22.388 22.388 0 0 1 5.561 6.377c1.437 2.446 2.359 5.145 2.767 8.096h-12.813Z" fill="#F5F5F5"/><path d="M239.89 353.09v-29.77h29.07v29.77h-29.07Zm19.15-11.2v-7.36h-9.23v7.36h9.23Z" fill="#C9C9C9"/><path d="M242.37 326.13v24.17h24.11v-24.17h-24.11Zm19.15 18.56h-14.19v-12.96h14.19v12.96ZM139.07 486.07V456.3h28.18v29.77h-28.18Zm18.26-11.2v-7.36h-8.34v7.36h8.34Z" fill="#C9C9C9"/><path d="M141.55 459.11v24.17h23.22v-24.17h-23.22Zm18.26 18.56h-13.3v-12.96h13.3v12.96ZM344.28 486.07V456.3h28.88v29.77h-28.88Zm18.95-11.2v-7.36h-9.03v7.36h9.03Z" fill="#C9C9C9"/><path d="M346.76 459.11v24.17h23.92v-24.17h-23.92Zm18.95 18.56h-13.99v-12.96h13.99v12.96Z" fill="#C9C9C9"/><path d="m351.21 486.07.25-3.05c.15-1.82.27-3.67.37-5.51l.14-2.63h12.31l-.08 2.88c-.05 1.93-.18 3.87-.33 5.77l-.2 2.55h-12.45l-.01-.01Zm-204.52 0-.2-2.55c-.15-1.9-.28-3.84-.33-5.77l-.08-2.88h12.31l.14 2.63c.1 1.85.22 3.69.37 5.51l.25 3.05H146.7l-.01.01Zm205.18-18.56-.11-2.68a97.02 97.02 0 0 0-.36-5.43c-5.14-59.08-46.52-103.62-96.25-103.62s-91.08 44.54-96.22 103.6c-.17 1.81-.29 3.63-.36 5.45l-.11 2.67h-12.43l.12-2.93c.08-1.92.2-3.84.36-5.73 4.91-60.07 45.09-108.92 95.54-116.15 2.72-.38 5.62-.65 8.61-.8 1.49-.08 3-.11 4.5-.11s3.01.03 4.52.12c2.34.11 4.73.31 7.06.6 51.28 6.47 92.11 55.41 97.1 116.35.15 1.89.28 3.81.36 5.73l.12 2.93h-12.45Z" fill="#C9C9C9"/><path d="M156.06 477.67h-7.42c.05 1.88.17 3.75.32 5.6h7.47c-.15-1.85-.27-3.72-.37-5.6Zm205.31-18.56c-4.89-59.76-44.75-107.5-94.89-113.83a92.63 92.63 0 0 0-6.92-.59c-1.46-.08-2.93-.11-4.39-.11-1.46 0-2.93.03-4.39.11-2.83.14-5.63.39-8.41.78-49.42 7.08-88.54 54.46-93.38 113.63-.15 1.85-.27 3.72-.35 5.6h7.47c.08-1.88.2-3.75.37-5.6 5.18-59.56 47.48-106.13 98.69-106.13s93.53 46.57 98.71 106.13c.17 1.85.3 3.72.37 5.6h7.47c-.08-1.88-.2-3.75-.35-5.6v.01Zm-7.07 18.56c-.1 1.88-.22 3.75-.37 5.6h7.47c.15-1.85.27-3.72.32-5.6h-7.42ZM342.45 333.74h-83.41v8.4h83.41v-8.4Z" fill="#C9C9C9"/><path d="M339.96 336.54h-78.44v2.8h78.44v-2.8Z" fill="#C9C9C9"/><path d="M343 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M343 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22ZM249.81 333.74h-81.89v8.4h81.89v-8.4Z" fill="#C9C9C9"/><path d="M247.33 336.54H170.4v2.8h76.93v-2.8Z" fill="#C9C9C9"/><path d="M167.36 347.97c4.716 0 8.54-4.486 8.54-10.02s-3.824-10.02-8.54-10.02c-4.717 0-8.54 4.486-8.54 10.02s3.823 10.02 8.54 10.02Z" fill="#C9C9C9"/><path d="M167.36 345.17c3.347 0 6.06-3.232 6.06-7.22 0-3.987-2.713-7.22-6.06-7.22-3.347 0-6.06 3.233-6.06 7.22 0 3.988 2.713 7.22 6.06 7.22Z" fill="#C9C9C9"/></g><defs><clipPath id="bqa"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 472 601" fill="none" id="icon-file-zip" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#bla)"><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01Z" fill="#F5F5F5"/><path d="m0 226.55 46.35 41.15 3.1-41.15H0Z" fill="#E27829"/><path d="M447.91 600.3H64.32c-13.1 0-23.76-10.66-23.76-23.76V23.76C40.56 10.66 51.22 0 64.32 0h318.19l89.15 89.15v487.39c0 13.1-10.66 23.76-23.76 23.76h.01ZM64.32 11.59c-6.71 0-12.17 5.46-12.17 12.17v552.78c0 6.71 5.46 12.17 12.17 12.17h383.59c6.71 0 12.17-5.46 12.17-12.17V93.95l-82.37-82.36H64.32Z" fill="#C9C9C9"/><path d="M381.27 66.06c0 14.72 11.93 26.65 26.65 26.65h59.1L381.27 6.95v59.11Z" fill="#C9C9C9"/><path d="M338.39 84.6H0v141.96h338.39V84.6Z" fill="#F7BD38"/><path d="m106 177.5 26.65-40.61H108.5v-11.47h40.89v8.23l-26.65 40.62h26.92v11.47h-43.67v-8.23l.01-.01ZM159.85 125.42h13.6v60.32h-13.6v-60.32ZM187.7 125.42h20.72c13.23 0 23.96 4.81 23.96 19.43 0 14.62-10.82 20.45-23.59 20.45h-7.49v20.45h-13.6v-60.33Zm20.26 29.05c7.49 0 11.1-3.33 11.1-9.62 0-6.29-4.07-8.6-11.47-8.6h-6.29v18.23h6.66v-.01Z" fill="#F5F5F5"/><path d="M256.11 276.97h-49.83v28.46h49.83v-28.46ZM305.94 305.43h-49.83v28.46h49.83v-28.46ZM256.11 333.88h-49.83v28.46h49.83v-28.46ZM305.94 362.34h-49.83v28.46h49.83v-28.46ZM256.11 390.8h-49.83v28.46h49.83V390.8ZM305.94 419.25h-49.83v28.46h49.83v-28.46ZM276.66 459.79h-41.11l-8.23 61.36c-1.1 8.22 6.65 15.41 16.62 15.41h24.32c9.97 0 17.73-7.19 16.62-15.41l-8.23-61.36h.01Zm-36.93 51.54c1.3-5.2 6.44-8.9 12.37-8.9h8.01c5.93 0 11.07 3.7 12.37 8.9 2.15 8.61-5.77 16.69-16.38 16.69-10.6 0-18.53-8.08-16.38-16.69h.01Z" fill="#C9C9C9"/></g><defs><clipPath id="bla"><path fill="#fff" d="M0 0h471.66v600.3H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 206 112" id="icon-hero-brand-assets" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="m171.647 20.613-.342 1.97A39.758 39.758 0 0 0 164.5 22v-2c2.414 0 4.803.206 7.147.613Zm15.204 5.914-1.078 1.685a39.383 39.383 0 0 0-6.045-3.17l.771-1.845a41.383 41.383 0 0 1 6.352 3.33Zm11.752 11.318-1.643 1.141a39.705 39.705 0 0 0-4.364-5.25l1.423-1.406a41.705 41.705 0 0 1 4.584 5.515Zm6.508 15.07-1.958.411a39.19 39.19 0 0 0-1.98-6.532l1.855-.745a41.19 41.19 0 0 1 2.083 6.866Zm.19 16.211-1.967-.365c.414-2.227.637-4.498.663-6.796l2 .023a41.692 41.692 0 0 1-.696 7.138Zm-6.096 15.137-1.671-1.098a39.404 39.404 0 0 0 3.242-6.009l1.836.794a41.404 41.404 0 0 1-3.407 6.313ZM187.75 95.88l-1.122-1.655a39.694 39.694 0 0 0 5.302-4.303l1.39 1.44a41.694 41.694 0 0 1-5.57 4.518Zm-15.11 6.322-.39-1.962a39.193 39.193 0 0 0 6.553-1.909l.724 1.864a41.193 41.193 0 0 1-6.887 2.007Zm-16.092.798v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16 0v-2h7v2h-7Zm-16.113-2.099.63-1.898a39.239 39.239 0 0 0 6.643 1.575l-.291 1.98a41.239 41.239 0 0 1-6.982-1.657ZM14.24 92.792l1.315-1.507a39.633 39.633 0 0 0 5.513 4.027l-1.036 1.71a41.633 41.633 0 0 1-5.792-4.23ZM4.28 79.876l1.793-.886a39.495 39.495 0 0 0 3.545 5.834l-1.613 1.183a41.495 41.495 0 0 1-3.725-6.13ZM.084 64.164l1.996-.126a39.45 39.45 0 0 0 1.018 6.75l-1.944.469a41.45 41.45 0 0 1-1.07-7.093Zm2.171-16.192 1.89.652a39.223 39.223 0 0 0-1.653 6.624l-1.975-.314c.377-2.376.96-4.703 1.738-6.962Zm8.278-14.1 1.492 1.331a39.649 39.649 0 0 0-4.092 5.465l-1.698-1.056a41.649 41.649 0 0 1 4.298-5.74Zm13.032-9.807.865 1.803a39.474 39.474 0 0 0-5.875 3.476l-1.164-1.627a41.474 41.474 0 0 1 6.174-3.652Zm15.76-4.009.104 1.997a39.497 39.497 0 0 0-6.763.938l-.445-1.95a41.497 41.497 0 0 1 7.104-.985ZM55.405 20v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm16 0v2h-7v-2h7Zm13.095 0v2h-4.095v-2h4.095Z" fill="#000" fill-rule="nonzero"/><path fill="#FFF" d="M45.957 9.75h37.304v25.278H45.957z"/><path fill="#FFF" d="M49.783 1.972h38.261V27.25H49.783z"/><path d="M76.087 8.778h5.26c1.058 0 1.914.87 1.914 1.944v23.334c0 1.074-.856 1.944-1.913 1.944H46.913C45.856 36 45 35.13 45 34.056V10.722c0-1.074.856-1.944 1.913-1.944h22.478" stroke="#111" stroke-width="2" stroke-linecap="round"/><path d="M50.74 4.889V2.944C50.74 1.87 51.594 1 52.651 1h34.435C88.144 1 89 1.87 89 2.944v23.334c0 1.074-.856 1.944-1.913 1.944h-3.826" stroke="#111" stroke-width="2" stroke-linecap="round"/><path stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M81.348 36 69.39 20.444l-9.565 11.9M47.391 36 57.71 22.389l2.766 3.107"/><path d="M49.304 17.528c0-1.343 1.07-2.43 2.392-2.43 1.32 0 2.391 1.087 2.391 2.43 0 1.342-1.07 2.43-2.391 2.43s-2.392-1.088-2.392-2.43Z" stroke="#111" stroke-width="2"/><path fill="#FFF" d="M29.281 66H56v44H22V73.255z"/><path d="M21 73v36a2 2 0 0 0 2 2h32a2 2 0 0 0 2-2V67a2 2 0 0 0-2-2H29l-8 8Z" stroke="#000" stroke-width="2" stroke-linejoin="round"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M26 76h6v-6"/><path d="M34 86.68v12.64c0 .517.605.844 1.099.595l12.508-6.297a.682.682 0 0 0 0-1.236l-12.508-6.297c-.494-.25-1.099.079-1.099.595Z" stroke="#000" stroke-width="2"/><path fill="#FFF" d="M152.441 1.76h20.781v33.48h-26.444V7.28z"/><path d="M158.77 25.27c.587 0 1.11-.11 1.57-.33.46-.22.863-.485 1.21-.795l.216-.198.05.1a2.2 2.2 0 0 0 .397.507l.167.146c.293.233.67.383 1.13.45.173-.113.342-.29.505-.53.163-.24.268-.463.315-.67a1.375 1.375 0 0 1-.445-.68 3.379 3.379 0 0 1-.115-.93v-4.09c0-.787-.145-1.428-.435-1.925a2.64 2.64 0 0 0-1.19-1.095c-.503-.233-1.072-.35-1.705-.35-.453 0-.935.04-1.445.12-.51.08-1.01.19-1.5.33s-.932.29-1.325.45c.02.307.087.618.2.935.113.317.26.568.44.755a26.265 26.265 0 0 1 1.58-.505 5.512 5.512 0 0 1 1.51-.225c.507 0 .892.13 1.155.39s.395.677.395 1.25v.66l-.216-.024-.344-.026c-.467-.027-.877-.04-1.23-.04-.713 0-1.363.118-1.95.355a3.03 3.03 0 0 0-1.395 1.1c-.343.497-.515 1.128-.515 1.895 0 .48.108.947.325 1.4.217.453.543.828.98 1.125.437.297.992.445 1.665.445Zm.58-1.81c-.4 0-.707-.127-.92-.38-.213-.253-.32-.567-.32-.94 0-.493.148-.887.445-1.18.297-.293.725-.44 1.285-.44a22.396 22.396 0 0 1 1.441.052l.169.018v1.849l-.106.11c-.112.108-.23.208-.352.298l-.187.128c-.51.323-.995.485-1.455.485Z" fill="#202020" fill-rule="nonzero"/><path d="M146 7.087v27.391c0 .841.696 1.522 1.556 1.522h24.888c.86 0 1.556-.681 1.556-1.522V2.522C174 1.68 173.304 1 172.444 1h-20.222L146 7.087Z" stroke="#000" stroke-width="2" stroke-linejoin="round"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M149.889 9.37h4.667V4.804"/><path fill="#FFF" d="M129.425 66H153v39h-30l-1-34z"/><path fill="#FFF" d="M136.185 70H159v40h-29.032L129 75.128z"/><path stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M126.5 74.5h5v-5M137 78h8M129 94h16M129 86h16"/><g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M152 97v6.5a1.5 1.5 0 0 1-1.5 1.5h-27a1.5 1.5 0 0 1-1.5-1.5v-32a1 1 0 0 1 .4-.8l7.333-5.5a1 1 0 0 1 .6-.2H150.5a1.5 1.5 0 0 1 1.5 1.5V91"/><path d="M156 71h2.5a1.5 1.5 0 0 1 1.5 1.5v37a1.5 1.5 0 0 1-1.5 1.5h-27a1.5 1.5 0 0 1-1.5-1.5V105"/></g></g></symbol><symbol viewBox="0 0 222 107" fill="none" id="icon-hero-colors" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#boa)"><path fill-rule="evenodd" clip-rule="evenodd" d="M68.333 53.672A3199.338 3199.338 0 0 0 98.143 105h-23.31c-3.592 0-6.5-2.925-6.5-6.5V53.672Zm12.35 3.722c14.205 8.459 55.753 33.185 56.858 33.822l-22.369 12.913a6.563 6.563 0 0 1-3.254.871 6.508 6.508 0 0 1-5.629-3.25L80.683 57.394Zm8.234-55.523A6.491 6.491 0 0 0 85.667 1c-2.271 0-4.446 1.2-5.63 3.25L64.872 30.519a6.503 6.503 0 0 0 2.379 8.879c12.723 7.345 63.18 37.7 75.903 45.049a6.498 6.498 0 0 0 8.874-2.383l15.167-26.269c.576-.997.806-2.115.806-3.246 0-2.253-1.114-4.441-3.181-5.633L88.917 1.871ZM90 18.961c4.784 0 8.667 3.883 8.667 8.667A8.67 8.67 0 0 1 90 36.295a8.67 8.67 0 0 1-8.667-8.667c0-4.784 3.883-8.666 8.667-8.666" fill="#000"/></g><defs><clipPath id="boa"><path fill="#fff" transform="translate(64 1)" d="M0 0h104v104H0z"/></clipPath></defs></symbol><symbol viewBox="0 0 218 123" id="icon-hero-components" xmlns="http://www.w3.org/2000/svg"><defs><filter x="-8.6%" y="-34%" width="117.3%" height="176%" filterUnits="objectBoundingBox" id="bpa"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-9.7%" width="111.5%" height="121.6%" filterUnits="objectBoundingBox" id="bpc"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><filter x="-5.8%" y="-27.4%" width="111.5%" height="161.3%" filterUnits="objectBoundingBox" id="bpe"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation="3" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.052075366 0" in="shadowBlurOuter1"/></filter><rect id="bpb" x="0" y="0" width="110" height="25" rx="3"/><rect id="bpd" x="0" y="0" width="165" height="88" rx="3"/><rect id="bpf" x="0" y="0" width="165" height="31" rx="3"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(6 32)"><use fill="#000" filter="url(#bpa)" xlink:href="#bpb"/><use fill="#FFF" xlink:href="#bpb"/><rect fill="#D8D8D8" x="29" y="11" width="68" height="3" rx="1.5"/><circle fill="#D8D8D8" cx="14" cy="13" r="5"/></g><g transform="translate(47 5)"><use fill="#000" filter="url(#bpc)" xlink:href="#bpd"/><use fill="#FFF" xlink:href="#bpd"/><path fill="#E8E8E8" d="M14 31h137v1H14z"/><rect fill="#E8E8E8" x="14" y="68" width="111" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="56" width="140" height="5" rx="2"/><rect fill="#E8E8E8" x="14" y="44" width="140" height="5" rx="2"/></g><g transform="translate(12 85)"><use fill="#000" filter="url(#bpe)" xlink:href="#bpf"/><use fill="#FFF" xlink:href="#bpf"/><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#D8D8D8" x="14" y="13" width="87" height="5" rx="2"/></g><g transform="translate(47 5)"><path d="M149.5 11a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.75 5.958h-2.292v2.292h-.916v-2.292h-2.292v-.916h2.292V13.75h.916v2.292h2.292v.916Z" fill="#000" fill-rule="nonzero"/><rect fill="#242424" x="14" y="13" width="87" height="5" rx="2"/></g></g></symbol><symbol viewBox="0 0 222 107" id="icon-hero-design" xmlns="http://www.w3.org/2000/svg"><g fill-rule="nonzero" fill="none"><path d="M.977 105v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 57v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 27v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7Zm12 0v1h7v-1h-7ZM.977 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Zm12 0v1h7V0h-7Z" fill="#000" opacity=".247"/><path d="M85.012 105.284c2.214 0 4.58-.24 7.097-.718 2.516-.478 4.58-1.17 6.19-2.076L65.609 1.018C63.796.666 61.594.414 59.002.263 56.41.112 54.182.036 52.32.036c-1.913 0-4.152.063-6.72.19-2.566.125-4.781.339-6.643.641L5.51 102.263l.83 1.209c1.36.453 3.109.817 5.248 1.094 2.139.277 4.115.415 5.927.415 1.761 0 3.473-.05 5.134-.15 1.66-.101 3.196-.328 4.605-.68l6.645-22.329h.06l.395.009.412.01 2.983.075c1.006.025 1.862.038 2.567.038h21.366c.654 0 1.485-.013 2.492-.038l3.02-.075c.251-.007.493-.012.726-.017l.191-.003 3.16 11.005c1.362 4.768 3.03 8.02 5.004 9.754l.205.174c2.064 1.686 4.908 2.53 8.532 2.53ZM39.28 63.743l4.13-13.877c.503-1.744 1.046-3.635 1.627-5.67l.444-1.554.458-1.609a316.897 316.897 0 0 0 2.643-9.89c.83-3.323 1.497-6.343 2-9.06h.907a780.628 780.628 0 0 0 4.114 15.703c1.535 5.638 2.907 10.57 4.115 14.798l3.199 11.147h-.003l-.402-.01-2.87-.076a96.381 96.381 0 0 0-2.491-.038H45.601c-.705 0-1.536.013-2.492.038l-2.869.076c-.24.006-.469.012-.689.016l-.27.006Zm121.504 42.446c4.48 0 8.406-.742 11.778-2.227 3.372-1.485 6.33-3.36 8.871-5.624.462-.412.915-.825 1.358-1.238l.116-.109.231.328c1.21 1.675 2.707 3.165 4.488 4.47l.451.323c2.743 1.913 6.254 2.945 10.533 3.096 1.46-1.107 2.881-2.819 4.265-5.134 1.384-2.315 2.303-4.454 2.756-6.418-1.51-1.107-2.592-2.516-3.246-4.228-.655-1.71-.982-3.724-.982-6.04V52.66c0-6.292-1.283-11.312-3.85-15.062s-5.877-6.456-9.929-8.116c-4.052-1.662-8.317-2.492-12.797-2.492-3.272 0-6.92.277-10.947.83a115.468 115.468 0 0 0-12.118 2.341c-4.052 1.007-7.739 2.19-11.06 3.548.25 2.769.842 5.613 1.773 8.532.931 2.92 2.202 5.285 3.813 7.097a331.02 331.02 0 0 1 11.665-3.36c3.85-1.032 7.437-1.547 10.759-1.547 3.473 0 6.052.843 7.738 2.529 1.686 1.686 2.53 4.215 2.53 7.587l-.001 3.126-.29-.022a73.723 73.723 0 0 0-1.556-.088l-.796-.033c-3.473-.126-6.367-.189-8.682-.189-5.235 0-10.117.919-14.647 2.756-4.53 1.837-8.18 4.68-10.948 8.531-2.768 3.85-4.152 8.77-4.152 14.76 0 3.624.817 7.186 2.453 10.684 1.636 3.498 4.153 6.392 7.55 8.682 3.398 2.29 7.689 3.435 12.873 3.435Zm6.418-16.685c-2.316 0-4.128-.717-5.436-2.152-1.31-1.434-1.963-3.259-1.963-5.474 0-2.97.805-5.385 2.416-7.248 1.61-1.862 4.177-2.793 7.7-2.793a245.178 245.178 0 0 1 8.504.176l.556.027v12.416l-.179.157c-.527.452-1.07.877-1.627 1.275l-.42.294c-3.247 2.215-6.43 3.322-9.551 3.322Z" fill="#202020"/><path fill="#000" d="M221 57v49h-1V57z"/><path fill="#000" d="M221 57v1h-4v-1zM221 105v1h-4v-1z"/><path d="M173.186 17v-2.492l2.14-3.933h-1.142l-1.52 2.931-1.521-2.93H170l2.131 3.967V17h1.055Zm11.496-3.652v-.786h-4.232v.786h4.232Zm0 1.754v-.783h-4.232v.783h4.232Zm8.56 1.898v-6.425h-.86l-1.89 1.486.518.654c.56-.454.889-.723.987-.808.098-.085.18-.163.248-.233-.023.29-.035.682-.035 1.178V17h1.033Zm4.277.088c.738 0 1.286-.271 1.645-.813.36-.542.539-1.371.539-2.487 0-1.084-.185-1.908-.554-2.47-.37-.563-.913-.844-1.63-.844-.736 0-1.283.269-1.642.807-.359.537-.538 1.373-.538 2.507 0 1.08.184 1.901.554 2.46.369.56.91.84 1.626.84Zm0-.861c-.396 0-.684-.188-.864-.563-.18-.375-.27-1-.27-1.876 0-.876.09-1.503.27-1.881.18-.378.468-.567.864-.567.395 0 .684.192.867.578.184.385.275 1.008.275 1.87 0 .864-.091 1.486-.275 1.867-.183.381-.472.572-.867.572Zm5.137.86c.738 0 1.287-.27 1.646-.812.358-.542.538-1.371.538-2.487 0-1.084-.185-1.908-.554-2.47-.369-.563-.912-.844-1.63-.844-.736 0-1.283.269-1.642.807-.358.537-.538 1.373-.538 2.507 0 1.08.185 1.901.554 2.46.369.56.91.84 1.626.84Zm0-.86c-.396 0-.684-.188-.864-.563-.18-.375-.27-1-.27-1.876 0-.876.09-1.503.27-1.881.18-.378.468-.567.864-.567.395 0 .685.192.868.578.183.385.274 1.008.274 1.87 0 .864-.091 1.486-.274 1.867-.183.381-.473.572-.868.572Zm4.342-1.71c.471 0 .828-.17 1.07-.507.241-.339.362-.845.362-1.519 0-.644-.124-1.14-.371-1.487-.248-.348-.601-.521-1.061-.521-.935 0-1.402.67-1.402 2.008 0 .65.122 1.15.367 1.5.244.351.59.526 1.035.526Zm.747 2.483 3.564-6.425h-.853L206.892 17h.853Zm-.747-3.204c-.194 0-.333-.107-.418-.32-.085-.214-.127-.54-.127-.976 0-.437.042-.762.127-.976.085-.213.224-.32.418-.32.386 0 .58.432.58 1.296 0 .864-.194 1.296-.58 1.296Zm4.188 3.292c.465 0 .82-.169 1.063-.505.243-.337.365-.843.365-1.517 0-.647-.125-1.144-.376-1.49-.25-.345-.601-.518-1.052-.518-.938 0-1.407.67-1.407 2.008 0 .654.123 1.154.37 1.501.246.347.591.52 1.037.52Zm0-.716c-.194 0-.334-.109-.42-.326-.087-.216-.13-.543-.13-.98 0-.436.043-.76.13-.97.086-.212.226-.317.42-.317.383 0 .575.429.575 1.287 0 .87-.192 1.306-.575 1.306ZM102.143 85l1.621-2.628L105.373 85h1.208l-2.162-3.313 2.008-3.112h-1.134l-1.485 2.43-1.485-2.43h-1.17l1.996 3.094L101.018 85h1.125Zm13.812-3.652v-.786h-4.232v.786h4.232Zm0 1.754v-.783h-4.232v.783h4.232Zm7.312 1.986c.806 0 1.427-.168 1.863-.503.437-.336.655-.813.655-1.43 0-.426-.129-.766-.387-1.022-.257-.257-.644-.417-1.16-.482v-.035c.43-.094.765-.276 1.002-.547.238-.27.356-.61.356-1.017 0-.49-.181-.873-.545-1.152-.363-.278-.868-.417-1.516-.417-.78 0-1.463.217-2.052.65l.505.721c.308-.2.575-.333.8-.402.226-.069.46-.103.703-.103.349 0 .613.074.791.224.179.15.268.362.268.637 0 .709-.512 1.063-1.538 1.063h-.567v.84h.558c.583 0 1.011.08 1.284.241.272.162.408.414.408.756 0 .387-.123.673-.369.857-.246.185-.618.277-1.116.277a4.115 4.115 0 0 1-1.745-.422v.919c.49.231 1.09.347 1.802.347Zm6.144-.088v-2.492l2.14-3.933h-1.143l-1.52 2.931-1.52-2.93h-1.143l2.131 3.967V85h1.055Z" fill="#2C2C2C"/></g></symbol><symbol id="icon-hero-effects" viewBox="0 0 23.17 23.16" xmlns="http://www.w3.org/2000/svg"><defs><style>.bvcls-1,.bvcls-2{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round}.bvcls-2{stroke-dasharray:0 0 1.02 2.05}</style></defs><g id="bvLayer_1-2"><path class="bvcls-1" d="M6.28 16.88v.5"/><path class="bvcls-2" d="M6.28 19.43v2.22c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V7.29c0-.56-.45-1.01-1.01-1.01H18.4"/><path class="bvcls-1" d="M17.38 6.28h-.5M15.87.5H1.51C.95.5.5.95.5 1.5v14.37c0 .56.45 1.01 1.01 1.01h14.36c.56 0 1.01-.45 1.01-1.01V1.5c0-.55-.45-1-1.01-1Z"/></g></symbol><symbol viewBox="0 0 34 24" fill="none" id="icon-image" xmlns="http://www.w3.org/2000/svg"><path d="M29 3H15a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM31 15l-5-5-11 11M7 6 4 3 1 6M1 18l3 3 3-3M4 16V8" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="btfeather btfeather-link-2" id="icon-link" xmlns="http://www.w3.org/2000/svg"><path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3M8 12h8"/></symbol><symbol viewBox="0 0 220 47" fill="none" id="icon-logo" xmlns="http://www.w3.org/2000/svg"><path d="M18.197 13.41c-4.099 0-7.204 1.527-8.881 3.881V1.578H0v44.531h9.316V28.742c0-4.517 2.36-6.552 5.776-6.552 2.981 0 5.403 1.845 5.403 5.789v18.13h9.316V26.58c0-8.588-5.341-13.168-11.614-13.168ZM58.753 14.301v2.99c-2.05-2.417-5.093-3.88-9.254-3.88-8.136 0-14.843 7.315-14.843 16.794 0 9.48 6.707 16.795 14.843 16.795 4.161 0 7.205-1.463 9.254-3.88v2.99h9.316V14.3h-9.316Zm-7.39 23.666c-4.286 0-7.391-2.99-7.391-7.762 0-4.77 3.105-7.76 7.39-7.76 4.286 0 7.391 2.99 7.391 7.76 0 4.772-3.105 7.762-7.39 7.762ZM93.101 13.41c-4.099 0-7.204 1.527-8.881 3.881v-2.99h-9.316V46.11h9.316V28.742c0-4.517 2.36-6.552 5.776-6.552 2.98 0 5.403 1.845 5.403 5.789v18.13h9.316V26.58c0-8.588-5.341-13.168-11.614-13.168ZM133.657 1.578V17.29c-2.05-2.417-5.093-3.88-9.254-3.88-8.136 0-14.843 7.315-14.843 16.794 0 9.48 6.707 16.795 14.843 16.795 4.161 0 7.204-1.463 9.254-3.88v2.99h9.316V1.577h-9.316Zm-7.391 36.389c-4.285 0-7.39-2.99-7.39-7.762 0-4.77 3.105-7.76 7.39-7.76 4.286 0 7.391 2.99 7.391 7.76 0 4.772-3.105 7.762-7.391 7.762ZM164.713 47c9.13 0 16.458-7.316 16.458-16.795 0-9.479-7.328-16.794-16.458-16.794-9.13 0-16.458 7.315-16.458 16.794 0 9.48 7.328 16.795 16.458 16.795Zm0-9.288c-4.037 0-7.142-2.99-7.142-7.507 0-4.516 3.105-7.506 7.142-7.506 4.037 0 7.142 2.99 7.142 7.506 0 4.517-3.105 7.507-7.142 7.507ZM220 9.212V.052c-10.31-.637-15.092 4.707-15.092 13.613v.636h-8.074c0-3.69 2.298-4.771 5.776-4.453V.688C192.301.05 187.518 5.394 187.518 14.3h-4.161v9.16h4.161V46.11h9.316V23.462h8.074v22.647h9.316V23.462H220v-9.16h-5.776v-.637c0-3.69 2.298-4.771 5.776-4.453Z" fill="#3A3535"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="bwfeather bwfeather-moon" id="icon-moon" xmlns="http://www.w3.org/2000/svg"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></symbol><symbol viewBox="0 0 648 367" fill="none" id="icon-motiv-logo-dark-example" xmlns="http://www.w3.org/2000/svg"><rect width="648" height="367" rx="6" fill="#2C2B2B"/><path d="M326.36 163.8h-5.76l-6.84 11.196-6.84-11.196h-5.76V189h5.76v-14.652l6.516 10.692h.648l6.516-10.692V189h5.76v-25.2Zm12.611 25.704c5.292 0 9.54-4.14 9.54-9.504s-4.248-9.504-9.54-9.504c-5.292 0-9.54 4.14-9.54 9.504s4.248 9.504 9.54 9.504Zm0-5.256c-2.34 0-4.14-1.692-4.14-4.248s1.8-4.248 4.14-4.248 4.14 1.692 4.14 4.248-1.8 4.248-4.14 4.248Zm22.611-8.064V171h-3.708v-5.04l-5.4 1.62V171h-2.88v5.184h2.88v6.372c0 5.04 2.052 7.164 9.108 6.444v-4.896c-2.376.144-3.708 0-3.708-1.548v-6.372h3.708Zm5.578-6.768c1.764 0 3.24-1.476 3.24-3.24 0-1.764-1.476-3.24-3.24-3.24-1.764 0-3.24 1.476-3.24 3.24 0 1.764 1.476 3.24 3.24 3.24ZM364.46 189h5.4v-18h-5.4v18Zm20.655-18-3.744 11.412L377.627 171h-5.976l6.66 18h6.12l6.66-18h-5.976Z" fill="#fff"/><path d="M305.12 198.4h-5.04V211h5.04c3.474 0 6.12-2.736 6.12-6.3 0-3.564-2.646-6.3-6.12-6.3Zm0 9.828h-2.16v-7.056h2.16c1.98 0 3.348 1.368 3.348 3.528s-1.368 3.528-3.348 3.528Zm10.529 0v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm10.985 3.024c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm5.942-12.852V211h2.88v-12.6h-2.88Zm17.429 5.58h-6.318v2.52h3.366c-.45 1.206-1.548 1.944-3.222 1.944-2.448 0-3.96-1.566-3.96-3.708 0-2.214 1.584-3.78 3.708-3.78 1.422 0 2.556.648 3.078 1.476l2.448-1.404c-1.062-1.692-3.096-2.88-5.508-2.88-3.708 0-6.606 2.916-6.606 6.57 0 3.618 2.844 6.534 6.804 6.534 3.528 0 6.21-2.34 6.21-6.192v-1.08Zm8.553-5.58v6.84l-4.86-6.84h-2.16V211h2.88v-6.84l4.86 6.84h2.16v-12.6h-2.88Zm13.769 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm15.744-12.852h-3.276l-2.394 4.86-2.394-4.86h-3.276l4.23 7.758V211h2.88v-4.842l4.23-7.758Zm4.677 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm14.033-12.852h-9.36v2.772h3.24V211h2.88v-9.828h3.24V198.4Zm4.05 9.828v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm19.175-9.828h-2.88l-3.42 5.598-3.42-5.598h-2.88V211h2.88v-7.326l3.258 5.346h.324l3.258-5.346V211h2.88v-12.6Z" fill="#BFBFBF"/><path d="M212 177c0-11.598 9.402-21 21-21h14c11.598 0 21 9.402 21 21v35h-35c-11.598 0-21-9.402-21-21v-14Z" fill="#0073E6"/><path d="M250.8 174H246l-5.7 9.33-5.7-9.33h-4.8v21h4.8v-12.21l5.43 8.91h.54l5.43-8.91V195h4.8v-21Z" fill="#fff"/><path fill="#F19CFF" d="M210 2h2v365h-2zM190 2h2v365h-2zM430 2h2v365h-2zM450 2h2v365h-2z"/></symbol><symbol viewBox="0 0 648 367" fill="none" id="icon-motiv-logo-example" xmlns="http://www.w3.org/2000/svg"><rect width="648" height="367" rx="6" fill="#F9F9F9"/><path d="M326.36 163.8h-5.76l-6.84 11.196-6.84-11.196h-5.76V189h5.76v-14.652l6.516 10.692h.648l6.516-10.692V189h5.76v-25.2Zm12.611 25.704c5.292 0 9.54-4.14 9.54-9.504s-4.248-9.504-9.54-9.504c-5.292 0-9.54 4.14-9.54 9.504s4.248 9.504 9.54 9.504Zm0-5.256c-2.34 0-4.14-1.692-4.14-4.248s1.8-4.248 4.14-4.248 4.14 1.692 4.14 4.248-1.8 4.248-4.14 4.248Zm22.611-8.064V171h-3.708v-5.04l-5.4 1.62V171h-2.88v5.184h2.88v6.372c0 5.04 2.052 7.164 9.108 6.444v-4.896c-2.376.144-3.708 0-3.708-1.548v-6.372h3.708Zm5.578-6.768c1.764 0 3.24-1.476 3.24-3.24 0-1.764-1.476-3.24-3.24-3.24-1.764 0-3.24 1.476-3.24 3.24 0 1.764 1.476 3.24 3.24 3.24ZM364.46 189h5.4v-18h-5.4v18Zm20.655-18-3.744 11.412L377.627 171h-5.976l6.66 18h6.12l6.66-18h-5.976Z" fill="#333"/><path d="M305.12 198.4h-5.04V211h5.04c3.474 0 6.12-2.736 6.12-6.3 0-3.564-2.646-6.3-6.12-6.3Zm0 9.828h-2.16v-7.056h2.16c1.98 0 3.348 1.368 3.348 3.528s-1.368 3.528-3.348 3.528Zm10.529 0v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm10.985 3.024c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm5.942-12.852V211h2.88v-12.6h-2.88Zm17.429 5.58h-6.318v2.52h3.366c-.45 1.206-1.548 1.944-3.222 1.944-2.448 0-3.96-1.566-3.96-3.708 0-2.214 1.584-3.78 3.708-3.78 1.422 0 2.556.648 3.078 1.476l2.448-1.404c-1.062-1.692-3.096-2.88-5.508-2.88-3.708 0-6.606 2.916-6.606 6.57 0 3.618 2.844 6.534 6.804 6.534 3.528 0 6.21-2.34 6.21-6.192v-1.08Zm8.553-5.58v6.84l-4.86-6.84h-2.16V211h2.88v-6.84l4.86 6.84h2.16v-12.6h-2.88Zm13.769 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm15.744-12.852h-3.276l-2.394 4.86-2.394-4.86h-3.276l4.23 7.758V211h2.88v-4.842l4.23-7.758Zm4.677 12.852c2.736 0 4.68-1.44 4.68-3.87 0-2.664-2.142-3.33-4.05-3.906-1.962-.594-2.268-.99-2.268-1.566 0-.504.45-.954 1.35-.954 1.152 0 1.746.558 2.178 1.458l2.43-1.422c-.918-1.854-2.538-2.844-4.608-2.844-2.178 0-4.23 1.404-4.23 3.834 0 2.412 1.836 3.312 3.708 3.834 1.89.522 2.61.828 2.61 1.602 0 .486-.342 1.026-1.71 1.026-1.422 0-2.196-.702-2.646-1.746l-2.484 1.44c.702 1.854 2.394 3.114 5.04 3.114Zm14.033-12.852h-9.36v2.772h3.24V211h2.88v-9.828h3.24V198.4Zm4.05 9.828v-2.232h4.5v-2.736h-4.5v-2.088h4.95V198.4h-7.83V211h7.92v-2.772h-5.04Zm19.175-9.828h-2.88l-3.42 5.598-3.42-5.598h-2.88V211h2.88v-7.326l3.258 5.346h.324l3.258-5.346V211h2.88v-12.6Z" fill="#BFBFBF"/><path d="M212 177c0-11.598 9.402-21 21-21h14c11.598 0 21 9.402 21 21v35h-35c-11.598 0-21-9.402-21-21v-14Z" fill="#0073E6"/><path d="M250.8 174H246l-5.7 9.33-5.7-9.33h-4.8v21h4.8v-12.21l5.43 8.91h.54l5.43-8.91V195h4.8v-21Z" fill="#fff"/><path fill="#F19CFF" d="M210 2h2v365h-2zM190 2h2v365h-2zM430 2h2v365h-2zM450 2h2v365h-2z"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="byfeather byfeather-plus-circle" id="icon-plus-circle" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 8v8M8 12h8"/></symbol><symbol viewBox="0 0 491 437" id="icon-react" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="nonzero"><path d="M490.6 218.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V0c-27.5 0-63.5 19.6-99.9 53.6C208.7 19.8 172.7.4 145.2.4v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1C40.5 155.4 0 186.1 0 218.5c0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3Zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9Zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9Zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1ZM245.5 352c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32Zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4ZM245 85c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32Zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9ZM80.5 269.1c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2ZM134.3 412c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7Zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1Zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6Z"/><circle cx="245.2" cy="218.5" r="45.7"/></g></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ccfeather ccfeather-search" id="icon-search" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></symbol><symbol viewBox="0 0 302 167" id="icon-search-laptop" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M6.42 141h289a4 4 0 0 1 3.693 5.538l-5.641 13.539a8 8 0 0 1-7.385 4.923H15.754a8 8 0 0 1-7.385-4.923l-5.64-13.539A4 4 0 0 1 6.42 141ZM27.42 129.408V17.168c0-8.284 6.716-15 15-15h218.991c8.285 0 15 6.716 15 15v112.24" stroke="#DEDEDE" stroke-width="4"/><g fill="#4574C7" fill-rule="nonzero"><path d="M148.667 44.167c-14.084 0-25.5 11.416-25.5 25.5 0 14.083 11.416 25.5 25.5 25.5 14.083 0 25.5-11.417 25.5-25.5 0-14.084-11.417-25.5-25.5-25.5Zm0 5.666c10.953 0 19.833 8.88 19.833 19.834 0 10.953-8.88 19.833-19.833 19.833-10.954 0-19.834-8.88-19.834-19.833 0-10.954 8.88-19.834 19.834-19.834Z"/><path d="M162.672 83.672a2.834 2.834 0 0 1 3.74-.236l.266.236 12.325 12.325a2.833 2.833 0 0 1-3.74 4.242l-.266-.236-12.325-12.325a2.833 2.833 0 0 1 0-4.006Z"/></g></g></symbol><symbol id="icon-send" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><defs><style>.cfcls-1{fill-rule:evenodd}</style></defs><path id="cfIcon-Color" class="cfcls-1" d="M9.92 23.93h-.07l.07.06a.47.47 0 0 1-.1-.1s0 0 0-.05l-2.3-6.92-7.11-2.55a.64.64 0 0 1-.41-.51.62.62 0 0 1 .3-.58L23.1.08h.05-.07H23.67h-.05l.08.09v.06a.14.14 0 0 1 0 .07v.41L20.39 21.1a.6.6 0 0 1-.83.45l-5.47-2.34-3.41 4.55v.05-.06l-.07.08a.62.62 0 0 1-.37.16.5.5 0 0 1-.27-.07ZM18.7 6.15 8.49 16.36l1.56 4.7.76-3.78v-.07.07a.5.5 0 0 1 0-.13.21.21 0 0 1 0-.06Zm-6.86 12.09-.53 2.68 1.69-2.2ZM22.35 3.1l-10 14 7 3Zm-2.61.31L2.05 13.65l5.59 1.86Z"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cdfeather cdfeather-share-2" id="icon-share" xmlns="http://www.w3.org/2000/svg"><circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><path d="m8.59 13.51 6.83 3.98M15.41 6.51l-6.82 3.98"/></symbol><symbol viewBox="0 0 37 18" id="icon-small-accordion" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4C1.79 0 0 1.896 0 4.235v9.53C0 16.104 1.79 18 4 18h29c2.21 0 4-1.896 4-4.235v-9.53C37 1.896 35.21 0 33 0ZM4 2.118h29c1.105 0 2 .948 2 2.117v9.53c0 1.17-.895 2.117-2 2.117H4c-1.105 0-2-.948-2-2.117v-9.53c0-1.17.895-2.117 2-2.117ZM25 8h6a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2Zm2 4V6a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0Z" fill="#000" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 37 17" id="icon-small-button" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4a4 4 0 0 0-4 4v9a4 4 0 0 0 4 4h29a4 4 0 0 0 4-4V4a4 4 0 0 0-4-4ZM4 2h29a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 5.5h15v2H11v-2Z" fill="#000" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 38 19" id="icon-small-pagination" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><rect stroke="#000" stroke-width="2" x="1" y="1" width="36" height="17" rx="4"/><path d="M27.815 13c-.319-.005-.604-.174-.725-.432a.633.633 0 0 1 .168-.752l2.625-2.283-2.61-2.311a.645.645 0 0 1-.25-.694c.072-.253.3-.45.592-.51a.865.865 0 0 1 .788.229l3.183 2.784c.15.131.235.309.235.495a.656.656 0 0 1-.235.494l-3.183 2.784a.863.863 0 0 1-.588.195Z" fill="#000" fill-rule="nonzero"/><path fill="#000" d="M18 2h2v15h-2z"/><path d="M10.006 6c.319.005.604.174.725.432a.633.633 0 0 1-.168.752L7.938 9.467l2.61 2.311c.225.172.321.44.25.694-.073.253-.301.45-.592.51a.865.865 0 0 1-.788-.229L6.235 9.97A.656.656 0 0 1 6 9.474c0-.185.085-.363.235-.494l3.183-2.784A.863.863 0 0 1 10.006 6Z" fill="#000" fill-rule="nonzero"/></g></symbol><symbol viewBox="0 0 36 23" id="icon-small-radio" xmlns="http://www.w3.org/2000/svg"><g transform="translate(1 1)" fill="none" fill-rule="evenodd"><rect fill="#000" x="16" y="3" width="19" height="3" rx="1.5"/><circle stroke="#000" stroke-width="2" cx="4" cy="4" r="4"/><circle stroke="#000" fill="#000" cx="4" cy="4" r="1"/><rect fill="#000" x="16" y="15" width="19" height="3" rx="1.5"/><circle stroke="#000" stroke-width="2" cx="4" cy="17" r="4"/></g></symbol><symbol viewBox="0 0 37 18" id="icon-small-select" xmlns="http://www.w3.org/2000/svg"><path d="M33 0H4C1.79 0 0 1.896 0 4.235v9.53C0 16.104 1.79 18 4 18h29c2.21 0 4-1.896 4-4.235v-9.53C37 1.896 35.21 0 33 0ZM4 2.118h29c1.105 0 2 .948 2 2.117v9.53c0 1.17-.895 2.117-2 2.117H4c-1.105 0-2-.948-2-2.117v-9.53c0-1.17.895-2.117 2-2.117ZM7 8.5h12v2H7v-2Zm17.496-.88c.003-.318.173-.603.43-.724a.633.633 0 0 1 .753.168l2.283 2.625 2.311-2.61a.645.645 0 0 1 .693-.25c.254.073.451.301.51.592a.865.865 0 0 1-.228.788l-2.785 3.183a.656.656 0 0 1-.494.235.656.656 0 0 1-.494-.235L24.69 8.209a.863.863 0 0 1-.194-.588Z" fill="#000" fill-rule="nonzero"/></symbol><symbol viewBox="0 0 37 22" id="icon-small-table" xmlns="http://www.w3.org/2000/svg"><g fill="#000" fill-rule="evenodd"><rect x="16" y="18" width="18" height="3" rx="1.5"/><rect x="16" y="10" width="18" height="3" rx="1.5"/><rect x="16" y="2" width="18" height="3" rx="1.5"/><rect x="1" y="18" width="10" height="3" rx="1.5"/><rect x="1" y="10" width="10" height="3" rx="1.5"/><rect x="1" y="2" width="9" height="3" rx="1.5"/></g></symbol><symbol viewBox="0 0 38 19" id="icon-small-toggle" xmlns="http://www.w3.org/2000/svg"><path d="M9.5 1h19a8.5 8.5 0 0 1 0 17h-19a8.5 8.5 0 0 1 0-17Zm1 12a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z" stroke="#000" stroke-width="2" fill="none" fill-rule="evenodd"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="cmfeather cmfeather-sun" id="icon-sun" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></symbol><symbol viewBox="0 0 11 11" fill="none" id="icon-token-alignment" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M1 8h6v1H1zM1 5h9v1H1zM1 2h9v1H1z"/></symbol><symbol viewBox="0 0 9 10" fill="none" id="icon-token-border-radius" xmlns="http://www.w3.org/2000/svg"><path d="M1 10V6a5 5 0 0 1 5-5h3" stroke="#000"/></symbol><symbol viewBox="0 0 11 11" fill="none" id="icon-token-border-width" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 1h9v.947H1.947V10H1V1Z" fill="#000"/><path fill="#000" d="M3 9h1v1H3zM5 8.999h1v1H5zM7 8.998h1v1H7zM9 8.996h1v1H9zM9 7h1v1H9zM9 5h1v1H9zM9 3h1v1H9z"/></symbol><symbol viewBox="0 0 13 12" fill="none" id="icon-token-spacing-horizontal" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M12 0h1v12h-1zM9 3h1v6H9zM3 3h1v6H3z"/><path fill="#000" d="M3 4V3h7v1zM3 9V8h7v1zM0 0h1v12H0z"/></symbol><symbol viewBox="0 0 13 12" fill="none" id="icon-token-spacing-vertical" xmlns="http://www.w3.org/2000/svg"><path fill="#000" d="M9 3h1v6H9zM3 3h1v6H3z"/><path fill="#000" d="M3 4V3h7v1zM3 9V8h7v1zM0 1V0h13v1zM0 12v-1h13v1z"/></symbol><symbol viewBox="0 0 11 11" fill="none" id="icon-token-type-small" xmlns="http://www.w3.org/2000/svg"><path d="M1 2.719V1h9.167v1.719M3.865 10.167h3.437M5.583 1v9.167" stroke="#181818" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="crfeather crfeather-x" id="icon-x" xmlns="http://www.w3.org/2000/svg"><path d="M18 6 6 18M6 6l12 12"/></symbol><symbol viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="csfeather csfeather-zap" id="icon-zap" xmlns="http://www.w3.org/2000/svg"><path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z"/></symbol></svg>